/* VectorOS landing — page styles
   Sits on top of colors_and_type.css (the design system tokens).
   Density and tone switching is driven by data-attrs on <body>. */

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-1);
  color: var(--fg-1);
  font-family: var(--font-sans);
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
  font-size: 14px;
  line-height: 1.5;
  min-height: 100vh;
}

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

::selection { background: var(--accent); color: var(--bg-0); }

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

/* =========================================================================
   Density tokens (driven by <body data-density="compact|spacious">)
   ========================================================================= */
body { --pad-section: 96px; --pad-block: 64px; --pad-card: 32px; --gap-card: 24px; }
body[data-density="compact"]  { --pad-section: 56px; --pad-block: 40px; --pad-card: 20px; --gap-card: 16px; }
body[data-density="spacious"] { --pad-section: 128px; --pad-block: 96px; --pad-card: 48px; --gap-card: 32px; }

/* Tone switching — copy variants are siblings with data-tone="...".
   Default = hybrid. */
[data-tone] { display: none; }
body[data-tone-active="strict"] [data-tone="strict"],
body[data-tone-active="hybrid"] [data-tone="hybrid"],
body[data-tone-active="soft"]   [data-tone="soft"]   { display: revert; }

/* =========================================================================
   Layout container — modular 12-col grid with massive negative space.
   ========================================================================= */
.shell { max-width: 1440px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 900px) { .shell { padding: 0 20px; } }

/* =========================================================================
   Topbar
   ========================================================================= */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  height: var(--topbar-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  display: flex; align-items: center;
  backdrop-filter: blur(0);
  transition: background var(--dur-med) var(--ease), border-color var(--dur-med) var(--ease);
}
.topbar.is-scrolled {
  background: rgba(10, 10, 11, 0.94);
  border-bottom-color: var(--line-1);
}
.topbar .shell { display: flex; align-items: center; gap: 32px; width: 100%; }
.topbar__brand { display: flex; align-items: center; gap: 10px; }
.topbar__brand img { display: block; height: 22px; width: auto; }
.topbar__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 14px;
  padding: 4px 8px;
  border: 1px solid var(--line-2);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: var(--w-semi);
  letter-spacing: 0.12em;
  color: var(--fg-2);
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}
.topbar__tag-dot {
  width: 5px;
  height: 5px;
  background: var(--accent);
  display: inline-block;
}
@media (max-width: 520px) {
  .topbar__tag { display: none; }
}
.topbar__nav { display: none; align-items: center; gap: 32px; margin-left: auto; }
.topbar.is-scrolled .topbar__nav { display: flex; }
.topbar__nav a {
  font-family: var(--font-mono);
  font-size: var(--t-label);
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  color: var(--fg-3);
  transition: color var(--dur-instant);
}
.topbar__nav a:hover { color: var(--fg-1); }
.topbar__cta {
  display: none; align-items: center; gap: 8px;
  height: 28px; padding: 0 14px;
  border: 1px solid var(--fg-1); background: var(--fg-1); color: var(--bg-1);
  font-family: var(--font-sans); font-size: 12px; font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: auto;
}
.topbar.is-scrolled .topbar__cta { display: inline-flex; margin-left: 0; }
.topbar.is-scrolled .topbar__nav + .topbar__cta { margin-left: 0; }
.topbar__cta:hover { background: var(--fg-0); border-color: var(--fg-0); }
@media (max-width: 720px) {
  .topbar.is-scrolled .topbar__nav { display: none; }
}

/* =========================================================================
   Eyebrow label (mono uppercase legend)
   ========================================================================= */
.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--t-label);
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  color: var(--fg-3);
  display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow .tick { width: 8px; height: 2px; background: var(--accent); display: inline-block; }

/* =========================================================================
   Hero — beam canvas embedded as the page itself, not a card.
   ========================================================================= */
.hero {
  position: relative;
  padding-top: 80px;
  padding-bottom: var(--pad-section);
  background: var(--bg-0);              /* darker stage — the hero feels like the instrument */
  overflow: hidden;                      /* clip beam & arc to the section */
}
.hero__beam {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__beam .bl { background: transparent !important; }
.hero__beam .bl-parent-label { fill: var(--fg-3); }

.hero .shell {
  position: relative;
  z-index: 2;
}

.hero__content {
  max-width: 60%;
  min-height: 560px;
  display: flex; flex-direction: column;
  justify-content: center;
}
@media (max-width: 1100px) {
  .hero__content { max-width: 65%; }
}
@media (max-width: 900px) {
  .hero { padding-top: 56px; padding-bottom: 80px; }
  .hero__content { max-width: 100%; min-height: 0; }
  /* On narrow viewports keep the beam present but pushed below the content. */
  .hero__beam { top: auto; bottom: 0; height: 360px; opacity: 0.6; }
}

.hero__title {
  font-family: var(--font-sans);
  font-weight: var(--w-light);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 24px 0 32px;
  color: var(--fg-1);
  text-wrap: balance;
}
.hero__title em {
  font-style: normal;
  color: var(--fg-3);
}

.hero__lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--fg-2);
  max-width: 56ch;
  margin: 0 0 40px;
}
.hero__lede strong { color: var(--fg-1); font-weight: 500; }

.cta-row {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 40px;
}
.cta {
  display: inline-flex; align-items: center; gap: 10px;
  height: 48px; padding: 0 22px;
  font-family: var(--font-sans); font-size: 15px; font-weight: 500;
  border: 1px solid var(--fg-1);
  transition: background var(--dur-instant), color var(--dur-instant);
  cursor: pointer; background: transparent; color: var(--fg-1);
}
.cta--primary { background: var(--fg-1); color: var(--bg-1); }
.cta--primary:hover { background: var(--fg-0); border-color: var(--fg-0); }
.cta--ghost:hover  { background: var(--bg-3); }
.cta svg { width: 14px; height: 14px; }

.hero__ribbon {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 10px 14px;
  border: var(--border-subtle);
  font-family: var(--font-mono);
  font-size: var(--t-label);
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  color: var(--fg-3);
}
.hero__ribbon .accent { color: var(--accent); }
.hero__ribbon strong { color: var(--fg-1); font-weight: 500; }

/* Beam visual + caption */
.hero__visual {
  border: var(--border);
  background: var(--bg-0);
  position: relative;
  display: flex; flex-direction: column;
}
.hero__visual-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  border-bottom: var(--border-subtle);
  font-family: var(--font-mono);
  font-size: var(--t-label);
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
}
.hero__visual-head .l { color: var(--fg-2); font-weight: 500; }
.hero__visual-head .r { color: var(--fg-3); }

.hero__visual-stage { padding: 8px; background: var(--bg-0); aspect-ratio: 1.05 / 1; position: relative; overflow: hidden; }
.hero__visual-stage > svg { width: 100% !important; height: 100% !important; }

.hero__visual-foot {
  border-top: var(--border-subtle);
  display: grid; grid-template-columns: 1fr 1fr 1fr;
}
.hero__visual-foot > div {
  padding: 14px 16px;
  border-right: var(--border-subtle);
}
.hero__visual-foot > div:last-child { border-right: 0; }
.hero__visual-foot .k {
  font-family: var(--font-mono);
  font-size: var(--t-label);
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  color: var(--fg-3);
  display: block; margin-bottom: 6px;
}
.hero__visual-foot .v {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--fg-1);
  font-weight: 400;
  font-variant-numeric: tabular-nums;
}
.hero__visual-foot .v.accent { color: var(--accent); }

/* =========================================================================
   Section primitives
   ========================================================================= */
.section {
  padding: var(--pad-section) 0;
  border-bottom: var(--border-subtle);
  position: relative;
}
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 7fr);
  gap: 64px;
  margin-bottom: var(--pad-block);
  align-items: start;
}
@media (max-width: 900px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; }
}
.section-head .num {
  font-family: var(--font-mono);
  font-size: var(--t-label);
  letter-spacing: var(--tr-label);
  color: var(--fg-3);
  text-transform: uppercase;
}
.section-head h2 {
  font-family: var(--font-sans);
  font-weight: var(--w-light);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 12px 0 0;
  color: var(--fg-1);
  text-wrap: balance;
}
.section-head .lede {
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0;
  max-width: 56ch;
}
.section-head .lede strong { color: var(--fg-1); font-weight: 500; }

/* =========================================================================
   Pain grid (4 cards on instrument-style readouts)
   ========================================================================= */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: var(--border);
  background: var(--bg-1);
}
@media (max-width: 1100px) { .pain-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .pain-grid { grid-template-columns: 1fr; } }

.pain-cell {
  padding: var(--pad-card);
  border-right: var(--border-subtle);
  display: flex; flex-direction: column; gap: 20px;
  min-height: 260px;
  position: relative;
}
.pain-cell:last-child { border-right: 0; }
@media (max-width: 1100px) {
  .pain-cell:nth-child(2n) { border-right: 0; }
  .pain-cell:nth-child(-n+2) { border-bottom: var(--border-subtle); }
}
@media (max-width: 600px)  {
  .pain-cell { border-right: 0; }
  .pain-cell:not(:last-child) { border-bottom: var(--border-subtle); }
}

.pain-cell__head {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: var(--t-label);
  letter-spacing: var(--tr-label);
  color: var(--fg-3);
  text-transform: uppercase;
}
.pain-cell__readout {
  font-family: var(--font-mono);
  font-weight: var(--w-light);
  font-size: 40px;
  line-height: 1;
  color: var(--fg-1);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.pain-cell__readout .unit {
  font-size: 14px;
  color: var(--fg-3);
  margin-left: 6px;
  letter-spacing: 0.04em;
}
.pain-cell__readout.accent { color: var(--accent); }
.pain-cell__body {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-2);
  margin-top: auto;
  text-wrap: pretty;
}
.pain-cell__body strong { color: var(--fg-1); font-weight: 500; }

/* Big slogan inside a pain card — replaces the readout for narrative cards. */
.pain-cell__slogan {
  font-family: var(--font-sans);
  font-weight: var(--w-light);
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--fg-1);
  text-wrap: balance;
}

/* See / Don't-see split inside a pain card. */
.pain-cell__split {
  margin-top: auto;
  display: flex; flex-direction: column;
  border-top: var(--border-subtle);
}
.pain-cell__split .row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  padding: 14px 0;
  align-items: start;
  border-bottom: var(--border-subtle);
  font-size: 13px;
  line-height: 1.55;
  color: var(--fg-2);
  text-wrap: pretty;
}
.pain-cell__split .row:last-child { border-bottom: 0; }
.pain-cell__split .row strong { color: var(--fg-1); font-weight: 500; }
.pain-cell__split .row .mark {
  font-family: var(--font-mono);
  font-size: 14px; line-height: 1.55;
  text-align: center;
  font-weight: 500;
}
.pain-cell__split .row.see .mark   { color: var(--fg-2); }
.pain-cell__split .row.miss .mark  { color: var(--accent); }
.pain-cell__split .row.miss        { color: var(--fg-1); }

/* Tiny inline sparkline / bar gauge */
.gauge { display: flex; gap: 3px; height: 24px; align-items: flex-end; }
.gauge i { display: block; width: 4px; background: var(--line-2); }
.gauge i.on { background: var(--fg-2); }
.gauge i.peak { background: var(--accent); }

/* =========================================================================
   Bot mockups — three telegram-style conversations
   ========================================================================= */
.tg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1100px) { .tg-grid { grid-template-columns: 1fr; gap: 16px; } }

.tg-card {
  border: var(--border);
  background: var(--bg-1);
  display: flex; flex-direction: column;
}
.tg-card__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  border-bottom: var(--border-subtle);
  font-family: var(--font-mono);
  font-size: var(--t-label);
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  color: var(--fg-3);
}
.tg-card__head .legend { color: var(--fg-1); font-weight: 500; }
.tg-card__head .anomaly { color: var(--accent); }

.tg-thread {
  padding: 24px 18px;
  display: flex; flex-direction: column;
  gap: 14px;
  background: var(--bg-1);
  flex: 1;
}
.tg-msg {
  font-size: 14px;
  line-height: 1.55;
  max-width: 92%;
  padding: 14px 16px;
  border: var(--border-subtle);
  background: var(--bg-2);
  color: var(--fg-1);
  text-wrap: pretty;
  white-space: pre-line;
}
.tg-msg.from-bot { align-self: flex-start; }
.tg-msg.from-user {
  align-self: flex-end;
  background: transparent;
  border-color: var(--line-3);
  color: var(--fg-1);
}
.tg-msg.note {
  align-self: stretch; max-width: 100%;
  padding: 8px 10px;
  background: transparent; border: none; border-top: var(--border-subtle); border-bottom: var(--border-subtle);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  color: var(--fg-3);
  text-align: center;
}
.tg-msg .ts {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--fg-3);
  margin-top: 8px;
}
.tg-msg .readout {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg-1);
  border-top: var(--border-subtle);
  margin-top: 10px; padding-top: 10px;
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 14px; row-gap: 4px;
  font-variant-numeric: tabular-nums;
}
.tg-msg .readout .l { color: var(--fg-3); font-size: 11px; letter-spacing: var(--tr-label); text-transform: uppercase; align-self: center; }
.tg-msg .readout .v.accent { color: var(--accent); }

.tg-card__foot {
  border-top: var(--border-subtle);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-mono);
  font-size: var(--t-label);
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  color: var(--fg-3);
}
.tg-card__foot .what { color: var(--fg-1); font-weight: 500; }

/* =========================================================================
   Positioning / manifesto matrix
   ========================================================================= */
.pos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 1000px) { .pos-grid { grid-template-columns: 1fr; gap: 32px; } }

.pos-matrix {
  border: var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto auto;
}
.pos-matrix .head, .pos-matrix .axis {
  font-family: var(--font-mono);
  font-size: var(--t-label);
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  color: var(--fg-3);
  padding: 14px 16px;
  border-bottom: var(--border-subtle);
}
.pos-matrix .corner { border-right: var(--border-subtle); padding: 14px 16px; }
.pos-matrix .head { border-right: var(--border-subtle); }
.pos-matrix .head:last-of-type { border-right: 0; }
.pos-matrix .axis { border-right: var(--border-subtle); border-bottom: var(--border-subtle); color: var(--fg-2); font-weight: 500; }
.pos-matrix .cell {
  padding: 18px 16px 22px;
  border-right: var(--border-subtle);
  border-bottom: var(--border-subtle);
  min-height: 100px;
  color: var(--fg-3);
  font-size: 13px; line-height: 1.5;
  position: relative;
}
.pos-matrix .cell:nth-of-type(3n+3) { border-right: 0; }
.pos-matrix .row-last .cell, .pos-matrix .row-last .axis { border-bottom: 0; }
.pos-matrix .cell.empty { color: var(--fg-4); }
.pos-matrix .cell.us {
  color: var(--fg-1);
  background: var(--bg-2);
}
.pos-matrix .cell.us::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 12px; height: 2px; background: var(--accent);
}
.pos-matrix .cell.us .name {
  font-family: var(--font-sans);
  font-weight: 500; font-size: 15px;
  color: var(--fg-1); margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.pos-matrix .cell .name {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  color: var(--fg-2);
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}

.pos-caption {
  font-family: var(--font-mono);
  font-size: var(--t-label);
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  color: var(--fg-3);
  margin-top: 14px;
}

/* Comparison table */
.cmp-table {
  width: 100%;
  border-collapse: collapse;
  border: var(--border);
}
.cmp-table th, .cmp-table td {
  text-align: left;
  padding: 16px;
  border-bottom: var(--border-subtle);
  border-right: var(--border-subtle);
  vertical-align: top;
  font-size: 13px;
  line-height: 1.5;
  color: var(--fg-2);
}
.cmp-table th:last-child, .cmp-table td:last-child { border-right: 0; }
.cmp-table tr:last-child td { border-bottom: 0; }
.cmp-table th {
  font-family: var(--font-mono);
  font-size: var(--t-label);
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  color: var(--fg-3);
  font-weight: 500;
  background: transparent;
}
.cmp-table td.name {
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--fg-1);
  width: 22%;
  letter-spacing: -0.005em;
}
.cmp-table tr.us td { background: var(--bg-2); color: var(--fg-1); position: relative; }
.cmp-table tr.us td.name { color: var(--fg-1); }
.cmp-table tr.us td.name::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 12px; height: 2px; background: var(--accent);
}

/* =========================================================================
   Foundations grid
   ========================================================================= */
.refs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: var(--border);
}
@media (max-width: 1100px) { .refs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .refs-grid { grid-template-columns: 1fr; } }

.ref-cell {
  padding: 24px;
  border-right: var(--border-subtle);
  border-bottom: var(--border-subtle);
  display: flex; flex-direction: column; gap: 12px;
  min-height: 200px;
}
.refs-grid .ref-cell:nth-child(4n) { border-right: 0; }
.refs-grid .ref-cell:nth-last-child(-n+4) { border-bottom: 0; }
@media (max-width: 1100px) {
  /* 2-col layout — restore borders that the 4-col rules above stripped */
  .refs-grid .ref-cell { border-right: var(--border-subtle); border-bottom: var(--border-subtle); }
  .refs-grid .ref-cell:nth-last-child(-n+4) { border-bottom: var(--border-subtle); }
  .refs-grid .ref-cell:nth-child(2n) { border-right: 0; }
  .refs-grid .ref-cell:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 600px) {
  /* 1-col layout — no right borders, bottom on every cell except the last */
  .refs-grid .ref-cell { border-right: 0; border-bottom: var(--border-subtle); }
  .refs-grid .ref-cell:nth-last-child(-n+2) { border-bottom: var(--border-subtle); }
  .refs-grid .ref-cell:last-child { border-bottom: 0; }
}
.ref-cell__head {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--font-mono);
  font-size: var(--t-label);
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  color: var(--fg-3);
}
.ref-cell__author {
  font-family: var(--font-sans);
  font-weight: 500; font-size: 16px;
  color: var(--fg-1);
  letter-spacing: -0.005em;
}
.ref-cell__concept {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--fg-2);
  line-height: 1.5;
}
.ref-cell__use {
  font-size: 12px;
  color: var(--fg-3);
  line-height: 1.55;
  margin-top: auto;
  border-top: var(--border-subtle);
  padding-top: 12px;
}

/* =========================================================================
   Pricing
   ========================================================================= */
.price-card {
  border: var(--border);
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  position: relative;
  background: var(--bg-1);
}
@media (max-width: 800px) { .price-card { grid-template-columns: 1fr; } }

.price-card::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 24px; height: 2px; background: var(--accent);
}
.price-card__left, .price-card__right { padding: 40px; }
.price-card__left  { border-right: var(--border-subtle); }
@media (max-width: 800px) {
  .price-card__left  { border-right: 0; border-bottom: var(--border-subtle); }
}

.price-card .badge {
  font-family: var(--font-mono);
  font-size: var(--t-label);
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: inline-flex; gap: 8px; align-items: center;
}
.price-card .badge::before {
  content: ""; width: 8px; height: 2px; background: var(--accent);
}
.price-readout {
  font-family: var(--font-mono);
  font-weight: var(--w-light);
  font-size: 64px;
  line-height: 1;
  color: var(--fg-1);
  letter-spacing: -0.02em;
}
.price-readout .unit {
  font-size: 18px;
  color: var(--fg-3);
  font-weight: 400;
  margin-left: 6px;
}
.price-strike {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg-3);
}
.price-strike .struck {
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  color: var(--fg-2);
}
.price-strike .later { color: var(--fg-2); }

.price-note {
  margin-top: 24px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--fg-2);
  max-width: 32ch;
}
.price-note strong { color: var(--fg-1); font-weight: 500; }

.price-includes {
  display: flex; flex-direction: column; gap: 14px;
}
.price-includes .item {
  display: grid; grid-template-columns: 12px 1fr; gap: 12px;
  align-items: baseline;
}
.price-includes .item::before {
  content: ""; width: 8px; height: 1px; background: var(--fg-2);
  display: inline-block; position: relative; top: 2px;
}
.price-includes .label {
  font-family: var(--font-mono);
  font-size: var(--t-label);
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  color: var(--fg-3);
}
.price-includes .desc {
  font-size: 13px; line-height: 1.5; color: var(--fg-1); margin-top: 2px;
}

/* =========================================================================
   Final CTA
   ========================================================================= */
.final {
  text-align: center;
  padding: var(--pad-section) 0;
  border-bottom: var(--border-subtle);
}
.final h2 {
  font-family: var(--font-sans);
  font-weight: var(--w-light);
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 1; letter-spacing: -0.02em;
  color: var(--fg-1);
  margin: 0 auto 32px;
  max-width: 18ch;
  text-wrap: balance;
}
.final p { color: var(--fg-2); margin: 0 auto 40px; max-width: 50ch; font-size: 16px; line-height: 1.55; }
.final .cta-row { justify-content: center; }

/* =========================================================================
   Footer
   ========================================================================= */
footer {
  /* Bottom padding includes the iOS home-indicator / Telegram in-app
     bottom toolbar safe area so the page background extends to the
     screen edge even when viewport-fit=cover is set. */
  padding: 40px 0 calc(56px + env(safe-area-inset-bottom, 0px));
  font-family: var(--font-mono);
  font-size: var(--t-label);
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  color: var(--fg-3);
}
footer .shell { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; align-items: center; }
footer .links { display: flex; gap: 24px; }
footer a:hover { color: var(--fg-1); }

/* =========================================================================
   Micro graticule (subtle background grid on the page ground — opt-in)
   ========================================================================= */
.graticule-stage {
  background-image:
    linear-gradient(to right,  var(--line-1) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line-1) 1px, transparent 1px);
  background-size: 24px 24px;
  background-position: -0.5px -0.5px;
}
