:root {
  --ink: #101d36;
  --red: #a60018;
  --red-dark: #760011;
  --gold: #f0b90b;
  --cream: #fbf3e7;
  --paper: #fffdf8;
  --green: #284d0d;
  --muted: #64708a;
  --line: rgba(16, 29, 54, 0.14);
  --shadow: 0 24px 70px rgba(16, 29, 54, 0.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a { color: inherit; }

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

.shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 243, 231, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 900; letter-spacing: .04em; }
.brand img { width: 58px; height: 58px; object-fit: contain; }
.brand span { font-size: 1.05rem; }

.nav { display: flex; align-items: center; gap: 26px; font-size: .92rem; font-weight: 750; }
.nav a { text-decoration: none; }
.nav a:hover, .nav a:focus-visible { color: var(--red); }

.nav-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 850;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.nav-cta { min-height: 42px; padding-inline: 18px; }
.button:hover, .button:focus-visible, .nav-cta:hover, .nav-cta:focus-visible { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(16,29,54,.18); }
.button.red { border-color: var(--red); background: var(--red); }
.button.ghost { background: transparent; color: var(--ink); }
.button.gold { border-color: var(--gold); background: var(--gold); color: var(--ink); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 88px;
  background:
    radial-gradient(circle at 86% 18%, rgba(240,185,11,.28), transparent 22%),
    linear-gradient(135deg, var(--cream) 0 63%, #f1e0ca 63% 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -220px;
  width: 500px;
  height: 500px;
  border: 90px solid rgba(166,0,24,.08);
  border-radius: 50%;
}

.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .92fr 1.08fr; gap: 58px; align-items: center; }
.eyebrow { margin: 0 0 14px; color: var(--red); font-size: .82rem; font-weight: 950; letter-spacing: .19em; text-transform: uppercase; }
.hero h1 { margin: 0; max-width: 700px; font-size: clamp(3.2rem, 7vw, 6.6rem); line-height: .91; letter-spacing: -.055em; }
.hero h1 span { display: block; color: var(--red); }
.hero-copy { margin: 25px 0 0; max-width: 620px; color: #33405a; font-size: clamp(1.05rem, 1.7vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.launch-note { display: flex; align-items: center; gap: 10px; margin-top: 22px; color: var(--ink); font-weight: 760; }
.launch-note::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 6px rgba(240,185,11,.18); }

.phone-stage { min-height: 650px; position: relative; }
.phone {
  position: absolute;
  overflow: hidden;
  width: 50%;
  max-width: 335px;
  aspect-ratio: 1080/1920;
  border: 10px solid var(--ink);
  border-radius: 38px;
  background: #fff;
  box-shadow: var(--shadow);
}
.phone img { width: 100%; height: 100%; object-fit: cover; }
.phone.one { top: 0; left: 3%; transform: rotate(-6deg); }
.phone.two { right: 2%; bottom: 0; transform: rotate(6deg); }
.night-card {
  position: absolute;
  z-index: 3;
  left: 29%;
  top: 40%;
  width: 52%;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(16,29,54,.96), rgba(118,0,17,.95));
  box-shadow: 0 24px 50px rgba(16,29,54,.32);
  color: #fff;
}
.night-card strong { display: block; margin-top: 4px; font-size: 1.45rem; line-height: 1.15; }
.night-card small { color: var(--gold); font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }

.section { padding: 92px 0; }
.section.white { background: var(--paper); }
.section.dark { background: var(--ink); color: #fff; }
.section-head { display: grid; grid-template-columns: 1fr .75fr; gap: 40px; align-items: end; margin-bottom: 42px; }
.section h2 { margin: 0; font-size: clamp(2.3rem, 4.8vw, 4.5rem); line-height: .98; letter-spacing: -.045em; }
.section-head p { margin: 0; color: var(--muted); font-size: 1.08rem; }
.dark .section-head p { color: #c7cfdf; }

.mood-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mood-card { min-height: 310px; display: flex; flex-direction: column; justify-content: space-between; padding: 30px; border-radius: 28px; color: #fff; overflow: hidden; position: relative; }
.mood-card::after { content: attr(data-number); position: absolute; right: 18px; bottom: -56px; color: rgba(255,255,255,.1); font-size: 12rem; font-weight: 950; line-height: 1; }
.mood-card.eat { background: var(--green); }
.mood-card.dance { background: var(--red); }
.mood-card.party { background: var(--ink); }
.mood-card h3 { position: relative; z-index: 1; margin: 0; font-size: 2.45rem; }
.mood-card p { position: relative; z-index: 1; margin: 0; max-width: 260px; color: rgba(255,255,255,.86); }
.mood-icon { position: relative; z-index: 1; width: 48px; height: 48px; border: 2px solid rgba(255,255,255,.42); border-radius: 50%; display: grid; place-items: center; font-size: 1.4rem; }

.feature-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: center; }
.feature-copy h2 { margin-bottom: 20px; }
.feature-copy > p { color: var(--muted); font-size: 1.08rem; }
.feature-list { display: grid; gap: 20px; margin-top: 30px; }
.feature-item { display: grid; grid-template-columns: 46px 1fr; gap: 15px; align-items: start; }
.feature-item b { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 14px; background: var(--ink); color: var(--gold); }
.feature-item h3 { margin: 0 0 3px; font-size: 1.07rem; }
.feature-item p { margin: 0; color: var(--muted); }

.screen-gallery { position: relative; min-height: 660px; }
.screen-shot { position: absolute; overflow: hidden; width: 50%; max-width: 320px; border-radius: 30px; border: 8px solid var(--ink); box-shadow: var(--shadow); background: #fff; }
.screen-shot:first-child { left: 0; top: 20px; transform: rotate(-4deg); }
.screen-shot:last-child { right: 0; top: 110px; transform: rotate(5deg); }

.venue-panel { display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: center; padding: 48px; border: 1px solid rgba(255,255,255,.14); border-radius: 34px; background: linear-gradient(135deg, rgba(166,0,24,.78), rgba(16,29,54,.2)); }
.venue-panel h2 { color: #fff; }
.venue-panel p { color: #dbe0eb; }
.sponsor-preview { padding: 26px; border-radius: 24px; background: var(--paper); color: var(--ink); transform: rotate(2deg); box-shadow: 0 22px 55px rgba(0,0,0,.24); }
.sponsor-label { display: inline-block; padding: 7px 12px; border-radius: 999px; background: var(--cream); color: var(--red); font-size: .75rem; font-weight: 950; letter-spacing: .1em; text-transform: uppercase; }
.sponsor-preview h3 { margin: 18px 0 2px; font-size: 1.8rem; }
.sponsor-preview .venue-name { color: var(--red); font-weight: 850; }
.venue-points { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0; }
.venue-points span { padding: 8px 13px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; color: #fff; font-size: .84rem; font-weight: 740; }

.closing { text-align: center; padding: 90px 20px; background: var(--gold); color: var(--ink); }
.closing h2 { max-width: 850px; margin: 0 auto 18px; font-size: clamp(2.7rem, 6vw, 5rem); line-height: .94; letter-spacing: -.05em; }
.closing p { margin: 0 auto 30px; max-width: 650px; font-size: 1.08rem; }

.site-footer { padding: 46px 0; background: #091328; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 40px; }
.footer-logo { width: 72px; margin-bottom: 14px; }
.footer-title { margin: 0 0 12px; color: var(--gold); font-size: .8rem; font-weight: 950; letter-spacing: .14em; text-transform: uppercase; }
.footer-links { display: grid; gap: 8px; }
.footer-links a { color: #d5dbea; text-decoration: none; }
.footer-links a:hover, .footer-links a:focus-visible { color: #fff; text-decoration: underline; }
.copyright { margin: 14px 0 0; color: #98a3b8; font-size: .88rem; }

.policy-hero { padding: 74px 0 42px; background: var(--ink); color: #fff; }
.policy-hero h1 { margin: 0; font-size: clamp(2.6rem, 6vw, 5rem); line-height: .98; letter-spacing: -.045em; }
.policy-hero p { margin: 16px 0 0; color: #c8d0df; }
.policy-layout { display: grid; grid-template-columns: 230px minmax(0, 760px); gap: 62px; align-items: start; padding: 62px 0 90px; }
.policy-nav { position: sticky; top: 112px; display: grid; gap: 9px; }
.policy-nav a { text-decoration: none; color: var(--muted); font-weight: 750; }
.policy-nav a.active, .policy-nav a:hover { color: var(--red); }
.policy-copy h2 { margin: 36px 0 10px; font-size: 1.55rem; line-height: 1.2; }
.policy-copy h2:first-child { margin-top: 0; }
.policy-copy p, .policy-copy li { color: #39465f; }
.policy-copy ul { padding-left: 22px; }
.callout { margin-top: 30px; padding: 22px 24px; border-left: 5px solid var(--gold); background: #fff; }

@media (max-width: 930px) {
  .nav a:not(.nav-cta) { display: none; }
  .hero-grid, .feature-grid, .venue-panel { grid-template-columns: 1fr; }
  .hero { padding-top: 58px; }
  .hero-copy-block { text-align: center; }
  .hero-copy, .hero h1 { margin-inline: auto; }
  .hero-actions, .launch-note { justify-content: center; }
  .phone-stage { width: min(620px, 100%); margin: 26px auto 0; }
  .section-head { grid-template-columns: 1fr; gap: 16px; }
  .screen-gallery { width: min(600px, 100%); margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .policy-layout { grid-template-columns: 1fr; gap: 30px; }
  .policy-nav { position: static; grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 680px) {
  .shell { width: min(100% - 28px, 1180px); }
  .site-header { position: static; }
  .header-inner { min-height: 72px; }
  .brand span { display: none; }
  .brand img { width: 52px; height: 52px; }
  .nav-cta { font-size: .82rem; padding-inline: 14px; }
  .hero { padding: 46px 0 60px; }
  .hero h1 { font-size: clamp(3rem, 16vw, 4.65rem); }
  .hero-actions .button { width: 100%; }
  .phone-stage { min-height: 505px; }
  .phone { width: 55%; border-width: 7px; border-radius: 28px; }
  .phone.one { left: 0; }
  .phone.two { right: 0; }
  .night-card { left: 19%; top: 42%; width: 68%; padding: 16px; }
  .night-card strong { font-size: 1.1rem; }
  .section { padding: 68px 0; }
  .mood-grid { grid-template-columns: 1fr; }
  .mood-card { min-height: 230px; }
  .screen-gallery { min-height: 530px; }
  .screen-shot { width: 55%; border-width: 6px; border-radius: 24px; }
  .venue-panel { padding: 26px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .policy-layout { padding-top: 40px; }
  .policy-nav { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

