:root {
  --ink: #f7f2e8;
  --muted: rgba(247, 242, 232, 0.72);
  --soft: rgba(247, 242, 232, 0.14);
  --line: rgba(247, 242, 232, 0.18);
  --charcoal: #061026;
  --green: #071b42;
  --navy: #040b1c;
  --blue: #07152f;
  --royal: #071b42;
  --blue-tint: #17426f;
  --teal: #78b7e6;
  --gold: #f0c455;
  --gold-soft: rgba(240, 196, 85, 0.18);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  font-synthesis: none;
  text-rendering: geometricPrecision;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 4%, rgba(23, 66, 111, 0.36), transparent 32rem),
    radial-gradient(circle at 88% 18%, rgba(240, 196, 85, 0.09), transparent 28rem),
    linear-gradient(145deg, var(--navy) 0%, var(--blue) 42%, var(--royal) 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.modal-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(247, 242, 232, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 242, 232, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent 68%);
}

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

.scroll-progress {
  position: fixed;
  z-index: 60;
  top: 0;
  left: 0;
  width: calc(var(--page-progress, 0) * 100%);
  height: 3px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--gold), #f7f2e8);
  box-shadow: 0 0 22px rgba(240, 196, 85, 0.5);
}

.cursor-glow {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  width: 380px;
  height: 380px;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0.18;
  transform: translate3d(calc(var(--cursor-x, 50vw) - 190px), calc(var(--cursor-y, 50vh) - 190px), 0);
  background: radial-gradient(circle, rgba(240, 196, 85, 0.35), rgba(23, 66, 111, 0.12) 42%, transparent 68%);
  mix-blend-mode: screen;
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-140%);
  border-radius: 999px;
  padding: 10px 14px;
  color: #061026;
  background: var(--gold);
  font-weight: 800;
  transition: transform 160ms ease;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 5vw, 72px);
  transition: background 220ms ease, border-color 220ms ease, padding 220ms ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  padding-top: 14px;
  padding-bottom: 14px;
  background: rgba(4, 11, 28, 0.82);
  border-color: rgba(247, 242, 232, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 64px;
  height: 56px;
  place-items: center;
  overflow: visible;
  border: 0;
  color: var(--gold);
  background: transparent;
  border-radius: 0;
  font-size: 13px;
  box-shadow: none;
}

.image-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.32));
}

.brand-text {
  font-size: 18px;
}

.nav-links {
  display: flex;
  gap: clamp(16px, 3vw, 36px);
  color: rgba(247, 242, 232, 0.78);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links .nav-contact {
  margin-left: 8px;
  border: 1px solid rgba(240, 196, 85, 0.42);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--gold);
}

.nav-links .nav-contact::after {
  display: none;
}

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

.nav-links a:hover::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 132px clamp(20px, 5vw, 72px) 48px;
}

.hero-bg,
.hero-overlay,
.hero-video {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transform: scale(calc(1.04 + (var(--page-progress, 0) * 0.045)));
  filter: saturate(1.02) contrast(1.05);
}

.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1524492412937-b28074a5d7da?auto=format&fit=crop&w=1200&q=65");
  background-size: cover;
  background-position: center 42%;
  transform: scale(1.04);
  opacity: 0;
  filter: saturate(1.04) contrast(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 11, 28, 0.93) 0%, rgba(7, 21, 47, 0.72) 46%, rgba(23, 66, 111, 0.28) 100%),
    linear-gradient(0deg, rgba(4, 11, 28, 1) 0%, rgba(4, 11, 28, 0) 36%),
    radial-gradient(circle at 68% 18%, rgba(240, 196, 85, 0.2), transparent 26rem),
    radial-gradient(circle at 82% 44%, rgba(23, 66, 111, 0.36), transparent 30rem);
}

.launch-rail {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: clamp(18px, 3vw, 44px);
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  color: rgba(247, 242, 232, 0.52);
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 900;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.launch-announcement {
  display: inline-grid;
  gap: 8px;
  max-width: 620px;
  margin-top: 20px;
  border: 1px solid rgba(240, 196, 85, 0.36);
  border-radius: 8px;
  padding: 16px 18px;
  background:
    linear-gradient(135deg, rgba(240, 196, 85, 0.2), rgba(23, 66, 111, 0.26)),
    rgba(4, 11, 28, 0.58);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px);
}

.launch-announcement span {
  color: var(--gold);
  font-size: clamp(22px, 3.1vw, 44px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: uppercase;
}

.launch-announcement strong {
  color: rgba(247, 242, 232, 0.82);
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 700;
  line-height: 1.35;
}

.launch-reel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(320px, 1.38fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: end;
  padding: clamp(76px, 10vw, 136px) clamp(20px, 5vw, 72px);
  border-top: 1px solid rgba(247, 242, 232, 0.12);
  background:
    radial-gradient(circle at 72% 16%, rgba(23, 66, 111, 0.36), transparent 34rem),
    radial-gradient(circle at 20% 78%, rgba(240, 196, 85, 0.09), transparent 26rem),
    linear-gradient(145deg, var(--navy), var(--blue) 58%, var(--royal));
}

.reel-copy {
  position: relative;
  z-index: 1;
  min-height: clamp(80px, 12vw, 150px);
}

.reel-copy h2 {
  margin: 12px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(38px, 5.4vw, 82px);
  line-height: 0.96;
}

.route-count {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  max-width: 520px;
  margin-top: 26px;
  border-top: 1px solid rgba(247, 242, 232, 0.16);
  border-bottom: 1px solid rgba(247, 242, 232, 0.16);
  padding: 18px 0;
}

.route-count strong {
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(52px, 6vw, 88px);
  line-height: 0.8;
}

.route-count span {
  max-width: 340px;
  color: rgba(247, 242, 232, 0.7);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.reel-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.reel-points span {
  border: 1px solid rgba(247, 242, 232, 0.15);
  border-radius: 999px;
  padding: 10px 13px;
  color: rgba(247, 242, 232, 0.72);
  background: rgba(247, 242, 232, 0.04);
  font-size: 12px;
  font-weight: 800;
}

.reel-frame {
  position: relative;
  min-height: clamp(520px, 58vw, 760px);
  overflow: hidden;
  border: 1px solid rgba(247, 242, 232, 0.14);
  border-radius: 8px;
  background: var(--blue);
  box-shadow: 0 38px 120px rgba(0, 0, 0, 0.42);
  transform: translateY(calc((0.5 - var(--motion-progress, 0.5)) * 42px)) scale(calc(0.97 + (var(--motion-progress, 0.5) * 0.03)));
  transition: transform 180ms linear;
}

.reel-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.03);
}

.reel-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(4, 11, 28, 0.92), rgba(7, 21, 47, 0.08) 58%),
    linear-gradient(90deg, rgba(4, 11, 28, 0.5), rgba(23, 66, 111, 0.1) 62%);
}

.reel-panel {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 28px;
  left: 28px;
  max-width: 560px;
}

.reel-panel span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.reel-panel strong {
  display: block;
  margin-top: 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(44px, 6vw, 94px);
  line-height: 0.9;
}

.reel-panel p {
  max-width: 480px;
  margin: 18px 0 0;
  color: rgba(247, 242, 232, 0.74);
  font-size: 17px;
  line-height: 1.6;
}

.eyebrow,
.section-kicker,
.card-label,
.contact-strip span {
  margin: 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2 {
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin: 22px 0 22px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(52px, 8vw, 112px);
  line-height: 0.92;
}

.hero-copy {
  max-width: 670px;
  margin-bottom: 34px;
  color: rgba(247, 242, 232, 0.82);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #061026;
  background: linear-gradient(135deg, #f2d58d, #b98d3d);
}

.button.secondary {
  border: 1px solid rgba(247, 242, 232, 0.42);
  color: var(--ink);
  background: rgba(247, 242, 232, 0.08);
  backdrop-filter: blur(10px);
}

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 42px;
}

.signal-row span {
  border: 1px solid rgba(247, 242, 232, 0.2);
  border-radius: 999px;
  padding: 9px 13px;
  color: rgba(247, 242, 232, 0.78);
  background: rgba(4, 11, 28, 0.34);
  font-size: 13px;
  font-weight: 700;
}

.launch-card {
  position: absolute;
  z-index: 3;
  right: clamp(20px, 5vw, 72px);
  bottom: 54px;
  width: min(360px, calc(100% - 40px));
  border: 1px solid rgba(247, 242, 232, 0.18);
  border-radius: 6px;
  padding: 22px;
  background: rgba(4, 11, 28, 0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.launch-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(240, 196, 85, 0.22), transparent 42%, rgba(23, 66, 111, 0.16));
  opacity: 0.8;
}

.launch-logo {
  width: 100%;
  height: auto;
  margin-bottom: 18px;
  border: 1px solid rgba(240, 196, 85, 0.22);
  border-radius: 6px;
  object-fit: contain;
}

.status-dot {
  display: block;
  width: 10px;
  height: 10px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 8px rgba(23, 66, 111, 0.12), 0 0 24px rgba(23, 66, 111, 0.7);
}

.card-title {
  margin: 8px 0 8px;
  font-size: 24px;
  font-weight: 800;
}

.card-copy {
  margin: 0;
  color: rgba(247, 242, 232, 0.7);
  line-height: 1.5;
}

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

.launch-stack span {
  border: 1px solid rgba(247, 242, 232, 0.12);
  border-radius: 6px;
  padding: 9px 6px;
  color: rgba(247, 242, 232, 0.72);
  background: rgba(247, 242, 232, 0.045);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.section {
  padding: clamp(72px, 11vw, 140px) clamp(20px, 5vw, 72px);
}

.intro-grid,
.model {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.7fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: start;
}

.intro h2,
.model h2,
.section-heading h2,
.partner-panel h2 {
  margin: 12px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 4.8vw, 68px);
  line-height: 1.02;
}

.intro p,
.model-copy p,
.partner-panel p {
  color: rgba(247, 242, 232, 0.72);
  font-size: 17px;
  line-height: 1.75;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-band article {
  min-height: 280px;
  padding: clamp(28px, 4vw, 52px);
  border-right: 1px solid var(--line);
  background: rgba(247, 242, 232, 0.035);
}

.feature-band article:last-child {
  border-right: 0;
}

.number {
  color: var(--gold);
  font-weight: 800;
}

.feature-band h3 {
  margin: 64px 0 12px;
  font-size: clamp(22px, 2.4vw, 32px);
}

.feature-band p {
  max-width: 340px;
  margin-bottom: 0;
  color: rgba(247, 242, 232, 0.66);
  line-height: 1.65;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 36px;
}

.route-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 340px;
  gap: 18px;
}

.route-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(247, 242, 232, 0.14);
  border-radius: 8px;
  background: var(--blue);
  transform: translateY(calc((0.5 - var(--motion-progress, 0.5)) * 28px));
  transition: transform 180ms linear, border-color 220ms ease;
}

.route-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(4, 11, 28, 0.9) 0%, rgba(7, 21, 47, 0.18) 64%),
    linear-gradient(90deg, rgba(4, 11, 28, 0.42), rgba(23, 66, 111, 0.08) 58%);
}

.route-card img {
  transform: scale(calc(1.08 - (var(--motion-progress, 0.5) * 0.035)));
  filter: saturate(1.08) contrast(1.04);
  transition: transform 220ms linear, filter 220ms ease;
}

.route-card div {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 24px;
  left: 24px;
}

.route-card p {
  margin: 0;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.route-card h3 {
  margin: 8px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 0.98;
}

.route-card span {
  display: block;
  max-width: 320px;
  margin-top: 12px;
  color: rgba(247, 242, 232, 0.7);
  line-height: 1.45;
}

.route-card:hover {
  border-color: rgba(240, 196, 85, 0.48);
  transform: translateY(calc((0.5 - var(--motion-progress, 0.5)) * 18px)) scale(1.015);
}

.goa-motion {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 8vw, 112px) clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at 18% 12%, rgba(240, 196, 85, 0.12), transparent 28rem),
    radial-gradient(circle at 82% 18%, rgba(23, 66, 111, 0.34), transparent 34rem),
    linear-gradient(180deg, var(--blue) 0%, var(--navy) 72%);
}

.goa-motion::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1512343879784-a960bf40e7f2?auto=format&fit=crop&w=1100&q=65");
  background-position: center;
  background-size: cover;
  opacity: 0.18;
  filter: saturate(1.25);
}

.goa-motion::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(4, 11, 28, 0.78), rgba(7, 21, 47, 0.08) 32%, rgba(4, 11, 28, 0.58)),
    radial-gradient(circle at 18% 76%, rgba(23, 66, 111, 0.2), transparent 24rem);
}

.goa-copy,
.goa-stage,
.goa-highlights,
.cinema-wall,
.experience-strip {
  position: relative;
  z-index: 1;
}

.goa-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(300px, 0.72fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  margin-bottom: 24px;
}

.goa-copy {
  display: block;
  margin-bottom: 0;
}

.goa-copy h2 {
  margin: 12px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 1;
}

.goa-copy p:last-child {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(247, 242, 232, 0.72);
  font-size: 16px;
  line-height: 1.6;
}

.goa-highlights {
  display: grid;
  gap: 10px;
}

.goa-highlights span {
  border: 1px solid rgba(247, 242, 232, 0.16);
  border-radius: 8px;
  padding: 16px 18px;
  color: rgba(247, 242, 232, 0.8);
  background: linear-gradient(135deg, rgba(7, 27, 66, 0.72), rgba(4, 11, 28, 0.52));
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.cinema-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(247, 242, 232, 0.14);
  border-radius: 8px;
  background: var(--blue);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  cursor: pointer;
  clip-path: inset(calc((1 - var(--motion-progress, 0)) * 12%) 0 0 0 round 8px);
  transform: translateY(calc((0.5 - var(--motion-progress, 0.5)) * 34px)) scale(1);
  transition: transform 220ms ease, border-color 220ms ease, opacity 220ms ease, clip-path 220ms ease;
}

.cinema-card.hero-film {
  min-height: 430px;
}

.cinema-card:hover,
.cinema-card:focus-visible,
.cinema-card.is-active {
  border-color: rgba(240, 196, 85, 0.5);
  transform: translateY(calc((0.5 - var(--motion-progress, 0.5)) * 20px)) scale(1.018);
}

.cinema-wall.has-active .cinema-card:not(.is-active) {
  opacity: 0.68;
}

.cinema-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(calc(1.08 - (var(--motion-progress, 0.5) * 0.04)));
  filter: saturate(1.08) contrast(1.04);
  transition: transform 220ms linear, filter 220ms ease;
}

.cinema-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(4, 11, 28, 0.92) 0%, rgba(7, 21, 47, 0.16) 62%),
    linear-gradient(90deg, rgba(4, 11, 28, 0.42), rgba(23, 66, 111, 0.08) 52%);
}

.cinema-card div {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 24px;
  left: 24px;
}

.cinema-card span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.cinema-card h3 {
  max-width: 560px;
  margin: 10px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 3.2vw, 54px);
  line-height: 1;
}

.experience-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.experience-strip article {
  border: 1px solid rgba(247, 242, 232, 0.14);
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(4, 11, 28, 0.25), rgba(4, 11, 28, 0.76)),
    var(--experience-image),
    rgba(4, 11, 28, 0.48);
  background-position: center;
  background-size: cover;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.experience-strip article:nth-child(1) {
  --experience-image: url("https://images.unsplash.com/photo-1544551763-46a013bb70d5?auto=format&fit=crop&w=700&q=65");
}

.experience-strip article:nth-child(2) {
  --experience-image: url("https://images.unsplash.com/photo-1526495124232-a04e1849168c?auto=format&fit=crop&w=700&q=65");
}

.experience-strip article:nth-child(3) {
  --experience-image: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=700&q=65");
}

.experience-strip span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.experience-strip h3 {
  margin: 10px 0 10px;
  font-size: 24px;
}

.experience-strip p {
  margin-bottom: 0;
  color: rgba(247, 242, 232, 0.68);
  line-height: 1.6;
}

.model {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 8%, rgba(23, 66, 111, 0.26), transparent 28rem),
    linear-gradient(135deg, rgba(240, 196, 85, 0.08), transparent 45%),
    rgba(7, 21, 47, 0.44);
}

.model-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(4, 11, 28, 0.36);
  box-shadow: var(--shadow);
}

.model-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}

.model-list div:last-child {
  border-bottom: 0;
}

.model-list span {
  color: rgba(247, 242, 232, 0.68);
}

.model-list strong {
  text-align: right;
  color: var(--ink);
}

.commitments {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
  padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 84% 12%, rgba(23, 66, 111, 0.3), transparent 28rem),
    linear-gradient(135deg, rgba(240, 196, 85, 0.11), transparent 48%),
    var(--navy);
}

.commitments h2 {
  margin: 12px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: 1.04;
}

.commitments ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.commitments li {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 18px 18px 48px;
  background: rgba(247, 242, 232, 0.04);
  color: rgba(247, 242, 232, 0.84);
  font-weight: 800;
}

.commitments li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 18px;
  width: 12px;
  height: 12px;
  transform: translateY(-50%) rotate(45deg);
  border: 1px solid var(--gold);
  background: rgba(240, 196, 85, 0.16);
}

.readiness {
  background:
    radial-gradient(circle at 80% 10%, rgba(23, 66, 111, 0.32), transparent 30rem),
    linear-gradient(180deg, var(--blue), var(--royal));
}

.readiness-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.readiness-grid article {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: rgba(247, 242, 232, 0.035);
}

.readiness-grid span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.readiness-grid h3 {
  margin: 76px 0 12px;
  font-size: 24px;
}

.readiness-grid p {
  margin-bottom: 0;
  color: rgba(247, 242, 232, 0.66);
  line-height: 1.65;
}

.partner-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 720px;
}

.partner-image {
  background-image:
    linear-gradient(0deg, rgba(4, 11, 28, 0.2), rgba(4, 11, 28, 0.2)),
    url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1000&q=65");
  background-size: cover;
  background-position: center;
}

.partner-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(52px, 7vw, 96px);
  background:
    radial-gradient(circle at 80% 18%, rgba(23, 66, 111, 0.28), transparent 28rem),
    var(--navy);
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: rgba(247, 242, 232, 0.04);
}

.contact-strip a {
  color: var(--ink);
  font-weight: 800;
}

.venue {
  text-align: center;
  background:
    radial-gradient(circle at 50% 20%, rgba(240, 196, 85, 0.12), transparent 28rem),
    radial-gradient(circle at 82% 18%, rgba(23, 66, 111, 0.3), transparent 30rem),
    var(--blue);
}

.venue h2 {
  max-width: 880px;
  margin: 14px auto 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
}

.venue address {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(247, 242, 232, 0.76);
  font-style: normal;
  line-height: 1.8;
}

.site-footer {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 36px;
  padding: 44px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--navy);
}

.footer-brand {
  margin-bottom: 18px;
}

.site-footer p {
  margin-bottom: 0;
  color: rgba(247, 242, 232, 0.66);
  line-height: 1.65;
}

.legal-note {
  font-size: 13px;
}

.cinema-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 60px);
  background: rgba(3, 8, 10, 0.88);
  backdrop-filter: blur(20px);
}

.cinema-modal[hidden] {
  display: none;
}

.modal-shell {
  width: min(1120px, 100%);
}

.modal-video {
  width: 100%;
  max-height: 76vh;
  border: 1px solid rgba(247, 242, 232, 0.16);
  border-radius: 8px;
  background: #000;
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.55);
}

.modal-title {
  margin: 16px 0 0;
  color: rgba(247, 242, 232, 0.78);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.modal-close {
  position: absolute;
  top: clamp(18px, 4vw, 38px);
  right: clamp(18px, 4vw, 38px);
  border: 1px solid rgba(240, 196, 85, 0.42);
  border-radius: 999px;
  padding: 11px 16px;
  color: var(--gold);
  background: rgba(4, 11, 28, 0.76);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

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

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

@media (max-width: 980px) {
  .launch-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 44px;
  }

  .hero {
    align-items: center;
    padding-bottom: 40px;
  }

  .intro-grid,
  .model,
  .commitments,
  .launch-reel,
  .partner-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

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

  .feature-band article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-band article:last-child {
    border-bottom: 0;
  }

  .feature-band h3 {
    margin-top: 30px;
  }

  .route-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 340px;
  }

  .goa-stage {
    grid-template-columns: 1fr;
  }

  .experience-strip {
    grid-template-columns: 1fr;
  }

  .cinema-wall {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .cinema-card.hero-film,
  .cinema-card {
    min-height: 420px;
  }

  .partner-image {
    min-height: 360px;
  }

  .launch-rail {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 18px;
  }

  .nav-links {
    display: none;
  }

  .brand-mark {
    width: 54px;
    height: 48px;
  }

  .hero {
    min-height: 94svh;
    padding-top: 116px;
  }

  .launch-announcement {
    width: 100%;
  }

  .reel-frame {
    min-height: 420px;
  }

  .reel-panel {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  h1 {
    font-size: clamp(48px, 16vw, 72px);
  }

  .button {
    width: 100%;
  }

  .launch-card {
    padding: 16px;
  }

  .signal-row span {
    width: 100%;
    text-align: center;
  }

  .route-wall {
    grid-template-columns: 1fr;
  }

  .route-card {
    min-height: 340px;
  }

  .cinema-card.hero-film,
  .cinema-card {
    min-height: 340px;
  }

  .model-list div,
  .contact-strip {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .readiness-grid article {
    min-height: 220px;
  }

  .readiness-grid h3 {
    margin-top: 46px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-bg {
    animation: slowDrift 18s ease-in-out infinite alternate;
  }

  .route-card img {
    transition: transform 700ms ease;
  }

  .route-card:hover img {
    transform: scale(1.06);
  }
}

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

  .hero-bg,
  .hero-video,
  .route-card img,
  .cinema-card,
  .reel-frame,
  .button {
    animation: none !important;
    transition: none !important;
  }

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

@keyframes slowDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.09) translate3d(-1.5%, 1%, 0);
  }
}
