/* ---------------------------------------------------------------- */
/* Reset                                                            */
/* ---------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

/* ---------------------------------------------------------------- */
/* Tokens                                                           */
/* ---------------------------------------------------------------- */
:root {
  --bg-light:        #FFFFFF;
  --bg-dark:         #0A0A0A;
  --bg-accent:       #2563EB;
  --bg-accent-deep:  #1E40AF;

  --text-on-light:        #0A0A0A;
  --text-on-light-muted:  #475569;
  --text-on-light-faint:  #94A3B8;
  --text-on-dark:         #FFFFFF;
  --text-on-dark-muted:   #94A3B8;
  --text-on-accent:       #FFFFFF;

  --border-subtle: #E5E7EB;
  --accent-glow: 0 24px 60px -22px rgba(37, 99, 235, 0.45);

  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body:    "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;

  --content-max: 1320px;
  --side-pad:    5vw;

  --easing: cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ---------------------------------------------------------------- */
/* Base                                                             */
/* ---------------------------------------------------------------- */
body {
  font-family: var(--font-body);
  font-size: 1.0625rem; /* 17px */
  line-height: 1.7;
  color: var(--text-on-light);
  background: var(--bg-light);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
}

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


/* ---------------------------------------------------------------- */
/* Header                                                           */
/* ---------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0.75rem 0;
  background: transparent;
  transition: background-color 280ms var(--easing),
              backdrop-filter 280ms var(--easing),
              box-shadow 280ms var(--easing);
}
.site-header.is-scrolled {
  background: transparent;
  box-shadow: none;
}
.site-header.is-scrolled .site-nav {
  max-width: 56rem;
  border-radius: 1rem;
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 4px 18px -8px rgba(15, 23, 42, 0.12);
  padding-left: 1.25rem;
  padding-right: 1rem;
}
.site-header.on-dark {
  /* When stats section's dark overlay is active, header inverts */
}
.site-header.on-dark .logo-mark,
.site-header.on-dark .nav-links a { color: var(--text-on-dark); }
.site-header.on-dark.is-scrolled {
  background: rgba(10, 10, 10, 0.6);
}

.site-nav {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0.85rem var(--side-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: max-width 320ms var(--easing),
              border-radius 320ms var(--easing),
              border-color 320ms var(--easing),
              background-color 320ms var(--easing),
              padding 320ms var(--easing),
              box-shadow 320ms var(--easing);
  border: 1px solid transparent;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.logo-mark {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 36, "wght" 700;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  color: var(--text-on-light);
  transition: color 200ms var(--easing);
}
.logo-dot {
  width: 7px; height: 7px; border-radius: 999px;
  background: var(--bg-accent);
  box-shadow: 0 0 14px rgba(37,99,235,0.55);
}
.nav-links {
  display: none;
  gap: 36px;
}
@media (min-width: 768px) {
  .nav-links { display: flex; }
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text-on-light);
  opacity: 0.78;
  transition: opacity 200ms var(--easing), color 200ms var(--easing);
}
.nav-links a:hover,
.nav-links a:focus-visible { opacity: 1; color: var(--bg-accent); outline: none; }

/* ---------------------------------------------------------------- */
/* Buttons                                                          */
/* ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.005em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 220ms var(--easing),
              box-shadow 220ms var(--easing),
              background-color 220ms var(--easing),
              border-color 220ms var(--easing);
  text-align: center;
}
.btn:active { transform: scale(0.98); }
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.35);
}

.btn-sm { padding: 10px 18px; font-size: 0.82rem; }
.btn-lg { padding: 18px 34px; font-size: 0.95rem; }

.btn-primary {
  background: var(--bg-accent);
  color: var(--text-on-accent);
}
.btn-primary:hover {
  background: var(--bg-accent-deep);
  transform: translateY(-1px);
  box-shadow: var(--accent-glow);
}

.btn-on-accent {
  background: #FFFFFF;
  color: var(--bg-accent-deep);
}
.btn-on-accent:hover {
  background: #F0F4FF;
  transform: translateY(-1px);
}

.btn-ghost {
  background: #0A0A0A;
  color: #FFFFFF;
  border: 1px solid #0A0A0A;
}
.btn-ghost:hover {
  background: #1F1F1F;
  color: #FFFFFF;
  border-color: #1F1F1F;
}

/* ---------------------------------------------------------------- */
/* Hero (standalone, OUTSIDE scroll container)                       */
/* ---------------------------------------------------------------- */
.hero-standalone {
  position: relative;
  min-height: 100vh;
  background: var(--bg-light);
  z-index: 10;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 9rem var(--side-pad) 6rem;
  overflow: hidden;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-glow {
  position: absolute;
  top: -128px;
  left: 0;
  right: 0;
  height: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transform: scale(0.98);
  animation: hero-glow-zoom 0.8s ease-out 1s forwards;
  will-change: opacity, transform;
}
.hero-glow-outer,
.hero-glow-inner {
  position: absolute;
  left: 50%;
  border-radius: 50%;
  display: block;
}
.hero-glow-outer {
  width: 60%;
  height: 512px;
  transform: translateX(-50%) scale(2.5);
  background: radial-gradient(
    ellipse at center,
    rgba(37, 99, 235, 0.5) 10%,
    rgba(37, 99, 235, 0) 60%
  );
}
.hero-glow-inner {
  width: 40%;
  height: 256px;
  transform: translateX(-50%) scale(2);
  background: radial-gradient(
    ellipse at center,
    rgba(37, 99, 235, 0.32) 10%,
    rgba(37, 99, 235, 0) 60%
  );
}
@media (max-width: 767px) {
  .hero-glow-outer { height: 256px; }
  .hero-glow-inner { height: 128px; }
}
@keyframes hero-glow-zoom {
  from { opacity: 0; transform: scale(0.98); }
  to   { opacity: 1; transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-glow {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* Pre-animation initial state for staggered blur-fade-up */
.hero-inner > .hero-pill,
.hero-inner > .hero-heading,
.hero-inner > .hero-tagline,
.hero-inner > .hero-cta-group,
.hero-inner > .hero-dashboard {
  opacity: 0;
  filter: blur(12px);
  transform: translateY(12px);
  will-change: opacity, filter, transform;
}

/* Announcement pill */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 4px 6px 4px 18px;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-on-light);
  box-shadow: 0 2px 8px -2px rgba(15, 23, 42, 0.08), 0 1px 0 rgba(15, 23, 42, 0.04);
  transition: transform 220ms var(--easing), box-shadow 220ms var(--easing), border-color 220ms var(--easing);
}
.hero-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 6px 16px -4px rgba(37, 99, 235, 0.18);
}
.hero-pill:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(37,99,235,0.35); }
.hero-pill-label { color: var(--text-on-light); }
.hero-pill-divider {
  width: 1px;
  height: 16px;
  background: var(--border-subtle);
}
.hero-pill-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #F1F5F9;
  color: var(--text-on-light);
  transition: background 220ms var(--easing), transform 220ms var(--easing);
}
.hero-pill:hover .hero-pill-chip {
  background: var(--bg-accent);
  color: #FFFFFF;
}
.hero-pill-chip svg {
  width: 12px;
  height: 12px;
}

/* Heading override now that pill sits above it */
.hero-heading { margin-top: 2rem; }

/* CTA group */
.hero-cta-group {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media (max-width: 640px) {
  .hero-cta-group { flex-direction: column; width: 100%; max-width: 320px; }
  .hero-cta-group .btn { width: 100%; }
}

/* Primary CTA wrapped with subtle padded border, matching the reference component */
.hero-cta-group .btn-primary {
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.08), 0 10px 24px -10px rgba(37, 99, 235, 0.4);
}

/* Dashboard reveal */
.hero-dashboard {
  position: relative;
  margin: 5rem auto 0;
  width: 100%;
  max-width: 1280px;
  perspective: 1200px;
}
.hero-dashboard::before {
  display: none;
}
.hero-dashboard-card {
  position: relative;
  max-width: 1152px;
  margin: 0 auto;
  padding: 0.75rem;
  background: #0A0A0A;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.4rem;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 30px 80px -28px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(0, 0, 0, 0.10);
  transform: rotateX(20deg) scale(1.05);
  transform-origin: center top;
  will-change: transform;
}
@media (max-width: 767px) {
  .hero-dashboard-card {
    transform: rotateX(20deg) scale(0.7);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-dashboard-card {
    transform: none;
  }
}
.hero-dashboard-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 15 / 8;
  object-fit: cover;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 767px) {
  .hero-dashboard { margin-top: 3rem; }
  .hero-dashboard-card { padding: 0.5rem; border-radius: 1.1rem; }
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-on-light-muted);
}
.hero-label { margin-bottom: 28px; }

.hero-heading {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "wght" 800, "SOFT" 25;
  font-size: clamp(3.6rem, 9.5vw, 8rem);
  line-height: 0.93;
  letter-spacing: -0.035em;
  color: var(--text-on-light);
  margin: 0 0 36px;
}
.hero-heading .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.hero-heading .word + .word { margin-left: 0.18em; }
.hero-heading .word > span {
  display: inline-block;
  will-change: transform, opacity;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.65;
  max-width: 620px;
  margin: 0 auto 44px;
  color: var(--text-on-light-muted);
}
.hero-tagline em {
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: "opsz" 36, "wght" 500;
  color: var(--text-on-light);
}
.hero-cta { margin-bottom: 12px; }

.scroll-cue {
  margin-top: 64px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-on-light-faint);
}
.scroll-cue-line {
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, transparent, var(--text-on-light-faint));
  animation: scrollPulse 1.8s ease-in-out infinite;
}
.scroll-cue-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
}

.section-content .section-label { margin-bottom: 20px; }

.section-heading {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 96, "wght" 700, "SOFT" 25;
  font-size: clamp(2.4rem, 4.4vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.028em;
  margin: 0 0 24px;
  color: var(--text-on-light);
}
.section-body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.65;
  color: #334155;
  max-width: 32vw;
}
.section-note {
  display: block;
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-on-light-faint);
}

/* When section text overlays a section that has the dark overlay active,
   the text needs to be readable on dark. Stats section handles its own colors. */

/* ---------------------------------------------------------------- */
/* Page flow (post-canvas sections in normal document flow)         */
/* ---------------------------------------------------------------- */
.page-flow {
  position: relative;
  z-index: 10;
  background: var(--bg-light);
}

.flow-section {
  position: relative;
  padding: 8rem var(--side-pad);
  width: 100%;
}
.flow-section.section-content { text-align: center; }
.flow-inner {
  max-width: 880px;
  margin: 0 auto;
}
.flow-section .section-label { margin-bottom: 22px; display: inline-block; }
.flow-section .section-heading {
  margin-left: auto;
  margin-right: auto;
  max-width: 18ch;
}
.flow-section .section-body {
  max-width: 60ch;
  margin: 0 auto;
}
.flow-section.section-cta {
  padding: 6rem var(--side-pad);
}

@media (max-width: 767px) {
  .flow-section { padding: 5rem var(--side-pad); }
  .flow-section.section-cta { padding: 4rem var(--side-pad); }
}

/* ---------------------------------------------------------------- */
/* Feature sections 002 + 003 — 2-column with custom SVG visuals     */
/* ---------------------------------------------------------------- */
.flow-feature {
  position: relative;
  padding: 7rem var(--side-pad) 3rem;
  width: 100%;
  isolation: isolate;
}
.flow-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(60% 60% at 92% 0%, rgba(37, 99, 235, 0.05), transparent 60%),
    radial-gradient(50% 70% at 8% 100%, rgba(37, 99, 235, 0.04), transparent 60%);
}
.flow-feature-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .flow-feature-inner {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
  .flow-feature--reverse .flow-feature-inner > .flow-feature-text { order: 2; }
  .flow-feature--reverse .flow-feature-inner > .flow-feature-visual { order: 1; }
}

.flow-feature-text {
  max-width: 480px;
  text-align: left;
}
.flow-feature .section-label { display: inline-block; margin-bottom: 18px; }
.flow-feature .section-heading {
  margin: 0 0 18px;
  max-width: 14ch;
  text-align: left;
}
.flow-feature .section-body {
  margin: 0 0 28px;
  max-width: 42ch;
  text-align: left;
  color: #475569;
  font-size: 1.02rem;
  line-height: 1.65;
}

.feature-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.feature-chips li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 12px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #1E40AF;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 999px;
}
.chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bg-accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.16);
}

/* Visual card — shared shell for both feature visuals */
.flow-feature-visual {
  margin: 0;
  width: 100%;
  max-width: 540px;
  justify-self: center;
}
.visual-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: 1.5rem;
  padding: 1.5rem 1.5rem 1.25rem;
  box-shadow:
    0 1px 0 rgba(15, 23, 42, 0.04) inset,
    0 30px 80px -36px rgba(37, 99, 235, 0.22),
    0 14px 36px -22px rgba(15, 23, 42, 0.12);
  transition: transform 320ms var(--easing), box-shadow 320ms var(--easing);
}
.visual-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(15, 23, 42, 0.04) inset,
    0 40px 90px -32px rgba(37, 99, 235, 0.30),
    0 18px 44px -20px rgba(15, 23, 42, 0.14);
}

/* ---- Section 002: prediction curve ---- */
.visual-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.visual-card-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-on-light-muted);
}
.visual-card-stat {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-on-light);
}
.visual-card-stat strong {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 36, "wght" 700;
  font-size: 1.15rem;
  color: var(--bg-accent);
  margin-right: 4px;
}
.curve-chart {
  width: 100%;
  height: clamp(180px, 28vw, 260px);
  display: block;
}
.curve-predicted,
.curve-actual {
  will-change: stroke-dashoffset;
}
.visual-card-foot {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
}
.visual-axis-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-on-light-faint);
}

/* ---- Section 003: integration pipe ---- */
.pipe-stack {
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 0;
  align-items: center;
  justify-items: center;
  padding: 0.75rem 0;
}
.pipe-node {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: #F8FAFC;
  border: 1px solid var(--border-subtle);
  border-radius: 0.9rem;
}
.pipe-node--dest {
  background: linear-gradient(180deg, #EFF6FF, #F8FAFC);
  border-color: rgba(37, 99, 235, 0.18);
}
.pipe-node-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.6rem;
  color: var(--bg-accent);
  background: rgba(37, 99, 235, 0.1);
}
.pipe-node-icon svg { width: 20px; height: 20px; }
.pipe-node-label {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 36, "wght" 600;
  font-size: 1.05rem;
  color: var(--text-on-light);
  display: block;
}
.pipe-node-meta {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-on-light-muted);
  display: block;
}
.pipe-node > div,
.pipe-node > span:not(.pipe-node-icon) {
  display: flex;
  flex-direction: column;
}
.pipe-flow {
  width: 4px;
  height: 64px;
  margin: 4px 0;
  overflow: visible;
}
.pipe-stream {
  will-change: stroke-dashoffset;
}
.pipe-status {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(34, 197, 94, 0.1);
  color: #166534;
  border: 1px solid rgba(34, 197, 94, 0.18);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.pipe-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.22);
  animation: pipePulse 2.4s ease-in-out infinite;
}
@keyframes pipePulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.22); }
  50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.05); }
}

@media (max-width: 899px) {
  .flow-feature { padding: 5rem var(--side-pad) 2rem; }
  .flow-feature .section-heading { max-width: 22ch; }
  .flow-feature-visual { max-width: 100%; }
}

/* ---------------------------------------------------------------- */
/* Section 002 — Adaptive Intelligence (dark variant)               */
/* ---------------------------------------------------------------- */
.flow-feature--dark {
  background: #0A0A0A;
  padding: 7rem var(--side-pad);
}
.flow-feature--dark::before {
  background:
    radial-gradient(60% 60% at 92% 0%, rgba(37, 99, 235, 0.10), transparent 60%),
    radial-gradient(50% 70% at 8% 100%, rgba(37, 99, 235, 0.06), transparent 60%);
}
.flow-feature--dark .section-label { color: rgba(255, 255, 255, 0.55); }
.flow-feature--dark .section-heading { color: #FFFFFF; }
.flow-feature--dark .section-body { color: rgba(255, 255, 255, 0.7); max-width: 56ch; }

/* Stack heading on top, cards full-width below */
.flow-feature--dark .flow-feature-inner {
  grid-template-columns: 1fr;
  gap: 3rem;
}
.flow-feature--dark .flow-feature-text {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.flow-feature--dark .flow-feature-text .section-heading {
  max-width: 22ch;
  margin: 0 auto 18px;
  text-align: center;
}
.flow-feature--dark .flow-feature-text .section-body {
  max-width: 56ch;
  margin: 0 auto 28px;
  text-align: center;
}

.adaptive-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
}
@media (min-width: 900px) {
  .adaptive-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    align-items: start;
  }
  .adaptive-card--accent { grid-column: 1 / -1; }
  .adaptive-card:nth-child(even):not(.adaptive-card--accent) {
    margin-top: 1.5rem;
  }
}
@media (max-width: 899px) {
  .adaptive-cards { gap: 10px; }
}

.adaptive-card {
  position: relative;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1.25rem;
  padding: 2.25rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-height: 220px;
  opacity: 0;
  will-change: transform, opacity;
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 280ms cubic-bezier(0.22, 1, 0.36, 1),
              border-color 280ms cubic-bezier(0.22, 1, 0.36, 1);
}
.adaptive-card:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.30);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 20px 50px -22px rgba(37, 99, 235, 0.28);
}

.adaptive-card-title {
  margin: 0;
  font-family: var(--font-display);
  font-variation-settings: "opsz" 96, "wght" 700, "SOFT" 25;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.025em;
  color: #FFFFFF;
}
.adaptive-card-body {
  margin: 0;
  max-width: 26ch;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
}

.adaptive-card-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 6px 14px 6px 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.78);
}
.adaptive-card-chip-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-accent);
  color: #fff;
  flex-shrink: 0;
}
.adaptive-card-chip-icon svg { width: 12px; height: 12px; }

.adaptive-card-badge {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0F0F0F;
  border: 2px solid rgba(37, 99, 235, 0.55);
  color: rgba(255, 255, 255, 0.85);
}
.adaptive-card-badge svg { width: 18px; height: 18px; }

.adaptive-card--accent {
  background: linear-gradient(180deg, #14193A, #0F1226);
  border-color: rgba(37, 99, 235, 0.32);
}
.adaptive-card--accent .adaptive-card-title {
  color: #DBEAFE;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  letter-spacing: -0.02em;
}
.adaptive-card--accent .adaptive-card-body {
  color: rgba(219, 234, 254, 0.72);
}

/* ---------------------------------------------------------------- */
/* Bento grid (Impact section, normal flow)                          */
/* ---------------------------------------------------------------- */
.flow-bento { padding: 2.5rem var(--side-pad) 7rem; }
.flow-bento-inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}
.flow-bento .section-label { display: inline-block; margin-bottom: 18px; }
.flow-bento .section-heading {
  max-width: 22ch;
  margin: 0 auto 14px;
}
.flow-bento-intro {
  max-width: 60ch;
  margin: 0 auto 3rem;
  color: var(--text-on-light-muted);
  font-weight: 500;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  width: 100%;
  text-align: left;
}
@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, minmax(170px, auto));
  }
}

.bento-cell {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 1.75rem;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: 1.25rem;
  box-shadow:
    0 1px 0 rgba(15, 23, 42, 0.04),
    0 14px 36px -22px rgba(15, 23, 42, 0.12);
  opacity: 0;
  transform: translateY(20px);
  will-change: opacity, transform;
}

@media (min-width: 768px) {
  .bento-cell--tall {
    grid-column: 1;
    grid-row: 1 / span 3;
  }
  .bento-cell--wide {
    grid-column: 2 / span 2;
    grid-row: 3;
  }
}

.bento-cell--soft {
  background: #F8FAFC;
}

.bento-cell--accent {
  background: var(--bg-accent);
  color: var(--text-on-accent);
  border-color: transparent;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 30px 80px -32px rgba(37, 99, 235, 0.55),
    0 14px 36px -22px rgba(15, 23, 42, 0.18);
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .bento-cell--accent {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }
}

.bento-pill {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 4px 12px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(37, 99, 235, 0.1);
  color: var(--bg-accent-deep);
  border-radius: 999px;
}
.bento-pill--on-accent {
  background: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.95);
}

.bento-stat {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "wght" 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--text-on-light);
  font-variant-numeric: tabular-nums;
}
.bento-stat-number { font-size: clamp(2.6rem, 4.4vw, 4rem); }
.bento-cell--feature .bento-stat-number { font-size: clamp(4rem, 6.5vw, 6.2rem); }
.bento-stat-suffix {
  font-size: 0.75em;
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "wght" 700;
  color: var(--bg-accent);
  margin-left: 0.08em;
}

.bento-cell-title {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 36, "wght" 600;
  font-size: 1.15rem;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--text-on-light);
  margin: 0;
}
.bento-cell--feature .bento-cell-title {
  font-size: 1.5rem;
}
.bento-cell-title--on-accent {
  color: var(--text-on-accent);
  font-size: 1.5rem;
}
.bento-cell-body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-on-light-muted);
  margin: 0;
  max-width: 32ch;
}
.bento-cell-body--on-accent {
  color: rgba(255, 255, 255, 0.85);
  max-width: 50ch;
}

.bento-cell--feature {
  justify-content: space-between;
}
.bento-cell-foot { margin-top: auto; }

.bento-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #F1F5F9;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-on-light-muted);
}
.bento-chip svg { width: 14px; height: 14px; color: var(--bg-accent); }

.bento-wide-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.bento-wide-cta {
  flex-shrink: 0;
  gap: 8px;
}
.bento-wide-cta svg { width: 14px; height: 14px; }

@media (max-width: 767px) {
  .flow-bento { padding: 5rem var(--side-pad); }
  .bento-cell { padding: 1.5rem; }
}

/* ---------------------------------------------------------------- */
/* 2-column mockup layout (section 005)                             */
/* ---------------------------------------------------------------- */
.flow-mockup {
  position: relative;
  padding: 8rem var(--side-pad);
  width: 100%;
  overflow: hidden;
}
.flow-mockup-inner {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: end;
}
@media (min-width: 900px) {
  .flow-mockup-inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
.flow-mockup-text {
  max-width: 546px;
  text-align: left;
}
.dark-band .flow-mockup-text > .section-label {
  display: inline-block;
  margin: 0 0 18px;
  text-align: left;
}
.dark-band .flow-mockup-text > .section-heading {
  margin: 0 0 18px;
  max-width: 22ch;
  text-align: left;
}
.dark-band .flow-mockup-text > .section-body {
  margin: 0;
  max-width: 38ch;
  text-align: left;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  line-height: 1.65;
}
.flow-mockup-stack {
  position: relative;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
}
.flow-mockup-primary {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: #0F0F0F;
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 40px 80px -32px rgba(0, 0, 0, 0.7);
  will-change: transform;
}
.flow-mockup-primary img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.flow-mockup-secondary {
  position: absolute;
  top: -4%;
  right: -10%;
  width: 68%;
  aspect-ratio: 16 / 9;
  background: #090909;
  border-radius: 24px;
  overflow: hidden;
  filter: blur(1px);
  z-index: 1;
  will-change: transform;
}
.flow-mockup-secondary img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  opacity: 0.85;
}
.flow-mockup-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  pointer-events: none;
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(255, 255, 255, 0.24) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}
@media (max-width: 899px) {
  .flow-mockup { padding: 5rem var(--side-pad); }
  .flow-mockup-text { margin: 0 auto; max-width: 100%; }
  .flow-mockup-stack { max-width: 360px; }
}

/* ---------------------------------------------------------------- */
/* Dark band — wraps sections 005 + 006 with soft top/bottom fade   */
/* ---------------------------------------------------------------- */
.dark-band {
  position: relative;
  background: #0A0A0A;
  color: var(--text-on-dark);
}
.dark-band .section-label   { color: rgba(255, 255, 255, 0.55); }
.dark-band .section-heading { color: var(--text-on-dark); }
.dark-band .section-body    { color: rgba(255, 255, 255, 0.78); }
.dark-band .section-note    { color: rgba(255, 255, 255, 0.55); }
.dark-band > .flow-section:first-child { padding-top: 11rem; }
.dark-band > .flow-section:last-child  { padding-bottom: 11rem; }
@media (max-width: 767px) {
  .dark-band > .flow-section:first-child { padding-top: 7rem; }
  .dark-band > .flow-section:last-child  { padding-bottom: 7rem; }
}

/* ---------------------------------------------------------------- */
/* Bento — dark variant (when inside .dark-band)                    */
/* ---------------------------------------------------------------- */
.dark-band .flow-bento-intro { color: rgba(255, 255, 255, 0.7); }

.dark-band .bento-cell {
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 20px 50px -22px rgba(0, 0, 0, 0.55);
}
.dark-band .bento-cell--soft {
  background: #0F1117;
  border-color: rgba(255, 255, 255, 0.04);
}
.dark-band .bento-cell--accent {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 30px 80px -28px rgba(37, 99, 235, 0.55),
    0 14px 36px -22px rgba(0, 0, 0, 0.4);
}

.dark-band .bento-cell-title { color: #FFFFFF; }
.dark-band .bento-cell-body  { color: rgba(255, 255, 255, 0.62); }
.dark-band .bento-stat       { color: #FFFFFF; }
.dark-band .bento-stat-suffix { color: var(--bg-accent); }
.dark-band .bento-pill {
  background: rgba(37, 99, 235, 0.18);
  color: #DBEAFE;
}
.dark-band .bento-chip {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ---------------------------------------------------------------- */
/* Text-stagger — per-character slide-up                            */
/* ---------------------------------------------------------------- */
.stagger-word {
  display: inline-block;
  white-space: nowrap;
}
.stagger-char-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  line-height: inherit;
}
.stagger-char {
  display: inline-block;
  will-change: transform, opacity;
}
@media (prefers-reduced-motion: reduce) {
  .stagger-char {
    transform: none;
    opacity: 1;
  }
}

/* ---------------------------------------------------------------- */
/* Final CTA                                                        */
/* ---------------------------------------------------------------- */
.section-cta {
  justify-content: center;
}
.cta-slab {
  position: relative;
  margin: 0 auto;
  max-width: 880px;
  padding: 80px 56px;
  text-align: center;
  background: var(--bg-accent);
  color: var(--text-on-accent);
  border-radius: 32px;
  box-shadow:
    0 60px 120px -50px rgba(37,99,235,0.55),
    0 30px 60px -30px rgba(10, 10, 30, 0.4);
}
.cta-slab::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(140% 100% at 50% 0%, rgba(255,255,255,0.18), transparent 60%);
  pointer-events: none;
}
.section-label-on-accent {
  color: rgba(255,255,255,0.78);
  margin-bottom: 22px;
  display: inline-block;
}
.cta-heading {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "wght" 700, "SOFT" 30;
  font-size: clamp(2.4rem, 4.8vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin: 0 0 22px;
}
.cta-body {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin: 0 auto 36px;
}
.cta-note {
  margin: 18px 0 0;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.7);
}

/* ---------------------------------------------------------------- */
/* Footer                                                           */
/* ---------------------------------------------------------------- */
.site-footer {
  position: relative;
  z-index: 10;
  background: var(--bg-light);
  border-top: 1px solid var(--border-subtle);
  padding: 56px var(--side-pad);
}
.footer-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-wordmark {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 36, "wght" 700;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  color: var(--text-on-light);
}
.footer-dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--bg-accent);
}
.footer-nav {
  display: inline-flex;
  gap: 26px;
}
.footer-nav a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-on-light-muted);
  transition: color 200ms var(--easing);
}
.footer-nav a:hover { color: var(--bg-accent); }
.footer-meta {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-on-light-faint);
  margin: 0;
  letter-spacing: 0.02em;
}

/* ---------------------------------------------------------------- */
/* Mobile responsive                                                */
/* ---------------------------------------------------------------- */
@media (max-width: 767px) {
  .hero-standalone { padding: 7rem var(--side-pad) 4rem; }
  .section-body { max-width: 100%; }
  .cta-slab { padding: 56px 28px; border-radius: 22px; }
}

/* ---------------------------------------------------------------- */
/* Reduced motion                                                   */
/* ---------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .scroll-cue-line { animation: none; opacity: 1; }
}

/* ---------------------------------------------------------------- */
/* Book-a-call page                                                 */
/* ---------------------------------------------------------------- */

.btn-primary.is-active {
  background: #0A0A0A;
  color: #FFFFFF;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.35);
}
.btn-primary.is-active:hover {
  background: #1F1F1F;
  color: #FFFFFF;
}

.booking-hero {
  padding: 9rem var(--side-pad) 2.5rem;
  text-align: center;
  background: var(--bg-light);
}
.booking-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}
.booking-hero .section-label {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--text-on-light-muted);
}
.booking-heading {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "wght" 700, "SOFT" 25;
  font-size: clamp(2.8rem, 5.4vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.028em;
  color: var(--text-on-light);
  margin: 0 0 14px;
}
.booking-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.55;
  color: var(--text-on-light-muted);
  max-width: 48ch;
  margin: 0 auto;
}

.booking-calendly {
  padding: 2rem var(--side-pad) 4rem;
  background: var(--bg-light);
}
.booking-calendly-inner {
  max-width: 980px;
  margin: 0 auto;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow:
    0 1px 0 rgba(15, 23, 42, 0.04) inset,
    0 30px 80px -32px rgba(37, 99, 235, 0.22),
    0 14px 36px -22px rgba(15, 23, 42, 0.12);
  background: #FFFFFF;
}
.booking-calendly-note {
  text-align: center;
  padding: 18px var(--side-pad) 0;
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-on-light-faint);
  letter-spacing: 0.02em;
}

.booking-faq {
  padding: 5rem var(--side-pad) 7rem;
  background: var(--bg-light);
}
.booking-faq-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.booking-faq .section-label {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--text-on-light-muted);
}
.booking-faq-heading {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 96, "wght" 700, "SOFT" 25;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 2.5rem;
  color: var(--text-on-light);
}
.booking-faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}
.booking-faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: 1rem;
  padding: 1.5rem 1.75rem;
  box-shadow:
    0 1px 0 rgba(15, 23, 42, 0.03) inset,
    0 8px 24px -16px rgba(15, 23, 42, 0.10);
}
.booking-faq-question {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-variation-settings: "opsz" 36, "wght" 600;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--text-on-light);
}
.booking-faq-answer {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.65;
  color: #475569;
}

@media (max-width: 767px) {
  .booking-hero { padding: 7rem var(--side-pad) 2rem; }
  .booking-calendly { padding: 1.5rem var(--side-pad) 3rem; }
  .booking-faq { padding: 4rem var(--side-pad) 5rem; }
}

/* ---------------------------------------------------------------- */
/* Legal pages (privacy.html, terms.html)                            */
/* ---------------------------------------------------------------- */
.legal-hero {
  padding: 9rem var(--side-pad) 1.5rem;
  text-align: center;
  background: var(--bg-light);
}
.legal-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}
.legal-heading {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "wght" 700, "SOFT" 25;
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text-on-light);
  margin: 0 0 12px;
}
.legal-sub {
  font-family: var(--font-body);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-on-light-faint);
  margin: 0;
}

.legal-content {
  padding: 3rem var(--side-pad) 7rem;
  background: var(--bg-light);
}
.legal-content-inner {
  max-width: 720px;
  margin: 0 auto;
}
.legal-section {
  padding: 1.25rem 0;
}
.legal-section-heading {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 36, "wght" 600;
  font-size: 1.35rem;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--text-on-light);
  margin: 0 0 0.85rem;
}
.legal-section-body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: #334155;
  margin: 0;
}
.legal-section-body a {
  color: var(--bg-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 200ms var(--easing);
}
.legal-section-body a:hover,
.legal-section-body a:focus-visible {
  color: var(--bg-accent-deep);
  outline: none;
}
.legal-divider {
  border: 0;
  border-top: 1px solid var(--border-subtle);
  margin: 0.5rem 0;
}

@media (max-width: 767px) {
  .legal-hero { padding: 7rem var(--side-pad) 1rem; }
  .legal-content { padding: 2rem var(--side-pad) 5rem; }
  .legal-section { padding: 1rem 0; }
}
