:root {
  --ink: #06110d;
  --forest: #0a2b20;
  --forest-2: #0f3b2d;
  --gold: #f5aa1c;
  --gold-soft: #ffd36d;
  --cream: #f3f4ed;
  --mist: #d9e0d8;
  --night: #030707;
  --night-blue: #08101f;
  --white: #ffffff;
  --line-light: rgba(255, 255, 255, 0.16);
  --line-dark: rgba(6, 17, 13, 0.14);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
  --radius-lg: 2rem;
  --radius-md: 1.25rem;
  --container: 76rem;
  color-scheme: dark;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--night);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--night);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
}

body::selection {
  background: var(--gold);
  color: var(--ink);
}

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

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

button,
input,
summary {
  font: inherit;
}

button {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  transform: translateY(-180%);
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
}

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

.container {
  width: min(calc(100% - 3rem), var(--container));
  margin-inline: auto;
}

#sky-canvas {
  position: fixed;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.48;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  width: 100%;
  min-height: 5.5rem;
  padding: 0.65rem clamp(1.2rem, 4vw, 4rem);
  border-bottom: 1px solid transparent;
  transition: background 260ms ease, border-color 260ms ease, min-height 260ms ease, backdrop-filter 260ms ease;
}

.site-header.is-scrolled {
  min-height: 4.8rem;
  border-color: var(--line-light);
  background: rgba(3, 7, 7, 0.8);
  backdrop-filter: blur(18px) saturate(1.15);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 13rem;
}

.brand img {
  width: 3.7rem;
  height: 3.7rem;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.25));
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__text strong {
  font-size: 0.92rem;
  letter-spacing: 0.03em;
}

.brand__text small {
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.2vw, 2.2rem);
}

.nav-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  font-weight: 600;
  transition: color 200ms ease;
}

.nav-links a::after {
  position: absolute;
  bottom: -0.45rem;
  left: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold);
  content: "";
  transition: transform 220ms ease;
}

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

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 3.35rem;
  padding: 0.9rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, color 220ms ease;
}

.button svg {
  width: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 220ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button:hover svg,
.button:focus-visible svg {
  transform: translateX(4px);
}

.button--gold {
  background: var(--gold);
  box-shadow: 0 14px 38px rgba(245, 170, 28, 0.22);
  color: var(--ink);
}

.button--gold:hover,
.button--gold:focus-visible {
  background: var(--gold-soft);
  box-shadow: 0 18px 46px rgba(245, 170, 28, 0.32);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.button--compact {
  min-height: 2.9rem;
  padding: 0.7rem 1.1rem;
  font-size: 0.82rem;
}

.button--large {
  min-height: 3.8rem;
  padding-inline: 1.8rem;
}

.button:focus-visible,
.stage-card:focus-visible,
summary:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(245, 170, 28, 0.72);
  outline-offset: 4px;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(8rem, 12vw, 10rem) 0 2rem;
  background: var(--night);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(circle at 70% 25%, rgba(59, 92, 141, 0.2), transparent 30%),
    linear-gradient(90deg, rgba(3, 7, 7, 0.98) 0%, rgba(3, 7, 7, 0.75) 46%, rgba(3, 7, 7, 0.36) 75%, rgba(3, 7, 7, 0.76) 100%);
  content: "";
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 22%;
  background: linear-gradient(transparent, var(--night));
  content: "";
}

.hero__backdrop {
  position: absolute;
  z-index: -3;
  inset: -5%;
  background: url("assets/IMG_0632.jpeg") center 30% / cover no-repeat;
  filter: saturate(0.82) contrast(1.12) brightness(0.72);
  transform: scale(1.05);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(24rem, 0.94fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 6rem);
  min-height: 41rem;
}

.hero__copy {
  position: relative;
  z-index: 4;
  max-width: 45rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.35rem;
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  display: block;
  width: 2.5rem;
  height: 1px;
  background: currentColor;
}

.eyebrow--dark {
  color: #8c5b00;
}

.hero h1,
.section-heading h2,
.guide h2,
.prepare h2,
.final-cta h2 {
  margin: 0;
  text-wrap: balance;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 13ch;
  font-size: clamp(3.5rem, 6.7vw, 6.9rem);
}

.hero h1 em,
.final-cta h2 em {
  color: var(--gold);
  font-weight: 400;
}

.hero__lead {
  max-width: 40rem;
  margin: 1.75rem 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.2rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.4rem;
  padding: 0;
  margin: 1.8rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
  list-style: none;
}

.hero__trust li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.trust-icon {
  color: var(--gold);
}

.orbital-scene {
  position: relative;
  min-height: 39rem;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.moon-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: min(21.5rem, 70vw);
  height: 31rem;
  overflow: hidden;
  transform: translate(-50%, -50%) perspective(1000px) rotateX(calc(2deg + var(--tilt-x))) rotateY(calc(-9deg + var(--tilt-y)));
  transform-style: preserve-3d;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10rem 10rem 1.8rem 1.8rem;
  background: #000;
  box-shadow: 0 60px 100px rgba(0, 0, 0, 0.58), inset 0 0 0 8px rgba(255, 255, 255, 0.035);
  transition: transform 140ms ease-out, box-shadow 300ms ease;
}

.moon-card:hover {
  box-shadow: 0 70px 120px rgba(0, 0, 0, 0.7), 0 0 70px rgba(245, 170, 28, 0.08), inset 0 0 0 8px rgba(255, 255, 255, 0.05);
}

.moon-card::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 36%, rgba(255, 255, 255, 0.11) 46%, transparent 54%),
    linear-gradient(transparent 58%, rgba(0, 0, 0, 0.88));
  content: "";
  pointer-events: none;
}

.moon-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 64%;
}

.moon-card__scan {
  position: absolute;
  z-index: 3;
  top: -10%;
  left: 0;
  width: 100%;
  height: 18%;
  background: linear-gradient(transparent, rgba(245, 170, 28, 0.08), transparent);
  animation: scan 7s ease-in-out infinite;
}

.moon-card__meta {
  position: absolute;
  z-index: 4;
  right: 1.6rem;
  bottom: 1.55rem;
  left: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  transform: translateZ(40px);
}

.moon-card__meta span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.moon-card__meta strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
}

.orbit {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  transform-style: preserve-3d;
}

.orbit--one {
  width: 33rem;
  height: 15rem;
  transform: translate(-50%, -50%) rotate(-17deg) rotateX(66deg);
  animation: orbit-drift 16s linear infinite;
}

.orbit--two {
  width: 28rem;
  height: 28rem;
  transform: translate(-50%, -50%) rotateY(70deg) rotateZ(16deg);
  animation: orbit-drift-two 21s linear infinite reverse;
}

.orbit i {
  position: absolute;
  top: 50%;
  left: -0.3rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px var(--gold);
}

.orbit--two i:first-child {
  top: 12%;
  right: 12%;
  left: auto;
}

.orbit--two i:last-child {
  top: auto;
  bottom: 10%;
  left: 12%;
  width: 0.35rem;
  height: 0.35rem;
  background: white;
  box-shadow: 0 0 14px white;
}

.orbit-label {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(3, 7, 7, 0.56);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  backdrop-filter: blur(12px);
}

.orbit-label span {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px var(--gold);
}

.orbit-label--top {
  top: 14%;
  right: 3%;
}

.orbit-label--bottom {
  bottom: 12%;
  left: 0;
}

.constellation {
  pointer-events: none;
}

.constellation__lines {
  fill: none;
  stroke: currentColor;
  stroke-dasharray: 4 7;
  stroke-linecap: round;
  stroke-width: 0.7;
}

.constellation__stars {
  fill: currentColor;
}

.constellation__stars circle {
  animation: star-pulse 3.5s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 6px currentColor);
}

.constellation__stars circle:nth-child(2n) {
  animation-delay: -1.2s;
}

.constellation__stars circle:nth-child(3n) {
  animation-delay: -2.4s;
}

.constellation--hero {
  position: absolute;
  z-index: -1;
  top: 5%;
  right: -7%;
  width: min(52rem, 60vw);
  color: rgba(255, 255, 255, 0.26);
  transform: rotate(5deg);
}

.section {
  position: relative;
  padding: clamp(6rem, 10vw, 10rem) 0;
}

.section-heading {
  max-width: 46rem;
}

.section-heading h2,
.guide h2,
.prepare h2 {
  color: var(--ink);
  font-size: clamp(2.7rem, 5.4vw, 5rem);
}

.section-heading > p:not(.eyebrow),
.guide__copy > p,
.prepare__copy > p {
  margin: 1.5rem 0 0;
  color: rgba(6, 17, 13, 0.67);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.8;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading--light h2,
.section-heading--light > p:not(.eyebrow) {
  color: var(--white);
}

.section-heading--light > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.62);
}

.intro {
  overflow: hidden;
  background: var(--cream);
  color: var(--ink);
}

.intro::before {
  position: absolute;
  top: -20rem;
  right: -15rem;
  width: 42rem;
  height: 42rem;
  border: 1px solid rgba(10, 43, 32, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 7rem rgba(10, 43, 32, 0.025), 0 0 0 14rem rgba(10, 43, 32, 0.02);
  content: "";
}

.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(32rem, 1.18fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.signature-line {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  margin-top: 2.2rem;
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.signature-line i {
  height: 1px;
  background: rgba(6, 17, 13, 0.18);
}

.signature-line small {
  color: rgba(6, 17, 13, 0.48);
  font-size: inherit;
}

.photo-stack {
  position: relative;
  min-height: 40rem;
  perspective: 1200px;
}

.photo-stack figure {
  margin: 0;
  overflow: hidden;
  border: 0.45rem solid var(--cream);
  background: var(--ink);
  box-shadow: 0 24px 60px rgba(6, 17, 13, 0.18);
}

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

.photo-stack__main {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: absolute;
  z-index: 2;
  top: 3%;
  left: 20%;
  width: 54%;
  height: 82%;
  transform: perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) rotate(-2deg);
  border-radius: 10rem 10rem 1.5rem 1.5rem;
  transition: transform 160ms ease-out;
}

.photo-stack__main img {
  object-position: center 45%;
}

.photo-stack__main figcaption {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  left: 1.2rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(3, 7, 7, 0.52);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.photo-stack__side {
  position: absolute;
  width: 38%;
  height: 42%;
  border-radius: 1.4rem;
}

.photo-stack__side--top {
  top: 0;
  right: 0;
  transform: rotate(5deg);
}

.photo-stack__side--bottom {
  bottom: 0;
  left: 0;
  transform: rotate(-5deg);
}

.photo-stack__side--top img {
  object-position: center 35%;
}

.photo-stack__side--bottom img {
  object-position: center;
}

.photo-stack__badge {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 8%;
  display: grid;
  place-items: center;
  width: 8.5rem;
  height: 8.5rem;
  transform: rotate(8deg);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: var(--forest);
  box-shadow: 0 18px 44px rgba(6, 17, 13, 0.25);
  color: var(--white);
  text-align: center;
}

.photo-stack__badge::before {
  position: absolute;
  inset: 0.45rem;
  border: 1px dashed rgba(245, 170, 28, 0.6);
  border-radius: inherit;
  content: "";
}

.photo-stack__badge span {
  position: absolute;
  top: 1rem;
  color: var(--gold);
}

.photo-stack__badge strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.1;
}

.journey {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 16%, rgba(26, 72, 80, 0.24), transparent 34%),
    radial-gradient(circle at 88% 68%, rgba(245, 170, 28, 0.08), transparent 28%),
    var(--night-blue);
}

.journey::after {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  pointer-events: none;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

.constellation--journey {
  position: absolute;
  top: 13%;
  left: -10rem;
  width: 38rem;
  color: rgba(245, 170, 28, 0.24);
  transform: rotate(-12deg);
}

.journey .container {
  position: relative;
  z-index: 2;
}

.journey__layout {
  display: grid;
  grid-template-columns: minmax(20rem, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: clamp(3.5rem, 6vw, 5rem);
}

.stage-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.stage-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  display: grid;
  grid-template-columns: 2.4rem 1fr auto;
  align-items: center;
  gap: 1rem;
  width: 100%;
  min-height: 5.2rem;
  padding: 1rem 1.1rem;
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.035);
  text-align: left;
  cursor: pointer;
  transition: transform 140ms ease-out, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.stage-card:hover,
.stage-card.is-active {
  border-color: rgba(245, 170, 28, 0.48);
  background: rgba(245, 170, 28, 0.08);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.2);
}

.stage-card__number {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.stage-card > span:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.stage-card strong {
  font-size: 0.92rem;
}

.stage-card small {
  margin-top: 0.12rem;
  color: rgba(255, 255, 255, 0.47);
  font-size: 0.73rem;
}

.stage-card > i {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.55);
  font-style: normal;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.stage-card:hover > i,
.stage-card.is-active > i {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--ink);
}

.stage-view {
  position: sticky;
  top: 7rem;
  align-self: start;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.stage-view__image-wrap {
  position: relative;
  height: 31rem;
  overflow: hidden;
  background: #000;
}

.stage-view__image-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 45%, rgba(3, 7, 7, 0.88));
  content: "";
}

.stage-view__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 220ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.stage-view__image-wrap img.is-switching {
  opacity: 0;
  transform: scale(1.035);
}

.stage-view__index {
  position: absolute;
  z-index: 2;
  right: 1.5rem;
  bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.14);
  font-family: var(--font-display);
  font-size: 7rem;
  line-height: 1;
}

.stage-view__live {
  position: absolute;
  z-index: 3;
  top: 1.25rem;
  left: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(3, 7, 7, 0.58);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.stage-view__live i {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}

.stage-view__body {
  position: relative;
  z-index: 3;
  padding: 1.8rem 2rem 2.2rem;
}

.stage-view__body > p {
  margin: 0 0 0.65rem;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stage-view__body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 400;
  line-height: 1.1;
}

.stage-view__body > span {
  display: block;
  max-width: 38rem;
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
}

.lunar-moment {
  position: relative;
  display: grid;
  min-height: 52rem;
  overflow: hidden;
  background: #020304;
  isolation: isolate;
}

.lunar-moment__media {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.lunar-moment__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 3, 4, 0.96) 5%, rgba(2, 3, 4, 0.75) 46%, rgba(2, 3, 4, 0.22) 100%), linear-gradient(transparent 60%, rgba(2, 3, 4, 0.88));
  content: "";
}

.lunar-moment__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  filter: saturate(0.82) contrast(1.1);
}

.lunar-moment__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 7rem;
}

.lunar-moment blockquote {
  max-width: 16ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.lunar-moment blockquote em {
  color: var(--gold);
  font-weight: 400;
}

.lunar-moment__content > p:not(.eyebrow) {
  max-width: 36rem;
  margin: 1.6rem 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
}

.lunar-moment__moon {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: absolute;
  right: 2%;
  bottom: 7%;
  width: 18rem;
  height: 18rem;
  overflow: hidden;
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) rotate(8deg);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: #000;
  box-shadow: 0 0 0 1.2rem rgba(255, 255, 255, 0.025), 0 0 80px rgba(245, 170, 28, 0.08);
  transition: transform 150ms ease-out;
}

.lunar-moment__moon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 68%;
}

.pillars {
  overflow: hidden;
  background: #e8ede8;
  color: var(--ink);
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 4rem;
  perspective: 1000px;
}

.feature-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  min-height: 24rem;
  overflow: hidden;
  padding: 1.6rem;
  transform: perspective(950px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  border: 1px solid rgba(6, 17, 13, 0.14);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 20px 50px rgba(6, 17, 13, 0.06);
  transition: transform 140ms ease-out, background 260ms ease, box-shadow 260ms ease;
}

.feature-card::before {
  position: absolute;
  right: -4rem;
  bottom: -4rem;
  width: 12rem;
  height: 12rem;
  border: 1px solid rgba(6, 17, 13, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 2rem rgba(6, 17, 13, 0.025), 0 0 0 4rem rgba(6, 17, 13, 0.018);
  content: "";
  transition: transform 400ms ease;
}

.feature-card:hover {
  background: var(--forest);
  box-shadow: 0 32px 60px rgba(6, 17, 13, 0.2);
  color: var(--white);
}

.feature-card:hover::before {
  transform: scale(1.15) translate(-0.5rem, -0.5rem);
  border-color: rgba(245, 170, 28, 0.2);
  box-shadow: 0 0 0 2rem rgba(245, 170, 28, 0.035), 0 0 0 4rem rgba(245, 170, 28, 0.02);
}

.feature-card > * {
  position: relative;
  z-index: 2;
  transform: translateZ(24px);
}

.feature-card__icon {
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border: 1px solid rgba(6, 17, 13, 0.18);
  border-radius: 50%;
  color: #9a6500;
  font-size: 1.4rem;
}

.feature-card:hover .feature-card__icon {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--gold);
}

.feature-card small {
  position: absolute;
  top: 1.8rem;
  right: 1.8rem;
  color: rgba(6, 17, 13, 0.35);
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.feature-card:hover small {
  color: rgba(255, 255, 255, 0.35);
}

.feature-card h3 {
  margin: 7.5rem 0 0;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.08;
}

.feature-card p {
  margin: 1rem 0 0;
  color: rgba(6, 17, 13, 0.62);
  font-size: 0.92rem;
  line-height: 1.7;
}

.feature-card:hover p {
  color: rgba(255, 255, 255, 0.64);
}

.guide {
  overflow: hidden;
  background: var(--forest);
  color: var(--white);
}

.guide::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 46%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.025));
  content: "";
}

.constellation--guide {
  position: absolute;
  top: 6%;
  right: -6%;
  width: 38rem;
  color: rgba(245, 170, 28, 0.2);
}

.guide__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.guide__image {
  position: relative;
  min-height: 40rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 11rem 2rem 2rem 2rem;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.28);
}

.guide__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 48%, rgba(3, 7, 7, 0.78));
  content: "";
}

.guide__image img {
  width: 100%;
  height: 100%;
  min-height: 40rem;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.82) contrast(1.06);
}

.guide__image-tag {
  position: absolute;
  z-index: 2;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1rem;
  background: rgba(3, 7, 7, 0.56);
  backdrop-filter: blur(12px);
}

.guide__image-tag span {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.guide__image-tag strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
}

.guide h2 {
  color: var(--white);
}

.guide__copy > p {
  color: rgba(255, 255, 255, 0.62);
}

.guide__lead {
  color: rgba(255, 255, 255, 0.86) !important;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.55rem) !important;
  line-height: 1.55 !important;
}

.credential-list {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 2.2rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  list-style: none;
}

.credential-list li {
  display: grid;
  grid-template-columns: 2.8rem 1fr;
  gap: 0.7rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.credential-list span {
  color: var(--gold);
  font-family: var(--font-display);
}

.reviews {
  background: var(--cream);
  color: var(--ink);
}

.reviews__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.google-rating {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 0.15rem 0.7rem;
  flex: 0 0 auto;
  padding: 1rem 1.2rem;
  border: 1px solid var(--line-dark);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.62);
}

.google-rating strong {
  grid-row: span 2;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1;
}

.google-rating span {
  color: #bf7b00;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}

.google-rating small {
  color: rgba(6, 17, 13, 0.52);
  font-size: 0.68rem;
}

.reviews__track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
  perspective: 1100px;
}

.review-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  display: flex;
  flex-direction: column;
  min-height: 22rem;
  padding: 1.6rem;
  transform: perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  border: 1px solid var(--line-dark);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 20px 50px rgba(6, 17, 13, 0.05);
  transition: transform 150ms ease-out, box-shadow 250ms ease;
}

.review-card:hover {
  box-shadow: 0 28px 60px rgba(6, 17, 13, 0.12);
}

.review-card__quote {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.8;
}

.review-card > p {
  margin: 1.2rem 0 2rem;
  color: rgba(6, 17, 13, 0.74);
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.6;
}

.review-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line-dark);
}

.review-card footer strong {
  font-size: 0.84rem;
}

.review-card footer span {
  color: #bf7b00;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.prepare {
  background: #e8ede8;
  color: var(--ink);
}

.prepare__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.prepare__copy {
  position: sticky;
  top: 7rem;
  align-self: start;
}

.weather-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.25rem;
  border-radius: 1.25rem;
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 24px 50px rgba(6, 17, 13, 0.15);
}

.weather-card__icon {
  display: grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.5rem;
}

.weather-card > div > strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
}

.weather-card p {
  margin: 0.3rem 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  line-height: 1.6;
}

.prepare__accordion {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line-dark);
}

.prepare details {
  border-bottom: 1px solid var(--line-dark);
}

.prepare summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  list-style: none;
}

.prepare summary::-webkit-details-marker {
  display: none;
}

.prepare summary span {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: transform 220ms ease, background 220ms ease;
}

.prepare details[open] summary span {
  transform: rotate(45deg);
  background: var(--gold);
}

.prepare details p {
  max-width: 42rem;
  padding: 0 3rem 1.5rem 0;
  margin: -0.35rem 0 0;
  color: rgba(6, 17, 13, 0.62);
  line-height: 1.75;
}

.final-cta {
  position: relative;
  display: grid;
  min-height: 48rem;
  overflow: hidden;
  place-items: center;
  isolation: isolate;
}

.final-cta::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(circle at center, rgba(8, 16, 31, 0.22), rgba(3, 7, 7, 0.84) 72%);
  content: "";
}

.final-cta__background {
  position: absolute;
  z-index: -2;
  inset: -5%;
  background: url("assets/IMG_0632.jpeg") center 36% / cover no-repeat;
  filter: saturate(0.9) contrast(1.15) brightness(0.68);
}

.constellation--cta {
  position: absolute;
  top: 8%;
  left: 50%;
  width: min(52rem, 84vw);
  color: rgba(255, 255, 255, 0.22);
  transform: translateX(-50%);
}

.final-cta__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-block: 8rem;
  text-align: center;
}

.final-cta h2 {
  max-width: 17ch;
  font-size: clamp(3.2rem, 6.5vw, 6.6rem);
}

.final-cta__content > p:not(.eyebrow) {
  max-width: 37rem;
  margin: 1.5rem 0 2rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
}

.final-cta__content > small {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.72rem;
}

.site-footer {
  padding: 4rem 0 1.2rem;
  border-top: 1px solid var(--line-light);
  background: var(--night);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1.2fr 1fr;
  gap: 3rem;
}

.site-footer__brand img {
  width: 6rem;
  height: 6rem;
  object-fit: contain;
}

.site-footer__brand p {
  max-width: 23rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
}

.site-footer__grid > div:not(.site-footer__brand) {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.55rem;
  padding-top: 1.2rem;
}

.site-footer__grid strong {
  margin-bottom: 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__grid a,
.site-footer__grid span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
}

.site-footer__grid a:hover {
  color: var(--gold);
}

.site-footer__seal {
  padding: 1.2rem !important;
  border: 1px solid var(--line-light);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.035);
}

.site-footer__seal span {
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer__seal strong {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
}

.site-footer__seal small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.72rem;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.7rem;
}

.mobile-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

@keyframes scan {
  0%, 16% { transform: translateY(-50%); opacity: 0; }
  30%, 70% { opacity: 1; }
  84%, 100% { transform: translateY(650%); opacity: 0; }
}

@keyframes orbit-drift {
  to { transform: translate(-50%, -50%) rotate(343deg) rotateX(66deg); }
}

@keyframes orbit-drift-two {
  to { transform: translate(-50%, -50%) rotateY(70deg) rotateZ(376deg); }
}

@keyframes star-pulse {
  from { opacity: 0.28; }
  to { opacity: 1; }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .nav-links {
    display: none;
  }

  .site-header > .button {
    justify-self: end;
  }

  .hero__grid {
    grid-template-columns: 1fr minmax(20rem, 0.74fr);
  }

  .pillars__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card {
    min-height: 19rem;
  }

  .feature-card h3 {
    margin-top: 4.5rem;
  }
}

@media (max-width: 900px) {
  .hero {
    padding-top: 8.5rem;
  }

  .hero__grid {
    grid-template-columns: 1fr;
  }

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

  .orbital-scene {
    min-height: 35rem;
  }

  .intro__grid,
  .guide__grid,
  .prepare__grid {
    grid-template-columns: 1fr;
  }

  .intro__grid {
    gap: 4rem;
  }

  .journey__layout {
    grid-template-columns: 1fr;
  }

  .stage-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .stage-view,
  .prepare__copy {
    position: relative;
    top: auto;
  }

  .lunar-moment__moon {
    right: 4%;
    bottom: 5%;
    width: 13rem;
    height: 13rem;
    opacity: 0.82;
  }

  .reviews__track {
    grid-template-columns: 1fr;
  }

  .review-card {
    min-height: auto;
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 2rem), var(--container));
  }

  body {
    padding-bottom: 4.7rem;
  }

  .site-header {
    min-height: 4.8rem;
    padding: 0.5rem 1rem;
  }

  .site-header.is-scrolled {
    min-height: 4.4rem;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 3.25rem;
    height: 3.25rem;
  }

  .brand__text strong {
    font-size: 0.78rem;
  }

  .brand__text small,
  .site-header > .button {
    display: none;
  }

  .hero {
    padding-top: 7rem;
  }

  .hero__grid {
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 16vw, 5rem);
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__trust {
    display: grid;
    grid-template-columns: 1fr;
  }

  .orbital-scene {
    min-height: 31rem;
    margin-inline: -1rem;
  }

  .moon-card {
    width: 16.5rem;
    height: 25rem;
  }

  .orbit--one {
    width: 25rem;
  }

  .orbit--two {
    width: 22rem;
    height: 22rem;
  }

  .orbit-label--top {
    top: 11%;
    right: 0;
  }

  .orbit-label--bottom {
    bottom: 9%;
  }

  .section {
    padding-block: 5.5rem;
  }

  .section-heading h2,
  .guide h2,
  .prepare h2 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .signature-line {
    grid-template-columns: 1fr;
  }

  .signature-line i {
    display: none;
  }

  .photo-stack {
    min-height: 31rem;
  }

  .photo-stack__main {
    left: 15%;
    width: 66%;
  }

  .photo-stack__side {
    width: 40%;
    height: 34%;
  }

  .photo-stack__badge {
    width: 6.8rem;
    height: 6.8rem;
  }

  .stage-list {
    display: flex;
    overflow-x: auto;
    flex-direction: row;
    margin-inline: -1rem;
    padding: 0 1rem 0.8rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .stage-list::-webkit-scrollbar {
    display: none;
  }

  .stage-card {
    flex: 0 0 16.7rem;
    scroll-snap-align: center;
  }

  .stage-view__image-wrap {
    height: 25rem;
  }

  .stage-view__body {
    padding: 1.4rem;
  }

  .stage-view__index {
    font-size: 5.5rem;
  }

  .lunar-moment {
    min-height: 44rem;
  }

  .lunar-moment__media::after {
    background: linear-gradient(rgba(2, 3, 4, 0.72), rgba(2, 3, 4, 0.9));
  }

  .lunar-moment__media img {
    object-position: 58% center;
  }

  .lunar-moment blockquote {
    font-size: clamp(3rem, 14vw, 4.7rem);
  }

  .lunar-moment__moon {
    display: none;
  }

  .pillars__grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 17rem;
  }

  .guide__image,
  .guide__image img {
    min-height: 30rem;
  }

  .guide__image {
    border-radius: 7rem 1.5rem 1.5rem 1.5rem;
  }

  .guide__image-tag {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .google-rating {
    width: 100%;
  }

  .prepare details p {
    padding-right: 0;
  }

  .final-cta {
    min-height: 42rem;
  }

  .final-cta h2 {
    font-size: clamp(3rem, 14vw, 4.7rem);
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .mobile-cta {
    position: fixed;
    z-index: 120;
    right: 0.65rem;
    bottom: 0.65rem;
    left: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 3.8rem;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 1rem;
    background: rgba(245, 170, 28, 0.96);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.34);
    color: var(--ink);
    backdrop-filter: blur(14px);
  }

  .mobile-cta span {
    font-size: 0.68rem;
    font-weight: 700;
  }

  .mobile-cta strong {
    font-size: 0.82rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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