/* ============================================================
   ЛСТК Краснодар · Инвестиционный отчёт
   Палитра: графит / теплый светлый / стальной teal / orange
   ============================================================ */

:root {
  /* Surfaces — warm light */
  --bg:           #F4F1EA;
  --bg-alt:       #ECE7DD;
  --surface:      #FAF8F3;
  --surface-2:    #FFFFFF;
  --border:       #D9D2C3;
  --border-soft:  #E5DFD0;

  /* Text — graphite */
  --ink:          #1B2A33;     /* near-black with cool */
  --ink-2:        #29363D;
  --muted:        #6A6F73;
  --faint:        #9CA0A3;

  /* Brand — steel teal + orange accent */
  --primary:      #1F6470;     /* steel teal */
  --primary-2:    #154A53;
  --primary-soft: #D7E5E7;
  --accent:       #E76A2C;     /* careful orange */
  --accent-2:     #C7521A;

  /* Semantic */
  --ok:           #2F7A4A;
  --warn:         #C0782D;
  --err:          #B23A48;

  /* Charts */
  --c1: #1F6470;
  --c2: #E76A2C;
  --c3: #3F8A98;
  --c4: #6E522B;
  --c5: #8C9CA1;

  /* Type */
  --f-display: 'Satoshi', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --f-body:    'General Sans', 'Satoshi', system-ui, sans-serif;
  --f-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* Layout */
  --container: 1200px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 0 rgba(20,30,38,.04), 0 1px 2px rgba(20,30,38,.06);
  --shadow:    0 1px 0 rgba(20,30,38,.04), 0 12px 24px -12px rgba(20,30,38,.16);
  --shadow-lg: 0 1px 0 rgba(20,30,38,.04), 0 30px 60px -28px rgba(20,30,38,.28);

  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  font-feature-settings: "ss01","ss02","cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-2); }
strong { font-weight: 600; color: var(--ink); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ============ Scroll progress ============ */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 100; transition: width .12s linear;
}

/* ============ Topbar ============ */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244, 241, 234, 0.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.topbar.is-scrolled { border-bottom-color: var(--border); background: rgba(244, 241, 234, 0.92); }
.topbar__inner {
  max-width: var(--container); margin: 0 auto; padding: 12px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.brand__logo { width: 32px; height: 32px; color: var(--ink); flex-shrink: 0; }
.brand__name { display: block; font-family: var(--f-display); font-weight: 700; font-size: 15px; letter-spacing: -0.01em; }
.brand__sub { display: block; font-size: 11.5px; color: var(--muted); margin-top: 1px; }
.topnav { display: flex; gap: 4px; flex-wrap: wrap; }
.topnav a {
  font-size: 13.5px; color: var(--muted); padding: 7px 12px; border-radius: 8px;
  transition: color .15s var(--ease), background .15s var(--ease);
}
.topnav a:hover { color: var(--ink); background: rgba(31,100,112,.07); }
.topnav a.is-active { color: var(--primary); background: var(--primary-soft); }

@media (max-width: 880px) {
  .topnav { display: none; }
}

/* ============ Hero ============ */
.hero {
  position: relative; overflow: hidden;
  padding: 80px 0 60px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 85% 15%, rgba(231,106,44,.10), transparent 60%),
    radial-gradient(900px 600px at 10% 90%, rgba(31,100,112,.12), transparent 60%),
    repeating-linear-gradient(135deg, transparent 0 38px, rgba(27,42,51,0.025) 38px 39px);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; color: var(--muted);
  padding: 6px 11px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border);
  font-weight: 500;
}
.pill--accent { color: var(--accent-2); background: rgba(231,106,44,.08); border-color: rgba(231,106,44,.25); font-weight: 600; }

.hero__title {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05; letter-spacing: -0.025em;
  margin: 0 0 22px; color: var(--ink);
  max-width: 22ch;
}
.hl { color: var(--primary); }
.hl-num { color: var(--accent); font-variant-numeric: tabular-nums; }

.hero__focus {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  gap: 6px 14px;
  margin: -4px 0 24px;
  padding: 12px 16px;
  border: 1px solid rgba(231,106,44,.28);
  border-radius: 16px;
  background: rgba(231,106,44,.07);
  box-shadow: 0 12px 36px rgba(231,106,44,.08);
}
.hero__focus-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__focus-value {
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 46px);
  line-height: .95;
  font-weight: 800;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.hero__focus-note {
  grid-column: 1 / -1;
  max-width: 62ch;
  color: var(--ink-2);
  font-size: 14.5px;
}

.hero__lede {
  max-width: 65ch; font-size: 17.5px; color: var(--ink-2); margin: 0 0 36px;
}
.cite { font-size: 12px; color: var(--muted); white-space: nowrap; margin-left: 4px; }
.cite:hover { color: var(--primary); }

.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-radius: 10px;
  font-family: var(--f-display); font-weight: 600; font-size: 14.5px;
  transition: transform .15s var(--ease), background .15s var(--ease), color .15s var(--ease), border-color .15s var(--ease);
  border: 1px solid transparent; cursor: pointer;
}
.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { background: var(--primary); color: #fff; transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--border); }
.btn--ghost:hover { background: var(--surface); border-color: var(--ink); }

/* ============ KPI ============ */
.kpi-grid {
  display: grid; gap: 14px;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 8px;
}
@media (max-width: 1080px) { .kpi-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .kpi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px)  { .kpi-grid { grid-template-columns: 1fr; } }

.kpi {
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: var(--radius); padding: 18px 18px 16px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 4px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.kpi:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--border); }
.kpi__label { font-size: 12.5px; color: var(--muted); font-weight: 500; line-height: 1.35; }
.kpi__value {
  font-family: var(--f-display); font-weight: 700;
  font-size: 32px; letter-spacing: -0.02em; color: var(--ink);
  font-variant-numeric: tabular-nums; line-height: 1.1; margin-top: 6px;
}
.kpi__unit { font-size: 13px; font-weight: 500; color: var(--muted); margin-left: 4px; letter-spacing: 0; }
.kpi__foot { font-size: 11.5px; color: var(--muted); margin-top: 4px; }
.kpi--accent { background: linear-gradient(180deg, #FFF6EF, var(--surface)); border-color: rgba(231,106,44,.3); }
.kpi--accent .kpi__value { color: var(--accent-2); }

/* ============ Section base ============ */
.section { padding: 96px 0; position: relative; }
.section--alt { background: var(--bg-alt); }
.section--final { background: linear-gradient(180deg, var(--bg-alt), var(--bg)); }

.section__head { max-width: 760px; margin: 0 auto 48px; text-align: left; }
.section__num {
  display: inline-block; font-family: var(--f-mono); font-size: 12px;
  color: var(--accent-2); letter-spacing: 0.1em; margin-bottom: 14px;
  padding: 3px 8px; background: rgba(231,106,44,.08); border-radius: 4px;
}
.section__title {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.15; letter-spacing: -0.02em;
  margin: 0 0 18px; color: var(--ink);
}
.section__lede { font-size: 16.5px; color: var(--ink-2); margin: 0; max-width: 70ch; }

.h3 {
  font-family: var(--f-display); font-weight: 600;
  font-size: 22px; letter-spacing: -0.01em; color: var(--ink); margin: 0 0 16px;
}

/* ============ Grids ============ */
.grid-2 { display: grid; gap: 20px; grid-template-columns: 1fr 1fr; }
.grid-3 { display: grid; gap: 16px; grid-template-columns: repeat(3, 1fr); margin-bottom: 36px; }
@media (max-width: 920px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } .grid-2 { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .grid-3 { grid-template-columns: 1fr; } }

/* ============ Card ============ */
.card {
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: var(--radius); padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--border); }
.card__tag {
  display: inline-block; font-family: var(--f-mono); font-size: 11px;
  color: var(--primary); background: var(--primary-soft);
  padding: 3px 8px; border-radius: 4px; margin-bottom: 12px; letter-spacing: 0.04em;
}
.card h3 {
  font-family: var(--f-display); font-weight: 600;
  font-size: 18px; margin: 0 0 8px; letter-spacing: -0.01em;
}
.card p { margin: 0; font-size: 14.5px; color: var(--ink-2); line-height: 1.55; }

/* ============ Figure ============ */
.figure {
  margin: 40px 0 0; background: var(--surface);
  border: 1px solid var(--border-soft); border-radius: var(--radius);
  padding: 20px; box-shadow: var(--shadow-sm);
}
.figure img { border-radius: 8px; }
.figure__cap { font-size: 13px; color: var(--muted); margin-top: 14px; font-style: italic; }

/* ============ Chart card ============ */
.chart-card {
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: var(--radius); padding: 22px;
  box-shadow: var(--shadow-sm);
}
.chart-card__head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px; margin-bottom: 14px; flex-wrap: wrap;
}
.chart-card__eyebrow {
  font-family: var(--f-mono); font-size: 11px; color: var(--muted);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px;
}
.chart-card__title {
  font-family: var(--f-display); font-weight: 600; font-size: 18px;
  letter-spacing: -0.01em; color: var(--ink);
}
.chart-card__foot { font-size: 12.5px; color: var(--muted); margin-top: 10px; line-height: 1.5; }
.chart-wrap { position: relative; height: 340px; }
@media (max-width: 640px) { .chart-wrap { height: 280px; } }

/* ============ Toggle ============ */
.toggle {
  display: inline-flex; padding: 4px; background: var(--bg-alt);
  border: 1px solid var(--border); border-radius: 10px; gap: 2px;
}
.toggle--lg { margin-bottom: 24px; }
.toggle__btn {
  font-family: var(--f-display); font-size: 13.5px; font-weight: 500;
  padding: 8px 16px; border-radius: 7px; border: 0; cursor: pointer;
  color: var(--muted); background: transparent; transition: all .18s var(--ease);
}
.toggle__btn:hover { color: var(--ink); }
.toggle__btn.is-active {
  background: var(--ink); color: #fff; box-shadow: 0 4px 10px -4px rgba(27,42,51,.45);
}

/* ============ Competitors ============ */
.comp-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(3, 1fr); margin-bottom: 32px;
}
@media (max-width: 960px) { .comp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .comp-grid { grid-template-columns: 1fr; } }

.comp {
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: var(--radius); padding: 20px;
  box-shadow: var(--shadow-sm); transition: all .2s var(--ease);
  display: flex; flex-direction: column;
}
.comp:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--border); }
.comp__head { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 10px; }
.comp__head h3 { font-family: var(--f-display); font-weight: 600; font-size: 17px; margin: 0; letter-spacing: -0.01em; }
.badge {
  font-family: var(--f-mono); font-size: 10.5px; color: var(--muted);
  padding: 3px 7px; background: var(--bg-alt); border-radius: 4px; white-space: nowrap;
}
.comp__desc { font-size: 13.5px; color: var(--ink-2); margin: 0 0 14px; line-height: 1.55; }
.comp__row {
  display: flex; gap: 10px; padding: 8px 0; border-top: 1px solid var(--border-soft);
  font-size: 13px;
}
.comp__row span:first-child {
  flex-shrink: 0; width: 64px; color: var(--muted); font-family: var(--f-mono);
  font-size: 11px; padding-top: 2px; letter-spacing: 0.04em; text-transform: uppercase;
}
.comp__row span:last-child { color: var(--ink-2); }

/* ============ Callout ============ */
.callout {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); margin-top: 8px;
}
.callout__icon {
  width: 38px; height: 38px; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--primary-soft); color: var(--primary);
  border-radius: 10px; font-size: 20px; font-family: var(--f-display);
}
.callout h4 { font-family: var(--f-display); font-weight: 600; font-size: 17px; margin: 0 0 6px; letter-spacing: -0.01em; }
.callout p { margin: 0; color: var(--ink-2); font-size: 14.5px; line-height: 1.55; }
.callout--accent { background: linear-gradient(180deg, #FFF6EF, var(--surface)); border-color: rgba(231,106,44,.3); }
.callout--accent .callout__icon { background: rgba(231,106,44,.12); color: var(--accent-2); }

/* ============ Models ============ */
.models {
  display: grid; gap: 18px; grid-template-columns: 1fr 1.15fr 1fr;
  margin-bottom: 16px;
}
@media (max-width: 960px) { .models { grid-template-columns: 1fr; } }

.model {
  position: relative; padding: 26px;
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  transition: all .25s var(--ease);
}
.model:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.model__head { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; flex-wrap: wrap; }
.model__letter {
  font-family: var(--f-display); font-weight: 700; font-size: 28px;
  color: var(--muted); width: 44px; height: 44px;
  display: grid; place-items: center; background: var(--bg-alt);
  border-radius: 10px;
}
.model__head h3 { font-family: var(--f-display); font-weight: 700; font-size: 22px; margin: 0; letter-spacing: -0.02em; }
.model__sub { font-size: 13.5px; color: var(--muted); margin: 6px 0 18px; line-height: 1.5; }

.model__list { list-style: none; margin: 0 0 20px; padding: 0; }
.model__list li {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 0; border-top: 1px solid var(--border-soft);
  font-size: 14px;
}
.model__list li:first-child { border-top: 0; }
.model__list li span { color: var(--muted); }
.model__list li b { color: var(--ink); font-weight: 600; font-family: var(--f-display); letter-spacing: -0.005em; }

.model__tag {
  display: inline-block; font-family: var(--f-display); font-weight: 600;
  font-size: 12.5px; padding: 6px 12px; border-radius: 6px;
}
.tag--ok   { background: rgba(47,122,74,.12); color: var(--ok); }
.tag--reco { background: var(--ink); color: #fff; }
.tag--warn { background: rgba(192,120,45,.14); color: var(--warn); }

.model--reco {
  background: linear-gradient(180deg, #FFFDF8, var(--surface));
  border: 2px solid var(--ink); transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.model--reco .model__letter { background: var(--ink); color: #fff; }
.model--reco:hover { transform: translateY(-10px); }
.ribbon {
  position: absolute; top: -12px; right: 18px;
  background: var(--accent); color: #fff;
  font-family: var(--f-display); font-size: 12px; font-weight: 700;
  letter-spacing: 0.04em; padding: 6px 12px; border-radius: 6px;
  box-shadow: 0 6px 16px -6px rgba(231,106,44,.6);
}

/* ============ Production ============ */
.prod-grid {
  display: grid; gap: 14px; grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 880px) { .prod-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .prod-grid { grid-template-columns: 1fr; } }

.prod-card {
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: var(--radius); padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: all .2s var(--ease);
}
.prod-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.prod-card__label { font-size: 12.5px; color: var(--muted); font-weight: 500; }
.prod-card__value {
  font-family: var(--f-display); font-weight: 700; font-size: 34px;
  letter-spacing: -0.02em; color: var(--ink); margin: 8px 0 6px;
  font-variant-numeric: tabular-nums; line-height: 1;
}
.prod-card__value span { font-size: 14px; font-weight: 500; color: var(--muted); margin-left: 4px; }
.prod-card__foot { font-size: 12px; color: var(--muted); margin-top: 6px; line-height: 1.45; }
.prod-card--total { background: var(--ink); border-color: var(--ink); color: #fff; }
.prod-card--total .prod-card__label,
.prod-card--total .prod-card__foot { color: rgba(255,255,255,.65); }
.prod-card--total .prod-card__value { color: #fff; }
.prod-card--total .prod-card__value span { color: var(--accent); }

/* ============ Roadmap ============ */
.roadmap {
  list-style: none; padding: 0; margin: 0; position: relative;
}
.roadmap::before {
  content: ""; position: absolute; left: 14px; top: 12px; bottom: 12px;
  width: 2px; background: var(--border);
}
.roadmap li {
  position: relative; padding: 14px 0 14px 44px; counter-increment: step;
}
.roadmap li::before {
  content: ""; position: absolute; left: 8px; top: 22px;
  width: 14px; height: 14px; background: var(--surface);
  border: 3px solid var(--primary); border-radius: 50%;
  z-index: 1;
}
.roadmap__when {
  font-family: var(--f-mono); font-size: 11px; color: var(--accent-2);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px;
}
.roadmap__body { font-size: 15px; color: var(--ink-2); line-height: 1.55; }

/* ============ Risks ============ */
.risk-matrix {
  display: grid; grid-template-columns: 28px 1fr; grid-template-rows: 1fr 28px;
  gap: 8px; max-width: 880px; margin: 0 auto;
}
.risk-axis {
  font-family: var(--f-mono); font-size: 11px; color: var(--muted);
  letter-spacing: 0.1em; text-transform: uppercase;
  display: flex; align-items: center; justify-content: center;
}
.risk-axis--y { writing-mode: vertical-rl; transform: rotate(180deg); }
.risk-axis--x { grid-column: 2; }

.risk-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(3, 1fr);
  gap: 4px; padding: 6px; background: var(--bg-alt); border-radius: 12px;
}
.risk-cell {
  background: var(--surface); border-radius: 8px; padding: 12px;
  min-height: 88px; display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.risk {
  font-family: var(--f-display); font-weight: 500; font-size: 13.5px;
  padding: 8px 12px; border-radius: 6px; line-height: 1.35;
}
.risk--low  { background: rgba(47,122,74,.10);  color: var(--ok); }
.risk--med  { background: rgba(192,120,45,.14); color: var(--warn); }
.risk--high { background: rgba(178,58,72,.12);  color: var(--err); }

.risk-legend {
  display: flex; gap: 18px; justify-content: center; align-items: center;
  margin-top: 16px; font-size: 13px; color: var(--muted);
}
.dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 6px; }
.dot--low  { background: var(--ok); }
.dot--med  { background: var(--warn); }
.dot--high { background: var(--err); }

/* ============ Final ============ */
.final-grid {
  display: grid; gap: 18px; grid-template-columns: repeat(3, 1fr);
  margin-bottom: 36px;
}
@media (max-width: 960px) { .final-grid { grid-template-columns: 1fr; } }

.final {
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all .2s var(--ease);
}
.final:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.final__head { margin-bottom: 14px; }
.final__chip {
  font-family: var(--f-mono); font-size: 11px;
  padding: 4px 9px; border-radius: 4px;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.final--now    .final__chip { background: rgba(231,106,44,.12); color: var(--accent-2); }
.final--phased .final__chip { background: var(--primary-soft); color: var(--primary); }
.final--later  .final__chip { background: rgba(106,111,115,.14); color: var(--muted); }
.final h3 { font-family: var(--f-display); font-weight: 700; font-size: 22px; letter-spacing: -0.02em; margin: 10px 0 0; }
.final ul { margin: 12px 0 0; padding-left: 18px; }
.final li { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; margin-bottom: 8px; }

.final-cta {
  background: var(--ink); color: #fff; border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow-lg);
  border: 1px solid var(--ink-2);
}
.final-cta h3 {
  font-family: var(--f-display); font-weight: 700; font-size: 28px;
  letter-spacing: -0.02em; margin: 0 0 12px;
}
.final-cta p { margin: 0; font-size: 16.5px; line-height: 1.6; color: rgba(255,255,255,.85); max-width: 70ch; }
.final-cta strong { color: var(--accent); }

/* ============ Note ============ */
.note {
  font-size: 13.5px; color: var(--muted); padding: 18px;
  background: var(--surface); border: 1px solid var(--border-soft); border-left: 3px solid var(--accent);
  border-radius: 8px; margin-top: 28px; line-height: 1.6;
}

/* ============ Footer ============ */
.footer {
  background: var(--ink); color: rgba(255,255,255,.7);
  padding: 40px 0; margin-top: 0;
}
.footer .brand__name, .footer .brand__sub { color: rgba(255,255,255,.85); }
.footer .brand__sub { color: rgba(255,255,255,.55); }
.footer__inner {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.footer__brand { display: flex; align-items: center; gap: 14px; color: #fff; }
.footer__brand .brand__logo { color: #fff; }
.footer__note { font-size: 12.5px; max-width: 60ch; line-height: 1.55; }
.footer__note a { color: rgba(255,255,255,.85); text-decoration: underline; text-decoration-color: rgba(255,255,255,.25); }
.footer__note a:hover { color: #fff; }

/* ============ Reveal animation ============ */
.reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
