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

/* ─── Tokens ─── */
:root {
  --bg:        #08080f;
  --bg-mid:    #0c0c18;
  --bg-card:   #0f0f1c;
  --bg-raised: #141422;
  --border:    #1e1e30;
  --border-hi: #2e2e48;

  --gold:      #c9aa6a;
  --gold-dim:  #7a6540;
  --gold-text: #e2cc99;

  --green:     #1dce7a;
  --red:       #e05262;

  --ink:       #ede8e0;
  --ink-mid:   #9a9186;
  --ink-low:   #5a554e;

  --display:   'Epilogue', system-ui, sans-serif;
  --sans:      'Plus Jakarta Sans', system-ui, sans-serif;
  --mono:      'JetBrains Mono', 'Courier New', monospace;

  --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── Cyrillic font overrides ─── */
:root[lang="ru"],
:root[lang="uk"] {
  --display: 'Unbounded', system-ui, sans-serif;
  --sans: 'Commissioner', system-ui, sans-serif;
}

/* ─── Cyrillic hero heading size (Unbounded is wider than Epilogue) ─── */
:root[lang="ru"] .hero h1,
:root[lang="uk"] .hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
}

/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ─── Grain texture ─── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
}

/* ─── Diagonal grid bg ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 48px,
      rgba(255,255,255,0.012) 48px,
      rgba(255,255,255,0.012) 49px
    );
  pointer-events: none;
  z-index: 0;
}

/* ─── Skip link (a11y) ─── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 20px;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* ─── Focus visible ─── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 1px;
}

/* ─── Layout ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

section { padding: 88px 0; position: relative; }

/* ─── Ruled divider ─── */
.rule {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.rule-line { flex: 1; height: 1px; background: var(--border); }
.rule-diamond {
  width: 6px;
  height: 6px;
  background: var(--gold-dim);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ─── Nav ─── */
nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  padding: 0;
  background: rgba(8, 8, 15, 0);
  transition: background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(8, 8, 15, 0.92);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom-color: var(--border);
}
nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 68px;
}

.logo {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}
.logo em { font-style: italic; font-weight: 800; color: var(--gold); }

.nav-right { display: flex; align-items: center; gap: 20px; }

.lang-switch { display: flex; gap: 4px; align-items: center; }
.lang-btn {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--ink-low);
  background: none;
  border: none;
  padding: 6px 8px;
  cursor: pointer;
  transition: color 0.2s;
  min-height: 44px;
  min-width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lang-btn:hover { color: var(--ink-mid); }
.lang-btn.active { color: var(--gold); }
.lang-sep { color: var(--border-hi); font-size: 0.72rem; user-select: none; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 26px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  text-decoration: none;
  transition: background 0.25s, box-shadow 0.25s;
}
.nav-cta:hover {
  background: var(--gold-text);
  box-shadow: 0 4px 24px rgba(201, 170, 106, 0.3);
}

/* ─── Hero ─── */
.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding-top: 68px;
  overflow: hidden;
}

.hero-watermark {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--display);
  font-size: clamp(180px, 26vw, 340px);
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 170, 106, 0.06);
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.05em;
}

.hero-content { max-width: 100%; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  animation: rise 0.9s var(--ease-out) both;
}
.hero-eyebrow-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--green);
  animation: blink 2.5s ease infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
  animation: rise 0.9s 0.1s var(--ease-out) both;
}
.hero h1 em { font-style: italic; font-weight: 800; color: var(--gold); }

.hero-sub {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink-mid);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 44px;
  animation: rise 0.9s 0.2s var(--ease-out) both;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  animation: rise 0.9s 0.3s var(--ease-out) both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 40px;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: background 0.3s, box-shadow 0.3s, transform 0.25s;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover {
  background: var(--gold-text);
  box-shadow: 0 6px 32px rgba(201, 170, 106, 0.28);
  transform: translateY(-2px);
}
.btn-primary:hover::after { opacity: 1; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 8px;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-mid);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 0.25s, border-color 0.25s;
  letter-spacing: 0.04em;
}
.btn-secondary:hover { color: var(--ink); border-color: var(--ink-mid); }

/* Hero ticker */
.hero-ticker {
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  overflow: hidden;
  animation: rise 0.9s 0.45s var(--ease-out) both;
}
.hero-ticker-label {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-low);
  margin-bottom: 14px;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 30s linear infinite;
  width: max-content;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.ticker-item {
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--ink-low);
  padding: 0 20px;
  border-right: 1px solid var(--border);
}
.ticker-item.hi { color: var(--gold-dim); }

/* ─── Section headers ─── */
.section-kicker {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.section-title em { font-style: italic; font-weight: 800; color: var(--gold); }
.section-body {
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink-mid);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 36px;
}

/* ─── Problem section ─── */
.s-problem { background: var(--bg); }

.ledger { border: 1px solid var(--border); }
.ledger-head {
  padding: 14px 24px;
  background: var(--bg-raised);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-low);
}
.ledger-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
  transition: background 0.2s;
  gap: 16px;
}
.ledger-row:hover { background: var(--bg-raised); }
.ledger-tool {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--ink-mid);
  flex: 1;
}
.ledger-price {
  font-family: var(--mono);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
  flex-shrink: 0;
}
.ledger-more {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}
.ledger-more-label {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--ink-low);
  font-style: italic;
}
.ledger-more-amount {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red);
  opacity: 0.6;
  white-space: nowrap;
}
.ledger-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: var(--bg-raised);
  border-top: 2px solid var(--red);
  gap: 16px;
}
.ledger-total-label {
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.ledger-total-amount {
  font-family: var(--mono);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--red);
}

.vs-bridge {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 24px 0 0;
}
.vs-line { flex: 1; height: 1px; background: var(--border); }
.vs-badge {
  padding: 10px 20px;
  border: 1px solid var(--border);
  background: var(--bg-mid);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-low);
  white-space: nowrap;
}

.solution-row {
  margin-top: 0;
  padding: 22px 24px;
  border: 2px solid var(--gold-dim);
  background: rgba(201, 170, 106, 0.035);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.solution-label {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.solution-price {
  font-family: var(--mono);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
}

/* ─── Tools grid ─── */
.s-tools { background: var(--bg-mid); }

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.tool-card {
  background: var(--bg-card);
  padding: 36px 30px;
  transition: background 0.3s;
  position: relative;
}
.tool-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s var(--ease-out);
}
.tool-card:hover { background: var(--bg-raised); }
.tool-card:hover::after { transform: scaleY(1); }

.tool-num {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--border-hi);
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}
.tool-card h3 {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.tool-meta {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 14px;
}
.tool-card p {
  font-size: 0.87rem;
  font-weight: 400;
  color: var(--ink-mid);
  line-height: 1.65;
  margin-bottom: 20px;
}
.tool-pills { display: flex; flex-wrap: wrap; gap: 5px; }
.tool-pills span {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--ink-low);
  border: 1px solid var(--border);
  padding: 3px 9px;
}

/* ─── How it works ─── */
.s-how { background: var(--bg); }

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  counter-reset: step;
}
.step-card {
  counter-increment: step;
  padding: 48px 36px;
  border-right: 1px solid var(--border);
  position: relative;
}
.step-card:last-child { border-right: none; }
.step-num {
  font-family: var(--display);
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--border-hi);
  margin-bottom: 24px;
  letter-spacing: -0.04em;
}
.step-card h3 {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.step-card p {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--ink-mid);
  line-height: 1.65;
}

/* ─── Market stats ─── */
.s-market { background: var(--bg-mid); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
.stat-card {
  padding: 44px 28px;
  border-right: 1px solid var(--border);
  background: var(--bg-card);
}
.stat-card:last-child { border-right: none; }
.stat-n {
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--gold-text);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--ink-mid);
  line-height: 1.4;
}

/* ─── Operator section ─── */
.s-operator { background: var(--bg); }

.operator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.operator-text h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.operator-text h2 em { font-style: italic; font-weight: 800; color: var(--green); }
.operator-text > p {
  font-size: 0.97rem;
  font-weight: 400;
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: 32px;
}

.proof-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.proof-list li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--ink-mid);
  line-height: 1.5;
}
.proof-list li::before {
  content: '—';
  font-family: var(--mono);
  color: var(--gold-dim);
  flex-shrink: 0;
  font-size: 0.85rem;
}

.workflow-panel { border: 1px solid var(--border); background: var(--bg-card); }
.workflow-header {
  padding: 16px 24px;
  background: var(--bg-raised);
  border-bottom: 1px solid var(--border);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-low);
  display: flex;
  align-items: center;
  gap: 8px;
}
.workflow-header::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
  animation: blink 2s infinite;
}
.wf-step {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.wf-step:last-child { border-bottom: none; }
.wf-idx {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--ink-low);
  padding-top: 2px;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}
.wf-title {
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.wf-desc {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--ink-mid);
  line-height: 1.5;
}
.wf-step.active .wf-idx { color: var(--gold-dim); }
.wf-step.active { background: rgba(201, 170, 106, 0.03); }

/* ─── Waitlist ─── */
.s-waitlist {
  background: var(--bg-mid);
  padding: 96px 0;
  text-align: center;
  position: relative;
}
.s-waitlist::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.waitlist-title {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.waitlist-title em { font-style: italic; font-weight: 800; color: var(--gold); }
.waitlist-sub {
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink-mid);
  max-width: 480px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

.waitlist-card {
  max-width: 540px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  text-align: left;
}
.waitlist-card-head {
  padding: 28px 36px;
  border-bottom: 1px solid var(--border);
}
.waitlist-card-head h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.waitlist-card-head p {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--ink-mid);
}
.waitlist-card-body { padding: 28px 36px 32px; }

/* Form styles */
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-low);
  margin-bottom: 7px;
}
.field label .req { color: var(--gold-dim); margin-left: 3px; }
.field input,
.field select {
  width: 100%;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 400;
  padding: 13px 16px;
  min-height: 48px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--ink);
  outline: none;
  transition: border-color 0.25s;
  appearance: none;
}
.field input::placeholder { color: var(--ink-low); }
.field input:focus,
.field select:focus {
  border-color: var(--gold-dim);
  box-shadow: 0 0 0 3px rgba(201, 170, 106, 0.08);
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='7' viewBox='0 0 11 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5.5 5.5L10 1' stroke='%235a554e' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.field select option { background: #0f0f1c; }

.submit-btn {
  width: 100%;
  min-height: 52px;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  border: none;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}
.submit-btn:hover {
  background: var(--gold-text);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(201, 170, 106, 0.28);
}
.submit-btn:active { transform: translateY(0); }

.form-small {
  font-size: 0.73rem;
  font-weight: 400;
  color: var(--ink-low);
  text-align: center;
  margin-top: 16px;
  letter-spacing: 0.02em;
}

/* ─── Footer ─── */
footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.foot-brand {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.foot-brand em { font-style: italic; font-weight: 800; color: var(--gold); }
.foot-copy {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--ink-low);
}

/* ─── Animations ─── */
@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}
.stagger.in > *:nth-child(1) { transition-delay: 0ms; }
.stagger.in > *:nth-child(2) { transition-delay: 70ms; }
.stagger.in > *:nth-child(3) { transition-delay: 140ms; }
.stagger.in > *:nth-child(4) { transition-delay: 210ms; }
.stagger.in > *:nth-child(5) { transition-delay: 280ms; }
.stagger.in > *:nth-child(6) { transition-delay: 350ms; }
.stagger.in > *:nth-child(7) { transition-delay: 420ms; }
.stagger.in > *:nth-child(8) { transition-delay: 490ms; }
.stagger.in > * { opacity: 1; transform: translateY(0); }

/* ─── Responsive ─── */

/* Tablet landscape / small desktop */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
  :root[lang="ru"] .hero h1,
  :root[lang="uk"] .hero h1 { font-size: clamp(2rem, 4.2vw, 3.2rem); }
}

/* Tablet portrait */
@media (max-width: 860px) {
  .operator-grid { grid-template-columns: 1fr; gap: 44px; }
  .steps-row { grid-template-columns: 1fr; }
  .step-card { border-right: none; border-bottom: 1px solid var(--border); }
  .step-card:last-child { border-bottom: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card:nth-child(2) { border-right: none; }
  .stat-card:nth-child(3) { border-top: 1px solid var(--border); }
  .stat-card:nth-child(4) { border-right: none; border-top: 1px solid var(--border); }
  .hero-sub { max-width: 100%; }
  .section-body { max-width: 100%; }
}

/* Mobile */
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  section { padding: 56px 0; }

  /* Nav */
  nav .container { height: 56px; }
  .nav-cta { padding: 0 12px; font-size: 0.58rem; letter-spacing: 0.04em; min-height: 36px; white-space: nowrap; max-width: 140px; overflow: hidden; text-overflow: ellipsis; }
  .lang-btn { min-width: 24px; padding: 6px 3px; font-size: 0.65rem; min-height: 38px; }
  .lang-sep { font-size: 0.6rem; }
  .nav-right { gap: 12px; }
  .logo { font-size: 1.15rem; }

  /* Hero */
  .hero { min-height: auto; padding-top: 56px; padding-bottom: 24px; }
  .hero h1 { font-size: clamp(1.9rem, 7.5vw, 2.8rem); margin-bottom: 20px; }
  :root[lang="ru"] .hero h1,
  :root[lang="uk"] .hero h1 { font-size: clamp(1.3rem, 5vw, 1.8rem); }
  .hero-eyebrow { margin-bottom: 20px; font-size: 0.62rem; letter-spacing: 0.14em; }
  .hero-sub { font-size: 0.95rem; margin-bottom: 32px; max-width: 100%; }
  .hero-watermark { display: none; }
  .hero-actions { gap: 14px; }
  .btn-primary { min-height: 48px; padding: 0 28px; font-size: 0.78rem; }
  .btn-secondary { font-size: 0.78rem; min-height: 48px; }
  .hero-ticker { margin-top: 40px; }

  /* Problem / Ledger */
  .ledger-row { padding: 12px 16px; gap: 10px; }
  .ledger-tool { font-size: 0.78rem; }
  .ledger-price { font-size: 0.78rem; }
  .ledger-head { padding: 12px 16px; }
  .ledger-more { padding: 12px 16px; }
  .ledger-more-label { font-size: 0.78rem; }
  .ledger-more-amount { font-size: 0.75rem; }
  .ledger-total { padding: 16px 16px; }
  .ledger-total-label { font-size: 0.85rem; }
  .ledger-total-amount { font-size: 1.05rem; }
  .solution-row { flex-direction: column; gap: 8px; padding: 18px 16px; }
  .solution-label { font-size: 0.92rem; }
  .solution-price { font-size: 1.1rem; }

  /* Tools grid */
  .tools-grid { grid-template-columns: 1fr; }
  .tool-card { padding: 28px 22px; }

  /* Steps */
  .step-card { padding: 32px 22px; }
  .step-num { font-size: 3.5rem; margin-bottom: 16px; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-card { padding: 28px 18px; }

  /* Waitlist */
  .s-waitlist { padding: 64px 0; }
  .waitlist-sub { max-width: 100%; margin-bottom: 36px; }
  .waitlist-card { max-width: 100%; }
  .waitlist-card-head,
  .waitlist-card-body { padding: 22px 20px; }

  /* Footer */
  footer .container { flex-direction: column; text-align: center; gap: 10px; }
}

/* Small mobile */
@media (max-width: 400px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  :root[lang="ru"] .hero h1,
  :root[lang="uk"] .hero h1 { font-size: clamp(1.2rem, 4.5vw, 1.6rem); }
  .nav-right { gap: 10px; }
  .nav-cta { padding: 0 10px; font-size: 0.62rem; }
  .lang-btn { min-width: 24px; padding: 6px 3px; }
  .ledger-row { padding: 10px 12px; }
  .ledger-tool { font-size: 0.72rem; }
  .ledger-price { font-size: 0.72rem; }
  .ledger-head { padding: 10px 12px; font-size: 0.62rem; }
  .ledger-more { padding: 10px 12px; }
  .ledger-total { padding: 14px 12px; }
  .stat-card { padding: 22px 14px; }
  .stat-n { font-size: clamp(1.6rem, 3vw, 2rem); }
  .section-title { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
  .waitlist-title { font-size: clamp(1.8rem, 4vw, 2.8rem); }
}
