/* ============================================================
   HELIOS — Landing v2
   Tiny additions on top of landing.css. The v2 page must look
   like the original landing: same hero, same proof, same cards,
   same tier stamp. We only add what the DS doesn't already have.
   ============================================================ */

/* ------------------------------------------------------------
   NAV — replace the EST · LONDON meta with a row of section links
   ------------------------------------------------------------ */
.nav-meta-links {
  display: flex;
  gap: var(--s-24);
  align-items: center;
  justify-content: center;
}
.nav-meta-links a {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--c-text);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--d-fast) var(--e-out);
}
.nav-meta-links a:hover { color: var(--c-accent); }
@media (max-width: 760px) { .nav-meta-links { display: none; } }

/* ------------------------------------------------------------
   HERO — secondary italic aside under the lede
   ------------------------------------------------------------ */
.hero-aside {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: var(--c-text-muted);
  margin: calc(-1 * var(--s-16)) 0 var(--s-32);
  max-width: 580px;
}

/* ------------------------------------------------------------
   PLATFORM — tools grid (5 columns of layer-cards)
   ------------------------------------------------------------ */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--s-16);
  margin-bottom: var(--s-32);
}
@media (max-width: 980px) { .tools-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .tools-grid { grid-template-columns: repeat(2, 1fr); } }

.tool-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-8);
}
.tool-list li {
  font-family: var(--font-sans);
  font-size: 14.5px;
  color: var(--c-ink);
  line-height: 1.4;
}

.platform-foot {
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--c-text);
  border-left: 2px solid var(--c-accent);
  padding: var(--s-12) var(--s-24);
  background: rgba(37, 99, 168, 0.04);
  border-radius: 0 var(--r-2) var(--r-2) 0;
  margin: 0;
  max-width: 760px;
}
.platform-foot a {
  color: var(--c-accent);
  text-decoration: none;
  border-bottom: 1px solid var(--c-accent-rule);
}
.platform-foot a:hover { border-bottom-color: var(--c-accent); }

/* ------------------------------------------------------------
   CASE V2 — small adaptation for big-number case cards.
   Reuses .case (paper card with shadow). Just adds .case-figure
   for the editorial big number above the body copy.
   ------------------------------------------------------------ */
.case-figure {
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 500;
  font-size: clamp(38px, 4.4vw, 52px);
  line-height: 1;
  color: var(--c-accent);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  margin: 0;
}

/* ------------------------------------------------------------
   FINAL CTA — centered section, uses .section + .section-title
   ------------------------------------------------------------ */
.final-cta-section { text-align: center; }
.final-cta-section .section-head {
  border-top-color: var(--c-accent);
  align-items: center;
  text-align: center;
}
.final-cta-section .section-sub {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.final-cta-section .cta-row { justify-content: center; }
.final-cta-section .hero-micro { text-align: center; }
