/* ============================================================
   ФЕБ — Партнёрская программа · Responsive site styles
   Reuses tokens from assets/css/tokens.css
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-offset, 96px);
}

:root {
  --nav-offset: 96px;
}

body {
  margin: 0;
  background: var(--bg-1);
  color: var(--fg-1);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

section[id] {
  scroll-margin-top: var(--nav-offset, 96px);
}

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

a { color: inherit; text-decoration: none; }

/* --- Container: max width + side padding for desktop --- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

@media (max-width: 640px) {
  .container { padding-left: 20px; padding-right: 20px; }
}

/* ============================================================
   Typography helpers
   ============================================================ */
.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-cta);
  margin: 0 0 20px;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--fg-1);
  margin: 0 0 40px;
  text-wrap: balance;
}

.small-note {
  font-size: 14px;
  color: var(--fg-3);
  line-height: 1.55;
}

.accent { color: var(--color-cta); }

.center { display: flex; justify-content: center; }
.mt-8 { margin-top: 8px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-24 { margin-bottom: 24px; }

/* ============================================================
   Buttons
   ============================================================ */
.btn-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 28px; border-radius: var(--radius-lg);
  background: var(--grad-cta);
  color: #fff; font-weight: 700; font-size: 16px;
  box-shadow: var(--shadow-cta);
  border: none; cursor: pointer;
  font-family: inherit;
  transition: transform 180ms var(--ease-emphasized), box-shadow 180ms var(--ease-emphasized);
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-cta-hover); }

.btn-cta-sm { padding: 12px 20px; font-size: 14px; }

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 28px; border-radius: var(--radius-lg);
  background: transparent; color: var(--fg-1);
  font-weight: 600; font-size: 16px; cursor: pointer;
  border: 1px solid rgba(15,23,42,0.14);
  transition: background 180ms ease, border-color 180ms ease;
}
.btn-ghost:hover { background: var(--slate-100); border-color: rgba(15,23,42,0.2); }

/* ============================================================
   Pills
   ============================================================ */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: var(--radius-pill);
  background: var(--slate-100); color: var(--slate-700);
  font-size: 13px; font-weight: 600;
}
.pill-accent { background: var(--color-cta-soft); color: #C2410C; }
.pill .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

.pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }

/* ============================================================
   Cards
   ============================================================ */
.card {
  background: var(--bg-0);
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: var(--radius-3xl);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  transition:
    transform 200ms ease-out,
    box-shadow 200ms ease-out,
    border-color 200ms ease-out;
}
.card:not(.apply-form):hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 64px -18px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(15, 23, 42, 0.06);
  border-color: rgba(15, 23, 42, 0.12);
}

/* ============================================================
   Grid helpers
   ============================================================ */
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

@media (max-width: 960px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-5 { grid-template-columns: 1fr; }
}

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15,23,42,0.06);
  padding-top: env(safe-area-inset-top);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  min-height: 64px;
  padding-top: 12px; padding-bottom: 12px;
}
.nav-logo { display: inline-flex; align-items: center; gap: 12px; }
.nav-logo img { height: 28px; width: auto; }
.nav-logo-sub {
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  color: var(--fg-3); text-transform: uppercase;
}
.nav-links { display: inline-flex; align-items: center; gap: 22px; }
.nav-links a {
  font-size: 14px; font-weight: 600; color: var(--fg-2);
  transition: color 160ms ease, text-decoration-color 160ms ease;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
}
.nav-links a:hover { color: var(--fg-1); text-decoration-color: rgba(15, 23, 42, 0.35); }

@media (max-width: 1100px) {
  .nav-logo-sub { display: none; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 13px; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-inner { flex-wrap: wrap; }
  .nav .btn-cta-sm { margin-left: auto; }
}
@media (max-width: 480px) {
  .nav-inner { gap: 12px; }
  .nav .btn-cta-sm {
    width: 100%;
    margin-left: 0;
  }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  padding: clamp(56px, 9vw, 120px) 0 clamp(48px, 7vw, 96px);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(249,115,22,0.08), transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, var(--slate-50) 100%);
}
.hero-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(36px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--fg-1);
  margin: 0 0 28px;
  text-wrap: balance;
}
.hero-sub {
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.5;
  color: var(--fg-2);
  max-width: 780px;
  margin: 0 0 40px;
  text-wrap: pretty;
}

.hero-stats {
  display: flex; align-items: center; gap: clamp(20px, 3vw, 40px);
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--fg-1);
}
.stat-num.accent { color: var(--color-cta); }
.stat-label { font-size: 14px; color: var(--fg-3); }
.stat-divider { width: 1px; height: 44px; background: rgba(15,23,42,0.1); }

@media (max-width: 640px) {
  .stat-divider { display: none; }
  .hero-stats { gap: 24px; }
}

.hero-cta-row {
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
}

/* ============================================================
   Sections
   ============================================================ */
.section {
  padding: clamp(56px, 8vw, 96px) 0;
}
.section-alt {
  background: var(--slate-50);
  border-top: 1px solid rgba(15,23,42,0.04);
  border-bottom: 1px solid rgba(15,23,42,0.04);
}

/* ============================================================
   Card body copy
   ============================================================ */
.card-body {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg-2);
}

/* ============================================================
   Benefits (numbered)
   ============================================================ */
.benefits { margin-top: 8px; }
.benefit {
  display: flex; flex-direction: column; gap: 16px;
  padding: 16px;
  margin: -12px -12px 0;
  border-radius: var(--radius-2xl, 16px);
  transition: background 200ms ease-out, transform 200ms ease-out;
}
@media (hover: hover) and (pointer: fine) {
  .benefit:hover {
    background: rgba(15, 23, 42, 0.03);
    transform: translateY(-2px);
  }
}
.benefit-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg-1);
  margin: 0;
}
.benefit-body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0;
}

.numbadge {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--color-cta); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 800; font-size: 18px;
  box-shadow: var(--shadow-cta);
  flex-shrink: 0;
}
.numbadge-sm { width: 36px; height: 36px; font-size: 14px; }

/* ============================================================
   Economics
   ============================================================ */
.econ-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
@media (max-width: 900px) {
  .econ-grid { grid-template-columns: 1fr; }
}
.econ-example { padding: 32px; }
.label-uppercase {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--fg-3);
  margin-bottom: 12px;
}
.label-orange { color: #C2410C; }
.econ-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(22px, 2.2vw, 28px);
  letter-spacing: -0.02em;
}
.econ-rows {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 24px;
  font-size: 15px;
}
.econ-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  color: var(--fg-2);
}
.econ-row b {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 17px;
  color: var(--fg-1);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.econ-result {
  padding: 32px;
  background: linear-gradient(180deg, #FFEDD5 0%, #FFF7ED 100%);
  border-color: #FED7AA;
}
.econ-result-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding: 10px 0;
  color: #7C2D12;
  font-size: 15px;
}
.econ-result-row b {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(22px, 2.2vw, 28px);
  color: #9A3412;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.econ-divider {
  height: 1px; background: rgba(154,52,18,0.25); margin: 8px 0;
}
.econ-total-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: #9A3412;
  margin-top: 6px;
}
.econ-total {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(44px, 6vw, 72px);
  letter-spacing: -0.035em;
  color: var(--color-cta-hover);
  line-height: 1;
  margin-top: 4px;
}
.econ-total-note { font-size: 14px; color: #7C2D12; margin-top: 6px; }

.small-note.center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }

/* ============================================================
   Split layout (image + text)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.split-reverse .split-media { order: -1; }

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split-reverse .split-media { order: 0; }
}

.split-text .section-title { margin-bottom: 20px; }
.split-body {
  font-size: 16px; line-height: 1.55;
  color: var(--fg-2);
  margin: 0 0 20px;
  max-width: 540px;
}

.split-media-dual {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
  align-items: start;
}
@media (max-width: 640px) {
  .split-media-dual { grid-template-columns: 1fr 1fr; }
}

/* arrow list */
.arrow-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.arrow-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 16px; line-height: 1.5; color: var(--fg-2);
}
.arrow-list .arrow {
  color: var(--color-cta); font-weight: 800; flex-shrink: 0;
}

/* ============================================================
   Shots (browser-style screenshot frames)
   ============================================================ */
.shot {
  position: relative;
  border-radius: var(--radius-xl);
  background: #FFF;
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.shot .shot-chrome {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: var(--slate-50);
  border-bottom: 1px solid rgba(15,23,42,0.06);
}
.shot .shot-chrome .d { width: 10px; height: 10px; border-radius: 50%; background: var(--slate-200); }
.shot .shot-chrome .d:nth-child(1) { background: #FCA5A5; }
.shot .shot-chrome .d:nth-child(2) { background: #FCD34D; }
.shot .shot-chrome .d:nth-child(3) { background: #86EFAC; }
.shot img {
  width: 100%; height: auto;
  transition: transform 280ms ease-out;
}
@media (hover: hover) and (pointer: fine) {
  .shot:hover img { transform: scale(1.02); }
}

.shot .shot-chrome a.shot-url {
  margin-left: 8px;
  padding: 4px 10px;
  background: #FFF;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-pill);
  font-size: 12px;
  color: var(--color-cta);
  font-family: var(--font-mono);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}
.shot .shot-chrome a.shot-url:hover {
  border-color: var(--color-cta);
  background: rgba(249, 115, 22, 0.06);
}
.shot .shot-chrome a.shot-url:focus-visible {
  outline: none;
  border-color: var(--color-cta);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}

/* ============================================================
   Feature grid (3 shots)
   ============================================================ */
.feature-grid { margin-top: 8px; }
.feature {
  display: flex; flex-direction: column; gap: 14px;
  transition: transform 200ms ease-out;
}
@media (hover: hover) and (pointer: fine) {
  .feature:hover { transform: translateY(-3px); }
}
.feature-body {
  font-size: 15px; line-height: 1.55; color: var(--fg-2);
  margin: 0;
}
.feature-body b { color: var(--fg-1); }

/* ============================================================
   Steps (production)
   ============================================================ */
.steps {
  display: flex; flex-direction: column; gap: 18px;
  margin-top: 24px;
}
.step { display: flex; gap: 16px; align-items: flex-start; }
.step-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--fg-1);
}
.step-body { font-size: 14px; line-height: 1.55; color: var(--fg-3); margin-top: 2px; }

/* checks */
.checks {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 24px;
}
.check {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15px; line-height: 1.55; color: var(--fg-2);
}
.check b { color: var(--fg-1); }
.check-mark {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--color-success); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; flex-shrink: 0;
}

/* ============================================================
   Journey (5-step grid)
   ============================================================ */
.journey { margin-top: 8px; }
.step-card { padding: 24px; }
.step-card .numbadge { margin-bottom: 16px; }
.step-card-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--fg-1);
}
.step-card-body { font-size: 14px; color: var(--fg-3); line-height: 1.55; }

.step-card:not(.step-card-final) {
  transition:
    transform 200ms ease-out,
    box-shadow 200ms ease-out,
    border-color 200ms ease-out;
}
.step-card:not(.step-card-final):hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 56px -20px rgba(15, 23, 42, 0.2);
  border-color: rgba(15, 23, 42, 0.12);
}

.step-card-final {
  background: linear-gradient(180deg, #FFEDD5 0%, #FFF7ED 100%);
  border-color: #FED7AA;
}
.step-card-final .step-card-title { color: #9A3412; }
.step-card-final .step-card-body { color: #7C2D12; }

/* ============================================================
   Terms
   ============================================================ */
.terms-card {
  padding: 28px;
  transition:
    transform 200ms ease-out,
    box-shadow 200ms ease-out,
    border-color 200ms ease-out;
}
.terms-card:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 23, 42, 0.14);
  box-shadow: 0 22px 52px -20px rgba(15, 23, 42, 0.16);
}
.terms-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--color-cta);
  margin-bottom: 16px;
}
.terms-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 15px; color: var(--fg-2);
}
.terms-list b { color: var(--fg-1); }

.terms-footer {
  margin-top: 32px;
  font-size: 15px; color: var(--fg-3);
  line-height: 1.6;
  max-width: 820px;
}
.terms-footer b { color: var(--fg-1); }

/* ============================================================
   Apply
   ============================================================ */
.section-apply {
  background: linear-gradient(180deg, var(--slate-50) 0%, #FFFFFF 100%);
}
.apply-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}
@media (max-width: 900px) {
  .apply-grid { grid-template-columns: 1fr; }
}
.apply-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 40px;
  text-wrap: balance;
}
.contact-row {
  display: flex; gap: 16px; align-items: center;
  margin-bottom: 16px;
}
.contact-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--slate-100); color: var(--fg-1);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px; border: 1px solid rgba(15,23,42,0.08);
  flex-shrink: 0;
}
.contact-value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -0.01em;
  color: var(--fg-1);
}
a.contact-value {
  cursor: pointer;
  transition: color 160ms ease;
}
a.contact-value:hover {
  color: var(--color-cta);
}

.apply-form { padding: 32px; }
.form-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--fg-1);
  margin-bottom: 6px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 520px) {
  .form-grid { grid-template-columns: 1fr; }
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field-full { grid-column: 1 / -1; }
.field label {
  font-size: 11px; font-weight: 700; color: var(--fg-3);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 15px; color: var(--fg-1);
  padding: 12px 14px; border-radius: var(--radius-sm);
  background: var(--bg-0);
  border: 1px solid rgba(15,23,42,0.12);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--color-cta);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.15);
}
.field textarea {
  min-height: 120px;
  resize: vertical;
}
.field-hint {
  font-size: 12px;
  color: var(--fg-3);
}
.form-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}
.form-feedback {
  display: none;
  padding: 14px 16px;
  border-radius: var(--radius-lg);
  font-size: 14px;
  line-height: 1.5;
}
.form-feedback.is-visible {
  display: block;
}
.form-feedback.is-success {
  background: rgba(34,197,94,0.12);
  color: #166534;
  border: 1px solid rgba(34,197,94,0.28);
}
.form-feedback.is-error {
  background: rgba(239,68,68,0.12);
  color: #991B1B;
  border: 1px solid rgba(239,68,68,0.24);
}
.apply-submit {
  width: 100%;
  padding: 18px 28px;
  font-size: 16px;
}
.apply-submit[disabled] {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  padding: 32px 0;
  border-top: 1px solid rgba(15,23,42,0.08);
  background: #FFFFFF;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; flex-wrap: wrap;
  font-size: 14px; color: var(--fg-3);
}
.footer-brand { display: inline-flex; align-items: center; gap: 14px; }
.footer-brand img { height: 24px; width: auto; }
.footer-contacts { display: inline-flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.footer-contacts a {
  text-decoration: underline;
  text-decoration-color: rgba(15, 23, 42, 0.25);
  text-underline-offset: 3px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}
.footer-contacts a:hover {
  color: var(--color-cta);
  text-decoration-color: rgba(249, 115, 22, 0.5);
}

.hero-cross {
  margin: 0 0 8px;
  max-width: 780px;
}
.hero-cross a {
  text-decoration: underline;
  text-decoration-color: rgba(15, 23, 42, 0.28);
  text-underline-offset: 3px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}
.hero-cross a:hover {
  color: var(--color-cta);
  text-decoration-color: rgba(249, 115, 22, 0.55);
}

.inline-cross a {
  text-decoration: underline;
  text-decoration-color: rgba(15, 23, 42, 0.28);
  text-underline-offset: 3px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}
.inline-cross a:hover {
  color: var(--color-cta);
  text-decoration-color: rgba(249, 115, 22, 0.55);
}

@media (max-width: 640px) {
  .hero,
  .section,
  .section-apply {
    padding-top: max(clamp(52px, 7.5vw, 92px), calc(env(safe-area-inset-top) + 36px));
    padding-bottom: max(clamp(52px, 7.5vw, 92px), 48px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .card:not(.apply-form),
  .step-card:not(.step-card-final),
  .terms-card,
  .benefit,
  .feature,
  .layer,
  .market-card,
  .traction-stat,
  .team-card {
    transition: none !important;
  }
  .card:not(.apply-form):hover,
  .step-card:not(.step-card-final):hover,
  .terms-card:hover,
  .benefit:hover,
  .feature:hover,
  .layer:hover,
  .market-card:hover,
  .traction-stat:hover,
  .team-card:hover {
    transform: none !important;
  }
  .shot img { transition: none !important; }
  .shot:hover img { transform: none !important; }
  .btn-cta:hover { transform: none; }
}
