:root {
  --ink: #0f1114;
  --ink-soft: #3a3f47;
  --muted: #6b7280;
  --line: rgba(15, 17, 20, 0.08);
  --line-strong: rgba(47, 111, 237, 0.28);
  --paper: #f7f9fc;
  --paper-soft: #eef3f9;
  --paper-warm: #e6edf6;
  --gold: #2f6fed;
  --gold-deep: #1a4fbf;
  --gold-soft: #7eb0ff;
  --gold-pale: #e8f1ff;
  --night: #12141a;
  --night-soft: #1b1e26;
  --shadow: 0 18px 50px rgba(15, 17, 20, 0.07);
  --shadow-hover: 0 28px 70px rgba(15, 17, 20, 0.14);
  --header-h: 80px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius-sm: 2px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background-color: var(--paper);
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: rgba(47, 111, 237, 0.18); color: var(--ink); }

.font-display { font-family: "Cormorant Garamond", Georgia, serif; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 0.7rem 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0.75rem; }

.container {
  width: min(var(--container), calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Daily Focus–inspired topographic contour background */
.has-bg-type,
.hero,
.page-hero,
.site-footer,
.cta-band {
  position: relative;
  overflow: hidden;
}
.bg-type {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  user-select: none;
}
/* hide old text watermark spans if present */
.bg-type span { display: none; }
.bg-type::before {
  content: "";
  position: absolute;
  inset: -6%;
  background-image: url("/assets/topo-light.svg");
  background-size: 980px 630px;
  background-repeat: repeat;
  opacity: 0.09;
  transform: rotate(-2deg) scale(1.02);
}
.bg-type-hero::before {
  background-image: url("/assets/topo-dense.svg");
  background-size: 1200px 760px;
  opacity: 0.045;
  mix-blend-mode: soft-light;
  transform: rotate(0deg) scale(1.04);
}
.bg-type-soft::before {
  background-image: url("/assets/topo-light.svg");
  background-size: 1040px 670px;
  opacity: 0.08;
}
.bg-type-dark::before,
.bg-type-night::before {
  background-image: url("/assets/topo-dense.svg");
  background-size: 1100px 700px;
  opacity: 0.04;
  mix-blend-mode: soft-light;
}
.bg-type-page::before {
  background-image: url("/assets/topo-light.svg");
  background-size: 1000px 650px;
  opacity: 0.085;
}
.page-hero .container,
.section.has-bg-type > .container,
.hero-inner,
.hero-metrics,
.cta-band > *,
.site-footer > .container {
  position: relative;
  z-index: 2;
}
body {
  background-image:
    radial-gradient(1200px 560px at 88% -8%, rgba(196,165,116,0.1), transparent 55%),
    radial-gradient(900px 420px at -8% 18%, rgba(241,235,226,0.8), transparent 50%);
  background-size: auto, auto;
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
  background-image: url("/assets/topo-light.svg");
  background-size: 1100px 720px;
  background-repeat: repeat;
}
main, .site-header, .site-footer { position: relative; z-index: 1; }
.font-display-modern {
  font-family: "Space Grotesk", system-ui, sans-serif;
  letter-spacing: -0.03em;
}

/* ── Latest offering strip (homepage top) ── */
.latest-offering-bar {
  display: block;
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, #0f1114 0%, #152238 48%, #1a4fbf 100%);
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(126, 176, 255, 0.28);
}
.latest-offering-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  min-height: 42px;
  padding: 0.55rem 0;
  flex-wrap: wrap;
}
.latest-offering-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  white-space: nowrap;
}
.latest-offering-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5bdc8a;
  box-shadow: 0 0 0 0 rgba(91, 220, 138, 0.55);
  animation: offering-pulse 1.8s ease-out infinite;
}
@keyframes offering-pulse {
  0% { box-shadow: 0 0 0 0 rgba(91, 220, 138, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(91, 220, 138, 0); }
  100% { box-shadow: 0 0 0 0 rgba(91, 220, 138, 0); }
}
.latest-offering-title {
  flex: 1 1 auto;
  min-width: 12rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.94);
}
.latest-offering-cta {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  opacity: 0.92;
}
.latest-offering-bar:hover .latest-offering-cta {
  color: var(--gold-soft);
  opacity: 1;
}
.latest-offering-bar:hover .latest-offering-title {
  color: #fff;
}
@media (max-width: 720px) {
  .latest-offering-inner { min-height: 0; padding: 0.65rem 0; }
  .latest-offering-title { font-size: 0.84rem; line-height: 1.35; }
  .latest-offering-cta { width: 100%; }
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 250, 247, 0.78);
  backdrop-filter: blur(20px) saturate(1.15);
  -webkit-backdrop-filter: blur(20px) saturate(1.15);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.35s var(--ease), background 0.35s ease, border-color 0.35s ease;
}
/* When latest-offering bar is present, keep header under it while both stick */
body:has(.latest-offering-bar) .site-header {
  top: 42px;
}
@media (max-width: 720px) {
  body:has(.latest-offering-bar) .site-header {
    top: 0; /* bar scrolls away on small if header needs full width; bar stays sticky above via own stack */
  }
}
.site-header.is-scrolled {
  background: rgba(251, 250, 247, 0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 12px 36px rgba(15, 17, 20, 0.06);
}
.site-header::before {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47,111,237,0.55), transparent);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(47, 111, 237, 0.55);
  border-radius: 0;
  display: grid;
  place-items: center;
  color: var(--gold-deep);
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.95), transparent 45%),
    linear-gradient(160deg, #fff 0%, var(--gold-pale) 55%, #d7e6ff 100%);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  box-shadow: 0 8px 22px rgba(47, 111, 237, 0.18);
  flex: 0 0 auto;
}
.brand-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0.16em;
  font-size: 1.24rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  text-transform: none;
}
.brand-name .word-property { font-weight: 500; color: var(--ink); opacity: 1; }
.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.nav-desktop a {
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.2s ease;
}
.nav-desktop a:hover { color: var(--gold-deep); }
.nav-desktop a.is-active { color: var(--gold-deep); }
.nav-desktop a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.5rem;
  height: 1px;
  background: var(--gold);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 1.95rem;
  min-height: 3.1rem;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: 0.28s var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1.2;
}
.nav-desktop .btn {
  margin-left: 0.35rem;
  padding: 0.88rem 1.4rem;
  min-height: 2.65rem;
  letter-spacing: 0.12em;
}
.nav-desktop .btn.is-active::after { display: none; }
.btn-gold,
a.btn.btn-gold,
.nav-desktop a.btn.btn-gold,
.mobile-cta a.btn.btn-gold {
  background: linear-gradient(160deg, #6ea0ff 0%, #2f6fed 38%, #1d4ed8 72%, #163fad 100%);
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff;
  border-color: rgba(29, 78, 216, 0.45);
  box-shadow:
    0 14px 28px rgba(47, 111, 237, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  position: relative;
  overflow: hidden;
  text-shadow: none;
}
.btn-gold::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 18%, rgba(255,255,255,0.16) 46%, transparent 72%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
}
.btn-gold:hover,
a.btn.btn-gold:hover,
.nav-desktop a.btn.btn-gold:hover {
  filter: saturate(1.08) brightness(1.04);
  transform: translateY(-2px);
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff;
  box-shadow:
    0 18px 36px rgba(47, 111, 237, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
}
.btn-gold:hover::after { transform: translateX(120%); }
.btn-gold:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}
.btn-outline {
  border-color: rgba(122, 90, 40, 0.45);
  color: var(--gold-deep);
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: var(--gold-pale);
  border-color: rgba(122, 90, 40, 0.7);
  color: #5f4318;
  transform: translateY(-1px);
}
.btn-ghost-light {
  border-color: rgba(255,255,255,0.35);
  color: #fff;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.55);
  transform: translateY(-1px);
}
.btn:focus-visible,
.nav-desktop a:focus-visible,
.footer-links a:focus-visible,
.menu-btn:focus-visible,
.mobile-menu a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.checkbox input:focus-visible {
  outline: 2px solid rgba(47, 111, 237, 0.7);
  outline-offset: 3px;
}

.menu-btn {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(47,111,237,0.35);
  background: linear-gradient(180deg, #fff, #faf7f1);
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 60;
  box-shadow: 0 8px 20px rgba(15,17,20,0.05);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  padding: 0;
}
.menu-btn:hover {
  border-color: rgba(47,111,237,0.6);
  box-shadow: 0 10px 24px rgba(122,90,40,0.12);
}
.menu-btn .menu-icon {
  width: 18px;
  height: 12px;
  position: relative;
  display: block;
}
.menu-btn .menu-icon span {
  position: absolute;
  left: 0;
  right: 0;
  height: 1.5px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.28s var(--ease), opacity 0.2s ease, top 0.28s var(--ease);
}
.menu-btn .menu-icon span:nth-child(1) { top: 0; }
.menu-btn .menu-icon span:nth-child(2) { top: 5px; width: 70%; }
.menu-btn .menu-icon span:nth-child(3) { top: 10px; }
body.menu-open .menu-btn {
  background: #14171e;
  border-color: rgba(47,111,237,0.4);
  color: var(--gold-soft);
}
body.menu-open .menu-btn .menu-icon span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}
body.menu-open .menu-btn .menu-icon span:nth-child(2) {
  opacity: 0;
  transform: translateX(6px);
}
body.menu-open .menu-btn .menu-icon span:nth-child(3) {
  top: 5px;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: block;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}
.mobile-menu.open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}
.mobile-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(196,165,116,0.16), transparent 42%),
    linear-gradient(165deg, #10131a 0%, #17120f 48%, #0d0f13 100%);
}
.mobile-menu::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/topo-dense.svg");
  background-size: 1100px 700px;
  background-repeat: repeat;
  opacity: 0.04;
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.mobile-menu .container {
  position: relative;
  z-index: 1;
  height: 100%;
  padding-top: calc(var(--header-h) + 1.4rem);
  padding-bottom: calc(1.8rem + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateY(12px);
  transition: transform 0.4s var(--ease);
}
.mobile-menu.open .container {
  transform: none;
}
.mobile-menu-kicker {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.4rem;
}
.mobile-menu-links {
  display: grid;
  gap: 0.15rem;
}
.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 7vw, 2.15rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  text-transform: none;
  color: rgba(255,255,255,0.88);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
  transform: translateY(14px);
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    opacity 0.4s var(--ease),
    transform 0.4s var(--ease);
}
.mobile-menu.open a {
  opacity: 1;
  transform: none;
}
.mobile-menu.open a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.09s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.13s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.17s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.21s; }
.mobile-menu.open a:nth-child(6) { transition-delay: 0.25s; }
.mobile-menu.open a:nth-child(7) { transition-delay: 0.29s; }
.mobile-menu.open a:nth-child(8) { transition-delay: 0.33s; }
.mobile-menu a .nav-num {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: rgba(47,111,237,0.7);
  min-width: 1.6rem;
}
.mobile-menu a:hover,
.mobile-menu a:focus-visible {
  color: #fff;
  border-bottom-color: rgba(47,111,237,0.35);
}
.mobile-menu a.is-active {
  color: var(--gold-soft);
}
.mobile-menu a.is-active .nav-num {
  color: var(--gold-soft);
}
.mobile-menu a.mobile-cta-link {
  -webkit-text-fill-color: #ffffff;
  margin-top: 1.1rem;
  padding: 1.05rem 1.2rem;
  justify-content: center;
  border: 1px solid rgba(47,111,237,0.35);
  background: linear-gradient(160deg, #6ea0ff 0%, #2f6fed 38%, #1d4ed8 72%, #163fad 100%);
  color: #ffffff !important;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 16px 36px rgba(111,83,32,0.28);
}
.mobile-menu a.mobile-cta-link .nav-num { display: none; }
.mobile-menu-foot {
  margin-top: 1.6rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}
.mobile-menu-foot strong {
  display: block;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(126,176,255,0.88);
  margin-bottom: 0.35rem;
}
body.menu-open .site-header {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}
body.menu-open .brand-name {
  color: #fff;
}
body.menu-open .brand-mark {
  border-color: rgba(47,111,237,0.7);
}

/* ── Cinematic home hero ── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: var(--night);
  color: #fff;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.hero-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-stage .hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(0.88) contrast(1.06) brightness(0.78);
}
.hero-stage .hero-video {
  z-index: 1;
  transform: scale(1.02);
}
.hero-stage .hero-fallback {
  z-index: 0;
  transform: scale(1.04);
}
.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(100deg, rgba(12,14,18,0.9) 0%, rgba(12,14,18,0.68) 42%, rgba(12,14,18,0.34) 72%, rgba(12,14,18,0.5) 100%),
    linear-gradient(180deg, rgba(12,14,18,0.42) 0%, transparent 30%, rgba(12,14,18,0.78) 100%);
}

/* TrueStorage school-style project timeline */
.school-timeline {
  position: relative;
  display: grid;
  gap: 1.1rem;
  margin-top: 0.4rem;
  padding-left: 0.25rem;
}
.school-timeline-rail {
  position: absolute;
  left: 1.35rem;
  top: 0.6rem;
  bottom: 0.6rem;
  width: 2px;
  background: linear-gradient(180deg, rgba(47,111,237,0.55), rgba(47,111,237,0.12));
  border-radius: 2px;
}
.school-step {
  position: relative;
  display: grid;
  grid-template-columns: 2.8rem 1fr;
  gap: 0.9rem;
  align-items: start;
}
.school-dot {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 999px;
  background: #fff;
  border: 2px solid rgba(47,111,237,0.35);
  display: grid;
  place-items: center;
  z-index: 1;
  box-shadow: 0 6px 18px rgba(15,17,20,0.06);
}
.school-dot span {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #2f6fed;
}
.school-step.is-now .school-dot {
  background: #2f6fed;
  border-color: #2f6fed;
}
.school-step.is-now .school-dot span {
  color: #fff;
  font-size: 0.68rem;
}
.school-card {
  background: #fff;
  border: 1px solid rgba(15,17,20,0.08);
  border-radius: 16px;
  padding: 1.05rem 1.15rem 1.15rem;
  box-shadow: 0 10px 28px rgba(15,17,20,0.04);
}
.school-step.is-now .school-card {
  border-color: rgba(47,111,237,0.28);
  box-shadow: 0 12px 32px rgba(47,111,237,0.08);
}
.school-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.75rem;
  align-items: center;
  margin-bottom: 0.4rem;
}
.school-phase {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2f6fed;
}
.school-window {
  font-size: 0.78rem;
  color: var(--muted, #6b7280);
  font-weight: 500;
}
.school-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.18rem;
}
.school-card p {
  margin: 0;
  color: var(--muted, #5b6472);
  line-height: 1.55;
  font-size: 0.95rem;
}
.school-list {
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}
.school-list li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.88rem;
  color: #374151;
}
.school-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: #2f6fed;
  opacity: 0.75;
}
.timeline-summary {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.timeline-summary-item {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(15,17,20,0.07);
  border-radius: 14px;
  padding: 0.9rem 1rem;
}
.timeline-summary-item .stat-label {
  margin-bottom: 0.25rem;
}
.timeline-summary-item .stat-value {
  font-size: 1.15rem;
}
.timeline-disclaimer {
  margin-top: 1rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--muted, #6b7280);
  max-width: 52rem;
}
@media (min-width: 760px) {
  .timeline-summary {
    grid-template-columns: repeat(5, 1fr);
  }
  .school-card {
    padding: 1.15rem 1.3rem 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-stage .hero-video {
    display: none;
  }
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 4.2rem 0 1.1rem;
}
.hero.hero-simple {
  min-height: min(78vh, 760px);
  justify-content: center;
}
.hero.hero-simple .hero-inner {
  padding: 5.2rem 0 4.4rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  text-align: center;
}
.hero-simple-copy {
  max-width: 46rem;
  margin: 0 auto;
  text-align: center;
}
.hero.hero-simple .eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  justify-content: center;
}
.hero.hero-simple h1 {
  font-size: clamp(2.55rem, 6.2vw, 4.55rem);
  line-height: 0.98;
  max-width: min(18ch, 100%);
  margin-left: auto;
  margin-right: auto;
}
.hero.hero-simple h1 .hero-line {
  display: block;
}
.hero.hero-simple .lead {
  margin-left: auto;
  margin-right: auto;
}
.hero.hero-simple .hero-actions {
  justify-content: center;
}
.hero-grid {
  display: grid;
  gap: 1.4rem;
  align-items: start;
}
.hero-side {
  align-self: start;
  margin-top: 0.15rem;
}
.hero .lead {
  margin-top: 1rem;
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 34rem;
}
.hero.hero-simple .lead {
  margin-top: 1.25rem;
  font-size: clamp(1.12rem, 2.1vw, 1.28rem);
  line-height: 1.55;
  max-width: 34rem;
}
.hero .hero-actions {
  margin-top: 1.25rem;
}
.hero.hero-simple .hero-actions {
  margin-top: 1.7rem;
  gap: 0.8rem;
}
.hero.hero-simple .hero-actions .btn {
  font-size: 0.98rem;
  padding: 0.95rem 1.25rem;
}

/* Market report / lead-gen brief */
.report-hero h1 {
  max-width: 16ch;
}
.report-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
  margin-top: 1rem;
  font-size: 0.86rem;
  color: var(--muted, #6b7280);
  font-weight: 500;
}
.report-stats .stat {
  min-height: 100%;
}
.report-stats .stat-note {
  margin-top: 0.35rem;
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--muted, #6b7280);
}
.report-list {
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}
.report-list li {
  position: relative;
  padding-left: 1.05rem;
  font-size: 0.94rem;
  line-height: 1.5;
  color: #374151;
}
.report-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: #2f6fed;
  opacity: 0.8;
}
.hero .fineprint {
  margin-top: 0.95rem;
  max-width: 32rem;
}
.hero-metrics {
  padding: 0 0 1.6rem;
}
.hero .stats {
  margin-top: 0.35rem;
}
.hero .trust-strip {
  margin-top: 0.75rem;
}
.hero-chip {
  padding: 0.8rem 0.95rem;
}
.hero-chip.is-link {
  display: block;
  transition: transform 0.25s var(--ease), border-color 0.25s ease, background 0.25s ease;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  background: rgba(255,255,255,0.05);
}
.hero-chip.is-link:hover {
  transform: translateY(-2px);
  border-color: rgba(126, 176, 255, 0.45);
  background: rgba(47, 111, 237, 0.16);
}
.hero-chip .stat-value {
  font-size: 1.2rem;
}
.hero .eyebrow {
  border-color: rgba(196,165,116,0.35);
  background: rgba(255,255,255,0.06);
  color: var(--gold-soft);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero h1 {
  color: #fff;
  max-width: min(22ch, 100%);
  text-shadow: 0 18px 50px rgba(0,0,0,0.35);
}
.hero h1 .hero-line {
  display: block;
  white-space: nowrap;
}
.hero h1 em {
  color: var(--gold-soft);
}
.hero .lead {
  color: rgba(255,255,255,0.78);
  max-width: 36rem;
}
.hero .fineprint {
  color: rgba(255,255,255,0.48);
}
.hero-side {
  display: grid;
  gap: 0.7rem;
}
.hero-chip {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.78rem 0.95rem;
  box-shadow: 0 14px 32px rgba(0,0,0,0.16);
}
.hero-chip .stat-label {
  color: var(--gold-soft);
  margin-bottom: 0.18rem;
}
.hero-chip .stat-value {
  color: #fff;
  font-size: 1.18rem;
  margin-top: 0.1rem;
  line-height: 1.15;
}
.hero-metrics {
  position: relative;
  z-index: 2;
  padding: 0 0 1.5rem;
}
.hero .stats {
  margin-top: 0;
  gap: 0.7rem;
}
.hero .stat {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
  box-shadow: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero .stat::before {
  background: linear-gradient(180deg, var(--gold-soft), rgba(47,111,237,0.2));
}
.hero .stat-label { color: var(--gold-soft); }
.hero .stat-value { color: #fff; }
.hero .trust-strip {
  margin-top: 0.7rem;
  gap: 0.7rem;
}
.hero .trust-item {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero .trust-item strong { color: #fff; }
.hero .trust-item span { color: rgba(255,255,255,0.68); }
.hero .trust-num { color: var(--gold-soft); }

/* Legacy hero-visual kept for other patterns */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.8);
  color: var(--gold-deep);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(47,111,237,0.12);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(47,111,237,0.12); }
  50% { box-shadow: 0 0 0 7px rgba(47,111,237,0.08); }
}

h1, h2, h3 { margin: 0; font-family: "Cormorant Garamond", Georgia, serif; font-weight: 500; }
h1 {
  font-size: clamp(2.9rem, 6.4vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--ink);
}
h1 em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 400;
}
.lead {
  margin: 1.4rem 0 0;
  max-width: 38rem;
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--ink-soft);
  font-weight: 300;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.9rem;
}
.fineprint {
  margin-top: 1.4rem;
  max-width: 34rem;
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  min-height: 340px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-hover);
  overflow: hidden;
  background: var(--paper-soft);
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255,255,255,0.35);
  z-index: 2;
  pointer-events: none;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
  transform: scale(1.02);
  transition: transform 1.2s var(--ease);
}
.hero-visual:hover img { transform: scale(1.06); }
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(20,22,26,0.42)),
    linear-gradient(90deg, rgba(20,22,26,0.12), transparent 40%);
}
.hero-caption {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 3;
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 8px 24px rgba(0,0,0,0.35);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.hero-float {
  position: absolute;
  z-index: 4;
  right: 1rem;
  top: 1rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(47,111,237,0.28);
  padding: 0.85rem 0.95rem;
  box-shadow: 0 14px 40px rgba(20,22,26,0.12);
  max-width: 11.5rem;
}
.hero-float .stat-label { margin-bottom: 0.25rem; }
.hero-float .stat-value {
  font-size: 1.15rem;
  line-height: 1.15;
  margin-top: 0;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-top: 2.4rem;
}
.stat {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.88);
  padding: 1.2rem 1.05rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold-deep));
}
.stat-label {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.stat-value {
  margin-top: 0.55rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  color: var(--ink);
}

/* ── Sections ── */
.section {
  padding: 5.5rem 0;
  position: relative;
}
.section-soft {
  background:
    radial-gradient(ellipse at top left, rgba(196,165,116,0.08), transparent 45%),
    var(--paper-soft);
}
.section-dark {
  background:
    radial-gradient(ellipse at top right, rgba(196,165,116,0.12), transparent 40%),
    linear-gradient(180deg, #14171e 0%, #0f1114 100%);
  color: #fff;
}
.section-dark .kicker { color: var(--gold-soft); }
.section-dark h2,
.section-dark h3 { color: #fff; }
.section-dark p,
.section-dark .lead { color: rgba(255,255,255,0.72); }
.section-dark .card {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border-color: rgba(255,255,255,0.1);
  box-shadow: none;
}
.section-dark .card:hover {
  border-color: rgba(196,165,116,0.35);
  background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04));
}
.section-dark .card p { color: rgba(255,255,255,0.68); }
.section-dark .card-num { color: var(--gold-soft); }

.section-dark .stat-label {
  color: rgba(196,165,116,0.92);
}
.section-dark .stat-value {
  color: #fff;
}
.section-dark .deal-meta {
  border-top-color: rgba(255,255,255,0.14);
}
.section-dark .fineprint {
  color: rgba(255,255,255,0.58);
}
.section-dark .media-card {
  background: #fff;
  border-color: rgba(255,255,255,0.14);
  color: var(--ink);
}
.section-dark .media-card .kicker {
  color: var(--gold-deep);
}
.section-dark .media-card .body h3 {
  color: var(--ink);
}
.section-dark .media-card .body p {
  color: var(--ink-soft);
}
.section-dark .media-card .card-cta {
  color: var(--gold-deep);
}

.section-head {
  max-width: 44rem;
  margin-bottom: 2.6rem;
}
.kicker {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.85rem;
}
.section-head h2 {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  line-height: 1.04;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.section-head p {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  line-height: 1.7;
  font-weight: 300;
  font-size: 1.02rem;
}

.grid-2 {
  display: grid;
  gap: 1.25rem;
}
.grid-3 {
  display: grid;
  gap: 1.25rem;
}
.grid-4 {
  display: grid;
  gap: 1rem;
}

.card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, #fcfbf8 100%);
  padding: 1.65rem 1.55rem;
  box-shadow: var(--shadow);
  transition: transform .35s var(--ease), box-shadow .35s ease, border-color .35s ease;
  position: relative;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--line-strong);
}
.card h3 {
  font-size: 1.6rem;
  margin-top: 0.7rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.card p {
  margin: 0.75rem 0 0;
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 0.96rem;
  font-weight: 300;
}
.card-num {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--gold-deep);
  font-size: 1.9rem;
  line-height: 1;
}
.card-link {
  display: block;
  color: inherit;
  height: 100%;
}
.card-cta {
  margin-top: 1.15rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: gap 0.25s var(--ease);
}
.card-link:hover .card-cta,
.media-card.is-link:hover .card-cta,
a.media-card:hover .card-cta {
  gap: 0.7rem;
}
.path-card {
  min-height: 100%;
  overflow: hidden;
}
.path-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-soft), transparent 70%);
  opacity: 0.95;
}
.path-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,165,116,0.14), transparent 70%);
  pointer-events: none;
}

/* ── Media / deal cards ── */
.media-card {
  border: 1px solid var(--line);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform .35s var(--ease), box-shadow .35s ease, border-color .35s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
a.media-card:hover,
.media-card.is-link:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--line-strong);
}
.media-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
  transition: transform 0.9s var(--ease), filter 0.4s ease;
}
a.media-card:hover img,
.media-card.is-link:hover img {
  transform: scale(1.05);
  filter: saturate(0.98) contrast(1.06);
}
.deal-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1rem;
  margin-top: 1.2rem;
  padding-top: 1.05rem;
  border-top: 1px solid var(--line);
}
.deal-meta > div { min-width: 0; }
.deal-meta .stat-value {
  font-size: 1.05rem;
  margin-top: 0.25rem;
  line-height: 1.25;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.7rem;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(15,17,20,0.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}
.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold-soft);
}
.pill-live .pill-dot {
  background: #3ecf8e;
  box-shadow: 0 0 0 3px rgba(62,207,142,0.18);
  animation: pulse-dot 2s ease-in-out infinite;
}
.mark-ribbon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
}
.trust-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-top: 1.6rem;
}
.trust-item {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.78);
  padding: 1rem 1.05rem;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.trust-item strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.15rem;
}
.trust-item span {
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.5;
  font-weight: 300;
}
.trust-num {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--gold-deep);
  font-size: 1.4rem;
  line-height: 1;
  min-width: 1.6rem;
}
.media-card .body {
  padding: 1.5rem 1.55rem 1.7rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.media-card .body h3 {
  font-size: 1.85rem;
  margin: 0.4rem 0 0;
  letter-spacing: -0.01em;
}
.media-card .body p {
  margin: 0.8rem 0 0;
  color: var(--ink-soft);
  line-height: 1.65;
  font-weight: 300;
}
.media-card .body .card-cta { margin-top: auto; padding-top: 1.1rem; }

.path-card .card-num { margin-bottom: 0.2rem; }
.path-card h3 { margin-top: 0.2rem; }

/* ── Inner page hero ── */
.page-hero {
  padding: 5rem 0 3rem;
  background:
    radial-gradient(ellipse at top right, rgba(196,165,116,0.16), transparent 45%),
    linear-gradient(180deg, #fbfaf7, #ffffff);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-hero .bg-type { z-index: 0; }
.page-hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  top: -160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,165,116,0.12), transparent 68%);
  pointer-events: none;
}
.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47,111,237,0.45), transparent);
}
.page-hero h1 {
  font-size: clamp(2.5rem, 5.2vw, 4rem);
  line-height: 1.02;
}
.page-hero p {
  margin-top: 1.1rem;
  max-width: 40rem;
  color: var(--ink-soft);
  line-height: 1.7;
  font-weight: 300;
  font-size: 1.05rem;
}

.split {
  display: grid;
  gap: 2.2rem;
  align-items: start;
}
.split img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-hover);
  filter: saturate(0.92) contrast(1.03);
}
.split > .reveal > img,
.split > img {
  transition: transform 0.8s var(--ease);
}
.split > .reveal:hover > img,
.split > img:hover {
  transform: scale(1.01);
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-hover);
  background: var(--paper-soft);
}
.portrait-frame img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center top;
  border: 0;
  min-height: 0;
  filter: saturate(0.9) contrast(1.04);
}
.portrait-frame .body {
  padding: 1.5rem 1.55rem 1.7rem;
  background: linear-gradient(180deg, #fff, #fcfbf8);
}

.note {
  border: 1px solid rgba(47,111,237,0.28);
  background: linear-gradient(135deg, var(--gold-pale), #f3f7ff);
  padding: 1.25rem 1.35rem;
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 0.95rem;
  position: relative;
}
.note::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold-deep));
}

/* ── CTA band ── */
.cta-band {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(196,165,116,0.28);
  background:
    radial-gradient(circle at 85% 20%, rgba(196,165,116,0.22), transparent 35%),
    linear-gradient(135deg, #171a21 0%, #0f1114 55%, #1a1712 100%);
  box-shadow: var(--shadow-hover);
  padding: clamp(2rem, 4.5vw, 3.2rem);
  display: grid;
  gap: 1.5rem;
  align-items: center;
  color: #fff;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("/assets/topo-dense.svg");
  background-size: 1080px 680px;
  background-repeat: repeat;
  opacity: 0.04;
  mix-blend-mode: soft-light;
}
.cta-band::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -90px;
  bottom: -140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47,111,237,0.2), transparent 70%);
  pointer-events: none;
}
.cta-band .kicker { color: var(--gold-soft); }
.cta-band h2 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.06;
  color: #fff;
  letter-spacing: -0.02em;
}
.cta-band p {
  margin: 0.8rem 0 0;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  font-weight: 300;
  max-width: 36rem;
}

/* ── Forms ── */
.form-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #fcfbf8);
  box-shadow: var(--shadow-hover);
  padding: 1.85rem;
  position: relative;
}
.form-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-soft), var(--gold-deep), transparent);
}
.form-grid { display: grid; gap: 1rem; }
label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.45rem;
}
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  padding: 0.9rem 0.95rem;
  font: inherit;
  border-radius: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: rgba(47,111,237,0.55);
  box-shadow: 0 0 0 3px rgba(47,111,237,0.12);
}
.checkbox {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.84rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.checkbox input { width: auto; margin-top: 0.2rem; }
.form-msg { margin-top: 1rem; font-size: 0.92rem; line-height: 1.55; }
.form-msg.ok { color: var(--gold-deep); }
.form-msg.err { color: #b42318; }
.form-success-panel {
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, #fff, var(--gold-pale));
  padding: 1.5rem;
  margin-top: 1rem;
}
.form-success-panel h3 {
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
}
.form-success-panel p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
  font-weight: 300;
}
.hidden { display: none !important; }

/* ── Footer ── */
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  background:
    radial-gradient(ellipse at top, rgba(196,165,116,0.08), transparent 40%),
    linear-gradient(180deg, #14171e 0%, #0d0f13 100%);
  padding: 3.4rem 0 4.8rem;
  position: relative;
  color: rgba(255,255,255,0.72);
}
.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("/assets/topo-dense.svg");
  background-size: 1100px 700px;
  background-repeat: repeat;
  opacity: 0.03;
  mix-blend-mode: soft-light;
}
.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47,111,237,0.45), transparent);
  z-index: 1;
}
.footer-grid {
  display: grid;
  gap: 2rem;
}
.footer-brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0.16em;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
}
.footer-brand .word-true { font-weight: 700; }
.footer-copy {
  margin-top: 0.9rem;
  max-width: 28rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.65;
  font-weight: 300;
  font-size: 0.94rem;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem 1.5rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.62);
}
.footer-links a:hover { color: var(--gold-soft); }
.legal {
  margin-top: 2.4rem;
  padding-top: 1.6rem;
  padding-bottom: 1.35rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.72rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.42);
  max-width: 64rem;
}
.legal-copy {
  margin: 0 0 0.9rem;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  font-weight: 400;
}
.legal-copy:last-child { margin-bottom: 0.55rem; }
.legal-copy strong {
  color: rgba(255,255,255,0.62);
  font-weight: 600;
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: none;
  padding: 0.8rem 1rem calc(0.8rem + env(safe-area-inset-bottom));
  background: rgba(251,250,247,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 32px rgba(15,17,20,0.08);
}
.mobile-cta.is-visible { display: block; }
.mobile-cta .btn { width: 100%; }
body.has-mobile-cta main {
  padding-bottom: 5.5rem;
}
body.has-mobile-cta .site-footer {
  padding-bottom: 7.8rem;
}
body.menu-open .mobile-cta { display: none !important; }

/* ── Motion ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

.divider-gold {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-soft), transparent);
  margin: 1.2rem 0;
}

/* ── Responsive ── */
@media (max-width: 420px) {
  .hero h1 .hero-line {
    white-space: normal;
  }
}

@media (min-width: 768px) {
  .stats { grid-template-columns: repeat(4, 1fr); }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .form-grid.two { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr 1fr; }
  .hero-visual { min-height: 460px; }
  .hero-visual img { min-height: 460px; }
  .cta-band {
    grid-template-columns: 1.45fr auto;
    gap: 2rem;
  }
  .trust-strip { grid-template-columns: repeat(3, 1fr); }
  .media-card img { height: 300px; }
  .hero-inner { padding: 3.6rem 0 0.9rem; }
  .hero.hero-simple .hero-inner {
    padding: 5.8rem 0 4.8rem;
  }
  .hero-side {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }
  .hero-metrics { padding-bottom: 1.4rem; }
}

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .menu-btn { display: none; }
  .hero {
    min-height: auto;
  }
  .hero.hero-simple {
    min-height: min(82vh, 820px);
  }
  .hero-inner {
    padding: 3.4rem 0 0.75rem;
  }
  .hero.hero-simple .hero-inner {
    padding: 6.2rem 0 5.2rem;
  }
  .hero-grid {
    grid-template-columns: 1.4fr 0.72fr;
    gap: 1.8rem;
    align-items: start;
  }
  .hero-side {
    margin-top: 0.35rem;
    max-width: 18rem;
    justify-self: end;
  }
  .hero h1 {
    font-size: clamp(2.5rem, 4.2vw, 4.1rem);
    line-height: 0.98;
    max-width: min(24ch, 100%);
  }
  .hero.hero-simple h1 {
    font-size: clamp(3rem, 5vw, 4.75rem);
    max-width: min(18ch, 100%);
  }
  .hero.hero-simple .lead {
    font-size: 1.28rem;
    max-width: 36rem;
  }
  .hero h1 .hero-line {
    white-space: nowrap;
  }
  .hero .stats .stat {
    padding: 0.95rem 0.9rem;
  }
  .hero .stat-value {
    font-size: 1.28rem;
  }
  .hero .trust-item {
    padding: 0.8rem 0.9rem;
  }
  .split { grid-template-columns: 1fr 1fr; gap: 3.2rem; }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .section { padding: 6.5rem 0; }
  body.has-mobile-cta main { padding-bottom: 0; }
  body.has-mobile-cta .site-footer { padding-bottom: 4.8rem; }
  .media-card img { height: 320px; }
  .deal-meta { grid-template-columns: 1fr 1fr 1fr; }
}

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


/* Deal page sticky section tabs (TrueStorage one-page layout) */
.deal-tabs {
  position: sticky;
  top: calc(var(--header-h) + 42px);
  z-index: 40;
  background: rgba(247, 249, 252, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
body:has(.latest-offering-bar) .deal-tabs {
  top: calc(var(--header-h) + 42px);
}
.deal-tabs-inner {
  display: flex;
  gap: 0.35rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0.55rem 0;
  scrollbar-width: none;
}
.deal-tabs-inner::-webkit-scrollbar { display: none; }
.deal-tab {
  flex: 0 0 auto;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid transparent;
  transition: color 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.deal-tab:hover {
  color: var(--ink);
  background: rgba(47, 111, 237, 0.06);
}
.deal-tab.is-active {
  color: var(--gold-deep);
  background: var(--gold-pale);
  border-color: rgba(47, 111, 237, 0.22);
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .grid-4 { grid-template-columns: 1fr; }
  .deal-tabs { top: calc(var(--header-h) + 56px); }
}
/* Anchor offset under sticky header + tabs */
#overview, #market, #market-brief, #design, #pitch, #projections, #timeline, #next {
  scroll-margin-top: 9.5rem;
}
