/* Fortec Landing — scoped styles */

/* Warmer paper + accent overrides (kept within design-system spirit) */
:root, .fortec {
  --paper:       #F7F5F0;   /* warm off-white — primary page bg */
  --paper-2:     #F1EEE7;   /* slightly deeper — alternating sections */
  --paper-cool:  #F2F4F7;   /* cool slate paper — platform section */
  --surface-card: #FFFFFF;  /* cards stay crisp white for contrast */
  --ink-tint:    #E8E4DA;   /* warm border tint */
  --accent-ink:  #0F1F3A;   /* deep institutional navy — quiet accent */
  --accent-gold: #B8894B;   /* muted warm accent, only for small highlights */
  /* Override design-system token so cascading rules inherit warm paper */
  --background:  #F7F5F0;
}

/* Override design-system compound selector — higher specificity than `body` alone */
.fortec body, body.fortec, html body { background: var(--paper); }

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--fg-1);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01","cv11","tnum";
  overflow-x: clip;
}
::selection { background: #0A0A0A; color: #FFF; }

/* -------- Reusable tokens ---------------------------------------- */
.num { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
.mono { font-family: var(--font-mono); }
.eyebrow {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--fg-2);
  font-feature-settings: normal;
}
.muted { color: var(--fg-2); }
.gain { color: var(--fortec-gain); }
.loss { color: var(--fortec-loss); }
.warn { color: var(--fortec-warn); }
.info { color: var(--fortec-info); }

/* Typography overrides for landing — larger display scale */
h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -0.025em; }
p { margin: 0; }

.display-xl { font-size: clamp(44px, 6.4vw, 88px); line-height: 1.02; letter-spacing: -0.04em; font-weight: 700; }
.display-lg { font-size: clamp(36px, 4.4vw, 64px); line-height: 1.05; letter-spacing: -0.035em; font-weight: 700; }
.display-md { font-size: clamp(28px, 3.2vw, 44px); line-height: 1.1; letter-spacing: -0.03em; font-weight: 700; }
.display-sm { font-size: clamp(20px, 2vw, 26px); line-height: 1.25; letter-spacing: -0.015em; font-weight: 600; }

.lead { font-size: clamp(16px, 1.2vw, 19px); line-height: 1.5; color: var(--fg-2); font-weight: 400; }

/* -------- Layout ------------------------------------------------- */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; min-width: 0; }
.section { padding: 96px 0; position: relative; }
.section--tight { padding: 72px 0; }
.section--sm { padding: 48px 0; }
@media (max-width: 720px) {
  .wrap { padding: 0 20px; }
  .section { padding: 64px 0; }
}

/* Hairline dividers — the border-as-divider principle */
.hr { border: 0; border-top: 1px solid var(--border); margin: 0; }

/* -------- Nav --------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,245,240,0.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border-subtle);
}
.nav__inner {
  display: flex; align-items: center; gap: 32px;
  height: 64px; max-width: 1280px; margin: 0 auto; padding: 0 32px;
}
.nav__brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
.nav__links { display: flex; gap: 24px; margin-left: 16px; }
.nav__link {
  background: none; border: 0; color: var(--fg-1); font: inherit; cursor: pointer;
  font-size: 13.5px; font-weight: 500; padding: 6px 2px; text-decoration: none;
  transition: color var(--dur-2) var(--ease-standard);
}
.nav__link:hover { color: var(--fg-2); }
.nav__right { margin-left: auto; display: flex; align-items: center; gap: 12px; }
@media (max-width: 860px) { .nav__links { display: none; } }

/* -------- Buttons ----------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 40px; padding: 0 18px; border-radius: 8px;
  font: inherit; font-size: 13.5px; font-weight: 500;
  border: 1px solid transparent; cursor: pointer;
  white-space: nowrap;
  transition: background var(--dur-2) var(--ease-standard),
              transform var(--dur-2) var(--ease-standard),
              box-shadow var(--dur-2) var(--ease-standard),
              color var(--dur-2) var(--ease-standard);
  text-decoration: none;
}
.btn--primary { background: var(--fortec-ink); color: #FFF; }
.btn--primary:hover { background: #1F1F1F; box-shadow: 0 0 0 4px rgba(10,10,10,0.06); }
.btn--outline { background: var(--surface-card); color: var(--fortec-ink); border-color: var(--border-strong); box-shadow: var(--shadow-xs); }
.btn--outline:hover { background: var(--paper); }
.btn--ghost { background: transparent; color: var(--fortec-ink); }
.btn--ghost:hover { background: var(--neutral-100); }
.btn--inverse { background: #FFF; color: var(--fortec-ink); }
.btn--inverse:hover { background: var(--neutral-200); }
.btn--lg { height: 48px; padding: 0 22px; font-size: 14.5px; border-radius: 10px; }
.btn--xl { height: 56px; padding: 0 28px; font-size: 15.5px; border-radius: 12px; }
.btn:focus-visible { outline: none; box-shadow: var(--shadow-focus); }

/* -------- Marquee band (big bold declarative) ------------------- */
/* Fintech world — animated global network panel */
.fworld {
  background: var(--fortec-ink);
  color: #FAFAFA;
  border-top: 1px solid #0A0A0A;
  border-bottom: 1px solid #0A0A0A;
  position: relative;
  overflow: hidden;
}
.fworld::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 30% 40%, rgba(224,176,80,0.08), transparent 60%),
    radial-gradient(ellipse 50% 50% at 82% 70%, rgba(224,176,80,0.05), transparent 60%);
}
.fworld__inner { position: relative; padding: 28px 0 36px; }

.fworld__chrome {
  display: flex; align-items: center; gap: 16px;
  padding: 0 40px 18px;
  font-family: var(--font-mono, 'JetBrains Mono', ui-monospace, monospace);
  font-size: 12px; letter-spacing: 0.04em;
  color: rgba(250,250,250,0.7);
}
.fworld__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 10px;
  border: 1px solid rgba(224,176,80,0.4);
  border-radius: 999px;
  background: rgba(224,176,80,0.08);
  color: var(--accent-gold);
  font-weight: 600;
}
.fworld__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-gold);
  box-shadow: 0 0 0 0 rgba(224,176,80,0.9);
  animation: fw-pulse 1.8s ease-out infinite;
}
.fworld__label { flex: 1; }
.fworld__label b { color: #FAFAFA; font-weight: 600; }
.fworld__time { color: rgba(250,250,250,0.85); font-weight: 500; }

.fworld__stage {
  position: relative;
  margin: 0 24px;
  aspect-ratio: 1600 / 520;
  max-height: 560px;
  width: calc(100% - 48px);
}
.fworld__svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}

.fworld__ring {
  transform-origin: center;
  animation: fw-ring 2.6s ease-out infinite;
}
.fworld__hubs g.is-focus circle[r="3.2"] { fill: #FFD77A; }
.fworld__hubs g.is-focus text { fill: #FFD77A; fill-opacity: 1; }

.fworld__card {
  position: absolute;
  top: 20px; right: 24px;
  min-width: 200px;
  padding: 14px 16px;
  background: rgba(12,12,12,0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(250,250,250,0.08);
  border-radius: 12px;
  animation: fw-cardin 0.5s ease-out;
}
.fworld__card-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--font-mono, 'JetBrains Mono', ui-monospace, monospace);
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 6px;
}
.fworld__card-city { color: #FAFAFA; font-weight: 600; }
.fworld__card-cat { color: var(--accent-gold); }
.fworld__card-metric {
  font-family: var(--font-display, 'Fraunces', serif);
  font-size: 22px; font-weight: 600; letter-spacing: -0.02em;
  color: #FAFAFA; line-height: 1.05;
}
.fworld__card-bar {
  margin-top: 10px; height: 2px;
  background: rgba(250,250,250,0.1); border-radius: 2px; overflow: hidden;
}
.fworld__card-fill {
  height: 100%; background: var(--accent-gold);
  transition: width 2.4s cubic-bezier(.2,.8,.2,1);
}

.fworld__stamps {
  position: absolute;
  left: 40px; bottom: 14px;
  display: flex; gap: 18px; align-items: center; flex-wrap: wrap;
  font-family: var(--font-mono, 'JetBrains Mono', ui-monospace, monospace);
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(250,250,250,0.55);
  max-width: calc(100% - 240px);
}
.fworld__sep { color: rgba(224,176,80,0.55); }

@keyframes fw-dash {
  0%   { stroke-dashoffset: 1720; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { stroke-dashoffset: 0;    opacity: 0; }
}
@keyframes fw-ring {
  0%   { r: 10; opacity: 0.9; }
  100% { r: 34; opacity: 0; }
}
@keyframes fw-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(224,176,80,0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(224,176,80,0); }
  100% { box-shadow: 0 0 0 0 rgba(224,176,80,0); }
}
@keyframes fw-cardin {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 820px) {
  .fworld__chrome { flex-wrap: wrap; padding: 0 20px 14px; }
  .fworld__stage { margin: 0 12px; width: calc(100% - 24px); }
  .fworld__card { top: auto; bottom: 60px; right: 12px; left: 12px; min-width: 0; }
  .fworld__stamps { position: static; padding: 14px 20px 0; max-width: 100%; }
}

/* -------- Stat strip (bold, brutalist row) --------------------- */
.stat-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink-tint);
  border-bottom: 1px solid var(--ink-tint);
  background: var(--paper);
}
.stat-strip__cell {
  padding: 36px 28px; border-right: 1px solid var(--ink-tint);
  display: flex; flex-direction: column; gap: 6px;
  position: relative; overflow: hidden;
}
.stat-strip__cell:last-child { border-right: 0; }
.stat-strip__val {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(36px, 4.4vw, 56px); letter-spacing: -0.04em;
  line-height: 1; font-variant-numeric: tabular-nums;
}
.stat-strip__val sup { font-size: 0.5em; font-weight: 600; color: var(--fg-2); margin-left: 4px; top: -0.7em; position: relative; }
.stat-strip__label { font-size: 12px; color: var(--fg-2); font-weight: 500; }
.stat-strip__spark { position: absolute; bottom: 8px; right: 10px; opacity: 0.25; }
@media (max-width: 820px) {
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .stat-strip__cell:nth-child(2) { border-right: 0; }
  .stat-strip__cell:nth-child(-n+2) { border-bottom: 1px solid var(--ink-tint); }
}

/* -------- Accent callout (black + gold moment) ----------------- */
.callout {
  background: var(--fortec-ink); color: #FAFAFA;
  border-radius: 20px; padding: 48px;
  display: grid; grid-template-columns: auto 1fr auto; gap: 32px; align-items: center;
  position: relative; overflow: hidden;
}
.callout::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(420px 220px at 88% 10%, rgba(184,137,75,0.22), transparent 60%),
    radial-gradient(320px 180px at 10% 100%, rgba(15,31,58,0.35), transparent 60%);
  pointer-events: none;
}
.callout__num {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(80px, 10vw, 140px); letter-spacing: -0.06em; line-height: 0.85;
  color: var(--accent-gold);
}
.callout__body { position: relative; }
.callout__kicker {
  font-family: var(--font-mono); font-size: 11px; color: var(--accent-gold);
  letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 10px;
}
.callout__title { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.025em; font-size: clamp(24px, 2.6vw, 34px); line-height: 1.15; }
.callout__arrow {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--accent-gold); color: var(--fortec-ink);
  display: grid; place-items: center; flex-shrink: 0;
  transition: transform var(--dur-3) var(--ease-standard);
}
.callout:hover .callout__arrow { transform: rotate(-45deg) scale(1.06); }
@media (max-width: 720px) {
  .callout { grid-template-columns: 1fr; padding: 32px; gap: 20px; text-align: left; }
  .callout__num { font-size: 80px; }
}

/* -------- Hero flourish: floating chips + grid --------------- */
.hero { background:
  radial-gradient(900px 500px at 85% -10%, rgba(184,137,75,0.10), transparent 65%),
  radial-gradient(700px 420px at 0% 110%, rgba(15,31,58,0.06), transparent 60%),
  var(--paper);
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(10,10,10,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10,10,10,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 80%);
  pointer-events: none; z-index: 0;
}
.hero > * { position: relative; z-index: 1; }

/* Floating feature chips around the hero dash */
.chip {
  position: absolute; z-index: 3;
  background: var(--surface-card); border: 1px solid var(--ink-tint);
  border-radius: 999px; padding: 7px 12px 7px 10px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500;
  box-shadow: 0 6px 20px rgba(10,10,10,0.06);
  animation: float 6s ease-in-out infinite;
}
.chip__dot { width: 7px; height: 7px; border-radius: 50%; }
.chip--a { top: -14px; left: -24px; animation-delay: 0s; }
.chip--b { bottom: 48px; right: -28px; animation-delay: -2s; }
.chip--c { top: 34%; left: -40px; animation-delay: -4s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.dash-wrap { position: relative; min-width: 0; width: 100%; }

/* Hero tilt */
.dash { transform: perspective(1400px) rotateY(-3deg) rotateX(2deg); transition: transform 600ms var(--ease-out); }
.dash-wrap:hover .dash { transform: perspective(1400px) rotateY(0) rotateX(0); }

/* Badge for the headline */
.hero__flair {
  display: inline-block; margin-left: 8px;
  font-family: var(--font-display); font-weight: 800;
  color: var(--accent-gold); font-style: italic;
  transform: translateY(-4px) rotate(-3deg);
  font-size: 0.7em;
}

/* Underline swipe for the title */
.swipe {
  position: relative; display: inline-block;
  background-image: linear-gradient(var(--accent-gold), var(--accent-gold));
  background-repeat: no-repeat;
  background-position: 0 90%;
  background-size: 100% 0.35em;
  padding: 0 2px;
}

/* -------- Section tints ---------------------------------------- */
.section--paper { background: var(--paper); }
.section--paper-warm { background: var(--paper-2); }
.section--paper-cool { background: var(--paper-cool); }
.section--divider-top { border-top: 1px solid var(--ink-tint); }
.section--divider-bottom { border-bottom: 1px solid var(--ink-tint); }

/* -------- Hero -------------------------------------------------- */
.hero {
  padding: 56px 0 80px;
  border-bottom: 1px solid var(--ink-tint);
  position: relative;
  background: var(--paper);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__grid > * { min-width: 0 !important; max-width: 100%; overflow: hidden; }
.hero__grid > *, .hero__grid > * > * { min-width: 0; }
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 12px 6px 8px;
  border: 1px solid var(--ink-tint);
  border-radius: 999px;
  background: var(--surface-card);
  font-size: 12px; font-weight: 500;
  color: var(--fg-1);
  margin-bottom: 24px;
}
.hero__eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--fortec-gain); box-shadow: 0 0 0 3px rgba(11,143,76,0.15); }
.hero__title { margin-bottom: 20px; }
.hero__sub { max-width: 540px; color: var(--fg-2); margin-bottom: 32px; }
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__trust {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--border-subtle);
}
.hero__trust-label { font-size: 11px; font-weight: 600; color: var(--fg-3); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 14px; }
.hero__trust-logos {
  display: flex; flex-wrap: wrap; gap: 28px 32px; align-items: center;
  font-family: var(--font-display);
  color: var(--neutral-400);
}
.hero__trust-logos span {
  font-size: 15px; font-weight: 600; letter-spacing: -0.01em;
  transition: color var(--dur-2);
}
.hero__trust-logos span:hover { color: var(--neutral-700); }

/* Hero dashboard mock */
.dash {
  background: var(--surface-card); border: 1px solid var(--ink-tint);
  border-radius: 16px; box-shadow: var(--shadow-sm);
  overflow: hidden;
  position: relative;
  min-width: 0; width: 100%;
}
.dash__bar {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-bottom: 1px solid var(--ink-tint);
  background: var(--paper);
}
.dash__dots { display: flex; gap: 5px; }
.dash__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--neutral-300); }
.dash__path { flex: 1; text-align: center; font-family: var(--font-mono); font-size: 11px; color: var(--fg-2); }
.dash__live { display: flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 600; letter-spacing: 0.1em; color: var(--fortec-gain); text-transform: uppercase; }
.dash__live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--fortec-gain); animation: pulse 1.8s infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(11,143,76,0.5); }
  50% { opacity: 0.6; box-shadow: 0 0 0 5px rgba(11,143,76,0); }
}

.dash__body { padding: 20px; }
.dash__head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.dash__label { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; color: var(--fg-2); text-transform: uppercase; }
.dash__value { font-family: var(--font-mono); font-size: 34px; font-weight: 600; letter-spacing: -0.02em; line-height: 1; margin-top: 6px; font-variant-numeric: tabular-nums; }
.dash__delta { font-family: var(--font-mono); font-size: 12px; margin-top: 6px; }
.dash__chart { width: 100%; height: 180px; }
.dash__footer {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0;
  border-top: 1px solid var(--border-subtle);
  padding-top: 14px; margin-top: 14px;
}
.dash__cell { padding: 0 12px; border-left: 1px solid var(--border-subtle); }
.dash__cell:first-child { padding-left: 0; border-left: 0; }
.dash__cell-label { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; color: var(--fg-2); text-transform: uppercase; }
.dash__cell-val { font-family: var(--font-mono); font-size: 14px; font-weight: 600; margin-top: 4px; letter-spacing: -0.01em; }

/* Ticker strip */
.ticker {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--ink-tint);
  background: var(--paper);
  padding: 10px 0;
  width: 100%;
}
.ticker__track {
  display: flex; gap: 32px; align-items: center;
  animation: ticker-scroll 60s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.ticker__item {
  display: inline-flex; gap: 8px; align-items: center;
  font-size: 12px;
}
.ticker__sym {
  font-family: var(--font-mono); font-weight: 600;
  font-size: 11px; color: var(--fg-1);
  padding: 2px 6px; background: var(--surface-card);
  border: 1px solid var(--ink-tint); border-radius: 4px;
}
.ticker__price { font-family: var(--font-mono); font-size: 12px; color: var(--fg-1); font-variant-numeric: tabular-nums; }
.ticker__chg { font-family: var(--font-mono); font-size: 11px; font-variant-numeric: tabular-nums; }

/* AI signal card on hero */
.signal {
  position: absolute; right: -14px; bottom: -14px;
  background: var(--surface-card); border: 1px solid var(--ink-tint);
  border-radius: 12px; box-shadow: var(--shadow-md);
  padding: 12px 14px; width: 260px;
  display: flex; gap: 12px; align-items: flex-start;
}
.signal__icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--neutral-950); color: #FFF;
  display: grid; place-items: center; flex-shrink: 0;
  position: relative;
}
.signal__icon::after {
  content: ''; position: absolute; inset: -3px;
  border-radius: 10px; border: 2px solid rgba(10,10,10,0.2);
  animation: signal-pulse 2.4s infinite var(--ease-standard);
}
@keyframes signal-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.25); opacity: 0; }
}
.signal__label { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-2); }
.signal__txt { font-size: 12.5px; font-weight: 500; margin-top: 3px; line-height: 1.35; }
.signal__conf { font-family: var(--font-mono); font-size: 10px; color: var(--fg-2); margin-top: 6px; }

/* -------- Section 2: Problem / Promise --------------------------- */
.promise__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--ink-tint);
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface-card);
}
.promise__col {
  padding: 40px 36px;
  border-right: 1px solid var(--border-subtle);
  display: flex; flex-direction: column; gap: 16px;
}
.promise__col:last-child { border-right: 0; }
.promise__icon {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  color: var(--fortec-ink);
}
.promise__title { font-size: 20px; font-weight: 600; letter-spacing: -0.02em; }
.promise__body { color: var(--fg-2); font-size: 14.5px; line-height: 1.55; }
.promise__num {
  font-family: var(--font-mono); font-size: 11px; color: var(--fg-3);
  margin-bottom: -8px;
}
@media (max-width: 860px) {
  .promise__grid { grid-template-columns: 1fr; }
  .promise__col { border-right: 0; border-bottom: 1px solid var(--border-subtle); }
  .promise__col:last-child { border-bottom: 0; }
}

/* -------- Section 3: Tabs --------------------------------------- */
.platform { background: var(--paper-cool); border-top: 1px solid var(--ink-tint); border-bottom: 1px solid var(--ink-tint); }
.platform__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 32px; }
.tabs { display: flex; gap: 4px; flex-wrap: wrap; }
.tab {
  background: transparent; border: 1px solid transparent;
  font: inherit; font-size: 13.5px; font-weight: 500;
  padding: 10px 16px; border-radius: 999px;
  cursor: pointer; color: var(--fg-2);
  transition: all var(--dur-3) var(--ease-standard);
  display: inline-flex; align-items: center; gap: 8px;
}
.tab:hover { color: var(--fg-1); }
.tab.is-active { background: var(--fortec-ink); color: #FFF; }
.tab__dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; opacity: 0.6; }
.tab.is-active .tab__dot { opacity: 1; }

.tab-panel {
  background: var(--surface-card);
  border: 1px solid var(--ink-tint);
  border-radius: 16px;
  overflow: hidden;
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  min-height: 460px;
}
.tab-panel__copy { padding: 40px; display: flex; flex-direction: column; }
.tab-panel__title { margin-bottom: 14px; }
.tab-panel__body { color: var(--fg-2); font-size: 15px; line-height: 1.55; margin-bottom: 24px; max-width: 460px; }
.tab-panel__list { display: flex; flex-direction: column; gap: 10px; margin: 0 0 28px; padding: 0; list-style: none; }
.tab-panel__list li {
  display: flex; align-items: baseline; gap: 12px; font-size: 14px;
  padding: 8px 0; border-bottom: 1px solid var(--border-subtle);
}
.tab-panel__list li:last-child { border-bottom: 0; }
.tab-panel__bullet {
  font-family: var(--font-mono); font-size: 10px; color: var(--fg-3);
  width: 20px; flex-shrink: 0;
}
.tab-panel__viz {
  border-left: 1px solid var(--ink-tint);
  background:
    linear-gradient(180deg, #FFFFFF 0%, #F5F7FA 100%);
  padding: 32px;
  position: relative;
  display: flex; flex-direction: column;
  overflow: hidden;
}
@media (max-width: 860px) {
  .tab-panel { grid-template-columns: 1fr; }
  .tab-panel__viz { border-left: 0; border-top: 1px solid var(--border); }
}

/* Ranked stock list */
.rank { display: flex; flex-direction: column; gap: 8px; }
.rank__hd {
  display: grid; grid-template-columns: 32px 1fr auto 80px; gap: 12px;
  font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--fg-3); padding: 0 12px 8px;
  border-bottom: 1px solid var(--border-subtle);
}
.rank__row {
  display: grid; grid-template-columns: 32px 1fr auto 80px; gap: 12px;
  align-items: center;
  padding: 10px 12px; background: #FFFFFF; border: 1px solid var(--ink-tint);
  border-radius: 8px;
  font-size: 13px;
  animation: rise 600ms var(--ease-out) both;
}
.rank__rank { font-family: var(--font-mono); font-weight: 600; font-size: 13px; color: var(--fg-2); }
.rank__sym { font-family: var(--font-mono); font-weight: 600; font-size: 12px; letter-spacing: 0.02em; }
.rank__name { font-size: 12px; color: var(--fg-2); }
.rank__score { font-family: var(--font-mono); font-weight: 600; font-variant-numeric: tabular-nums; text-align: right; }
.rank__bar { position: relative; height: 6px; background: var(--neutral-100); border-radius: 999px; overflow: hidden; }
.rank__bar-fill { position: absolute; inset: 0 auto 0 0; background: var(--fortec-ink); border-radius: 999px; animation: fill 900ms var(--ease-out) both; }
@keyframes fill { from { transform: scaleX(0); transform-origin: left; } to { transform: scaleX(1); transform-origin: left; } }
@keyframes rise { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* Banking list */
.bank-list { display: flex; flex-direction: column; gap: 0; background: #FFFFFF; border: 1px solid var(--ink-tint); border-radius: 10px; overflow: hidden; }
.bank-row {
  display: grid; grid-template-columns: 32px 1fr auto auto;
  gap: 14px; align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-subtle);
  animation: rise 600ms var(--ease-out) both;
}
.bank-row:last-child { border-bottom: 0; }
.bank-row__icon {
  width: 32px; height: 32px; border-radius: 8px; background: var(--neutral-100);
  display: grid; place-items: center; color: var(--fg-1);
}
.bank-row__label { font-size: 13.5px; font-weight: 500; }
.bank-row__sub { font-size: 11.5px; color: var(--fg-2); margin-top: 2px; font-family: var(--font-mono); }
.bank-row__amt { font-family: var(--font-mono); font-weight: 600; font-size: 13px; font-variant-numeric: tabular-nums; }
.bank-row__tag { padding: 2px 8px; border-radius: 999px; font-size: 10px; font-weight: 600; letter-spacing: 0.04em; background: var(--neutral-100); color: var(--fg-2); }

/* Rental unit card */
.unit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.unit {
  background: #FFFFFF; border: 1px solid var(--ink-tint);
  border-radius: 10px; padding: 14px;
  animation: rise 600ms var(--ease-out) both;
}
.unit__head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.unit__addr { font-size: 12px; font-weight: 600; }
.unit__city { font-size: 10px; color: var(--fg-3); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.08em; }
.unit__rent { font-family: var(--font-mono); font-size: 18px; font-weight: 600; font-variant-numeric: tabular-nums; }
.unit__state {
  font-size: 10px; font-weight: 600; letter-spacing: 0.05em;
  padding: 2px 7px; border-radius: 999px;
}
.unit__state--paid { background: var(--fortec-gain-soft); color: var(--fortec-gain-ink); }
.unit__state--due  { background: var(--fortec-warn-soft); color: var(--fortec-warn-ink); }
.unit__meter { margin-top: 10px; height: 4px; background: var(--neutral-100); border-radius: 999px; overflow: hidden; }
.unit__meter-fill { height: 100%; background: var(--fortec-ink); border-radius: 999px; }
.unit__meta { font-size: 11px; color: var(--fg-2); margin-top: 6px; display: flex; justify-content: space-between; font-family: var(--font-mono); }

/* Crypto panel */
.crypto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.crypto {
  background: #FFFFFF; border: 1px solid var(--ink-tint);
  border-radius: 10px; padding: 16px;
  animation: rise 600ms var(--ease-out) both;
}
.crypto__sym { font-family: var(--font-mono); font-size: 11px; font-weight: 600; color: var(--fg-2); letter-spacing: 0.04em; }
.crypto__price { font-family: var(--font-mono); font-size: 22px; font-weight: 600; margin-top: 4px; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.crypto__chg { font-family: var(--font-mono); font-size: 11px; margin-top: 2px; font-variant-numeric: tabular-nums; }
.crypto__spark { width: 100%; height: 36px; margin-top: 8px; }

/* Real estate */
.re-map {
  background: #FFFFFF; border: 1px solid var(--ink-tint);
  border-radius: 10px; padding: 18px;
  height: 100%;
  display: flex; flex-direction: column; gap: 10px;
  animation: rise 600ms var(--ease-out) both;
}
.re-stat { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border-subtle); }
.re-stat:last-child { border-bottom: 0; }
.re-stat__k { font-size: 12px; color: var(--fg-2); }
.re-stat__v { font-family: var(--font-mono); font-size: 13px; font-weight: 600; font-variant-numeric: tabular-nums; }

/* -------- Section 4: AI demo (dark) ------------------------------ */
.ai {
  background: #0A0A0A; color: #FAFAFA;
  border-top: 1px solid #1F1F1F; border-bottom: 1px solid #1F1F1F;
  position: relative; overflow: hidden;
}
.ai::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(1200px 600px at 20% 10%, rgba(255,255,255,0.03), transparent 60%),
    radial-gradient(800px 400px at 90% 90%, rgba(255,255,255,0.02), transparent 60%);
  pointer-events: none;
}
.ai__inner { position: relative; }
.ai__eyebrow { color: #737373; }
.ai__title { color: #FAFAFA; margin: 14px 0 16px; }
.ai__sub { color: #A3A3A3; max-width: 520px; }
.ai__grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px;
  margin-top: 48px; align-items: start;
}
@media (max-width: 980px) {
  .ai__grid { grid-template-columns: 1fr; gap: 40px; }
}

.models { display: flex; flex-direction: column; gap: 0; margin-top: 32px; }
.model {
  display: grid; grid-template-columns: 36px 1fr auto;
  gap: 16px; align-items: center;
  padding: 14px 0;
  border-top: 1px solid #1F1F1F;
  font-size: 14px;
}
.model:last-child { border-bottom: 1px solid #1F1F1F; }
.model__num { font-family: var(--font-mono); font-size: 11px; color: #525252; }
.model__name { font-weight: 500; color: #FAFAFA; }
.model__what { font-size: 12px; color: #737373; margin-top: 2px; }
.model__status { font-family: var(--font-mono); font-size: 10px; color: #0B8F4C; text-transform: uppercase; letter-spacing: 0.1em; }

/* AI demo card */
.ai-demo {
  background: #141414; border: 1px solid #1F1F1F;
  border-radius: 16px; overflow: hidden;
}
.ai-demo__top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; border-bottom: 1px solid #1F1F1F;
  background: #0F0F0F;
}
.ai-demo__label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; color: #737373; text-transform: uppercase; }
.ai-demo__live { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 10px; color: #0B8F4C; letter-spacing: 0.12em; text-transform: uppercase; }
.ai-demo__live-dot { width: 6px; height: 6px; border-radius: 50%; background: #0B8F4C; animation: pulse 1.8s infinite; }

.ticker-pick { display: flex; gap: 0; border-bottom: 1px solid #1F1F1F; }
.ticker-pick__btn {
  flex: 1;
  background: transparent; border: 0; border-right: 1px solid #1F1F1F;
  color: #A3A3A3; font: inherit; font-family: var(--font-mono);
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
  padding: 14px 0; cursor: pointer;
  transition: all var(--dur-2) var(--ease-standard);
}
.ticker-pick__btn:last-child { border-right: 0; }
.ticker-pick__btn:hover { color: #FAFAFA; background: rgba(255,255,255,0.02); }
.ticker-pick__btn.is-active { color: #FAFAFA; background: #1A1A1A; position: relative; }
.ticker-pick__btn.is-active::after {
  content: ''; position: absolute; left: 12px; right: 12px; bottom: 0;
  height: 2px; background: #FAFAFA;
}
.ticker-pick__price { display: block; font-size: 11px; color: #737373; margin-top: 2px; font-weight: 400; }
.ticker-pick__btn.is-active .ticker-pick__price { color: #A3A3A3; }

.ai-demo__body { padding: 22px; display: grid; gap: 14px; }
.ai-out {
  display: grid; grid-template-columns: 120px 1fr auto;
  gap: 18px; align-items: center;
  padding: 14px 16px;
  background: #0F0F0F; border: 1px solid #1F1F1F;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(8px);
}
.ai-out.reveal { opacity: 1; transform: translateY(0); transition: opacity 400ms var(--ease-out), transform 400ms var(--ease-out); }
.ai-out__label { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: #737373; }
.ai-out__val { font-family: var(--font-mono); font-size: 22px; font-weight: 600; color: #FAFAFA; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.ai-out__sub { font-family: var(--font-mono); font-size: 11px; color: #A3A3A3; margin-top: 2px; }
.ai-out__viz { min-width: 120px; }
.ai-out__tag { padding: 3px 10px; border-radius: 999px; font-size: 10px; font-weight: 600; letter-spacing: 0.04em; }
.tag--bull { background: rgba(11,143,76,0.15); color: #4ADE80; }
.tag--bear { background: rgba(200,50,26,0.15); color: #F87171; }
.tag--neutral { background: rgba(163,163,163,0.12); color: #A3A3A3; }

.vol-band { width: 100%; height: 36px; }
.thesis {
  border-top: 1px solid #1F1F1F; padding-top: 16px; margin-top: 4px;
  font-size: 13.5px; line-height: 1.55; color: #D4D4D4;
}
.thesis__cite { font-family: var(--font-mono); font-size: 10px; color: #737373; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 8px; }

/* -------- Section 5: Story cards --------------------------------- */
.stories { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 980px) { .stories { grid-template-columns: 1fr; } }
.story {
  background: var(--surface-card); border: 1px solid var(--ink-tint);
  border-radius: 14px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow var(--dur-3) var(--ease-standard), transform var(--dur-3) var(--ease-standard);
}
.story:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.story__preview {
  height: 240px;
  background: linear-gradient(180deg, #F1EEE7 0%, #E8E4DA 100%);
  border-bottom: 1px solid var(--ink-tint);
  position: relative;
  overflow: hidden;
}
.story__body { padding: 24px 24px 28px; }
.story__quote {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 600; letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 10px;
}
.story__cap { font-size: 13.5px; color: var(--fg-2); line-height: 1.5; }

/* Preview: rental */
.sp-rent { padding: 16px; display: flex; flex-direction: column; gap: 8px; height: 100%; justify-content: space-between; }
.sp-rent__row { display: flex; justify-content: space-between; align-items: center; padding: 8px 10px; background: #FFF; border: 1px solid var(--border-subtle); border-radius: 8px; font-size: 11.5px; }
.sp-rent__addr { font-weight: 500; }
.sp-rent__amt { font-family: var(--font-mono); font-weight: 600; }

/* Preview: trading */
.sp-trade { padding: 16px; display: flex; flex-direction: column; gap: 10px; height: 100%; }
.sp-trade__ticket { flex: 1; background: #FFF; border: 1px solid var(--border-subtle); border-radius: 8px; padding: 14px; display: flex; flex-direction: column; gap: 8px; }
.sp-trade__field { display: flex; justify-content: space-between; font-size: 11px; padding: 4px 0; }
.sp-trade__field > span:last-child { font-family: var(--font-mono); font-weight: 600; }
.sp-trade__routes { display: flex; gap: 6px; }
.sp-trade__route { flex: 1; text-align: center; padding: 5px; border: 1px solid var(--border-subtle); border-radius: 6px; font-family: var(--font-mono); font-size: 9px; background: #FFF; font-weight: 600; letter-spacing: 0.06em; }
.sp-trade__route.is-best { background: var(--fortec-ink); color: #FFF; border-color: var(--fortec-ink); }

/* Preview: reasoner chat */
.sp-chat { padding: 16px; display: flex; flex-direction: column; gap: 8px; height: 100%; }
.sp-chat__bubble { background: #FFF; border: 1px solid var(--border-subtle); border-radius: 10px; padding: 10px 12px; font-size: 11.5px; line-height: 1.45; }
.sp-chat__bubble--user { background: var(--fortec-ink); color: #FFF; align-self: flex-end; max-width: 80%; }
.sp-chat__cite { font-family: var(--font-mono); font-size: 9px; color: var(--fg-3); margin-top: 4px; letter-spacing: 0.06em; }

/* -------- Section 6: Security strip ------------------------------ */
.security {
  background: var(--paper-2);
  border-top: 1px solid var(--ink-tint);
  border-bottom: 1px solid var(--ink-tint);
  padding: 48px 0;
}
.sec-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.sec-col {
  padding: 12px 24px;
  border-right: 1px solid var(--border-subtle);
  display: flex; flex-direction: column; gap: 8px;
}
.sec-col:first-child { padding-left: 0; }
.sec-col:last-child { border-right: 0; padding-right: 0; }
.sec-col__icon { color: var(--fortec-ink); }
.sec-col__t { font-size: 13px; font-weight: 600; }
.sec-col__d { font-size: 12px; color: var(--fg-2); line-height: 1.45; }
@media (max-width: 980px) {
  .sec-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .sec-col { border-right: 0; padding: 0; }
}

/* -------- Section 7: Pricing ------------------------------------- */
.pricing { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 900px; margin: 0 auto; }
@media (max-width: 720px) { .pricing { grid-template-columns: 1fr; } }
.plan {
  background: var(--surface-card); border: 1px solid var(--ink-tint);
  border-radius: 16px; padding: 32px;
  display: flex; flex-direction: column;
}
.plan--pro { background: var(--fortec-ink); color: #FAFAFA; border-color: var(--fortec-ink); }
.plan__name { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--fg-2); }
.plan--pro .plan__name { color: #A3A3A3; }
.plan__price { font-size: 40px; font-weight: 700; letter-spacing: -0.03em; margin: 12px 0 4px; font-family: var(--font-display); }
.plan__price-sub { font-family: var(--font-mono); font-size: 12px; color: var(--fg-2); }
.plan--pro .plan__price-sub { color: #A3A3A3; }
.plan__desc { font-size: 14px; margin: 14px 0 20px; color: var(--fg-2); line-height: 1.5; }
.plan--pro .plan__desc { color: #D4D4D4; }
.plan__list { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 10px; }
.plan__list li { font-size: 13.5px; display: flex; align-items: center; gap: 10px; }
.plan__check { color: var(--fg-2); }
.plan--pro .plan__check { color: #FAFAFA; }

/* -------- Section 8: Carousel ----------------------------------- */
.quotes { position: relative; overflow: hidden; max-width: 900px; margin: 0 auto; }
.quotes__track {
  display: flex;
  transition: transform 600ms var(--ease-out);
}
.quote {
  flex: 0 0 100%;
  padding: 48px 48px 40px;
  text-align: left;
  background: var(--surface-card); border: 1px solid var(--ink-tint);
  border-radius: 16px;
}
.quote__mark { font-family: var(--font-display); font-size: 48px; line-height: 0.3; color: var(--neutral-300); }
.quote__text { font-family: var(--font-display); font-size: clamp(20px, 2.4vw, 28px); line-height: 1.4; font-weight: 500; letter-spacing: -0.015em; margin: 24px 0 28px; }
.quote__foot { display: flex; align-items: center; gap: 14px; }
.quote__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--neutral-200); display: grid; place-items: center; font-family: var(--font-mono); font-weight: 600; font-size: 13px; }
.quote__name { font-size: 14px; font-weight: 600; }
.quote__role { font-size: 12px; color: var(--fg-2); }

.quotes__dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.quotes__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--neutral-300); border: 0; cursor: pointer; padding: 0; transition: all var(--dur-2); }
.quotes__dot.is-active { background: var(--fortec-ink); width: 20px; border-radius: 999px; }

/* -------- Section 9: Final CTA ---------------------------------- */
.cta-final {
  background: var(--fortec-ink); color: #FAFAFA;
  padding: 128px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 50% 120%, rgba(255,255,255,0.06), transparent 60%);
  pointer-events: none;
}
.cta-final__inner { position: relative; }
.cta-final h2 { color: #FAFAFA; margin-bottom: 20px; }
.cta-final p { color: #A3A3A3; max-width: 520px; margin: 0 auto 36px; font-size: 17px; line-height: 1.5; }

/* -------- Footer ------------------------------------------------- */
.footer {
  background: var(--paper);
  border-top: 1px solid var(--ink-tint);
  padding: 64px 0 48px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 860px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
.footer__brand-desc { font-size: 13px; color: var(--fg-2); margin-top: 16px; max-width: 280px; line-height: 1.5; }
.footer__news { display: flex; gap: 8px; margin-top: 16px; }
.footer__news input { flex: 1; height: 36px; padding: 0 12px; border: 1px solid var(--ink-tint); border-radius: 8px; font: inherit; font-size: 13px; background: var(--surface-card); outline: none; }
.footer__news input:focus { border-color: var(--fortec-ink); box-shadow: var(--shadow-focus); }
.footer__col h4 { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--fg-2); margin-bottom: 14px; }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__col a { color: var(--fg-1); text-decoration: none; font-size: 13.5px; transition: color var(--dur-2); }
.footer__col a:hover { color: var(--fg-2); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--border-subtle);
  font-size: 12px; color: var(--fg-2); gap: 16px; flex-wrap: wrap;
}
.lang {
  display: inline-flex; border: 1px solid var(--ink-tint); border-radius: 999px;
  padding: 2px; background: var(--surface-card);
}
.lang button {
  background: transparent; border: 0; font: inherit;
  font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 999px;
  cursor: pointer; color: var(--fg-2); letter-spacing: 0.06em;
}
.lang button.is-active { background: var(--fortec-ink); color: #FFF; }

/* -------- Reveal on scroll -------------------------------------- */
.reveal {
  opacity: 0; transform: translateY(16px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 140ms !important; }
  .ticker__track { animation: none; }
  .signal__icon::after { animation: none; }
  .reveal { opacity: 1; transform: none; }
}

/* -------- Section header --------------------------------------- */
.sec-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 48px; flex-wrap: wrap; }
.sec-head__lhs { max-width: 680px; }
.sec-head__eyebrow { margin-bottom: 14px; }
.sec-head__title { margin-bottom: 12px; }
.sec-head__sub { color: var(--fg-2); font-size: 17px; line-height: 1.5; max-width: 600px; }
