:root {
  color-scheme: dark;
  --ink: #fff9ee;
  --muted: rgba(255, 249, 238, 0.66);
  --quiet: rgba(255, 249, 238, 0.36);
  --gold: #e9bd76;
  --gold-bright: #ffe2a6;
  --line: rgba(255, 226, 166, 0.2);
  --panel-border: rgba(255, 255, 255, 0.1);
  --black: #000104;
}

* {
  box-sizing: border-box;
}

html {
  background: #000;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 68% 10%, rgba(233, 189, 118, 0.12), transparent 30vw),
    #000;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

#senara-scene {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
  pointer-events: none;
  transition: filter 260ms ease, opacity 260ms ease;
}

body.is-star-flow #senara-scene {
  filter: blur(0.7px) saturate(1.24) brightness(1.16);
}

body.is-warping #senara-scene {
  filter: blur(0.45px) saturate(1.34) brightness(1.34);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 12;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: clamp(14px, 2.4vw, 30px);
  padding: clamp(18px, 3vw, 34px) clamp(22px, 4vw, 52px);
  opacity: 0;
  transform: translateY(-12px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

body.has-begun .site-header {
  opacity: 1;
  transform: translateY(0);
}

body.about-page .site-header {
  opacity: 1;
  transform: translateY(0);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(22px);
}

body.vision-page {
  background:
    radial-gradient(circle at 68% 20%, rgba(233, 189, 118, 0.1), transparent 42vw),
    #000;
}

body.vision-page #senara-scene {
  background: #000006;
}

body.vision-page {
  overflow: hidden;
}

.vision-explorer {
  position: relative;
  z-index: 2;
  min-height: 100svh;
}

.vision-explorer::before {
  position: fixed;
  inset: 0;
  z-index: 3;
  background:
    radial-gradient(circle at 26% 54%, rgba(0, 0, 4, 0.64), transparent 42%),
    linear-gradient(90deg, rgba(0, 0, 4, 0.78), rgba(0, 0, 4, 0.34) 48%, transparent 78%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 900ms ease;
}

body.vision-focused .vision-explorer::before {
  opacity: 1;
}

.vision-intro {
  position: fixed;
  left: clamp(24px, 6vw, 84px);
  top: 50%;
  z-index: 3;
  width: min(430px, calc(100vw - 48px));
  transform: translateY(-50%);
  transition: opacity 700ms ease, transform 900ms cubic-bezier(0.19, 1, 0.22, 1);
}

.vision-intro .section-number {
  position: static;
  opacity: 1;
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.vision-intro h1 {
  margin: 0;
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(5rem, 10vw, 10rem);
  font-weight: 300;
  line-height: 0.78;
  text-shadow: 0 5px 32px #000;
}

.vision-intro h1 em {
  display: block;
  color: var(--gold);
  font-style: normal;
}

.vision-intro > p:last-child {
  width: min(310px, 100%);
  margin: 34px 0 0;
  color: #fff;
  font-size: 0.76rem;
  line-height: 1.7;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow:
    0 2px 4px #000,
    0 0 14px #000,
    0 0 28px #000;
}

.vision-beacons {
  position: fixed;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.vision-beacons button {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 18px;
  border: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
  opacity: 0;
  pointer-events: auto;
  transform: translate(-50%, -50%);
  transition: opacity 350ms ease, color 250ms ease;
}

body.vision-idle:not(.vision-focused) .vision-intro,
body.vision-idle:not(.vision-focused) .site-header {
  opacity: 0;
  pointer-events: none;
}

body.vision-idle:not(.vision-focused) .vision-beacons button {
  opacity: 0 !important;
  pointer-events: none;
}

.vision-beacons button span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 8px #fff,
    0 0 22px rgba(255, 255, 255, 0.98),
    0 0 58px rgba(255, 255, 255, 0.72);
  animation: visionBeaconPulse 2.8s ease-in-out infinite;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.vision-beacons button strong {
  color: #fff;
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-shadow: 0 2px 5px #000, 0 0 14px #000, 0 0 30px #000;
  text-transform: uppercase;
}

.vision-beacons button:hover,
.vision-beacons button:focus-visible,
.vision-beacons button.is-active {
  color: #fff;
  outline: none;
}

.vision-beacons button:hover span,
.vision-beacons button:focus-visible span,
.vision-beacons button.is-active span {
  transform: scale(1.7);
  box-shadow: 0 0 12px #fff, 0 0 40px #fff, 0 0 100px rgba(255, 255, 255, 0.92);
}

.vision-detail {
  position: fixed;
  left: clamp(24px, 7vw, 110px);
  top: 50%;
  z-index: 5;
  width: min(470px, calc(100vw - 48px));
  opacity: 0;
  pointer-events: none;
  transform: translateY(-42%);
  transition: opacity 650ms ease, transform 850ms cubic-bezier(0.19, 1, 0.22, 1);
}

.vision-detail__close {
  margin-bottom: clamp(34px, 6vw, 70px);
  padding: 0 0 8px;
  border: 0;
  border-bottom: 1px solid rgba(255, 226, 166, 0.42);
  color: var(--gold);
  background: transparent;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
}

.vision-detail__number {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.vision-detail h2 {
  margin: 0;
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(4.6rem, 9vw, 9rem);
  font-weight: 300;
  line-height: 0.84;
  color: var(--ink);
  text-shadow: 0 4px 30px #000;
}

.vision-detail__copy {
  max-width: 410px;
  margin: 30px 0 0;
  color: rgba(255, 249, 238, 0.76);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.7;
  text-shadow: 0 2px 10px #000, 0 0 30px #000;
}

body.vision-focused .vision-intro {
  opacity: 0;
  pointer-events: none;
  transform: translate(-30px, -50%);
}

body.vision-focused .vision-detail {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%);
}

body.vision-focused .vision-beacons button:not(.is-active) {
  opacity: 0 !important;
  pointer-events: none;
}

@keyframes visionBeaconPulse {
  50% {
    opacity: 0.72;
    transform: scale(1.4);
  }
}

@media (max-width: 600px) {
  .vision-intro {
    left: 22px;
    top: 28%;
    width: min(310px, calc(100vw - 44px));
  }

  .vision-intro h1 {
    font-size: clamp(4.6rem, 24vw, 7rem);
  }

  .vision-intro > p:last-child {
    margin-top: 24px;
  }

  .vision-beacons button {
    gap: 6px;
    padding: 10px;
  }

  .vision-beacons button strong {
    display: block;
    max-width: 82px;
    font-size: 0.46rem;
    line-height: 1.35;
    text-align: center;
  }

  .vision-detail {
    left: 22px;
    top: 46%;
    width: calc(100vw - 44px);
  }

  .vision-detail h2 {
    max-width: 8ch;
    font-size: clamp(4rem, 19vw, 6.4rem);
  }
}

body.menu-open .site-header {
  z-index: 70;
}

.brand,
.wordmark {
  font-family: "Times New Roman", Georgia, serif;
  letter-spacing: 0.62em;
  text-decoration: none;
}

.brand {
  position: absolute;
  top: clamp(18px, 3vw, 34px);
  left: 50%;
  justify-self: center;
  font-size: clamp(0.82rem, 1.2vw, 1rem);
  color: rgba(255, 249, 238, 0.78);
  transform: translateX(-50%);
}

.ambient-audio {
  position: absolute;
  top: calc(clamp(18px, 3vw, 34px) + 42px);
  right: clamp(22px, 4vw, 52px);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 30px;
  min-width: 30px;
  min-height: 0;
  padding: 6px 0;
  border: 1px solid rgba(255, 226, 166, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(0, 0, 0, 0.54);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.34),
    0 0 26px rgba(233, 189, 118, 0.08);
  color: rgba(255, 249, 238, 0.66);
  font-size: 0.42rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  backdrop-filter: blur(18px);
}

.ambient-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 16px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  text-transform: inherit;
  letter-spacing: inherit;
  transition:
    color 220ms ease,
    text-shadow 220ms ease;
}

.ambient-toggle:hover,
.ambient-toggle:focus-visible {
  color: var(--gold-bright);
  text-shadow: 0 0 14px rgba(233, 189, 118, 0.5);
}

.ambient-action {
  color: var(--gold);
}

.ambient-link {
  display: block;
  width: 100%;
  padding-top: 4px;
  border-top: 1px solid rgba(255, 226, 166, 0.2);
  color: rgba(255, 249, 238, 0.56);
  line-height: 0.95;
  text-align: center;
  text-decoration: none;
  transition:
    color 220ms ease,
    text-shadow 220ms ease;
}

.ambient-link span {
  display: block;
}

.ambient-link:hover,
.ambient-link:focus-visible {
  color: var(--gold-bright);
  text-shadow: 0 0 14px rgba(233, 189, 118, 0.46);
}

.top-nav {
  display: flex;
  gap: clamp(12px, 1.5vw, 22px);
  color: rgba(255, 249, 238, 0.66);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.top-nav a {
  text-decoration: none;
  transition:
    color 220ms ease,
    text-shadow 220ms ease;
}

.top-nav a:hover,
.top-nav a:focus-visible {
  color: var(--gold-bright);
  text-shadow: 0 0 16px rgba(233, 189, 118, 0.55);
}

.menu-button {
  position: relative;
  z-index: 70;
  display: grid;
  gap: 7px;
  width: 30px;
  height: 30px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}

.menu-button span {
  display: block;
  height: 1px;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(233, 189, 118, 0.7);
  transform-origin: center;
  transition:
    transform 260ms ease,
    background 260ms ease;
}

body.menu-open .menu-button span:first-child {
  transform: translateY(4px) rotate(45deg);
}

body.menu-open .menu-button span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 55;
  pointer-events: none;
}

.site-menu__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: 100%;
  border: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(233, 189, 118, 0.18), transparent 28vw),
    rgba(0, 0, 0, 0.72);
  opacity: 0;
  cursor: default;
  transition: opacity 420ms ease;
}

.site-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  align-content: center;
  gap: clamp(18px, 3.2vh, 32px);
  width: min(520px, 100vw);
  min-height: 100svh;
  padding: clamp(88px, 12vh, 132px) clamp(34px, 7vw, 78px);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(28px);
  box-shadow: -38px 0 110px rgba(0, 0, 0, 0.52);
  opacity: 0;
  transform: translateX(36px);
  transition:
    opacity 420ms ease,
    transform 520ms cubic-bezier(0.19, 1, 0.22, 1);
}

body.menu-open .site-menu {
  pointer-events: auto;
}

body.menu-open .site-menu__backdrop,
body.menu-open .site-menu__panel {
  opacity: 1;
}

body.menu-open .site-menu__panel {
  transform: translateX(0);
}

.site-menu__eyebrow {
  margin: 0 0 clamp(16px, 3vh, 32px);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-menu__panel a {
  position: relative;
  width: max-content;
  color: rgba(255, 249, 238, 0.84);
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(3rem, 8vw, 5.8rem);
  font-weight: 300;
  line-height: 0.9;
  text-decoration: none;
  transition:
    color 220ms ease,
    transform 260ms ease,
    text-shadow 260ms ease;
}

.site-menu__panel a::after {
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -10px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  content: "";
  transition: right 260ms ease;
}

.site-menu__panel a:hover,
.site-menu__panel a:focus-visible,
.site-menu__panel a[aria-current="page"] {
  color: var(--gold-bright);
  text-shadow: 0 0 28px rgba(233, 189, 118, 0.28);
  transform: translateX(8px);
}

.site-menu__panel a:hover::after,
.site-menu__panel a:focus-visible::after,
.site-menu__panel a[aria-current="page"]::after {
  right: 0;
}

.site-menu__panel a.site-menu__replay {
  margin-top: clamp(12px, 2vh, 22px);
  color: rgba(255, 249, 238, 0.56);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-menu__panel a.site-menu__replay::after {
  bottom: -8px;
}

.arrival {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(233, 189, 118, 0.1), transparent 24vw),
    transparent;
  padding: 24px;
  cursor: pointer;
  pointer-events: auto;
  transition:
    opacity 900ms ease,
    visibility 900ms ease;
}

body.has-begun .arrival {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.begin {
  display: grid;
  gap: 18px;
  width: min(620px, 92vw);
  margin-top: min(42vh, 410px);
  color: var(--ink);
  text-align: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  opacity: 0;
  pointer-events: auto;
  animation: invite 2.4s ease 1s forwards;
}

.begin__line {
  color: var(--muted);
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(1.1rem, 2vw, 1.7rem);
  line-height: 1.4;
  text-wrap: balance;
}

.begin__touch {
  justify-self: center;
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.page {
  position: relative;
  z-index: 8;
  isolation: isolate;
  opacity: 0;
  transition: opacity 900ms ease;
}

body.has-begun .page {
  opacity: 1;
}

.about-shell {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  padding: clamp(112px, 13vw, 168px) clamp(22px, 5vw, 72px) 18vh;
}

.about-hero {
  position: relative;
  display: grid;
  place-items: center;
  width: min(1120px, 100%);
  min-height: 78svh;
  margin: 0 auto;
  text-align: center;
}

.about-hero .section-number {
  position: static;
  margin: 0 0 28px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.about-hero h1 {
  margin: 0;
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(5rem, 13vw, 13.5rem);
  font-weight: 300;
  line-height: 0.86;
  letter-spacing: 0;
}

.about-hero h1 em {
  display: block;
  color: var(--gold);
  font-style: normal;
}

.about-hero-copy {
  max-width: 760px;
  margin: clamp(36px, 5vw, 64px) auto 0;
  padding-bottom: 0;
}

.about-hero-copy p {
  margin: 0;
  color: rgba(255, 249, 238, 0.64);
  font-size: clamp(1.18rem, 1.8vw, 1.68rem);
  line-height: 1.48;
  text-wrap: balance;
}

.about-hero-copy p:first-child {
  color: var(--ink);
  font-size: clamp(1.56rem, 2.8vw, 3rem);
  line-height: 1.12;
}

.about-hero-copy p + p {
  margin-top: 18px;
}

.about-story {
  position: relative;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 132px) 0 0;
}

.about-block {
  position: relative;
  z-index: 2;
  width: min(780px, 100%);
  margin: 0 auto clamp(92px, 12vw, 160px);
  text-align: center;
}

.about-block.about-offset {
  margin-left: auto;
  margin-right: auto;
}

.about-kicker {
  display: block;
  margin-bottom: 28px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.about-block p,
.about-modes p,
.about-principles p,
.about-close p {
  margin: 0 0 1.05rem;
  color: rgba(255, 249, 238, 0.68);
  font-size: clamp(1.06rem, 1.35vw, 1.28rem);
  line-height: 1.68;
  text-wrap: pretty;
}

.about-statement {
  position: relative;
  z-index: 2;
  width: min(1040px, 92vw);
  margin: clamp(70px, 9vw, 130px) auto clamp(92px, 12vw, 168px);
  color: var(--gold);
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(3.6rem, 8.6vw, 9.4rem);
  font-weight: 300;
  line-height: 0.9;
  text-align: center;
  text-wrap: balance;
  text-shadow:
    0 0 44px rgba(233, 189, 118, 0.16),
    0 30px 100px rgba(0, 0, 0, 0.86);
}

.about-question {
  color: var(--ink);
}

.about-modes,
.about-principles {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 0 clamp(28px, 5vw, 86px);
  margin: 0 0 clamp(92px, 12vw, 160px);
  border-top: 1px solid rgba(255, 226, 166, 0.16);
  border-bottom: 1px solid rgba(255, 226, 166, 0.1);
}

.about-modes p,
.about-principles p {
  position: relative;
  margin: 0;
  min-height: 0;
  padding: clamp(24px, 3.2vw, 38px) clamp(10px, 2vw, 24px) clamp(24px, 3.2vw, 38px)
    clamp(48px, 5vw, 68px);
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 0;
  background:
    radial-gradient(circle at 26px 50%, rgba(255, 226, 166, 0.14), transparent 76px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045), transparent 72%);
  backdrop-filter: none;
}

.about-modes p::before,
.about-principles p::before {
  position: absolute;
  left: clamp(16px, 2vw, 26px);
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #fff7df;
  box-shadow:
    0 0 10px rgba(255, 249, 238, 0.9),
    0 0 28px rgba(233, 189, 118, 0.54);
  content: "";
  transform: translateY(-50%);
}

.about-modes p:nth-last-child(-n + 2),
.about-principles p:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.about-principles p {
  color: rgba(255, 249, 238, 0.86);
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(1.45rem, 2.2vw, 2.24rem);
  line-height: 1.14;
}

.about-principles p::before {
  width: 11px;
  height: 11px;
  background: var(--gold-bright);
  box-shadow:
    0 0 12px rgba(255, 249, 238, 0.95),
    0 0 34px rgba(233, 189, 118, 0.7);
}

.about-close {
  position: relative;
  z-index: 2;
  width: min(940px, 92vw);
  margin: clamp(70px, 9vw, 120px) auto 0;
  text-align: center;
}

.about-close p {
  margin-bottom: 0.72rem;
  font-size: clamp(1.45rem, 2.8vw, 3.2rem);
  line-height: 1.08;
  text-wrap: balance;
}

.about-close p:nth-last-child(2),
.about-close p:last-child {
  color: var(--gold);
}

body.about-page .reveal-on-scroll {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(38px);
  transition:
    opacity 1200ms ease,
    filter 1200ms ease,
    transform 1200ms cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

body.about-page .reveal-on-scroll.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.panel {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  padding: clamp(72px, 8vw, 110px) clamp(24px, 5.5vw, 78px);
  border-bottom: 1px solid var(--panel-border);
  overflow: hidden;
}

.panel::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at var(--glow-x, 74%) var(--glow-y, 72%), rgba(233, 189, 118, 0.14), transparent 33vw),
    linear-gradient(90deg, rgba(0, 0, 0, 0.8), transparent 42%, rgba(0, 0, 0, 0.42));
  opacity: var(--panel-active, 0.42);
  transition: opacity 500ms ease;
}

.section-number {
  position: absolute;
  top: clamp(22px, 3vw, 34px);
  left: clamp(22px, 3vw, 34px);
  margin: 0;
  color: rgba(255, 249, 238, 0.88);
  font-size: clamp(1rem, 1.6vw, 1.32rem);
  font-weight: 300;
  opacity: var(--panel-active, 0.72);
  text-shadow:
    0 0 18px rgba(233, 189, 118, 0.34),
    0 0 18px rgba(0, 0, 0, 0.8);
  transition:
    opacity 420ms ease,
    color 420ms ease,
    text-shadow 420ms ease;
}

.panel-copy {
  position: relative;
  z-index: 3;
  width: min(430px, 92vw);
}

.panel h1,
.panel h2 {
  margin: 0;
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(3.2rem, 7.4vw, 7.8rem);
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 0.98;
}

.panel h1 em,
.panel h2 em {
  color: var(--gold);
  font-style: normal;
}

.panel-copy p {
  max-width: 310px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(0.94rem, 1.3vw, 1.08rem);
  line-height: 1.72;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 44px;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after {
  width: 26px;
  height: 1px;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(233, 189, 118, 0.7);
  content: "";
}

.hero-quote {
  max-width: 360px;
  margin: clamp(42px, 7vh, 72px) 0 0;
  padding: 0 0 0 18px;
  border-left: 1px solid rgba(255, 226, 166, 0.34);
}

.hero-quote p {
  margin: 0;
  color: rgba(255, 249, 238, 0.62);
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(1rem, 1.55vw, 1.3rem);
  font-style: italic;
  line-height: 1.45;
}

.hero-quote cite {
  display: block;
  margin-top: 12px;
  color: var(--gold);
  font-size: 0.6rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-panel {
  display: grid;
  align-items: center;
  --glow-x: 73%;
  --glow-y: 70%;
}

.universe-panel,
.pocket-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(360px, 1.4fr);
  align-items: center;
  gap: clamp(38px, 7vw, 94px);
}

.universe-panel {
  min-height: 170svh;
}

.mission-panel {
  position: relative;
  display: block;
  min-height: 100svh;
  padding: 0;
  background: transparent;
  overflow: hidden;
}

.product-map {
  position: relative;
  z-index: 3;
  width: min(780px, 100%);
  height: min(1260px, 145svh);
  min-height: 960px;
  margin-inline: auto;
}

.constellation-family {
  position: absolute;
  z-index: 2;
  left: 50%;
  margin: 0;
  color: rgba(255, 226, 166, 0.42);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.constellation-family::before,
.constellation-family::after {
  display: inline-block;
  width: 22px;
  height: 1px;
  margin: 0 10px 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 226, 166, 0.42));
  content: "";
}

.constellation-family::after {
  background: linear-gradient(90deg, rgba(255, 226, 166, 0.42), transparent);
}

.constellation-family.family-one {
  top: 3%;
}

.constellation-family.family-two {
  top: 39%;
}

.constellation-family.family-three {
  top: 65%;
}

.constellation-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.constellation-lines path,
.final-constellation-lines path {
  fill: none;
  stroke: rgba(255, 226, 166, 0.28);
  stroke-width: 1;
  filter: drop-shadow(0 0 5px rgba(233, 189, 118, 0.32));
  vector-effect: non-scaling-stroke;
}

.star-node {
  position: absolute;
  left: var(--x);
  top: var(--y);
  display: grid;
  gap: 4px;
  width: max-content;
  max-width: 190px;
  padding: 24px 0 0;
  color: rgba(255, 249, 238, 0.64);
  text-decoration: none;
  text-align: center;
  transform: translate(-50%, 0);
}

.star-node.label-left {
  padding: 0 26px 0 0;
  text-align: right;
  transform: translate(-100%, -50%);
}

.star-node.label-right {
  padding: 0 0 0 26px;
  text-align: left;
  transform: translate(0, -50%);
}

.star-node.label-top {
  padding: 0 0 24px;
  transform: translate(-50%, -100%);
}

.star-node.label-bottom {
  padding: 24px 0 0;
  transform: translate(-50%, 0);
}

.star-core,
.star-menu-core {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #fff5d7;
  box-shadow:
    0 0 9px #fff,
    0 0 28px rgba(233, 189, 118, 0.9),
    0 0 48px rgba(233, 189, 118, 0.36);
  content: "";
}

.star-menu-core {
  left: 50%;
  top: 0;
  width: 13px;
  height: 13px;
  background: #fff7df;
  box-shadow:
    0 0 10px rgba(255, 255, 255, 0.95),
    0 0 22px rgba(233, 189, 118, 0.78),
    0 0 42px rgba(233, 189, 118, 0.28);
  transform: translateX(-50%);
}

.star-node .star-core {
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
}

.star-node.label-left .star-core {
  left: auto;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
}

.star-node.label-right .star-core {
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
}

.star-node.label-top .star-core {
  left: 50%;
  top: auto;
  bottom: 0;
  transform: translate(-50%, 50%);
}

.star-node.label-bottom .star-core {
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
}

.star-node strong {
  color: var(--ink);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.star-node small {
  color: var(--muted);
  font-size: 0.7rem;
}

.star-node.pocket {
  width: 300px;
  max-width: 300px;
}

.star-node.pocket strong {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.star-node:hover,
.star-node:focus-visible {
  color: var(--gold-bright);
}

.star-node:hover .star-core,
.star-node:focus-visible .star-core {
  transform: translate(-50%, -50%) scale(1.55);
}

.star-node.label-left:hover .star-core,
.star-node.label-left:focus-visible .star-core {
  transform: translate(50%, -50%) scale(1.55);
}

.star-node.label-right:hover .star-core,
.star-node.label-right:focus-visible .star-core {
  transform: translate(-50%, -50%) scale(1.55);
}

.star-node.label-top:hover .star-core,
.star-node.label-top:focus-visible .star-core {
  transform: translate(-50%, 50%) scale(1.55);
}

.belief-panel {
  position: relative;
  display: block;
  min-height: 600svh;
  padding: 0;
  background: transparent;
  overflow: visible;
  --glow-x: 78%;
  --glow-y: 66%;
}

.belief-panel .section-number {
  position: sticky;
  top: clamp(90px, 12vh, 132px);
  left: clamp(22px, 6vw, 92px);
  z-index: 4;
  color: var(--gold);
}

.belief-panel::before,
.belief-panel::after {
  display: none;
}

.belief-scroll {
  position: relative;
  z-index: 2;
  overflow: visible;
}

.belief-artboard {
  position: relative;
  width: 100%;
  min-height: 600svh;
  overflow: visible;
  background:
    radial-gradient(circle at 78% 64%, rgba(255, 226, 166, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.18) 42%, rgba(0, 0, 0, 0.58));
}

.belief-statements {
  position: relative;
  z-index: 3;
  display: block;
  pointer-events: none;
}

.belief-statements article {
  display: grid;
  align-content: center;
  min-height: 100svh;
  padding: clamp(110px, 14vh, 160px) clamp(24px, 8vw, 130px);
}

.belief-statements h3 {
  margin: 0;
  color: rgba(255, 249, 238, 0.88);
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(4.2rem, 11vw, 13rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 0.86;
  max-width: min(10.8ch, calc(100vw - clamp(56px, 16vw, 260px)));
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow:
    0 22px 72px rgba(0, 0, 0, 0.92),
    0 0 48px rgba(233, 189, 118, 0.08);
}

.belief-statements em {
  color: var(--gold);
  font-style: normal;
}

.belief-statements article > p {
  max-width: 420px;
  margin: clamp(28px, 4vh, 46px) 0 0;
  color: rgba(255, 249, 238, 0.58);
  font-size: clamp(1rem, 1.55vw, 1.42rem);
  line-height: 1.55;
  white-space: normal;
  text-shadow: 0 14px 38px rgba(0, 0, 0, 0.92);
}

.belief-statements article:first-child h3::after {
  display: block;
  width: clamp(58px, 8vw, 112px);
  height: 1px;
  margin-top: clamp(38px, 7vh, 72px);
  background: var(--gold);
  box-shadow: 0 0 18px rgba(233, 189, 118, 0.62);
  content: "";
}

.belief-statements article:nth-child(even) {
  padding-left: clamp(24px, 28vw, 430px);
}

.belief-statements article:nth-child(n + 4) h3,
.belief-statements article:nth-child(n + 4) p {
  margin-left: auto;
}

.belief-statements article:nth-child(4) h3,
.belief-statements article:nth-child(4) p {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

.belief-statements article:nth-child(3) h3,
.belief-statements article:nth-child(4) h3 {
  font-size: clamp(4rem, 10vw, 12rem);
}

.pocket-panel {
  grid-template-columns: minmax(240px, 0.7fr) minmax(360px, 1.45fr);
  align-items: start;
  min-height: 152svh;
}

.pocket-panel > .panel-copy {
  z-index: 5;
}

.pocket-panel > .panel-copy,
.pocket-panel > .pocket-experience {
  position: sticky;
  top: clamp(92px, 12vh, 132px);
}

.prompt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.prompt-actions button {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(233, 189, 118, 0.35);
  border-radius: 999px;
  color: rgba(255, 249, 238, 0.74);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.prompt-actions button:hover,
.prompt-actions button:focus-visible,
.prompt-actions button.is-active {
  border-color: rgba(255, 226, 166, 0.72);
  color: #2f2c1c;
  background: #ffe2a6;
}

.pocket-experience {
  position: relative;
  z-index: 3;
  display: grid;
  align-content: center;
  gap: clamp(22px, 4vh, 38px);
  justify-self: stretch;
  width: min(760px, 100%);
  min-height: min(640px, 76svh);
  padding: clamp(22px, 5vw, 58px);
  overflow: hidden;
  isolation: isolate;
  pointer-events: none;
}

.pocket-experience::before {
  position: absolute;
  inset: 12%;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 226, 166, 0.12), transparent 46%),
    radial-gradient(circle at 62% 54%, rgba(216, 241, 255, 0.08), transparent 30%);
  box-shadow:
    0 0 80px rgba(233, 189, 118, 0.12),
    inset 0 0 80px rgba(255, 249, 238, 0.04);
  content: "";
  opacity: 0.7;
  animation: sanctuaryBreath 7s ease-in-out infinite;
}

.pocket-experience::after {
  position: absolute;
  left: 50%;
  top: 17%;
  bottom: 16%;
  z-index: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 226, 166, 0.22), transparent);
  box-shadow: 0 0 30px rgba(233, 189, 118, 0.22);
  content: "";
  opacity: 0.44;
  transform: translateX(-50%);
}

.pocket-presence {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: clamp(150px, 24vw, 250px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 226, 166, 0.12);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 249, 238, 0.16), rgba(233, 189, 118, 0.05) 30%, transparent 66%);
  box-shadow:
    0 0 62px rgba(233, 189, 118, 0.12),
    inset 0 0 46px rgba(255, 249, 238, 0.03);
  opacity: 0.52;
  transform: translate(-50%, -50%);
  transition:
    opacity 700ms ease,
    transform 900ms cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 700ms ease;
}

.pocket-presence::before,
.pocket-presence::after {
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(255, 226, 166, 0.1);
  border-radius: 999px;
  content: "";
  animation: presenceOrbit 16s linear infinite;
}

.pocket-presence::after {
  inset: 31%;
  border-color: rgba(216, 241, 255, 0.12);
  animation-direction: reverse;
  animation-duration: 11s;
}

.pocket-presence span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #fff8df;
  box-shadow:
    0 0 14px rgba(255, 249, 238, 0.96),
    0 0 42px rgba(233, 189, 118, 0.72),
    0 0 90px rgba(233, 189, 118, 0.24);
  transform: translate(-50%, -50%);
}

.chat-thread {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(22px, 4vh, 34px);
  width: min(680px, 100%);
  margin-inline: auto;
}

.experience-orbit {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(255, 226, 166, 0.1);
  border-radius: 999px;
  filter: drop-shadow(0 0 20px rgba(233, 189, 118, 0.18));
  animation: slowOrbit 18s linear infinite;
}

.experience-orbit span,
.response-light span {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #fff7dd;
  box-shadow:
    0 0 10px rgba(255, 249, 238, 0.86),
    0 0 28px rgba(233, 189, 118, 0.62);
}

.experience-orbit span:nth-child(1) {
  left: 20%;
  top: 15%;
}

.experience-orbit span:nth-child(2) {
  right: 12%;
  top: 46%;
  width: 10px;
  height: 10px;
}

.experience-orbit span:nth-child(3) {
  left: 42%;
  bottom: 8%;
}

.message-card {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: end;
  gap: 12px;
  width: min(82%, 560px);
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 620ms cubic-bezier(0.19, 1, 0.22, 1),
    background 260ms ease,
    border-color 260ms ease,
    box-shadow 360ms ease;
}

.message-card--question {
  grid-template-columns: minmax(0, 1fr) 38px;
  justify-self: end;
}

.message-card--response {
  justify-self: start;
  transform: translateY(28px) scale(0.98);
}

.message-card--response.is-followup {
  margin-top: -18px;
}

.message-card--response.is-followup .chat-avatar {
  opacity: 0;
}

.message-card--question .chat-avatar {
  order: 2;
}

.message-card--question .chat-bubble {
  order: 1;
  margin-left: auto;
  border-color: rgba(194, 220, 255, 0.22);
  border-bottom-right-radius: 8px;
  color: #fffaf0;
  background:
    linear-gradient(180deg, rgba(88, 124, 166, 0.94), rgba(36, 62, 99, 0.92)),
    rgba(36, 62, 99, 0.9);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.28),
    0 0 34px rgba(126, 174, 225, 0.1);
}

.message-card--response .chat-bubble {
  border-color: rgba(255, 226, 166, 0.28);
  border-bottom-left-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 226, 166, 0.18), rgba(255, 255, 255, 0.045)),
    rgba(15, 13, 10, 0.78);
  box-shadow:
    0 18px 64px rgba(0, 0, 0, 0.34),
    0 0 52px rgba(233, 189, 118, 0.14);
}

.chat-bubble {
  width: fit-content;
  max-width: 100%;
  padding: 14px 18px 15px;
  border: 1px solid rgba(255, 226, 166, 0.18);
  border-radius: 24px;
  backdrop-filter: blur(16px);
}

.chat-avatar {
  position: relative;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 1px;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 0 26px rgba(255, 249, 238, 0.1);
}

.chat-avatar--user {
  background:
    radial-gradient(circle at 50% 31%, rgba(255, 255, 255, 0.94) 0 12%, transparent 13%),
    radial-gradient(ellipse at 50% 74%, rgba(255, 255, 255, 0.9) 0 27%, transparent 28%),
    linear-gradient(180deg, #dbe4ec, #7d8897);
}

.chat-avatar--senara {
  border: 1px solid rgba(255, 226, 166, 0.36);
  background:
    radial-gradient(circle, rgba(255, 249, 238, 0.92), rgba(233, 189, 118, 0.5) 32%, transparent 56%),
    rgba(16, 13, 9, 0.86);
}

.message-card small {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.message-card p {
  margin: 0;
  color: rgba(255, 249, 238, 0.88);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(0.98rem, 1.35vw, 1.18rem);
  line-height: 1.45;
}

.message-card--response p {
  color: rgba(255, 249, 238, 0.82);
  white-space: pre-line;
}

.response-light {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.42;
  transition: opacity 420ms ease;
}

.response-star {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #fff8dd;
  box-shadow:
    0 0 12px rgba(255, 249, 238, 0.96),
    0 0 32px rgba(233, 189, 118, 0.72),
    0 0 68px rgba(233, 189, 118, 0.3);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.4);
  transition:
    opacity 460ms ease,
    transform 620ms cubic-bezier(0.19, 1, 0.22, 1);
}

body.pocket-question-visible .message-card--question,
body.pocket-answer-visible .message-card--response.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.message-card--response.is-visible .response-star {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  animation: responseStarPulse 2.8s ease-in-out infinite;
}

.response-light span:nth-child(1) {
  left: 54%;
  top: 28%;
}

.response-light span:nth-child(2) {
  left: 72%;
  top: 62%;
  width: 5px;
  height: 5px;
}

.response-light span:nth-child(3) {
  left: 36%;
  top: 72%;
  width: 4px;
  height: 4px;
}

.response-light span:nth-child(4) {
  left: 22%;
  top: 48%;
  width: 3px;
  height: 3px;
}

.response-light span:nth-child(5) {
  right: 16%;
  top: 24%;
  width: 4px;
  height: 4px;
}

.response-light span:nth-child(6) {
  right: 24%;
  bottom: 18%;
  width: 3px;
  height: 3px;
}

.phone {
  position: relative;
  z-index: 3;
  justify-self: center;
  width: min(300px, 68vw);
  min-height: 620px;
  padding: 14px;
  border: 1px solid rgba(255, 226, 166, 0.32);
  border-radius: 38px;
  background:
    linear-gradient(180deg, #fff2d8, #f4dec0 55%, #e9c99f),
    #f4dec0;
  box-shadow:
    0 0 0 8px #111,
    0 28px 90px rgba(0, 0, 0, 0.8),
    0 0 80px rgba(233, 189, 118, 0.2);
  transform: rotate(-5deg);
  color: #261d13;
}

.phone-hero {
  min-height: 210px;
  padding: 20px 16px;
  border-radius: 30px 30px 18px 18px;
  background:
    linear-gradient(90deg, rgba(255, 242, 216, 0.95), rgba(255, 242, 216, 0.18)),
    radial-gradient(circle at 78% 42%, rgba(95, 92, 49, 0.55), transparent 16%),
    linear-gradient(145deg, #ffe6bd, #f5d4a6 64%, #b89864);
}

.phone-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
  color: #322312;
  font-size: 0.8rem;
}

.mini-mark {
  width: 26px;
  height: 26px;
  border: 1px solid #b17435;
  border-radius: 999px;
}

.phone-hero h3 {
  margin: 0;
  font-family: "Times New Roman", Georgia, serif;
  font-size: 1.65rem;
  line-height: 0.95;
}

.phone-hero p {
  max-width: 210px;
  margin: 16px 0 0;
  font-size: 0.82rem;
  line-height: 1.45;
}

.phone-card {
  display: grid;
  gap: 0;
  margin: -22px 8px 14px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 250, 240, 0.84);
  box-shadow: 0 14px 34px rgba(80, 45, 14, 0.16);
}

.phone-card article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(105, 74, 45, 0.16);
}

.phone-card article:last-child {
  border-bottom: 0;
}

.phone-card span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(177, 116, 53, 0.45);
  border-radius: 999px;
  color: #a9682c;
  font-size: 0.56rem;
}

.phone-card strong {
  display: block;
  font-size: 0.84rem;
}

.phone-card p,
.phone-response p {
  margin: 4px 0 0;
  font-size: 0.68rem;
  line-height: 1.35;
}

.phone-response {
  border: 1px solid rgba(177, 116, 53, 0.22);
  transition:
    background 260ms ease,
    border-color 260ms ease,
    box-shadow 360ms ease,
    transform 360ms cubic-bezier(0.19, 1, 0.22, 1);
}

.phone-response.is-thinking .chat-bubble,
body.pocket-responding .phone-response .chat-bubble {
  border-color: rgba(255, 226, 166, 0.56);
  background:
    linear-gradient(180deg, rgba(255, 226, 166, 0.16), rgba(255, 255, 255, 0.035)),
    rgba(0, 0, 0, 0.42);
  box-shadow:
    0 0 0 1px rgba(255, 226, 166, 0.22),
    0 18px 70px rgba(0, 0, 0, 0.38),
    0 0 78px rgba(233, 189, 118, 0.34);
  transform: translateY(-4px);
}

.phone-response.is-thinking p::after {
  display: inline-block;
  content: "...";
  color: rgba(255, 249, 238, 0.58);
  letter-spacing: 0.16em;
  animation: typingPulse 1s ease-in-out infinite;
}

.message-card.phone-response p {
  margin: 0;
  color: rgba(255, 249, 238, 0.78);
  font-size: clamp(0.9rem, 1.05vw, 1rem);
  line-height: 1.52;
  white-space: pre-line;
}

.phone-cta {
  width: calc(100% - 16px);
  min-height: 48px;
  margin: 0 8px;
  border: 0;
  border-radius: 12px;
  color: #fff8e8;
  background: linear-gradient(180deg, #80935a, #556738);
  box-shadow: 0 8px 18px rgba(64, 69, 33, 0.28);
}

body.pocket-responding .pocket-panel::before {
  opacity: 0.88;
}

body.pocket-responding .response-light {
  opacity: 1;
}

body.pocket-responding .experience-orbit {
  border-color: rgba(255, 226, 166, 0.24);
}

body.pocket-responding .pocket-presence {
  opacity: 0.86;
  box-shadow:
    0 0 92px rgba(233, 189, 118, 0.22),
    inset 0 0 62px rgba(255, 249, 238, 0.06);
  transform: translate(-50%, -50%) scale(1.08);
}

@keyframes sanctuaryBreath {
  0%,
  100% {
    opacity: 0.58;
    transform: scale(0.96);
  }

  50% {
    opacity: 0.78;
    transform: scale(1.03);
  }
}

@keyframes presenceOrbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes slowOrbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes responseStarPulse {
  0%,
  100% {
    box-shadow:
      0 0 10px rgba(255, 249, 238, 0.86),
      0 0 28px rgba(233, 189, 118, 0.58),
      0 0 54px rgba(233, 189, 118, 0.22);
  }

  50% {
    box-shadow:
      0 0 18px rgba(255, 249, 238, 1),
      0 0 44px rgba(233, 189, 118, 0.8),
      0 0 90px rgba(233, 189, 118, 0.34);
  }
}

@keyframes typingPulse {
  0%,
  100% {
    opacity: 0.38;
  }

  50% {
    opacity: 0.9;
  }
}

.mission-scroll {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.mission-scroll::-webkit-scrollbar {
  display: none;
}

.mission-artboard {
  position: relative;
  width: max(1672px, 100vw);
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 50%, rgba(233, 189, 118, 0.16), transparent 24%),
    radial-gradient(circle at 42% 68%, rgba(216, 241, 255, 0.06), transparent 22%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.12) 44%, transparent 80%);
}

.mission-artboard .section-number {
  top: 13%;
  left: 92px;
  color: var(--gold);
}

.mission-artboard .panel-copy {
  position: absolute;
  top: 27%;
  left: 92px;
  z-index: 3;
  width: 380px;
}

.mission-artboard .panel-copy h2 {
  font-size: 3.6rem;
}

.mission-timeline {
  position: absolute;
  left: 540px;
  right: 124px;
  top: 32%;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(5, minmax(160px, 1fr));
  gap: 38px;
  align-items: start;
}

.mission-timeline .mission-card {
  position: relative;
  display: block;
  min-height: 260px;
  padding-top: 64px;
  color: var(--ink);
  opacity: 0.92;
  transform: translateY(calc((var(--i, 0) - 2) * 10px));
}

.mission-timeline .mission-card::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #fff3cf;
  box-shadow:
    0 0 8px rgba(255, 249, 238, 0.62),
    0 0 18px rgba(233, 189, 118, 0.42);
  content: "";
  animation: milestonePulse 7.2s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 820ms);
}

.mission-timeline .mission-card::after {
  position: absolute;
  left: 5px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: linear-gradient(180deg, rgba(255, 226, 166, 0.42), transparent);
  content: "";
  opacity: 0.42;
}

.mission-year {
  display: block;
  color: rgba(255, 249, 238, 0.52);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mission-timeline .mission-card strong {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(1.5rem, 2.3vw, 2.25rem);
  font-weight: 300;
  line-height: 1.05;
}

.mission-timeline .mission-card p {
  max-width: 190px;
  margin: 16px 0 0;
  color: rgba(255, 249, 238, 0.58);
  font-size: 0.88rem;
  line-height: 1.65;
}

.mission-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 11px;
  height: 1px;
  background:
    linear-gradient(90deg, rgba(255, 226, 166, 0.9), rgba(255, 226, 166, 0.34), transparent),
    linear-gradient(90deg, transparent, rgba(216, 241, 255, 0.28), transparent);
  box-shadow: 0 0 28px rgba(233, 189, 118, 0.26);
}

.mission-line span {
  display: none;
}

.milestone-orbit {
  position: absolute;
  left: -11px;
  top: -7px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 226, 166, 0.16);
  border-radius: 999px;
  animation: milestoneOrbit 6.4s linear infinite;
}

.milestone-orbit::before,
.milestone-orbit::after {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #fff8e0;
  box-shadow:
    0 0 8px rgba(255, 249, 238, 0.8),
    0 0 18px rgba(233, 189, 118, 0.5);
  content: "";
}

.milestone-orbit::before {
  left: 50%;
  top: -2px;
}

.milestone-orbit::after {
  right: 2px;
  bottom: 5px;
  width: 3px;
  height: 3px;
  opacity: 0.66;
}

.mission-card:nth-child(1) {
  --i: 0;
}

.mission-card:nth-child(2) {
  --i: 1;
}

.mission-card:nth-child(3) {
  --i: 2;
}

.mission-card:nth-child(4) {
  --i: 3;
}

.mission-card:nth-child(5) {
  --i: 4;
}

@keyframes milestonePulse {
  0%,
  28%,
  100% {
    transform: scale(1);
    opacity: 0.54;
  }

  12% {
    transform: scale(1.6);
    opacity: 1;
    box-shadow:
      0 0 14px rgba(255, 249, 238, 0.92),
      0 0 36px rgba(233, 189, 118, 0.76),
      0 0 72px rgba(233, 189, 118, 0.3);
  }
}

@keyframes milestoneOrbit {
  to {
    transform: rotate(360deg);
  }
}

.logo-panel {
  display: block;
  --logo-reveal: 0;
  --logo-offset: 34px;
  min-height: 136svh;
  padding: 0;
  text-align: center;
  overflow: hidden;
}

.logo-stage {
  position: relative;
  z-index: 2;
  height: 136svh;
  min-height: 760px;
  overflow: hidden;
}

.logo-stage .section-number {
  z-index: 5;
}

.formation-copy {
  position: absolute;
  top: clamp(92px, 14vh, 148px);
  left: 50%;
  z-index: 4;
  margin: 0;
  max-width: 360px;
  color: rgba(255, 249, 238, 0.58);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-transform: uppercase;
  transform: translateX(-50%);
  transition:
    color 220ms ease,
    text-shadow 220ms ease,
    opacity 220ms ease;
}

.formation-copy.is-note-active {
  color: rgba(255, 226, 166, 0.82);
  text-shadow: 0 0 26px rgba(233, 189, 118, 0.3);
}

.bottom-logo {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: clamp(38px, 7vh, 86px);
  width: min(1120px, calc(100vw - 36px));
  opacity: var(--logo-reveal);
  pointer-events: none;
  transform: translate(-50%, var(--logo-offset));
  transition:
    opacity 180ms linear,
    transform 260ms ease-out;
}

.wordmark {
  color: #fff3df;
  font-size: clamp(4.1rem, 11vw, 11.5rem);
  line-height: 0.9;
  text-shadow:
    0 0 22px rgba(233, 189, 118, 0.16),
    0 20px 60px rgba(0, 0, 0, 0.7);
}

.tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.4vw, 34px);
  margin-top: clamp(22px, 3vw, 34px);
  color: var(--gold);
  font-size: clamp(0.8rem, 1.5vw, 1.2rem);
  letter-spacing: 0.46em;
  text-transform: uppercase;
}

.tagline span {
  width: clamp(64px, 12vw, 160px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
}

.star-menu {
  position: absolute;
  left: 50%;
  top: 41%;
  z-index: 4;
  width: min(980px, calc(100vw - 44px));
  height: min(480px, 50vh);
  transform: translate(-50%, -50%);
}

.final-constellation-lines {
  position: absolute;
  left: 50%;
  top: 41%;
  z-index: 2;
  width: min(980px, calc(100vw - 44px));
  height: min(480px, 50vh);
  overflow: visible;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

body[data-scene="logo"] .star-menu {
  position: fixed;
}

body[data-scene="logo"] .final-constellation-lines {
  position: fixed;
}

body[data-scene="logo"] .star-menu-core {
  animation: finalStarPulse 8.4s ease-in-out infinite;
}

.star-menu a:nth-child(1) .star-menu-core {
  animation-delay: 0ms;
}

.star-menu a:nth-child(2) .star-menu-core {
  animation-delay: 920ms;
}

.star-menu a:nth-child(3) .star-menu-core {
  animation-delay: 1840ms;
}

.star-menu a:nth-child(4) .star-menu-core {
  animation-delay: 2760ms;
}

.star-menu a:nth-child(5) .star-menu-core {
  animation-delay: 3680ms;
}

.star-menu a:nth-child(6) .star-menu-core {
  animation-delay: 4600ms;
}

.star-menu a {
  position: absolute;
  left: var(--x);
  top: var(--y);
  padding-top: 28px;
  color: rgba(255, 249, 238, 0.76);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  text-shadow: 0 0 14px rgba(0, 0, 0, 0.9);
  transition:
    color 240ms ease,
    transform 240ms ease,
    text-shadow 240ms ease;
}

.star-menu a:hover,
.star-menu a:focus-visible {
  color: var(--gold-bright);
  text-shadow: 0 0 22px rgba(233, 189, 118, 0.75);
  transform: translate(-50%, -50%) scale(1.05);
}

.star-menu a:hover .star-menu-core,
.star-menu a:focus-visible .star-menu-core {
  transform: translateX(-50%) scale(1.45);
}

.orbit-planet {
  position: absolute;
  left: 50%;
  top: 0;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 226, 166, 0.18);
  border-radius: 999px;
  pointer-events: none;
  transform: translate(-50%, -34%) rotate(0deg);
  transform-origin: center;
  animation: visionOrbit 6.8s linear infinite;
}

.orbit-planet::before {
  position: absolute;
  right: 1px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #d8f1ff;
  box-shadow:
    0 0 8px rgba(216, 241, 255, 0.76),
    0 0 18px rgba(233, 189, 118, 0.38);
  content: "";
  transform: translateY(-50%);
}

@keyframes visionOrbit {
  to {
    transform: translate(-50%, -34%) rotate(360deg);
  }
}

@keyframes finalStarPulse {
  0%,
  18%,
  100% {
    opacity: 0.92;
    box-shadow:
      0 0 10px rgba(255, 255, 255, 0.95),
      0 0 22px rgba(233, 189, 118, 0.78),
      0 0 42px rgba(233, 189, 118, 0.28);
  }

  7% {
    opacity: 1;
    box-shadow:
      0 0 15px rgba(255, 255, 255, 1),
      0 0 36px rgba(233, 189, 118, 0.96),
      0 0 74px rgba(233, 189, 118, 0.46);
  }
}

.skip-experience {
  position: absolute;
  right: clamp(22px, 4vw, 52px);
  bottom: clamp(22px, 4vw, 44px);
  z-index: 3;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 226, 166, 0.24);
  color: rgba(255, 249, 238, 0.48);
  background: transparent;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  animation: invite 1.5s ease 1.8s forwards;
  transition:
    color 220ms ease,
    border-color 220ms ease;
}

.skip-experience:hover,
.skip-experience:focus-visible {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.product-preview {
  position: relative;
  width: min(350px, 100%);
  margin-top: clamp(38px, 6vh, 68px);
  padding: 2px 0 4px 22px;
  border-left: 1px solid rgba(255, 226, 166, 0.34);
}

.product-preview.is-updating {
  animation: previewIn 520ms cubic-bezier(0.19, 1, 0.22, 1);
}

.product-preview__status,
.product-status {
  display: block;
  width: max-content;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-preview h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(1.75rem, 2.7vw, 2.65rem);
  font-weight: 300;
  line-height: 1;
}

.panel-copy .product-preview p {
  margin: 14px 0 0;
  color: rgba(255, 249, 238, 0.7);
  font-size: 0.82rem;
  line-height: 1.55;
}

.product-preview small {
  display: block;
  margin-top: 10px;
  color: rgba(255, 249, 238, 0.42);
  font-size: 0.7rem;
  line-height: 1.5;
}

.product-preview a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--gold-bright);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.product-preview a::after {
  width: 22px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.product-map .star-node,
.product-map .constellation-family,
.product-map .constellation-lines path {
  transition:
    opacity 420ms ease,
    filter 420ms ease,
    stroke 420ms ease;
}

.product-map[data-active-family] .star-node {
  opacity: 0.2;
  filter: saturate(0.48);
}

.product-map[data-active-family] .constellation-family {
  opacity: 0.22;
}

.product-map[data-active-family] .constellation-lines path {
  stroke: rgba(255, 226, 166, 0.08);
  filter: none;
}

.product-map[data-active-family="faith"] .star-node[data-family="faith"],
.product-map[data-active-family="connection"] .star-node[data-family="connection"],
.product-map[data-active-family="ideas"] .star-node[data-family="ideas"] {
  opacity: 0.82;
  filter: none;
}

.product-map[data-active-family="faith"] .family-one,
.product-map[data-active-family="connection"] .family-two,
.product-map[data-active-family="ideas"] .family-three {
  color: rgba(255, 226, 166, 0.76);
  opacity: 1;
}

.product-map[data-active-family="faith"] .constellation-lines path[data-family="faith"],
.product-map[data-active-family="connection"] .constellation-lines path[data-family="connection"],
.product-map[data-active-family="ideas"] .constellation-lines path[data-family="ideas"] {
  stroke: rgba(255, 226, 166, 0.42);
  filter: drop-shadow(0 0 7px rgba(233, 189, 118, 0.46));
}

.product-map[data-active-family] .star-node.is-preview-active {
  opacity: 1;
  filter: none;
}

.product-map[data-active-family] .star-node.is-preview-active .star-core {
  box-shadow:
    0 0 12px #fff,
    0 0 36px rgba(233, 189, 118, 1),
    0 0 72px rgba(233, 189, 118, 0.54);
}

.pocket-proof-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(460px, 1.25fr);
  gap: clamp(48px, 8vw, 124px);
  min-height: 100svh;
  padding: clamp(110px, 14vw, 190px) clamp(24px, 7vw, 110px);
  border-bottom: 1px solid var(--panel-border);
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 42%, rgba(233, 189, 118, 0.13), transparent 26vw),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.54));
}

.pocket-proof__intro {
  align-self: start;
}

.proof-eyebrow {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.proof-rating {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 16px;
  align-items: end;
  width: max-content;
  margin-bottom: clamp(42px, 6vw, 74px);
}

.proof-rating strong {
  grid-row: span 2;
  color: var(--gold-bright);
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(4.4rem, 8vw, 8rem);
  font-weight: 300;
  line-height: 0.76;
}

.proof-rating span {
  color: rgba(255, 249, 238, 0.52);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-rating div,
.review-item div {
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.pocket-proof__intro h2 {
  max-width: 520px;
  margin: 0;
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(3.4rem, 7vw, 7.4rem);
  font-weight: 300;
  line-height: 0.9;
  text-wrap: balance;
}

.pocket-proof__intro > p:last-child {
  max-width: 440px;
  margin: 30px 0 0;
  color: rgba(255, 249, 238, 0.58);
  line-height: 1.68;
}

.review-list {
  align-self: center;
  border-top: 1px solid rgba(255, 226, 166, 0.22);
}

.review-item {
  position: relative;
  margin: 0;
  padding: clamp(26px, 4vw, 44px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.review-item::before {
  position: absolute;
  left: -26px;
  top: clamp(34px, 5vw, 52px);
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #fff6dc;
  box-shadow:
    0 0 10px rgba(255, 249, 238, 0.86),
    0 0 30px rgba(233, 189, 118, 0.58);
  content: "";
}

.review-item strong {
  display: block;
  margin-top: 12px;
  color: rgba(255, 249, 238, 0.92);
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(1.5rem, 2.6vw, 2.55rem);
  font-weight: 300;
  line-height: 1.08;
}

.review-item p {
  max-width: 720px;
  margin: 14px 0 0;
  color: rgba(255, 249, 238, 0.62);
  font-size: 0.94rem;
  line-height: 1.62;
}

.review-item cite {
  display: block;
  margin-top: 16px;
  color: rgba(255, 249, 238, 0.4);
  font-size: 0.62rem;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pocket-proof__actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
  padding-top: clamp(22px, 4vw, 48px);
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid rgba(255, 226, 166, 0.4);
  border-radius: 0;
  color: #17120a;
  background: var(--gold-bright);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.secondary-action {
  color: rgba(255, 249, 238, 0.78);
  background: rgba(0, 0, 0, 0.4);
}

.primary-action:hover,
.primary-action:focus-visible,
.secondary-action:hover,
.secondary-action:focus-visible {
  border-color: var(--gold-bright);
  box-shadow: 0 0 34px rgba(233, 189, 118, 0.2);
}

.secondary-action:hover,
.secondary-action:focus-visible {
  color: var(--gold-bright);
  background: rgba(255, 226, 166, 0.08);
}

.final-action {
  position: absolute;
  left: 50%;
  top: 73%;
  z-index: 5;
  width: min(560px, calc(100vw - 44px));
  opacity: var(--logo-reveal);
  transform: translate(-50%, calc(var(--logo-offset) * 0.5));
  transition:
    opacity 240ms linear,
    transform 300ms ease-out;
}

.logo-panel {
  min-height: 158svh;
}

.logo-stage {
  height: 158svh;
}

.final-action p {
  margin: 0;
  color: rgba(255, 249, 238, 0.68);
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 2.8rem);
  line-height: 1.08;
  text-wrap: balance;
}

.final-action a {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  color: var(--gold-bright);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
}

.final-action a::after {
  width: 30px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.approach-process {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 44px);
  margin: 0 0 clamp(110px, 14vw, 180px);
  padding-top: 58px;
}

.approach-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 20px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 226, 166, 0.12), rgba(255, 226, 166, 0.72), rgba(255, 226, 166, 0.12));
  box-shadow: 0 0 24px rgba(233, 189, 118, 0.12);
}

.approach-step {
  position: relative;
  min-height: 230px;
  padding: 24px 8px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.42;
  transition:
    opacity 520ms ease,
    transform 620ms cubic-bezier(0.19, 1, 0.22, 1),
    border-color 520ms ease;
}

.approach-step::before {
  position: absolute;
  left: 0;
  top: -43px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #fff7df;
  box-shadow:
    0 0 8px rgba(255, 249, 238, 0.68),
    0 0 22px rgba(233, 189, 118, 0.42);
  content: "";
  transition:
    transform 520ms ease,
    box-shadow 520ms ease;
}

.approach-step span {
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.approach-step strong {
  display: block;
  margin-top: 30px;
  color: var(--ink);
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 0.95;
}

.approach-step p {
  margin: 20px 0 0;
  color: rgba(255, 249, 238, 0.56);
  font-size: 0.9rem;
  line-height: 1.62;
}

.approach-step.is-complete {
  opacity: 0.7;
}

body.about-page .approach-step.reveal-on-scroll.is-visible {
  opacity: 0.42;
}

body.about-page .approach-step.reveal-on-scroll.is-visible.is-complete {
  opacity: 0.7;
}

.approach-step.is-active,
.approach-step:hover,
.approach-step:focus-within {
  border-color: rgba(255, 226, 166, 0.46);
  opacity: 1;
  transform: translateY(-8px);
}

body.about-page .approach-step.reveal-on-scroll.is-visible.is-active,
body.about-page .approach-step.reveal-on-scroll.is-visible:hover {
  opacity: 1;
}

.approach-step.is-active::before,
.approach-step:hover::before {
  box-shadow:
    0 0 12px rgba(255, 249, 238, 0.94),
    0 0 34px rgba(233, 189, 118, 0.78),
    0 0 68px rgba(233, 189, 118, 0.3);
  transform: scale(1.55);
}

.contact-form-section {
  position: relative;
  z-index: 2;
  width: min(920px, 100%);
  margin: 0 auto clamp(110px, 14vw, 180px);
}

.contact-handoff {
  padding: clamp(38px, 6vw, 72px) 0;
  border-top: 1px solid rgba(255, 226, 166, 0.24);
  border-bottom: 1px solid rgba(255, 226, 166, 0.14);
  text-align: center;
}

.contact-handoff .about-kicker {
  margin-bottom: 20px;
}

.contact-handoff p {
  max-width: 680px;
  margin: 0 auto clamp(28px, 4vw, 44px);
  color: rgba(255, 249, 238, 0.66);
  font-size: clamp(1.08rem, 1.8vw, 1.5rem);
  line-height: 1.62;
  text-wrap: balance;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px clamp(22px, 4vw, 56px);
  padding: clamp(34px, 5vw, 62px) 0;
  border-top: 1px solid rgba(255, 226, 166, 0.24);
  border-bottom: 1px solid rgba(255, 226, 166, 0.14);
}

.contact-form label {
  display: grid;
  gap: 12px;
  color: rgba(255, 249, 238, 0.52);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-form__message,
.contact-form__footer {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 0;
  outline: none;
  color: var(--ink);
  background: transparent;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.contact-form select {
  color-scheme: dark;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 12px 28px -24px rgba(233, 189, 118, 0.9);
}

.contact-form__footer {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.contact-form__status {
  margin: 0;
  color: rgba(255, 249, 238, 0.42);
  font-size: 0.72rem;
  line-height: 1.5;
  text-align: right;
}

.product-lineup p {
  display: grid;
  align-content: center;
}

.product-status {
  margin-bottom: 8px;
  color: rgba(255, 249, 238, 0.42);
}

.product-status--available {
  color: var(--gold);
}

#my-pocket-jesus,
#planned-products,
#contact-form {
  scroll-margin-top: 120px;
}

@keyframes previewIn {
  from {
    opacity: 0.42;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.warp-tunnel {
  position: fixed;
  inset: 0;
  z-index: 60;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 249, 238, 0.22), transparent 18rem),
    radial-gradient(circle at 50% 50%, rgba(233, 189, 118, 0.1), transparent 34rem),
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.5) 100%);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.98);
  transition:
    opacity 340ms ease,
    transform 900ms ease;
}

.warp-tunnel.is-active {
  opacity: 1;
  transform: scale(1.06);
}

.warp-tunnel::before {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(120px, 22vw, 300px);
  height: clamp(120px, 22vw, 300px);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 249, 238, 0.86), rgba(255, 226, 166, 0.34) 24%, transparent 66%);
  box-shadow:
    0 0 54px rgba(255, 249, 238, 0.32),
    0 0 132px rgba(233, 189, 118, 0.3);
  content: "";
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.2);
  transition:
    opacity 520ms ease,
    transform 1200ms cubic-bezier(0.19, 1, 0.22, 1);
}

.warp-tunnel.is-active::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.25);
}

@keyframes invite {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes audioPulse {
  0%,
  100% {
    transform: scale(0.86);
  }

  50% {
    transform: scale(1.22);
  }
}

@media (max-width: 1320px) {
  .top-nav {
    display: none;
  }

  .ambient-audio {
    gap: 5px;
  }
}

@media (max-width: 980px) {
  .top-nav {
    display: none;
  }

  .site-menu__panel {
    width: 100vw;
  }

  .universe-panel,
  .pocket-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .universe-panel > .panel-copy,
  .universe-panel > .product-map,
  .pocket-panel > .panel-copy,
  .pocket-panel > .pocket-experience {
    min-width: 0;
  }

  .pocket-panel {
    align-content: center;
  }

  .belief-panel {
    padding: 0;
  }

  .belief-statements article {
    padding-inline: clamp(24px, 6vw, 70px);
  }

  .belief-statements article:nth-child(even) {
    padding-left: clamp(24px, 12vw, 118px);
  }

  .belief-statements article:nth-child(4) {
    padding-left: clamp(24px, 6vw, 70px);
  }

  .belief-statements h3,
  .belief-statements article:nth-child(3) h3,
  .belief-statements article:nth-child(4) h3 {
    max-width: min(9.8ch, calc(100vw - 56px));
    font-size: clamp(3.4rem, 9.2vw, 5.8rem);
    line-height: 0.9;
  }

  .mission-panel {
    padding: 0;
  }

  .wordmark {
    letter-spacing: 0.26em;
  }

  .tagline {
    letter-spacing: 0.24em;
  }

  .about-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-hero-copy {
    max-width: 720px;
  }

  .about-block,
  .about-block.about-offset {
    width: min(720px, 100%);
    margin-left: 0;
    margin-right: 0;
  }

  .about-modes,
  .about-principles {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
  }

  .pocket-experience {
    justify-self: center;
    min-height: min(560px, 68svh);
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 12px;
    padding-inline: 18px;
  }

  .brand {
    max-width: min(180px, 48vw);
    overflow: hidden;
    text-overflow: clip;
    white-space: nowrap;
  }

  .ambient-audio {
    right: 18px;
    width: 30px;
    min-width: 30px;
    font-size: 0.4rem;
    letter-spacing: 0.02em;
  }

  .panel {
    padding: 72px 22px;
  }

  .panel h1,
  .panel h2 {
    font-size: clamp(2.75rem, 12.5vw, 4.2rem);
  }

  .hero-panel .panel-copy {
    width: min(340px, 88vw);
  }

  .belief-panel {
    padding: 0;
  }

  .belief-statements article {
    padding: 120px 22px 86px;
  }

  .belief-statements article:nth-child(even) {
    padding-left: 22px;
  }

  .belief-statements h3,
  .belief-statements article:nth-child(3) h3,
  .belief-statements article:nth-child(4) h3 {
    max-width: min(9.4ch, calc(100vw - 44px));
    font-size: clamp(2.8rem, 13vw, 4.8rem);
    line-height: 0.94;
  }

  .belief-statements article > p {
    max-width: 300px;
  }

  .message-card {
    width: min(94%, 420px);
  }

  .chat-bubble {
    padding: 12px 15px 13px;
    border-radius: 21px;
  }

  .mission-panel {
    padding: 0;
  }

  .logo-panel {
    min-height: 124svh;
  }

  .logo-stage {
    height: 124svh;
    min-height: 720px;
  }

  .product-map {
    justify-self: center;
    width: 100%;
    max-width: 560px;
    height: min(920px, 132svh);
    min-height: 820px;
  }

  .star-node {
    max-width: 126px;
    font-size: 0.74rem;
  }

  .star-node strong {
    font-size: 0.64rem;
  }

  .star-node small {
    font-size: 0.64rem;
  }

  .star-node.pocket {
    width: min(210px, 62vw);
    max-width: min(210px, 62vw);
  }

  .product-map .star-node.label-left,
  .product-map .star-node.label-right {
    padding: 24px 0 0;
    text-align: center;
    transform: translate(-50%, 0);
  }

  .product-map .star-node.label-left .star-core,
  .product-map .star-node.label-right .star-core {
    left: 50%;
    right: auto;
    top: 0;
    transform: translate(-50%, -50%);
  }

  .product-map .star-node.label-left:hover .star-core,
  .product-map .star-node.label-left:focus-visible .star-core,
  .product-map .star-node.label-right:hover .star-core,
  .product-map .star-node.label-right:focus-visible .star-core {
    transform: translate(-50%, -50%) scale(1.55);
  }

  .product-map [data-node="aquabloom"] {
    --x: 67% !important;
  }

  .product-map [data-node="arcana-duet"] {
    --x: 72% !important;
  }

  .product-map [data-node="kinkeeper"] {
    --x: 27% !important;
  }

  .constellation-family {
    max-width: calc(100% - 28px);
    font-size: 0.5rem;
    letter-spacing: 0.16em;
    text-align: center;
    white-space: nowrap;
  }

  .constellation-family::before,
  .constellation-family::after {
    width: 12px;
    margin-inline: 7px;
  }

  .brand {
    letter-spacing: 0.38em;
  }

  .wordmark {
    font-size: clamp(3.1rem, 14vw, 4.8rem);
    letter-spacing: 0.24em;
    padding-left: 0.24em;
  }

  .bottom-logo {
    bottom: 42px;
  }

  .star-menu {
    top: 40%;
    height: 46vh;
  }

  .star-menu a {
    font-size: 0.64rem;
    letter-spacing: 0.14em;
  }

  .tagline {
    max-width: 94vw;
    gap: 12px;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
  }

  .tagline span {
    width: 34px;
  }

  .formation-copy {
    top: 92px;
    width: min(280px, calc(100vw - 44px));
    font-size: 0.68rem;
  }

  .site-menu__panel {
    padding: 92px 28px;
  }

  .about-shell {
    padding: 96px 24px;
  }

  .about-hero h1 {
    margin-top: 48px;
  }

  .about-modes,
  .about-principles {
    grid-template-columns: 1fr;
  }

  .about-modes p:nth-last-child(2),
  .about-principles p:nth-last-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  }

  .about-statement {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 980px) {
  .pocket-proof-panel {
    grid-template-columns: 1fr;
  }

  .pocket-proof__intro {
    width: min(680px, 100%);
  }

  .approach-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 72px;
  }

  .approach-line {
    display: none;
  }

  .approach-step::before {
    top: -7px;
  }
}

@media (max-width: 620px) {
  .skip-experience {
    right: 18px;
    bottom: 18px;
  }

  .universe-panel {
    min-height: auto;
  }

  .product-preview {
    margin-top: 34px;
  }

  .pocket-proof-panel {
    gap: 52px;
    padding: 100px 24px;
  }

  .review-item {
    padding-left: 18px;
  }

  .review-item::before {
    left: 0;
  }

  .pocket-proof__actions {
    display: grid;
    width: 100%;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .logo-panel {
    min-height: 150svh;
  }

  .logo-stage {
    height: 150svh;
    min-height: 880px;
  }

  .final-action {
    top: 70%;
  }

  .approach-process,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .approach-step {
    min-height: 190px;
  }

  .contact-form__message,
  .contact-form__footer {
    grid-column: auto;
  }

  .contact-form__footer {
    display: grid;
  }

  .contact-form__status {
    text-align: left;
  }
}

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

  .begin,
  .site-header,
  .arrival,
  #senara-scene {
    animation-duration: 1ms;
    transition-duration: 1ms;
  }

  body.is-star-flow #senara-scene {
    filter: none;
  }

  .warp-tunnel {
    transition-duration: 1ms;
  }

  body.about-page .reveal-on-scroll {
    opacity: 1;
    filter: none;
    transform: none;
    transition-duration: 1ms;
  }

  .site-menu__backdrop,
  .site-menu__panel,
  .menu-button span,
  .star-menu-core,
  .response-star,
  .mission-timeline .mission-card::before {
    transition-duration: 1ms;
    animation-duration: 1ms;
    animation-iteration-count: 1;
  }

  .skip-experience,
  .product-preview.is-updating,
  .approach-step {
    animation-duration: 1ms;
    transition-duration: 1ms;
  }
}
