/* ─────────────────────────────────────────────────────────
   Cyber Coach — Marketing site styles
   Light theme · home-user focused · maps to Brand/tokens.css
   ──────────────────────────────────────────────────────── */

:root {
  /* Ink / text */
  --cc-ink: #0B1220;
  --cc-ink-2: #475569;
  --cc-ink-3: #94A3B8;

  /* Surfaces */
  --cc-bg: #EFF4F9;
  --cc-surface: #FFFFFF;
  --cc-surface-2: #F1F6FB;
  --cc-surface-3: #E6EEF6;
  --cc-border: #DCE5EE;
  --cc-border-2: #C7D3E0;

  /* Brand / sky */
  --cc-primary: #0EA5E9;
  --cc-primary-deep: #0369A1;
  --cc-primary-light: #7DD3FC;
  --cc-primary-soft: #DBF1FC;
  --cc-primary-grad: linear-gradient(135deg, #38BDF8 0%, #0284C7 100%);

  /* Semantic */
  --cc-success: #14B8A6;
  --cc-success-deep: #0F766E;
  --cc-success-soft: #E6FAF6;
  --cc-warning: #F59E0B;
  --cc-warning-soft: #FEF3C7;
  --cc-critical: #E11D48;
  --cc-critical-soft: #FFE4E6;

  --cc-shadow-sm: 0 1px 2px rgba(11, 18, 32, 0.05), 0 1px 1px rgba(11, 18, 32, 0.03);
  --cc-shadow-md: 0 4px 12px rgba(11, 18, 32, 0.06), 0 1px 2px rgba(11, 18, 32, 0.04);
  --cc-shadow-lg: 0 20px 40px rgba(11, 18, 32, 0.10), 0 4px 12px rgba(11, 18, 32, 0.05);
  --cc-shadow-glow: 0 8px 30px rgba(14, 165, 233, 0.18);

  --cc-bg-gradient: radial-gradient(125% 85% at 50% -10%, #FFFFFF 0%, #EFF4F9 48%, #E3ECF5 100%);

  --cc-font-sans: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --cc-font-mono: 'Geist Mono', ui-monospace, 'SF Mono', Menlo, Consolas, monospace;

  --cc-max: 1240px;
  --cc-gutter: 32px;
  --cc-radius-sm: 10px;
  --cc-radius: 16px;
  --cc-radius-lg: 24px;

  --cc-ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cc-bg-gradient);
  background-attachment: fixed;
  color: var(--cc-ink);
  font-family: var(--cc-font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.005em;
}

img, svg { display: block; max-width: 100%; }

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s var(--cc-ease);
}
a:hover { color: var(--cc-primary-deep); }

button { font-family: inherit; }

h1, h2, h3, h4 { color: var(--cc-ink); }

:focus-visible {
  outline: 3px solid var(--cc-primary);
  outline-offset: 2px;
  border-radius: 4px;
}

.cc-wrap {
  max-width: var(--cc-max);
  margin: 0 auto;
  padding: 0 var(--cc-gutter);
}

.cc-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--cc-surface);
  color: var(--cc-ink);
  padding: 12px 18px;
  border-radius: 0 0 12px 0;
  z-index: 100;
  box-shadow: var(--cc-shadow-md);
}
.cc-skip:focus { left: 0; }

/* ─── Dot-grid background (echoes the app welcome screen) ─── */
.cc-dotgrid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(circle at 1px 1px, var(--cc-border-2) 1px, transparent 0);
  background-size: 22px 22px;
  opacity: 0.55;
  mask-image: radial-gradient(70% 55% at 50% 20%, #000 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(70% 55% at 50% 20%, #000 0%, transparent 80%);
}

/* ─── Header ─── */
.cc-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  background: rgba(239, 244, 249, 0.72);
  border-bottom: 1px solid var(--cc-border);
}
.cc-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}
.cc-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.025em;
  font-size: 18px;
  color: var(--cc-ink);
  white-space: nowrap;
}
.cc-brand__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--cc-shadow-sm), inset 0 0 0 1px rgba(11, 18, 32, 0.06);
  flex-shrink: 0;
}
.cc-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.cc-nav__links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--cc-ink-2);
}
.cc-nav__links a:hover { color: var(--cc-ink); }
.cc-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  background: var(--cc-primary-grad);
  color: #fff;
  box-shadow: var(--cc-shadow-glow);
  transition: transform 0.15s var(--cc-ease), box-shadow 0.2s var(--cc-ease);
}
.cc-nav__cta:hover {
  transform: translateY(-1px);
  color: #fff;
  box-shadow: 0 12px 34px rgba(14, 165, 233, 0.32);
}
.cc-nav__cta svg { width: 12px; height: 12px; }

/* Mobile menu toggle */
.cc-nav__toggle {
  display: none;
  background: var(--cc-surface);
  border: 1px solid var(--cc-border-2);
  border-radius: 10px;
  padding: 8px;
  color: var(--cc-ink);
  cursor: pointer;
  line-height: 0;
}
.cc-nav__toggle svg { width: 20px; height: 20px; }

/* ─── Shared section helpers ─── */
.cc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--cc-font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cc-primary-deep);
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--cc-border);
  background: var(--cc-primary-soft);
}
.cc-eyebrow__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--cc-primary);
  box-shadow: 0 0 10px var(--cc-primary);
  animation: ccPulse 2.2s ease-in-out infinite;
}
@keyframes ccPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.cc-section__eyebrow {
  font-family: var(--cc-font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cc-primary-deep);
  margin-bottom: 16px;
}
.cc-section__sub {
  color: var(--cc-ink-2);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
  text-wrap: pretty;
}

/* ─── App Store button ─── */
.cc-store {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px 12px 18px;
  background: var(--cc-ink);
  border: 1px solid var(--cc-ink);
  border-radius: 14px;
  color: #fff;
  transition: transform 0.15s var(--cc-ease), box-shadow 0.2s var(--cc-ease);
}
.cc-store:hover {
  transform: translateY(-1px);
  color: #fff;
  box-shadow: var(--cc-shadow-lg);
}
.cc-store__icon { width: 26px; height: 30px; flex-shrink: 0; }
.cc-store__text { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.cc-store__top { font-size: 10.5px; color: rgba(255, 255, 255, 0.72); letter-spacing: 0.06em; text-transform: uppercase; }
.cc-store__bottom { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }

/* ─── Phone mockup (light theme — the app's question screen) ─── */
.phone {
  position: relative;
  z-index: 1;
  width: 320px;
  height: 650px;
  border-radius: 48px;
  background: linear-gradient(160deg, #cdd9e6 0%, #b9c8d8 100%);
  border: 1px solid rgba(11, 18, 32, 0.08);
  box-shadow:
    0 50px 100px -30px rgba(11, 31, 58, 0.4),
    0 20px 50px -10px rgba(14, 165, 233, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  padding: 12px;
  overflow: hidden;
}
.phone__notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 28px;
  background: #0B1220;
  border-radius: 999px;
  z-index: 5;
}
.phone__screen {
  width: 100%;
  height: 100%;
  border-radius: 38px;
  background: var(--cc-bg);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.app-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 26px 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--cc-ink);
}
.app-statusbar svg { width: 16px; height: 12px; }
.app-statusbar__icons { display: flex; gap: 6px; align-items: center; }

.app-topbar {
  padding: 34px 22px 0;
  text-align: center;
}
.app-topbar h2 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--cc-ink);
}

.app-progress { padding: 22px 22px 0; }
.app-progress__row {
  display: flex;
  justify-content: space-between;
  font-family: var(--cc-font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
}
.app-progress__label { color: var(--cc-primary-deep); }
.app-progress__count { color: var(--cc-ink-3); }
.app-progress__track {
  display: flex;
  gap: 6px;
  margin-top: 12px;
}
.app-progress__seg {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: var(--cc-surface-3);
}
.app-progress__seg.on { background: var(--cc-primary); }

.app-body { padding: 22px 22px 0; }
.app-pillrow { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.app-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 999px;
  font-family: var(--cc-font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.app-pill__dot { width: 6px; height: 6px; border-radius: 50%; }
.app-pill--high { background: var(--cc-warning-soft); color: #92600b; }
.app-pill--high .app-pill__dot { background: var(--cc-warning); }
.app-cat {
  font-family: var(--cc-font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cc-ink-3);
}
.app-question {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.28;
  color: var(--cc-ink);
}
.app-why {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--cc-primary);
}
.app-why svg { width: 15px; height: 15px; }

.app-choices {
  margin-top: auto;
  padding: 0 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.app-choice {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--cc-surface);
  border: 1px solid var(--cc-border);
  border-radius: 14px;
  padding: 15px 16px;
  box-shadow: var(--cc-shadow-sm);
}
.app-choice__icon {
  width: 26px; height: 26px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.app-choice__icon svg { width: 15px; height: 15px; }
.app-choice--yes .app-choice__icon { background: var(--cc-success-soft); color: var(--cc-success-deep); }
.app-choice--no .app-choice__icon { background: var(--cc-critical-soft); color: var(--cc-critical); }
.app-choice__label { font-size: 15px; font-weight: 600; color: var(--cc-ink); }
.app-choice__arrow { margin-left: auto; color: var(--cc-ink-3); }
.app-choice__arrow svg { width: 16px; height: 16px; }

/* ─── Hero ─── */
.hero {
  position: relative;
  padding: 72px 0 60px;
  z-index: 1;
  overflow: hidden;
}
.hero__center { text-align: center; }
.hero__type {
  position: relative;
  font-size: clamp(52px, 9vw, 132px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin: 24px 0 0;
  text-align: center;
  color: var(--cc-ink);
  text-wrap: balance;
}
.hero__type .accent {
  background: var(--cc-primary-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  margin-top: 52px;
}
.hero__phone-col {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: center;
  justify-content: center;
  order: 2;
}
.hero__phone {
  position: relative;
  z-index: 2;
  transform: rotate(3deg);
}
.hero__phone .phone {
  box-shadow:
    0 60px 120px -30px rgba(11, 31, 58, 0.45),
    0 30px 70px -10px rgba(14, 165, 233, 0.25),
    inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}
.hero__glow {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.28) 0%, rgba(56, 189, 248, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

/* Floating chips around the phone */
.hero__chip-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.chip {
  position: absolute;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--cc-surface);
  border: 1px solid var(--cc-border);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--cc-font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cc-ink-2);
  box-shadow: var(--cc-shadow-lg);
}
.chip .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--cc-success);
  box-shadow: 0 0 8px rgba(20, 184, 166, 0.6);
  flex-shrink: 0;
}
.chip .dot.sky { background: var(--cc-primary); box-shadow: 0 0 8px rgba(14, 165, 233, 0.6); }
.chip .dot.warn { background: var(--cc-warning); box-shadow: 0 0 8px rgba(245, 158, 11, 0.6); }
.chip strong { color: var(--cc-ink); font-weight: 600; }
.chip.tl { top: 6%; left: -3%; transform: rotate(-3deg); }
.chip.tr { top: 13%; right: -5%; transform: rotate(2deg); }
.chip.ml { top: 49%; left: -7%; transform: rotate(-1deg) translateY(-50%); }
.chip.br { bottom: 15%; right: -4%; transform: rotate(3deg); }
.chip.bl { bottom: 5%; left: 3%; transform: rotate(-2deg); }

.pitch { max-width: 480px; order: 1; }
.pitch .lede {
  font-size: clamp(19px, 1.7vw, 23px);
  line-height: 1.45;
  color: var(--cc-ink-2);
  margin: 0 0 22px;
  letter-spacing: -0.01em;
}
.pitch .lede strong { color: var(--cc-ink); font-weight: 600; }
.pitch .sub {
  font-size: 16px;
  color: var(--cc-ink-2);
  margin: 0 0 32px;
  max-width: 440px;
}
.pitch__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 28px;
}
.pitch__meta {
  display: flex;
  gap: 22px;
  font-family: var(--cc-font-mono);
  font-size: 11.5px;
  color: var(--cc-ink-3);
  letter-spacing: 0.04em;
  flex-wrap: wrap;
}
.pitch__meta strong { color: var(--cc-ink-2); font-weight: 600; }

/* ─── "What we check" grid ─── */
.check {
  padding: 96px 0;
  position: relative;
  z-index: 1;
}
.check__head { text-align: center; margin-bottom: 56px; }
.check__head h2 {
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.04;
  margin: 0 0 18px;
  text-wrap: balance;
}
.check__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.check-card {
  background: var(--cc-surface);
  border: 1px solid var(--cc-border);
  border-radius: var(--cc-radius);
  padding: 28px;
  box-shadow: var(--cc-shadow-sm);
  transition: transform 0.2s var(--cc-ease), box-shadow 0.2s var(--cc-ease);
}
.check-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--cc-shadow-md);
}
.check-card__icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--cc-primary-soft);
  color: var(--cc-primary-deep);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.check-card__icon svg { width: 24px; height: 24px; }
.check-card__title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
}
.check-card__desc {
  font-size: 14.5px;
  color: var(--cc-ink-2);
  margin: 0;
  line-height: 1.6;
}

/* ─── Process timeline ─── */
.process { padding: 96px 0; position: relative; z-index: 1; }
.process__head { text-align: center; margin-bottom: 64px; }
.process__head h2 {
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
  text-wrap: balance;
}
.process__timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process__timeline::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cc-border-2) 15%, var(--cc-border-2) 85%, transparent);
}
.step {
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.step__node {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--cc-surface);
  border: 1px solid var(--cc-border-2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 26px;
  position: relative;
  font-family: var(--cc-font-mono);
  font-size: 14px;
  color: var(--cc-primary-deep);
  letter-spacing: 0.04em;
  box-shadow: var(--cc-shadow-sm);
}
.step h4 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
}
.step p {
  font-size: 14px;
  color: var(--cc-ink-2);
  margin: 0;
  line-height: 1.6;
}

/* ─── Ranks / level-up ─── */
.ranks {
  padding: 96px 0;
  position: relative;
  z-index: 1;
}
.ranks__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 72px;
  align-items: center;
}
.ranks h2 {
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.04;
  margin: 0 0 20px;
  text-wrap: balance;
}
.ranks__lede {
  font-size: 18px;
  color: var(--cc-ink-2);
  margin: 0 0 32px;
  max-width: 440px;
}
.ranks__list { display: flex; flex-direction: column; gap: 14px; }
.rank-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  background: var(--cc-surface);
  border: 1px solid var(--cc-border);
  border-radius: var(--cc-radius);
  box-shadow: var(--cc-shadow-sm);
}
.rank-row__name { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; }
.rank-row__sub { font-size: 13.5px; color: var(--cc-ink-2); margin-top: 2px; }
.rank-row__tag {
  margin-left: auto;
  font-family: var(--cc-font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cc-ink-3);
  white-space: nowrap;
}

/* Medal visual */
.ranks__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 360px;
}
.medal-stage {
  position: relative;
  width: 320px;
  max-width: 100%;
  aspect-ratio: 1;
  border-radius: var(--cc-radius-lg);
  background:
    radial-gradient(70% 60% at 50% 35%, rgba(56, 189, 248, 0.16) 0%, rgba(56, 189, 248, 0) 70%),
    var(--cc-surface);
  border: 1px solid var(--cc-border);
  box-shadow: var(--cc-shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.medal { width: 190px; height: 190px; filter: drop-shadow(0 18px 28px rgba(2, 132, 199, 0.28)); }
.medal-stage__label {
  position: absolute;
  bottom: 26px;
  left: 0; right: 0;
  text-align: center;
  font-family: var(--cc-font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cc-primary-deep);
}

/* ─── Assurance band (privacy / free / no account) ─── */
.assure {
  padding: 28px 0 96px;
  position: relative;
  z-index: 1;
}
.assure__inner {
  border: 1px solid var(--cc-border);
  border-radius: var(--cc-radius-lg);
  background: var(--cc-surface);
  box-shadow: var(--cc-shadow-md);
  padding: 12px;
}
.assure__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.assure-item {
  padding: 32px 28px;
  border-right: 1px solid var(--cc-border);
}
.assure-item:last-child { border-right: none; }
.assure-item__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--cc-success-soft);
  color: var(--cc-success-deep);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.assure-item__icon svg { width: 22px; height: 22px; }
.assure-item__title { font-size: 17px; font-weight: 600; letter-spacing: -0.015em; margin: 0 0 6px; }
.assure-item__desc { font-size: 14px; color: var(--cc-ink-2); margin: 0; line-height: 1.6; }

/* ─── CTA band ─── */
.cta {
  position: relative;
  padding: 0 0 96px;
  text-align: center;
  z-index: 1;
}
.cta__inner {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 80px 40px;
  border-radius: var(--cc-radius-lg);
  background:
    radial-gradient(70% 120% at 50% 0%, rgba(56, 189, 248, 0.22) 0%, rgba(255, 255, 255, 0) 70%),
    var(--cc-primary-grad);
  box-shadow: 0 40px 80px -30px rgba(2, 132, 199, 0.5);
  overflow: hidden;
}
.cta h2 {
  font-size: clamp(32px, 4vw, 50px);
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 0 0 16px;
  position: relative;
  color: #fff;
  text-wrap: balance;
}
.cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  max-width: 500px;
  margin: 0 auto 32px;
  position: relative;
}
.cta__ctas {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  position: relative;
}
.cta .cc-store {
  background: var(--cc-ink);
  border-color: var(--cc-ink);
}

/* ─── Footer ─── */
.cc-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--cc-border);
  padding: 64px 0 40px;
  background: rgba(255, 255, 255, 0.5);
}
.cc-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.cc-footer__brand {
  display: flex; align-items: center; gap: 12px;
  font-weight: 700; font-size: 18px;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.cc-footer__tag {
  color: var(--cc-ink-2);
  font-size: 14px;
  max-width: 320px;
}
.cc-footer__col h5 {
  font-family: var(--cc-font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cc-ink-3);
  margin: 0 0 18px;
  font-weight: 600;
}
.cc-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cc-footer__col a { font-size: 14px; color: var(--cc-ink-2); }
.cc-footer__col a:hover { color: var(--cc-ink); }
.cc-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--cc-border);
  font-family: var(--cc-font-mono);
  font-size: 12px;
  color: var(--cc-ink-3);
  letter-spacing: 0.05em;
}

/* ─── Document pages (privacy / terms) ─── */
.cc-doc {
  padding: 72px 0 110px;
  position: relative;
  z-index: 1;
}
.cc-doc__wrap {
  max-width: 760px;
  margin: 0 auto;
}
.cc-doc h1 {
  font-size: clamp(38px, 5vw, 58px);
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1.02;
}
.cc-doc__meta {
  font-family: var(--cc-font-mono);
  font-size: 12px;
  color: var(--cc-ink-3);
  letter-spacing: 0.06em;
  margin-bottom: 48px;
  text-transform: uppercase;
}
.cc-doc h2 {
  font-size: 23px;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 44px 0 14px;
}
.cc-doc h3 {
  font-size: 16px;
  letter-spacing: -0.005em;
  font-weight: 600;
  margin: 28px 0 10px;
  color: var(--cc-primary-deep);
}
.cc-doc p, .cc-doc li {
  color: var(--cc-ink-2);
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0 0 14px;
}
.cc-doc ul { padding-left: 22px; }
.cc-doc__intro {
  font-size: 18px !important;
  color: var(--cc-ink) !important;
  margin-bottom: 36px !important;
}
.cc-doc a { color: var(--cc-primary-deep); text-decoration: underline; text-underline-offset: 3px; }
.cc-doc a:hover { color: var(--cc-ink); }
.cc-doc__contact {
  margin-top: 52px;
  padding: 24px 28px;
  border-radius: var(--cc-radius);
  background: var(--cc-surface);
  border: 1px solid var(--cc-border);
  box-shadow: var(--cc-shadow-sm);
  font-family: var(--cc-font-mono);
  font-size: 13px;
  color: var(--cc-ink-2);
}
.cc-doc__contact strong { color: var(--cc-ink); font-weight: 600; }

/* ─── Download page ─── */
.dl-hero {
  padding: 80px 0 72px;
  position: relative;
  z-index: 1;
}
.dl-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.dl-icon-card {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 420px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--cc-shadow-lg), inset 0 0 0 1px rgba(11, 18, 32, 0.06);
  transition: transform 0.4s var(--cc-ease);
}
.dl-icon-card:hover { transform: translateY(-4px) rotate(-1deg); }
.dl-icon-card img { width: 100%; height: 100%; object-fit: cover; display: block; }

.dl-info { display: flex; flex-direction: column; gap: 26px; }
.dl-info h1 {
  font-size: clamp(38px, 4.8vw, 62px);
  letter-spacing: -0.03em;
  line-height: 1.02;
  font-weight: 700;
  margin: 0;
}
.dl-info .lede {
  color: var(--cc-ink-2);
  font-size: 18px;
  margin: 0;
  max-width: 480px;
}
.dl-info__stores { display: flex; gap: 12px; flex-wrap: wrap; }
.dl-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--cc-border);
  border-radius: var(--cc-radius);
  overflow: hidden;
  background: var(--cc-surface);
  box-shadow: var(--cc-shadow-sm);
}
.dl-meta__cell {
  padding: 18px 22px;
  border-right: 1px solid var(--cc-border);
  border-bottom: 1px solid var(--cc-border);
}
.dl-meta__cell:nth-child(2n) { border-right: 0; }
.dl-meta__cell:nth-last-child(-n+2) { border-bottom: 0; }
.dl-meta__label {
  font-family: var(--cc-font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cc-ink-3);
  margin-bottom: 6px;
}
.dl-meta__val { font-size: 15px; color: var(--cc-ink); font-weight: 600; }

.dl-faq { padding: 24px 0 100px; position: relative; z-index: 1; }
.dl-faq__wrap { max-width: 760px; margin: 0 auto; }
.dl-faq h2 {
  text-align: center;
  font-size: clamp(28px, 3.5vw, 42px);
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 0 0 48px;
}
.dl-q { border-top: 1px solid var(--cc-border); padding: 24px 0; }
.dl-q:last-child { border-bottom: 1px solid var(--cc-border); }
.dl-q h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.dl-q p { color: var(--cc-ink-2); font-size: 15px; line-height: 1.7; margin: 0; }
.dl-q a { color: var(--cc-primary-deep); text-decoration: underline; text-underline-offset: 3px; }
.dl-q a:hover { color: var(--cc-ink); }

/* ─── 404 ─── */
.nf {
  text-align: center;
  padding: 130px 0;
  position: relative;
  z-index: 1;
}
.nf__code {
  font-family: var(--cc-font-mono);
  font-size: 13px;
  color: var(--cc-primary-deep);
  letter-spacing: 0.14em;
  margin-bottom: 20px;
}
.nf__title { font-size: clamp(36px, 5vw, 56px); letter-spacing: -0.03em; margin: 0 0 16px; font-weight: 700; }
.nf__text { color: var(--cc-ink-2); font-size: 18px; max-width: 420px; margin: 0 auto 32px; }
.nf__cta { display: inline-flex; }

/* ─── Utilities ─── */
.u-center { text-align: center; }

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

/* ─── Responsive ─── */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__phone-col { min-height: 560px; order: 2; }
  .pitch { order: 1; max-width: none; }
  .check__grid { grid-template-columns: 1fr 1fr; }
  .process__timeline { grid-template-columns: 1fr 1fr; gap: 40px 16px; }
  .process__timeline::before { display: none; }
  .ranks__grid { grid-template-columns: 1fr; gap: 48px; }
  .ranks__visual { order: -1; min-height: 300px; }
  .cc-footer__grid { grid-template-columns: 1fr 1fr; }
  .cc-footer__brand-col { grid-column: span 2; }
  .cc-nav__links { display: none; }
  .cc-nav__links--open {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--cc-surface);
    border-bottom: 1px solid var(--cc-border);
    box-shadow: var(--cc-shadow-md);
    padding: 8px 0;
  }
  .cc-nav__links--open a { padding: 14px var(--cc-gutter); }
  .cc-nav__toggle { display: block; }
  .dl-hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .dl-icon-card { max-width: 280px; }
  .assure__grid { grid-template-columns: 1fr; }
  .assure-item { border-right: none; border-bottom: 1px solid var(--cc-border); }
  .assure-item:last-child { border-bottom: none; }
}
@media (max-width: 540px) {
  :root { --cc-gutter: 20px; }
  .cc-nav__cta { display: none; }
  .check__grid { grid-template-columns: 1fr; }
  .process__timeline { grid-template-columns: 1fr; }
  .cc-footer__grid { grid-template-columns: 1fr; }
  .cc-footer__brand-col { grid-column: span 1; }
  .cc-footer__bottom { flex-direction: column; gap: 10px; text-align: center; }
  .hero__phone-col { min-height: 460px; }
  .chip { display: none; }
  .dl-meta { grid-template-columns: 1fr; }
  .dl-meta__cell { border-right: 0; }
}
