:root {
  --navy: #0b1f3a;
  --navy-2: #123056;
  --turquoise: #1aa6a0;
  --white: #ffffff;
  --paper: #f3f7f8;
  --ink: #122033;
  --muted: #5b6b76;
  --line: #d7e2e6;
  --green: #128a63;
  --orange: #d97706;
  --danger: #b42318;
  --max: 1120px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Segoe UI, system-ui, sans-serif;
  line-height: 1.55;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-2); }
.skip {
  position: absolute;
  left: -999px;
  top: 8px;
}
.skip:focus { left: 8px; background: white; padding: 8px 12px; z-index: 20; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.top {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--navy);
  color: white;
}
.head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: white;
  text-decoration: none;
  font-weight: 700;
}
.brand span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  background: var(--turquoise);
  border-radius: 8px;
  font-size: 12px;
}
.brand small { color: #b9c9d6; font-weight: 500; }
nav { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
nav a { color: #d5e2ee; text-decoration: none; font-size: 14px; }
nav a:hover, nav a:focus-visible { color: white; }
.burger { display: none; cursor: pointer; }
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  box-shadow: 0 7px 0 white, 0 -7px 0 white;
}
.btn {
  border: 0;
  border-radius: 8px;
  padding: 12px 16px;
  font-weight: 700;
  cursor: pointer;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
}
.btn.primary { background: var(--turquoise); color: var(--navy); }
.btn.primary:hover, .btn.primary:focus-visible { filter: brightness(1.05); outline: 2px solid white; outline-offset: 2px; }
.btn:disabled { opacity: 0.65; cursor: wait; }
.hero {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 36px;
  padding: 48px 0 28px;
  align-items: start;
}
.eyebrow {
  color: var(--turquoise);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0 0 10px;
}
h1 { font-size: clamp(28px, 4vw, 44px); line-height: 1.15; margin: 0 0 14px; }
h2 { font-size: clamp(22px, 3vw, 32px); margin: 0 0 14px; }
h3 { margin: 0 0 8px; font-size: 17px; }
.lead, .meta, figcaption, .note { color: var(--muted); }
.benefits { padding-left: 18px; margin: 18px 0; }
.email-field {
  display: grid;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  width: min(100%, 360px);
}
.email-field input {
  font: inherit;
  font-weight: 400;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.buy .email-field { color: #d7efe8; }
.buy .email-field input { border-color: transparent; }
.price { font-size: 28px; font-weight: 800; color: var(--navy); margin: 8px 0; }
.shot {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.shot img { width: 100%; }
figcaption { padding: 10px 12px; font-size: 13px; }
.band { background: white; padding: 48px 0; }
.block { padding: 48px 0; }
.cards, .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.cards article, .grid article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
}
.grid article { background: white; font-weight: 700; }
.pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}
.pair img {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
}
.steps { padding-left: 22px; }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.split div {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
}
.buy {
  background: var(--navy);
  color: white;
  border-radius: 16px;
  padding: 28px;
  margin: 10px auto 40px;
}
.buy .price, .buy a { color: white; }
.buy .btn.primary { background: var(--turquoise); color: var(--navy); }
.buy .status { color: #d7efe8; }
.checkout-form { display: grid; gap: 14px; max-width: 420px; }
.checkout-form .btn { width: 100%; }
.terms-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: #d7efe8;
}
.terms-check input { margin-top: 4px; flex-shrink: 0; }
.terms-check a { color: white; }
.btn.retry {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.35);
}
.faq details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 8px;
}
summary { cursor: pointer; font-weight: 700; }
summary:focus-visible { outline: 2px solid var(--turquoise); }
.status[data-visible="1"] { display: block; }
.status.error { color: var(--danger); }
.foot {
  padding: 28px 0 96px;
  color: var(--muted);
  font-size: 14px;
}
.foot a { margin-right: 12px; }
.mobile-bar {
  display: none;
  position: fixed;
  inset: auto 0 0;
  background: var(--navy);
  color: white;
  padding: 10px 16px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.legal { padding: 40px 0 80px; max-width: 760px; }
.page-pay { min-height: 100vh; display: flex; flex-direction: column; }
.page-pay .foot { margin-top: auto; padding-bottom: 28px; }
.pay { padding: 40px 0 56px; }
.pay-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}
.pay-includes {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}
.pay-includes li {
  position: relative;
  padding: 6px 0 6px 22px;
}
.pay-includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--turquoise);
}
.pay-panel { position: sticky; top: 80px; }
.pay-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  min-height: 320px;
}
.pay-card h2 { margin-bottom: 8px; }
.pay-card[data-state="ok"] { border-color: #9ad7c2; box-shadow: 0 0 0 3px rgba(18, 138, 99, 0.12); }
.pay-card[data-state="error"] { border-color: #f0c4c0; }
.pay-card[data-state="pending"] { border-color: #f3d7a4; }
.wallet { margin: 18px 0 8px; min-height: 54px; }
.pay-extra { margin-top: 16px; }
.pay-extra .btn { width: 100%; }
.pay-secure, .pay-ref {
  color: var(--muted);
  font-size: 13px;
  margin: 12px 0 0;
}
.pay-wait {
  display: none;
  margin: 18px 0;
  padding: 14px 16px;
  border-radius: 10px;
  background: var(--paper);
  color: var(--muted);
}
.pay-card[data-state="pending"] .pay-wait,
.pay-card[data-state="loading"] .pay-wait { display: block; }
.pay-card .pay-extra .btn,
.pay-card #retry { width: 100%; margin-top: 16px; }
@media (max-width: 900px) {
  .hero, .split, .pair, .cards, .grid, .pay-grid { grid-template-columns: 1fr; }
  .pay-panel { position: static; order: -1; }
  .burger { display: block; }
  nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 12px;
  }
  #nav-toggle:checked ~ nav { display: flex; }
  .page-pay nav {
    display: flex;
    width: auto;
    flex-direction: row;
    padding-bottom: 0;
  }
  .mobile-bar { display: flex; }
}
@media (max-width: 360px) {
  .wrap { width: calc(100% - 24px); }
  h1 { font-size: 26px; }
}
