/* ======================================================================
   AUTHORS SECTION (2 columns)
   ====================================================================== */
.section--author {
  background: #FFFFFF;
  border-top: 1px solid oklch(0.92 0.005 260);
}
.authors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 16px;
}
@media (max-width: 900px) {
  .authors-grid { grid-template-columns: 1fr; gap: 28px; }
}
.author-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.author-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.author-photo {
  position: relative;
  aspect-ratio: 1 / 1;
  background: oklch(0.97 0 0);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid oklch(0.92 0.005 260);
}
.author-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #FFFFFF;
}
.author-photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  border-style: dashed;
  border-color: oklch(0.84 0.008 260);
}
.author-photo__hint {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: oklch(0.55 0.012 260);
}

.author-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 2.8vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: oklch(0.18 0.02 260);
  margin: 0 0 6px;
}
.author-role {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: oklch(0.46 0.26 262);
  margin: 0 0 20px;
  letter-spacing: -0.005em;
}
.author-role em { color: oklch(0.46 0.26 262); font-style: italic; font-weight: 600; }

.author-regalia {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}
.author-regalia li {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: oklch(0.30 0.02 260);
  padding-left: 18px;
  position: relative;
}
.author-regalia li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: oklch(0.55 0.24 264);
  transform: rotate(45deg);
}
.author-regalia strong { color: oklch(0.18 0.02 260); font-weight: 700; }

.author-tg {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding: 14px 22px;
  align-self: flex-start;
  border: 1.5px solid oklch(0.84 0.008 260);
  border-radius: 999px;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: oklch(0.18 0.02 260);
  transition: border-color 140ms ease, background-color 140ms ease, color 140ms ease;
}
.author-tg:hover {
  border-color: oklch(0.55 0.24 264);
  background: oklch(0.55 0.24 264);
  color: #FFFFFF;
}
.author-tg__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: oklch(0.55 0.24 264);
  transition: color 140ms ease;
}
.author-tg:hover .author-tg__icon { color: #FFFFFF; }
.author-tg__text strong { font-weight: 700; }
.author-tg__arrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  transition: transform 160ms ease;
}
.author-tg:hover .author-tg__arrow { transform: translateX(3px); }

/* ======================================================================
   «Заставь ИИ работать» — лендинг
   Палитра: чистый белый + electric blue. OKLCH.
   Typography: Manrope (display + body) + JetBrains Mono (numbers).
   ====================================================================== */

/* ======================================================================
   PURCHASE MODAL
   ====================================================================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 200ms ease;
}
.modal.is-open { opacity: 1; pointer-events: auto; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: oklch(0.16 0.02 260 / 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.modal__dialog {
  position: relative;
  background: #FFFFFF;
  border: 1px solid oklch(0.92 0.005 260);
  width: 100%;
  max-width: 520px;
  max-height: calc(100dvh - 16px);
  overflow-y: auto;
  border-radius: 20px 20px 0 0;
  padding: 32px 28px 28px;
  box-shadow: 0 -16px 48px -8px oklch(0 0 0 / 0.18);
  transform: translateY(24px);
  transition: transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.modal.is-open .modal__dialog { transform: translateY(0); }
@media (min-width: 720px) {
  .modal { align-items: center; }
  .modal__dialog {
    border-radius: 16px;
    padding: 40px 40px 32px;
    max-height: calc(100vh - 64px);
    transform: scale(0.97) translateY(8px);
  }
  .modal.is-open .modal__dialog { transform: scale(1) translateY(0); }
}
.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  background: oklch(0.97 0 0);
  color: oklch(0.30 0.02 260);
  font-size: 22px;
  line-height: 1;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 120ms ease, color 120ms ease;
}
.modal__close:hover { background: oklch(0.94 0.018 260); color: oklch(0.18 0.02 260); }
.modal__close:focus-visible {
  outline: 2px solid oklch(0.55 0.24 264);
  outline-offset: 2px;
}

.modal__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: oklch(0.46 0.26 262);
  font-weight: 500;
  margin: 0 0 12px;
}
.modal__eyebrow-mark {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: oklch(0.55 0.24 264);
  transform: rotate(45deg);
}
.modal__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: oklch(0.18 0.02 260);
  margin: 0 0 20px;
}

.modal__summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  background: oklch(0.97 0 0);
  border-radius: 12px;
  margin-bottom: 24px;
}
.modal__summary-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: oklch(0.30 0.02 260);
}
.modal__summary-price {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: oklch(0.18 0.02 260);
}

.buy-form { display: flex; flex-direction: column; gap: 16px; }
.buy-field { display: flex; flex-direction: column; gap: 6px; }
.buy-field label {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: oklch(0.30 0.02 260);
  letter-spacing: 0.01em;
}
.buy-field input {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  color: oklch(0.18 0.02 260);
  background: #FFFFFF;
  border: 1.5px solid oklch(0.88 0.008 260);
  border-radius: 10px;
  padding: 13px 16px;
  transition: border-color 120ms ease, box-shadow 120ms ease;
  width: 100%;
}
.buy-field input::placeholder { color: oklch(0.65 0.012 260); font-weight: 400; }
.buy-field input:hover { border-color: oklch(0.78 0.015 260); }
.buy-field input:focus {
  outline: none;
  border-color: oklch(0.55 0.24 264);
  box-shadow: 0 0 0 3px oklch(0.55 0.24 264 / 0.15);
}

.buy-methods {
  border: 0;
  padding: 0;
  margin: 8px 0 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.buy-methods legend {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: oklch(0.30 0.02 260);
  margin: 0 0 8px;
  padding: 0;
}
.pay-method {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1.5px solid oklch(0.88 0.008 260);
  border-radius: 10px;
  cursor: pointer;
  background: #FFFFFF;
  transition: border-color 140ms ease, background-color 140ms ease;
}
.pay-method:hover { border-color: oklch(0.78 0.015 260); }
.pay-method input {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid oklch(0.78 0.015 260);
  border-radius: 999px;
  margin: 0;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  transition: border-color 120ms ease;
}
.pay-method input:checked {
  border-color: oklch(0.55 0.24 264);
  border-width: 5px;
}
.pay-method:has(input:checked) {
  border-color: oklch(0.55 0.24 264);
  background: oklch(0.55 0.24 264 / 0.04);
}
.pay-method__inner {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.pay-method__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: oklch(0.18 0.02 260);
}
.pay-method__sub {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  color: oklch(0.50 0.012 260);
}

.buy-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  color: oklch(0.40 0.012 260);
  line-height: 1.45;
  margin-top: 4px;
  cursor: pointer;
}
.buy-consent input {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: oklch(0.55 0.24 264);
  width: 16px;
  height: 16px;
}
.buy-consent a { color: oklch(0.46 0.26 262); text-decoration: underline; }

.buy-form .btn { margin-top: 8px; }

.buy-secure {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  color: oklch(0.55 0.012 260);
  text-align: center;
  margin: 4px 0 0;
  line-height: 1.5;
}

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


:root {
  /* Surfaces */
  --bg-page:        #FFFFFF;
  --bg-soft:        oklch(0.98 0 0);
  --bg-band:        oklch(0.97 0 0);
  --bg-inverse:     oklch(0.16 0.02 260);

  /* Text */
  --text-strong:    oklch(0.18 0.02 260);
  --text-default:   oklch(0.30 0.02 260);
  --text-muted:     oklch(0.55 0.01 260);
  --text-on-dark:   oklch(0.98 0 0);
  --text-muted-on-dark: oklch(0.72 0.02 260);

  /* Accent — electric blue */
  --accent:         oklch(0.55 0.24 264);
  --accent-strong:  oklch(0.46 0.26 262);
  --accent-soft:    oklch(0.95 0.05 260);

  /* Borders */
  --border:         oklch(0.92 0.005 260);
  --border-strong:  oklch(0.84 0.008 260);

  /* Type */
  --font-display: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body:    'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono:    'JetBrains Mono', 'Menlo', 'Consolas', monospace;

  /* Container */
  --container-max:        1180px;
  --container-narrow-max: 820px;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  /* Disable decorative transforms that aren't transitions */
  .price-card--featured,
  .price-card--featured:hover,
  .agent-tile:hover,
  .price-card:hover,
  .program-list li:hover,
  .role-grid li:hover,
  .takeaway-list li:hover {
    transform: none !important;
  }
}
body {
  margin: 0;
  background: var(--bg-page);
  color: var(--text-default);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
section[id] { scroll-margin-top: 96px; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { padding-left: 0; margin: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
em { font-style: italic; color: var(--accent); font-weight: 600; }

/* ----- Container ----- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}
.container--narrow { max-width: var(--container-narrow-max); }
@media (max-width: 480px) {
  .container { padding-left: 20px; padding-right: 20px; }
}

/* ----- Section base ----- */
.section {
  padding-top: 96px;
  padding-bottom: 96px;
}
@media (max-width: 1024px) { .section { padding-top: 80px; padding-bottom: 80px; } }
@media (max-width: 600px)  { .section { padding-top: 56px; padding-bottom: 56px; } }

/* ----- Typography ----- */
.display {
  font-family: var(--font-display);
  color: var(--text-strong);
  font-weight: 800;
  font-size: clamp(56px, 8vw, 128px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin: 0 0 32px;
}
.display em {
  font-style: italic;
  font-weight: 800;
  color: var(--accent);
}

.h-section {
  font-family: var(--font-display);
  color: var(--text-strong);
  font-weight: 800;
  font-size: clamp(32px, 4.6vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.028em;
  margin: 0 0 20px;
  max-width: 22ch;
  text-wrap: balance;
}
.h-section em { color: var(--accent); font-weight: 800; font-style: italic; }

.h-block {
  font-family: var(--font-display);
  color: var(--text-strong);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.012em;
  margin: 0 0 10px;
}

.h-final {
  font-family: var(--font-display);
  color: var(--text-on-dark);
  font-weight: 700;
  font-size: clamp(32px, 4.6vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 auto 36px;
  max-width: 22ch;
  text-align: center;
  text-wrap: balance;
}

.lede {
  font-size: clamp(18px, 1.4vw, 21px);
  line-height: 1.5;
  color: var(--text-default);
  max-width: 56ch;
  margin: 0 0 40px;
}
.section-lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 56ch;
  margin: 0 0 48px;
}
.examples-foot {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.018em;
  color: var(--text-strong);
  text-align: center;
  margin: 64px auto 0;
  max-width: 28ch;
}
.examples-foot strong {
  color: var(--accent);
  font-weight: 800;
  font-style: italic;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 500;
  margin: 0 0 18px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--accent);
  flex-shrink: 0;
  transform: rotate(45deg);
}

/* ----- Meta line ----- */
.meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  margin: 0 0 36px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.meta__chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: var(--bg-band);
  border: 1px solid var(--border);
  color: var(--text-default);
  font-weight: 500;
  border-radius: 999px;
}
.meta__chip--muted { background: transparent; color: var(--text-muted); border-style: dashed; }
.meta .dot { opacity: 0.5; }
.meta__muted { color: var(--text-muted); opacity: 0.7; }

/* ----- Section index — sharp blue rail before each section heading ----- */
.section-index {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 28px;
  font-weight: 500;
}
.section-index__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 22px;
  padding: 0 7px;
  background: var(--accent);
  color: #FFFFFF;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 3px;
}
.section-index__line {
  flex-shrink: 0;
  width: 36px;
  height: 1px;
  background: var(--border-strong);
}
.section-index__label { color: var(--text-default); font-weight: 500; }
.section-index--invert .section-index__num { background: #FFFFFF; color: var(--accent-strong); }
.section-index--invert .section-index__line { background: oklch(1 0 0 / 0.28); }
.section-index--invert .section-index__label,
.section-index--invert { color: oklch(1 0 0 / 0.78); }
.section-index--on-dark .section-index__num { background: var(--accent); color: #FFFFFF; }
.section-index--on-dark .section-index__line { background: oklch(1 0 0 / 0.22); }
.section-index--on-dark,
.section-index--on-dark .section-index__label { color: oklch(1 0 0 / 0.72); }

/* ----- Number marks ----- */
.num-mark {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.04em;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background-color 120ms ease, color 120ms ease, border-color 120ms ease, transform 60ms ease;
  border: 1.5px solid transparent;
  text-align: center;
  white-space: nowrap;
}
.btn--lg { font-size: 17px; padding: 18px 32px; }
.btn--sm { font-size: 14px; padding: 9px 16px; }
.btn--block { display: flex; width: 100%; padding: 15px 20px; font-size: 15px; }

.btn--accent {
  background: var(--accent);
  color: #FFFFFF;
  border-color: var(--accent);
}
.btn--accent:hover { background: var(--accent-strong); border-color: var(--accent-strong); }
.btn--accent:active { transform: translateY(1px); }

.btn--outline {
  background: transparent;
  color: var(--text-strong);
  border-color: var(--border-strong);
}
.btn--outline:hover { background: var(--bg-band); border-color: var(--text-strong); }

.btn:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.btn:focus-visible { border-radius: var(--radius-sm); }

/* ----- CTA row ----- */
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-row--center { justify-content: center; }
@media (max-width: 480px) {
  .cta-row .btn--lg { flex: 1 1 100%; padding: 16px 22px; font-size: 16px; }
}

/* ----- Webinar countdown ----- */
.countdown {
  width: min(100%, 760px);
  margin: 36px 0 0;
  padding: 18px;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(135deg, oklch(0.55 0.24 264 / 0.08), transparent 42%),
    #FFFFFF;
  box-shadow: 0 18px 48px -36px oklch(0.18 0.02 260 / 0.36);
  transition: transform 180ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 180ms ease, box-shadow 180ms ease;
}
.countdown:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 24px 58px -34px oklch(0.46 0.26 262 / 0.42);
}
.countdown__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.countdown__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 500;
}
.countdown__eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--accent);
  transform: rotate(45deg);
}
.countdown__date {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.countdown__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.countdown__unit {
  position: relative;
  overflow: hidden;
  min-height: 92px;
  padding: 14px 12px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-page);
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}
.countdown__unit::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -28px;
  width: 72px;
  height: 72px;
  border: 1px solid oklch(0.55 0.24 264 / 0.18);
  transform: rotate(45deg);
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 160ms ease;
}
.countdown__unit:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  background: #FFFFFF;
}
.countdown__unit:hover::after {
  border-color: oklch(0.55 0.24 264 / 0.38);
  transform: rotate(135deg) scale(1.04);
}
.countdown__value {
  display: block;
  position: relative;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  font-weight: 500;
  color: var(--text-strong);
  letter-spacing: -0.04em;
}
.countdown__cta-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed var(--border-strong);
  flex-wrap: wrap;
}
.countdown__cta {
  flex: 0 0 auto;
}
.countdown__cta-note {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  line-height: 1.45;
  flex: 1 1 200px;
}
@media (max-width: 640px) {
  .countdown__cta-row { gap: 12px; }
  .countdown__cta { width: 100%; justify-content: center; }
  .countdown__cta-note { text-align: center; }
}
.countdown__label {
  display: block;
  position: relative;
  z-index: 1;
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.2;
  color: var(--text-muted);
}
@media (max-width: 640px) {
  .countdown { margin-top: 28px; padding: 14px; }
  .countdown__header { display: block; margin-bottom: 12px; }
  .countdown__date { display: block; margin-top: 8px; white-space: normal; }
  .countdown__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .countdown__unit { min-height: 82px; }
}

/* ======================================================================
   PAGE RAIL — sharp blue line at the very top of the page
   ====================================================================== */
.page-rail {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  z-index: 60;
  pointer-events: none;
}

/* ======================================================================
   TOPBAR
   ====================================================================== */
.topbar {
  position: sticky;
  top: 3px;
  z-index: 50;
  background: oklch(1 0 0 / 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  color: var(--text-strong);
  letter-spacing: -0.018em;
}
.brand__mark {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: var(--accent);
  flex-shrink: 0;
  transform: rotate(45deg);
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.brand:hover .brand__mark { transform: rotate(135deg); }
.brand__name em { color: var(--accent); font-weight: 800; font-style: italic; }
.topbar__meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-left: 18px;
  border-left: 1px solid var(--border-strong);
  margin-left: 4px;
}
.topbar__nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
  margin-right: 20px;
}
.topbar__nav a {
  font-size: 15px;
  color: var(--text-default);
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: color 140ms ease;
  position: relative;
}
.topbar__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 2px;
  background: var(--accent);
  transition: right 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.topbar__nav a:hover { color: var(--accent); }
.topbar__nav a:hover::after { right: 0; }
@media (max-width: 960px) {
  .topbar__meta { display: none; }
}
@media (max-width: 760px) {
  .topbar__nav { display: none; }
  .topbar__inner { gap: 12px; }
}

/* ======================================================================
   1. HERO
   ====================================================================== */
.section--hero {
  padding-top: 64px;
  padding-bottom: 96px;
  position: relative;
  overflow: hidden;
}
.section--hero::before {
  content: "→";
  position: absolute;
  right: -3vw;
  top: 50%;
  transform: translateY(-40%);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(280px, 36vw, 540px);
  line-height: 1;
  color: var(--accent-soft);
  pointer-events: none;
  z-index: 0;
  letter-spacing: -0.04em;
}
.section--hero .container { position: relative; z-index: 1; }
@media (max-width: 600px) {
  .section--hero { padding-top: 40px; padding-bottom: 64px; }
  .section--hero::before { font-size: 240px; right: -8vw; top: auto; bottom: -8vw; transform: none; opacity: 0.6; }
}

/* Sharp corner brackets in hero — decorative anchors */
.corner {
  position: absolute;
  width: 56px;
  height: 56px;
  z-index: 2;
  pointer-events: none;
}
.corner--tl {
  top: 40px;
  left: 28px;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
}
.corner--br {
  bottom: 40px;
  right: 28px;
  border-bottom: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
}
@media (max-width: 1024px) {
  .corner { width: 44px; height: 44px; }
}
@media (max-width: 600px) {
  .corner { width: 28px; height: 28px; }
  .corner--tl { top: 20px; left: 16px; }
  .corner--br { bottom: 20px; right: 16px; }
}

/* Display H1 — split-line with star marker */
.display { display: block; }
.display__accent {
  display: inline-block;
  position: relative;
  color: var(--accent);
  font-style: italic;
}
.display__star {
  display: inline-block;
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 500;
  font-size: 0.42em;
  color: var(--accent);
  margin-left: 0.08em;
  transform: translateY(-0.9em);
}

/* Hero footer line — decorative typographic detail */
.hero-foot {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 56px 0 0;
  padding: 0;
}
.hero-foot__bar {
  flex-shrink: 0;
  width: 56px;
  height: 2px;
  background: var(--accent);
}
.hero-foot__text {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
@media (max-width: 600px) {
  .hero-foot { margin-top: 40px; }
  .hero-foot__bar { width: 36px; }
}

/* Button arrow micro-interaction */
.btn__arrow {
  display: inline-block;
  margin-left: 2px;
  transition: transform 200ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ======================================================================
   3. THREE AGENTS
   ====================================================================== */
.section--agents { background: var(--bg-page); }
.agents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}
@media (max-width: 920px) { .agents-grid { grid-template-columns: 1fr; } }
.agent-tile {
  background: var(--bg-page);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 40px 32px 42px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background-color 240ms ease, border-color 240ms ease, color 240ms ease, transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.agent-tile::before {
  content: attr(data-bignum);
  position: absolute;
  right: 24px;
  top: 18px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 96px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--accent-soft);
  pointer-events: none;
  transition: color 200ms ease;
}
.agent-tile:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text-on-dark);
  transform: translateY(-3px);
}
.agent-tile:hover::before { color: oklch(0.65 0.20 264); }
.agent-tile:hover .num-mark { color: oklch(0.94 0.02 260); }
.agent-tile:hover .h-block,
.agent-tile:hover p { color: var(--text-on-dark); }
.agent-tile p strong { color: var(--accent); font-weight: 700; transition: color 200ms ease; }
.agent-tile:hover p strong { color: #FFFFFF; }
.agent-tile .num-mark { margin-bottom: 28px; position: relative; z-index: 1; }
.agent-tile .h-block { position: relative; z-index: 1; transition: color 200ms ease; }
.agent-tile p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-default);
  position: relative;
  z-index: 1;
  transition: color 200ms ease;
}

/* ======================================================================
   4. EXAMPLES (tabs + grid)
   ====================================================================== */
.section--examples,
.section--result { background: var(--bg-page); border-top: 1px solid var(--border); }
.tabs {
  display: inline-flex;
  gap: 0;
  background: var(--bg-page);
  padding: 0;
  border-radius: 0;
  margin: 0 0 36px;
  border: 1px solid var(--border-strong);
  overflow: hidden;
}
.tab {
  background: var(--bg-page);
  border: 0;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--text-muted);
  border-radius: 0;
  transition: background-color 160ms ease, color 160ms ease;
  font-family: var(--font-body);
  position: relative;
}
.tab + .tab { border-left: 1px solid var(--border-strong); }
.tab:hover { color: var(--text-strong); background: var(--bg-band); }
.tab:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
  z-index: 1;
  position: relative;
}
.tab.is-active {
  background: var(--accent);
  color: #FFFFFF;
}
.tab-panel { display: none; }
.tab-panel.is-active { display: block; }
.tab-panel[hidden] { display: none; }

.examples-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.examples-grid li {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 30px 26px 32px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-page);
  transition: background-color 220ms ease, color 220ms ease;
  cursor: default;
  position: relative;
  isolation: isolate;
}
.examples-grid li::after {
  content: "↗";
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--accent);
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity 220ms ease, transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.examples-grid li:hover {
  background: var(--accent);
  color: var(--text-on-dark);
  z-index: 1;
}
.examples-grid li:hover::after {
  opacity: 1;
  color: #FFFFFF;
  transform: translate(0, 0);
}
.examples-grid li:hover .ex-name { color: var(--text-on-dark); }
.examples-grid li:hover .ex-desc { color: oklch(0.95 0.02 260); }
.examples-grid li:hover .ex-desc strong { color: #FFFFFF; }
.ex-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--text-strong);
  letter-spacing: -0.012em;
  transition: color 200ms ease;
}
.ex-desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-default);
  font-weight: 400;
  transition: color 200ms ease;
}
.ex-desc strong {
  color: var(--accent);
  font-weight: 700;
  font-style: normal;
}
@media (max-width: 1024px) { .examples-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .examples-grid { grid-template-columns: 1fr; } }

/* ======================================================================
   5. PROGRAM
   ====================================================================== */
.section--program {
  background: var(--bg-page);
  border-top: 1px solid var(--border);
}
.program-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
  margin-top: 16px;
  max-width: 820px;
}
.program-list li {
  display: flex;
  gap: 32px;
  padding: 32px 16px;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: background-color 220ms ease, transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.program-list li:hover {
  background: var(--bg-band);
}
.program-list li:hover .num-mark {
  color: var(--accent-strong);
  transform: translateX(4px);
}
.program-list .num-mark {
  flex: 0 0 64px;
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 0.9;
  padding-top: 0;
  transition: color 220ms ease, transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.program-list .h-block { margin-bottom: 8px; font-size: 24px; }
.program-list p {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-default);
  max-width: 62ch;
}
.program-list p strong { color: var(--accent); font-weight: 700; }
@media (max-width: 600px) {
  .program-list li { gap: 18px; padding: 24px 0; }
  .program-list .num-mark { flex-basis: 40px; font-size: 36px; }
  .program-list .h-block { font-size: 20px; }
}

/* ======================================================================
   6. PRICING
   ====================================================================== */
.section--pricing { background: var(--bg-page); border-top: 1px solid var(--border); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 12px;
  align-items: stretch;
}
@media (max-width: 920px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card {
  background: var(--bg-page);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 36px 30px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 200ms ease, transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.price-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.price-card--featured {
  background: var(--accent);
  border-color: var(--accent);
  border-width: 1px;
  color: #FFFFFF;
  transform: translateY(-8px);
  z-index: 1;
}
.price-card--featured:hover {
  transform: translateY(-12px);
  border-color: var(--accent);
}
.price-card--featured::after {
  content: "★";
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 18px;
  color: oklch(1 0 0 / 0.5);
  font-family: var(--font-display);
  pointer-events: none;
}
@media (max-width: 920px) {
  .price-card--featured { transform: none; }
  .price-card--featured:hover { transform: translateY(-2px); }
}
.price-card--featured .price-card__name { color: oklch(0.94 0.02 260); }
.price-card--featured .price-card__price { color: #FFFFFF; }
.price-card--featured .price-card__price .rub { color: oklch(0.85 0.04 260); opacity: 1; }
.price-card--featured .price-card__list { color: #FFFFFF; }
.price-card--featured .price-card__list li::before { background: #FFFFFF; }
.price-card--featured .btn--accent {
  background: #FFFFFF;
  color: var(--accent-strong);
  border-color: #FFFFFF;
}
.price-card--featured .btn--accent:hover { background: oklch(0.94 0.02 260); border-color: oklch(0.94 0.02 260); }
.price-card--featured .price-card__badge {
  background: #FFFFFF;
  color: var(--accent-strong);
}
.price-card__badge {
  position: absolute;
  top: -13px;
  left: 28px;
  background: var(--accent);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}
.price-card__name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted);
  margin: 0 0 12px;
  letter-spacing: -0.005em;
}
.price-card__price {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: var(--text-strong);
  margin: 0 0 28px;
  letter-spacing: -0.025em;
}
.price-card__price .rub { font-weight: 600; opacity: 0.5; }
.marquee {
  display: block;
  position: relative;
  overflow: hidden;
  padding: 12px 0;
  background: linear-gradient(90deg, var(--accent-soft) 0%, #FFFFFF 50%, var(--accent-soft) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--text-strong);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.marquee__track {
  display: flex;
  flex-wrap: nowrap;
  gap: 48px;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-strong);
  white-space: nowrap;
}
.marquee__arrow {
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
  transform: translateY(-1px);
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.marquee:hover .marquee__arrow { transform: translate(3px, -1px); }
.marquee__sep {
  color: var(--accent);
  opacity: 0.5;
  font-weight: 700;
}
@keyframes marquee-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}
@media (max-width: 640px) {
  .marquee { padding: 10px 0; }
  .marquee__item { font-size: 12px; gap: 10px; }
  .marquee__track { gap: 32px; animation-duration: 22s; }
}
.price-card__deal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
  width: 100%;
  flex-wrap: wrap;
}
.price-card__old {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  text-decoration-color: currentColor;
  opacity: 0.7;
}
.price-card__early {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
  background: oklch(0.78 0.16 75);
  color: #1a1208;
  white-space: nowrap;
  line-height: 1.4;
}
.price-card--featured .price-card__old { color: oklch(0.88 0.03 260); opacity: 0.85; }
.price-card__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-default);
}
.price-card__list li {
  padding-left: 22px;
  position: relative;
}
.price-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  transform: rotate(45deg);
}

/* ======================================================================
   FOR WHOM
   ====================================================================== */
.section--for-whom { background: var(--bg-band); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.role-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  background: var(--bg-page);
  margin-top: 16px;
}
.role-grid li {
  padding: 28px 26px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-strong);
  letter-spacing: -0.014em;
  transition: background-color 200ms ease, color 200ms ease, padding-left 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
}
.role-grid li:hover {
  padding-left: 32px;
  background: var(--accent);
  color: #FFFFFF;
}
.role-grid li:hover::after {
  content: "→";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 18px;
  color: #FFFFFF;
}
@media (max-width: 900px) { .role-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .role-grid { grid-template-columns: 1fr; } }

/* ======================================================================
   TAKEAWAY — inverted dark band, breaks the white rhythm
   ====================================================================== */
.section--takeaway {
  background: var(--bg-inverse);
  color: var(--text-on-dark);
  border-top: 1px solid oklch(1 0 0 / 0.08);
  position: relative;
  overflow: hidden;
}
.section--takeaway .h-section {
  color: var(--text-on-dark);
  max-width: 24ch;
}
.section--takeaway .h-section em {
  color: var(--accent);
}
.takeaway-bg {
  position: absolute;
  right: -2vw;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(180px, 22vw, 320px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: oklch(1 0 0 / 0.04);
  pointer-events: none;
  z-index: 0;
  text-align: right;
  text-transform: uppercase;
}
.section--takeaway .container { position: relative; z-index: 1; }
.takeaway-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid oklch(1 0 0 / 0.14);
  margin-top: 16px;
  max-width: 820px;
}
.takeaway-list li {
  display: flex;
  gap: 32px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid oklch(1 0 0 / 0.10);
  transition: padding-left 220ms cubic-bezier(0.2, 0.8, 0.2, 1), background-color 220ms ease;
}
.takeaway-list li:hover {
  padding-left: 12px;
  background: oklch(1 0 0 / 0.02);
}
.takeaway-list .num-mark {
  flex: 0 0 56px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  color: var(--accent);
  letter-spacing: -0.03em;
  padding-top: 0;
  line-height: 1;
}
.takeaway-list p {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.012em;
  color: var(--text-on-dark);
  line-height: 1.3;
}
@media (max-width: 600px) {
  .takeaway-list li { gap: 14px; padding: 20px 0; }
  .takeaway-list .num-mark { flex-basis: 36px; }
  .takeaway-list p { font-size: 18px; }
  .takeaway-bg { font-size: 160px; right: -8vw; opacity: 0.7; }
}

/* ======================================================================
   7. FAQ
   ====================================================================== */
.section--faq { background: var(--bg-band); border-top: 1px solid var(--border); }
.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
  margin-top: 16px;
}
.faq { border-bottom: 1px solid var(--border); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--text-strong);
  letter-spacing: -0.012em;
}
.faq summary::-webkit-details-marker,
.faq summary::marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--accent);
  font-weight: 400;
  margin-left: 16px;
  flex-shrink: 0;
  transition: transform 200ms ease;
}
.faq[open] summary { color: var(--accent); }
.faq[open] summary::after { content: "−"; transform: rotate(180deg); }
.faq summary:hover { color: var(--accent); }
.faq__a {
  padding: 0 0 22px;
  max-width: 70ch;
}
.faq__a p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-default);
}
.faq__a p + p,
.faq__a p + ul,
.faq__a ul + p { margin-top: 10px; }
.faq__a ul {
  margin: 0;
  padding-left: 20px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-default);
}
.faq__a ul li { margin: 4px 0; }
.faq__a ul li::marker { color: var(--accent); }

/* ======================================================================
   8. FINAL CTA
   ====================================================================== */
.section--final {
  background: var(--bg-inverse);
  color: var(--text-on-dark);
  text-align: center;
  padding-top: 112px;
  padding-bottom: 112px;
  position: relative;
  overflow: hidden;
}
.section--final .container { position: relative; z-index: 1; }
.section--final .section-index {
  justify-content: center;
}
.final-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(360px, 60vw, 900px);
  line-height: 0.8;
  color: oklch(1 0 0 / 0.035);
  pointer-events: none;
  z-index: 0;
  letter-spacing: -0.04em;
  user-select: none;
}
@media (max-width: 600px) { .section--final { padding-top: 72px; padding-bottom: 72px; } }
.section--final .btn--outline {
  color: var(--text-on-dark);
  border-color: oklch(0.40 0.02 260);
}
.section--final .btn--outline:hover {
  background: oklch(0.24 0.02 260);
  border-color: var(--text-on-dark);
}
.section--final .btn--accent:hover .btn__arrow { transform: translateX(6px); }

/* ======================================================================
   FOOTER
   ====================================================================== */
.footer {
  background: var(--bg-page);
  border-top: 1px solid var(--border);
  padding: 36px 0 44px;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 1px;
  background: linear-gradient(to right, var(--accent) 0, var(--accent) 80px, transparent 80px);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  margin: 0;
  color: var(--text-strong);
  letter-spacing: -0.018em;
}
.footer__brand em { color: var(--accent); font-weight: 800; font-style: italic; }
.footer__meta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
}
.footer__legal {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  margin: 12px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.footer__legal a { color: var(--text-muted); text-decoration: underline; text-underline-offset: 3px; }
.footer__legal a:hover { color: var(--accent); }
.footer__legal--muted { opacity: 0.7; text-transform: none; letter-spacing: 0.02em; }
