:root {
  --bg: #f4f0e8;
  --paper: #fbfaf6;
  --ink: #121211;
  --soft-ink: #35342f;
  --muted: #69675f;
  --line: rgba(18, 18, 17, 0.13);
  --dark: #11130f;
  --dark-2: #1d201d;
  --clay: #9a5d3b;
  --moss: #5f6c55;
  --blue: #3f5664;
  --gold: #d6a66f;
  --max: 1180px;
  --side: max(22px, calc((100vw - var(--max)) / 2));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #f4f0e8 0%, #fbfaf6 46%, #eeeae2 100%);
  font-family: "Avenir Next", Avenir, "Gill Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-140%);
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px var(--side);
  background: rgba(244, 240, 232, 0.82);
  border-bottom: 1px solid rgba(18, 18, 17, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  text-decoration: none;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  letter-spacing: 0;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

.nav a {
  text-decoration: none;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--ink);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
}

.menu-button span,
.menu-button span::before,
.menu-button span::after {
  display: block;
  width: 17px;
  height: 1px;
  background: currentColor;
}

.menu-button span::before,
.menu-button span::after {
  content: "";
  position: relative;
}

.menu-button span::before {
  top: -6px;
}

.menu-button span::after {
  top: 5px;
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0 18px;
  background: var(--ink);
  color: #f9f5ed;
  font-size: 0.9rem;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: transparent;
  color: var(--ink);
}

.button.secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.button.secondary:hover {
  border-color: var(--ink);
  background: rgba(18, 18, 17, 0.04);
}

.dark .button,
.footer .button {
  border-color: #f7f2e9;
  background: #f7f2e9;
  color: var(--ink);
}

.dark .button:hover,
.footer .button:hover {
  background: transparent;
  color: #f7f2e9;
}

.dark .button.secondary,
.footer .button.secondary {
  background: transparent;
  color: #f7f2e9;
  border-color: rgba(247, 242, 233, 0.28);
}

.dark .button.secondary:hover,
.footer .button.secondary:hover {
  border-color: #f7f2e9;
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.74fr);
  gap: 64px;
  align-items: end;
  padding: 136px var(--side) 70px;
  border-bottom: 1px solid var(--line);
}

.subhero {
  min-height: 64svh;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 0.54fr);
  gap: 60px;
  align-items: end;
  padding: 140px var(--side) 82px;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2,
.serif {
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  margin-bottom: 28px;
  font-size: 5.6rem;
  line-height: 0.96;
}

h2 {
  margin-bottom: 0;
  font-size: 4rem;
  line-height: 1.02;
}

.seo-route-title {
  max-width: 12ch;
  margin-bottom: 0;
  font-size: 4rem;
  line-height: 1.02;
}

h3 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.36rem;
  font-weight: 400;
  letter-spacing: 0;
}

.lede {
  max-width: 64ch;
  margin-bottom: 22px;
  color: var(--soft-ink);
  font-size: 1.14rem;
  line-height: 1.72;
}

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

.hero-media {
  display: grid;
  gap: 12px;
  align-self: center;
}

.hero-frame {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: 8px;
  background: #20231f;
  box-shadow: 0 30px 80px rgba(22, 24, 22, 0.18);
  isolation: isolate;
}

.hero-frame img {
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: contrast(1.02) saturate(0.88) brightness(0.88);
  transform: scale(1.04);
}

.caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #f8f4eb;
  font-size: 0.78rem;
  line-height: 1.4;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
}

.signal-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.signal {
  min-height: 104px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.36);
}

.signal strong {
  display: block;
  margin-bottom: 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.58rem;
  font-weight: 400;
}

.signal span {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.section {
  padding: 120px var(--side);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 0.62fr);
  gap: 76px;
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
}

.body-copy {
  color: var(--soft-ink);
  font-size: 1.05rem;
  line-height: 1.78;
}

.body-copy p {
  margin-bottom: 24px;
}

.body-copy ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.body-copy li {
  margin: 0 0 10px;
}

.dark {
  background: var(--dark);
  color: #f6f1e8;
}

.dark .eyebrow {
  color: var(--gold);
}

.dark .body-copy,
.dark .lede {
  color: rgba(246, 241, 232, 0.74);
}

.scrolly {
  position: relative;
  min-height: 286vh;
  background: var(--dark);
  color: #f6f1e8;
}

.scrolly-stage {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: 36px;
  align-items: center;
  padding: 96px var(--side) 54px;
  overflow: hidden;
}

.scrolly-copy {
  position: relative;
  z-index: 4;
  max-width: 520px;
}

.scrolly-copy h2 {
  margin-bottom: 22px;
  color: #fbf8ef;
  font-size: 4.6rem;
}

.scrolly-copy p {
  margin-bottom: 24px;
  color: rgba(246, 241, 232, 0.74);
  font-size: 1.02rem;
  line-height: 1.75;
}

.progress-line {
  width: min(360px, 100%);
  height: 1px;
  overflow: hidden;
  background: rgba(246, 241, 232, 0.18);
}

.progress-line span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transform: scaleX(var(--p, 0));
  transform-origin: left center;
}

.assembly {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  min-height: 680px;
  margin-left: auto;
}

.object {
  position: absolute;
  will-change: transform, opacity, filter;
}

.object img {
  height: 100%;
  object-fit: cover;
}

.world-pane {
  left: 18%;
  top: 8%;
  width: 62%;
  height: 58%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.42);
}

.story-pane {
  right: 5%;
  top: 38%;
  width: 34%;
  height: 38%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.guide-pane {
  left: 5%;
  top: 47%;
  width: 30%;
  height: 39%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.text-panel,
.agent-panel,
.map-panel,
.nav-strip {
  border: 1px solid rgba(246, 241, 232, 0.18);
  border-radius: 8px;
  background: rgba(247, 242, 232, 0.93);
  color: #151512;
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.text-panel {
  left: 3%;
  top: 16%;
  width: 37%;
  padding: 22px;
}

.text-panel .verse {
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  line-height: 1.55;
}

.agent-panel {
  right: 0;
  top: 15%;
  width: 31%;
  padding: 18px;
}

.agent-row {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 12px;
  color: var(--soft-ink);
  font-size: 0.82rem;
  line-height: 1.45;
}

.dot {
  width: 10px;
  height: 10px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--moss);
}

.map-panel {
  left: 25%;
  bottom: 2%;
  width: 48%;
  padding: 18px;
}

.map-line {
  position: relative;
  height: 70px;
  margin-top: 16px;
  border-top: 1px solid rgba(18, 18, 17, 0.18);
}

.pin {
  position: absolute;
  top: -6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--clay);
}

.pin:nth-child(1) { left: 8%; }
.pin:nth-child(2) { left: 48%; background: var(--blue); }
.pin:nth-child(3) { left: 82%; background: var(--moss); }

.nav-strip {
  right: 8%;
  bottom: 13%;
  width: 43%;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px;
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-strip strong {
  color: var(--ink);
  font-weight: 700;
}

.media-band {
  display: grid;
  grid-template-columns: 1fr 0.74fr;
  gap: 18px;
  max-width: var(--max);
  margin: 70px auto 0;
}

.image-card {
  overflow: hidden;
  min-height: 430px;
  border-radius: 8px;
  background: #d8d1c5;
}

.image-card.small {
  min-height: 310px;
  align-self: end;
}

.image-card img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.03);
}

.feature-grid,
.team-grid,
.tier-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.feature,
.team-member,
.tier,
.contact-card {
  min-height: 260px;
  padding: 28px;
  background: rgba(251, 250, 246, 0.78);
}

.feature p,
.team-member p,
.tier p,
.contact-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.66;
}

.feature .label,
.tier .label {
  margin-bottom: 28px;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dark .feature-grid,
.dark .team-grid,
.dark .tier-grid {
  border-color: rgba(246, 241, 232, 0.14);
  background: rgba(246, 241, 232, 0.14);
}

.dark .feature,
.dark .team-member,
.dark .tier {
  background: rgba(246, 241, 232, 0.06);
}

.dark .feature p,
.dark .team-member p,
.dark .tier p {
  color: rgba(246, 241, 232, 0.74);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: var(--max);
  margin: 70px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.metric {
  min-height: 180px;
  padding: 24px;
  background: rgba(251, 250, 246, 0.78);
}

.metric strong {
  display: block;
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
  font-weight: 400;
}

.metric span {
  color: var(--muted);
  line-height: 1.48;
}

.form-panel {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 250, 246, 0.78);
}

.form-grid {
  display: grid;
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.84rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(18, 18, 17, 0.18);
  border-radius: 8px;
  padding: 14px 14px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(63, 86, 100, 0.32);
  border-color: var(--blue);
}

.form-note {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.55;
}

.form-status {
  margin: 0;
  color: var(--soft-ink);
  font-size: 0.9rem;
  line-height: 1.55;
}

.form-status[data-state="success"] {
  color: var(--moss);
}

.form-status[data-state="error"] {
  color: #f0a28b;
}

button:disabled,
.button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.policy {
  max-width: 900px;
  margin: 0 auto;
}

.policy h2 {
  margin: 54px 0 16px;
  font-size: 2.2rem;
}

.policy p,
.policy li {
  color: var(--soft-ink);
  line-height: 1.78;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.footer {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.7fr);
  gap: 48px;
  padding: 90px var(--side);
  background: #0f110e;
  color: #f7f2e9;
}

.footer h2 {
  max-width: 11ch;
  margin-bottom: 22px;
  font-size: 3.5rem;
}

.footer p {
  max-width: 58ch;
  color: rgba(247, 242, 233, 0.72);
  line-height: 1.7;
}

.footer-links {
  display: grid;
  gap: 14px;
  align-content: start;
}

.footer-links a,
.footer-links span {
  color: rgba(247, 242, 233, 0.82);
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

@media (max-width: 1060px) {
  h1 {
    font-size: 4.35rem;
  }

  h2,
  .scrolly-copy h2 {
    font-size: 3.2rem;
  }

  .hero,
  .subhero,
  .scrolly-stage,
  .section-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero,
  .subhero {
    gap: 44px;
    align-items: start;
  }

  .assembly {
    min-height: 620px;
    margin: 0;
  }

  .media-band {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .team-grid,
  .tier-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --side: 18px;
  }

  body {
    font-size: 15px;
  }

  .site-header {
    position: sticky;
    gap: 12px;
    padding: 14px var(--side);
  }

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

  .nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 70px;
    display: grid;
    gap: 0;
    padding: 0 var(--side) 18px;
    background: rgba(244, 240, 232, 0.98);
    border-bottom: 1px solid var(--line);
    transform: translateY(-140%);
    transition: transform 220ms ease;
  }

  body.nav-open .nav {
    transform: translateY(0);
  }

  .nav a {
    padding: 15px 0;
    border-bottom: 1px solid rgba(18, 18, 17, 0.08);
  }

  .nav .button {
    margin-top: 14px;
    border-bottom: 0;
  }

  .brand {
    font-size: 1.04rem;
  }

  .button {
    min-height: 38px;
    padding: 0 13px;
    font-size: 0.82rem;
  }

  .hero,
  .subhero {
    min-height: auto;
    padding-top: 72px;
    width: 100%;
  }

  .hero > *,
  .subhero > * {
    min-width: 0;
  }

  h1 {
    max-width: 9.4ch;
    font-size: clamp(2.9rem, 12.2vw, 3.2rem);
    line-height: 0.98;
  }

  .hero h1,
  .subhero h1 {
    max-width: 8.8ch;
  }

  h2,
  .scrolly-copy h2,
  .footer h2 {
    font-size: 2.55rem;
  }

  .lede {
    font-size: 1.02rem;
  }

  .hero-frame,
  .hero-frame img {
    min-height: 420px;
  }

  .signal-row,
  .metrics {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .scrolly {
    min-height: 216vh;
  }

  .scrolly-stage {
    min-height: 100svh;
    padding-top: 70px;
  }

  .assembly {
    min-height: 450px;
  }

  .world-pane {
    left: 8%;
    top: 8%;
    width: 78%;
    height: 52%;
  }

  .text-panel {
    left: 0;
    top: 13%;
    width: 56%;
    padding: 14px;
  }

  .agent-panel {
    right: 0;
    top: 7%;
    width: 42%;
    padding: 13px;
  }

  .story-pane {
    right: 0;
    top: 47%;
    width: 42%;
    height: 34%;
  }

  .guide-pane {
    left: 0;
    top: 51%;
    width: 39%;
    height: 34%;
  }

  .map-panel {
    left: 10%;
    bottom: 0;
    width: 80%;
    padding: 13px;
  }

  .nav-strip {
    display: none;
  }

  .text-panel .verse,
  .agent-row,
  .map-panel,
  .signal span {
    font-size: 0.75rem;
  }

  .image-card,
  .image-card.small {
    min-height: 300px;
  }

  .form-panel {
    padding: 22px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }

  .object,
  .reveal,
  .motion-bg img {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
  }

  .progress-line span {
    transform: scaleX(1);
  }
}

/* Second-pass premium dark editorial system */
:root {
  --bg: #0e100d;
  --paper: #151812;
  --ink: #f6f1e8;
  --soft-ink: rgba(246, 241, 232, 0.82);
  --muted: rgba(246, 241, 232, 0.62);
  --line: rgba(246, 241, 232, 0.14);
  --dark: #0e100d;
  --dark-2: #181b14;
  --clay: #d39b66;
  --moss: #a7b17f;
  --blue: #87a7b4;
  --gold: #d9aa70;
}

body {
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 4%, rgba(135, 167, 180, 0.16), transparent 30vw),
    radial-gradient(circle at 15% 18%, rgba(211, 155, 102, 0.13), transparent 28vw),
    linear-gradient(180deg, #0e100d 0%, #151811 44%, #0c0e0b 100%);
}

body.theme-light {
  --bg: #f4f0e8;
  --paper: #fbfaf6;
  --ink: #121211;
  --soft-ink: #35342f;
  --muted: #69675f;
  --line: rgba(18, 18, 17, 0.13);
  --dark: #f4f0e8;
  --dark-2: #fbfaf6;
  --clay: #9a5d3b;
  --moss: #5f6c55;
  --blue: #3f5664;
  --gold: #a76f3c;
  background:
    radial-gradient(circle at 82% 4%, rgba(63, 86, 100, 0.12), transparent 30vw),
    radial-gradient(circle at 15% 18%, rgba(154, 93, 59, 0.12), transparent 28vw),
    linear-gradient(180deg, #f4f0e8 0%, #fbfaf6 48%, #eeeae2 100%);
}

.site-header {
  background: rgba(14, 16, 13, 0.72);
  border-bottom-color: rgba(246, 241, 232, 0.1);
}

.theme-light .site-header {
  background: rgba(244, 240, 232, 0.86);
  border-bottom-color: rgba(18, 18, 17, 0.08);
}

.skip-link {
  background: var(--ink);
  color: var(--bg);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--ink);
}

.button {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--bg);
}

.button:hover {
  background: transparent;
  color: var(--ink);
}

.button.secondary {
  background: rgba(246, 241, 232, 0.04);
  color: var(--ink);
  border-color: var(--line);
}

.button.secondary:hover {
  border-color: var(--ink);
  background: rgba(246, 241, 232, 0.08);
}

.theme-light .button.secondary:hover {
  background: rgba(18, 18, 17, 0.05);
}

.theme-toggle {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(246, 241, 232, 0.05);
  color: var(--muted);
  font: inherit;
  font-size: 0.84rem;
  cursor: pointer;
}

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

.hero,
.subhero,
.section {
  border-color: var(--line);
}

.hero--editorial {
  min-height: 108svh;
  align-items: center;
}

.hero h1 {
  max-width: 12ch;
}

.hero-collage {
  position: relative;
}

.hero-frame {
  border: 1px solid var(--line);
  background: #050604;
}

.hero-frame--tall {
  min-height: 610px;
}

.hero-frame--tall img {
  min-height: 610px;
}

.mini-stack {
  position: absolute;
  right: -22px;
  bottom: -34px;
  display: grid;
  grid-template-columns: repeat(3, 116px);
  gap: 10px;
  pointer-events: none;
}

.mini-stack img {
  height: 148px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.32);
}

.mini-stack img:nth-child(3) {
  object-position: 50% 18%;
}

.hero-collage .caption {
  display: none;
}

.section--tight {
  padding-top: 70px;
  padding-bottom: 70px;
}

.proof-strip {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.82fr);
  gap: 42px;
  align-items: end;
}

.proof-strip h2 {
  font-size: clamp(2.25rem, 5vw, 4.25rem);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.signal,
.feature,
.team-member,
.tier,
.contact-card,
.metric,
.form-panel {
  background: rgba(246, 241, 232, 0.055);
  border-color: var(--line);
  color: var(--ink);
}

.theme-light .signal,
.theme-light .feature,
.theme-light .team-member,
.theme-light .tier,
.theme-light .contact-card,
.theme-light .metric,
.theme-light .form-panel {
  background: rgba(255, 255, 255, 0.56);
}

.feature-grid,
.team-grid,
.tier-grid,
.contact-grid,
.metrics {
  border-color: var(--line);
  background: var(--line);
}

.feature p,
.team-member p,
.tier p,
.contact-card p,
.signal span,
.metric span,
.body-copy,
.lede {
  color: var(--soft-ink);
}

.feature .label,
.tier .label,
.eyebrow,
.text-panel .eyebrow,
.agent-panel .eyebrow,
.map-panel .eyebrow,
.knowledge-panel .eyebrow {
  color: var(--gold);
}

.scrolly {
  background:
    radial-gradient(circle at 68% 12%, rgba(135, 167, 180, 0.12), transparent 30vw),
    linear-gradient(180deg, #090b08 0%, #10120e 50%, #090b08 100%);
}

.scrolly--deep {
  min-height: 330vh;
}

.scrolly--gallery {
  min-height: 300vh;
}

.scrolly-stage--center {
  grid-template-columns: minmax(280px, 0.36fr) minmax(0, 0.64fr);
}

.assembly--large {
  min-height: 760px;
}

.assembly--mosaic {
  min-height: 720px;
}

.story-pane--wide {
  width: 43%;
  height: 36%;
}

.guide-pane--portrait img {
  object-position: 50% 18%;
}

.map-panel--dark {
  background: rgba(18, 20, 16, 0.9);
  color: var(--ink);
}

.map-panel--dark .map-line {
  border-top-color: rgba(246, 241, 232, 0.22);
}

.nav-strip {
  background: rgba(18, 20, 16, 0.92);
  color: var(--muted);
}

.nav-strip strong {
  color: var(--ink);
}

.mosaic-tile {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

.tile-a {
  left: 5%;
  top: 8%;
  width: 39%;
  height: 32%;
}

.tile-b {
  right: 7%;
  top: 5%;
  width: 37%;
  height: 35%;
}

.tile-c {
  left: 0;
  bottom: 8%;
  width: 35%;
  height: 34%;
}

.tile-d {
  right: 0;
  bottom: 10%;
  width: 36%;
  height: 36%;
}

.tile-e {
  left: 31%;
  top: 34%;
  width: 39%;
  height: 34%;
}

.knowledge-panel {
  left: 25%;
  top: 6%;
  width: 48%;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(246, 241, 232, 0.92);
  color: #151512;
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.28);
}

.knowledge-panel p:last-child {
  margin-bottom: 0;
  color: #35342f;
  line-height: 1.58;
}

.text-panel,
.agent-panel {
  color: #151512;
}

.text-panel .verse,
.agent-panel .agent-row {
  color: #35342f;
}

.media-river {
  max-width: var(--max);
  margin: 76px auto 0;
  display: grid;
  grid-template-columns: 1.1fr 0.76fr 0.72fr;
  grid-auto-rows: 260px;
  gap: 14px;
}

.media-river--calm {
  grid-template-columns: 1.1fr 0.72fr;
}

.image-card {
  min-height: 0;
  height: 100%;
  border: 1px solid var(--line);
  background: rgba(246, 241, 232, 0.06);
}

.image-card--wide {
  grid-column: span 2;
}

.image-card--tall {
  grid-row: span 2;
}

.image-card img,
.rail-card img,
.mosaic-tile img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.05) brightness(0.86);
}

.theme-light .image-card img,
.theme-light .rail-card img,
.theme-light .mosaic-tile img {
  filter: saturate(0.9) contrast(1.02) brightness(0.96);
}

.section--immersive {
  padding-bottom: 90px;
}

.panorama-story {
  position: relative;
  min-height: 220vh;
  background:
    linear-gradient(180deg, rgba(12, 14, 11, 0) 0%, rgba(12, 14, 11, 0.96) 18%, rgba(12, 14, 11, 1) 78%, rgba(12, 14, 11, 0) 100%);
}

.panorama-sticky {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(280px, 0.34fr) minmax(0, 0.66fr);
  gap: 44px;
  align-items: center;
  padding: 108px var(--side) 80px;
  overflow: hidden;
}

.panorama-copy {
  max-width: 480px;
  position: relative;
  z-index: 4;
}

.panorama-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 5.4vw, 5.2rem);
}

.panorama-copy p:last-child {
  color: var(--soft-ink);
  line-height: 1.74;
}

.panorama-stack {
  position: relative;
  min-height: 720px;
}

.panorama-frame {
  position: absolute;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.44);
  will-change: transform;
}

.panorama-frame img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.06) brightness(0.78);
}

.panorama-one {
  left: 10%;
  top: 0;
  width: 72%;
  height: 34%;
}

.panorama-two {
  left: 0;
  top: 30%;
  width: 48%;
  height: 32%;
}

.panorama-three {
  right: 0;
  top: 26%;
  width: 52%;
  height: 34%;
}

.panorama-four {
  left: 21%;
  bottom: 1%;
  width: 62%;
  height: 32%;
}

.object-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 14px;
  max-width: calc(var(--max) + 90px);
  margin: 78px auto 0;
  padding: 0 0 24px;
}

.rail-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(246, 241, 232, 0.06);
}

.rail-card:nth-child(even) {
  transform: translateY(42px);
}

.rail-card span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  color: #fff8ed;
  font-size: 0.82rem;
  line-height: 1.4;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.72);
}

.dark-panel {
  background:
    radial-gradient(circle at 18% 0%, rgba(211, 155, 102, 0.13), transparent 28vw),
    linear-gradient(180deg, #11130f 0%, #0b0d0a 100%);
}

.section--knowledge {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.investor-section {
  background: rgba(246, 241, 232, 0.035);
}

input,
textarea {
  border-color: var(--line);
  background: rgba(246, 241, 232, 0.08);
  color: var(--ink);
}

textarea::placeholder,
input::placeholder {
  color: var(--muted);
}

.theme-light input,
.theme-light textarea {
  background: rgba(255, 255, 255, 0.64);
}

.form-note {
  color: var(--muted);
}

.footer {
  background: #080a07;
}

.theme-light .footer {
  background: #11130f;
  color: #f7f2e9;
}

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

body.animations-ready .reveal {
  opacity: 1;
  transform: translate3d(0, 22px, 0);
}

body.animations-ready .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body.animations-ready .hero > .reveal,
body.animations-ready .subhero > .reveal,
body.animations-ready .team-hero .reveal,
body.animations-ready .contact-hero .reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 1060px) {
  .proof-strip,
  .scrolly-stage--center,
  .panorama-sticky {
    grid-template-columns: 1fr;
  }

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

  .mini-stack {
    right: 12px;
    bottom: -24px;
  }

  .media-river,
  .media-river--calm {
    grid-template-columns: 1fr 1fr;
  }

  .object-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .panorama-stack {
    min-height: 620px;
  }
}

@media (max-width: 760px) {
  .nav {
    background: rgba(14, 16, 13, 0.98);
  }

  .theme-light .nav {
    background: rgba(244, 240, 232, 0.98);
  }

  .hero--editorial {
    min-height: auto;
  }

  .hero-frame--tall,
  .hero-frame--tall img {
    min-height: 440px;
  }

  .mini-stack {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 10px;
  }

  .hero-collage .caption {
    display: none;
  }

  .mini-stack img {
    height: 118px;
  }

  .proof-grid,
  .media-river,
  .media-river--calm,
  .object-rail {
    grid-template-columns: 1fr;
  }

  .media-river {
    grid-auto-rows: 250px;
  }

  .image-card--wide,
  .image-card--tall {
    grid-column: auto;
    grid-row: auto;
  }

  .object-rail {
    margin-top: 52px;
  }

  .panorama-story {
    min-height: auto;
  }

  .panorama-sticky {
    position: relative;
    min-height: auto;
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .panorama-stack {
    min-height: auto;
    display: grid;
    gap: 12px;
  }

  .panorama-frame {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    height: 230px;
  }

  .rail-card,
  .rail-card:nth-child(even) {
    min-height: 320px;
    transform: none;
  }

  .scrolly--deep,
  .scrolly--gallery {
    min-height: 240vh;
  }

  .assembly--large,
  .assembly--mosaic {
    min-height: 470px;
  }

  .story-pane--wide {
    width: 44%;
  }

  .knowledge-panel {
    left: 8%;
    top: 0;
    width: 84%;
    padding: 13px;
    font-size: 0.78rem;
  }

  .tile-a {
    left: 0;
    top: 13%;
    width: 47%;
    height: 29%;
  }

  .tile-b {
    right: 0;
    top: 17%;
    width: 47%;
    height: 29%;
  }

  .tile-c {
    left: 0;
    bottom: 8%;
    width: 45%;
    height: 30%;
  }

  .tile-d {
    right: 0;
    bottom: 8%;
    width: 45%;
    height: 30%;
  }

  .tile-e {
    left: 23%;
    top: 42%;
    width: 54%;
    height: 28%;
  }
}

@media (max-width: 760px) {
  .hero,
  .subhero {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .hero > div,
  .subhero > div {
    width: calc(100vw - (var(--side) * 2));
    max-width: 100%;
  }

  .hero h1,
  .subhero h1 {
    max-width: 8.8ch;
    font-size: clamp(2.75rem, 11.6vw, 3.05rem);
    line-height: 1;
  }

  .hero .lede,
  .subhero .lede {
    max-width: 100%;
  }
}

/* Third-pass cinematic assemblies */
.brand--logo {
  display: inline-flex;
  align-items: center;
  min-width: 142px;
}

.brand--logo img {
  width: 152px;
  height: auto;
  display: block;
}

.theme-light .brand--logo img {
  filter: contrast(1.08) brightness(0.72);
}

.hero--editorial {
  position: relative;
  overflow: hidden;
  min-height: 112svh;
  padding-top: 154px;
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.42;
  pointer-events: none;
  mask-image: linear-gradient(90deg, #000 0%, transparent 58%);
}

.hero-atmosphere img {
  width: 150%;
  height: 100%;
  object-fit: cover;
  transform: translateX(-18%);
  filter: saturate(0.85) brightness(0.48) contrast(1.12);
}

.theme-light .hero-atmosphere {
  opacity: 0.18;
}

.hero--editorial > .reveal,
.hero--editorial > .hero-media {
  position: relative;
  z-index: 1;
}

.hero--editorial .lede {
  max-width: 58ch;
}

.hero-frame--tall {
  min-height: min(72svh, 720px);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.48);
}

.hero-frame--tall img {
  min-height: min(72svh, 720px);
}

.mini-stack {
  grid-template-columns: repeat(3, clamp(108px, 8vw, 148px));
}

.mini-stack img {
  height: clamp(134px, 10vw, 178px);
}

.scrolly--showcase {
  min-height: 330vh;
  background:
    radial-gradient(circle at 50% 20%, rgba(216, 166, 111, 0.13), transparent 42%),
    #080a08;
}

.scrolly-stage--wide {
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
}

.scrolly-copy--compact {
  max-width: 470px;
}

.legacy-signals {
  display: grid;
  gap: 8px;
  margin: 24px 0;
  color: rgba(247, 242, 233, 0.72);
  font-size: 0.88rem;
}

.legacy-signals strong {
  color: #fbf8ef;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 400;
}

.assembly--showcase {
  width: min(880px, 100%);
  min-height: 760px;
}

.showcase-bg,
.showcase-tile {
  overflow: hidden;
  border: 1px solid rgba(247, 242, 233, 0.16);
  border-radius: 10px;
  background: #11130f;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.showcase-bg {
  left: 10%;
  top: 10%;
  width: 72%;
  height: 58%;
}

.showcase-tile-a {
  left: 0;
  top: 3%;
  width: 36%;
  height: 31%;
}

.showcase-tile-b {
  right: 0;
  top: 1%;
  width: 34%;
  height: 32%;
}

.showcase-tile-c {
  left: 4%;
  bottom: 2%;
  width: 39%;
  height: 34%;
}

.showcase-tile-d {
  right: 4%;
  bottom: 3%;
  width: 39%;
  height: 35%;
}

.showcase-tile-e {
  left: 38%;
  top: 48%;
  width: 25%;
  height: 44%;
}

.assembly-label {
  z-index: 6;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(247, 242, 233, 0.2);
  border-radius: 999px;
  background: rgba(8, 10, 8, 0.46);
  color: rgba(247, 242, 233, 0.76);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.24);
}

.assembly-label--top {
  left: 16%;
  top: 9%;
}

.assembly-label--right {
  right: 7%;
  top: 42%;
}

.assembly-label--bottom {
  left: 42%;
  bottom: 8%;
}

.text-panel,
.agent-panel,
.map-panel {
  display: none;
}

.nav-strip {
  border-color: rgba(247, 242, 233, 0.18);
  background: rgba(8, 10, 8, 0.56);
  color: rgba(247, 242, 233, 0.62);
  backdrop-filter: blur(12px);
}

.nav-strip strong {
  color: #f8f4eb;
}

.vr-scroll-section {
  padding: 130px var(--side);
  background: #070807;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.vr-intro {
  max-width: var(--max);
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(280px, 0.52fr);
  gap: 40px;
  align-items: end;
}

.vr-intro h2 {
  color: #f8f4eb;
}

.vr-intro p {
  max-width: 58ch;
  color: rgba(247, 242, 233, 0.72);
  line-height: 1.75;
}

.vr-grid {
  max-width: calc(var(--max) + 120px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
}

.vr-window {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  margin: 0;
  border: 1px solid rgba(247, 242, 233, 0.14);
  border-radius: 10px;
  background: #11130f;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
}

.vr-window--wide {
  grid-column: 1 / -1;
  min-height: 540px;
}

.vr-window img {
  width: 150%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(var(--pan-x, -16%), 0, 0) scale(1.03);
  will-change: transform;
  filter: saturate(0.88) contrast(1.04) brightness(0.86);
}

.vr-window figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 11px;
  border: 1px solid rgba(247, 242, 233, 0.18);
  border-radius: 999px;
  background: rgba(8, 10, 8, 0.46);
  color: rgba(247, 242, 233, 0.8);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.founders-section {
  background: linear-gradient(180deg, var(--bg), rgba(8, 10, 8, 0.96));
}

.founder-grid {
  max-width: var(--max);
  margin: 54px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.founder-card,
.team-member--with-photo {
  overflow: hidden;
}

.founder-card {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(247, 242, 233, 0.14);
  border-radius: 10px;
  background: #0c0e0b;
}

.founder-card img,
.team-member--with-photo img {
  width: 100%;
  object-fit: cover;
  object-position: 50% 14%;
  filter: saturate(0.86) contrast(1.04);
}

.founder-card img {
  height: 100%;
}

.founder-card div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.86));
  color: #f8f4eb;
}

.founder-card h3,
.founder-card p {
  margin-bottom: 0;
}

.founder-card p {
  color: rgba(247, 242, 233, 0.68);
}

.team-member--with-photo img {
  height: 280px;
  margin: -1px -1px 22px;
  width: calc(100% + 2px);
  border-radius: 8px 8px 0 0;
}

@media (max-width: 1060px) {
  .scrolly-stage--wide,
  .vr-intro,
  .vr-grid,
  .founder-grid {
    grid-template-columns: 1fr;
  }

  .assembly--showcase {
    min-height: 680px;
  }
}

@media (max-width: 760px) {
  html,
  body,
  main {
    width: 100%;
    max-width: 100%;
  }

  .brand--logo {
    min-width: 118px;
  }

  .brand--logo img {
    width: 124px;
  }

  .hero--editorial {
    min-height: auto;
    padding-top: 118px;
  }

  .hero-atmosphere {
    opacity: 0.26;
    mask-image: linear-gradient(180deg, #000 0%, transparent 64%);
  }

  .hero,
  .subhero,
  .section,
  .scrolly-stage,
  .vr-scroll-section {
    overflow-x: clip;
  }

  .hero,
  .subhero {
    display: block !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .hero > *,
  .subhero > * {
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero .reveal,
  .subhero .reveal,
  .body-copy,
  .lede,
  .scrolly-copy p,
  .vr-intro p {
    width: min(100%, 330px) !important;
    max-width: min(100%, 330px) !important;
  }

  .hero-media,
  .subhero .hero-frame {
    margin-top: 38px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 330px);
    max-width: 330px;
    gap: 10px;
  }

  .hero-actions .button {
    justify-content: center;
    padding-inline: 12px;
  }

  .assembly--showcase,
  .assembly--large,
  .assembly--mosaic {
    min-height: 560px;
  }

  .showcase-bg {
    left: 0;
    top: 9%;
    width: 100%;
    height: 45%;
  }

  .showcase-tile-a,
  .showcase-tile-b,
  .showcase-tile-c,
  .showcase-tile-d {
    width: 48%;
    height: 28%;
  }

  .showcase-tile-e {
    left: 30%;
    top: 42%;
    width: 40%;
    height: 42%;
  }

  .vr-window,
  .vr-window--wide {
    min-height: 360px;
  }

  .founder-grid {
    gap: 14px;
  }

  .founder-card {
    min-height: 460px;
  }
}

/* Release QA hardening */
:root {
  --header-h: 98px;
}

section[id] {
  scroll-margin-top: calc(var(--header-h) + 18px);
}

.signature-hero--animation {
  height: calc(100vh - var(--header-h));
  min-height: calc(720px - var(--header-h));
  margin-top: var(--header-h);
}

.home-explainer-frame {
  height: calc(100vh - var(--header-h));
  min-height: calc(720px - var(--header-h));
}

.prototype-shot {
  aspect-ratio: 1488 / 1231;
}

.prototype-shot img {
  object-fit: contain;
  background: #050605;
}

@media (max-width: 900px) {
  .nav {
    top: var(--header-h);
    visibility: hidden;
    pointer-events: none;
  }

  body.nav-open .nav {
    visibility: visible;
    pointer-events: auto;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 78px;
  }

  .scrolly {
    min-height: auto;
  }

  .scrolly-stage,
  .scrolly-stage--wide,
  .scrolly-stage--center {
    position: relative;
    min-height: auto;
    overflow: visible;
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .assembly,
  .assembly--showcase,
  .assembly--large,
  .assembly--mosaic,
  .assembly--prototype {
    min-height: 520px;
  }

  .contact-copy h1 {
    max-width: 8.2ch;
    font-size: clamp(3rem, 13vw, 3.5rem);
  }

  .contact-founder-card {
    max-width: 420px;
    margin-inline: auto;
  }
}

/* Top-notch cleanup pass: restrained home story, clean team/contact, compact footer. */
.signature-hero {
  position: relative;
  min-height: 118vh;
  overflow: clip;
  isolation: isolate;
  background: #080a07;
}

.signature-hero--animation {
  min-height: 100svh;
  height: 100vh;
  min-height: 720px;
  background: #070907;
}

.home-explainer-frame {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100vh;
  min-height: 720px;
  border: 0;
  background: #070907;
  pointer-events: none;
}

.home-hero-controls {
  position: absolute;
  z-index: 12;
  left: max(22px, 5vw);
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(247, 242, 233, 0.76);
}

.home-hero-clock {
  min-width: 42px;
  color: #f7f2e9;
  font-size: 0.76rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
}

.home-hero-control {
  display: inline-grid;
  width: 38px;
  min-width: 38px;
  min-height: 38px;
  place-items: center;
  border: 1px solid rgba(247, 242, 233, 0.18);
  border-radius: 999px;
  padding: 0;
  background: rgba(247, 242, 233, 0.07);
  color: rgba(247, 242, 233, 0.76);
  cursor: pointer;
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.home-hero-control:hover {
  border-color: rgba(247, 242, 233, 0.44);
  background: rgba(247, 242, 233, 0.12);
  color: #f7f2e9;
  transform: translateY(-1px);
}

.home-hero-icon {
  display: block;
  position: relative;
  width: 15px;
  height: 15px;
}

.home-hero-icon--pause::before,
.home-hero-icon--pause::after {
  content: "";
  position: absolute;
  top: 1px;
  bottom: 1px;
  width: 4px;
  border-radius: 1px;
  background: currentColor;
}

.home-hero-icon--pause::before {
  left: 2px;
}

.home-hero-icon--pause::after {
  right: 2px;
}

.home-hero-icon--play {
  display: none;
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid currentColor;
}

.home-hero-control.is-paused .home-hero-icon--pause {
  display: none;
}

.home-hero-control.is-paused .home-hero-icon--play {
  display: block;
}

.home-hero-icon--restart {
  width: 17px;
  height: 17px;
}

.home-hero-icon--restart svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-hero-icon--sound {
  width: 18px;
  height: 18px;
}

.home-hero-icon .sound-icon {
  display: block;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-hero-icon .sound-icon--off,
.home-hero-control--sound.is-muted .sound-icon--on,
.home-hero-control--sound.is-unavailable .sound-icon--on {
  display: none;
}

.home-hero-control--sound.is-muted .sound-icon--off,
.home-hero-control--sound.is-unavailable .sound-icon--off {
  display: block;
}

.home-hero-control--sound.is-unavailable {
  display: none;
}

.home-hero-cta {
  position: absolute;
  z-index: 13;
  right: max(22px, 5vw);
  bottom: 44px;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(217, 170, 112, 0.64);
  border-radius: 999px;
  padding: 0 18px;
  background: rgba(217, 170, 112, 0.16);
  color: #f7f2e9;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 10px, 0);
  backdrop-filter: blur(18px);
  transition: opacity 260ms ease, transform 260ms ease, background 180ms ease, border-color 180ms ease;
}

.home-hero-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.home-hero-cta:hover {
  border-color: rgba(217, 170, 112, 0.82);
  background: rgba(217, 170, 112, 0.28);
}

.motion-bg,
.signature-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.signature-bg {
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
}

.motion-bg::after,
.signature-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 10, 7, 0.98) 0%, rgba(8, 10, 7, 0.86) 34%, rgba(8, 10, 7, 0.38) 72%, rgba(8, 10, 7, 0.72) 100%),
    linear-gradient(180deg, rgba(8, 10, 7, 0.2), rgba(8, 10, 7, 0.9));
}

.motion-bg img,
.signature-bg img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 170%;
  height: 118%;
  max-width: none;
  object-fit: cover;
  transform: translate3d(-9%, -50%, 0) scale(1);
  animation: epikaMotionSweep 34s ease-in-out infinite alternate;
  will-change: transform;
  filter: saturate(1.08) contrast(1.12) brightness(0.76);
}

.motion-bg--hero::after {
  background:
    linear-gradient(90deg, rgba(8, 10, 7, 0.98) 0%, rgba(8, 10, 7, 0.84) 43%, rgba(8, 10, 7, 0.48) 72%, rgba(8, 10, 7, 0.82) 100%),
    linear-gradient(180deg, rgba(8, 10, 7, 0.18), rgba(8, 10, 7, 0.86));
}

.motion-bg--product img {
  animation-duration: 40s;
  transform: translate3d(-25%, -50%, 0) scale(1);
}

.motion-bg--world img {
  animation-duration: 44s;
  animation-direction: alternate-reverse;
  transform: translate3d(-12%, -50%, 0) scale(1);
}

.motion-bg--platform img {
  animation-duration: 38s;
  transform: translate3d(-22%, -50%, 0) scale(1);
}

@keyframes epikaMotionSweep {
  from {
    transform: translate3d(-8%, -50%, 0) scale(1);
  }

  to {
    transform: translate3d(-33%, -50%, 0) scale(1);
  }
}

.signature-sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(180px, 0.24fr);
  align-items: center;
  gap: clamp(34px, 5vw, 88px);
  padding: calc(var(--header-h) + 34px) var(--side) 58px;
}

.signature-copy {
  position: relative;
  z-index: 3;
  max-width: 680px;
  padding: clamp(16px, 3vw, 34px) 0;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.42);
}

.signature-copy h1,
.hero-title-panel h1 {
  margin: 0;
  max-width: 11.2ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 7.15vw, 8.35rem);
  line-height: 0.925;
  letter-spacing: 0;
}

.word-line {
  display: block;
  transform-origin: left center;
  will-change: transform, opacity, filter;
}

.hero-title-panel {
  position: relative;
  z-index: 7;
  right: auto;
  top: auto;
  width: 100%;
  will-change: transform, opacity, filter;
}

.hero-title-panel h1 {
  max-width: 15ch;
  font-size: clamp(3.1rem, 5vw, 5.85rem);
}

.hero-title-panel h1 span {
  display: block;
}

.signature-copy .lede {
  max-width: 620px;
  margin-top: 26px;
  color: rgba(246, 241, 232, 0.86);
  font-size: clamp(1.02rem, 1.18vw, 1.22rem);
}

.legacy-proof {
  display: grid;
  gap: 14px;
  max-width: 500px;
  margin-top: 22px;
  will-change: transform, opacity, filter;
}

.legacy-proof p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.legacy-proof div {
  display: flex;
  gap: 12px;
  align-items: center;
}

.legacy-proof img {
  width: 98px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(246, 241, 232, 0.2);
  border-radius: 10px;
  background: #080a07;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.36);
}

.signature-stage {
  position: relative;
  min-height: min(58vh, 560px);
}

.signature-stage::before {
  content: "";
  position: absolute;
  inset: 7% 0 9%;
  border: 1px solid rgba(246, 241, 232, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(246, 241, 232, 0.028), transparent),
    radial-gradient(circle at 62% 40%, rgba(217, 170, 112, 0.1), transparent 36%);
  box-shadow: inset 0 1px 0 rgba(246, 241, 232, 0.08);
}

.hero-message {
  position: absolute;
  z-index: 6;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: clamp(20px, 2.5vw, 30px);
  border: 1px solid rgba(246, 241, 232, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(18, 20, 16, 0.82), rgba(8, 10, 7, 0.68)),
    rgba(8, 10, 7, 0.7);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38), 0 1px 0 rgba(246, 241, 232, 0.08) inset;
  backdrop-filter: blur(16px);
  will-change: transform, opacity, filter;
}

.hero-message span {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-message h2 {
  margin: 0;
  max-width: 9ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.88rem, 4.95vw, 6.12rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-message p {
  margin: 0;
  color: var(--soft-ink);
  font-size: clamp(0.95rem, 1.05vw, 1.08rem);
  line-height: 1.62;
}

.hero-message--primary {
  width: min(42vw, 520px);
  right: 9%;
  top: 12%;
}

.hero-message--text {
  width: min(29vw, 350px);
  left: 2%;
  top: 18%;
}

.hero-message--world {
  width: min(31vw, 380px);
  right: 0;
  bottom: 14%;
}

.hero-message--guide {
  width: min(30vw, 360px);
  left: 10%;
  bottom: 6%;
}

.hero-object {
  position: absolute;
  font-size: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(246, 241, 232, 0.16);
  border-radius: 18px;
  background: rgba(8, 10, 7, 0.62);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.46), 0 1px 0 rgba(246, 241, 232, 0.08) inset;
  will-change: transform, opacity, filter;
}

.hero-object img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.04);
}

.hero-object--reader {
  z-index: 4;
  right: 8%;
  top: 14%;
  width: min(58vw, 660px);
  height: min(48vh, 500px);
}

.hero-object--reader img,
.hero-object--atlas img,
.hero-object--timeline img {
  object-fit: contain;
  background: #050604;
}

.hero-object--atlas {
  z-index: 3;
  left: 0;
  top: 2%;
  width: min(38vw, 440px);
  height: min(31vh, 310px);
}

.hero-object--place {
  z-index: 2;
  right: 0;
  top: 0;
  width: min(34vw, 390px);
  height: min(27vh, 280px);
}

.hero-object--timeline {
  z-index: 2;
  left: 5%;
  bottom: 5%;
  width: min(36vw, 410px);
  height: min(30vh, 300px);
}

.hero-object--world {
  z-index: 1;
  right: 17%;
  bottom: 0;
  width: min(35vw, 420px);
  height: min(27vh, 280px);
}

.hero-pano {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(246, 241, 232, 0.2);
  border-radius: 28px;
  background: #050604;
  box-shadow: 0 36px 95px rgba(0, 0, 0, 0.46), 0 1px 0 rgba(246, 241, 232, 0.12) inset;
  will-change: transform, opacity, filter;
}

.hero-pano img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 320%;
  height: auto;
  max-width: none;
  min-height: 124%;
  object-fit: cover;
  transform: translate3d(var(--pan-x, 0%), calc(-50% + var(--pan-y, 0%)), 0);
  filter: saturate(1.28) contrast(1.15) brightness(1.05);
}

.hero-pano--crucifixion,
.hero-pano--resurrection-main {
  z-index: 4;
  left: 0;
  right: 0;
  top: 2%;
  width: 100%;
  height: min(72vh, 720px);
}

.hero-pano--resurrection {
  z-index: 3;
  left: 4%;
  top: 0;
  width: min(58vw, 620px);
  height: min(30vh, 310px);
}

.hero-pano--supper {
  z-index: 2;
  right: 2%;
  bottom: 5%;
  width: min(62vw, 700px);
  height: min(32vh, 340px);
}

.hero-pano--jerusalem {
  z-index: 1;
  left: 0;
  bottom: 0;
  width: min(56vw, 640px);
  height: min(30vh, 310px);
}

.product-section,
.world-section,
.platform-section,
.team-strip,
.investor-section,
.team-directory,
.team-belief,
.contact-founders-clean {
  position: relative;
  padding-top: clamp(96px, 10vw, 150px);
  padding-bottom: clamp(96px, 10vw, 150px);
}

.home-page .product-section,
.home-page .world-section,
.home-page .platform-section {
  overflow: clip;
  isolation: isolate;
}

.home-page .product-section > :not(.motion-bg),
.home-page .world-section > :not(.motion-bg),
.home-page .platform-section > :not(.motion-bg) {
  position: relative;
  z-index: 1;
}

.home-page .product-section::before,
.home-page .world-section::before,
.home-page .platform-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(8, 10, 7, 0.86), rgba(8, 10, 7, 0.9)),
    radial-gradient(circle at 74% 18%, rgba(217, 170, 112, 0.12), transparent 30vw);
  pointer-events: none;
}

.product-showcase {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
  margin-top: 58px;
}

.product-shot {
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(246, 241, 232, 0.045);
}

.product-shot--large {
  grid-row: span 2;
  min-height: 740px;
}

.product-shot img {
  height: calc(100% - 46px);
  object-fit: contain !important;
  background: #050604;
}

.product-shot figcaption,
.world-grid figcaption {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  color: var(--muted);
  font-size: 0.84rem;
}

.product-argument {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: clamp(48px, 6vw, 82px);
}

.product-argument article {
  display: grid;
  min-height: 300px;
  align-content: space-between;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(246, 241, 232, 0.06), rgba(246, 241, 232, 0.025));
}

.product-argument span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.product-argument h3 {
  margin: 58px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4.2vw, 4.6rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.product-argument p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.product-proof-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  margin-top: clamp(54px, 7vw, 96px);
  padding: clamp(24px, 3.4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 78% 22%, rgba(135, 167, 180, 0.12), transparent 30%),
    rgba(246, 241, 232, 0.035);
}

.product-proof-copy h3 {
  margin: 0 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 3.7vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.product-proof-copy p:last-child {
  color: var(--soft-ink);
  line-height: 1.76;
}

.product-screens {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 14px;
}

.product-screens figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(246, 241, 232, 0.14);
  border-radius: 16px;
  background: #050604;
}

.product-screens figure:first-child {
  grid-row: span 2;
}

.product-screens img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: contain;
  background: #050604;
}

.product-screens figure:first-child img {
  min-height: 460px;
  object-fit: cover;
  object-position: center bottom;
}

.product-screens figcaption {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  color: var(--muted);
  font-size: 0.82rem;
}

.cinema-panorama {
  position: relative;
  width: auto;
  min-height: clamp(290px, 38vh, 440px);
  margin: clamp(58px, 6vw, 92px) calc(var(--side) * -1) 0;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #050604;
  contain: paint;
}

.cinema-panorama::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 10, 7, 0.3), transparent 24%, transparent 76%, rgba(8, 10, 7, 0.3)),
    linear-gradient(180deg, rgba(8, 10, 7, 0.18), transparent 26%, transparent 74%, rgba(8, 10, 7, 0.22));
  box-shadow: inset 0 1px 0 rgba(246, 241, 232, 0.12), inset 0 -1px 0 rgba(246, 241, 232, 0.12);
  pointer-events: none;
}

.cinema-panorama img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 252%;
  height: auto;
  max-width: none;
  min-height: 112%;
  object-fit: cover;
  transform: translate3d(var(--pan-x, -1%), -50%, 0);
  filter: saturate(1.16) contrast(1.12) brightness(0.96);
}

.cinema-panorama--spin {
  min-height: clamp(280px, 36vh, 400px);
}

.cinema-panorama--david img {
  width: 132%;
  min-height: 100%;
  transform: translate3d(var(--pan-x, -16%), -50%, 0);
  object-position: center;
}

.world-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.world-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(246, 241, 232, 0.045);
}

.world-grid img {
  height: 360px;
  object-fit: cover;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 58px;
}

.principle-grid article {
  min-height: 300px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(246, 241, 232, 0.045);
}

.principle-grid span {
  display: block;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.principle-grid h3 {
  margin: 86px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.section-note {
  max-width: 420px;
  color: var(--muted);
  font-size: 1rem;
}

.page-hero {
  min-height: 40vh;
  display: grid;
  align-items: end;
  padding: calc(var(--header-h) + 44px) var(--side) 54px;
  background:
    radial-gradient(circle at 72% 20%, rgba(217, 170, 112, 0.12), transparent 28vw),
    linear-gradient(180deg, rgba(18, 20, 16, 0.98), rgba(8, 10, 7, 0.96));
}

.page-hero h1,
.contact-intro h1 {
  max-width: 11ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 8vw, 8.5rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.page-hero .lede,
.contact-intro .lede {
  max-width: 760px;
  color: var(--soft-ink);
}

.team-profile-grid {
  display: grid;
  gap: 22px;
}

.team-directory {
  padding-top: clamp(48px, 5vw, 70px);
}

.team-profile {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(246, 241, 232, 0.045);
}

.founder-headshot {
  width: 240px;
  aspect-ratio: 1;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(246, 241, 232, 0.06);
}

.founder-headshot img,
.founder-card img,
.contact-founder-list img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
}

.team-profile h2 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.profile-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.profile-link:hover {
  border-color: rgba(217, 170, 112, 0.54);
  background: rgba(217, 170, 112, 0.12);
  transform: translateY(-1px);
}

.contact-page {
  padding: calc(var(--header-h) + 52px) var(--side) clamp(78px, 8vw, 124px);
  background:
    linear-gradient(90deg, rgba(8, 10, 7, 0.98), rgba(8, 10, 7, 0.86)),
    url("Assets/Optimized/Sea of Galilee.jpg") center / cover;
}

.contact-intro {
  max-width: 900px;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(280px, 420px);
  gap: 24px;
  align-items: stretch;
  margin-top: 38px;
}

.address-card {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(246, 241, 232, 0.07);
  backdrop-filter: blur(18px);
}

.address-card h2 {
  margin: 0 0 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.address-card dl {
  display: grid;
  gap: 22px;
  margin: 0 0 34px;
}

.address-card dt {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.address-card dd {
  margin: 6px 0 0;
  color: var(--ink);
  font-size: 1.08rem;
}

.contact-founder-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 58px;
}

.contact-founder-list article {
  display: grid;
  grid-template-rows: 260px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(246, 241, 232, 0.045);
}

.contact-founder-list img {
  width: 100%;
}

.contact-founder-list div {
  padding: 24px;
}

.contact-founder-list h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.footer--compact {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(170px, 1fr));
  gap: 28px;
  align-items: start;
  padding: 44px var(--side);
  border-top: 1px solid var(--line);
  background: rgba(8, 10, 7, 0.96);
}

.footer-brand img {
  width: 150px;
  height: auto;
  margin-bottom: 18px;
}

.footer-brand p,
.footer-column {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.footer-column {
  display: grid;
  gap: 8px;
  font-style: normal;
}

.footer-column a {
  width: fit-content;
  color: var(--soft-ink);
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--ink);
}

.footer--compact .footer-actions {
  display: grid;
  gap: 10px;
  max-width: 230px;
}

.footer--compact .button {
  width: 100%;
  justify-content: center;
  color: #080a07;
}

.footer--compact .button.secondary {
  color: var(--ink);
}

.footer-social {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(246, 241, 232, 0.12);
  color: rgba(246, 241, 232, 0.42);
  font-size: 0.76rem;
  line-height: 1.4;
}

.footer-social .footer-label {
  margin-right: 4px;
}

.footer-social .social-icon {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  color: rgba(246, 241, 232, 0.58);
  border: 1px solid rgba(246, 241, 232, 0.14);
  border-radius: 999px;
  text-decoration: none;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.footer-social .social-icon::before {
  content: "";
  width: 13px;
  height: 13px;
  background: currentColor;
  -webkit-mask: var(--social-icon) center / contain no-repeat;
  mask: var(--social-icon) center / contain no-repeat;
}

.footer-social .social-icon:hover {
  border-color: rgba(246, 241, 232, 0.28);
  background: rgba(246, 241, 232, 0.06);
  color: var(--ink);
}

.footer-social .social-icon[aria-disabled="true"] {
  color: rgba(246, 241, 232, 0.34);
  border-color: rgba(246, 241, 232, 0.08);
}

.social-icon--x {
  --social-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.6 10.4 22.7 1h-1.9l-7 8.1L8.2 1H1.7l8.5 12.3L1.7 23h1.9l7.5-8.7 6 8.7h6.5l-9-12.6Zm-2.7 3.1-.9-1.2L4.2 2.4h3.1l5.5 7.9.9 1.2 7.2 10.2h-3.1l-5.9-8.2Z'/%3E%3C/svg%3E");
}

.social-icon--youtube {
  --social-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23.5 6.2a3 3 0 0 0-2.1-2.1C19.5 3.6 12 3.6 12 3.6s-7.5 0-9.4.5A3 3 0 0 0 .5 6.2 31.4 31.4 0 0 0 0 12a31.4 31.4 0 0 0 .5 5.8 3 3 0 0 0 2.1 2.1c1.9.5 9.4.5 9.4.5s7.5 0 9.4-.5a3 3 0 0 0 2.1-2.1A31.4 31.4 0 0 0 24 12a31.4 31.4 0 0 0-.5-5.8ZM9.6 15.6V8.4L15.8 12l-6.2 3.6Z'/%3E%3C/svg%3E");
}

.social-icon--linkedin {
  --social-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.4 20.4h-3.6v-5.6c0-1.3 0-3-1.8-3s-2.1 1.4-2.1 2.9v5.7H9.3V9h3.4v1.6h.1a3.7 3.7 0 0 1 3.4-1.9c3.6 0 4.2 2.3 4.2 5.4v6.3ZM5.2 7.4a2.1 2.1 0 1 1 0-4.2 2.1 2.1 0 0 1 0 4.2Zm1.8 13H3.4V9H7v11.4ZM22.2 0H1.8C.8 0 0 .8 0 1.8v20.4c0 1 .8 1.8 1.8 1.8h20.4c1 0 1.8-.8 1.8-1.8V1.8c0-1-.8-1.8-1.8-1.8Z'/%3E%3C/svg%3E");
}

.social-icon--facebook {
  --social-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 8h3V4h-3c-3.3 0-5 2-5 5v3H6v4h3v8h4v-8h3.4l.6-4h-4V9c0-.7.3-1 1-1Z'/%3E%3C/svg%3E");
}

.social-icon--instagram {
  --social-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5Zm0 2a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3H7Zm5 4a4 4 0 1 1 0 8 4 4 0 0 1 0-8Zm0 2a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm5.2-3.4a1.2 1.2 0 1 1 0 2.4 1.2 1.2 0 0 1 0-2.4Z'/%3E%3C/svg%3E");
}

.theme-light .footer--compact {
  background: rgba(251, 250, 246, 0.86);
}

@media (max-width: 1080px) {
  .signature-sticky {
    grid-template-columns: 1fr;
    align-content: center;
    padding-top: calc(var(--header-h) + 42px);
  }

  .signature-copy h1 {
    max-width: 12ch;
    font-size: clamp(4rem, 12vw, 7rem);
  }

  .signature-stage {
    min-height: 64vh;
  }

  .hero-pano--crucifixion,
  .hero-pano--resurrection-main {
    height: min(64vh, 640px);
  }

  .product-showcase,
  .product-proof-layout,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .product-shot--large {
    min-height: 520px;
  }

  .principle-grid,
  .product-argument,
  .contact-founder-list,
  .world-grid,
  .footer--compact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .signature-hero {
    min-height: auto;
  }

  .signature-hero--animation {
    min-height: 100svh;
    height: 100vh;
    min-height: 700px;
  }

  .home-explainer-frame {
    height: 100vh;
    min-height: 700px;
  }

  .home-hero-controls {
    left: 20px;
    bottom: 28px;
  }

  .home-hero-control {
    width: 34px;
    min-width: 34px;
    min-height: 34px;
  }

  .home-hero-cta {
    right: 20px;
    bottom: 30px;
    min-height: 38px;
    padding: 0 13px;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  .signature-sticky {
    position: relative;
    min-height: auto;
    padding: calc(var(--header-h) + 44px) var(--side) 82px;
  }

  .signature-copy h1,
  .page-hero h1,
  .contact-intro h1 {
    max-width: 100%;
    font-size: clamp(2.75rem, 13.2vw, 4.05rem);
    line-height: 0.94;
  }

  .word-line {
    transform: none !important;
  }

  .signature-copy {
    max-width: 100%;
  }

  .signature-stage {
    min-height: 430px;
  }

  .legacy-proof {
    max-width: 330px;
    margin-top: 18px;
  }

  .legacy-proof img {
    width: 79px;
  }

  .hero-pano--crucifixion,
  .hero-pano--resurrection-main {
    left: 0;
    right: 0;
    width: 100%;
    height: 430px;
  }

  .hero-pano img {
    width: 520%;
  }

  .cinema-panorama img {
    width: 420%;
  }

  .product-shot,
  .product-shot--large {
    min-height: 320px;
  }

  .product-argument article {
    min-height: auto;
  }

  .product-argument h3 {
    margin-top: 42px;
  }

  .product-proof-layout {
    padding: 22px;
    border-radius: 18px;
  }

  .product-screens {
    grid-template-columns: 1fr;
  }

  .product-screens figure:first-child {
    grid-row: auto;
  }

  .product-screens img,
  .product-screens figure:first-child img {
    min-height: 260px;
  }

  .cinema-panorama {
    min-height: 340px;
  }

  .world-grid img {
    height: 280px;
  }

  .team-profile {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .founder-headshot {
    width: min(64vw, 240px);
  }

  .contact-page {
    padding-top: calc(var(--header-h) + 44px);
  }

  .contact-founder-list article {
    grid-template-rows: 230px 1fr;
  }
}

/* Final-pass product showcase and page polish */
.prototype-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(8, 10, 8, 0.88), rgba(14, 16, 13, 0.94)),
    url("Assets/Optimized/Product Atlas Timeline.jpg") center / cover;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.theme-light .prototype-section {
  background:
    linear-gradient(180deg, rgba(244, 240, 232, 0.88), rgba(251, 250, 246, 0.94)),
    url("Assets/Optimized/Product Atlas Timeline.jpg") center / cover;
}

.prototype-wall {
  max-width: calc(var(--max) + 160px);
  margin: 76px auto 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 176px;
  gap: 14px;
  perspective: 1200px;
}

.prototype-shot {
  position: relative;
  grid-column: span 2;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(247, 242, 233, 0.16);
  border-radius: 10px;
  background: #080a08;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.36);
  transform: translateZ(0);
}

.prototype-shot--large {
  grid-column: span 4;
  grid-row: span 2;
}

.prototype-shot--wide {
  grid-column: span 3;
}

.prototype-shot img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.94) contrast(1.04) brightness(0.84);
}

.theme-light .prototype-shot img {
  filter: saturate(0.92) contrast(1.02) brightness(0.98);
}

.prototype-shot figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 11px;
  border: 1px solid rgba(247, 242, 233, 0.18);
  border-radius: 999px;
  background: rgba(8, 10, 8, 0.58);
  color: rgba(247, 242, 233, 0.84);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.scrolly--prototype {
  min-height: 340vh;
  background:
    radial-gradient(circle at 72% 12%, rgba(217, 170, 112, 0.14), transparent 32vw),
    radial-gradient(circle at 16% 74%, rgba(135, 167, 180, 0.12), transparent 30vw),
    #060706;
}

.assembly--prototype {
  width: min(920px, 100%);
  min-height: 780px;
}

.prototype-object,
.prototype-core {
  overflow: hidden;
  border: 1px solid rgba(247, 242, 233, 0.15);
  border-radius: 10px;
  background: #0a0c09;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.42);
}

.prototype-object img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.94) contrast(1.05) brightness(0.88);
}

.prototype-object--atlas {
  left: 7%;
  top: 8%;
  width: 56%;
  height: 34%;
  z-index: 1;
}

.prototype-object--reader {
  right: 2%;
  top: 12%;
  width: 42%;
  height: 38%;
  z-index: 3;
}

.prototype-object--timeline {
  left: 0;
  bottom: 10%;
  width: 42%;
  height: 38%;
  z-index: 2;
}

.prototype-object--event {
  right: 6%;
  bottom: 8%;
  width: 48%;
  height: 36%;
  z-index: 2;
}

.prototype-object--media {
  left: 28%;
  top: 38%;
  width: 44%;
  height: 34%;
  z-index: 4;
}

.prototype-core {
  left: 34%;
  top: 30%;
  z-index: 5;
  width: 32%;
  padding: 20px;
  color: #f8f4eb;
  background: rgba(8, 10, 8, 0.72);
  backdrop-filter: blur(18px);
}

.prototype-core p:last-child {
  margin-bottom: 0;
  color: rgba(247, 242, 233, 0.76);
  line-height: 1.55;
}

.panorama-sweep {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
  gap: 46px;
  align-items: center;
  min-height: 116svh;
  padding: 120px var(--side);
  background:
    linear-gradient(90deg, rgba(7, 8, 7, 0.98) 0%, rgba(7, 8, 7, 0.76) 42%, rgba(7, 8, 7, 0.46) 100%),
    url("Assets/Optimized/Last Supper Upper Room 360.jpg") center / cover;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.panorama-sweep-copy {
  position: relative;
  z-index: 2;
  max-width: 500px;
}

.panorama-sweep-copy h2 {
  margin-bottom: 22px;
  color: #f8f4eb;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
}

.panorama-sweep-copy p:last-child {
  color: rgba(247, 242, 233, 0.74);
  line-height: 1.74;
}

.panorama-sweep-window {
  position: relative;
  overflow: hidden;
  min-height: min(72svh, 720px);
  margin: 0;
  border: 1px solid rgba(247, 242, 233, 0.16);
  border-radius: 10px;
  background: #0a0c09;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.44);
}

.panorama-sweep-window img {
  width: 154%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(var(--pan-x, -18%), 0, 0) scale(1.03);
  will-change: transform;
  filter: saturate(0.88) contrast(1.06) brightness(0.84);
}

.feature-grid--roles {
  max-width: var(--max);
  margin: 70px auto 0;
}

select {
  width: 100%;
  border: 1px solid rgba(18, 18, 17, 0.18);
  border-radius: 8px;
  padding: 14px 42px 14px 14px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  font: inherit;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, currentColor 50%),
    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(135, 167, 180, 0.32);
  border-color: var(--blue);
}

.theme-light input,
.theme-light textarea,
.theme-light select {
  background-color: rgba(255, 255, 255, 0.68);
}

input,
textarea,
select {
  border-color: var(--line);
  background-color: rgba(246, 241, 232, 0.08);
  color: var(--ink);
}

.contact-hero {
  min-height: 100svh;
  padding: 136px var(--side) 96px;
  display: grid;
  grid-template-columns: minmax(300px, 0.38fr) minmax(0, 0.62fr);
  gap: 62px;
  align-items: start;
  background:
    linear-gradient(180deg, rgba(8, 10, 8, 0.82), rgba(8, 10, 8, 0.96)),
    url("Assets/Optimized/Product Event Places.jpg") center / cover;
}

.theme-light .contact-hero {
  background:
    linear-gradient(180deg, rgba(244, 240, 232, 0.82), rgba(244, 240, 232, 0.96)),
    url("Assets/Optimized/Product Event Places.jpg") center / cover;
}

.contact-copy {
  max-width: 560px;
  position: sticky;
  top: 116px;
}

.contact-copy h1 {
  max-width: 7.2ch;
  font-size: clamp(4.2rem, 6.4vw, 5.45rem);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.54fr);
  gap: 18px;
  align-items: stretch;
}

.contact-form-panel,
.address-panel {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(10, 12, 9, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.theme-light .contact-form-panel,
.theme-light .address-panel {
  background: rgba(255, 255, 255, 0.68);
}

.address-panel {
  padding: 30px;
}

.address-panel h2 {
  margin-bottom: 24px;
  font-size: 2.25rem;
}

.address-panel dl {
  display: grid;
  gap: 18px;
  margin: 0 0 28px;
}

.address-panel dt,
.footer-label {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.address-panel dd {
  margin: 6px 0 0;
  color: var(--soft-ink);
  line-height: 1.55;
}

.address-panel a {
  text-decoration: none;
}

.address-panel p:last-child {
  color: var(--soft-ink);
  line-height: 1.72;
}

.contact-founders {
  background:
    radial-gradient(circle at 18% 0%, rgba(217, 170, 112, 0.12), transparent 28vw),
    linear-gradient(180deg, #0b0d0a, #11130f);
}

.theme-light .contact-founders {
  background:
    radial-gradient(circle at 18% 0%, rgba(154, 93, 59, 0.1), transparent 28vw),
    linear-gradient(180deg, #f4f0e8, #fbfaf6);
}

.contact-founder-grid {
  max-width: var(--max);
  margin: 58px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.contact-founder-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: 300px 1fr;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(246, 241, 232, 0.055);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.theme-light .contact-founder-card {
  background: rgba(255, 255, 255, 0.62);
}

.contact-founder-card img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  filter: saturate(0.9) contrast(1.04);
}

.contact-founder-card div {
  display: grid;
  align-content: start;
  padding: 26px;
}

.contact-founder-card .eyebrow {
  margin-bottom: 14px;
}

.contact-founder-card h3 {
  margin-bottom: 16px;
}

.contact-founder-card p:last-child {
  margin-bottom: 0;
  color: var(--soft-ink);
  line-height: 1.66;
}

.team-hero {
  padding: 136px var(--side) 104px;
  display: grid;
  grid-template-columns: minmax(280px, 0.32fr) minmax(0, 0.68fr);
  gap: 50px;
  align-items: start;
  min-height: 100svh;
  background:
    radial-gradient(circle at 78% 8%, rgba(217, 170, 112, 0.13), transparent 30vw),
    linear-gradient(180deg, #0e100d, #151811);
}

.team-hero > .reveal:first-child {
  position: sticky;
  top: 118px;
}

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

.team-hero .team-member {
  min-height: 100%;
}

.team-hero .team-member p + p {
  margin-top: 16px;
}

.donate-button {
  cursor: pointer;
}

.footer {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(260px, 0.32fr);
  gap: 52px;
  padding: 88px var(--side);
  background:
    linear-gradient(180deg, rgba(8, 10, 7, 0.94), #050605),
    url("Assets/Optimized/Product Home.jpg") center / cover;
  color: #f7f2e9;
}

.footer-main {
  max-width: 680px;
}

.footer h2 {
  max-width: 13ch;
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 5vw, 4rem);
}

.footer p {
  max-width: 62ch;
  color: rgba(247, 242, 233, 0.72);
  line-height: 1.7;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.footer-contact {
  display: grid;
  gap: 12px;
  align-content: start;
  margin: 0;
  padding: 26px;
  border: 1px solid rgba(247, 242, 233, 0.14);
  border-radius: 10px;
  background: rgba(8, 10, 8, 0.5);
  color: rgba(247, 242, 233, 0.78);
  font-style: normal;
  line-height: 1.52;
  backdrop-filter: blur(16px);
}

.footer-contact a {
  color: rgba(247, 242, 233, 0.88);
  text-decoration: none;
}

.footer-contact a:hover {
  color: #fff;
}

@media (max-width: 1060px) {
  .prototype-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }

  .prototype-shot,
  .prototype-shot--large,
  .prototype-shot--wide {
    grid-column: auto;
    grid-row: auto;
  }

  .prototype-shot--large {
    grid-column: 1 / -1;
    min-height: 440px;
  }

  .scrolly-stage--wide,
  .panorama-sweep,
  .contact-hero,
  .contact-layout,
  .contact-founder-grid,
  .team-hero,
  .team-hero .team-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .contact-copy,
  .team-hero > .reveal:first-child {
    position: relative;
    top: auto;
  }

  .assembly--prototype {
    min-height: 680px;
  }
}

@media (max-width: 900px) {
  .site-header {
    position: sticky;
    gap: 12px;
  }

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

  .nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 70px;
    display: grid;
    gap: 0;
    padding: 0 var(--side) 18px;
    background: rgba(14, 16, 13, 0.98);
    border-bottom: 1px solid var(--line);
    transform: translateY(-140%);
    transition: transform 220ms ease;
  }

  .theme-light .nav {
    background: rgba(244, 240, 232, 0.98);
  }

  body.nav-open .nav {
    transform: translateY(0);
  }

  .nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav .button {
    margin-top: 14px;
    border-bottom: 0;
  }
}

@media (max-width: 760px) {
  .prototype-wall {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    margin-top: 48px;
  }

  .prototype-shot,
  .prototype-shot--large {
    min-height: 280px;
  }

  .scrolly--prototype {
    min-height: 250vh;
  }

  .assembly--prototype {
    min-height: 600px;
  }

  .prototype-object--atlas,
  .prototype-object--reader,
  .prototype-object--timeline,
  .prototype-object--event {
    width: 72%;
    height: 25%;
  }

  .prototype-object--atlas {
    left: 0;
    top: 6%;
  }

  .prototype-object--reader {
    right: 0;
    top: 22%;
  }

  .prototype-object--timeline {
    left: 0;
    bottom: 23%;
  }

  .prototype-object--event {
    right: 0;
    bottom: 7%;
  }

  .prototype-object--media,
  .prototype-core {
    display: none;
  }

  .panorama-sweep,
  .contact-hero,
  .team-hero {
    display: block;
    min-height: auto;
    padding-top: 92px;
    padding-bottom: 84px;
  }

  .panorama-sweep-window {
    min-height: 360px;
    margin-top: 34px;
  }

  .contact-layout,
  .contact-founder-grid,
  .team-hero .team-grid {
    margin-top: 34px;
  }

  .contact-founder-card {
    grid-template-rows: 260px 1fr;
  }

  .footer-actions {
    display: grid;
    max-width: 330px;
  }

.footer-contact {
    padding: 20px;
  }
}

/* Final release overrides: keep these last so earlier iteration CSS cannot regress QA fixes. */
:root {
  --header-h: 98px;
}

section[id] {
  scroll-margin-top: calc(var(--header-h) + 18px);
}

.signature-hero--animation {
  height: calc(100svh - var(--header-h));
  min-height: calc(100svh - var(--header-h));
  margin-top: var(--header-h);
}

.home-explainer-frame {
  height: calc(100svh - var(--header-h));
  min-height: calc(100svh - var(--header-h));
}

.prototype-shot {
  aspect-ratio: 1488 / 1231;
}

.prototype-shot img {
  object-fit: contain !important;
  background: #050605;
}

.prototype-section {
  background:
    linear-gradient(180deg, rgba(8, 10, 8, 0.72), rgba(14, 16, 13, 0.84)),
    url("Assets/Optimized/Product Atlas Timeline.jpg") center / cover;
}

.prototype-shot img,
.prototype-object img {
  filter: saturate(0.98) contrast(1.04) brightness(0.98) !important;
}

.contact-hero {
  background:
    linear-gradient(180deg, rgba(8, 10, 8, 0.94), rgba(8, 10, 8, 0.98)),
    url("Assets/Optimized/Product Event Places.jpg") center / cover !important;
}

.footer .button {
  color: #080a07;
}

.footer .button:hover {
  color: #f7f2e9;
}

.theme-light .footer--compact .button:hover {
  color: #121211;
}

.team-profile > div {
  min-width: 0;
}

.team-profile h2,
.team-profile p,
.contact-intro h1 {
  overflow-wrap: anywhere;
}

@media (max-width: 900px) {
  .site-header {
    min-height: var(--header-h);
  }

  .menu-button {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 80;
    display: inline-flex !important;
    border-color: rgba(246, 241, 232, 0.26);
    background: rgba(8, 10, 8, 0.76);
    color: #f7f2e9;
    backdrop-filter: blur(12px);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.34);
  }

  .nav {
    top: var(--header-h) !important;
    visibility: hidden;
    pointer-events: none;
  }

  body.nav-open .nav {
    visibility: visible;
    pointer-events: auto;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 78px;
  }

  .signature-hero--animation {
    min-height: calc(100svh - var(--header-h));
  }

  .home-explainer-frame {
    min-height: calc(100svh - var(--header-h));
  }

  .scrolly,
  .scrolly--deep,
  .scrolly--gallery,
  .scrolly--showcase,
  .scrolly--prototype {
    min-height: auto !important;
  }

  .scrolly-stage,
  .scrolly-stage--wide,
  .scrolly-stage--center {
    position: relative !important;
    min-height: auto !important;
    overflow: visible !important;
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .assembly,
  .assembly--showcase,
  .assembly--large,
  .assembly--mosaic,
  .assembly--prototype {
    min-height: 520px !important;
  }

  .contact-copy h1 {
    max-width: 8.2ch;
    font-size: clamp(3rem, 13vw, 3.5rem);
  }

  .contact-founder-card {
    max-width: 420px;
    margin-inline: auto;
  }
}

/* Motion-background release polish. */
.contact-intro h1 {
  max-width: 14ch;
  font-size: clamp(3.05rem, 6.2vw, 6.35rem);
  line-height: 0.94;
}

.address-card h2 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(1.55rem, 2.15vw, 2.18rem);
}

.contact-form-panel {
  scroll-margin-top: calc(var(--header-h) + 22px);
}

.contact-founder-list img {
  filter: grayscale(1) saturate(0) contrast(1.06) brightness(0.96);
  transition: filter 420ms ease, transform 420ms ease;
}

.contact-founder-list article:hover img,
.contact-founder-list article:focus-within img {
  filter: grayscale(0) saturate(1.02) contrast(1.04) brightness(1);
  transform: scale(1.025) !important;
}

@media (max-width: 1080px) {
  .motion-bg img {
    width: 210%;
  }
}

.cinema-panorama img {
  width: 176%;
}

@media (max-width: 760px) {
  .motion-bg img {
    width: 275%;
    height: 112%;
  }

  .cinema-panorama img {
    width: 206%;
    min-height: 116%;
  }

  .contact-intro h1 {
    font-size: clamp(2.45rem, 10.5vw, 3.2rem);
    line-height: 0.98;
  }

  .address-card h2 {
    font-size: clamp(1.42rem, 6.6vw, 1.9rem);
  }
}

/* Human-safe image framing: biblical figures should not be clipped by decorative frames. */
.hero-frame img,
.world-grid img,
.image-card img,
.mini-stack img,
.legacy-proof img {
  object-fit: contain !important;
  object-position: center center !important;
  background: #080a07;
}

.founder-headshot img,
.contact-founder-list img,
.founder-card img,
.team-member--with-photo img,
.contact-founder-card img {
  object-fit: contain !important;
  object-position: center top !important;
  background: #11130f;
}

.world-grid figure,
.hero-frame,
.image-card {
  background: #080a07;
}

/* Production-readiness pass: combined contact page, fuller gallery, and tighter image framing. */
#team,
#contribute,
#investors,
#contact-form {
  scroll-margin-top: calc(var(--header-h) + 132px);
}

#contact-form {
  scroll-margin-top: min(54vh, calc(var(--header-h) + 460px));
}

.contact-page {
  padding-bottom: clamp(86px, 9vw, 140px);
}

.contact-shell {
  align-items: start;
}

.contact-founder-list article {
  grid-template-rows: 310px 1fr;
}

.founder-headshot img,
.contact-founder-list img,
.founder-card img,
.team-member--with-photo img,
.contact-founder-card img {
  display: block;
  width: 108% !important;
  max-width: none;
  margin-left: -4%;
  object-fit: cover !important;
  object-position: center 18% !important;
  transform: none !important;
}

.founder-headshot img {
  width: 112% !important;
  margin-left: -6%;
  object-position: center 12% !important;
}

.contact-founder-list article:hover img,
.contact-founder-list article:focus-within img {
  filter: grayscale(0) saturate(1.04) contrast(1.04) brightness(1);
  transform: scale(1.025) !important;
}

.contact-founder-list div {
  padding: 26px;
}

.contact-founder-list p {
  line-height: 1.62;
}

.contribution-section,
.contact-investor-section {
  background:
    radial-gradient(circle at 80% 18%, rgba(217, 170, 112, 0.09), transparent 26vw),
    linear-gradient(180deg, #0a0c09, #10120e);
}

.pathway-grid,
.investor-proof-grid {
  max-width: var(--max);
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pathway-grid article,
.investor-proof-grid article {
  min-height: 300px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(246, 241, 232, 0.052);
}

.pathway-grid article {
  display: flex;
  flex-direction: column;
}

.pathway-grid article > .profile-link {
  margin-top: auto;
  align-self: flex-start;
}

.pathway-grid span,
.investor-proof-grid span {
  display: block;
  margin-bottom: 48px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pathway-grid h3,
.investor-proof-grid h3 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 2.6vw, 2.9rem);
  line-height: 1.02;
}

.pathway-grid p,
.investor-proof-grid p {
  color: var(--soft-ink);
  line-height: 1.68;
}

.investor-contact-cta {
  max-width: var(--max);
  margin: 42px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.investor-proof-grid {
  margin-top: 0;
}

.world-grid--expanded {
  display: flex !important;
  grid-template-columns: none !important;
  gap: 16px;
  width: max-content;
  margin-top: 0;
  transform: translate3d(var(--gallery-x, 0px), 0, 0);
  transition: transform 90ms linear;
  will-change: transform;
}

.world-grid--expanded figure {
  position: relative;
  flex: 0 0 clamp(330px, 27vw, 430px);
  width: clamp(330px, 27vw, 430px);
  min-height: clamp(470px, 64vh, 680px);
  border-radius: 12px;
  transform: none !important;
  transition: border-color 180ms ease;
}

.world-grid--expanded figure:nth-child(1),
.world-grid--expanded figure:nth-child(6) {
  flex-basis: clamp(410px, 34vw, 550px);
  width: clamp(410px, 34vw, 550px);
}

.world-grid--expanded img,
.world-grid img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(470px, 64vh, 680px);
  object-fit: cover !important;
  object-position: center center !important;
  background: #080a07;
  transform: scale(1.02);
}

.world-grid--expanded figure:nth-child(1) img,
.world-grid--expanded figure:nth-child(4) img {
  object-position: center 24% !important;
}

.world-grid--expanded figure:nth-child(6) img,
.world-grid--expanded figure:nth-child(7) img {
  object-position: center 34% !important;
}

.world-grid--expanded figcaption {
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
  width: 100%;
  padding: 36px 14px 14px;
}

.world-gallery-shell {
  width: auto;
  max-width: none;
  min-height: calc(var(--gallery-scroll-distance, 900px) + clamp(620px, 82vh, 840px));
  margin: 24px 0 0;
  overflow: visible;
  padding: 0;
}

.world-gallery-viewport {
  position: sticky;
  top: calc(var(--header-h) + 18px);
  max-width: none;
  width: 100vw;
  height: clamp(620px, 82vh, 840px);
  margin: 0 calc(var(--side) * -1);
  overflow: hidden;
  border-radius: 12px;
}

.world-mini-rail {
  position: absolute;
  left: auto;
  right: 0;
  bottom: clamp(14px, 2.2vh, 24px);
  z-index: 3;
  display: flex;
  gap: 12px;
  width: max-content;
  right: 2px;
  padding-left: var(--side);
  padding-right: 0;
  transform: translate3d(var(--gallery-mini-x, 0px), 0, 0);
  will-change: transform;
  pointer-events: none;
}

.world-mini-rail figure {
  flex: 0 0 clamp(118px, 11.5vw, 176px);
  width: clamp(118px, 11.5vw, 176px);
  height: clamp(62px, 6.7vw, 96px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(247, 242, 233, 0.16);
  border-radius: 10px;
  background: #050604;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
}

.world-mini-rail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.92) contrast(1.04) brightness(0.92);
}

.has-gsap-scroll .world-gallery-shell {
  min-height: calc(var(--gallery-scroll-distance, 900px) + clamp(620px, 82vh, 840px));
}

.has-gsap-scroll .world-gallery-viewport {
  position: sticky;
  top: calc(var(--header-h) + 18px);
}

/* GSAP cutout strips: the image is viewport-locked while the page scrolls over it. */
.cinema-panorama {
  min-height: clamp(265px, 34vh, 390px);
  margin-top: clamp(46px, 5vw, 78px);
  margin-bottom: clamp(6px, 1vw, 18px);
  background:
    linear-gradient(180deg, rgba(6, 8, 6, 0.96), rgba(6, 8, 6, 0.68) 18%, rgba(6, 8, 6, 0.5) 82%, rgba(6, 8, 6, 0.96));
}

.cinema-panorama::before {
  content: "";
  position: absolute;
  inset: -1px 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 9, 7, 0.88) 0%, rgba(7, 9, 7, 0.16) 18%, rgba(7, 9, 7, 0) 50%, rgba(7, 9, 7, 0.16) 82%, rgba(7, 9, 7, 0.9) 100%),
    linear-gradient(180deg, rgba(7, 9, 7, 0.36), transparent 22%, transparent 78%, rgba(7, 9, 7, 0.4));
}

.has-gsap-scroll .cinema-panorama::after {
  z-index: 3;
}

.has-gsap-scroll .cinema-panorama > img {
  opacity: 0 !important;
}

.cutout-window-layer {
  --cutout-clip-top: 100vh;
  --cutout-clip-right: 0px;
  --cutout-clip-bottom: 0px;
  --cutout-clip-left: 0px;
  position: fixed !important;
  inset: 0 !important;
  z-index: 2;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  clip-path: inset(var(--cutout-clip-top) var(--cutout-clip-right) var(--cutout-clip-bottom) var(--cutout-clip-left));
  transition: opacity 90ms linear;
  will-change: clip-path, opacity;
}

.cutout-window-layer[data-active="true"] {
  opacity: 1;
}

.cutout-window-layer img {
  display: block;
  width: 100vw !important;
  height: 100vh !important;
  min-width: 100vw !important;
  min-height: 100vh !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  transform: translate3d(0, 0, 0) scale(1.012) !important;
  backface-visibility: hidden;
}

.cutout-window-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 9, 7, 0.88) 0%, rgba(7, 9, 7, 0.16) 18%, rgba(7, 9, 7, 0) 50%, rgba(7, 9, 7, 0.16) 82%, rgba(7, 9, 7, 0.9) 100%),
    linear-gradient(180deg, rgba(7, 9, 7, 0.36), transparent 22%, transparent 78%, rgba(7, 9, 7, 0.4));
}

.investor-section .section-grid {
  gap: clamp(32px, 6vw, 76px);
}

.investor-section .section-note {
  max-width: 620px;
}

@media (max-width: 980px) {
  .pathway-grid,
  .investor-proof-grid,
  .world-grid--expanded {
    grid-template-columns: none !important;
  }

  .world-grid--expanded figure:nth-child(1),
  .world-grid--expanded figure:nth-child(6) {
    flex-basis: clamp(255px, 48vw, 330px);
    width: clamp(255px, 48vw, 330px);
  }
}

@media (max-width: 680px) {
  .pathway-grid,
  .investor-proof-grid,
  .world-grid--expanded,
  .contact-founder-list {
    grid-template-columns: 1fr;
  }

  .world-grid--expanded figure {
    flex-basis: 78vw;
    width: 78vw;
    min-height: 360px;
  }

  .world-gallery-viewport {
    height: 410px;
  }

  .world-mini-rail {
    bottom: 10px;
  }

  .world-mini-rail figure {
    flex-basis: 112px;
    width: 112px;
    height: 62px;
  }

  .contact-founder-list article {
    grid-template-rows: 285px 1fr;
  }

  .investor-contact-cta {
    display: grid;
  }
}

/* Mobile production polish: use a composed first frame instead of shrinking the full cinematic. */
.home-mobile-hero {
  display: none;
}

@media (max-width: 760px) {
  .signature-hero--animation {
    height: auto;
    min-height: calc(100svh - var(--header-h));
    margin-top: var(--header-h);
    padding: 24px var(--side) 28px;
    background:
      linear-gradient(180deg, rgba(7, 9, 7, 0.7), rgba(7, 9, 7, 0.93) 54%, #070907 100%),
      url("Assets/Optimized/Transfiguration 360 - Disciples beneath the Cloud Panorama.jpg") center top / cover,
      linear-gradient(180deg, #070907 0%, #0b0d09 58%, #070907 100%);
  }

  .home-explainer-frame,
  .home-hero-controls,
  .home-hero-cta {
    display: none !important;
  }

  .home-mobile-hero:not([hidden]) {
    display: grid;
    gap: 14px;
  }

  .home-mobile-hero__copy {
    display: grid;
    gap: 10px;
    max-width: 520px;
    padding: 10px 0 2px;
  }

  .home-mobile-hero__copy h1 {
    max-width: 10.8ch;
    margin: 0;
    color: #f7f2e9;
    font-family: var(--font-display);
    font-size: clamp(2.36rem, 10.9vw, 3.18rem);
    font-weight: 400;
    line-height: 0.95;
  }

  .home-mobile-hero__copy p:not(.eyebrow) {
    max-width: 31rem;
    margin: 0;
    color: rgba(247, 242, 233, 0.78);
    font-size: 0.94rem;
    line-height: 1.48;
  }

  .home-mobile-hero__copy .button {
    width: max-content;
    margin-top: 4px;
  }

  .home-mobile-hero__media {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    gap: 10px;
    min-height: 218px;
    padding: 10px;
    border: 1px solid rgba(247, 242, 233, 0.12);
    border-radius: 22px;
    background: rgba(3, 4, 3, 0.58);
    backdrop-filter: blur(18px);
  }

  .home-mobile-hero__frame,
  .home-mobile-hero__pano {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(247, 242, 233, 0.14);
    background: #030403;
    box-shadow: 0 18px 58px rgba(0, 0, 0, 0.34);
  }

  .home-mobile-hero__frame img,
  .home-mobile-hero__pano img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .home-mobile-hero__frame--glo {
    aspect-ratio: 1 / 1.12;
    align-self: end;
    border-radius: 18px;
  }

  .home-mobile-hero__frame--glo img {
    clip-path: inset(0 7.4% round 18px);
  }

  .home-mobile-hero__frame--ilumina {
    aspect-ratio: 0.82 / 1;
    align-self: start;
    border-radius: 18px;
  }

  .home-mobile-hero__pano {
    grid-column: 1 / -1;
    height: 88px;
    border-radius: 16px;
  }

  .home-mobile-hero__pano img {
    object-fit: cover;
    object-position: center 46%;
    filter: saturate(0.92) contrast(1.04) brightness(0.86);
  }

  .contact-founders-clean .section-grid {
    gap: 18px;
  }

  .contact-founders-clean .body-copy {
    display: block !important;
  }

  .contact-founder-list article {
    position: relative;
    isolation: isolate;
    min-height: 560px;
    grid-template-rows: 1fr;
  }

  .contact-founder-list div {
    position: relative;
    z-index: 1;
    align-self: end;
    min-height: 58%;
    padding: 150px 20px 22px;
    color: #f8f4eb;
    background:
      linear-gradient(180deg, transparent 0%, rgba(7, 9, 7, 0.52) 20%, rgba(7, 9, 7, 0.88) 58%, rgba(7, 9, 7, 0.97) 100%);
  }

  .contact-founder-list article > img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100% !important;
    height: 100%;
    margin-left: 0;
    object-fit: cover !important;
    object-position: center 16% !important;
  }

  .contact-founder-list h3,
  .contact-founder-list h3 + p,
  .contact-founder-list .profile-link {
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.58);
  }

  .contact-founder-list p {
    display: block;
  }

  .contact-founder-list h3 + p {
    margin-top: 10px;
    color: rgba(247, 242, 233, 0.84);
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .product-proof-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
    border-radius: 16px;
  }

  .product-proof-copy h3 {
    max-width: 9.2ch;
    font-size: clamp(2.25rem, 11.5vw, 3.15rem);
  }

  .product-screens {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .product-screens figure {
    border-radius: 14px;
  }

  .product-screens figure:not(:first-child) {
    display: none;
  }

  .product-screens img,
  .product-screens figure:first-child img {
    aspect-ratio: 16 / 10;
    height: auto;
    min-height: 0;
    object-fit: cover;
    object-position: center top;
  }

  .cinema-panorama {
    min-height: clamp(210px, 54vw, 285px);
    margin-top: 38px;
    margin-bottom: 28px;
  }

  .cinema-panorama img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: clamp(210px, 54vw, 285px);
    object-fit: cover;
    object-position: center center;
    transform: scale(1.03);
    animation: epikaMobileImageDrift 18s ease-in-out infinite alternate;
  }

  .has-gsap-scroll .world-gallery-shell {
    min-height: calc(var(--gallery-scroll-distance, 720px) + 410px);
  }

  .has-gsap-scroll .world-gallery-viewport {
    position: sticky;
    top: calc(var(--header-h) + 10px);
  }

  .world-gallery-shell {
    padding-bottom: 72px;
  }
}

@media (max-width: 1080px) {
  .contact-founder-list article {
    position: relative;
    isolation: isolate;
    min-height: clamp(620px, 78vw, 720px);
    grid-template-rows: 1fr;
  }

  .contact-founder-list div {
    position: relative;
    z-index: 1;
    align-self: end;
    min-height: auto;
    padding: clamp(170px, 30vw, 230px) clamp(22px, 4vw, 34px) clamp(24px, 4vw, 34px);
    color: #f8f4eb;
    background:
      linear-gradient(180deg, transparent 0%, rgba(7, 9, 7, 0.48) 18%, rgba(7, 9, 7, 0.88) 56%, rgba(7, 9, 7, 0.97) 100%);
  }

  .contact-founder-list article > img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100% !important;
    height: 100%;
    margin-left: 0;
    object-fit: cover !important;
    object-position: center 16% !important;
  }

  .contact-founder-list h3,
  .contact-founder-list h3 + p,
  .contact-founder-list .profile-link {
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.58);
  }

  .contact-founder-list p,
  .contact-founder-list h3 + p {
    display: block;
  }

  .contact-founder-list h3 + p {
    max-height: none;
    margin-top: 10px;
    color: rgba(247, 242, 233, 0.86);
    font-size: clamp(0.94rem, 1.7vw, 1.04rem);
    line-height: 1.58;
  }
}

@keyframes epikaMobileImageDrift {
  from {
    object-position: 45% center;
    transform: scale(1.03);
  }

  to {
    object-position: 56% center;
    transform: scale(1.075);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cinema-panorama img {
    animation: none !important;
    transform: none !important;
  }
}
