:root {
  --bg: #0b1119;
  --bg-soft: #101722;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-strong: rgba(12, 18, 27, 0.86);
  --card-bg: rgba(12, 18, 27, 0.8);
  --surface-bg: rgba(10, 15, 23, 0.62);
  --model-bg: rgba(12, 18, 27, 0.86);
  --core-bg: rgba(8, 13, 20, 0.88);
  --chip-bg: rgba(255, 255, 255, 0.06);
  --chip-text: rgba(255, 255, 255, 0.9);
  --brand-text: rgba(255, 255, 255, 0.82);
  --line: rgba(255, 255, 255, 0.1);
  --text: #eef4fb;
  --muted: #a4b3c5;
  --accent: #ff7a18;
  --accent-soft: #ffd166;
  --accent-cool: #7ce6dd;
  --eyebrow-color: #ffd166;
  --header-bg: rgba(10, 15, 23, 0.72);
  --ghost-bg: rgba(255, 255, 255, 0.06);
  --ghost-border: rgba(255, 255, 255, 0.08);
  --input-bg: rgba(255, 255, 255, 0.05);
  --input-border: rgba(255, 255, 255, 0.1);
  --modal-backdrop: rgba(8, 12, 18, 0.9);
  --modal-surface: #0c131c;
  --pill-live-bg: rgba(255, 122, 24, 0.14);
  --pill-live-text: #ffd5b4;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  --body: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
}

:root[data-theme="light"] {
  --bg: #f5efe6;
  --bg-soft: #ece3d5;
  --panel: rgba(255, 255, 255, 0.75);
  --panel-strong: rgba(255, 252, 247, 0.88);
  --card-bg: rgba(255, 251, 246, 0.9);
  --surface-bg: rgba(255, 250, 245, 0.9);
  --model-bg: rgba(255, 250, 245, 0.92);
  --core-bg: rgba(248, 241, 232, 0.96);
  --chip-bg: rgba(255, 255, 255, 0.72);
  --chip-text: #2a221a;
  --brand-text: #3b3025;
  --line: rgba(69, 49, 23, 0.12);
  --text: #1b1611;
  --muted: #6a5d4f;
  --eyebrow-color: #87521a;
  --header-bg: rgba(255, 252, 247, 0.82);
  --ghost-bg: rgba(27, 22, 17, 0.04);
  --ghost-border: rgba(27, 22, 17, 0.08);
  --input-bg: rgba(255, 255, 255, 0.82);
  --input-border: rgba(27, 22, 17, 0.12);
  --modal-backdrop: rgba(232, 223, 211, 0.92);
  --modal-surface: #fffaf4;
  --pill-live-bg: rgba(255, 122, 24, 0.16);
  --pill-live-text: #7a3d11;
  --shadow: 0 20px 60px rgba(53, 35, 12, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--text);
  background: var(--bg);
}

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

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

.page-shell {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 32px;
}

.site-header,
.site-footer,
.brand-strip,
.usp-card,
.pipeline-visual,
.pipeline-summary,
.video-card,
.hero-panel,
.hero-float {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 14px 72px 24px 0;
  padding: 10px 16px;
  border-radius: 22px;
  background: var(--header-bg);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft), var(--accent-cool));
  box-shadow: 0 0 28px rgba(255, 122, 24, 0.45);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy span,
.hero-note,
.site-footer p {
  color: var(--muted);
  font-size: 0.82rem;
}

.site-nav {
  display: inline-flex;
  gap: 24px;
  color: var(--muted);
}

.site-nav .nav-cta {
  display: none;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--ghost-border);
  border-radius: 14px;
  background: var(--ghost-bg);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

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

.site-nav a[aria-current="page"],
.footer-links a[aria-current="page"] {
  color: var(--text);
}

.site-nav a[aria-current="page"]::after,
.footer-links a[aria-current="page"]::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-cool));
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #ff9a3d);
  color: #111;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
  box-shadow: 0 14px 34px rgba(255, 122, 24, 0.24);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(255, 122, 24, 0.32);
}

.button-ghost {
  background: var(--ghost-bg);
  color: var(--text);
  border: 1px solid var(--ghost-border);
  box-shadow: none;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.theme-toggle {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 25;
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--ghost-border);
  background: var(--header-bg);
  color: var(--text);
  cursor: pointer;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.theme-toggle-icon {
  font-size: 1.1rem;
  line-height: 1;
}

.mobile-nav-scrim {
  display: none;
}

.hero,
.video-showcase,
.usp-section,
.pipeline-section {
  padding: 52px 0 12px;
}

.hero {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
  align-items: center;
  min-height: calc(100vh - 160px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--eyebrow-color);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.hero h1 {
  font-size: clamp(2.45rem, 5.8vw, 4.7rem);
  max-width: 10.8ch;
}

.section-kicker {
  max-width: 54ch;
}

.section-heading p,
.usp-card p,
.pipeline-node p,
.pipeline-summary p {
  color: var(--muted);
  line-height: 1.75;
}

.waitlist-form {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-form input,
.access-modal-form input {
  width: min(360px, 100%);
}

.waitlist-form input {
  min-height: 52px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--input-border);
  background: var(--input-bg);
  color: var(--text);
  font: inherit;
}

.waitlist-form input::placeholder {
  color: #91a1b3;
}

.waitlist-form.submitted input {
  border-color: rgba(124, 230, 221, 0.35);
  background: rgba(124, 230, 221, 0.08);
}

.waitlist-form.submitted .button {
  background: linear-gradient(135deg, #8ee7d6, #b8f3c5);
  box-shadow: 0 14px 34px rgba(124, 230, 221, 0.24);
}

.form-feedback {
  min-height: 1.3em;
  margin: 10px 0 0;
  color: var(--accent-cool);
  font-size: 0.9rem;
}

.hero-live-strip {
  display: grid;
  grid-template-columns: minmax(0, 320px);
  margin: 22px 0 20px;
}

.live-card {
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    var(--card-bg);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
}

.live-card span,
.live-card small {
  display: block;
  color: var(--muted);
}

.live-card span {
  margin-bottom: 14px;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.live-card strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  line-height: 0.9;
  color: var(--text);
}

.live-card small {
  font-size: 0.84rem;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.hero-stage {
  position: relative;
  height: 100%;
  min-height: 560px;
}

.hero-stage-glow {
  position: absolute;
  inset: 4% 8% 10%;
  border-radius: 44px;
  background:
    radial-gradient(circle at 28% 40%, rgba(255, 0, 153, 0.22), transparent 32%),
    radial-gradient(circle at 72% 22%, rgba(0, 216, 255, 0.24), transparent 30%),
    radial-gradient(circle at 50% 74%, rgba(255, 122, 24, 0.18), transparent 34%);
  filter: blur(42px);
}

.hero-panel,
.hero-float,
.brand-strip,
.video-card,
.usp-card,
.pipeline-visual,
.pipeline-summary,
.site-footer,
.page-card,
.quote-panel,
.metric-card,
.timeline-card,
.page-cta,
.cta-band {
  background: var(--panel-strong);
  backdrop-filter: blur(18px);
  border-radius: 28px;
}

.hero-panel {
  position: absolute;
  overflow: hidden;
  border-radius: 34px;
}

.hero-panel::after,
.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(7, 11, 16, 0.84) 100%);
  pointer-events: none;
}

.hero-panel img,
.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-panel img {
  transform: scale(1.03);
  object-position: center 42%;
}

.hero-panel-main {
  inset: 0 0 34px 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.42),
    inset 0 0 40px rgba(255, 255, 255, 0.03);
}

.hero-panel-main::before {
  content: "";
  position: absolute;
  inset: -16%;
  z-index: 1;
  border-radius: 44px;
  background:
    radial-gradient(circle at left center, rgba(10, 15, 23, 0.96), transparent 28%),
    radial-gradient(circle at right center, rgba(10, 15, 23, 0.96), transparent 28%),
    radial-gradient(circle at center top, rgba(10, 15, 23, 0.82), transparent 30%),
    radial-gradient(circle at center bottom, rgba(10, 15, 23, 0.84), transparent 32%);
  filter: blur(40px);
  pointer-events: none;
}

.hero-panel-main::after {
  background:
    radial-gradient(circle at center, transparent 48%, rgba(7, 11, 16, 0.18) 72%, rgba(7, 11, 16, 0.72) 100%),
    linear-gradient(180deg, rgba(7, 11, 16, 0.08) 0%, rgba(7, 11, 16, 0.84) 100%);
}

.hero-float {
  position: absolute;
  display: grid;
  gap: 8px;
  padding: 18px;
}

.hero-float strong {
  font-size: 1rem;
}

.hero-float-bottom {
  right: 20px;
  bottom: 18px;
  max-width: 240px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  width: fit-content;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--muted);
  font-size: 0.8rem;
}

.pill.live {
  background: var(--pill-live-bg);
  color: var(--pill-live-text);
}

.brand-strip {
  margin-top: 12px;
  padding: 18px 20px;
  overflow: hidden;
}

.section-surface {
  position: relative;
  margin-top: 34px;
  padding: 34px 28px 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    var(--surface-bg);
  box-shadow: var(--shadow);
  isolation: isolate;
  overflow: hidden;
}

.section-surface::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
}

.section-surface::after {
  content: "";
  position: absolute;
  inset: -20% auto auto -8%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 24, 0.14), transparent 68%);
  opacity: 0.8;
  pointer-events: none;
  z-index: -1;
}

.brand-track {
  display: flex;
  gap: 54px;
  width: max-content;
  animation: marquee 62s linear infinite;
}

.brand-track span {
  color: var(--brand-text);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 24px;
}

.section-kicker {
  margin: 16px 0 0;
  font-size: 0.98rem;
}

.section-heading h2 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.video-carousel {
  display: grid;
  grid-template-columns: 1.15fr 0.6fr 1.15fr;
  gap: 18px;
  align-items: stretch;
}

.video-card {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.video-card-wide {
  min-height: 420px;
}

.video-card-tall {
  min-height: 520px;
}

.video-card-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 20px;
}

.video-card-copy span {
  display: inline-block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
}

.video-card-copy strong,
.usp-card h3,
.pipeline-node strong {
  font-size: 1rem;
}

.video-card:hover,
.video-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.model-stage {
  display: block;
}

.model-orbit {
  position: relative;
  min-height: 720px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 26% 18%, rgba(255, 122, 24, 0.12), transparent 20%),
    radial-gradient(circle at 76% 28%, rgba(124, 230, 221, 0.1), transparent 24%),
    radial-gradient(circle at 40% 78%, rgba(90, 127, 255, 0.08), transparent 26%),
    var(--model-bg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.model-links {
  position: absolute;
  inset: 0;
}

.model-links i {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(124, 230, 221, 0.55), rgba(255, 255, 255, 0.08));
  opacity: 0.7;
}

.model-orbit::before,
.model-orbit::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.model-orbit::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 24%),
    linear-gradient(315deg, rgba(255, 255, 255, 0.03), transparent 22%);
  opacity: 0.45;
}

.model-orbit::after {
  background:
    radial-gradient(circle at 24% 22%, rgba(255, 255, 255, 0.22) 0 1px, transparent 2px),
    radial-gradient(circle at 81% 18%, rgba(255, 255, 255, 0.18) 0 1px, transparent 2px),
    radial-gradient(circle at 12% 63%, rgba(255, 255, 255, 0.2) 0 1px, transparent 2px),
    radial-gradient(circle at 88% 72%, rgba(255, 255, 255, 0.2) 0 1px, transparent 2px),
    radial-gradient(circle at 48% 88%, rgba(255, 255, 255, 0.16) 0 1px, transparent 2px);
  opacity: 0.8;
}

.orchestra-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: min(320px, calc(100% - 64px));
  padding: 24px;
  transform: translate(-50%, -50%);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: var(--core-bg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.orchestra-core .pill {
  margin: 0 auto 12px;
}

.orchestra-core strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.orchestra-core p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.model-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--chip-bg);
  color: var(--chip-text);
  font-size: 0.9rem;
  backdrop-filter: blur(16px);
  animation: float-chip 6s ease-in-out infinite;
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.chip-gpt-image { top: 7%; left: 12%; }
.chip-sora { top: 9%; left: 56%; animation-delay: 0.3s; }
.chip-gen4 { top: 16%; right: 8%; animation-delay: 0.7s; }
.chip-veo31 { top: 24%; left: 8%; animation-delay: 1s; }
.chip-v7 { top: 26%; left: 64%; animation-delay: 1.3s; }
.chip-flux-kontext { top: 34%; right: 4%; animation-delay: 0.5s; }
.chip-kling21 { top: 43%; left: 4%; animation-delay: 1.2s; }
.chip-ray2 { top: 46%; left: 58%; animation-delay: 2s; }
.chip-pika22 { top: 56%; right: 10%; animation-delay: 1.6s; }
.chip-ideogram3 { bottom: 30%; left: 14%; animation-delay: 0.9s; }
.chip-eleven-v3 { bottom: 17%; left: 7%; animation-delay: 1.9s; }
.chip-hailuo02 { bottom: 10%; left: 32%; animation-delay: 0.4s; }
.chip-krea1 { bottom: 12%; right: 28%; animation-delay: 1.4s; }
.chip-recraft-v3 { bottom: 27%; right: 7%; animation-delay: 2.1s; }
.chip-stable-image-ultra { bottom: 6%; right: 10%; animation-delay: 2.6s; }

.link-gpt-image { width: 268px; transform: rotate(-146deg); }
.link-sora { width: 226px; transform: rotate(-78deg); }
.link-gen4 { width: 254px; transform: rotate(-32deg); }
.link-veo31 { width: 232px; transform: rotate(-169deg); }
.link-v7 { width: 188px; transform: rotate(-55deg); }
.link-flux-kontext { width: 246px; transform: rotate(-10deg); }
.link-kling21 { width: 274px; transform: rotate(176deg); }
.link-ray2 { width: 170px; transform: rotate(45deg); }
.link-pika22 { width: 232px; transform: rotate(28deg); }
.link-ideogram3 { width: 232px; transform: rotate(144deg); }
.link-eleven-v3 { width: 280px; transform: rotate(156deg); }
.link-hailuo02 { width: 228px; transform: rotate(122deg); }
.link-krea1 { width: 212px; transform: rotate(72deg); }
.link-recraft-v3 { width: 246px; transform: rotate(48deg); }
.link-stable-image-ultra { width: 286px; transform: rotate(70deg); }

.pipeline-node strong {
  margin: 0 0 10px;
}

.pipeline-visual {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 28px;
}

.pipeline-node {
  padding: 22px;
  border-radius: 24px;
  background: var(--chip-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 200ms ease, border-color 200ms ease;
}

.pipeline-node span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent-soft);
  font-family: var(--display);
  font-size: 1.5rem;
}

.pipeline-node p {
  margin: 0;
  font-size: 0.94rem;
}

.pipeline-node:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.16);
}

.pipeline-link {
  height: 2px;
  min-width: 34px;
  background: linear-gradient(90deg, rgba(255, 122, 24, 0.3), rgba(124, 230, 221, 0.9));
}

.pipeline-summary {
  margin-top: 18px;
  padding: 18px 24px;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at left center, rgba(255, 122, 24, 0.14), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(124, 230, 221, 0.12), transparent 22%),
    var(--panel-strong);
  box-shadow: var(--shadow);
}

.cta-band-copy {
  max-width: 700px;
}

.cta-band h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.cta-band p:last-child {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.access-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.access-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.access-modal-backdrop {
  position: absolute;
  inset: 0;
  background: var(--modal-backdrop);
}

.access-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  background: var(--modal-surface);
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}

.access-modal-dialog h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.access-modal-copy {
  margin: 14px 0 24px;
  color: var(--muted);
  line-height: 1.75;
}

.access-modal-form {
  align-items: stretch;
}

.access-modal-form input {
  flex: 1 1 260px;
}

.access-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--ghost-bg);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.pipeline-summary p,
.site-footer p {
  margin: 0;
}

.page-hero {
  padding: 70px 0 24px;
  max-width: 860px;
}

.page-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.page-intro {
  max-width: 58ch;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.page-grid,
.founder-layout,
.contact-layout {
  display: grid;
  gap: 18px;
}

.quote-panel,
.metric-card,
.timeline-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel-strong);
  box-shadow: var(--shadow);
}

.quote-panel {
  margin: 0 0 24px;
  padding: 24px 28px;
}

.quote-panel p {
  margin: 0;
  max-width: 52ch;
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

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

.founder-layout,
.contact-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-layout-secondary {
  margin-top: 18px;
}

.page-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel-strong);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.page-card h2 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.page-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.page-card:hover,
.metric-card:hover,
.timeline-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.founder-role {
  margin-bottom: 10px !important;
  color: var(--accent-soft) !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.contact-line {
  margin-top: 16px !important;
  color: var(--text) !important;
  font-weight: 600;
}

.contact-line a:hover,
.contact-line a:focus-visible {
  color: var(--accent-soft);
}

.metrics-band,
.timeline-strip {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.page-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 30px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at left center, rgba(255, 122, 24, 0.14), transparent 28%),
    radial-gradient(circle at 78% 20%, rgba(124, 230, 221, 0.12), transparent 24%),
    var(--panel-strong);
  box-shadow: var(--shadow);
}

.page-cta-copy {
  max-width: 680px;
}

.page-cta-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.page-cta-copy p:last-child {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.metrics-band {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timeline-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric-card,
.timeline-card {
  padding: 22px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.metric-card span,
.timeline-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
}

.metric-card strong,
.timeline-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.metric-card p,
.timeline-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 56px;
  padding: 22px 24px;
}

.footer-links {
  display: inline-flex;
  gap: 18px;
  color: var(--muted);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes float-chip {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .hero-stage {
    min-height: 620px;
  }

  .hero-live-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .model-stage {
    display: block;
  }

  .page-grid,
  .founder-layout,
  .contact-layout,
  .metrics-band,
  .timeline-strip {
    grid-template-columns: 1fr;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .video-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(320px, 78vw);
    grid-template-columns: none;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }

  .video-carousel::-webkit-scrollbar {
    height: 10px;
  }

  .video-carousel::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.14);
    border-radius: 999px;
  }

  .video-card-tall,
  .video-card-wide {
    min-height: 420px;
    scroll-snap-align: start;
  }

  .model-orbit {
    min-height: 520px;
  }

  .pipeline-visual {
    grid-template-columns: 1fr;
  }

  .section-surface {
    padding: 30px 22px 24px;
  }

  .pipeline-link {
    width: 2px;
    height: 28px;
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 16px, 1220px);
    padding-bottom: 20px;
  }

  .site-header,
  .site-footer {
    flex-wrap: wrap;
  }

  .site-header {
    top: 10px;
    gap: 14px;
    margin: 10px 0 20px;
    padding: 10px 12px;
    border-radius: 20px;
    align-items: center;
  }

  .brand-copy strong {
    font-size: 0.98rem;
  }

  .brand-copy span {
    font-size: 0.74rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    z-index: 11;
    display: grid;
    gap: 10px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--modal-surface);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 14px;
    border: 1px solid var(--ghost-border);
    background: var(--ghost-bg);
  }

  .header-actions {
    display: none;
  }

  .site-nav .nav-cta {
    display: inline-flex;
    width: 100%;
    margin-top: 2px;
    justify-content: center;
  }

  .site-header.is-menu-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-nav-scrim {
    position: fixed;
    inset: 0;
    z-index: 9;
    display: block;
    background: rgba(0, 0, 0, 0.16);
    opacity: 0;
    visibility: hidden;
    transition: opacity 180ms ease, visibility 180ms ease;
  }

  body.menu-open .mobile-nav-scrim {
    opacity: 1;
    visibility: visible;
  }

  .hero {
    min-height: auto;
    gap: 18px;
    padding-top: 6px;
  }

  .hero-copy {
    display: grid;
    gap: 12px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.2rem, 10.4vw, 3.2rem);
    line-height: 0.95;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
  }

  .section-kicker {
    max-width: none;
    margin-top: 12px;
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .page-hero h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .hero-live-strip {
    grid-template-columns: 1fr;
    margin: 6px 0 2px;
  }

  .hero-visual,
  .hero-stage {
    min-height: 280px;
  }

  .section-surface {
    margin-top: 18px;
    padding: 22px 16px 18px;
    border-radius: 28px;
  }

  .hero-panel-main {
    inset: 0;
    border-radius: 28px;
    box-shadow:
      0 20px 50px rgba(0, 0, 0, 0.26),
      inset 0 0 24px rgba(255, 255, 255, 0.02);
  }

  .hero-panel img {
    transform: scale(1.02);
    object-position: center 34%;
  }

  .hero-stage-glow {
    inset: 0 4% 8%;
    filter: blur(24px);
  }

  .hero-copy .button,
  .cta-band .button {
    width: 100%;
  }

  .button {
    min-height: 48px;
  }

  .live-card {
    padding: 16px 16px 14px;
    border-radius: 20px;
  }

  .live-card span {
    margin-bottom: 10px;
    font-size: 0.68rem;
  }

  .live-card strong {
    font-size: 2.4rem;
  }

  .live-card small {
    max-width: 18ch;
    font-size: 0.8rem;
  }

  .brand-strip {
    margin-top: 8px;
    padding: 12px 12px 10px;
  }

  .brand-track {
    gap: 28px;
  }

  .brand-track span {
    font-size: 0.9rem;
  }

  .section-heading {
    margin-bottom: 16px;
  }

  .section-heading h2 {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
    line-height: 0.98;
  }

  .video-carousel {
    grid-auto-columns: minmax(86vw, 86vw);
    gap: 12px;
    margin-right: -4px;
    padding-bottom: 4px;
  }

  .video-card {
    border-radius: 24px;
  }

  .video-card-tall,
  .video-card-wide {
    min-height: 330px;
  }

  .video-card-copy {
    padding: 16px;
  }

  .model-links {
    display: none;
  }

  .model-orbit {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    min-height: auto;
    padding: 14px;
    align-items: start;
    border-radius: 28px;
  }

  .orchestra-core {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    transform: none;
    grid-column: 1 / -1;
    margin-bottom: 4px;
    padding: 18px 16px;
    border-radius: 24px;
  }

  .model-chip {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    justify-content: flex-start;
    min-height: 44px;
    padding: 9px 11px;
    text-align: left;
    white-space: normal;
    line-height: 1.25;
    animation-duration: 7s;
    font-size: 0.82rem;
  }

  .pipeline-visual {
    padding: 14px 12px;
    gap: 8px;
  }

  .pipeline-node {
    padding: 16px;
    border-radius: 20px;
  }

  .pipeline-node span {
    margin-bottom: 10px;
    font-size: 1.3rem;
  }

  .pipeline-summary {
    margin-top: 12px;
    padding: 14px 16px;
  }

  .cta-band {
    gap: 16px;
    margin-top: 18px;
    padding: 20px 16px;
    border-radius: 26px;
  }

  .cta-band-copy h2 {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
  }

  .access-modal-dialog {
    padding: 28px 22px 22px;
  }

  .access-modal-form {
    flex-direction: column;
    align-items: stretch;
  }

  .site-footer {
    justify-content: flex-start;
    gap: 12px;
    margin-top: 22px;
    padding: 16px;
    border-radius: 22px;
  }

  .footer-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 12px 16px;
  }

  .header-actions {
    margin-left: auto;
  }

  .theme-toggle {
    top: auto;
    right: 16px;
    bottom: 16px;
    width: 46px;
    height: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .js .reveal,
  .brand-track,
  .model-chip {
    transition: none;
    animation: none;
  }

  .video-card,
  .pipeline-node,
  .page-card,
  .metric-card,
  .timeline-card {
    transition: none;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
