/* ────────────────────────────────────────────────────────────
   Unblockr VPN — Web theme: Crisp / Saturated (VPN-grade)
   Cool near-white surface, deep navy-slate text, saturated blue brand,
   emerald success. Matches iOS app. Reads as Stripe / Linear / ProtonVPN
   territory — fintech-trust, not wellness.
   ──────────────────────────────────────────────────────────── */

:root {
  --bg:              #F4F7FB;            /* cool near-white, faint blue tint */
  --surface:         #FFFFFF;
  --surface-elev:    #F8FAFD;
  --hairline:        rgba(15, 23, 42, 0.08);
  --hairline-strong: rgba(15, 23, 42, 0.14);

  --text:        #0F172A;                /* deep navy-slate */
  --text-2:      #475569;
  --text-3:      #94A3B8;

  /* Brand + every CTA. Banking-grade trust, not neon. */
  --accent:      #1E5BCC;
  --accent-fg:   #FFFFFF;
  --accent-soft: rgba(30, 91, 204, 0.10);
  --accent-dim:  rgba(30, 91, 204, 0.20);
  --accent-glow: rgba(30, 91, 204, 0.28);

  /* Success — secured/connected/affirmative only. Replaces the old sage
     when the meaning is "yes / done / protected." */
  --success:      #059669;
  --success-soft: rgba(5, 150, 105, 0.12);
  --success-dim:  rgba(5, 150, 105, 0.22);

  --danger:      #DC2626;                /* saturated red */
  --danger-dim:  rgba(220, 38, 38, 0.14);

  --radius-s:    8px;
  --radius-m:    12px;
  --radius-l:    16px;
  --radius-xl:   24px;
  --radius-pill: 999px;

  --shadow-card:  0 4px 20px rgba(15, 23, 42, 0.06);
  --shadow-lift:  0 8px 28px rgba(15, 23, 42, 0.10);
  --shadow-cta:   0 6px 20px rgba(30, 91, 204, 0.30);

  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI",
               Roboto, system-ui, sans-serif;
  --font-mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  /* Faint cool-blue gradient at the top to keep the page from feeling
     sterile-flat. Tinted by --accent, not a competing color. */
  background:
    radial-gradient(ellipse 100% 60% at 50% -10%,
                    rgba(30, 91, 204, 0.06),
                    transparent 70%),
    var(--bg);
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  min-height: 100dvh;
}

a { color: var(--accent); text-decoration: none; font-weight: 500; }
a:hover { text-decoration: underline; text-underline-offset: 2px; }

/* ────────── Brand wordmark ────────── */
/* Logo + wordmark, horizontally centered. Tightened for one-viewport
   landing — was 28px top, 24px font. */
.brand {
  padding: 16px 24px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.brand a.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
}
.brand-logo {
  width: 26px;
  height: 26px;
  color: var(--accent);
  flex-shrink: 0;
}
.brand-logo svg {
  width: 100%;
  height: 100%;
  display: block;
}
.brand-name {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.4px;
  color: var(--text);
  line-height: 1;
}
.brand-dot {
  color: var(--accent);
  font-size: 1.15em;
}
/* "VPN" lockup baked into the wordmark — replaces the standalone shield+dot
   so the product category reads at a glance. */
.brand-vpn {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 7px 3px;
  background: var(--accent);
  color: var(--accent-fg);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.6px;
  border-radius: 6px;
  vertical-align: 2px;
  line-height: 1;
}

/* ────────── Landing ────────── */
.landing {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 20px 24px;
}
.hero { padding-top: 4px; }

/* Shield hero icon — visually signals "VPN / security" at a glance.
   Mirrors the iOS Welcome screen's shield treatment so a pure-text page
   doesn't read as a generic landing page. Lucide-style stroke SVG.
   Sized to fit alongside title + bullets + price + CTA in one viewport. */
.hero-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 4px auto 0;
  background: var(--accent-soft);
  border: 1px solid var(--accent-dim);
  border-radius: var(--radius-pill);
  color: var(--accent);
}
.hero-icon svg {
  width: 30px;
  height: 30px;
}
/* Compact variant for sub-pages (activated, manage) where the icon
   reinforces page identity but isn't the primary hero. */
.hero-icon.compact {
  width: 56px;
  height: 56px;
  margin: 4px auto 0;
}
.hero-icon.compact svg {
  width: 26px;
  height: 26px;
}
/* Success variant — used on the activated page where the icon
   signals "you're set up / secured" rather than a CTA. */
.hero-icon.success {
  background: var(--success-soft);
  border-color: var(--success-dim);
  color: var(--success);
}
.hero-eyebrow {
  text-align: center;
  margin: 28px 0 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--accent);
}
.hero-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin: 6px 0 16px;
  color: var(--text);
  text-align: center;
}
.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  font-size: 15px;
}
.hero-bullets li {
  padding: 6px 0 6px 30px;
  position: relative;
  color: var(--text);
  line-height: 1.35;
}
/* Bullet checkmarks — affirmative "you get this" indicators, so they use
   --success (emerald) for color variety and to reserve --accent for true CTAs. */
.hero-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 20px;
  height: 20px;
  border-radius: var(--radius-pill);
  background: var(--success-soft);
  border: 1px solid var(--success-dim);
}
.hero-bullets li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 12px;
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--success);
  border-bottom: 2px solid var(--success);
  transform: rotate(-45deg);
}

/* Pricing card — clean white surface, soft shadow, no glow. */
.plan-toggle {
  display: flex;
  gap: 6px;
  padding: 4px;
  margin: 0 0 12px;
  background: var(--surface-elev);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-pill);
}
.plan-toggle-opt {
  flex: 1;
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--text-2);
  font: inherit;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 120ms ease, color 120ms ease, box-shadow 120ms ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.plan-toggle-opt:hover { color: var(--text); }
.plan-toggle-opt.is-active {
  background: var(--accent);
  color: var(--accent-fg);
  box-shadow: var(--shadow-cta);
}
.plan-toggle-opt.is-active .plan-toggle-badge {
  background: rgba(255, 255, 255, 0.18);
  color: var(--accent-fg);
}
.plan-toggle-badge {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  background: var(--success-soft);
  color: var(--success);
  padding: 2px 6px;
  border-radius: var(--radius-pill);
}

.pricing-card {
  text-align: center;
  margin: 0 0 14px;
  padding: 16px 16px 14px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-card);
}
.pricing-headline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 4px;
}
.pricing-amount {
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -1px;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.pricing-sub {
  color: var(--text-2);
  font-size: 13px;
  margin-top: 4px;
}

.reassurance {
  text-align: center;
  color: var(--text-2);
  font-size: 12px;
  margin-top: 10px;
}
.reassurance::before {
  content: "✓ ";
  color: var(--success);
  font-weight: 800;
}

/* Inline legal footer for landing page — kept small so it doesn't push
   the Continue button below the fold. */
.legal-inline {
  text-align: center;
  margin-top: 8px;
  font-size: 11px;
  color: var(--text-3);
}
.legal-inline a {
  color: var(--text-2);
  text-decoration: none;
  font-weight: 500;
}
.legal-inline a:hover { color: var(--accent); text-decoration: underline; }

/* ────────── Product homepage (/) ────────── */
.product-home {
  background:
    linear-gradient(180deg, rgba(30, 91, 204, 0.08), transparent 420px),
    var(--bg);
}
.site-shell {
  width: min(100% - 32px, 1120px);
  margin: 0 auto;
}
.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
}
.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  text-decoration: none;
}
.site-brand:hover { text-decoration: none; }
.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}
.site-nav a,
.site-footer a {
  color: var(--text-2);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}
.site-nav a:hover,
.site-footer a:hover {
  color: var(--accent);
  text-decoration: none;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  color: var(--accent-fg);
  background: var(--accent);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-cta);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.nav-cta:hover {
  color: var(--accent-fg);
  text-decoration: none;
  transform: translateY(-1px);
}
.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.85fr);
  gap: 56px;
  align-items: center;
  min-height: 650px;
  padding: 56px 0 72px;
}
.product-hero .hero-eyebrow {
  margin: 0 0 14px;
  text-align: left;
}
.site-title {
  max-width: 11ch;
  margin: 0;
  color: var(--text);
  font-size: 66px;
  font-weight: 780;
  letter-spacing: 0;
  line-height: 0.98;
}
.site-lede {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--text-2);
  font-size: 19px;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin: 30px 0 0;
}
.hero-actions .hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: auto;
  min-width: 220px;
  min-height: 54px;
  padding: 0 28px;
  line-height: 1;
}
.hero-actions .btn-secondary {
  margin-top: 0;
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
}
.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  color: var(--success);
  background: var(--success-soft);
  border: 1px solid var(--success-dim);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
}
.app-preview {
  display: flex;
  justify-content: center;
}
.phone-frame {
  width: min(100%, 360px);
  padding: 18px;
  background:
    linear-gradient(180deg, #FFFFFF, #F8FAFD);
  border: 1px solid var(--hairline-strong);
  border-radius: 30px;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.16);
}
.phone-top,
.preview-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.phone-top {
  color: var(--text-2);
  font-size: 13px;
  font-weight: 700;
}
.phone-top strong {
  color: var(--success);
}
.phone-dot {
  width: 10px;
  height: 10px;
  background: var(--success);
  border-radius: var(--radius-pill);
  box-shadow: 0 0 0 5px var(--success-soft);
}
.connect-orb {
  display: grid;
  place-items: center;
  width: 196px;
  height: 196px;
  margin: 32px auto;
  color: var(--accent);
  background:
    radial-gradient(circle at 50% 45%, rgba(30, 91, 204, 0.18), rgba(30, 91, 204, 0.08) 64%, transparent 65%),
    var(--surface-elev);
  border: 1px solid var(--accent-dim);
  border-radius: var(--radius-pill);
}
.connect-orb svg {
  width: 58px;
  height: 58px;
}
.connect-orb span {
  margin-top: -42px;
  color: var(--text);
  font-weight: 800;
}
.preview-row {
  min-height: 54px;
  padding: 0 14px;
  margin-top: 10px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-card);
}
.preview-row span {
  color: var(--text-2);
  font-size: 13px;
}
.preview-row strong {
  color: var(--text);
  font-size: 14px;
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 0 78px;
  overflow: hidden;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-card);
}
.trust-strip div {
  padding: 22px;
  background: var(--surface);
}
.trust-strip strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 15px;
}
.trust-strip span {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.45;
}
.site-section {
  padding: 78px 0;
  border-top: 1px solid var(--hairline);
}
.section-head {
  max-width: 680px;
  margin-bottom: 30px;
}
.section-kicker {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.section-head h2,
.pricing-copy h2 {
  max-width: 16ch;
  margin: 0;
  color: var(--text);
  font-size: 42px;
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.04;
}
.section-head p,
.pricing-copy p {
  margin: 14px 0 0;
  color: var(--text-2);
  font-size: 17px;
  line-height: 1.55;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.feature-card,
.step-card,
.faq-grid article {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-card);
}
.feature-card {
  min-height: 210px;
  padding: 22px;
}
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 24px;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: var(--radius-s);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
}
.feature-card h3,
.step-card h3,
.faq-grid h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.2;
}
.feature-card p,
.step-card p,
.faq-grid p {
  margin: 0;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.55;
}
.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}
.steps-grid {
  display: grid;
  gap: 12px;
}
.step-card {
  position: relative;
  min-height: 132px;
  padding: 22px 22px 22px 78px;
}
.step-card span {
  position: absolute;
  top: 22px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--accent-fg);
  background: var(--accent);
  border-radius: var(--radius-pill);
  font-weight: 800;
}
.pricing-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 44px;
  align-items: center;
}
.pricing-copy h2 {
  max-width: 16ch;
}
.pricing-notes {
  display: grid;
  gap: 9px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.pricing-notes li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-size: 15px;
}
.pricing-notes li::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 18px;
  height: 18px;
  background: var(--success-soft);
  border: 1px solid var(--success-dim);
  border-radius: var(--radius-pill);
}
.pricing-notes li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--success);
  border-bottom: 2px solid var(--success);
  transform: rotate(-45deg);
}
.pricing-copy .policy-note {
  margin-top: 20px;
  font-size: 14px;
}
.checkout-panel {
  padding: 18px;
  background: var(--surface-elev);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lift);
}
.checkout-panel .pricing-card {
  margin-bottom: 14px;
}
.checkout-panel .legal-inline {
  margin-bottom: 0;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.faq-grid article {
  padding: 22px;
}
.more-link {
  margin: 22px 0 0;
}
.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
  gap: 30px;
  padding: 38px 0 54px;
  border-top: 1px solid var(--hairline);
}
.site-footer strong {
  display: block;
  color: var(--text);
  font-size: 16px;
  margin-bottom: 6px;
}
.site-footer p {
  max-width: 360px;
  margin: 0;
  color: var(--text-2);
  font-size: 14px;
}
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
}

/* ────────── Buttons ────────── */
.btn {
  display: inline-block;
  width: 100%;
  padding: 14px 24px;
  border: 0;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: transform 0.12s ease, box-shadow 0.18s ease, opacity 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
}
.btn-primary {
  background: var(--accent);
  color: var(--accent-fg);
  box-shadow: var(--shadow-cta);
}
.btn-primary:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(30, 91, 204, 0.36);
}
.btn-primary:active { transform: translateY(0); }
.btn:disabled {
  opacity: 0.5;
  cursor: progress;
  box-shadow: none;
}
.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  margin-top: 12px;
}
.btn-secondary:hover {
  background: var(--accent-soft);
  text-decoration: none;
}
.btn-danger {
  background: transparent;
  color: var(--danger);
  border: 1.5px solid rgba(180, 82, 82, 0.5);
}
.btn-danger:hover {
  background: var(--danger-dim);
  text-decoration: none;
  border-color: var(--danger);
}

/* ────────── Landing variants (/v1, /v2, /v3) ──────────
   New variant selectors are scoped so the production "/" landing keeps its
   current layout and visual rhythm. */
.landing-variant {
  min-height: 100dvh;
  background:
    linear-gradient(180deg, rgba(30, 91, 204, 0.08), transparent 260px),
    var(--bg);
}
.landing-variant .variant-shell {
  width: min(100%, 520px);
  margin: 0 auto;
  padding: 0 18px 22px;
}
.landing-variant .variant-brand {
  padding-top: 14px;
  padding-bottom: 10px;
}
.landing-variant .variant-panel {
  position: relative;
  z-index: 1;
  padding: 14px 0 0;
}
.landing-variant .variant-eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}
.landing-variant .variant-title {
  margin: 0 auto 10px;
  max-width: 12ch;
  color: var(--text);
  font-size: 32px;
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.04;
  text-align: center;
}
.landing-variant .variant-subtitle {
  margin: 0 auto 16px;
  max-width: 34ch;
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.45;
  text-align: center;
}
.landing-variant .variant-benefits {
  display: grid;
  gap: 8px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}
.landing-variant .variant-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 8px 12px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.25;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-card);
}
.landing-variant .benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  color: var(--success);
  background: var(--success-soft);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 800;
}
.landing-variant .pricing-card {
  margin-bottom: 12px;
}

.landing-v1 {
  background: #08111F;
}
.landing-v1 .variant-shell {
  max-width: 560px;
  padding-right: 0;
  padding-left: 0;
  overflow: hidden;
}
.landing-v1 .variant-brand .brand-name {
  color: #FFFFFF;
}
.landing-v1 .variant-brand .brand-logo {
  color: #7AA2F7;
}
.landing-v1 .poster-stage {
  position: relative;
  height: 238px;
  margin: 0 0 -36px;
  padding: 10px 0 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(8, 17, 31, 0), #08111F 86%),
    radial-gradient(ellipse at 50% 12%, rgba(30, 91, 204, 0.36), transparent 68%);
}
.landing-v1 .poster-stage::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 46%;
  background: linear-gradient(180deg, transparent, #08111F);
  pointer-events: none;
}
.landing-v1 .poster-row {
  display: flex;
  gap: 10px;
  width: max-content;
  margin-bottom: 10px;
  will-change: transform;
}
.landing-v1 .poster-row-left {
  animation: posterScrollLeft 34s linear infinite;
}
.landing-v1 .poster-row-right {
  animation: posterScrollRight 38s linear infinite;
}
.landing-v1 .poster-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 88px;
  height: 128px;
  flex: 0 0 auto;
  padding: 10px 9px;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.38);
  overflow: hidden;
}
.landing-v1 .poster-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 36%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.52), transparent 58%);
}
.landing-v1 .poster-card span,
.landing-v1 .poster-card strong {
  position: relative;
  z-index: 1;
}
.landing-v1 .poster-card span {
  align-self: flex-start;
  padding: 3px 6px;
  color: #08111F;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 5px;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}
.landing-v1 .poster-card strong {
  font-size: 12px;
  line-height: 1.05;
}
.landing-v1 .tone-blue { background: linear-gradient(145deg, #1E5BCC, #071B43); }
.landing-v1 .tone-green { background: linear-gradient(145deg, #059669, #092D27); }
.landing-v1 .tone-purple { background: linear-gradient(145deg, #7C3AED, #22113F); }
.landing-v1 .tone-red { background: linear-gradient(145deg, #DC2626, #3A0D16); }
.landing-v1 .tone-gold { background: linear-gradient(145deg, #D99A24, #34220B); }
.landing-v1 .variant-panel {
  margin: 0 18px;
  padding: 18px 16px 16px;
  background: var(--bg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px 22px 0 0;
}
.landing-v1 .variant-title {
  max-width: 13ch;
}
.landing-v1 .variant-benefits {
  grid-template-columns: 1fr 1fr;
}
.landing-v1 .variant-benefits li {
  min-height: 44px;
  padding: 8px 9px;
  font-size: 12.5px;
}
.landing-v1 .benefit-icon {
  width: 22px;
  height: 22px;
  flex-basis: 22px;
}

.landing-v2 .variant-shell {
  max-width: 500px;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding-bottom: 14px;
}
/* Center the offer within the frame so the CTA fits without scrolling on
   short phones (see v5's movie-shell) rather than overflowing below the fold. */
.landing-v2 .variant-panel {
  margin-top: auto;
  margin-bottom: auto;
}
.landing-v2 .variant-title {
  max-width: 13ch;
  font-size: 29px;
  margin-bottom: 8px;
}
.landing-v2 .variant-subtitle {
  margin-bottom: 12px;
}
/* Two-up benefit grid on mobile: 2 rows instead of 4 halves the vertical
   space so the whole offer fits one screen. */
.landing-v2 .unlock-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 0 0 12px;
}
.landing-v2 .unlock-card {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 8px 10px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-card);
}
.landing-v2 .unlock-icon,
.landing-v2 .unlock-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
}
.landing-v2 .unlock-icon {
  width: 28px;
  height: 28px;
  color: var(--accent);
  background: var(--accent-soft);
}
.landing-v2 .unlock-card strong {
  color: var(--text);
  font-size: 13px;
  line-height: 1.15;
}
/* Per-card checks are dropped in the compact 2-up layout — the green trial
   ribbon and "No payment today" already carry the reassurance. */
.landing-v2 .unlock-check {
  display: none;
}
.landing-v2 .trial-ribbon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 10px;
  padding: 8px 12px;
  color: var(--success);
  background: var(--success-soft);
  border: 1px solid var(--success-dim);
  border-radius: var(--radius-m);
  font-size: 13px;
}
.landing-v2 .trial-ribbon span {
  color: var(--text);
  font-weight: 700;
}
.landing-v2 .trial-ribbon strong {
  font-size: 12px;
}

.landing-v3 .variant-shell {
  max-width: 460px;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
.landing-v3 .minimal-panel {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  padding-top: 8px;
  padding-bottom: 16px;
}
.landing-v3 .mini-shield {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-dim);
  border-radius: var(--radius-pill);
}
.landing-v3 .mini-shield svg {
  width: 28px;
  height: 28px;
}
.landing-v3 .variant-title {
  max-width: 14ch;
  font-size: 34px;
}
.landing-v3 .benefit-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 0 14px;
}
.landing-v3 .benefit-pills span {
  min-height: 32px;
  padding: 7px 11px;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 650;
  box-shadow: var(--shadow-card);
}
.landing-v3 .pricing-card-hero {
  padding-top: 20px;
  padding-bottom: 18px;
  border-color: var(--accent-dim);
}
.landing-v3 .pricing-card-hero .pricing-amount {
  font-size: 40px;
}

/* v4 options — all keep the /offer base layout and checkout contract, then
   adjust the visual treatment for World Cup 2026 preview selection. */
.landing-v4 .variant-title {
  max-width: 14ch;
}
.landing-v4 .variant-subtitle {
  max-width: 35ch;
}
.landing-v4 .variant-benefits li {
  min-height: 46px;
}
.landing-v4 .wc-poster-stage {
  isolation: isolate;
}
.landing-v4 .wc-poster-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 50% 16%, rgba(217, 154, 36, 0.42), transparent 58%),
    radial-gradient(ellipse at 18% 32%, rgba(5, 150, 105, 0.22), transparent 52%),
    radial-gradient(ellipse at 82% 34%, rgba(220, 38, 38, 0.2), transparent 48%);
}
.landing-v4-a .poster-card span,
.landing-v4-b .poster-card span {
  color: #07121F;
}
.landing-v4 .wc-trophy-mark {
  display: grid;
  place-items: center;
}
.landing-v4 .wc-trophy-mark svg {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 16px 28px rgba(217, 154, 36, 0.34));
}
.landing-v4 .wc-trophy-photo {
  background:
    linear-gradient(180deg, rgba(7, 18, 31, 0), rgba(7, 18, 31, 0.2)),
    url("/static/world-cup-trophy-only.png?v=2") center center / contain no-repeat;
}
.landing-v4-a .wc-trophy-mark {
  position: absolute;
  top: 22px;
  left: 50%;
  z-index: 3;
  width: 112px;
  height: 130px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.42);
  transform: translateX(-50%);
  backdrop-filter: blur(10px);
}
.landing-v4-a .poster-row-left {
  padding-top: 46px;
}
.landing-v4-a .poster-row-right {
  opacity: 0.72;
}
.landing-v4-a .variant-panel {
  border-top: 3px solid rgba(217, 154, 36, 0.7);
}
.landing-v4-a .variant-eyebrow {
  color: #B7791F;
}
.landing-v4-a .btn-primary,
.landing-v4-a .plan-toggle-opt.is-active {
  background: #D99A24;
}
.landing-v4-a .plan-toggle-opt.is-active {
  box-shadow: 0 12px 30px rgba(217, 154, 36, 0.28);
}
.landing-v4-a .pricing-card {
  border-color: rgba(217, 154, 36, 0.25);
}
.landing-v4-b {
  background: #07121F;
}
.landing-v4-b .wc-simple-trophy-stage {
  display: grid;
  place-items: center;
  height: 248px;
  margin: 0 0 -36px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7, 18, 31, 0), #07121F 92%),
    radial-gradient(ellipse at 50% 28%, rgba(217, 154, 36, 0.28), transparent 62%);
}
.landing-v4-b .wc-simple-trophy {
  width: 178px;
  height: 178px;
  margin-top: -6px;
  background:
    url("/static/world-cup-trophy-only.png?v=2") center center / contain no-repeat;
  border: 0;
  border-radius: 0;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.35),
    0 0 54px rgba(217, 154, 36, 0.3);
}
.landing-v4-b .wc-real-trophy-stage {
  height: 326px;
  margin-bottom: -46px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7, 18, 31, 0), rgba(7, 18, 31, 0.36) 56%, #07121F 94%),
    radial-gradient(ellipse at 50% 16%, rgba(217, 154, 36, 0.22), transparent 58%);
}
.landing-v4-b .wc-real-trophy-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, #07121F 0%, rgba(7, 18, 31, 0.18) 28%, rgba(7, 18, 31, 0.18) 72%, #07121F 100%),
    linear-gradient(180deg, rgba(7, 18, 31, 0.06), rgba(7, 18, 31, 0.18) 52%, #07121F 96%);
  pointer-events: none;
}
.landing-v4-b .wc-real-trophy-stage .wc-trophy-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center 46%;
  transform: scale(1.02);
}
.landing-v4-b .wc-scoreboard {
  position: absolute;
  top: 18px;
  right: 20px;
  left: auto;
  z-index: 3;
  display: grid;
  gap: 3px;
  width: min(54%, 250px);
  padding: 10px 12px 11px;
  color: #FFFFFF;
  text-align: center;
  background: rgba(7, 18, 31, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(12px);
}
.landing-v4-b .wc-scoreboard span {
  width: max-content;
  margin: 0 auto;
  padding: 3px 8px;
  color: #07121F;
  background: #22C55E;
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 850;
  line-height: 1;
}
.landing-v4-b .wc-scoreboard strong {
  font-size: 18px;
  line-height: 1.05;
}
.landing-v4-b .wc-scoreboard small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
}
.landing-v4-b .variant-panel {
  position: relative;
  z-index: 4;
  background: #F6F8FC;
}
.landing-v4-b .variant-eyebrow {
  color: #059669;
}
.landing-v4-b .btn-primary,
.landing-v4-b .plan-toggle-opt.is-active {
  background: #059669;
}
.landing-v4-b .plan-toggle-opt.is-active {
  box-shadow: 0 12px 30px rgba(5, 150, 105, 0.24);
}
.landing-v4-c {
  background: #08111F;
}
.landing-v4-c .variant-shell {
  overflow: hidden;
}
.landing-v4-c .wc-photo-stage {
  position: relative;
  min-height: 284px;
  margin: 0 0 -42px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(8, 17, 31, 0.06), rgba(8, 17, 31, 0.18) 30%, #08111F 90%),
    url("/static/world-cup-duel.jpeg") center 30% / cover no-repeat;
}
.landing-v4-c .wc-photo-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 26%, rgba(255, 255, 255, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(8, 17, 31, 0), rgba(8, 17, 31, 0.28) 48%, #08111F 92%);
}
.landing-v4-c .wc-photo-copy {
  position: absolute;
  right: 18px;
  bottom: 64px;
  left: 18px;
  z-index: 1;
  display: grid;
  gap: 6px;
  color: #FFFFFF;
  text-align: center;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.78);
}
.landing-v4-c .wc-photo-copy span {
  color: #22C55E;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.landing-v4-c .wc-photo-copy strong {
  max-width: 13ch;
  margin: 0 auto;
  font-size: 36px;
  line-height: 1.02;
}
.landing-v4-c .variant-panel {
  background: var(--bg);
}
.landing-v4-c .variant-eyebrow {
  color: #DC2626;
}
.landing-v4-c .btn-primary,
.landing-v4-c .plan-toggle-opt.is-active {
  background: #DC2626;
}
.landing-v4-c .plan-toggle-opt.is-active {
  box-shadow: 0 12px 30px rgba(220, 38, 38, 0.24);
}

/* v5-v7 movie/streaming tests. These keep the existing checkout DOM contract
   while changing the above-the-fold conversion frame. */
.landing-v5,
.landing-v6 {
  min-height: 100dvh;
  color: #FFFFFF;
  background:
    linear-gradient(180deg, #18243A 0%, #07111F 42%, #020617 100%);
}
/* Paint the root canvas dark for the movie landings so the dark theme extends
   through the iOS safe areas (status-bar strip + behind the bottom toolbar)
   instead of falling back to the light page background on mobile. */
html:has(.landing-v5),
html:has(.landing-v6) {
  background-color: #020617;
}
.landing-v5 .movie-shell,
.landing-v6 .blocked-shell {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  max-width: 500px;
  padding-bottom: 14px;
}
.landing-v5 .movie-brand .brand-name,
.landing-v6 .movie-brand .brand-name {
  color: #FFFFFF;
}
.landing-v5 .movie-brand .brand-logo,
.landing-v6 .movie-brand .brand-logo {
  color: #22C55E;
}
.landing-v5 .brand-vpn,
.landing-v6 .brand-vpn {
  color: #020617;
  background: #22C55E;
}
.landing-v5 .movie-simple-panel {
  margin-top: auto;
  margin-bottom: auto;
  padding: 12px 0 0;
  text-align: center;
}
.landing-v6 .blocked-offer-panel {
  margin-top: auto;
  padding: 12px 0 0;
  text-align: center;
}
.landing-v5 .variant-eyebrow,
.landing-v7 .variant-eyebrow {
  color: #059669;
}
.landing-v5 .variant-title,
.landing-v6 .variant-title {
  max-width: 12ch;
  color: #FFFFFF;
  font-size: 36px;
}
.landing-v5 .variant-subtitle,
.landing-v6 .variant-subtitle {
  max-width: 31ch;
  color: rgba(255, 255, 255, 0.76);
}
.movie-proof-line {
  margin: 0 auto 12px;
  max-width: 31ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
  text-align: center;
}
.movie-price-block.pricing-card {
  display: grid;
  gap: 2px;
  margin: 0 0 10px;
  padding: 4px 8px 2px;
  color: #FFFFFF;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.movie-price-block .pricing-headline {
  color: #22C55E;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.9px;
}
.movie-price-block .pricing-amount {
  color: #FFFFFF;
  font-size: 44px;
  line-height: 0.96;
  letter-spacing: 0;
}
.movie-price-block .pricing-sub {
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  font-weight: 600;
}
.movie-cta.btn-primary {
  min-height: 52px;
  color: #020617;
  background: #22C55E;
  box-shadow: 0 14px 34px rgba(34, 197, 94, 0.3);
}
.landing-v5 .reassurance,
.landing-v6 .reassurance {
  color: #BBF7D0;
}
.landing-v5 .reassurance::before,
.landing-v6 .reassurance::before,
.landing-v7 .reassurance::before {
  color: currentColor;
}
/* v5b — trial-forward design A/B (design_trial experiment). "3-day free trial"
   becomes the hero (the slot $0.00 held in v5); the literal price drops out of
   the block and reappears small + faded below the CTA. */
.landing-v5b .movie-price-block .pricing-eyebrow {
  color: #22C55E;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}
.landing-v5b .movie-price-block .pricing-headline {
  color: #FFFFFF;
  font-size: 26px;
  font-weight: 850;
  line-height: 1.05;
  letter-spacing: -0.2px;
  text-transform: uppercase;
}
.landing-v5b .movie-price-block .reassurance {
  margin: 4px 0 0;
  font-size: 12px;
  text-align: center;
}
.landing-v5b .price-after {
  margin: 12px 0 0;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.46);
  text-align: center;
}
/* v2b / v4b / v7b — trial-forward design A/B variants (design_trial). Same shape
   as v5b: promote the "3-day free trial" line to the hero (the slot $0.00 held),
   drop the price out of the card, and show it small + faded below the CTA. Hero
   colour tracks each theme (v2 dark text on white card, v4 white on the dark
   World Cup stage, v7 green on the light pass card). */
.landing-v2b .pricing-card .pricing-headline,
.landing-v4t .pricing-card .pricing-headline,
.landing-v7b .movie-price-block .pricing-headline {
  font-size: 26px;
  font-weight: 850;
  line-height: 1.05;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  margin: 0 0 2px;
}
.landing-v2b .pricing-card .pricing-headline {
  color: var(--text);
}
.landing-v4t .pricing-card .pricing-headline {
  color: #FFFFFF;
}
.landing-v7b .movie-price-block .pricing-headline {
  color: #059669;
}
.landing-v2b .pricing-card .reassurance,
.landing-v4t .pricing-card .reassurance,
.landing-v7b .movie-price-block .reassurance {
  margin: 4px 0 0;
  font-size: 12px;
  text-align: center;
}
.landing-v2b .price-after,
.landing-v4t .price-after,
.landing-v7b .price-after {
  margin: 12px 0 0;
  font-size: 11px;
  text-align: center;
}
.movie-plan-toggle.plan-toggle {
  margin: 12px 0 10px;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.13);
}
.movie-plan-toggle .plan-toggle-opt {
  color: rgba(255, 255, 255, 0.72);
}
.movie-plan-toggle .plan-toggle-opt:hover {
  color: #FFFFFF;
}
.movie-plan-toggle .plan-toggle-opt.is-active {
  color: #020617;
  background: #22C55E;
  box-shadow: 0 10px 26px rgba(34, 197, 94, 0.2);
}
.movie-plan-toggle .plan-toggle-opt.is-active .plan-toggle-badge {
  color: #020617;
  background: rgba(2, 6, 23, 0.12);
}
.landing-v5 .legal-inline,
.landing-v6 .legal-inline {
  color: rgba(255, 255, 255, 0.38);
}
.landing-v5 .legal-inline a,
.landing-v6 .legal-inline a {
  color: rgba(255, 255, 255, 0.58);
}
.landing-v6 .blocked-player {
  position: relative;
  aspect-ratio: 16 / 10.5;
  margin: 18px 0 14px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(30, 91, 204, 0.82), rgba(220, 38, 38, 0.78)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 2px, rgba(255, 255, 255, 0) 2px 30px),
    #111827;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.32);
}
.landing-v6 .blocked-player::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.06), rgba(2, 6, 23, 0.74));
}
.landing-v6 .blocked-message {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 1;
  display: grid;
  gap: 6px;
  padding: 12px;
  text-align: center;
  background: rgba(2, 6, 23, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}
.landing-v6 .blocked-message span {
  color: #FCA5A5;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.8px;
  line-height: 1;
  text-transform: uppercase;
}
.landing-v6 .blocked-message strong {
  color: #FFFFFF;
  font-size: 15px;
  line-height: 1.12;
}
.landing-v6 .blocked-offer-panel {
  padding: 14px 12px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
}

.landing-v7 {
  background:
    linear-gradient(180deg, rgba(5, 150, 105, 0.12), rgba(244, 247, 251, 0) 340px),
    var(--bg);
}
.landing-v7 .light-pass-shell {
  max-width: 500px;
}
.landing-v7 .stream-pass-card {
  margin: 8px 0 14px;
  padding: 16px;
  background: #FFFFFF;
  border: 1px solid var(--hairline);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
}
.landing-v7 .stream-pass-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--text-2);
  font-size: 12px;
  font-weight: 800;
}
.landing-v7 .stream-pass-top strong {
  padding: 5px 9px;
  color: #064E3B;
  background: #DCFCE7;
  border-radius: var(--radius-pill);
  font-size: 11px;
  line-height: 1;
}
.landing-v7 .stream-pass-lines {
  display: grid;
  gap: 7px;
}
.landing-v7 .stream-pass-lines span {
  height: 11px;
  border-radius: var(--radius-pill);
  background: #E2E8F0;
}
.landing-v7 .stream-pass-lines span:nth-child(1) {
  width: 88%;
  background: #CBD5E1;
}
.landing-v7 .stream-pass-lines span:nth-child(2) {
  width: 62%;
}
.landing-v7 .stream-pass-lines span:nth-child(3) {
  width: 76%;
  background: #DCFCE7;
}
.landing-v7 .light-pass-panel {
  text-align: center;
}
.landing-v7 .variant-title {
  max-width: 13ch;
}
.landing-v7 .variant-subtitle {
  max-width: 32ch;
}
.landing-v7 .light-proof {
  color: var(--text-2);
}
.landing-v7 .movie-price-block.pricing-card {
  margin-bottom: 10px;
  padding: 14px 12px 12px;
  color: var(--text);
  background: #FFFFFF;
  border: 1px solid rgba(5, 150, 105, 0.2);
  box-shadow: var(--shadow-card);
}
.landing-v7 .movie-price-block .pricing-headline {
  color: #059669;
}
.landing-v7 .movie-price-block .pricing-amount {
  color: var(--text);
}
.landing-v7 .movie-price-block .pricing-sub {
  color: var(--text-3);
}
.landing-v7 .light-pass-cta.btn-primary,
.landing-v7 .movie-plan-toggle .plan-toggle-opt.is-active {
  background: #059669;
}
.landing-v7 .light-pass-cta.btn-primary {
  color: #FFFFFF;
  box-shadow: 0 14px 34px rgba(5, 150, 105, 0.22);
}
.landing-v7 .movie-plan-toggle.plan-toggle {
  background: var(--surface-elev);
  border-color: var(--hairline);
}
.landing-v7 .movie-plan-toggle .plan-toggle-opt {
  color: var(--text-2);
}
.landing-v7 .movie-plan-toggle .plan-toggle-opt:hover {
  color: var(--text);
}
.landing-v7 .movie-plan-toggle .plan-toggle-opt.is-active {
  color: #FFFFFF;
  box-shadow: 0 10px 26px rgba(5, 150, 105, 0.18);
}
.landing-v7 .movie-plan-toggle .plan-toggle-opt.is-active .plan-toggle-badge {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.18);
}

@media (max-height: 700px) {
  .landing-v6 .variant-brand {
    padding-top: 10px;
    padding-bottom: 6px;
  }
  .landing-v6 .blocked-player {
    aspect-ratio: 16 / 8.6;
    margin: 8px 0 8px;
    border-radius: 18px;
  }
  .landing-v6 .blocked-message {
    right: 12px;
    bottom: 10px;
    left: 12px;
    padding: 10px;
  }
  .landing-v6 .blocked-offer-panel {
    padding: 10px 10px 8px;
    border-radius: 20px;
  }
  .landing-v6 .variant-title {
    font-size: 31px;
  }
  .landing-v6 .variant-subtitle {
    margin-bottom: 8px;
  }
  .landing-v6 .movie-price-block.pricing-card {
    margin-bottom: 8px;
  }
  .landing-v6 .movie-cta.btn-primary {
    min-height: 48px;
  }
}

.landing-world-cup {
  min-height: 100dvh;
  color: #FFFFFF;
  background:
    linear-gradient(180deg, #07121F 0%, #05080D 58%, #05080D 100%);
}
.landing-world-cup .variant-shell {
  max-width: 560px;
  padding-right: 0;
  padding-left: 0;
  overflow: hidden;
}
.landing-world-cup .variant-brand {
  position: relative;
  z-index: 3;
  padding: 14px 18px 8px;
}
.landing-world-cup .variant-brand .brand-name {
  color: #FFFFFF;
}
.landing-world-cup .variant-brand .brand-logo {
  color: #22C55E;
}
.landing-world-cup .brand-vpn {
  background: #22C55E;
  color: #06110A;
}
.landing-world-cup .wc-hero-stage {
  position: relative;
  min-height: 276px;
  margin: 0 0 -50px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7, 18, 31, 0), rgba(7, 18, 31, 0.26) 54%, #05080D 96%),
    radial-gradient(ellipse at 50% 28%, rgba(217, 154, 36, 0.34), transparent 56%),
    #07121F;
}
.landing-world-cup .wc-hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(5, 8, 13, 0.52), rgba(5, 8, 13, 0.08) 34%, rgba(5, 8, 13, 0.08) 66%, rgba(5, 8, 13, 0.52)),
    linear-gradient(180deg, rgba(5, 8, 13, 0), rgba(5, 8, 13, 0.14) 46%, #05080D 96%);
  pointer-events: none;
}
.landing-world-cup .wc-flag-wall {
  position: absolute;
  inset: 6px -28px auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 4px 0;
  opacity: 0.84;
  transform: rotate(-1deg);
}
.landing-world-cup .flag-tile {
  display: block;
  height: 74px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.34);
}
.landing-world-cup .flag-usa {
  background: repeating-linear-gradient(180deg, #B91C1C 0 9px, #FFFFFF 9px 18px);
}
.landing-world-cup .flag-canada {
  background: linear-gradient(90deg, #D01C1F 0 27%, #FFFFFF 27% 73%, #D01C1F 73%);
}
.landing-world-cup .flag-brazil {
  background:
    radial-gradient(circle at 50% 50%, #1D4ED8 0 18%, transparent 19%),
    linear-gradient(135deg, transparent 31%, #FACC15 31% 69%, transparent 69%),
    #16A34A;
}
.landing-world-cup .flag-mexico {
  background: linear-gradient(90deg, #15803D 0 33%, #FFFFFF 33% 66%, #B91C1C 66%);
}
.landing-world-cup .flag-argentina {
  background: linear-gradient(180deg, #75AADB 0 33%, #FFFFFF 33% 66%, #75AADB 66%);
}
.landing-world-cup .flag-france {
  background: linear-gradient(90deg, #1D4ED8 0 33%, #FFFFFF 33% 66%, #DC2626 66%);
}
.landing-world-cup .flag-england {
  background:
    linear-gradient(90deg, transparent 0 42%, #B91C1C 42% 58%, transparent 58%),
    linear-gradient(180deg, transparent 0 39%, #B91C1C 39% 61%, transparent 61%),
    #FFFFFF;
}
.landing-world-cup .flag-germany {
  background: linear-gradient(180deg, #111827 0 33%, #DC2626 33% 66%, #FACC15 66%);
}
.landing-world-cup .flag-spain {
  background: linear-gradient(180deg, #B91C1C 0 25%, #FACC15 25% 75%, #B91C1C 75%);
}
.landing-world-cup .flag-portugal {
  background: linear-gradient(90deg, #15803D 0 42%, #DC2626 42%);
}
.landing-world-cup .flag-italy {
  background: linear-gradient(90deg, #15803D 0 33%, #FFFFFF 33% 66%, #DC2626 66%);
}
.landing-world-cup .flag-belgium {
  background: linear-gradient(90deg, #111827 0 33%, #FACC15 33% 66%, #DC2626 66%);
}
.landing-world-cup .wc-hero-trophy {
  position: absolute;
  top: 20px;
  left: 50%;
  z-index: 3;
  width: 150px;
  height: 218px;
  background:
    url("/static/world-cup-trophy-only.png?v=2") center center / contain no-repeat;
  border: 0;
  border-radius: 0;
  box-shadow:
    0 28px 74px rgba(0, 0, 0, 0.32),
    0 0 62px rgba(217, 154, 36, 0.34);
  transform: translateX(-50%);
}
.landing-world-cup .variant-panel {
  position: relative;
  z-index: 4;
  margin: 0 18px;
  padding: 0 0 22px;
  background: transparent;
  border: 0;
  border-radius: 0;
}
.landing-world-cup .variant-eyebrow {
  margin-bottom: 10px;
  color: #22C55E;
  letter-spacing: 0;
}
.landing-world-cup .variant-title {
  max-width: 16ch;
  color: #FFFFFF;
  font-size: 36px;
  line-height: 1.05;
  text-shadow: 0 3px 28px rgba(0, 0, 0, 0.72);
}
.landing-world-cup .variant-subtitle {
  max-width: 33ch;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  margin-bottom: 14px;
}
.landing-world-cup .variant-benefits {
  gap: 7px;
  margin-bottom: 14px;
}
.landing-world-cup .variant-benefits li {
  min-height: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.92);
  background: transparent;
  border: 0;
  box-shadow: none;
  font-size: 15.5px;
}
.landing-world-cup .benefit-icon {
  color: #22C55E;
  background: transparent;
  font-size: 20px;
}
.landing-world-cup .plan-toggle {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}
.landing-world-cup .plan-toggle-opt {
  color: rgba(255, 255, 255, 0.72);
}
.landing-world-cup .plan-toggle-opt:hover {
  color: #FFFFFF;
}
.landing-world-cup .btn-primary,
.landing-world-cup .plan-toggle-opt.is-active {
  background: #22C55E;
  color: #06110A;
}
.landing-world-cup .plan-toggle-opt.is-active {
  box-shadow: 0 14px 34px rgba(34, 197, 94, 0.26);
}
.landing-world-cup .pricing-card {
  color: #FFFFFF;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.landing-world-cup .pricing-headline,
.landing-world-cup .pricing-sub,
.landing-world-cup .reassurance,
.landing-world-cup .legal-inline,
.landing-world-cup .legal-inline a {
  color: rgba(255, 255, 255, 0.58);
}
.landing-world-cup .pricing-amount {
  color: #22C55E;
}

@media (max-width: 430px) {
  .landing-world-cup {
    height: 100dvh;
    overflow: hidden;
  }
  .landing-world-cup .variant-shell {
    height: 100dvh;
    display: flex;
    flex-direction: column;
  }
  .landing-world-cup .variant-brand {
    padding-top: 10px;
    padding-bottom: 4px;
  }
  .landing-world-cup .brand-logo {
    width: 22px;
    height: 22px;
  }
  .landing-world-cup .brand-name {
    font-size: 20px;
  }
  .landing-world-cup .wc-hero-stage {
    min-height: 220px;
    margin-bottom: -42px;
    flex: 0 0 220px;
  }
  .landing-world-cup .wc-flag-wall {
    inset: 4px -24px auto;
    gap: 6px;
  }
  .landing-world-cup .flag-tile {
    height: 58px;
    border-radius: 7px;
  }
  .landing-world-cup .wc-hero-trophy {
    top: 14px;
    width: 122px;
    height: 178px;
  }
  .landing-world-cup .variant-panel {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 0;
    margin-right: 18px;
    margin-left: 18px;
    padding-bottom: 10px;
  }
  .landing-world-cup .variant-eyebrow {
    margin-bottom: 7px;
    font-size: 10px;
  }
  .landing-world-cup .variant-title {
    max-width: 18ch;
    margin-bottom: 8px;
    font-size: 31px;
    line-height: 1.03;
  }
  .landing-world-cup .variant-subtitle {
    max-width: 34ch;
    margin-bottom: 10px;
    font-size: 12.5px;
    line-height: 1.32;
  }
  .landing-world-cup .variant-benefits {
    gap: 5px;
    margin-bottom: 10px;
  }
  .landing-world-cup .variant-benefits li {
    gap: 7px;
    font-size: 13.5px;
    line-height: 1.16;
  }
  .landing-world-cup .benefit-icon {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
    font-size: 17px;
  }
  .landing-world-cup .plan-toggle {
    margin-bottom: 8px;
  }
  .landing-world-cup .plan-toggle-opt {
    min-height: 36px;
    padding-top: 6px;
    padding-bottom: 6px;
    font-size: 13px;
  }
  .landing-world-cup .pricing-card {
    margin-bottom: 8px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .landing-world-cup .pricing-headline {
    margin-bottom: 2px;
    font-size: 10px;
  }
  .landing-world-cup .pricing-amount {
    font-size: 29px;
  }
  .landing-world-cup .pricing-sub {
    margin-top: 2px;
    font-size: 12px;
  }
  .landing-world-cup .btn-primary {
    min-height: 46px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .landing-world-cup .reassurance {
    margin-top: 7px;
    margin-bottom: 0;
  }
  .landing-world-cup .legal-inline {
    display: none;
  }
}

@media (max-width: 390px) and (max-height: 740px) {
  .landing-world-cup .wc-hero-stage {
    min-height: 184px;
    margin-bottom: -34px;
    flex-basis: 184px;
  }
  .landing-world-cup .flag-tile {
    height: 50px;
  }
  .landing-world-cup .wc-hero-trophy {
    top: 10px;
    width: 104px;
    height: 152px;
  }
  .landing-world-cup .variant-title {
    font-size: 27px;
  }
  .landing-world-cup .variant-subtitle {
    display: none;
  }
  .landing-world-cup .variant-benefits li {
    font-size: 13px;
  }
  .landing-world-cup .pricing-card {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}

@keyframes posterScrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes posterScrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .landing-v1 .poster-row-left,
  .landing-v1 .poster-row-right {
    animation: none;
  }
}

@media (min-width: 720px) {
  .landing-variant .variant-shell {
    padding-bottom: 36px;
  }
  .landing-variant .variant-title {
    font-size: 38px;
  }
  .landing-v1 .variant-shell {
    max-width: 760px;
  }
  .landing-v1 .poster-stage {
    height: 310px;
  }
  .landing-v1 .variant-panel {
    max-width: 480px;
    margin: -10px auto 0;
    border-radius: var(--radius-xl);
  }
  .landing-v2 .unlock-grid {
    grid-template-columns: 1fr 1fr;
  }
  .landing-v3 .variant-title {
    font-size: 42px;
  }
  .landing-v4 .wc-title {
    margin-top: -110px;
    font-size: 40px;
  }
  .landing-v4 .wc-trophy {
    width: 132px;
  }
}

/* ────────── Activated page ────────── */
.activated {
  max-width: 520px;
  margin: 0 auto;
  padding: 8px 20px 48px;
}
.activated-card { padding-top: 12px; }
.activated-card h1 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.3px;
  margin: 12px 0 14px;
  color: var(--text);
}
.activated-card .accent {
  color: var(--accent);
}
.activated-card .lede {
  color: var(--text-2);
  font-size: 15px;
  margin-bottom: 24px;
}

/* Code box — single-line by design. clamp() scales the digits to fit
   small phones (375px) without ever wrapping in the middle of the code. */
.code-box {
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-l);
  padding: 28px 16px;
  margin-bottom: 12px;
  font-family: var(--font-mono);
  font-size: clamp(20px, 5.6vw, 26px);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
  box-shadow: var(--shadow-card);
  white-space: nowrap;
  overflow: hidden;
}
.code-group {
  color: var(--text);
  display: inline-block;
  padding: 0 6px;
}
.code-sep {
  color: var(--accent);
  display: inline-block;
  padding: 0 2px;
  opacity: 0.7;
}

/* Copy code — labeled button, sits below the code. SVG icon (no emoji). */
.btn-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 44px;
  padding: 10px 16px;
  margin-bottom: 18px;
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.btn-copy:hover { background: var(--accent-soft); border-color: var(--accent); }
.btn-copy:active { transform: translateY(1px); }
.btn-copy svg { flex-shrink: 0; }

/* Default vs success states swap via .copied class — keeps the SVGs intact
   instead of overwriting textContent like the old emoji approach did. */
.btn-copy-default,
.btn-copy-success {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-copy-success { display: none; }
/* "Copied!" is a success affirmation, so it uses --success (emerald),
   not --accent (blue brand). */
.btn-copy.copied { background: var(--success); color: #fff; border-color: var(--success); }
.btn-copy.copied .btn-copy-default { display: none; }
.btn-copy.copied .btn-copy-success { display: inline-flex; }

/* Utility: keep two words together (e.g. brand name "Unblockr VPN") */
.nowrap { white-space: nowrap; }

/* The two link-like sections at the bottom of activated.html */
.activated p.manage {
  text-align: center;
  margin-top: 18px;
  color: var(--text-2);
  font-size: 14px;
}
.support {
  text-align: center;
  margin-top: 28px;
  color: var(--text-3);
  font-size: 13px;
}

/* ────────── Error card (shared) ────────── */
.error-card {
  text-align: center;
  padding: 48px 16px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-l);
  margin-top: 16px;
  box-shadow: var(--shadow-card);
}
.error-card h1 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--text);
}
.error-card p {
  color: var(--text-2);
  margin-bottom: 24px;
}

/* ────────── Manage subscription page ────────── */
main.manage {
  max-width: 520px;
  margin: 0 auto;
  padding: 8px 20px 48px;
}
.manage-card { padding-top: 12px; }
.manage-card h1 {
  font-size: 26px;
  font-weight: 700;
  margin: 12px 0 24px;
  letter-spacing: -0.3px;
  color: var(--text);
}
.manage-section-label {
  color: var(--text-2);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin: 24px 6px 10px;
}
.manage-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-l);
  padding: 14px 18px;
  margin-bottom: 8px;
  font-size: 15px;
  color: var(--text);
  box-shadow: var(--shadow-card);
}
.manage-row .accent {
  color: var(--accent);
  font-weight: 600;
}
.manage-row small {
  color: var(--text-2);
  font-size: 12px;
}
.manage-form { margin-top: 28px; }

/* ────────── Cancel retention interstitial ──────────
   Reasons render as selectable rows (radio + label), styled like manage-rows.
   The chosen reason highlights via :has() — no JS. Native `required` on the
   radio group enforces a selection before the form can submit. */
.cancel-confirm { margin-top: 8px; }
.reason {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-l);
  padding: 14px 18px;
  margin-bottom: 8px;
  font-size: 15px;
  color: var(--text);
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition: border-color 0.12s ease, background 0.12s ease;
}
.reason:hover { border-color: var(--hairline-strong); }
.reason input {
  accent-color: var(--accent);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin: 0;
}
.reason:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.cancel-actions { margin-top: 26px; }
.cancel-actions .btn + .btn { margin-top: 12px; }

/* ────────── Long-form documents (privacy, terms) ──────────
   Optimized for reading on a phone: 60–75 char measure on desktop,
   tighter on mobile. Section headings use the same hierarchy as the
   rest of the product so the doc still feels like part of the app. */
main.doc {
  max-width: 680px;
  margin: 0 auto;
  padding: 8px 20px 56px;
}
.doc-card { padding-top: 8px; }
.doc-card h1 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 1.2;
  margin: 12px 0 6px;
  color: var(--text);
}
.doc-card .doc-updated {
  color: var(--text-2);
  font-size: 13px;
  margin: 0 0 22px;
}
.doc-card h2 {
  font-size: 17px;
  font-weight: 700;
  margin: 28px 0 10px;
  letter-spacing: -0.2px;
  color: var(--text);
}
.doc-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 18px 0 8px;
  color: var(--text);
}
.doc-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 12px;
}
.doc-card p.lede {
  color: var(--text-2);
  font-size: 15px;
  margin-bottom: 16px;
}
.doc-card ul, .doc-card ol {
  padding-left: 22px;
  margin: 0 0 14px;
}
.doc-card li {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 8px;
}
.doc-card a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.doc-card strong { font-weight: 700; }
.doc-card em { color: var(--text-2); font-style: normal; }
.doc-card .doc-toc {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-l);
  padding: 14px 18px;
  margin: 12px 0 22px;
  box-shadow: var(--shadow-card);
}
.doc-card .doc-toc h2 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-2);
  margin: 0 0 8px;
}
.doc-card .doc-toc ol {
  padding-left: 20px;
  margin: 0;
}
.doc-card .doc-toc li {
  font-size: 14px;
  margin-bottom: 4px;
}
.doc-card .doc-toc a {
  color: var(--text);
  text-decoration: none;
}
.doc-card .doc-toc a:hover {
  color: var(--accent);
  text-decoration: underline;
}
.doc-card table {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 18px;
  font-size: 14px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.doc-card th, .doc-card td {
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--hairline);
}
.doc-card th {
  background: var(--surface-elev);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--text-2);
}
.doc-card tr:last-child td { border-bottom: none; }
.doc-card hr {
  border: 0;
  border-top: 1px solid var(--hairline);
  margin: 28px 0;
}
/* FAQ — collapsible Q&A built on native <details>/<summary>. No JS,
   accessible by default, animates only the chevron (height animation
   isn't possible without JS for native details). */
.faq-item {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-l);
  margin-bottom: 10px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.faq-item[open] { border-color: var(--accent-dim); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  margin-left: auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--text-2);
  border-bottom: 2px solid var(--text-2);
  transform: rotate(45deg);
  transition: transform 0.18s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  transform: rotate(-135deg);
  border-color: var(--accent);
}
.faq-item summary:hover { color: var(--accent); }
.faq-item .faq-body {
  padding: 0 16px 14px;
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.6;
}
.faq-item .faq-body p { margin: 0 0 10px; }
.faq-item .faq-body p:last-child { margin-bottom: 0; }
.faq-item .faq-body ul {
  margin: 0 0 10px;
  padding-left: 20px;
}
.faq-item .faq-body li { font-size: 14.5px; line-height: 1.55; margin-bottom: 4px; }
.faq-item .faq-body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.faq-item .faq-body code {
  font-family: var(--font-mono);
  font-size: 13px;
  background: var(--surface-elev);
  padding: 1px 6px;
  border-radius: 4px;
  border: 1px solid var(--hairline);
}
.faq-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--text-2);
  margin: 28px 6px 10px;
}
.faq-section-label:first-of-type { margin-top: 18px; }

/* Compact footer with legal links — appears on landing + post-purchase pages */
.legal-footer {
  text-align: center;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--hairline);
  color: var(--text-3);
  font-size: 12px;
}
.legal-footer a {
  color: var(--text-2);
  text-decoration: none;
  margin: 0 6px;
}
.legal-footer a:hover { color: var(--accent); text-decoration: underline; }

/* ────────── Reduced motion ────────── */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

/* ────────── Larger screens ────────── */
@media (min-width: 720px) {
  .hero-title { font-size: 42px; }
  .activated-card h1, .manage-card h1 { font-size: 30px; }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }
  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 2px;
  }
  .site-nav a {
    flex: 0 0 auto;
  }
  .product-hero,
  .split-section,
  .pricing-section,
  .site-footer {
    grid-template-columns: 1fr;
  }
  .product-hero {
    gap: 36px;
    min-height: auto;
    padding-top: 36px;
  }
  .site-title {
    max-width: 13ch;
    font-size: 54px;
  }
  .app-preview {
    justify-content: flex-start;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-strip {
    grid-template-columns: 1fr;
  }
  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 28px, 1120px);
  }
  .site-header {
    gap: 14px;
    padding: 14px 0;
  }
  .site-nav {
    gap: 12px;
  }
  .site-nav a,
  .site-footer a {
    font-size: 13px;
  }
  .nav-cta {
    min-height: 36px;
    padding: 0 12px;
    font-size: 13px;
  }
  .product-hero {
    padding: 28px 0 48px;
  }
  .product-hero .hero-eyebrow {
    text-align: left;
  }
  .site-title {
    font-size: 42px;
  }
  .site-lede {
    font-size: 16px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .hero-btn {
    width: 100%;
  }
  .phone-frame {
    width: 100%;
    border-radius: 24px;
  }
  .connect-orb {
    width: 168px;
    height: 168px;
    margin: 26px auto;
  }
  .site-section {
    padding: 52px 0;
  }
  .section-head h2,
  .pricing-copy h2 {
    max-width: 14ch;
    font-size: 32px;
  }
  .section-head p,
  .pricing-copy p {
    font-size: 15px;
  }
  .feature-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .feature-card {
    min-height: 0;
  }
  .step-card {
    padding: 20px;
  }
  .step-card span {
    position: static;
    margin-bottom: 14px;
  }
  .checkout-panel {
    padding: 14px;
    border-radius: var(--radius-l);
  }
  .site-footer {
    padding-bottom: 38px;
  }
}
