/* ════════════════════════════════════════════════════════════════════════
   NOKYCNUMBER — light, product-led
   Bone paper · deep ink · electric blue
   Bricolage Grotesque · Manrope · Space Mono (numbers only)
   ════════════════════════════════════════════════════════════════════════ */

/* ─── tokens ─────────────────────────────────────────────────────────── */
:root {
  /* Foundation — cool off-white system */
  --bg:       #FBFBFD;
  --bg-2:     #F4F5F8;
  --bg-3:     #ECEEF3;
  --surface:  #FFFFFF;

  /* Legacy alias names used across the codebase */
  --paper:    var(--bg);
  --paper-2:  var(--surface);
  --paper-3:  var(--bg-2);
  --paper-4:  var(--bg-3);

  /* Lines — cool light grays */
  --line:     #E8EAEF;
  --line-2:   #D4D7DE;
  --line-3:   #ADB1BA;

  /* Text — cool deep inks */
  --ink:      #0A0B12;
  --ink-2:    #1A1B24;
  --text:     #1F2028;
  --text-d:   #4D4E58;
  --muted:    #6E707A;
  --muted-2:  #9CA0AB;

  /* Single accent — AI indigo */
  --signal:      #5046E5;
  --signal-d:    #3730CA;
  --signal-2:    #7B73FF;
  --signal-soft: rgba(80,70,229,0.08);
  --signal-glow: rgba(80,70,229,0.22);

  /* Backwards-compat names — all routed to indigo */
  --violet:      var(--signal);
  --violet-d:    var(--signal-d);
  --violet-2:    var(--signal-2);
  --violet-soft: var(--signal-soft);
  --magenta:     var(--signal);
  --magenta-soft:var(--signal-soft);
  --cyan:        var(--signal-2);

  /* Single emphasis gradient */
  --grad:      linear-gradient(135deg, var(--signal) 0%, var(--signal-2) 100%);
  --grad-ai:   var(--grad);
  --grad-cool: var(--grad);

  /* Live indicator — emerald (only for "active now" pulses) */
  --hot:      #10B981;
  --hot-soft: rgba(16,185,129,0.10);

  --f-disp:  'Bricolage Grotesque', 'Familjen Grotesk', -apple-system, system-ui, sans-serif;
  --f-mono:  'Space Mono', 'JetBrains Mono', ui-monospace, 'Menlo', monospace;
  --f-body:  'Manrope', -apple-system, system-ui, sans-serif;

  --container: 1200px;
  --gutter: clamp(20px, 4vw, 56px);

  --radius-s: 8px;
  --radius:   14px;
  --radius-l: 22px;

  --t-fast: 160ms cubic-bezier(.4,0,.2,1);
  --t-base: 280ms cubic-bezier(.4,0,.2,1);

  /* Modern multi-layer shadows */
  --shadow-xs: 0 1px 2px rgba(10,11,18,0.04);
  --shadow-sm: 0 1px 2px rgba(10,11,18,0.05), 0 4px 12px rgba(10,11,18,0.04);
  --shadow:    0 1px 2px rgba(10,11,18,0.06), 0 8px 24px -4px rgba(10,11,18,0.08);
  --shadow-l:  0 1px 2px rgba(10,11,18,0.06), 0 16px 40px -8px rgba(10,11,18,0.12);
  --shadow-xl: 0 4px 12px -2px rgba(10,11,18,0.10), 0 24px 60px -12px rgba(10,11,18,0.18);
}

/* ─── reset ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  background: var(--paper);
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  min-height: 100dvh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
button { background: none; border: 0; font: inherit; color: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

::selection { background: var(--ink); color: var(--paper); }

/* a11y */
.visually-hidden {
  position: absolute !important;
  clip: rect(0 0 0 0); clip-path: inset(50%);
  width: 1px; height: 1px; overflow: hidden; white-space: nowrap;
}
.skip {
  position: absolute; top: -100px; left: 12px;
  background: var(--ink); color: var(--paper);
  padding: 10px 14px; font-size: 13px; font-weight: 600;
  z-index: 1000; border-radius: var(--radius-s);
}
.skip:focus { top: 12px; }

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

/* ─── primitives ─────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* Flag image — used everywhere a country flag is shown */
.flag {
  display: inline-block;
  width: 20px; height: 15px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(14,15,20,0.10);
  vertical-align: -2px;
  flex-shrink: 0;
}

/* Pills (replaces all the operator mono labels) */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--line-2);
  background: var(--paper-2);
  border-radius: 999px;
  font-size: 12.5px; font-weight: 500;
  color: var(--text-d);
  letter-spacing: -0.005em;
}
.pill--live {
  border-color: rgba(22,163,74,0.30);
  background: var(--hot-soft);
  color: #145E32;
}
.pill__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--hot);
  position: relative;
}
.pill__dot::after {
  content: ""; position: absolute; inset: -3px; border-radius: 50%;
  border: 1px solid currentColor; opacity: 0.4;
  animation: pulseRing 2.2s infinite;
}
@keyframes pulseRing {
  0%   { transform: scale(0.5); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 44px; padding: 0 20px;
  font-family: var(--f-body); font-weight: 600; font-size: 14.5px;
  letter-spacing: -0.005em;
  border-radius: var(--radius-s);
  transition: transform var(--t-fast), background var(--t-fast),
              color var(--t-fast), border-color var(--t-fast),
              box-shadow var(--t-fast);
  white-space: nowrap;
}
.btn--sm { height: 38px; padding: 0 14px; font-size: 13.5px; gap: 6px; }
.btn--lg { height: 54px; padding: 0 26px; font-size: 15.5px; }
.btn--block { width: 100%; }

.btn--solid {
  background: var(--ink);
  color: var(--surface);
  font-weight: 600;
  box-shadow: var(--shadow-xs), 0 4px 14px -4px rgba(10,11,18,.28);
}
.btn--solid:hover {
  background: var(--signal);
  box-shadow: var(--shadow-xs), 0 8px 22px -6px rgba(80,70,229,.45);
  transform: translateY(-1px);
}
.btn--solid:active { transform: translateY(0); }

.btn--ghost {
  border: 1px solid var(--line-2);
  color: var(--ink);
  background: var(--surface);
}
.btn--ghost:hover { border-color: var(--ink); background: var(--bg-2); }

/* ─── topbar ─────────────────────────────────────────────────────────── */
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 251, 253, 0.72);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-base), background var(--t-base);
}
.topbar.is-stuck { border-color: var(--line); background: rgba(251, 251, 253, 0.92); }
.topbar__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  height: 64px;
}

.brand {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.brand--lg { font-size: 22px; }
.brand__mark {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: var(--ink);
  display: grid; place-items: center;
  position: relative;
}
.brand__mark-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 8px rgba(80,70,229,0.45);
}
.brand__type { display: inline-flex; align-items: baseline; }
.brand__nokyc { color: var(--ink); }
.brand__num   { color: var(--text-d); font-weight: 600; }

.nav {
  display: flex; align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.6vw, 36px);
  font-size: 14px; font-weight: 500;
  color: var(--text-d);
}
.nav a { padding: 6px 2px; transition: color var(--t-fast); }
.nav a:hover { color: var(--ink); }

.topbar__cta { display: flex; align-items: center; gap: 14px; justify-self: end; }
.topbar__login { font-size: 14px; color: var(--text-d); font-weight: 500; padding: 6px 8px; }
.topbar__login:hover { color: var(--ink); }

.hamburger {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-s);
  background: var(--paper-2);
  position: relative;
}
.hamburger__inner,
.hamburger__inner::before,
.hamburger__inner::after {
  position: absolute; left: 11px; right: 11px; height: 2px;
  background: var(--ink); transition: transform var(--t-base), top var(--t-base);
}
.hamburger__inner { top: 50%; transform: translateY(-50%); }
.hamburger__inner::before { content: ""; top: -6px; }
.hamburger__inner::after  { content: ""; top: 6px; }
.hamburger[aria-expanded="true"] .hamburger__inner { background: transparent; }
.hamburger[aria-expanded="true"] .hamburger__inner::before { top: 0; transform: rotate(45deg); }
.hamburger[aria-expanded="true"] .hamburger__inner::after  { top: 0; transform: rotate(-45deg); }

/* ─── mobile menu ────────────────────────────────────────────────────── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  background: var(--paper);
  display: flex; flex-direction: column;
  opacity: 0; pointer-events: none;
  transition: opacity var(--t-base);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu__head {
  display: flex; justify-content: space-between; align-items: center;
  padding-block: 12px;
  border-bottom: 1px solid var(--line);
  height: 64px;
  flex-shrink: 0;
}
.mobile-menu__close {
  width: 42px; height: 42px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-s);
  display: grid; place-items: center;
  color: var(--ink);
  background: var(--paper-2);
}
.mobile-menu__nav {
  display: flex; flex-direction: column;
  padding-top: 8px;
  flex: 1;
  overflow-y: auto;
}
.mobile-menu__nav a {
  display: block;
  font-family: var(--f-disp);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.mobile-menu__nav a:hover { color: var(--signal); }
.mobile-menu__nav-secondary { color: var(--text-d) !important; font-weight: 500 !important; font-size: 18px !important; }
.mobile-menu__foot { padding: 20px 0 32px; border-top: 1px solid var(--line); flex-shrink: 0; }
body.is-menu-open { overflow: hidden; }

/* ════════════════════════════════════════════════════════════════════════
   HERO — compact, two-column, product preview right
   ════════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: clamp(40px, 6vw, 72px) 0 clamp(48px, 7vw, 80px);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(14,15,20,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,15,20,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 40%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 40%, transparent 90%);
}
.hero__glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 75% 25%, rgba(80,70,229,0.14), transparent 55%),
    radial-gradient(700px 500px at 25% 80%, rgba(123,115,255,0.08), transparent 60%);
  filter: blur(40px);
  opacity: 0.9;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}
@media (min-width: 980px) {
  .hero__inner { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.9fr); }
}

.hero__text { max-width: 580px; }

.hero__h {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: clamp(36px, 5.4vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 18px 0 18px;
}
.hero__h em {
  font-family: var(--f-disp);
  font-weight: 800;
  font-style: normal;
  color: var(--signal);
}
@keyframes gradFlow {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

.hero__sub {
  font-size: clamp(15.5px, 1.2vw, 17px);
  line-height: 1.55;
  color: var(--text-d);
  max-width: 56ch;
  margin-bottom: 28px;
}

.hero__cta {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 28px;
}

.hero__trust {
  display: flex; flex-wrap: wrap; gap: 14px 22px;
  color: var(--text-d);
  font-size: 13px; font-weight: 500;
}
.hero__trust li { display: inline-flex; align-items: center; gap: 7px; }
.hero__trust svg { color: var(--signal); flex-shrink: 0; }

/* ─── numcard (product preview) ──────────────────────────────────────── */
.numcard {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  background: var(--paper-2);
  padding: 22px;
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow-l);
  max-width: 480px;
  width: 100%;
  justify-self: center;
  isolation: isolate;
}
.numcard::after {
  content: ""; position: absolute;
  inset: -30px; z-index: -2;
  background: radial-gradient(closest-side, rgba(80,70,229,0.16), transparent 70%);
  filter: blur(30px);
  opacity: 0.8;
  pointer-events: none;
}

.numcard__head {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
}
.numcard__country {
  color: var(--ink);
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
}
.numcard__country .flag { vertical-align: 0; }
.numcard__avail {
  display: inline-flex; align-items: center; gap: 6px;
  color: #145E32;
  background: var(--hot-soft);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11.5px;
  font-weight: 600;
}
.numcard__avail-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--hot);
}

.numcard__stage {
  position: relative;
  height: clamp(120px, 16vw, 150px);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, var(--paper-3), var(--paper-2));
  border: 1px solid var(--line);
  overflow: hidden;
  display: grid; place-items: center;
}
.numcard__list { position: relative; width: 100%; height: 100%; }
.numcard__item {
  position: absolute; inset: 0;
  display: flex; align-items: center; gap: 14px;
  padding: 0 clamp(20px, 3vw, 28px);
  opacity: 0; transform: translateY(6px);
  transition: opacity .5s ease, transform .5s ease, filter .5s ease;
  filter: blur(4px);
}
.numcard__item.is-active {
  opacity: 1; transform: none; filter: blur(0);
  transition-delay: 0.05s;
}
.numcard__cc {
  font-family: var(--f-mono);
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 700;
  color: var(--signal);
  line-height: 1;
}
.numcard__digits {
  font-family: var(--f-mono);
  font-size: clamp(24px, 3.0vw, 32px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.01em;
}

.numcard__inc {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.numcard__inc li {
  font-size: 12px; font-weight: 500;
  padding: 5px 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-d);
  display: inline-flex; align-items: center; gap: 6px;
}
.numcard__inc li::before {
  content: ""; width: 4px; height: 4px; border-radius: 50%;
  background: var(--signal);
}
/* AI chip — gradient pop */
.numcard__inc li:nth-child(4) {
  background: var(--signal);
  border-color: transparent;
  color: var(--surface);
  font-weight: 600;
}
.numcard__inc li:nth-child(4)::before {
  background: var(--surface);
}

.numcard__cta {
  margin-top: 4px;
  padding-top: 0;
}

.numcard__dots {
  display: flex; gap: 5px; justify-content: center;
}
.numcard__dots li {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--line-2);
  transition: background var(--t-fast), width var(--t-fast);
}
.numcard__dots li.is-on {
  background: var(--ink);
  width: 18px; border-radius: 3px;
}

/* ════════════════════════════════════════════════════════════════════════
   SECTION HEADS
   ════════════════════════════════════════════════════════════════════════ */
.section-head {
  margin-bottom: clamp(32px, 4vw, 56px);
  max-width: 720px;
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
  max-width: 680px;
}
.section-head .pill { margin-bottom: 18px; }
.section-head h2 {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 14px;
}
.section-head h2 span {
  font-style: normal;
  font-weight: 500;
  color: var(--text-d);
}
.section-head p {
  color: var(--text-d);
  font-size: clamp(15px, 1.2vw, 16.5px);
  max-width: 56ch;
}
.section-head--center p { margin-inline: auto; }

/* ════════════════════════════════════════════════════════════════════════
   FEATURES
   ════════════════════════════════════════════════════════════════════════ */
.features { padding: clamp(64px, 8vw, 110px) 0; }

.feature-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .feature-grid { grid-template-columns: repeat(4, 1fr); } }

.feature {
  position: relative;
  padding: 18px 18px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.feature:hover {
  transform: translateY(-2px);
  border-color: var(--line);
  box-shadow: var(--shadow);
}
.feature__head {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 8px;
}
.feature__icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  display: grid; place-items: center;
  transition: background var(--t-base), color var(--t-base), border-color var(--t-base);
}
.feature:hover .feature__icon {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.feature h3 {
  font-family: var(--f-disp);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: -0.012em;
  color: var(--ink);
  line-height: 1.2;
  margin: 0;
  flex: 1;
  min-width: 0;
}
.feature p {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-d);
}
.feature__tag {
  flex-shrink: 0;
  background: var(--signal);
  color: var(--paper);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  align-self: center;
}
.feature--accent {
  border: 1px solid var(--signal-soft);
  background: linear-gradient(180deg, rgba(80,70,229,0.04), var(--surface));
}
.feature--accent .feature__icon {
  background: var(--signal);
  color: var(--surface);
  border-color: var(--signal);
}
.feature--accent:hover .feature__icon {
  background: var(--signal-d);
  border-color: var(--signal-d);
}
.feature--accent .feature__tag {
  background: var(--signal);
  color: var(--surface);
  border: 0;
}

/* ════════════════════════════════════════════════════════════════════════
   HOW IT WORKS
   ════════════════════════════════════════════════════════════════════════ */
.how { padding: clamp(56px, 7vw, 100px) 0; background: var(--paper-3); border-block: 1px solid var(--line); }
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

.step {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  padding: 20px 22px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  align-items: flex-start;
  transition: border-color var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
}
.step:hover {
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.step__num {
  width: 34px; height: 34px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--ink);
  color: var(--surface);
  display: grid;
  place-items: center;
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.step:hover .step__num { background: var(--signal); }
.step__body { min-width: 0; }
.step h3 {
  font-family: var(--f-disp);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 4px;
  line-height: 1.25;
}
.step p {
  color: var(--text-d);
  font-size: 13.5px;
  line-height: 1.5;
  margin: 0;
}

/* ════════════════════════════════════════════════════════════════════════
   COUNTRIES — coverage section (stats + featured chips + CTA)
   ════════════════════════════════════════════════════════════════════════ */
.countries {
  padding: clamp(64px, 8vw, 110px) 0;
  position: relative;
  isolation: isolate;
}
.cov__bg {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: radial-gradient(circle, rgba(80,70,229,0.18) 1px, transparent 1.4px);
  background-size: 26px 26px;
  background-position: 0 0;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 75%);
  opacity: 0.55;
}

.cov-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 0 auto clamp(28px, 4vw, 44px);
  max-width: 880px;
}
@media (min-width: 720px) { .cov-stats { grid-template-columns: repeat(4, 1fr); } }

.cov-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 22px 16px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  transition: border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.cov-stat:hover {
  border-color: var(--line-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.cov-stat strong {
  font-family: var(--f-disp);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.cov-stat strong i {
  font-style: normal;
  font-weight: 600;
  color: var(--signal);
  margin-left: 1px;
}
.cov-stat span {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.01em;
}

.cov-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: 880px;
  margin: 0 auto clamp(24px, 3vw, 36px);
}
.cov-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px 9px 11px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  transition: border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.cov-chip:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.cov-chip:hover .cov-chip__cc { color: var(--signal); }
.cov-chip__flag {
  width: 20px; height: 15px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(14,15,20,0.10);
  object-fit: cover;
  flex-shrink: 0;
}
.cov-chip__name { letter-spacing: -0.005em; }
.cov-chip__cc {
  font-family: var(--f-mono);
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 700;
  transition: color var(--t-fast);
}

.cov-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(16px, 2vw, 24px);
}

/* ════════════════════════════════════════════════════════════════════════
   CTA — single dark moment
   ════════════════════════════════════════════════════════════════════════ */
.cta { padding: clamp(56px, 8vw, 100px) 0 clamp(64px, 9vw, 120px); }
.cta__card {
  position: relative;
  border-radius: var(--radius-l);
  padding: clamp(40px, 6vw, 80px) clamp(28px, 5vw, 60px);
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.cta__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(900px 500px at 50% 100%, rgba(80,70,229,0.45), transparent 60%),
    radial-gradient(600px 300px at 50% 0%,   rgba(123,115,255,0.10), transparent 65%);
}
.cta__h {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--paper);
  margin-bottom: 16px;
}
.cta__h span {
  font-style: normal;
  font-weight: 500;
  color: var(--signal-2);
}
.cta__p {
  color: rgba(244,241,233,0.75);
  font-size: clamp(15px, 1.2vw, 16.5px);
  max-width: 50ch; margin: 0 auto 28px;
}
.cta__btns { display: inline-flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

.cta__card .btn--solid {
  background: var(--paper);
  color: var(--ink);
}
.cta__card .btn--solid:hover {
  background: var(--signal); color: var(--paper);
}
.cta__card .btn--ghost {
  border-color: rgba(244,241,233,.30);
  color: var(--paper);
  background: transparent;
}
.cta__card .btn--ghost:hover {
  background: rgba(244,241,233,.08);
  border-color: rgba(244,241,233,.50);
}

/* ════════════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--line);
  background: var(--paper);
  padding: clamp(48px, 7vw, 80px) 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
@media (min-width: 900px) {
  .footer__inner { grid-template-columns: minmax(260px, 1fr) 2.4fr; gap: 64px; }
}
.footer__pitch {
  color: var(--text-d);
  font-size: 14px;
  max-width: 32ch;
  margin-block: 16px;
  line-height: 1.55;
}
.footer__pay {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.footer__pay li {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 700;
  border: 1px solid var(--line-2);
  background: var(--paper-2);
  padding: 4px 8px;
  border-radius: 4px;
  color: var(--text-d);
}
.footer__pay-more {
  border: 0 !important;
  background: transparent !important;
  color: var(--muted) !important;
  font-family: var(--f-body) !important;
  font-weight: 500 !important;
  font-size: 12px !important;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 24px;
}
@media (min-width: 720px)  { .footer__cols { grid-template-columns: repeat(4, 1fr); } }
.footer__h {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 9px; font-size: 13.5px; }
.footer__col a {
  color: var(--text-d);
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.footer__col a:hover { color: var(--signal); }
.footer__cc {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--muted-2);
}
.footer__col a:hover .footer__cc { color: var(--signal); }

.footer__rule {
  height: 1px;
  background: var(--line);
  margin-block: 0 18px;
}
.footer__base {
  display: flex; flex-direction: column-reverse; gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 24px;
}
@media (min-width: 720px) {
  .footer__base { flex-direction: row; align-items: center; }
}
.footer__copy { color: var(--muted); font-size: 12.5px; }
.footer__social { display: flex; gap: 18px; font-size: 13px; }
.footer__social a { color: var(--text-d); }
.footer__social a:hover { color: var(--signal); }

/* ════════════════════════════════════════════════════════════════════════
   /GET/ — checkout flow page
   ════════════════════════════════════════════════════════════════════════ */
.checkout { padding-bottom: clamp(48px, 7vw, 80px); }

.checkout__intro {
  padding: clamp(28px, 4vw, 48px) 0 clamp(24px, 3vw, 36px);
  position: relative;
  isolation: isolate;
}
.checkout__intro::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(700px 300px at 80% 0%, rgba(80,70,229,0.08), transparent 60%);
}
.checkout__intro .pill { margin-bottom: 14px; }
.pill__dot--ai {
  background: var(--signal);
  box-shadow: 0 0 8px rgba(80,70,229,.45);
}
.checkout__intro h1 {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: clamp(30px, 4.4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 12px;
}
.checkout__intro-em {
  font-style: normal;
  font-weight: 500;
  color: var(--text-d);
}
.checkout__intro p {
  color: var(--text-d);
  font-size: clamp(14.5px, 1.2vw, 16px);
  max-width: 60ch;
}

.checkout__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  padding-top: clamp(24px, 4vw, 44px);
}
@media (min-width: 980px) {
  .checkout__layout {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 32px;
  }
}

.checkout__steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ─── step card ─────────────────────────────────────────────────── */
.step-card {
  border: 1px solid var(--line);
  background: var(--paper-2);
  border-radius: var(--radius-l);
  overflow: hidden;
  transition: opacity var(--t-base), border-color var(--t-base);
  scroll-margin-top: 88px;
}
.step-card[data-state="locked"] {
  opacity: 0.55;
  background: var(--paper-3);
}
.step-card[data-state="locked"] .step-card__body { pointer-events: none; user-select: none; }
.step-card[data-state="active"] {
  border-color: var(--ink);
  box-shadow: var(--shadow), 0 0 0 4px var(--signal-soft);
}
.step-card[data-state="done"] {
  border-color: var(--line-2);
}
.step-card[data-state="open"] {
  border-color: var(--line);
  opacity: 1;
}
.step-card[data-state="open"] .step-card__body { pointer-events: auto; user-select: auto; }

.step-card__head {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
}
.step-card[data-state="locked"] .step-card__head { background: var(--paper-3); border-bottom-color: var(--line); }

.step-card__num {
  width: 34px; height: 34px;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
  display: grid; place-items: center;
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
  transition: background var(--t-base);
}
.step-card[data-state="active"] .step-card__num {
  background: var(--signal);
  box-shadow: 0 4px 14px -4px rgba(80,70,229,.45);
}
.step-card[data-state="done"] .step-card__num {
  background: var(--ink);
}

.step-card__heading { flex: 1; min-width: 0; }
.step-card__h {
  font-family: var(--f-disp);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.018em;
  color: var(--ink);
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.step-card__chip {
  display: inline-block;
  padding: 2px 8px;
  background: var(--bg-2);
  color: var(--muted);
  font-family: var(--f-body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
}
.step-card__hint {
  display: block;
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 2px;
  line-height: 1.3;
}

.step-card__check {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--paper-3);
  color: var(--muted-2);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: background var(--t-base), color var(--t-base);
}
.step-card[data-state="done"] .step-card__check {
  background: var(--hot);
  color: var(--surface);
  box-shadow: 0 4px 12px -4px rgba(16,185,129,.45);
}

.step-card__body { padding: 20px; }

/* ─── step 1 — country ─────────────────────────────────────────── */
.cc-search {
  position: relative;
  margin-bottom: 14px;
}
.cc-search svg {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}
.cc-search input {
  width: 100%;
  height: 46px;
  padding: 0 56px 0 42px;
  border: 1px solid var(--line-2);
  background: var(--paper);
  border-radius: 999px;
  font-size: 14.5px;
  color: var(--ink);
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.cc-search input::placeholder { color: var(--muted); }
.cc-search input:focus {
  border-color: var(--signal);
  box-shadow: 0 0 0 4px var(--signal-soft);
}
.cc-search__count {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--muted);
  background: var(--paper-3);
  border-radius: 999px;
  padding: 3px 8px;
}

.cc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 6px;
  max-height: 360px;
  overflow-y: auto;
  padding: 2px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}
.cc-cell { position: relative; }
.cc-cell button {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 13px;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.cc-cell button:hover {
  background: var(--paper-3);
  border-color: var(--line);
}
.cc-cell[data-selected] button {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}
.cc-cell[data-selected] .cc-cell__cc { color: var(--signal-2); }
.cc-cell.is-hidden { display: none; }
.cc-cell__name { font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cc-cell__cc {
  font-family: var(--f-mono);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--muted);
}
.cc-empty { color: var(--muted); padding: 16px; text-align: center; font-size: 14px; }

/* ─── step 2 — type ───────────────────────────────────────────── */
.type-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 600px) { .type-grid { grid-template-columns: repeat(2, 1fr); } }

.type-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color var(--t-fast), transform var(--t-fast),
              box-shadow var(--t-fast), background var(--t-fast);
}
.type-card input { position: absolute; opacity: 0; pointer-events: none; }
.type-card:hover { border-color: var(--line-2); transform: translateY(-1px); }
.type-card[data-selected] {
  border-color: var(--signal);
  background: linear-gradient(180deg, rgba(80,70,229,0.04), var(--surface));
  box-shadow: 0 0 0 3px var(--signal-soft);
}
.type-card__icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 9px;
  background: var(--bg-2);
  display: grid; place-items: center;
  color: var(--ink);
  transition: background var(--t-fast), color var(--t-fast);
}
.type-card[data-selected] .type-card__icon {
  background: var(--signal);
  color: var(--surface);
}
.type-card__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.type-card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.type-card__name {
  font-family: var(--f-disp);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.012em;
  line-height: 1.2;
}
.type-card__desc {
  font-size: 12.5px;
  color: var(--text-d);
  line-height: 1.35;
}
.type-card__price {
  font-family: var(--f-mono);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--signal);
  white-space: nowrap;
}

/* ─── step 3 — number tier toggle ─────────────────────────────── */
.num-tier {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 14px;
}
@media (min-width: 600px) { .num-tier { grid-template-columns: repeat(2, 1fr); } }

.num-tier__opt {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast),
              transform var(--t-fast), box-shadow var(--t-fast);
}
.num-tier__opt input { position: absolute; opacity: 0; pointer-events: none; }
.num-tier__opt:hover { border-color: var(--line-2); }
.num-tier__opt:has(input:checked) {
  border-color: var(--signal);
  background: linear-gradient(180deg, rgba(80,70,229,0.04), var(--surface));
  box-shadow: 0 0 0 3px var(--signal-soft);
}
.num-tier__head { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.num-tier__name {
  font-family: var(--f-disp);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  letter-spacing: -0.012em;
  display: inline-flex; align-items: center; gap: 6px;
}
.num-tier__chip {
  display: inline-block;
  padding: 1px 6px;
  background: var(--signal);
  color: var(--surface);
  font-family: var(--f-body);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
}
.num-tier__hint {
  font-size: 12px;
  color: var(--text-d);
  line-height: 1.35;
}
.num-tier__price {
  flex-shrink: 0;
  font-family: var(--f-mono);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--signal);
  text-align: right;
}
.num-tier__price--free { color: var(--muted); }

/* ─── step 3 — numbers ────────────────────────────────────────── */
.num-list {
  display: flex; flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}
.num-row {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast),
              transform var(--t-fast), box-shadow var(--t-fast);
}
.num-row input { position: absolute; opacity: 0; pointer-events: none; }
.num-row:hover { border-color: var(--line-2); transform: translateY(-1px); }
.num-row[data-selected] {
  border: 1px solid transparent;
  background:
    linear-gradient(var(--paper), var(--paper)) padding-box,
    var(--grad-cool) border-box;
  box-shadow: 0 6px 18px -8px rgba(80,70,229,.30);
}
.num-row__radio {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--line-2);
  background: var(--paper);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.num-row__radio::after {
  content: "";
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--signal);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity var(--t-fast), transform var(--t-fast);
}
.num-row[data-selected] .num-row__radio { border-color: var(--signal); }
.num-row[data-selected] .num-row__radio::after { opacity: 1; transform: scale(1); }
.num-row__digits {
  font-family: var(--f-mono);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}
.num-row__cc {
  color: var(--signal);
  font-weight: 700;
}
.num-row__rest {
  color: var(--ink);
  font-weight: 700;
}
.num-row[data-selected] .num-row__cc { color: var(--signal-d); }
.num-row__tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 7px;
  border-radius: 4px;
  background: var(--paper-3);
  color: var(--muted);
}
.num-row__tag--premium { background: var(--signal-soft); color: var(--signal-d); }
.num-row__select {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.num-row[data-selected] .num-row__select { color: var(--signal); }

.num-empty {
  text-align: center; color: var(--muted);
  padding: 24px;
  font-size: 14px;
  border: 1px dashed var(--line-2);
  border-radius: var(--radius);
}

.num-refresh {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 14px;
  background: var(--paper-3);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-d);
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.num-refresh:hover { background: var(--paper-2); color: var(--ink); border-color: var(--ink); }
.num-refresh svg {
  transition: transform var(--t-base);
}
.num-refresh:hover svg { transform: rotate(180deg); }

/* ─── step 4 — period ─────────────────────────────────────────── */
.period-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 600px) { .period-grid { grid-template-columns: repeat(3, 1fr); } }

.period-card {
  position: relative;
  display: flex; flex-direction: column;
  padding: 18px 16px 16px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.period-card input { position: absolute; opacity: 0; pointer-events: none; }
.period-card:hover { border-color: var(--line-2); transform: translateY(-1px); }
.period-card[data-selected] {
  border: 1px solid transparent;
  background:
    linear-gradient(var(--paper), var(--paper)) padding-box,
    var(--grad-cool) border-box;
  box-shadow: 0 6px 18px -8px rgba(80,70,229,.30);
}
.period-card--feat {
  border-color: var(--line-2);
}
.period-card__badge {
  position: absolute;
  top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--signal);
  color: var(--surface);
  font-size: 10.5px; font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: 0 4px 12px -4px rgba(80,70,229,.40);
}
.period-card__name {
  font-family: var(--f-disp);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.018em;
  margin-bottom: 4px;
}
.period-card__save {
  display: inline-block;
  align-self: flex-start;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--signal);
  background: var(--signal-soft);
  padding: 3px 8px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.period-card__save--neutral { color: var(--muted); background: var(--paper-3); }
.period-card__rate {
  font-family: var(--f-disp);
  font-size: clamp(22px, 2.4vw, 26px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1;
}
.period-card__total {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.4;
}
.period-card__check {
  position: absolute; top: 12px; right: 12px;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--line-2);
  background: var(--paper);
  color: transparent;
  display: grid; place-items: center;
  transition: all var(--t-fast);
}
.period-card[data-selected] .period-card__check {
  background: var(--signal);
  border-color: var(--signal);
  color: var(--paper);
}

/* ─── step 5 — AI add-ons ─────────────────────────────────────── */
.addon-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media (min-width: 600px) { .addon-grid { grid-template-columns: repeat(2, 1fr); } }

.addon {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 4px 14px;
  padding: 14px 16px 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast),
              transform var(--t-fast), box-shadow var(--t-fast);
}
.addon input { position: absolute; opacity: 0; pointer-events: none; }
.addon:hover { border-color: var(--line-2); transform: translateY(-1px); }
.addon[data-selected] {
  border-color: var(--signal);
  background: linear-gradient(180deg, rgba(80,70,229,0.04), var(--surface));
  box-shadow: 0 0 0 3px var(--signal-soft);
}

.addon__icon {
  grid-column: 1; grid-row: 1 / 3;
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--bg-2);
  display: grid; place-items: center;
  color: var(--ink);
  align-self: start;
  transition: background var(--t-fast), color var(--t-fast);
  flex-shrink: 0;
}
.addon[data-selected] .addon__icon {
  background: var(--signal);
  color: var(--surface);
}
.addon__head {
  grid-column: 2; grid-row: 1;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.addon__name {
  font-family: var(--f-disp);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.012em;
  line-height: 1.25;
}
.addon__price {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--signal);
  white-space: nowrap;
}
.addon__desc {
  grid-column: 2; grid-row: 2;
  font-size: 13px;
  color: var(--text-d);
  line-height: 1.45;
}

/* ════════════════════════════════════════════════════════════════════════
   SUMMARY (sticky aside)
   ════════════════════════════════════════════════════════════════════════ */
.summary {
  position: sticky;
  top: 80px;
  align-self: start;
}
@media (max-width: 979px) { .summary { position: static; } }

.summary__inner {
  border: 1px solid var(--line);
  background: var(--paper-2);
  border-radius: var(--radius-l);
  padding: 22px;
  display: flex; flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.summary__inner::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(circle at 100% 0%, rgba(80,70,229,0.06), transparent 60%);
}

.summary__h {
  font-family: var(--f-disp);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--ink);
}

.summary__rows {
  display: flex; flex-direction: column;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--line-2);
}
.summary__rows li {
  display: flex; justify-content: space-between; align-items: center;
  gap: 8px;
  font-size: 13.5px;
}
.summary__l { color: var(--muted); display: inline-flex; align-items: baseline; gap: 6px; }
.summary__lmuted {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.summary__r {
  color: var(--ink);
  font-weight: 600;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 65%;
}
.summary__sub-row, .summary__setup-row { padding-top: 6px; border-top: 1px dashed var(--line); }
.summary__sub-row { padding-top: 12px; }
.summary__email-row .summary__r {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: -0.01em;
}
.summary__r--mono { font-family: var(--f-mono); font-size: 13px; letter-spacing: -0.005em; }
.summary__r--empty { color: var(--muted-2); font-weight: 400; }
.summary__r-extra {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--signal);
  margin-left: 4px;
}

.summary__premium {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px;
  background: var(--signal-soft);
  border-radius: var(--radius-s);
  font-size: 12px;
  margin-top: -4px;
}
.summary__premium-tag {
  display: inline-block;
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--surface);
  background: var(--signal);
  padding: 2px 7px;
  border-radius: 999px;
}
.summary__premium-pat {
  font-family: var(--f-mono);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--signal-d);
}

.num-empty {
  text-align: center;
  color: var(--muted);
  padding: 24px;
  font-size: 13px;
  border: 1px dashed var(--line-2);
  border-radius: var(--radius);
  margin-bottom: 12px;
}

.summary__total {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 8px;
  padding-bottom: 6px;
}
.summary__total-l { display: flex; flex-direction: column; gap: 2px; }
.summary__total-label {
  font-family: var(--f-disp);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.summary__total-sub {
  font-size: 11.5px;
  color: var(--muted);
}
.summary__total-r {
  font-family: var(--f-disp);
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1;
}

.summary__pay[disabled] { opacity: 0.5; cursor: not-allowed; }
.summary__pay[disabled]:hover { transform: none; box-shadow: 0 1px 0 rgba(0,0,0,.05), 0 4px 12px -4px rgba(14,15,20,.30); }
.summary__pay[disabled]::before { display: none; }

.summary__trust {
  display: flex; flex-direction: column;
  gap: 7px;
  padding-top: 8px;
  border-top: 1px dashed var(--line-2);
}
.summary__trust li {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px;
  color: var(--text-d);
}
.summary__trust-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--signal);
  flex-shrink: 0;
}

.summary__pay-stage {
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px dashed var(--line-2);
  display: flex; flex-direction: column;
  gap: 10px;
  animation: slideIn .35s ease;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}
.summary__pay-prompt { font-size: 13px; font-weight: 600; color: var(--ink); }
.summary__pay-foot { font-size: 11.5px; color: var(--muted); line-height: 1.4; }

.crypto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.crypto {
  display: flex; flex-direction: column;
  align-items: center; gap: 2px;
  padding: 10px 6px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast), transform var(--t-fast);
}
.crypto:hover {
  border-color: var(--ink);
  background: var(--paper-3);
  transform: translateY(-1px);
}
.crypto__sym {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0;
}
.crypto__name { font-size: 10.5px; color: var(--muted); }

/* ─── mobile bottom pay bar ─────────────────────────────────────── */
.mob-pay {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(251, 250, 244, 0.96);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line-2);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 -8px 24px -8px rgba(20,20,15,.10);
}
@media (min-width: 980px) { .mob-pay { display: none; } }
.mob-pay__l { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.mob-pay__sub { font-size: 11px; color: var(--muted); }
.mob-pay__total {
  font-family: var(--f-disp);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.mob-pay__btn { flex-shrink: 0; }
.mob-pay__btn[disabled] { opacity: 0.5; }

/* ════════════════════════════════════════════════════════════════════════
   /numbers/ — country INDEX page
   ════════════════════════════════════════════════════════════════════════ */
.numidx__head {
  padding: clamp(40px, 5vw, 64px) 0 clamp(28px, 3vw, 36px);
  position: relative; isolation: isolate;
}
.numidx__head::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(700px 350px at 70% 0%, rgba(80,70,229,0.08), transparent 60%);
}
.numidx__head h1 {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: clamp(30px, 4.6vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 12px 0 14px;
}
.numidx__head p { color: var(--text-d); font-size: clamp(15px, 1.2vw, 17px); max-width: 60ch; }
.numidx__head .pill { margin-bottom: 8px; }

.numidx__body { padding-bottom: clamp(40px, 6vw, 80px); }
.numidx__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 8px;
}
.numidx__cell a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 4px 12px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.numidx__cell a:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.numidx__cell .flag {
  grid-row: 1 / 3;
  width: 22px; height: 16px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(14,15,20,0.10);
  object-fit: cover;
  align-self: center;
}
.numidx__name { font-weight: 600; color: var(--ink); font-size: 14px; letter-spacing: -0.005em; }
.numidx__cc { font-family: var(--f-mono); font-size: 11.5px; color: var(--muted); font-weight: 700; }
.numidx__from {
  grid-column: 2 / 4; grid-row: 2;
  font-size: 11.5px;
  color: var(--text-d);
}

/* ════════════════════════════════════════════════════════════════════════
   /numbers/{slug}/ — country DETAIL page
   ════════════════════════════════════════════════════════════════════════ */
.crumbs {
  display: flex; align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 14px;
}
.crumbs a { color: var(--text-d); }
.crumbs a:hover { color: var(--signal); }
.crumbs span { color: var(--muted-2); }
.crumbs span[aria-current] { color: var(--ink); font-weight: 600; }

/* ─── hero ───────────────────────────────────────────────────────── */
.cn__hero {
  position: relative;
  padding: clamp(28px, 4vw, 48px) 0 clamp(40px, 5vw, 64px);
  overflow: hidden;
  isolation: isolate;
}
.cn__bg {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(800px 500px at 80% 0%, rgba(80,70,229,0.10), transparent 55%),
    radial-gradient(600px 400px at 10% 100%, rgba(123,115,255,0.06), transparent 60%);
  filter: blur(40px);
}
.cn__hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}
@media (min-width: 980px) {
  .cn__hero-grid { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); }
}
.cn__hero-text { max-width: 580px; }
.cn__hero-text .pill { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.cn__hero-text h1 {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: clamp(30px, 4.6vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0 0 18px;
}
.cn__hero-sub {
  color: var(--text-d);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.55;
  max-width: 56ch;
  margin-bottom: 24px;
}
.cn__hero-cta { display: flex; flex-wrap: wrap; gap: 10px; }

.cn__hero-card { display: flex; justify-content: center; }
.cn__numcard {
  width: 100%;
  max-width: 420px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-l);
  padding: 22px;
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow-l);
}
.cn__numcard-head {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; font-weight: 600; color: var(--ink);
}
.cn__numcard-head > span:first-child { display: inline-flex; align-items: center; gap: 8px; }
.cn__numcard-avail {
  display: inline-flex; align-items: center; gap: 6px;
  color: #047857;
  background: var(--hot-soft);
  padding: 4px 10px; border-radius: 999px;
  font-size: 11.5px; font-weight: 600;
}
.cn__numcard-avail span:first-child {
  width: 6px; height: 6px; border-radius: 50%; background: var(--hot);
  display: inline-block;
}
.cn__numcard-list {
  display: flex; flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  background: var(--bg-2);
  border-radius: var(--radius);
}
.cn__numcard-list li {
  font-family: var(--f-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.005em;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}

.cn__cc { color: var(--signal); font-family: var(--f-mono); font-weight: 700; }
.cn__rest { color: var(--ink); font-family: var(--f-mono); font-weight: 700; }

/* ─── facts ──────────────────────────────────────────────────────── */
.cn__facts { padding: clamp(28px, 3.5vw, 44px) 0; border-block: 1px solid var(--line); background: var(--bg-2); }
.cn__facts ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 720px) { .cn__facts ul { grid-template-columns: repeat(4, 1fr); } }
.cn__facts li {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 16px 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
}
.cn__facts strong {
  font-family: var(--f-disp);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--ink);
}
.cn__facts strong i { font-style: normal; color: var(--signal); font-weight: 600; }
.cn__facts span { font-size: 11.5px; color: var(--muted); }

/* ─── about ──────────────────────────────────────────────────────── */
.cn__about { padding: clamp(48px, 6vw, 80px) 0; }
.cn__about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 880px) { .cn__about-grid { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 48px; } }
.cn__about-text {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-d);
  max-width: 60ch;
}
.cn__formats {
  display: flex; flex-direction: column;
  gap: 10px;
  align-self: start;
  background: var(--bg-2);
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.cn__formats li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; color: var(--ink); line-height: 1.45;
}
.cn__formats svg { color: var(--signal); flex-shrink: 0; margin-top: 3px; }

/* ─── samples ────────────────────────────────────────────────────── */
.cn__samples { padding: clamp(48px, 6vw, 80px) 0; background: var(--bg-2); border-block: 1px solid var(--line); }
.cn__samples-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 720px) { .cn__samples-grid { grid-template-columns: repeat(3, 1fr); } }

.cn__samples-col {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.cn__samples-col h3 {
  font-family: var(--f-disp);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 12px;
  letter-spacing: -0.012em;
}
.cn__samples-col h3 span {
  font-size: 11.5px; font-weight: 500; color: var(--muted);
  margin-left: 6px;
}
.cn__samples-col ul { display: flex; flex-direction: column; gap: 8px; }
.cn__samples-col li {
  font-family: var(--f-mono);
  font-size: 14px;
  font-weight: 700;
  display: flex; align-items: baseline; gap: 8px;
  flex-wrap: wrap;
}
.cn__samples-col--prem { border-color: var(--signal-soft); }
.cn__samples-col--prem h3 span { color: var(--signal); }
.cn__pat {
  font-family: var(--f-body);
  font-size: 10px; font-weight: 700;
  background: var(--signal-soft); color: var(--signal-d);
  padding: 2px 6px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: 0.04em;
}

/* ─── use cases ─────────────────────────────────────────────────── */
.cn__usecases { padding: clamp(48px, 6vw, 80px) 0; }
.cn__usecases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 720px) { .cn__usecases-grid { grid-template-columns: repeat(2, 1fr); } }
.cn__usecases-grid li {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
}
.cn__usecases-grid li:hover {
  border-color: var(--line-2);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.cn__usecases-grid h3 {
  font-family: var(--f-disp);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 6px;
  letter-spacing: -0.012em;
}
.cn__usecases-grid p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-d);
}

/* ─── pricing table ─────────────────────────────────────────────── */
.cn__pricing { padding: clamp(48px, 6vw, 80px) 0; background: var(--bg-2); border-block: 1px solid var(--line); }
.cn__pricing-table {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.cn__pricing-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  align-items: center;
}
@media (max-width: 720px) {
  .cn__pricing-row { grid-template-columns: 1fr 1fr; }
  .cn__pricing-row > span:nth-child(n+3) { grid-column: span 1; }
  .cn__pricing-row--head { display: none; }
}
.cn__pricing-row:last-child { border-bottom: 0; }
.cn__pricing-row--head { background: var(--bg-2); font-size: 11px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; padding-block: 12px; }
.cn__pricing-row--prem { background: rgba(80,70,229,0.04); }
.cn__pricing-name { font-weight: 600; color: var(--ink); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.cn__pricing-sub { font-family: var(--f-mono); font-size: 11px; color: var(--muted); font-weight: 700; }
.cn__pricing-tag {
  background: var(--signal); color: var(--surface);
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.04em;
  padding: 2px 6px; border-radius: 4px; text-transform: uppercase;
}
.cn__pricing-row > span:nth-child(n+2) {
  font-family: var(--f-disp);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.018em;
}
.cn__pricing-row > span i {
  font-style: normal; font-weight: 500; color: var(--muted);
  font-size: 12px; font-family: var(--f-body);
  margin-left: 2px;
}

/* ─── faq ───────────────────────────────────────────────────────── */
.cn__faq { padding: clamp(48px, 6vw, 80px) 0; }
.cn__faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 760px; }
.cn__faq-list details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 18px;
  transition: border-color var(--t-fast);
}
.cn__faq-list details[open] { border-color: var(--line-2); }
.cn__faq-list summary {
  cursor: pointer;
  font-family: var(--f-disp);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: -0.012em;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
}
.cn__faq-list summary::-webkit-details-marker { display: none; }
.cn__faq-list summary::after {
  content: "+";
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: 18px;
  color: var(--muted);
  transition: transform var(--t-fast);
}
.cn__faq-list details[open] summary::after { content: "−"; color: var(--signal); }
.cn__faq-list p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-d);
}

/* ─── related ───────────────────────────────────────────────────── */
.cn__related { padding: clamp(48px, 6vw, 80px) 0; background: var(--bg-2); border-block: 1px solid var(--line); }
.cn__related-grid {
  display: flex; flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: 880px;
  margin: 0 auto;
}

/* ════════════════════════════════════════════════════════════════════════
   SIGN-IN MODAL (global)
   ════════════════════════════════════════════════════════════════════════ */
.modal {
  position: fixed; inset: 0; z-index: 400;
  display: grid; place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s cubic-bezier(.4,0,.2,1);
}
.modal[hidden] { display: none; }
.modal.is-open { opacity: 1; pointer-events: auto; }
.modal__overlay {
  position: absolute; inset: 0;
  background: rgba(10, 11, 18, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.modal__panel {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 32px 30px 28px;
  box-shadow: var(--shadow-xl);
  transform: translateY(8px) scale(0.98);
  transition: transform .28s cubic-bezier(.22,.61,.36,1);
  isolation: isolate;
  overflow: hidden;
}
.modal.is-open .modal__panel { transform: none; }
.modal__panel::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(500px 250px at 80% 0%, rgba(80,70,229,0.10), transparent 60%);
}
.modal__close {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-2);
  color: var(--ink);
  display: grid; place-items: center;
  transition: background var(--t-fast), transform var(--t-fast);
  border: 0;
}
.modal__close:hover { background: var(--bg-3); transform: rotate(90deg); }

.modal__body { display: flex; flex-direction: column; gap: 16px; }
.modal__body .pill { align-self: flex-start; margin-bottom: 4px; }
.modal__body h2 {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1.1;
}
.modal__lead {
  color: var(--text-d);
  font-size: 14.5px;
  line-height: 1.5;
}

.modal__form { display: flex; flex-direction: column; gap: 10px; }
.modal__lbl {
  font-family: var(--f-disp);
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.modal__input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line-2);
  background: var(--surface);
  border-radius: var(--radius);
  font-family: var(--f-body);
  font-size: 14.5px;
  color: var(--ink);
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.modal__input:focus {
  border-color: var(--signal);
  box-shadow: 0 0 0 3px var(--signal-soft);
}
.modal__hint {
  font-size: 12px;
  color: #B33522;
  margin: 2px 0 0;
}
.modal__alt {
  text-align: center;
  font-size: 13px;
  color: var(--text-d);
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  line-height: 1.5;
}
.modal__alt a { color: var(--signal); font-weight: 600; }
.modal__alt-sub { font-size: 11.5px; color: var(--muted); }

.modal__sent { text-align: center; padding: 8px 0 12px; }
.modal__sent-ring {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--hot);
  color: var(--surface);
  display: grid; place-items: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 14px;
  box-shadow: 0 8px 24px -8px rgba(16,185,129,0.45);
}
.modal__sent h3 {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 6px;
}
.modal__sent p {
  color: var(--text-d);
  font-size: 13.5px;
}
.modal__sent strong {
  font-family: var(--f-mono);
  color: var(--ink);
  font-weight: 700;
}

body.is-modal-open { overflow: hidden; }

/* mobile menu sign-in trigger (button vs link) */
.mobile-menu__nav-trigger {
  background: none;
  border: 0;
  font: inherit;
  text-align: left;
  width: 100%;
  cursor: pointer;
}

/* ════════════════════════════════════════════════════════════════════════
   /get/ Step 5 — Account email field
   ════════════════════════════════════════════════════════════════════════ */
.acct-row {
  position: relative;
}
.acct-row input[type="email"] {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line-2);
  background: var(--surface);
  border-radius: var(--radius);
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.acct-row input[type="email"]:focus {
  border-color: var(--signal);
  box-shadow: 0 0 0 3px var(--signal-soft);
}
.acct-row input[type="email"].is-invalid {
  border-color: #B33522;
  box-shadow: 0 0 0 3px rgba(220,70,50,0.10);
}
.acct-hint {
  font-size: 12.5px;
  color: #B33522;
  margin: 6px 0 0;
}
.acct-foot {
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-d);
}
.acct-signin {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  font-weight: 600;
  color: var(--signal);
  cursor: pointer;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.acct-signin:hover { color: var(--signal-d); }

/* ════════════════════════════════════════════════════════════════════════
   /status/ — system status (deterministic, time-based)
   ════════════════════════════════════════════════════════════════════════ */
.st {
  padding: clamp(24px, 3vw, 36px) 0 clamp(48px, 7vw, 80px);
  position: relative; isolation: isolate;
}
.st::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(900px 400px at 50% 0%, rgba(80,70,229,0.05), transparent 60%);
}

.st__crumbs { margin-bottom: 18px; }

.st__h2 {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.st__sec-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
  margin-bottom: 14px;
}
.st__sec-meta { color: var(--muted); font-size: 11.5px; letter-spacing: 0.02em; }

/* ─── banner ──────────────────────────────────────────────────── */
.st__banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  background: var(--surface);
  margin-bottom: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-sm);
  position: relative; isolation: isolate; overflow: hidden;
}
.st__banner::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(16,185,129,0.06), transparent 60%);
}
.st__banner--degraded::before { background: linear-gradient(180deg, rgba(245,158,11,0.08), transparent 60%); }
.st__banner--major::before    { background: linear-gradient(180deg, rgba(239,68,68,0.10), transparent 60%); }

.st__banner-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--hot);
  color: var(--surface);
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: 0 8px 22px -8px rgba(16,185,129,0.45);
}
.st__banner--degraded .st__banner-icon { background: #F59E0B; box-shadow: 0 8px 22px -8px rgba(245,158,11,0.45); }
.st__banner--major .st__banner-icon    { background: #EF4444; box-shadow: 0 8px 22px -8px rgba(239,68,68,0.45); }

.st__banner-body h1 {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: clamp(22px, 2.8vw, 30px);
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 4px;
}
.st__banner-body p {
  color: var(--text-d);
  font-size: 13.5px;
  line-height: 1.45;
}
.st__banner-body time {
  font-family: var(--f-mono);
  font-size: 12.5px;
  color: var(--ink);
  font-weight: 600;
}
.st__banner-meta {
  font-size: 11px;
  color: var(--muted-2);
  text-align: right;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .st__banner { grid-template-columns: auto 1fr; }
  .st__banner-meta { display: none; }
}

/* ─── service list ────────────────────────────────────────────── */
.st__services { margin-bottom: clamp(36px, 5vw, 56px); }
.st__svc-list {
  display: flex; flex-direction: column;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}
.st__svc {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  transition: background var(--t-fast);
}
.st__svc:last-child { border-bottom: 0; }
.st__svc:hover { background: var(--bg-2); }
@media (max-width: 720px) {
  .st__svc { grid-template-columns: 1fr auto; gap: 12px; padding: 14px 16px; }
  .st__svc-spark { grid-column: 1 / 3; order: 3; }
}

.st__svc-name {
  display: flex; align-items: center;
  gap: 10px;
  min-width: 0;
}
.st__svc-pulse {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--hot);
  flex-shrink: 0;
  position: relative;
}
.st__svc-pulse::after {
  content: ""; position: absolute; inset: -3px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  color: var(--hot);
  opacity: 0.4;
  animation: stPulse 2.4s infinite;
}
.st__svc-pulse--degraded { background: #F59E0B; }
.st__svc-pulse--degraded::after { color: #F59E0B; }
.st__svc-pulse--major { background: #EF4444; }
.st__svc-pulse--major::after { color: #EF4444; }
@keyframes stPulse {
  0%   { transform: scale(0.6); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}
.st__svc-label {
  font-family: var(--f-disp);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.012em;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.st__svc-status {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--hot-soft);
  color: #047857;
}
.st__svc-status--degraded { background: rgba(245,158,11,0.12); color: #B45309; }
.st__svc-status--major    { background: rgba(239,68,68,0.12);  color: #B91C1C; }

.st__svc-spark {
  display: flex; align-items: flex-end;
  height: 28px;
  gap: 1px;
  padding-right: 12px;
}
.st__bar {
  flex: 1;
  min-width: 2px;
  max-width: 4px;
  background: var(--hot);
  border-radius: 1px;
  height: 100%;
  transition: opacity var(--t-fast);
  cursor: help;
}
.st__bar--ok    { background: var(--hot); }
.st__bar--minor { background: #F59E0B; }
.st__bar--major { background: #EF4444; }
.st__bar:hover { opacity: 0.6; }

.st__svc-up {
  text-align: right;
  font-family: var(--f-mono);
  display: flex; flex-direction: column;
  gap: 1px;
}
.st__svc-up > span {
  font-family: var(--f-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.st__svc-pct { color: var(--muted); font-size: 11px; margin-left: 1px; }
.st__svc-up small { font-size: 10.5px; color: var(--muted); }

.st__spark-legend {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-top: 10px;
  padding: 0 20px;
  font-size: 11px;
  color: var(--muted);
}
.st__leg { display: inline-flex; align-items: center; gap: 6px; }
.st__leg-dot {
  width: 8px; height: 8px;
  border-radius: 2px;
  display: inline-block;
}
.st__leg-dot--ok { background: var(--hot); }
.st__leg-dot--minor { background: #F59E0B; }
.st__leg-dot--major { background: #EF4444; }

/* ─── latency ─────────────────────────────────────────────────── */
.st__latency { margin-bottom: clamp(36px, 5vw, 56px); }
.st__lat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 720px) { .st__lat-grid { grid-template-columns: repeat(2, 1fr); } }
.st__lat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow-xs);
}
.st__lat-card header {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--line-2);
}
.st__lat-card h3 {
  font-family: var(--f-disp);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.st__lat-card ul { display: flex; gap: 14px; }
.st__lat-card li {
  display: flex; align-items: baseline; gap: 6px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--muted);
}
.st__lat-card li strong {
  font-family: var(--f-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.st__lat-card li small {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--muted);
}
.st__lat-chart {
  display: flex; align-items: flex-end;
  height: 56px;
  gap: 2px;
}
.st__lat-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--signal), var(--signal-d));
  border-radius: 1.5px 1.5px 0 0;
  min-height: 6%;
  cursor: help;
  transition: opacity var(--t-fast);
}
.st__lat-bar:hover { opacity: 0.6; }

/* ─── incidents ───────────────────────────────────────────────── */
.st__active { margin-bottom: clamp(28px, 4vw, 40px); }
.st__history-empty {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  color: var(--text-d);
  font-size: 14px;
}
.st__inc-list { display: flex; flex-direction: column; gap: 10px; }

.st__inc {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--hot);
  border-radius: var(--radius);
  padding: 16px 18px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.st__inc--minor { border-left-color: #F59E0B; }
.st__inc--major { border-left-color: #EF4444; }
.st__inc--active { border-left-width: 4px; box-shadow: 0 0 0 3px rgba(245,158,11,0.10); }

.st__inc header {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 11px;
}
.st__inc-sev {
  font-family: var(--f-body);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 2px 7px;
  border-radius: 4px;
  background: rgba(245,158,11,0.15);
  color: #B45309;
}
.st__inc--major .st__inc-sev { background: rgba(239,68,68,0.15); color: #B91C1C; }
.st__inc-svc {
  font-family: var(--f-disp);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.st__inc-id {
  font-size: 10.5px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.st__inc-since, .st__inc-when {
  font-size: 11px;
  color: var(--muted);
  margin-left: auto;
}
.st__inc h3 {
  font-family: var(--f-disp);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: -0.012em;
  color: var(--ink);
  line-height: 1.3;
  margin: 4px 0;
}
.st__inc-rca {
  color: var(--text-d);
  font-size: 13.5px;
  line-height: 1.5;
  margin-bottom: 8px;
}
.st__inc footer {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 6px;
  padding-top: 8px;
  border-top: 1px dashed var(--line);
  font-size: 11.5px;
  color: var(--muted);
}
.st__inc footer .mono { font-size: 11px; }
.st__inc-dot { color: var(--muted-2); }
.st__inc-resolved {
  font-weight: 700;
  color: #047857;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.06em;
}
.st__inc--active .st__inc-resolved { display: none; }

/* ─── footer ──────────────────────────────────────────────────── */
.st__foot {
  margin-top: clamp(36px, 5vw, 56px);
  padding-top: 20px;
  border-top: 1px dashed var(--line-2);
  display: flex; flex-direction: column;
  gap: 6px;
}
.st__foot p { color: var(--muted); font-size: 12.5px; }
.st__foot a { color: var(--signal); font-weight: 600; }
.st__foot .mono { font-size: 11px; color: var(--muted-2); }

/* ════════════════════════════════════════════════════════════════════════
   /contact/ — single focused card, max 640px centered
   ════════════════════════════════════════════════════════════════════════ */
.ct {
  padding: clamp(24px, 3vw, 36px) 0 clamp(48px, 7vw, 80px);
  position: relative; isolation: isolate;
}
.ct::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(800px 400px at 50% 0%, rgba(80,70,229,0.06), transparent 60%);
}

.ct__crumbs {
  max-width: 640px;
  margin: 0 auto 24px;
}

.ct__head {
  max-width: 640px;
  margin: 0 auto clamp(24px, 3vw, 32px);
  text-align: center;
}
.ct__head .pill { margin-bottom: 12px; }
.ct__head h1 {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 12px;
}
.ct__lead {
  color: var(--text-d);
  font-size: clamp(15px, 1.2vw, 16.5px);
  line-height: 1.5;
}

.ct__card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: clamp(28px, 4vw, 40px);
  box-shadow: var(--shadow-sm);
}

.ct__form {
  display: flex; flex-direction: column;
  gap: 20px;
}
.ct__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 540px) {
  .ct__row { grid-template-columns: 1fr 1.2fr; }
}

.ct__error {
  padding: 11px 14px;
  background: rgba(220, 70, 50, 0.08);
  border: 1px solid rgba(220, 70, 50, 0.30);
  border-radius: var(--radius-s);
  color: #B33522;
  font-size: 13.5px;
}

.ct__field {
  display: flex; flex-direction: column;
  gap: 8px;
  border: 0; padding: 0; margin: 0;
  min-width: 0;
}
.ct__field > label,
.ct__field > legend {
  font-family: var(--f-disp);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.ct__opt {
  font-family: var(--f-body);
  font-size: 10.5px;
  font-weight: 700;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-left: 4px;
}
.ct__hint {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
  line-height: 1.45;
}

.ct__field--order {
  animation: ctSlide .25s ease both;
}
.ct__field--order[hidden] { display: none; }
@keyframes ctSlide {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: none; }
}

/* ─── category chips ──────────────────────────────────────────────── */
.ct__cats {
  display: flex; flex-wrap: wrap;
  gap: 6px;
}
.ct__cat {
  position: relative;
  cursor: pointer;
  padding: 7px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  background: var(--surface);
  color: var(--text);
  transition: border-color var(--t-fast), background var(--t-fast),
              color var(--t-fast), transform var(--t-fast);
  user-select: none;
  white-space: nowrap;
}
.ct__cat input { position: absolute; opacity: 0; pointer-events: none; }
.ct__cat:hover { border-color: var(--line-2); transform: translateY(-1px); }
.ct__cat:has(input:checked) {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
  box-shadow: 0 4px 12px -4px rgba(10,11,18,0.30);
}

/* ─── inputs ──────────────────────────────────────────────────────── */
.ct__input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line-2);
  background: var(--surface);
  border-radius: var(--radius);
  font-family: var(--f-body);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink);
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  resize: vertical;
}
.ct__input--mono {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: -0.005em;
}
.ct__input:focus {
  border-color: var(--signal);
  box-shadow: 0 0 0 3px var(--signal-soft);
}
.ct__input::placeholder { color: var(--muted-2); }
textarea.ct__input { min-height: 100px; }

.ct__submit { padding-top: 4px; }

/* ─── notes strip below the card ──────────────────────────────────── */
.ct__notes {
  max-width: 640px;
  margin: clamp(20px, 3vw, 28px) auto 0;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 6px 22px;
  font-size: 12.5px;
  color: var(--muted);
}
.ct__notes li {
  display: inline-flex; align-items: center; gap: 7px;
}
.ct__note-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--signal);
}

/* ─── confirmation card ───────────────────────────────────────────── */
.ct__card--ok {
  text-align: center;
  position: relative; isolation: isolate; overflow: hidden;
}
.ct__card--ok::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(500px 300px at 50% 0%, rgba(16,185,129,0.10), transparent 60%);
}
.ct__ok-ring {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--hot);
  color: var(--surface);
  display: grid; place-items: center;
  margin: 0 auto 18px;
  box-shadow: 0 8px 24px -8px rgba(16,185,129,0.45);
}
.ct__ok-ref {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.ct__ok-code {
  margin-bottom: 22px;
}
.ct__ok-code code {
  font-family: var(--f-mono);
  font-size: 18px;
  font-weight: 700;
  background: var(--bg-2);
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.ct__ok-bullets {
  text-align: left;
  max-width: 380px;
  margin: 0 auto 24px;
  display: flex; flex-direction: column; gap: 9px;
  font-size: 13.5px;
  color: var(--text-d);
}
.ct__ok-bullets li {
  position: relative;
  padding-left: 16px;
}
.ct__ok-bullets li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--signal);
}
.ct__ok-bullets strong { color: var(--ink); font-weight: 700; }
.ct__ok-actions {
  display: inline-flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
}

/* ════════════════════════════════════════════════════════════════════════
   /legal/{slug}/ — legal pages
   ════════════════════════════════════════════════════════════════════════ */
.legal__head {
  padding: clamp(28px, 4vw, 48px) 0 clamp(20px, 3vw, 28px);
  position: relative; isolation: isolate;
}
.legal__head::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(700px 350px at 80% 0%, rgba(80,70,229,0.06), transparent 60%);
}
.legal__head h1 {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: clamp(30px, 4.4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 14px 0 12px;
}
.legal__lead {
  color: var(--text-d);
  font-size: clamp(15px, 1.2vw, 17px);
  max-width: 60ch;
  margin-bottom: 12px;
}
.legal__updated {
  font-family: var(--f-mono);
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.legal__updated time { color: var(--ink); font-weight: 700; }

.legal__body { padding: clamp(24px, 3vw, 36px) 0 clamp(56px, 8vw, 100px); }
.legal__wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (min-width: 980px) {
  .legal__wrap { grid-template-columns: minmax(0, 1fr) 220px; gap: 56px; }
}

.legal__article {
  max-width: 720px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text);
}
.legal__intro {
  font-size: 16.5px;
  color: var(--text-d);
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px dashed var(--line-2);
}
.legal__article h2 {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 32px 0 12px;
  scroll-margin-top: 80px;
}
.legal__article h2:first-child { margin-top: 0; }
.legal__article h3 {
  font-family: var(--f-disp);
  font-weight: 600;
  font-size: 16.5px;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 22px 0 8px;
}
.legal__article p { margin: 0 0 14px; color: var(--text-d); }
.legal__article p strong { color: var(--ink); font-weight: 700; }
.legal__article ul {
  list-style: none;
  margin: 0 0 18px;
  padding-left: 0;
}
.legal__article ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  color: var(--text-d);
}
.legal__article ul li::before {
  content: "";
  position: absolute; left: 0; top: 11px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--signal);
}
.legal__article ul li strong { color: var(--ink); font-weight: 700; }
.legal__article a {
  color: var(--signal);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.legal__article a:hover { color: var(--signal-d); }
.legal__article code {
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 700;
  background: var(--bg-2);
  padding: 1px 6px;
  border-radius: 4px;
  color: var(--ink);
}

.legal__nav {
  position: sticky;
  top: 80px;
  align-self: start;
}
@media (max-width: 979px) { .legal__nav { position: static; } }
.legal__nav h3 {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.legal__nav ul {
  display: flex; flex-direction: column;
  gap: 4px;
  border-left: 1px solid var(--line);
  padding-left: 14px;
}
.legal__nav a {
  color: var(--text-d);
  font-size: 14px;
  padding: 4px 0;
  display: block;
  transition: color var(--t-fast);
}
.legal__nav a:hover { color: var(--signal); }
.legal__nav a[aria-current="page"] {
  color: var(--ink);
  font-weight: 600;
}
.legal__nav a[aria-current="page"]::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 22px;
  background: var(--signal);
  margin-left: -16px;
  border-radius: 2px;
}

/* ════════════════════════════════════════════════════════════════════════
   /pay/{id}/ — payment page
   ════════════════════════════════════════════════════════════════════════ */
.pay { padding-bottom: clamp(48px, 7vw, 80px); }

.pay__intro {
  padding: clamp(20px, 3vw, 32px) 0 clamp(16px, 2vw, 20px);
  position: relative; isolation: isolate;
}
.pay__intro::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(700px 350px at 80% 0%, rgba(80,70,229,0.08), transparent 60%);
}
.pay__intro h1 {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 8px 0 0;
}
.pay__intro h1 em {
  font-style: normal;
  font-family: var(--f-disp);
  font-weight: 800;
  color: var(--signal);
}
.pay__ref {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 700;
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 2px 8px;
  border-radius: 4px;
  color: var(--ink);
}

.pay__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding-top: clamp(20px, 2.5vw, 28px);
  align-items: start;
}
@media (min-width: 980px) {
  .pay__layout {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 32px;
  }
  .pay__main  { grid-column: 1; grid-row: 1; }
  .pay__recap { grid-column: 2; grid-row: 1; }
}

/* ─── recap (sticky aside) ─────────────────────────────────────── */
.pay__recap {
  position: sticky;
  top: 80px;
  align-self: start;
}
@media (max-width: 979px) { .pay__recap { position: static; } }
.pay__recap-card {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-l);
  padding: 22px;
  display: flex; flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  position: relative; isolation: isolate; overflow: hidden;
}
.pay__recap-card::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(circle at 100% 0%, rgba(80,70,229,0.06), transparent 60%);
}
.pay__recap-head {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.pay__recap-head h2 {
  font-family: var(--f-disp);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.012em;
}
.pay__recap-ref {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  background: var(--bg-2);
  padding: 2px 7px;
  border-radius: 4px;
}
.pay__recap-rows, .pay__recap-pricing {
  display: flex; flex-direction: column;
  gap: 9px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--line-2);
  font-size: 13.5px;
}
.pay__recap-rows li, .pay__recap-pricing li {
  display: flex; justify-content: space-between; align-items: center; gap: 8px;
}
.pay__l { color: var(--muted); display: inline-flex; align-items: baseline; gap: 6px; }
.pay__l small {
  font-size: 10px; font-weight: 700;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-left: 2px;
}
.pay__r {
  color: var(--ink);
  font-weight: 600;
  text-align: right;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pay__r--mono { font-family: var(--f-mono); font-size: 13px; }
.pay__premium-tag {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 700;
  background: var(--signal-soft);
  color: var(--signal-d);
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.pay__recap-pricing li:first-child { padding-top: 4px; }
.pay__recap-pricing span:last-child { font-family: var(--f-mono); font-size: 12.5px; }
.pay__recap-pricing small {
  font-size: 10px; font-weight: 700;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-left: 4px;
}

.pay__recap-total {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 8px;
  padding-bottom: 4px;
}
.pay__total-l { display: flex; flex-direction: column; gap: 2px; }
.pay__total-label, .pay__recap-total .pay__total-l > span:first-child {
  font-family: var(--f-disp); font-size: 14px; font-weight: 600; color: var(--ink);
}
.pay__total-sub { font-size: 11px; color: var(--muted); }
.pay__total-r {
  font-family: var(--f-disp);
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1;
}
.pay__recap-trust {
  display: flex; flex-direction: column;
  gap: 7px;
  padding-top: 10px;
  border-top: 1px dashed var(--line-2);
}
.pay__recap-trust li {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px;
  color: var(--text-d);
}
.pay__dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--signal);
  flex-shrink: 0;
}

/* ─── progress (5 dots) ─────────────────────────────────────────── */
.pay__progress {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 24px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow-x: auto;
}
.pay__progress li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 1; min-width: 0;
  position: relative;
}
.pay__progress li:not(:last-child)::after {
  content: "";
  flex: 1;
  height: 1.5px;
  background: var(--line);
  margin: 0 4px;
  border-radius: 2px;
}
.pay__progress-dot {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--bg-2);
  color: var(--muted-2);
  display: grid; place-items: center;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  transition: all var(--t-base);
}
.pay__progress-lbl {
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.pay__progress li.on .pay__progress-dot {
  background: var(--signal);
  color: var(--surface);
  box-shadow: 0 0 0 4px var(--signal-soft);
}
.pay__progress li.on .pay__progress-lbl { color: var(--ink); font-weight: 600; }
.pay__progress li.done .pay__progress-dot {
  background: var(--ink);
  color: var(--surface);
}
.pay__progress li.done:not(:last-child)::after { background: var(--ink); }
.pay__progress li.done .pay__progress-lbl { color: var(--text-d); }
@media (max-width: 720px) {
  .pay__progress-lbl { display: none; }
  .pay__progress li:not(:last-child)::after { margin: 0 2px; }
}

/* ─── flash ─────────────────────────────────────────────────────── */
.pay__flash {
  display: none;
  padding: 12px 14px;
  background: rgba(220, 70, 50, 0.08);
  border: 1px solid rgba(220, 70, 50, 0.30);
  border-radius: var(--radius);
  color: #B33522;
  font-size: 13.5px;
  font-weight: 500;
  margin-bottom: 16px;
}
.pay__flash.on { display: block; }

/* ─── coin picker ───────────────────────────────────────────────── */
.pay__pick-head { margin-bottom: 18px; }
.pay__pick-head h2 {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 28px);
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 8px;
}
.pay__pick-head h2 em {
  font-style: normal; font-weight: 800;
  color: var(--signal);
}
.pay__pick-head p { font-size: 14.5px; color: var(--text-d); max-width: 56ch; }

.pay__coingrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 16px;
}
@media (min-width: 540px)  { .pay__coingrid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px)  { .pay__coingrid { grid-template-columns: repeat(3, 1fr); } }

.pay__coin {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 9px 12px 9px 9px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: border-color var(--t-fast), background var(--t-fast),
              transform var(--t-fast), box-shadow var(--t-fast);
}
.pay__coin:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.pay__coin[disabled] { cursor: not-allowed; pointer-events: none; }
.pay__coin.loading { border-color: var(--signal); box-shadow: 0 0 0 3px var(--signal-soft); }
.pay__coin--rec { border-color: var(--signal); background: linear-gradient(180deg, rgba(80,70,229,0.04), var(--surface)); }
.pay__coin--off {
  opacity: 0.55;
  background: var(--bg-2);
}
.pay__coin--off:hover {
  border-color: var(--line);
  transform: none;
  box-shadow: none;
}
.pay__coin--off .pay__coin-icon { filter: grayscale(0.7); }
.pay__coin-status {
  font-family: var(--f-body);
  font-size: 9.5px;
  font-weight: 700;
  background: var(--bg-3);
  color: var(--muted);
  padding: 2px 7px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.pay__coin-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--bg-2);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.pay__coin--rec .pay__coin-icon { background: var(--signal-soft); }
.pay__coin-name {
  display: inline-flex; align-items: center;
  gap: 7px;
  min-width: 0;
  flex-wrap: nowrap;
  overflow: hidden;
}
.pay__coin-name strong {
  font-family: var(--f-disp);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.012em;
  white-space: nowrap;
}
.pay__coin-chain {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 700;
  background: var(--bg-2);
  color: var(--text-d);
  padding: 1px 6px;
  border-radius: 4px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.pay__coin-rec {
  font-family: var(--f-body);
  font-size: 9.5px;
  font-weight: 700;
  background: var(--signal);
  color: var(--surface);
  padding: 2px 7px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.pay__coin-arrow {
  font-family: var(--f-mono);
  font-size: 14px;
  color: var(--muted);
  font-weight: 700;
  transition: transform var(--t-fast), color var(--t-fast);
}
.pay__coin:hover .pay__coin-arrow { color: var(--signal); transform: translateX(2px); }

/* ─── awaiting / confirming ─────────────────────────────────── */
.pay__banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--signal);
  border-radius: var(--radius);
  box-shadow: 0 0 0 3px var(--signal-soft);
  margin-bottom: 18px;
}
.pay__banner--confirm { border-color: var(--hot); box-shadow: 0 0 0 3px var(--hot-soft); }
.pay__banner-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--signal);
  color: var(--surface);
  display: grid; place-items: center;
  font-size: 14px;
  font-weight: 700;
  animation: payPulse 2s ease infinite;
}
.pay__banner--confirm .pay__banner-icon {
  background: var(--hot);
  animation: payRotate 1.6s linear infinite;
}
@keyframes payPulse { 0%,100%{transform:scale(1);} 50%{transform:scale(1.10);} }
@keyframes payRotate { from{transform:rotate(0);} to{transform:rotate(360deg);} }
.pay__banner-body h3 {
  font-family: var(--f-disp);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.012em;
  line-height: 1.25;
}
.pay__banner-body p { font-size: 13px; color: var(--text-d); margin-top: 2px; }
.pay__banner-timer {
  font-family: var(--f-mono);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  background: var(--bg-2);
  padding: 6px 12px;
  border-radius: var(--radius-s);
  font-variant-numeric: tabular-nums;
}

.pay__send {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
@media (min-width: 720px) {
  .pay__send { grid-template-columns: auto minmax(0, 1fr); align-items: start; }
}
.pay__qr { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.pay__qr-box {
  width: 220px; height: 220px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
  display: grid; place-items: center;
  text-decoration: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.pay__qr-box:hover { border-color: var(--signal); box-shadow: 0 0 0 3px var(--signal-soft); }
.pay__qr-box img { display: block; max-width: 100%; height: auto; }
.pay__qr-fallback {
  font-size: 12px; color: var(--muted);
  text-align: center; padding: 16px;
}
.pay__qr-chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 10px;
  background: var(--bg-2);
  border-radius: 999px;
  font-size: 12px;
  color: var(--text-d);
}
.pay__qr-chip strong { color: var(--ink); font-weight: 700; }

.pay__details { display: flex; flex-direction: column; gap: 10px; }
.pay__detail {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
}
.pay__detail-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 6px;
}
.pay__detail-k {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.pay__detail-req {
  font-size: 9.5px;
  font-weight: 700;
  background: var(--hot-soft);
  color: #047857;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 4px;
}
.pay__copy {
  font-family: var(--f-body);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--signal);
  background: var(--signal-soft);
  border: 0;
  padding: 4px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--t-fast);
}
.pay__copy:hover { background: rgba(80,70,229,0.18); }
.pay__copy.ok { background: var(--hot-soft); color: #047857; }
.pay__detail-v {
  font-family: var(--f-disp);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.018em;
  word-break: break-all;
}
.pay__detail-v--mono {
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.005em;
  background: var(--bg-2);
  padding: 8px 10px;
  border-radius: var(--radius-s);
  margin-top: 4px;
}
.pay__detail-unit {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  margin-left: 4px;
  letter-spacing: 0;
}
.pay__detail-warn {
  margin-top: 6px;
  font-size: 11.5px;
  color: #B33522;
}
.pay__detail-warn strong { font-weight: 700; }

.pay__foot-ctrls {
  display: flex; flex-wrap: wrap; gap: 10px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.pay__reset-btn, .pay__cancel-btn {
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-d);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: var(--radius-s);
  cursor: pointer;
  transition: all var(--t-fast);
}
.pay__reset-btn:hover { border-color: var(--ink); color: var(--ink); }
.pay__cancel-btn:hover { border-color: #B33522; color: #B33522; background: rgba(220,70,50,0.04); }

/* ─── done ─────────────────────────────────────────────────────── */
.pay__done {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: clamp(28px, 4vw, 56px);
  text-align: center;
  position: relative; isolation: isolate; overflow: hidden;
}
.pay__done::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(16,185,129,0.10), transparent 60%);
}
.pay__done-ring {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--hot);
  color: var(--surface);
  display: grid; place-items: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 16px;
  box-shadow: 0 8px 24px -8px rgba(16,185,129,0.45);
}
.pay__done h2 {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 12px;
}
.pay__done p { color: var(--text-d); font-size: 15px; max-width: 50ch; margin: 0 auto 14px; line-height: 1.55; }
.pay__done-num {
  font-family: var(--f-mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--signal);
  background: var(--signal-soft);
  padding: 2px 8px;
  border-radius: 4px;
}
.pay__done-ref { font-size: 12.5px; color: var(--muted); }
.pay__done-ref code {
  font-family: var(--f-mono);
  background: var(--bg-2);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--ink);
  font-weight: 700;
}
.pay__done-actions {
  display: inline-flex; flex-wrap: wrap; gap: 10px;
  margin-top: 18px;
}

/* ─── dead-end states ─────────────────────────────────────────── */
.pay__dead {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: clamp(28px, 4vw, 48px);
  text-align: center;
}
.pay__dead h3 {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 26px);
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 12px;
}
.pay__dead p { color: var(--text-d); font-size: 14.5px; max-width: 52ch; margin: 0 auto 18px; line-height: 1.55; }
.pay__dead code {
  font-family: var(--f-mono);
  font-size: 12px;
  background: var(--bg-2);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--ink);
}

/* ─── loading overlay ─────────────────────────────────────────── */
.pay__loading {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(14, 15, 18, 0.55);
  backdrop-filter: blur(6px);
  display: none;
  place-items: center;
}
.pay__loading.on { display: grid; }
.pay__loading-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 32px 36px;
  text-align: center;
  max-width: 320px;
  box-shadow: var(--shadow-l);
}
.pay__loading-card h4 {
  font-family: var(--f-disp);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 6px;
  margin-top: 14px;
}
.pay__loading-card p { font-size: 13px; color: var(--text-d); }
.pay__loading-spinner {
  width: 36px; height: 36px;
  border: 3px solid var(--bg-2);
  border-top-color: var(--signal);
  border-radius: 50%;
  margin: 0 auto;
  animation: paySpin 1s linear infinite;
}
@keyframes paySpin { to { transform: rotate(360deg); } }

/* ════════════════════════════════════════════════════════════════════════
   REVEAL ON SCROLL (subtle)
   ════════════════════════════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity .6s ease, transform .6s cubic-bezier(.22,.61,.36,1); }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ════════════════════════════════════════════════════════════════════════
   RESPONSIVE OVERRIDES
   ════════════════════════════════════════════════════════════════════════ */
@media (max-width: 880px) {
  .nav, .topbar__cta { display: none; }
  .hamburger { display: inline-grid; place-items: center; }
  .topbar__inner { grid-template-columns: 1fr auto; }
}

@media (max-width: 640px) {
  body { font-size: 15.5px; }
  .hero__h { font-size: clamp(34px, 9vw, 48px); }
  .numcard { padding: 18px; }
  .numcard__inc li { font-size: 11.5px; }
  .feature { padding: 20px 18px 22px; }
  .country-grid { grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); }
  .country-cell { padding: 12px 12px; gap: 10px; font-size: 12.5px; }
  .step { padding: 22px 20px 24px; }
}
