/* ============================================================
   AntonRoute — landing styles
   Palette: deep neutral + orange (logo) accent + cool blue hint
============================================================ */
:root {
  --bg:        #0a0b0d;
  --bg-1:      #0e1013;
  --bg-2:      #14171c;
  --bg-3:      #1b1f25;
  --line:      rgba(255, 255, 255, 0.07);
  --line-2:    rgba(255, 255, 255, 0.12);
  --fg:        #f3f4f6;
  --fg-2:      #b6b9c1;
  --fg-3:      #80838c;
  --fg-4:      #5a5d65;

  --accent:        #ff7a2e;
  --accent-soft:   #ff9a5c;
  --accent-deep:   #c9520f;
  --accent-glow:   rgba(255, 122, 46, 0.18);
  --accent-faint:  rgba(255, 122, 46, 0.08);
  --cool:          #67c2ff;
  --cool-faint:    rgba(103, 194, 255, 0.12);
  --ok:            #4ade80;

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;

  --pad: clamp(20px, 4vw, 56px);
  --max: 1240px;

  --font-display: "Unbounded", ui-sans-serif, system-ui, sans-serif;
  --font-body:    "Onest", ui-sans-serif, system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;

  --btn-radius: 14px;
}

/* ----- reset & base ----- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { background: var(--bg); color: var(--fg); -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(255,122,46,0.10), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(103,194,255,0.05), transparent 65%),
    var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 600; letter-spacing: -0.015em; }
p { margin: 0; color: var(--fg-2); }

::selection { background: var(--accent); color: #14171c; }

/* ----- i18n: show one language at a time ----- */
html[lang="ru"] [lang="en"] { display: none !important; }
html[lang="en"] [lang="ru"] { display: none !important; }

/* ================= NAV ================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px var(--pad);
  background: rgba(10, 11, 13, 0.72);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 40%, rgba(255,122,46,0.35), transparent 60%),
    var(--bg-2);
  border: 1px solid var(--line-2);
  overflow: hidden;
}
.brand-mark img {
  width: 105%;
  height: 105%;
  object-fit: cover;
  object-position: 50% 18%;
  filter: saturate(1.1);
}
.brand-word__accent { color: var(--accent); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: 12px;
}
.nav__links a {
  color: var(--fg-2);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 2px;
  transition: color .15s ease;
}
.nav__links a:hover { color: var(--fg); }

.nav__right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.lang {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
}
.lang__btn {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--fg-3);
  transition: all .15s ease;
}
.lang__btn[aria-pressed="true"] {
  background: var(--fg);
  color: var(--bg);
}

.nav__burger {
  display: none;
  width: 38px; height: 38px;
  border-radius: 8px;
  border: 1px solid var(--line-2);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.nav__burger span {
  display: block; width: 18px; height: 1.5px; background: var(--fg);
}

/* ================= FLOATING LANG SWITCH ================= */
.lang-float {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 30;
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: rgba(10, 11, 13, 0.7);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
}
.lang__btn {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 6px 11px;
  border-radius: 999px;
  color: var(--fg-3);
  transition: all .15s ease;
}
.lang__btn[aria-pressed="true"] {
  background: var(--fg);
  color: var(--bg);
}

/* ================= BUTTONS ================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: var(--btn-radius);
  border: 1px solid transparent;
  transition: transform .12s ease, background .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--accent);
  color: #161616;
  box-shadow:
    0 10px 24px -10px rgba(255,122,46,0.55),
    inset 0 -2px 0 rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn--primary:hover {
  background: var(--accent-soft);
  box-shadow:
    0 14px 28px -10px rgba(255,122,46,0.7),
    inset 0 -2px 0 rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.22);
}

.btn--ghost {
  background: rgba(255,255,255,0.02);
  border-color: var(--line-2);
  color: var(--fg);
}
.btn--ghost:hover { border-color: rgba(255,255,255,0.28); background: rgba(255,255,255,0.05); }

.btn--ghost-tg {
  background: transparent;
  border-color: var(--line-2);
  color: var(--fg);
  padding: 9px 14px;
  font-size: 13px;
}
.btn--ghost-tg:hover { border-color: var(--accent); color: var(--fg); }
.btn--ghost-tg .tg-glyph { fill: var(--accent); }

.btn--block { width: 100%; }
.btn--lg { padding: 16px 24px; font-size: 15px; border-radius: calc(var(--btn-radius) + 2px); }

/* CTA wrapper that adds a small bot-handle caption under a Telegram button */
.tg-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.tg-cta__handle {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--fg-3);
}
.tg-cta--inline .tg-cta__handle { font-size: 10.5px; letter-spacing: 0.04em; }
.tg-cta--lg .tg-cta__handle { font-size: 13px; }
.hero .tg-cta__handle { color: #6a6d75; }
.tg-glyph { width: 16px; height: 16px; fill: currentColor; }
.btn-arrow { transition: transform .15s ease; }
.btn--ghost:hover .btn-arrow { transform: translateX(3px); }

/* ================= HERO ================= */
.hero {
  position: relative;
  padding: clamp(48px, 6vw, 96px) var(--pad) clamp(56px, 7vw, 104px);
  max-width: none;
  margin: 0;
  background: #ffffff;
  color: #14171c;
  isolation: isolate;
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}
.hero .hero__title { color: #0a0b0d; }
.hero .hero__title em {
  background: linear-gradient(90deg, var(--accent-deep), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .hero__sub { color: #4a4d55; }
.hero .hero__platforms { border-top-color: rgba(0, 0, 0, 0.08); }
.hero .hero__platforms-label { color: #7a7d85; }
.hero .hero__platforms li {
  color: #3a3d45;
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.10);
}
.hero .halo--1 {
  background: radial-gradient(circle at 50% 50%, rgba(255,122,46,0.16), transparent 60%);
}
.hero .halo--2 {
  background: radial-gradient(circle at 50% 60%, rgba(103,194,255,0.10), transparent 55%);
}
.hero .orbit--3 ellipse { stroke: rgba(0, 0, 0, 0.06); }
.hero .nodes circle[fill="#ffffff"] { fill: #c8ccd2; }
.hero .mascot img {
  filter: drop-shadow(0 30px 50px rgba(255, 122, 46, 0.35));
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px 6px 10px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--fg-2);
  text-transform: uppercase;
  background: rgba(255,255,255,0.02);
}
.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--fg-4);
}
.dot--on {
  background: var(--ok);
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.15);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.35); }
  50%      { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
}

.hero__title {
  margin-top: 0;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 600;
  color: var(--fg);
  text-wrap: balance;
  max-width: 22ch;
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__sub {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg-2);
  max-width: 52ch;
  text-wrap: pretty;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.hero__trust {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.hero__trust li {
  background: var(--bg);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.trust__k {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--fg-4);
  text-transform: uppercase;
}
.trust__v {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--fg);
  font-weight: 500;
}

/* ----- hero visual ----- */
.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 440px;
  max-width: 520px;
  margin-left: 0;
  margin-right: auto;
}
.halo {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}
.halo--1 {
  background: radial-gradient(circle at 50% 50%, rgba(255,122,46,0.32), transparent 60%);
}
.halo--2 {
  background: radial-gradient(circle at 50% 60%, rgba(103,194,255,0.10), transparent 55%);
  inset: 8% -4% -4% 8%;
}
.orbits {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.orbit--1 { animation: spin 30s linear infinite; transform-origin: 300px 300px; }
.orbit--2 { animation: spin 42s linear infinite reverse; transform-origin: 300px 300px; }
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.nodes circle { animation: nodeBlink 3s ease-in-out infinite; }
.nodes circle:nth-child(2) { animation-delay: .6s; }
.nodes circle:nth-child(3) { animation-delay: 1.1s; }
.nodes circle:nth-child(4) { animation-delay: 1.7s; }
.nodes circle:nth-child(5) { animation-delay: 2.2s; }
@keyframes nodeBlink {
  0%, 100% { opacity: .35; }
  50%      { opacity: 1; }
}

.mascot {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.mascot img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 30px 50px rgba(255, 122, 46, 0.25));
}

.hero-tag {
  position: absolute;
  left: 50%;
  bottom: 2%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(10,11,13,0.85);
  border: 1px solid var(--line-2);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: -0.005em;
  color: var(--fg-2);
  backdrop-filter: blur(6px);
}
.hero-tag b { color: var(--accent); font-weight: 700; }
.hero-tag__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 3px rgba(74,222,128,0.18);
}

.hero-chip {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 12px;
  background: rgba(20, 23, 28, 0.85);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  backdrop-filter: blur(8px);
  min-width: 110px;
}
.hero-chip--a { top: 12%; right: -2%; }
.hero-chip--b { bottom: 22%; left: -4%; }
.chip__k {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--fg-4);
  text-transform: uppercase;
}
.chip__v {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg);
}

/* ----- platforms strip ----- */
.hero__platforms {
  margin-top: clamp(36px, 5vw, 56px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 28px;
}
.hero__platforms-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-4);
}
.hero__platforms ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
}
.hero__platforms li {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-2);
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
}

/* ================= SECTIONS ================= */
.section {
  padding: clamp(72px, 9vw, 120px) var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}
.section--soft {
  position: relative;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}
.section--soft::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.018) 20%, rgba(255,255,255,0.018) 80%, transparent);
  pointer-events: none;
}
.section--soft > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.sec-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: clamp(36px, 4vw, 52px);
}
.sec-head h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.sec-head__lead {
  max-width: 60ch;
  font-size: 15.5px;
  color: var(--fg-2);
}

/* ----- audience ----- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.aud-card {
  padding: 22px 22px 24px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line);
  transition: border-color .2s ease, transform .2s ease;
}
.aud-card:hover {
  border-color: rgba(255,122,46,0.35);
  transform: translateY(-2px);
}
.aud-card__icon {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--accent-faint);
  color: var(--accent);
  margin-bottom: 18px;
}
.aud-card__icon svg { width: 22px; height: 22px; }
.aud-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.aud-card p {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--fg-2);
  text-wrap: pretty;
}

/* ----- features ----- */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.feat {
  background: var(--bg);
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 180px;
  transition: background .2s ease;
}
.feat:hover { background: var(--bg-1); }
.feat__mark {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 4px;
}
.feat h3 {
  font-size: 17px;
  letter-spacing: -0.01em;
}
.feat p {
  font-size: 14.5px;
  color: var(--fg-2);
  text-wrap: pretty;
}

/* ----- steps ----- */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  counter-reset: step;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 4%;
  right: 4%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-2), transparent);
}
.step {
  position: relative;
  padding: 14px 16px 18px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding-top: 56px;
}
.step__num {
  position: absolute;
  top: 10px;
  left: 16px;
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
}
.step h3 {
  font-size: 15px;
  letter-spacing: -0.005em;
  margin-bottom: 6px;
}
.step p {
  font-size: 13.5px;
  color: var(--fg-2);
  line-height: 1.5;
}

/* ----- pricing ----- */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}
.plan {
  position: relative;
  padding: 28px 26px 28px;
  border-radius: var(--r-lg);
  background: var(--bg-1);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.plan--featured {
  background:
    radial-gradient(600px 200px at 50% -10%, rgba(255,122,46,0.16), transparent 70%),
    linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border-color: rgba(255,122,46,0.45);
  box-shadow: 0 30px 60px -30px rgba(255,122,46,0.35);
}
.plan__badge {
  position: absolute;
  top: -12px; left: 24px;
  padding: 4px 10px;
  background: var(--accent);
  color: #1a1a1a;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  font-family: var(--font-body);
  white-space: nowrap;
}
.plan__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.plan__head h3 {
  font-size: 22px;
  letter-spacing: -0.015em;
}
.plan__term {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--fg-4);
  text-transform: uppercase;
}
.plan__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px;
  margin-top: 4px;
}
.plan__price-num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
}
.plan__price-cur {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--fg-2);
  font-weight: 500;
}
.plan__price-per {
  margin-left: 6px;
  font-size: 13px;
  color: var(--fg-3);
  white-space: nowrap;
}
.plan__sub {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-4);
  margin-top: -8px;
}
.plan__list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 4px 0;
  flex: 1;
}
.plan__list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--fg-2);
}
.plan__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 12px; height: 6px;
  border-left: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(-45deg);
}

/* ----- legal ----- */
.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.legal-card {
  padding: 24px 24px 26px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--bg-1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.legal-card__h {
  display: flex;
  align-items: center;
  gap: 12px;
}
.legal-card__num {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 8px;
  background: var(--accent-faint);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
}
.legal-card h3 {
  font-size: 17px;
  letter-spacing: -0.01em;
}
.legal-card p {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.55;
  text-wrap: pretty;
}
.legal-card__note {
  padding-top: 12px;
  border-top: 1px dashed var(--line-2);
  font-size: 13px;
  color: var(--fg-3);
}
.pay-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.pay-methods li {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 9px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  color: var(--fg-2);
}

/* ----- CTA band ----- */
.cta-band {
  padding: 0 var(--pad) clamp(72px, 8vw, 100px);
  max-width: var(--max);
  margin: 0 auto;
}
.cta-band__inner {
  padding: clamp(32px, 4vw, 48px);
  border-radius: var(--r-xl);
  background:
    radial-gradient(800px 300px at 80% 0%, rgba(255,122,46,0.22), transparent 70%),
    radial-gradient(500px 200px at 0% 100%, rgba(103,194,255,0.08), transparent 70%),
    linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h2 {
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.cta-band p { color: var(--fg-2); font-size: 15px; }

/* ================= FOOTER ================= */
.foot {
  border-top: 1px solid var(--line);
  padding: 56px var(--pad) 28px;
  max-width: var(--max);
  margin: 0 auto;
}
.foot__top {
  display: grid;
  grid-template-columns: 1.05fr 2.2fr;
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.foot__brandcol {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.foot__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.foot__mark {
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 40%, rgba(255,122,46,0.35), transparent 60%),
    var(--bg-2);
  border: 1px solid var(--line-2);
  overflow: hidden;
}
.foot__mark img {
  width: 90%;
  height: 90%;
  object-fit: contain;
}
.foot__word-accent { color: var(--accent); }
.foot__tag {
  font-size: 14px;
  color: var(--fg-3);
  max-width: 36ch;
  line-height: 1.55;
}
.foot__age {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  padding: 4px 10px;
  border: 1px solid var(--line-2);
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-2);
  letter-spacing: 0.02em;
}

.foot__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 36px);
}
.foot__col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.foot__h {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg);
  margin: 0;
}
.foot__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.foot__col li {
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--fg-3);
}
.foot__col a {
  color: var(--fg-2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .15s ease;
}
.foot__col a:hover { color: var(--fg); }
.foot__col a .tg-glyph { fill: var(--accent); width: 14px; height: 14px; }
.foot__hours { color: var(--fg-4); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.02em; }

.foot__reqs li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.req__k {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--fg-4);
  text-transform: uppercase;
}
.req__v {
  font-size: 13px;
  color: var(--fg-2);
}

.foot__mid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.foot__paylabel {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-4);
}
.foot__pays {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
}
.foot__pays li {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  color: var(--fg-2);
  background: rgba(255,255,255,0.02);
}

.foot__bot {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px 32px;
  align-items: start;
  padding-top: 24px;
  font-size: 12.5px;
  color: var(--fg-4);
}
.foot__copy { color: var(--fg-3); font-size: 13px; }
.foot__disclaimer {
  font-size: 12px;
  line-height: 1.55;
  color: var(--fg-4);
  max-width: 80ch;
  margin: 0;
  justify-self: end;
  text-align: right;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__burger { display: inline-flex; }
  .nav__right { gap: 8px; }
  .nav__right .btn--ghost-tg span { display: none; }
  .nav__right .btn--ghost-tg { padding: 8px; }
  .nav.is-open .nav__links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px var(--pad) 16px;
    background: rgba(10,11,13,0.95);
    border-bottom: 1px solid var(--line);
  }
  .nav.is-open .nav__links a { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--line); }

  .hero { min-height: auto; justify-content: flex-start; padding-top: clamp(28px, 5vw, 56px); padding-bottom: clamp(40px, 6vw, 72px); }
  .hero__grid { grid-template-columns: 1fr; gap: 28px; }
  .hero__visual { order: -1; max-height: 56vh; min-height: 320px; max-width: 420px; margin-left: auto; margin-right: auto; }
  .hero__title { font-size: clamp(34px, 8vw, 50px); }
  .hero__sub { font-size: 15.5px; }

  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-grid     { grid-template-columns: repeat(2, 1fr); }
  .steps         { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .plans         { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .legal-grid    { grid-template-columns: 1fr; }

  .cta-band__inner { flex-direction: column; align-items: flex-start; gap: 18px; }

  .foot__top { grid-template-columns: 1fr; }
  .foot__cols { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .foot__bot { grid-template-columns: 1fr; }
  .foot__disclaimer { justify-self: start; text-align: left; }
}

@media (max-width: 560px) {
  .nav { padding: 12px var(--pad); gap: 12px; }
  .nav__right .btn--ghost-tg { display: none; }

  .hero__title { font-size: clamp(32px, 9vw, 44px); line-height: 1.08; }
  .hero__cta .btn { width: 100%; }
  .hero__visual { min-height: 280px; max-width: 360px; }
  .hero__trust { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .feat-grid     { grid-template-columns: 1fr; }
  .steps         { grid-template-columns: 1fr; }
  .foot__cols    { grid-template-columns: 1fr; }

  .hero-chip--a { right: 0; top: 4%; }
  .hero-chip--b { left: 0; bottom: 16%; }
}

@media (prefers-reduced-motion: reduce) {
  .orbit--1, .orbit--2, .dot--on, .nodes circle { animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ================= SCROLL REVEAL ================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity .7s cubic-bezier(.2, .7, .2, 1),
    transform .7s cubic-bezier(.2, .7, .2, 1);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
/* staggered children (used inside lists/grids) */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity .65s cubic-bezier(.2, .7, .2, 1),
    transform .65s cubic-bezier(.2, .7, .2, 1);
}
.reveal-stagger.is-in > * {
  opacity: 1;
  transform: none;
}
.reveal-stagger.is-in > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.is-in > *:nth-child(2) { transition-delay: 70ms; }
.reveal-stagger.is-in > *:nth-child(3) { transition-delay: 140ms; }
.reveal-stagger.is-in > *:nth-child(4) { transition-delay: 210ms; }
.reveal-stagger.is-in > *:nth-child(5) { transition-delay: 280ms; }
.reveal-stagger.is-in > *:nth-child(6) { transition-delay: 350ms; }
