
:root {
  --bg-dark: #0d1117;
  --bg-dark-soft: #121821;
  --bg-light: #f3efe8;
  --bg-light-2: #ece7df;
  --text-dark: #17191d;
  --text-light: #f7f3ee;
  --muted-light: rgba(247, 243, 238, 0.76);
  --muted-dark: rgba(23, 25, 29, 0.68);
  --line-light: rgba(23, 25, 29, 0.08);
  --line-dark: rgba(247, 243, 238, 0.12);
  --accent: #83d6c8;
  --accent-soft: rgba(131, 214, 200, 0.16);
  --shadow-xl: 0 28px 80px rgba(0, 0, 0, 0.24);
  --shadow-lg: 0 16px 38px rgba(0, 0, 0, 0.16);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1220px;
  --easing: cubic-bezier(.22, 1, .36, 1);
  --header-height: 92px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-dark);
  background: var(--bg-dark);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { border: 0; background: none; cursor: pointer; }
img, video { max-width: 100%; display: block; }
::selection { background: rgba(131, 214, 200, 0.22); }
.container { width: min(calc(100% - 48px), var(--max-width)); margin: 0 auto; }
.section { position: relative; overflow: clip; }
.section-light { background: var(--bg-light); color: var(--text-dark); }
.section-dark { background: var(--bg-dark); color: var(--text-light); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(247, 243, 238, 0.78);
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; opacity: 0.65; }
.eyebrow-dark { color: rgba(23, 25, 29, 0.56); }
.display {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 700;
}
.section-head { max-width: 780px; margin-bottom: 48px; }
.section-head p,
.section-copy p,
.hero-text,
.overview-card p,
.service-card p,
.situation-card p,
.resource-card h3,
.close-shell p { margin: 0; color: inherit; }
.section-head p,
.section-copy p,
.close-shell p { margin-top: 18px; font-size: 1.02rem; color: var(--muted-dark); }
.section-dark .section-head p,
.section-dark .section-copy p { color: var(--muted-light); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 0.45s var(--easing), background-color 0.45s var(--easing), border-color 0.45s var(--easing), color 0.45s var(--easing), box-shadow 0.45s var(--easing);
}
.btn::after { content: "→"; font-size: 1rem; transition: transform 0.45s var(--easing); }
.btn:hover::after,
.btn:focus-visible::after { transform: translateX(4px); }
.btn-light { background: var(--text-light); color: var(--text-dark); box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24); }
.btn-light:hover,
.btn-light:focus-visible,
.btn-dark:hover,
.btn-dark:focus-visible { transform: translateY(-2px); }
.btn-dark { background: var(--text-dark); color: var(--text-light); box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16); }
.btn-ghost {
  border: 1px solid rgba(247, 243, 238, 0.2);
  color: var(--text-light);
  background: rgba(247, 243, 238, 0.06);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover,
.btn-ghost:focus-visible { border-color: rgba(247, 243, 238, 0.36); background: rgba(247, 243, 238, 0.1); }

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  z-index: 300;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, rgba(131, 214, 200, 0.8), rgba(255, 255, 255, 0.92));
  box-shadow: 0 0 18px rgba(131, 214, 200, 0.45);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  padding: 18px 0;
  transition: padding 0.45s var(--easing);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 10px 16px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 11, 16, 0.38);
  backdrop-filter: blur(16px) saturate(130%);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.45s var(--easing), transform 0.45s var(--easing);
}
.site-header.is-scrolled { padding: 10px 0; }
.site-header.is-scrolled::before { opacity: 1; transform: translateY(0); }
.header-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; min-width: 160px; }
.brand img { width: clamp(176px, 18vw, 240px); height: auto; }
.site-nav { display: flex; align-items: center; gap: 24px; }
.site-nav a {
  position: relative;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 243, 238, 0.86);
  padding: 10px 0;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--easing);
  opacity: 0.6;
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after { transform: scaleX(1); }
.nav-cta {
  padding: 13px 18px !important;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}
.nav-cta::after { display: none; }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: var(--text-light);
}
.nav-toggle span {
  width: 18px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.35s var(--easing), opacity 0.35s var(--easing);
}
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav-toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translate(-50%, 24px);
  z-index: 240;
  background: rgba(8, 11, 16, 0.92);
  color: var(--text-light);
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
  font-size: 0.9rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--easing), transform 0.35s var(--easing);
}
.nav-toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

.hero {
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-height) + 56px) 0 0;
}
.hero-video,
.hero-overlay,
.hero-noise,
.hero-rings { position: absolute; inset: 0; }
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: heroScale 18s ease-in-out infinite alternate;
}
@keyframes heroScale { from { transform: scale(1.04); } to { transform: scale(1.1); } }
.hero-overlay {
  background:
    radial-gradient(circle at 82% 18%, rgba(131, 214, 200, 0.22), transparent 24%),
    linear-gradient(180deg, rgba(10, 12, 17, 0.16) 0%, rgba(10, 12, 17, 0.58) 42%, rgba(10, 12, 17, 0.9) 100%);
}
.hero-noise {
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, transparent 0%, black 18%, black 100%);
}
.hero-rings span {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  animation: floatRing 12s linear infinite;
}
.hero-rings span:nth-child(1) { width: 420px; height: 420px; left: -120px; bottom: 90px; }
.hero-rings span:nth-child(2) { width: 580px; height: 580px; right: -180px; top: 80px; animation-duration: 16s; }
.hero-rings span:nth-child(3) { width: 280px; height: 280px; right: 24%; bottom: 160px; animation-duration: 20s; }
@keyframes floatRing { from { transform: translateY(0) rotate(0deg); } to { transform: translateY(-16px) rotate(360deg); } }
.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.62fr);
  gap: 52px;
  align-items: end;
  width: 100%;
  padding-bottom: 92px;
}
.hero-copy { max-width: 760px; }
.hero-title {
  margin: 0;
  font-size: clamp(3rem, 7.2vw, 6.75rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
  max-width: 11ch;
}
.hero-text { margin-top: 24px; max-width: 700px; font-size: 1.1rem; color: rgba(247, 243, 238, 0.8); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-metrics { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.metric-pill {
  min-width: 230px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(247, 243, 238, 0.08);
  border: 1px solid rgba(247, 243, 238, 0.12);
  backdrop-filter: blur(10px);
}
.metric-pill strong { display: block; margin-bottom: 6px; font-size: 1rem; font-weight: 700; }
.metric-pill span { display: block; color: rgba(247, 243, 238, 0.72); font-size: 0.92rem; }
.hero-panel {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(20, 24, 32, 0.68), rgba(10, 13, 18, 0.92));
  box-shadow: var(--shadow-xl);
}
.hero-panel::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 56%;
  height: 1px;
  background: linear-gradient(90deg, rgba(131, 214, 200, 0.8), transparent);
}
.panel-kicker,
.panel-kicker-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.panel-kicker { color: rgba(247, 243, 238, 0.62); }
.panel-kicker-dark { color: rgba(23, 25, 29, 0.54); }
.panel-kicker::before,
.panel-kicker-dark::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.hero-panel h2,
.founder-note h3 {
  margin: 18px 0 20px;
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}
.hero-panel ul,
.founder-note ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}
.hero-panel li,
.founder-note li,
.work-list li {
  position: relative;
  padding-left: 22px;
}
.hero-panel li { color: rgba(247, 243, 238, 0.74); }
.hero-panel li::before,
.founder-note li::before,
.work-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.hero-panel li::before { background: var(--accent); box-shadow: 0 0 16px rgba(131, 214, 200, 0.55); }
.founder-note li::before,
.work-list li::before { background: var(--text-dark); opacity: 0.66; }
.hero-marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 13, 18, 0.7);
  backdrop-filter: blur(12px);
}
.hero-track { display: flex; align-items: center; gap: 28px; width: max-content; padding: 18px 0; animation: marquee 28s linear infinite; }
.hero-track span {
  position: relative;
  padding-left: 28px;
  color: rgba(247, 243, 238, 0.78);
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero-track span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(131, 214, 200, 0.82);
  transform: translateY(-50%);
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.overview { padding: 120px 0; }
.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.overview-card,
.service-card,
.resource-card,
.situation-card,
.founder-note {
  position: relative;
  padding: 28px;
  border-radius: 28px;
  transition: transform 0.55s var(--easing), border-color 0.55s var(--easing), background-color 0.55s var(--easing), box-shadow 0.55s var(--easing);
}
.overview-card {
  min-height: 250px;
  border: 1px solid rgba(23, 25, 29, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
}
.overview-card:hover,
.situation-card:hover,
.situation-card:focus-within,
.founder-note:hover { transform: translateY(-4px); }
.overview-kicker,
.situation-type,
.resource-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(23, 25, 29, 0.58);
  font-weight: 700;
}
.overview-kicker::before,
.situation-type::before,
.resource-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.overview-card h3 { margin: 20px 0 14px; font-size: clamp(1.45rem, 2vw, 1.92rem); line-height: 1.08; letter-spacing: -0.03em; }
.overview-card p { color: var(--muted-dark); }

.founder-stage { padding: 24px 0 124px; }
.section-accent {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.12) 100%),
    radial-gradient(circle at 85% 18%, rgba(23,25,29,0.045), transparent 18%),
    radial-gradient(circle at 20% 72%, rgba(23,25,29,0.04), transparent 20%);
}
.founder-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.96fr);
  gap: 54px;
  align-items: center;
}
.section-copy { max-width: 620px; }
.founder-media { display: grid; gap: 18px; }
.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: #11151b;
  box-shadow: var(--shadow-xl);
}
.video-card video,
.media-tile img,
.media-tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--easing);
}
.video-card:hover video,
.media-tile:hover img,
.media-tile:hover video { transform: scale(1.05); }
.founder-video { min-height: 400px; }
.video-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 12, 16, 0.08), rgba(9, 12, 16, 0.12) 42%, rgba(9, 12, 16, 0.82) 100%);
}
.play-badge {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(247, 243, 238, 0.9);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}
.play-badge::before,
.play-badge::after { content: ""; position: absolute; inset: 0; border-radius: 50%; }
.play-badge::before { background: radial-gradient(circle, rgba(255,255,255,0.2), transparent 72%); animation: pulse 2.2s ease-in-out infinite; }
.play-badge::after {
  width: 0;
  height: 0;
  border-left: 14px solid var(--text-dark);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  inset: 50% auto auto 50%;
  transform: translate(-30%, -50%);
}
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 0.35; } 50% { transform: scale(1.16); opacity: 0.12; } }
.video-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  color: var(--text-light);
}
.video-caption span {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 243, 238, 0.72);
}
.video-caption strong { display: block; font-size: 1.04rem; line-height: 1.28; font-weight: 650; }
.founder-note {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 25, 29, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.founder-note h3 { font-size: clamp(1.4rem, 2.1vw, 2rem); color: var(--text-dark); }
.founder-note li { color: var(--text-dark); }

.services,
.situations,
.resources { padding: 124px 0; }
.services-grid,
.situations-grid,
.resource-grid {
  display: grid;
  gap: 18px;
}
.services-grid,
.situations-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.resource-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-card {
  min-height: 300px;
  border: 1px solid var(--line-dark);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.04));
}
.service-card::before,
.resource-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(131, 214, 200, 0.16), transparent 44%);
  opacity: 0;
  transition: opacity 0.45s var(--easing);
  pointer-events: none;
}
.service-card:hover,
.service-card:focus-within,
.resource-card:hover,
.resource-card:focus-within { transform: translateY(-4px); border-color: rgba(255, 255, 255, 0.18); }
.service-card:hover::before,
.service-card:focus-within::before,
.resource-card:hover::before,
.resource-card:focus-within::before { opacity: 1; }
.card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 243, 238, 0.78);
}
.service-card h3,
.resource-card h3 { margin: 20px 0 14px; font-size: 1.5rem; line-height: 1.08; letter-spacing: -0.03em; }
.service-card p { color: rgba(247, 243, 238, 0.74); }
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.card-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(247,243,238,0.74);
  font-size: 0.8rem;
}
.situations::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(23, 25, 29, 0.04), transparent 22%),
    radial-gradient(circle at 86% 70%, rgba(23, 25, 29, 0.05), transparent 20%);
  pointer-events: none;
}
.narrow { max-width: 840px; }
.situation-card {
  min-height: 260px;
  border: 1px solid rgba(23, 25, 29, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}
.situation-card p { margin-top: 18px; color: var(--muted-dark); }

.client-fit { padding: 24px 0 124px; }
.client-fit-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
}
.media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.media-tile {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #d8d2c8;
  min-height: 220px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}
.media-video { min-height: 260px; grid-column: span 2; }
.work-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 16px; }
.work-list li { color: var(--text-dark); }

.resource-card {
  min-height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.05));
}
.resource-card h3 { font-size: clamp(1.32rem, 2vw, 1.76rem); }

.close-cta { padding: 110px 0 126px; }
.close-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: 36px;
  border-radius: 34px;
  border: 1px solid rgba(23, 25, 29, 0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.74), rgba(255,255,255,0.9));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
}
.site-footer { background: var(--bg-light-2); padding: 26px 0 34px; border-top: 1px solid rgba(23, 25, 29, 0.08); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-brand img { width: clamp(170px, 17vw, 230px); height: auto; }
.footer-inner p { margin: 0; color: var(--muted-dark); font-size: 0.96rem; }

.reveal { opacity: 1; transform: none; }
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--easing), transform 0.8s var(--easing);
}
.js .reveal.is-visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.js [data-tilt],
.js [data-parallax],
.js .magnetic { will-change: transform; }

.page-stub .stub-main {
  min-height: 100svh;
  padding: calc(var(--header-height) + 80px) 0 110px;
  background: linear-gradient(180deg, #11161f, #0d1117);
  color: var(--text-light);
}
.stub-shell {
  max-width: 760px;
  padding: 44px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-xl);
}
.stub-shell p { color: rgba(247,243,238,0.76); margin: 18px 0 0; font-size: 1.02rem; }
.stub-shell .btn { margin-top: 28px; }

@media (max-width: 1120px) {
  .hero-layout,
  .founder-layout,
  .client-fit-layout { grid-template-columns: 1fr; }
  .hero-copy,
  .section-copy { max-width: none; }
}

@media (max-width: 960px) {
  .js .site-nav {
    position: fixed;
    top: 20px;
    right: 20px;
    left: 20px;
    padding: 92px 24px 28px;
    border-radius: 28px;
    background: rgba(8, 11, 16, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s var(--easing), transform 0.35s var(--easing);
  }
  body.menu-open .site-nav { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .js .site-nav a { padding: 14px 0; }
  .js .site-nav a::after { bottom: 8px; }
  .js .nav-toggle { display: inline-flex; }

  .hero { padding-top: calc(var(--header-height) + 40px); }
  .hero-layout { padding-bottom: 104px; gap: 32px; }
  .hero-panel { max-width: 560px; }

  .overview-grid,
  .services-grid,
  .situations-grid,
  .resource-grid,
  .media-grid,
  .close-shell,
  .footer-inner { grid-template-columns: 1fr; }
  .media-video { grid-column: auto; }
  .close-shell,
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 720px) {
  :root { --header-height: 82px; }
  .container { width: min(calc(100% - 28px), var(--max-width)); }
  .site-header::before { inset: 8px 8px; }
  .hero-title { max-width: 10ch; }
  .hero-actions,
  .hero-metrics { flex-direction: column; align-items: stretch; }
  .metric-pill { min-width: 0; }
  .overview,
  .founder-stage,
  .services,
  .situations,
  .resources,
  .close-cta { padding-top: 96px; padding-bottom: 96px; }
  .play-badge { width: 54px; height: 54px; }
  .close-shell,
  .stub-shell { padding: 26px; }
}

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


/* --- v5 approved hero / header refinements --- */
.container.wide { width: min(1380px, calc(100% - 32px)); }
.site-nav a[aria-current="page"] { color: #8cd6ff; }
.site-nav a[data-soon] { cursor: pointer; }
.nav-toast {
  min-width: min(620px, calc(100% - 24px));
  max-width: min(620px, calc(100% - 24px));
  text-align: center;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: calc(var(--header-height) + 40px) 0 42px;
  background:
    radial-gradient(circle at 10% 52%, rgba(140, 214, 255, 0.08), transparent 24%),
    radial-gradient(circle at 72% 22%, rgba(140, 214, 255, 0.04), transparent 26%),
    linear-gradient(180deg, #020913 0%, #040b18 58%, #020710 100%);
}
.hero-backdrop,
.hero-grid,
.hero-canvas,
.hero-rings { position: absolute; inset: 0; }
.hero-backdrop {
  background:
    radial-gradient(circle at 18% 22%, rgba(140, 214, 255, 0.14), transparent 22%),
    linear-gradient(90deg, rgba(3, 8, 18, 0.96) 0%, rgba(3, 8, 18, 0.84) 36%, rgba(3, 8, 18, 0.28) 100%);
}
.hero-grid {
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(140, 214, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(140, 214, 255, 0.055) 1px, transparent 1px);
  background-size: 108px 108px;
  -webkit-mask-image: radial-gradient(circle at center, black 68%, transparent 100%);
  mask-image: radial-gradient(circle at center, black 68%, transparent 100%);
}
.hero-canvas { z-index: 2; pointer-events: none; }
.hero-rings span {
  position: absolute;
  border: 1px solid rgba(140, 214, 255, 0.09);
  border-radius: 50%;
  pointer-events: none;
}
.hero-rings span:nth-child(1) { width: 410px; height: 410px; left: -132px; top: 38%; }
.hero-rings span:nth-child(2) { width: 570px; height: 570px; right: -140px; top: -24px; }
.hero-rings span:nth-child(3) { width: 420px; height: 420px; right: 18%; bottom: -122px; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 8, 18, 0.08) 0%, rgba(2, 8, 18, 0.26) 46%, rgba(2, 8, 18, 0.78) 100%);
  z-index: 3;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 86% 18%, rgba(255, 255, 255, 0.05), transparent 18%);
  z-index: 4;
}
.hero-layout {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.68fr);
  gap: 40px;
  align-items: end;
  width: 100%;
  padding-bottom: 26px;
}
.hero-copy { max-width: 860px; }
.hero-title {
  margin: 0;
  font-size: clamp(3.4rem, 8vw, 8.4rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  font-weight: 700;
  max-width: none;
}
.hero-title .title-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.05em;
}
.js .hero-title .title-line {
  opacity: 0;
  transform: translateY(120%);
  transition: transform 1s var(--easing), opacity 1s var(--easing);
}
.hero-title .title-line em {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 500;
  color: #8cd6ff;
  text-shadow: 0 0 20px rgba(140, 214, 255, 0.14);
}
body.is-ready .hero-title .title-line { opacity: 1; transform: translateY(0); }
body.is-ready .hero-title .title-line:nth-child(1) { transition-delay: 0.12s; }
body.is-ready .hero-title .title-line:nth-child(2) { transition-delay: 0.24s; }
body.is-ready .hero-title .title-line:nth-child(3) { transition-delay: 0.36s; }
.hero-text {
  margin-top: 28px;
  max-width: 64ch;
  font-size: 1.08rem;
  color: rgba(247, 243, 238, 0.8);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.hero-chips span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(247, 243, 238, 0.84);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  line-height: 1.1;
}
.hero-chips span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8cd6ff;
  box-shadow: 0 0 12px rgba(140, 214, 255, 0.65);
}
.btn-primary {
  background: linear-gradient(135deg, #8cd6ff 0%, #d2f0ff 100%);
  color: #061019;
  box-shadow: 0 16px 30px rgba(140, 214, 255, 0.24);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 44px rgba(140, 214, 255, 0.28);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--text-light);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover,
.btn-secondary:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
}
.hero-brief {
  position: relative;
  align-self: end;
  padding: 28px 26px 26px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transform-style: preserve-3d;
}
.hero-brief::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(140, 214, 255, 0.18), transparent 32%);
  opacity: 0;
  transition: opacity 0.45s var(--easing);
  pointer-events: none;
}
.hero-brief:hover::before { opacity: 1; }
.brief-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247, 243, 238, 0.62);
}
.brief-label::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
}
.hero-brief h2 {
  margin: 18px 0;
  font-size: clamp(1.4rem, 2.7vw, 2rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}
.hero-brief ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.hero-brief li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(247, 243, 238, 0.72);
}
.hero-brief li::before {
  content: "";
  flex: 0 0 7px;
  width: 7px;
  height: 7px;
  margin-top: 0.72em;
  border-radius: 50%;
  background: #8cd6ff;
  box-shadow: 0 0 14px rgba(140, 214, 255, 0.55);
}
.js .reveal-scale { transform: translateY(24px) scale(0.97); }
.js .reveal-scale.is-visible { transform: none; }

@media (max-width: 1120px) {
  .hero-layout { grid-template-columns: 1fr; gap: 34px; }
  .hero-copy { max-width: none; }
}
@media (max-width: 960px) {
  .hero { padding-bottom: 28px; }
  .hero::before { background: linear-gradient(180deg, rgba(2, 8, 18, 0.14) 0%, rgba(2, 8, 18, 0.42) 45%, rgba(2, 8, 18, 0.86) 100%); }
  .hero-title { max-width: 12ch; }
  .hero-rings span:nth-child(1) { width: 300px; height: 300px; left: -110px; top: 42%; }
  .hero-rings span:nth-child(2) { width: 420px; height: 420px; right: -140px; top: 14px; }
  .hero-rings span:nth-child(3) { width: 320px; height: 320px; right: 10%; bottom: -100px; }
}
@media (max-width: 720px) {
  .brand img { width: 170px; }
  .hero-layout { padding-bottom: 18px; }
  .hero-text { font-size: 1rem; }
  .hero-brief, .service-card, .situation-card, .overview-card, .resource-card, .media-tile, .founder-video, .founder-note, .close-shell, .stub-shell { border-radius: 22px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn, .stub-shell .btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-title .title-line { opacity: 1 !important; transform: none !important; }
}
