:root {
  color-scheme: light;
  --app-bg: #f3f4f6;
  --hero-bg: #eef0f5;
  --surface: #ffffff;
  --surface-subtle: #f9fafb;
  --surface-inset: #f3f4f6;
  --surface-hover: #eef0f5;
  --heading: #111827;
  --body: #374151;
  --muted: #5f6875;
  --faint: #6b7280;
  --border: #d1d5db;
  --border-subtle: #e5e7eb;
  --control-border: #737373;
  --accent: #4f5fe7;
  --accent-ink: #ffffff;
  --accent-bg: rgb(79 95 231 / 10%);
  --accent-soft: rgb(79 95 231 / 17%);
  --positive: #047857;
  --positive-bg: #ecfdf5;
  --negative: #25637a;
  --focus: #2563eb;
  --overlay: rgb(17 24 39 / 52%);
  --nav-bg: rgb(255 255 255 / 88%);
  --nav-shadow: 0 18px 44px rgb(17 24 39 / 12%);
  --sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;

  /* Compatibility aliases for the existing live-data surface. */
  --gold: var(--accent);
  --gold-soft: #6674ed;
  --dark-bg: var(--app-bg);
  --cream: var(--surface-subtle);
  --card-dark: var(--surface);
  --card-light: var(--surface);
  --muted-dark: var(--muted);
  --muted-light: var(--muted);
  --border-dark: var(--border-subtle);
  --border-light: var(--border-subtle);
  --nunchi-ivory: var(--heading);
  --nunchi-black: var(--heading);
  --graphite: var(--heading);
  --warm-gold: var(--accent);
  --serif: var(--sans);
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --app-bg: #0a0a0a;
  --hero-bg: #101114;
  --surface: #171717;
  --surface-subtle: #1f1f1f;
  --surface-inset: #0f0f0f;
  --surface-hover: #262626;
  --heading: #f5f5f5;
  --body: #e5e5e5;
  --muted: #a3a3a3;
  --faint: #8a8a8a;
  --border: #404040;
  --border-subtle: #262626;
  --control-border: #737373;
  --accent: #9aa2ff;
  --accent-ink: #111827;
  --accent-bg: rgb(154 162 255 / 11%);
  --accent-soft: rgb(154 162 255 / 20%);
  --positive: #6ee7b7;
  --positive-bg: #022c22;
  --negative: #7dd3fc;
  --focus: #60a5fa;
  --overlay: rgb(0 0 0 / 72%);
  --nav-bg: rgb(23 23 23 / 88%);
  --nav-shadow: 0 18px 44px rgb(0 0 0 / 42%);
  --gold-soft: #b4baff;
}

html {
  background: var(--app-bg);
  scroll-padding-top: 96px;
  scrollbar-gutter: stable;
}

body {
  min-width: 320px;
  background: var(--app-bg);
  color: var(--body);
  font-family: var(--sans);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--heading);
  color: var(--surface);
}

:focus-visible {
  outline: 3px solid var(--focus) !important;
  outline-offset: 3px !important;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--heading);
  color: var(--surface);
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus { transform: translateY(0); }

.container {
  width: min(1180px, calc(100% - 48px));
  max-width: none;
  padding: 0;
}

.section {
  padding: 112px 0;
}

.dark,
.light {
  background: var(--app-bg);
  color: var(--body);
  --gold: var(--accent);
  --gold-soft: #6674ed;
}

:root[data-theme="dark"] .dark,
:root[data-theme="dark"] .light { --gold-soft: #b4baff; }

.light::before,
.hero::before { display: none; }

.eyebrow,
.hero-eyebrow {
  color: var(--accent);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-eyebrow {
  display: inline-flex;
  grid-column: 1;
  grid-row: 1;
  margin: 0 0 22px;
}

h2.section-title {
  max-width: 760px;
  margin-top: 12px;
  color: var(--heading);
  font-family: var(--sans);
  font-size: clamp(2.25rem, 4.3vw, 3.5rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.section-sub {
  max-width: 680px;
  margin-top: 18px;
  color: var(--muted) !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}

.mono { font-family: var(--mono); }

.btn {
  min-height: 44px;
  justify-content: center;
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 650;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.btn-primary {
  border-color: var(--heading);
  background: var(--heading);
  color: var(--surface);
}

.btn-primary:hover {
  border-color: #1f2937;
  background: #1f2937;
  color: #ffffff;
  transform: translateY(-1px);
}

:root[data-theme="dark"] .btn-primary:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: #171717;
}

.btn-ghost {
  border-color: var(--border);
  background: var(--surface);
  color: var(--heading);
}

.btn-ghost:hover {
  border-color: var(--accent);
  background: var(--accent-bg);
  color: var(--accent);
}

.btn-sm {
  min-height: 38px;
  padding: 8px 14px;
  font-size: 13px;
}

nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 12px 0 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

nav .nav-inner {
  width: min(1080px, calc(100% - 32px));
  height: 58px;
  margin: 0 auto;
  padding: 0 10px 0 18px;
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  background: var(--nav-bg);
  box-shadow: var(--nav-shadow);
  backdrop-filter: blur(20px);
}

.wordmark {
  gap: 9px;
  color: var(--heading);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.16em;
}

.logomark { color: currentColor; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  margin-right: 24px;
}

.nav-links a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 550;
}

.nav-links a:hover { color: var(--heading); }

.nav-cta { gap: 8px; }

.theme-toggle {
  width: 38px;
  min-width: 38px;
  height: 38px;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 16px;
  line-height: 1;
}

.theme-toggle:hover {
  border-color: var(--border);
  color: var(--heading);
}

.explore-overlay { background: var(--overlay); }

.explore-sheet {
  border-color: var(--border-subtle);
  background: var(--surface);
  box-shadow: 0 28px 80px rgb(17 24 39 / 24%);
  max-height: 100dvh;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.explore-close {
  border: 1px solid var(--border-subtle);
  background: var(--surface-subtle);
  color: var(--muted);
}

.explore-close:hover {
  border-color: var(--border);
  background: var(--surface-hover);
  color: var(--heading);
}

.explore-title {
  color: var(--heading);
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 650;
  letter-spacing: -0.035em;
}

.mk-label,
.mr-desc { color: var(--muted); }

.explore-head { padding-bottom: 24px; }

.explore-body {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(260px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.explore-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 10px 0 2px;
}

.explore-section-head .mk-label { margin: 0; }
.mkt-list { max-width: none; }

.explore-apps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.explore-app {
  display: flex;
  min-height: 132px;
  flex-direction: column;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  background: var(--surface);
  color: var(--body);
  transition: border-color 0.15s ease, background 0.15s ease;
}

.explore-app:hover {
  border-color: var(--accent);
  background: var(--accent-bg);
}

.explore-app-name {
  color: var(--heading);
  font-size: 17px;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.explore-app-desc {
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.explore-app-action {
  margin-top: auto;
  padding-top: 18px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.03em;
}

.mkt-row {
  min-height: 78px;
  border-color: var(--border-subtle);
  border-radius: 10px;
  background: var(--surface);
  color: var(--body);
}

.mkt-row:hover {
  border-color: var(--border);
  background: var(--surface-subtle);
}

.mkt-row.is-current {
  border-color: var(--accent);
  background: var(--accent-bg);
  box-shadow: none;
}

.mr-name {
  color: var(--heading);
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 650;
}

.mr-price { color: var(--heading); }
.mr-price.na,
.mr-sub { color: var(--muted); }

.mk-viewall,
.arch-cta { color: var(--accent); }

.private-beta,
.hc-soon,
.feedhint {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 24px;
  padding: 3px 9px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted) !important;
  font-family: var(--mono);
  font-size: 10px !important;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hc-live,
.afeat-live {
  color: var(--positive);
  font-family: var(--mono);
}

.hc-live .dot,
.afeat-live .dot {
  background: var(--positive);
  animation: none;
  box-shadow: 0 0 0 3px var(--positive-bg);
}

.hero {
  min-height: calc(100vh - 70px);
  padding: 104px 0 96px !important;
  background:
    radial-gradient(circle at 82% 28%, var(--accent-soft), transparent 28%),
    var(--hero-bg) !important;
  color: var(--body) !important;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 70px;
  right: max(-160px, calc((100vw - 1180px) / 2 - 180px));
  width: 660px;
  height: 360px;
  border: 1px solid rgb(79 95 231 / 18%);
  border-radius: 50%;
  background: transparent;
  transform: rotate(-13deg);
  pointer-events: none;
}

:root[data-theme="dark"] .hero::after { border-color: rgb(154 162 255 / 18%); }

.hero > .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  column-gap: clamp(52px, 7vw, 104px);
  align-items: start;
}

.hero h1 {
  grid-column: 1;
  grid-row: 2;
  max-width: 620px;
  color: var(--heading);
  font-family: var(--sans);
  font-size: clamp(3.2rem, 6.6vw, 5.4rem);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.hero-tagline {
  grid-column: 1;
  grid-row: 3;
  max-width: 560px;
  margin-top: 22px;
  color: var(--heading);
  font-family: var(--sans);
  font-size: clamp(1.35rem, 2.25vw, 1.8rem);
  font-weight: 520;
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.hero-pain {
  grid-column: 1;
  grid-row: 4;
  max-width: 570px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.hero-pain strong,
.hero-thesis strong { color: var(--heading); }

.hero-quote {
  grid-column: 2;
  grid-row: 1 / span 4;
  width: 100%;
  max-width: none;
  min-height: 220px;
  margin: 18px 0 0;
  padding: 28px;
  align-self: end;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 0 20px 55px rgb(17 24 39 / 10%);
}

.hero-quote {
  position: relative;
}

.hq-ticker {
  color: var(--heading);
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 650;
  letter-spacing: -0.03em;
}

.hq-subid,
.hq-change { color: var(--muted); }

.hq-price {
  color: var(--heading);
  font-size: clamp(2.8rem, 5vw, 4.3rem);
}

.hq-change #heroFunding,
.hero-oneliner strong { color: var(--accent); }

.hero-cta {
  grid-column: 1;
  grid-row: 5;
  margin-top: 30px;
}

.hero-oneliner {
  grid-column: 1;
  grid-row: 6;
  max-width: 570px;
  margin-top: 34px;
  color: var(--heading);
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 550;
  line-height: 1.45;
}

.hero-thesis {
  grid-column: 1;
  grid-row: 7;
  max-width: 570px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.hero-fig {
  grid-column: 2;
  grid-row: 5 / span 3;
  width: 100%;
  max-width: none;
  margin: 18px 0 0;
  padding: 20px 22px 16px;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  background: var(--surface);
}

.hf-trend { stroke: var(--muted); }
.hf-fund { stroke: var(--accent); }
.hf-axis.l,
.hf-long .hf-dot,
.hf-long .hf-mk-label,
.hf-playhead .hf-ph-dot { fill: var(--accent); }
.hf-playhead .hf-ph-ring { stroke: var(--accent); }
.hf-note.long,
.hf-verb { fill: var(--accent); }
.hf-axis.r,
.hf-note.neutral,
.hf-note.short,
.hf-short .hf-dot,
.hf-short .hf-mk-label { fill: var(--muted); }

.hero-fig-btn {
  border-color: var(--border-subtle);
  background: var(--surface-subtle);
  color: var(--muted);
}

.hero-fig-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

#stats {
  border-top: 1px solid var(--border-subtle);
  background: var(--app-bg);
}

#stats .access-lead,
#access .access-lead {
  max-width: 680px;
  margin-top: 18px;
  color: var(--heading);
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.series-showcase {
  margin-top: 32px;
}

.index-carousel-toolbar {
  display: flex;
  justify-content: flex-end;
}

.index-carousel-controls { display: flex; gap: 8px; }

.index-carousel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  color: var(--heading);
  font: inherit;
  font-size: 20px;
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.index-carousel-button:hover:not(:disabled) {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-bg);
}

.index-carousel-button:disabled { opacity: 0.35; cursor: default; }

.index-carousel {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  padding: 2px 2px 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
}

.index-carousel::-webkit-scrollbar { display: none; }

.index-card {
  display: flex;
  flex: 0 0 clamp(360px, 62vw, 720px);
  min-height: 330px;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  transition: border-color 180ms ease, transform 180ms ease;
}

@media (hover: hover) {
  .index-card:hover { border-color: var(--accent); transform: translateY(-2px); }
}

.index-card h3 {
  color: var(--heading);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.045em;
}

.index-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
}

.index-card-metrics {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(150px, 0.55fr);
  gap: 32px;
  align-items: end;
}

.index-card-metric dt {
  margin-bottom: 10px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.index-card-metric dd {
  margin: 0;
  color: var(--heading);
  font-family: var(--mono);
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  white-space: nowrap;
}

.index-card-value dd { font-size: clamp(2.8rem, 5vw, 4.1rem); }

.index-card-rate dd {
  color: var(--accent);
  font-size: clamp(2rem, 3.5vw, 3rem);
}

#access {
  border-top: 1px solid var(--border-subtle);
  background: var(--app-bg);
}

.access-panel { margin-top: 48px; gap: 16px; }

.acard-feature,
.acard {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 0 1px 2px rgb(17 24 39 / 4%);
}

.acard-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  padding: 28px;
}

.acard { padding: 24px; }

.acard-feature h3,
.acard h3 {
  color: var(--heading);
  font-family: var(--sans);
  font-weight: 650;
  letter-spacing: -0.025em;
}

.acard-feature p,
.acard p { color: var(--muted); }

.acard .who,
.acard-feature .who { color: var(--accent); }

.afeat-quote {
  min-height: 150px;
  justify-content: center;
  padding: 20px;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  background: var(--surface-subtle);
}

.afeat-price { color: var(--heading); }
.afeat-sub { color: var(--muted); }
.afeat-sub #accFunding,
.acard .acta { color: var(--accent); }

.access-support { gap: 16px; }

#deploy {
  --heading: #f5f5f5;
  --body: #e5e5e5;
  --muted: #a3a3a3;
  --faint: #8a8a8a;
  --surface: #171717;
  --surface-subtle: #1f1f1f;
  --border: #404040;
  --border-subtle: #262626;
  --accent: #9aa2ff;
  --accent-bg: rgb(154 162 255 / 11%);
  border-top: 1px solid #262626;
  background: #0a0a0a;
  color: var(--body);
}

#deploy h2.section-title { color: var(--heading); }

#deploy .deploy-grid {
  display: block;
  max-width: none;
  margin-top: 42px;
}

#deploy .deploy-copy > .section-sub { max-width: 760px; }

#deploy .deploy-copy ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
}

#deploy .deploy-copy li {
  display: block;
  min-height: 190px;
  padding: 24px;
  border: 0;
  border-right: 1px solid var(--border-subtle);
}

#deploy .deploy-copy li:last-child { border-right: 0; }

#deploy .step-n {
  display: block;
  width: auto;
  margin-bottom: 26px;
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.12em;
}

#deploy .deploy-copy li p {
  color: var(--muted);
  line-height: 1.65;
}

#deploy .deploy-copy li p strong { color: var(--heading); }

#deploy .btn-primary {
  border-color: #f5f5f5;
  background: #f5f5f5;
  color: #171717;
}

#deploy .btn-primary:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: #171717;
}

footer.dark {
  --heading: #f5f5f5;
  --body: #e5e5e5;
  --muted: #a3a3a3;
  --border-subtle: #262626;
  padding: 64px 0 36px;
  border-color: #262626;
  background: #0a0a0a;
  color: var(--body);
}

footer .foot-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.55fr) repeat(3, minmax(130px, 0.7fr));
  gap: 64px;
  align-items: start;
}

footer .foot-brand { max-width: 430px; }
footer .wordmark { color: var(--heading); }
footer .foot-statement {
  max-width: 390px;
  color: var(--body);
  font-size: 16px;
  line-height: 1.65;
}

footer .foot-col h4,
footer .foot-bottom p,
footer .muted { color: var(--muted) !important; }
footer .foot-col a { color: var(--body); }
footer .foot-col a:hover { color: #9aa2ff; }
footer .foot-social .soc { color: var(--muted); }
footer .foot-social .soc:hover { color: #9aa2ff; }
footer .foot-bottom { border-color: var(--border-subtle); }

@media (max-width: 980px) {
  .nav-links { display: none; }

  .hero > .container {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    column-gap: 40px;
  }

  .hero h1 { font-size: clamp(3rem, 7vw, 4.6rem); }
  .hq-id { align-items: flex-start; }
  .hero-quote { flex-direction: column; align-items: flex-start; gap: 28px; }
  .hq-quote { align-items: flex-start; text-align: left; }
  .hq-change { white-space: normal; }
}

@media (max-width: 860px) {
  .index-card-metrics { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 820px) {
  .section { padding: 84px 0; }

  .hero {
    min-height: 0;
    padding: 92px 0 78px !important;
  }

  .hero > .container { display: flex; flex-direction: column; }
  .hero-eyebrow { order: 1; }
  .hero h1 { order: 2; }
  .hero-tagline { order: 3; }
  .hero-pain { order: 4; }
  .hero-quote { order: 5; margin-top: 40px; }
  #heroCtaLive,
  #heroCtaAlt { order: 6; }
  .hero-oneliner { order: 7; }
  .hero-thesis { order: 8; }
  .hero-fig { order: 9; margin-top: 28px; }

  .acard-feature { grid-template-columns: 1fr; }
  .afeat-quote { width: 100%; align-items: flex-start; text-align: left; }

  #deploy .deploy-copy ol { grid-template-columns: 1fr; }
  #deploy .deploy-copy li {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--border-subtle);
  }
  #deploy .deploy-copy li:last-child { border-bottom: 0; }

  .explore-body { grid-template-columns: 1fr; }
  footer .foot-grid { grid-template-columns: repeat(3, 1fr); }
  footer .foot-brand {
    grid-column: 1 / -1;
    max-width: none;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-subtle);
  }
}

@media (max-width: 640px) {
  .container { width: min(100% - 32px, 1180px); }
  nav { padding-top: 8px; }
  nav .nav-inner { width: calc(100% - 16px); height: 54px; padding: 0 7px 0 13px; border-radius: 16px; }
  nav .logomark { width: 26px !important; height: 26px !important; }
  .wordmark { gap: 7px; font-size: 11px; letter-spacing: 0.12em; }
  .nav-cta { gap: 6px; }
  .theme-toggle { width: 38px; min-width: 38px; }
  .nav-cta .btn-sm { padding-inline: 12px; }

  .hero { padding-top: 78px !important; }
  .hero h1 { font-size: clamp(3rem, 16vw, 4.2rem); }
  .hero-tagline { font-size: 1.35rem; }
  .hero-pain { font-size: 15px; }
  .hero-quote { min-height: 0; padding: 22px 20px; }
  .hq-id { width: 100%; }
  .hq-ticker { flex-wrap: wrap; font-size: 20px; }
  .hq-price { font-size: 3rem; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { width: 100%; }
  .hero-fig { padding: 16px 14px 12px; }

  .series-showcase { margin-top: 28px; }
  .index-card { flex-basis: calc(100% - 32px); min-height: 300px; padding: 24px; }
  .index-card h3 { font-size: clamp(2rem, 11vw, 3rem); }
  .index-card-value dd { font-size: clamp(2rem, 10vw, 3.4rem); }
  .index-card-rate dd { font-size: clamp(1.9rem, 8vw, 2.6rem); }

  .access-support { grid-template-columns: 1fr; }
  footer .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px 28px; }
  footer .foot-brand { grid-column: 1 / -1; }

  .explore-head { padding-right: 40px; }
  .mkt-row { align-items: flex-start; padding: 14px; }
  .mr-quote { display: none; }
  .explore-app { min-height: 112px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
