:root {
  color-scheme: dark;
  --bg: #050708;
  --bg-2: #090e11;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.09);
  --line: rgba(255, 255, 255, 0.13);
  --text: #eef5f5;
  --muted: #aab7b7;
  --quiet: #748485;
  --cyan: #77f1ef;
  --teal: #1f9e9a;
  --gold: #dfba69;
  --shadow: rgba(0, 0, 0, 0.42);
  --max: 1180px;
}

/* Keep navigation available at every viewport size. */
.site-header .nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 104px;
  flex-shrink: 0;
  cursor: pointer;
  color: var(--text);
  font: inherit;
}
.site-header .nav-toggle span { width: auto; height: auto; margin: 0; background: none; }
.menu-icon { font-size: 22px; line-height: 1; }
.menu-label { font-size: 14px; }
.site-header .site-nav {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(320px, calc(100vw - 24px));
  display: none;
  flex-direction: column;
  align-items: stretch;
  padding: 12px;
  background: #101619;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 50px #0008;
}
.site-header.nav-open .site-nav { display: flex; }
.site-header .site-nav a { padding: 16px; }
.site-nav a:hover { color: var(--cyan); }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 5px; }
[id] { scroll-margin-top: 120px; }
.accent-cyan, .hero-statement em { color: var(--cyan); font-style: normal; }
.accent-gold { color: var(--gold); }
.hero-statement { display: block; font-size: 3.1rem; line-height: 1.12; margin-top: 24px; }
.hero .hero-copy { max-width: 570px; color: #dae3e3; }
.hero .journey-strip { transform: translateX(-50%); }
.journey-strip a { display: flex; align-items: center; gap: 12px; padding: 20px; font-weight: 600; transition: background 180ms ease; }
.journey-strip a + a { border-left: 1px solid var(--line); }
.journey-strip small { color: var(--gold); font-size: 11px; }
.journey-strip b { margin-left: auto; color: var(--cyan); }
.journey-strip a:hover { background: #77f1ef16; }
.editorial-image { margin: 48px 0 0; }
.editorial-image img { width: 100%; height: auto; aspect-ratio: 2.3; object-fit: cover; object-position: center 45%; border-radius: 4px; }
.editorial-image figcaption { display: flex; justify-content: space-between; gap: 16px; padding-top: 18px; font-size: 14px; color: var(--muted); }
.editorial-image figcaption span:first-child { color: var(--gold); }
.pillar-card { overflow: hidden; }
.pillar-image { width: calc(100% + 56px); max-width: none; height: 210px; object-fit: cover; margin: -28px -28px 28px; transition: transform 450ms ease; }
.pillar-card:hover .pillar-image { transform: scale(1.035); }
.pillar-index { margin-bottom: 16px; }
.pillar-card:nth-child(1) h3 { color: #b5ebe5; }
.pillar-card:nth-child(2) h3 { color: #efce89; }
.pillar-card:nth-child(3) h3 { color: #c2d4fa; }
.step-card { transition: border-color 200ms ease, background 200ms ease; }
.step-card:target { border-color: var(--cyan); background: #13302e; }
.step-card h3 { margin-top: 24px; }
.contact-section .contact-card { border: 0; border-radius: 0; background: none; box-shadow: none; padding: 0; }
@media (max-width: 900px) {
  .hero .journey-strip { transform: none; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .journey-strip a:nth-child(3) { border-left: 0; }
  .journey-strip a:nth-child(n+3) { border-top: 1px solid var(--line); }
  .hero .hero-statement { font-size: 2.6rem; }
  h2 { font-size: 2.4rem; }
  .pillar-image { height: auto; aspect-ratio: 2; }
  .editorial-image img { aspect-ratio: 1.6; }
}
@media (max-width: 560px) {
  .hero .hero-statement { font-size: 2rem; }
  .hero { padding-bottom: 42px; }
  .hero .journey-strip a { padding: 16px 10px; gap: 6px; font-size: 13px; }
  .editorial-image figcaption { flex-direction: column; gap: 6px; }
  .editorial-image img { aspect-ratio: 1.25; }
  h2 { font-size: 2rem; line-height: 1.12; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

* {
  box-sizing: border-box;
}

button { font-family: inherit; font-size: inherit; cursor: pointer; }
body:has(.contact-dialog[open]) { overflow: hidden; }
.contact-dialog {
  width: min(480px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  padding: 36px 28px 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #101619;
  color: var(--text);
  box-shadow: 0 24px 80px #0008;
}
.contact-dialog::backdrop { background: #000b; backdrop-filter: blur(6px); }
.contact-dialog h2 { font-size: 2rem; margin-bottom: 16px; }
.contact-dialog > p:not(.eyebrow) { color: var(--muted); line-height: 1.5; }
.contact-dialog .eyebrow { padding-right: 28px; }
.dialog-close {
  position: absolute; top: 8px; right: 8px;
  width: 44px; height: 44px;
  border: 0; border-radius: 4px;
  background: transparent; color: var(--text); font-size: 28px;
}
.dialog-close:hover { background: var(--panel-strong); }
.contact-options { display: grid; gap: 12px; margin-top: 24px; }
.contact-options a { display: grid; gap: 8px; border: 1px solid var(--line); border-radius: 6px; padding: 20px; overflow-wrap: anywhere; }
.contact-options a:hover { background: var(--panel-strong); border-color: var(--cyan); }
.contact-options strong { color: var(--cyan); }
.contact-options a:last-child strong { color: #9ae7ad; }
.contact-options span { font-size: 15px; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background:
    radial-gradient(circle at 72% 12%, rgba(119, 241, 239, 0.14), transparent 34rem),
    radial-gradient(circle at 18% 42%, rgba(223, 186, 105, 0.08), transparent 30rem),
    linear-gradient(180deg, #050708 0%, #081011 48%, #050708 100%);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 32px), var(--max));
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 7, 8, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(119, 241, 239, 0.45);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(119, 241, 239, 0.16), rgba(223, 186, 105, 0.1));
  color: var(--cyan);
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  margin-top: 4px;
  color: var(--quiet);
  font-size: 0.74rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.88rem;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 720px;
  display: grid;
  align-items: center;
  padding: 160px 24px 140px;
}

.hero::after,
.dark-band::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, black 18%, black 70%, transparent);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 8, 0.92) 0%, rgba(5, 7, 8, 0.65) 42%, rgba(5, 7, 8, 0.05) 78%),
    linear-gradient(0deg, #050708, transparent 38%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.86;
}

.hero-content {
  width: min(100%, var(--max));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: 5.25rem;
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.22;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(119, 241, 239, 0.55);
}

.button.primary {
  background: linear-gradient(135deg, var(--cyan), #bffdf5);
  color: #031011;
  border-color: transparent;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
}

.journey-strip {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 3;
  transform: translateX(-50%);
  width: min(calc(100% - 48px), var(--max));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 7, 8, 0.62);
  backdrop-filter: blur(16px);
}

.journey-strip span {
  position: relative;
  padding: 18px;
  color: var(--muted);
  font-weight: 700;
}

.journey-strip span + span {
  border-left: 1px solid var(--line);
}

.section {
  position: relative;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 104px 0;
}

.dark-band,
.proof-band {
  width: 100%;
  padding-left: max(24px, calc((100vw - var(--max)) / 2));
  padding-right: max(24px, calc((100vw - var(--max)) / 2));
}

.dark-band {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-band {
  background: linear-gradient(135deg, rgba(119, 241, 239, 0.08), rgba(223, 186, 105, 0.055));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(36px, 7vw, 92px);
}

.align-end {
  align-items: end;
}

.stacked-copy p,
.step-card p,
.pillar-card p,
.accordion p,
.contact-card p,
.site-footer p {
  color: var(--muted);
  line-height: 1.72;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.section-heading.narrow {
  max-width: 660px;
}

.journey-grid,
.pillar-grid {
  display: grid;
  gap: 16px;
}

.journey-grid {
  grid-template-columns: repeat(4, 1fr);
}

.pillar-grid {
  grid-template-columns: repeat(3, 1fr);
}

.step-card,
.pillar-card,
.accordion details,
.insight-list article,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
}

.step-card,
.pillar-card {
  min-height: 260px;
  padding: 28px;
}

.step-card span,
.pillar-index,
.insight-list span {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
}

.pillar-card.featured {
  background: linear-gradient(180deg, rgba(119, 241, 239, 0.14), rgba(255, 255, 255, 0.055));
  border-color: rgba(119, 241, 239, 0.33);
}

.pillar-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: #d8e5e4;
}

.pillar-card li {
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-panel {
  display: grid;
  gap: 12px;
}

.metric-panel div {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.2);
}

.metric-panel strong {
  color: var(--cyan);
}

.metric-panel span {
  color: #dbe8e8;
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion details {
  padding: 0 24px;
}

.accordion summary {
  cursor: pointer;
  padding: 24px 0;
  font-size: 1.1rem;
  font-weight: 800;
}

.accordion p {
  max-width: 780px;
  margin-bottom: 24px;
}

.insight-list {
  display: grid;
  gap: 14px;
}

.insight-list article {
  padding: 22px;
}

.insight-list h3 {
  margin: 10px 0 0;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
  background:
    linear-gradient(135deg, rgba(119, 241, 239, 0.14), rgba(223, 186, 105, 0.075)),
    var(--panel);
}

.contact-card p {
  max-width: 700px;
  margin-bottom: 0;
}

.site-footer {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 42px 0 56px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--text);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .site-header {
    width: min(calc(100% - 24px), var(--max));
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(320px, calc(100vw - 24px));
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(5, 7, 8, 0.94);
  }

  .site-header.nav-open .site-nav {
    display: flex;
  }

  .hero { min-height: 760px; padding-top: 130px; }

  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(5, 7, 8, 0.9), rgba(5, 7, 8, 0.35)),
      linear-gradient(0deg, #050708, transparent 65%);
  }

  .journey-strip,
  .split,
  .journey-grid,
  .pillar-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .journey-strip {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: min(100%, var(--max));
    margin: 42px auto 0;
  }

  .journey-strip span + span {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .contact-card .button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .hero,
  .section,
  .dark-band,
  .proof-band {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section {
    width: 100%;
    padding-top: 76px;
    padding-bottom: 76px;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .step-card,
  .pillar-card {
    min-height: auto;
  }
}
