:root {
  --ink: #05061d;
  --night: #07083c;
  --blue: #17268f;
  --white: #fffaf8;
  --muted: rgba(255,255,255,.68);
  --pink: #ff4d9d;
  --cyan: #56b9ff;
  --yellow: #fff36c;
  --green: #5ee29f;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--white);
  background: var(--ink);
  font-family: "DM Sans", system-ui, sans-serif;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 100; padding: 10px 14px; background: #fff; color: #080824; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 88px;
  padding: 0 clamp(22px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background .35s ease, height .35s ease, border-color .35s ease;
}
.site-header.scrolled { height: 72px; background: rgba(5,6,29,.84); backdrop-filter: blur(18px); border-color: rgba(255,255,255,.1); }
.brand-mark { width: 154px; filter: drop-shadow(0 0 12px rgba(99,181,255,.35)); }
.desktop-nav { display: none; }
.desktop-nav a { position: relative; }
.desktop-nav a::after { content:""; position:absolute; left:0; right:100%; bottom:-7px; height:1px; background:#fff; transition:right .25s; }
.desktop-nav a:hover::after { right:0; }
.desktop-nav a[aria-current="page"]::after { right:0; background:linear-gradient(90deg,var(--pink),var(--cyan)); height:2px; }
.nav-cta { display:none; }
.nav-cta:hover { background:#fff; color:var(--ink); transform:translateY(-2px); }
.nav-cta span, .button span { margin-left: 8px; }
.menu-toggle { display:flex; align-items:center; gap:13px; position:relative; z-index:70; border:1px solid rgba(255,255,255,.36); border-radius:100px; background:rgba(8,8,38,.26); color:#fff; padding:11px 16px; cursor:pointer; backdrop-filter:blur(10px); transition:background .25s,border-color .25s,transform .25s; }
.menu-toggle::before { content:"Menu"; font:700 .86rem "Manrope"; letter-spacing:.02em; }
.menu-toggle:hover { background:#fff;color:#090928;border-color:#fff;transform:translateY(-2px); }
.menu-toggle span { display:block; width:22px; height:1.5px; background:currentColor; transition:.25s; }
.menu-toggle span + span { position:absolute; right:16px; top:22px; transform:translateY(6px); }
.menu-toggle[aria-expanded="true"]::before { content:"Close"; }
.menu-toggle[aria-expanded="true"] span:first-of-type { transform:rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-of-type { transform:rotate(-45deg); }
.mobile-menu { display:grid; position:fixed; inset:0; z-index:40; background:radial-gradient(circle at 78% 22%,rgba(255,75,158,.28),transparent 25%),radial-gradient(circle at 20% 75%,rgba(61,150,255,.25),transparent 32%),rgba(5,6,29,.98); backdrop-filter:blur(22px); place-items:center; opacity:0; visibility:hidden; transition:opacity .35s,visibility .35s; }
.mobile-menu::before { content:"Great Lines Fireworks"; position:absolute; left:clamp(24px,6vw,90px); bottom:42px; color:rgba(255,255,255,.48); font-size:.76rem; letter-spacing:.18em; text-transform:uppercase; }
.mobile-menu.open { opacity:1; visibility:visible; }
.mobile-menu nav { width:min(900px,88vw); display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:clamp(12px,2vw,22px); }
.mobile-menu nav a { position:relative; display:flex; align-items:center; min-height:105px; padding:24px clamp(24px,4vw,42px); border:1px solid rgba(255,255,255,.14); border-radius:18px; background:rgba(255,255,255,.045); font:700 clamp(1.35rem,2.6vw,2.4rem) "Manrope"; letter-spacing:-.04em; transition:background .25s,border-color .25s,transform .25s; }
.mobile-menu nav a::after { content:"↗"; margin-left:auto; font-size:.8em; color:#80cbff; }
.mobile-menu nav a:hover,.mobile-menu nav a[aria-current="page"] { background:linear-gradient(120deg,rgba(255,77,157,.24),rgba(74,161,255,.16)); border-color:rgba(255,255,255,.38); transform:translateY(-3px); }

.hero { min-height: 118svh; position: relative; display: grid; place-items: center; isolation:isolate; overflow:hidden; padding: 130px 22px 100px; }
.hero::before { content:""; position:absolute; inset:0; z-index:-2; background:linear-gradient(180deg, rgba(2,3,25,.22) 0%, rgba(6,8,51,.08) 48%, rgba(4,5,29,.85) 100%); }
.hero-background { position:absolute; inset:0; z-index:-3; background:url("assets/great-lines-bg.jpg") center 68%/cover no-repeat; transform:scale(1.035); animation: heroIn 2.2s cubic-bezier(.2,.8,.2,1) forwards; }
@keyframes heroIn { from { transform:scale(1.12); filter:brightness(.55); } to { transform:scale(1.035); filter:brightness(.92); } }
.aurora { position:absolute; z-index:-1; border-radius:50%; filter:blur(90px); opacity:.28; mix-blend-mode:screen; pointer-events:none; }
.aurora-one { width:50vw; height:26vw; top:0; left:-10%; background:#542eff; animation:drift 9s ease-in-out infinite alternate; }
.aurora-two { width:38vw; height:28vw; top:10%; right:-8%; background:#ff3b9d; animation:drift 12s ease-in-out infinite alternate-reverse; }
@keyframes drift { to { transform:translate(8vw, 4vh) scale(1.18); opacity:.4; } }
.spark-canvas { position:absolute; inset:0; width:100%; height:100%; z-index:-1; pointer-events:none; mix-blend-mode:screen; }
.hero-content { width:min(1240px, 94vw); text-align:center; display:flex; flex-direction:column; align-items:center; }
.eyebrow, .section-kicker { margin:0; text-transform:uppercase; letter-spacing:.2em; font-size:.8rem; font-weight:700; }
.hero .eyebrow { color:#fff38a;font:800 clamp(2.5rem,4.8vw,4.9rem)/.95 "Manrope";letter-spacing:-.055em;text-transform:none;text-shadow:0 0 18px rgba(255,243,138,.62),0 0 45px rgba(255,80,160,.38); }
.logo-stage { width:min(860px, 82vw); position:relative; margin:18px auto 16px; isolation:isolate; }
.logo-stage::before { content:""; position:absolute; inset:7% 2%; z-index:-1; border-radius:45%; background:linear-gradient(90deg,#ff3a9d 0%,#7144ff 24%,#36baff 44%,#ffec69 70%,#55e49c 100%); filter:blur(34px); opacity:.42; animation:neonBreath 3.8s ease-in-out infinite; }
.logo-stage::after { content:""; position:absolute; inset:0; z-index:3; pointer-events:none; background:linear-gradient(112deg,transparent 24%,rgba(255,255,255,.08) 38%,rgba(255,255,255,.95) 49%,rgba(255,255,255,.12) 58%,transparent 72%); background-size:220% 100%; background-position:155% 0; -webkit-mask:url("assets/great-lines-logo.png") center/contain no-repeat; mask:url("assets/great-lines-logo.png") center/contain no-repeat; mix-blend-mode:screen; animation:logoSheen 5.2s cubic-bezier(.4,0,.2,1) infinite; }
.logo-stage img { position:relative; z-index:2; width:100%; filter:brightness(1.08) saturate(1.2) contrast(1.03) drop-shadow(0 0 2px rgba(255,255,255,1)) drop-shadow(0 0 10px rgba(105,196,255,.95)) drop-shadow(0 0 24px rgba(104,79,255,.8)) drop-shadow(0 0 50px rgba(255,55,151,.55)); animation:pulseGlow 3.8s ease-in-out infinite; }
.logo-glow { position:absolute; inset:13% 5%; z-index:0; background:linear-gradient(90deg,#f5479f,#654dff 28%,#54baff 48%,#fff269 72%,#65e5a5); opacity:.58; filter:blur(58px); border-radius:50%; animation:glowField 3.8s ease-in-out infinite reverse; }
@keyframes pulseGlow { 50% { filter:brightness(1.14) saturate(1.32) contrast(1.04) drop-shadow(0 0 3px rgba(255,255,255,1)) drop-shadow(0 0 15px rgba(91,194,255,1)) drop-shadow(0 0 36px rgba(112,71,255,.9)) drop-shadow(0 0 72px rgba(255,55,151,.7)); transform:scale(1.012); } }
@keyframes glowField { 50% { opacity:.8; transform:scale(1.09); filter:blur(74px); } }
@keyframes neonBreath { 50% { opacity:.68; transform:scale(1.025); } }
@keyframes logoSheen { 0%,22% { background-position:155% 0;opacity:0; } 36% { opacity:1; } 58%,100% { background-position:-65% 0;opacity:0; } }
.hero-copy { max-width:1160px; margin:18px 0 0; font:700 clamp(2.5rem,4.7vw,5.25rem)/1.02 "Manrope"; letter-spacing:-.06em; color:#fff; text-wrap:balance; text-shadow:0 5px 30px rgba(4,5,35,.82); }
.hero-actions { display:flex; align-items:center; gap:26px; margin-top:28px; }
.hero-actions .button-primary { min-width:280px; }
.button { display:inline-flex; align-items:center; justify-content:center; min-height:52px; padding:0 22px; border-radius:100px; font-size:.86rem; font-weight:700; transition:transform .25s ease, box-shadow .25s ease, background .25s ease; }
.button-primary { color:#090928; background:linear-gradient(100deg,#fff 0%,#fff9c2 100%); box-shadow:0 10px 35px rgba(255,244,109,.18); }
.button:hover { transform:translateY(-3px); box-shadow:0 16px 42px rgba(255,244,109,.28); }
.text-link { font-size:.86rem; font-weight:600; border-bottom:1px solid rgba(255,255,255,.4); padding:10px 0 6px; }
.text-link span { margin-left:8px; }
.hero-schedule { width:min(940px,92vw);display:grid;grid-template-columns:repeat(3,1fr);margin-top:clamp(30px,5vh,58px);border-top:1px solid rgba(255,255,255,.3);border-bottom:1px solid rgba(255,255,255,.3);background:rgba(5,6,29,.22);backdrop-filter:blur(9px); }
.hero-schedule > div { min-height:100px;padding:18px clamp(15px,2.5vw,34px);display:flex;align-items:center;justify-content:center;gap:13px;border-right:1px solid rgba(255,255,255,.24); }
.hero-schedule > div:last-child { border-right:0; }
.hero-schedule span { font:700 clamp(.78rem,1vw,.95rem) "Manrope";text-transform:uppercase;letter-spacing:.08em;color:rgba(255,255,255,.72); }
.hero-schedule strong { font:800 clamp(2rem,3.6vw,4.2rem)/1 "Manrope";letter-spacing:-.07em;color:#fff;text-shadow:0 0 22px rgba(94,189,255,.64),0 0 42px rgba(255,77,157,.34);white-space:nowrap; }
.hero-schedule > div:nth-child(2) strong { color:#fff588; }
.hero-schedule > div:nth-child(3) strong { color:#8dd4ff; }
.scroll-cue { position:absolute; right:clamp(22px,4vw,64px); bottom:28px; width:30px; height:48px; border:1px solid rgba(255,255,255,.35); border-radius:20px; }
.scroll-cue span { position:absolute; left:50%; top:9px; width:3px; height:7px; border-radius:3px; background:#fff; transform:translateX(-50%); animation:scrollCue 1.8s infinite; }
@keyframes scrollCue { 0%{opacity:0;transform:translate(-50%,0)} 30%{opacity:1} 100%{opacity:0;transform:translate(-50%,18px)} }

.section { padding:clamp(90px,12vw,180px) clamp(22px,7vw,110px); }
.intro { background:linear-gradient(180deg,#060720 0%,#0b0b35 100%); }
.section-kicker { color:#9ab6ff; margin-bottom:36px; }
.intro-grid { display:grid; grid-template-columns:1.25fr .75fr; gap:clamp(50px,9vw,150px); align-items:end; }
.display-title, .plan h2, .updates h2 { margin:0; font:800 clamp(3.5rem,8.6vw,9.3rem)/.87 "Manrope",sans-serif; letter-spacing:-.075em; }
.display-title em, .plan h2 em, .updates h2 em { font-style:normal; color:transparent; -webkit-text-stroke:1.4px rgba(255,255,255,.72); }
.intro-copy { max-width:510px; padding-bottom:10px; }
.intro-copy p { margin:0 0 24px; font-size:clamp(1.1rem,1.75vw,1.45rem); line-height:1.55; }
.intro-copy .muted { font-size:1rem; color:var(--muted); }
.feature-strip { margin-top:clamp(80px,10vw,140px); border-top:1px solid rgba(255,255,255,.16); display:grid; grid-template-columns:repeat(3,1fr); }
.feature-strip article { display:block; padding:34px 34px 20px 0; border-right:1px solid rgba(255,255,255,.16); }
.feature-strip article + article { padding-left:34px; }
.feature-strip article:last-child { border-right:0; }
.feature-number { color:#ff76b4; font:700 .72rem "Manrope"; }
.feature-strip h3 { margin:0 0 12px; font:700 clamp(1.35rem,1.8vw,1.7rem) "Manrope"; letter-spacing:-.03em; }
.feature-strip p { margin:0; color:var(--muted); font-size:.91rem; line-height:1.55; }

.marquee { overflow:hidden; background:#ff4c9b; color:#090928; transform:rotate(-1.5deg) scale(1.02); box-shadow:0 0 45px rgba(255,76,155,.25); }
.marquee-track { width:max-content; display:flex; align-items:center; gap:32px; padding:19px 0; animation:marquee 24s linear infinite; font:800 clamp(1.4rem,2.6vw,2.8rem) "Manrope"; letter-spacing:-.04em; }
.marquee-track b { font-size:.8em; }
@keyframes marquee { to { transform:translateX(-50%); } }

.film-section { background:#0b0b35;padding-top:clamp(90px,10vw,140px);padding-bottom:clamp(45px,7vw,90px); }
.film-frame { min-height:min(78vh,760px);position:relative;isolation:isolate;overflow:hidden;border-radius:30px;display:flex;align-items:flex-end;padding:clamp(34px,7vw,95px);box-shadow:0 34px 90px rgba(0,0,0,.32);background:#10124a; }
.event-film { position:absolute;inset:0;z-index:-3;width:100%;height:100%;object-fit:cover;object-position:center 65%;filter:saturate(1.15) brightness(.74); }
.film-wash { position:absolute;inset:0;z-index:-2;background:linear-gradient(90deg,rgba(5,6,29,.9) 0%,rgba(5,6,29,.52) 54%,rgba(5,6,29,.12) 100%),linear-gradient(0deg,rgba(5,6,29,.62),transparent 58%); }
.film-frame::after { content:"";position:absolute;z-index:-1;width:38vw;height:38vw;right:-8vw;top:-12vw;border-radius:50%;background:radial-gradient(circle,rgba(255,81,158,.34),transparent 64%);animation:drift 10s ease-in-out infinite alternate; }
.film-copy { max-width:690px; }
.film-copy .eyebrow { margin-bottom:24px;color:#92d4ff; }
.film-copy h2 { margin:0;font:800 clamp(3.7rem,7.6vw,8.4rem)/.86 "Manrope";letter-spacing:-.078em; }
.film-copy h2 em { font-style:normal;color:transparent;-webkit-text-stroke:1.5px rgba(255,255,255,.76); }
.film-copy > p:not(.eyebrow) { max-width:590px;margin:28px 0;color:rgba(255,255,255,.8);font-size:1.08rem;line-height:1.65; }

.plan { background:#0b0b35; }
.plan-panel { min-height:610px; border-radius:32px; overflow:hidden; display:grid; grid-template-columns:1fr 1fr; background:linear-gradient(135deg,#7047ed 0%,#ff4e9f 50%,#ffb56b 100%); box-shadow:0 40px 100px rgba(0,0,0,.28); }
.plan-copy { padding:clamp(40px,7vw,100px); align-self:center; }
.plan-copy .section-kicker { color:#190a42; margin-bottom:28px; }
.plan h2 { font-size:clamp(3rem,6.3vw,7rem); }
.plan h2 em { -webkit-text-stroke-color:rgba(10,7,42,.65); }
.plan-copy p { max-width:500px; margin:28px 0; font-size:1.08rem; line-height:1.6; color:rgba(11,8,45,.78); }
.button-light { background:#090928; color:#fff; }
.plan-visual { position:relative; min-height:500px; overflow:hidden; background:#06072c; }
.plan-visual img { position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center;filter:saturate(1.16) contrast(1.05);transition:transform .8s ease; }
.plan-panel:hover .plan-visual img { transform:scale(1.035); }
.plan-visual::after { content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(73,38,173,.5),transparent 34%),linear-gradient(0deg,rgba(4,5,31,.34),transparent 45%);pointer-events:none; }

.updates { min-height:80vh; display:grid; place-items:center; text-align:center; background:url("assets/arrival-fireworks.webp") center 48%/cover no-repeat; position:relative; overflow:hidden; }
.updates::before { content:""; position:absolute; inset:0; background:linear-gradient(180deg,rgba(5,6,29,.58),rgba(5,6,29,.82)),radial-gradient(circle at 50% 35%,rgba(20,36,118,.16),rgba(3,4,24,.65) 72%); }
.updates-inner { position:relative; z-index:1; max-width:850px; }
.updates .eyebrow { color:#87c6ff; margin-bottom:25px; }
.updates h2 { font-size:clamp(4rem,9vw,9rem); }
.updates p:not(.eyebrow) { max-width:620px; margin:34px auto 28px; color:var(--muted); font-size:1.05rem; line-height:1.7; }

footer { min-height:160px; display:grid; grid-template-columns:1fr auto 1fr; gap:25px; align-items:center; padding:35px clamp(22px,5vw,75px); border-top:1px solid rgba(255,255,255,.12); background:#05061d; font-size:.78rem; color:rgba(255,255,255,.58); }
footer img { width:180px; filter:drop-shadow(0 0 10px rgba(97,181,255,.35)); }
footer p { text-align:center; }
footer a { justify-self:end; color:#fff; }
footer > a:first-child { justify-self:start; }

/* Interior pages */
.subpage { background:#070823; }
.subpage .site-header { background:rgba(5,6,29,.82); backdrop-filter:blur(18px); border-color:rgba(255,255,255,.1); }
.page-hero { min-height:82svh; position:relative; isolation:isolate; overflow:hidden; display:flex; align-items:flex-end; padding:150px clamp(22px,7vw,110px) clamp(75px,8vw,110px); }
.page-hero::after { content:""; position:absolute; inset:auto 0 0; height:45%; z-index:-1; background:linear-gradient(transparent,#070823); }
.page-hero-content { position:relative; width:min(1050px,92vw); z-index:2; }
.page-hero-content .eyebrow { margin-bottom:28px; color:#acd0ff; }
.page-hero h1 { margin:0; font:800 clamp(4.2rem,10vw,10.5rem)/.82 "Manrope",sans-serif; letter-spacing:-.085em; }
.page-hero h1 em { font-style:normal; color:transparent; -webkit-text-stroke:1.5px rgba(255,255,255,.75); }
.page-hero-content > p:last-child { max-width:600px; margin:34px 0 0; font-size:clamp(1rem,1.5vw,1.25rem); line-height:1.6; color:rgba(255,255,255,.72); }
.page-index { position:absolute; right:clamp(22px,5vw,75px); bottom:50px; z-index:3; font:.72rem "Manrope"; letter-spacing:.18em; color:rgba(255,255,255,.5); }
.page-hero-bg { position:absolute; inset:0; z-index:-3; background:url("assets/great-lines-bg.jpg") center 52%/cover no-repeat; filter:saturate(1.15) brightness(.65); transform:scale(1.03); }
.page-hero-image::before { content:""; position:absolute; inset:0; z-index:-2; background:linear-gradient(110deg,rgba(5,5,32,.2),rgba(5,5,32,.78) 85%),radial-gradient(circle at 22% 32%,rgba(82,184,255,.2),transparent 35%); }
.page-noise { position:absolute; inset:0; z-index:-1; opacity:.08; background-image:radial-gradient(circle,#fff 0 1px,transparent 1.2px); background-size:35px 35px; mask-image:linear-gradient(#000,transparent 75%); }
.story-section { background:#070823; }
.story-grid { display:grid; grid-template-columns:1.18fr .82fr; gap:clamp(50px,8vw,130px); align-items:end; }
.story-copy { max-width:520px; }
.story-copy p { margin:0 0 22px; font-size:1.08rem; line-height:1.7; color:rgba(255,255,255,.72); }
.moments { padding-top:0; background:#070823; }
.moments-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.moment-card { min-height:480px; padding:36px; border-radius:24px; display:flex; flex-direction:column; justify-content:flex-end; position:relative; overflow:hidden; color:#fff; background:#0b092e; isolation:isolate; }
.moment-card::before { content:""; position:absolute; inset:0; z-index:-1; background:linear-gradient(180deg,transparent 28%,rgba(5,6,29,.9) 100%); }
.moment-card img { position:absolute; inset:0; z-index:-2; width:100%; height:100%; object-fit:cover; transition:transform .7s ease; }
.moment-card:hover img { transform:scale(1.045); }
.moment-copy { position:relative; }
.moment-card h2 { margin:0 0 15px; max-width:250px; font:800 clamp(2.3rem,4vw,4.2rem)/.92 "Manrope"; letter-spacing:-.065em; }
.moment-card p { margin:0; max-width:360px; line-height:1.55; color:rgba(255,255,255,.82); text-shadow:0 2px 12px rgba(4,5,25,.75); }
.quote-section,.next-step { min-height:66vh; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; background:radial-gradient(circle at 50% 30%,#1a2a87,#08092c 55%,#05061d); }
.quote-section p { margin:0 0 38px; font:700 clamp(2.8rem,6vw,6.5rem)/1.02 "Manrope"; letter-spacing:-.06em; }
.quote-section strong { color:#ff72b5; }

.page-hero-gradient { background:radial-gradient(circle at 75% 24%,#ff639e 0,transparent 23%),radial-gradient(circle at 26% 42%,#3158cc 0,transparent 36%),#090a3c; }
.orbit-field { position:absolute; inset:0; z-index:-1; overflow:hidden; }
.orbit-field::before,.orbit-field::after,.orbit-field i { content:""; position:absolute; border:1px solid rgba(255,255,255,.14); border-radius:50%; left:62%;top:45%; transform:translate(-50%,-50%); }
.orbit-field::before { width:28vw;height:28vw;box-shadow:0 0 80px rgba(255,78,156,.2); }
.orbit-field::after { width:52vw;height:52vw; }
.orbit-field i:first-child { width:78vw;height:78vw; }
.orbit-field i:nth-child(2) { width:12px;height:12px;border:0;background:#fff36c;box-shadow:0 0 26px #fff36c;animation:orbitPulse 2.8s ease-in-out infinite; }
.orbit-field i:nth-child(3) { width:6px;height:6px;border:0;background:#5bc8ff;box-shadow:0 0 20px #5bc8ff;left:83%;top:23%; }
@keyframes orbitPulse { 50% { transform:translate(-50%,-50%) scale(1.8);opacity:.55; } }
.notice-band { display:flex; justify-content:center; gap:18px; padding:20px 24px; text-align:center; background:#fff36c; color:#08082b; font-size:.88rem; }
.notice-band strong { font-family:"Manrope"; }
.info-section { background:#08092d; }
.info-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:1px; background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.12); border-radius:22px; overflow:hidden; }
.info-card { min-height:340px; padding:clamp(30px,5vw,65px); background:#0c0d39; display:flex; flex-direction:column; }
.info-icon { width:70px;height:70px;display:grid;place-items:center;flex:0 0 70px;border:1px solid rgba(114,200,255,.42);border-radius:20px;background:linear-gradient(145deg,rgba(114,200,255,.18),rgba(255,91,168,.1));box-shadow:0 0 28px rgba(83,182,255,.13);font:700 2rem/1 Arial,sans-serif;color:#a7ddff; }
.info-card h2 { margin:auto 0 14px; font:700 clamp(2rem,3.6vw,3.5rem) "Manrope"; letter-spacing:-.05em; }
.info-card p { margin:0 0 25px; max-width:460px; color:var(--muted); line-height:1.6; }
.info-card small { text-transform:uppercase; letter-spacing:.16em; color:#ff78b6; font-size:.66rem; }
.visit-checklist { display:grid; grid-template-columns:.85fr 1.15fr; gap:clamp(50px,10vw,150px); background:#eeeaff; color:#0a092e; }
.checklist-heading h2 { margin:0; font:800 clamp(3.4rem,6vw,6.5rem)/.9 "Manrope"; letter-spacing:-.07em; }
.checklist-heading h2 em { font-style:normal;color:transparent;-webkit-text-stroke:1.4px #191747; }
.checklist-heading .section-kicker { color:#7b45c4; }
.checklist { list-style:none;margin:0;padding:0; }
.checklist li { display:block;padding:27px 0;border-bottom:1px solid rgba(10,9,46,.17); }
.checklist strong { display:block;font:700 clamp(1.3rem,2vw,1.65rem) "Manrope"; }
.checklist p { margin:8px 0 0;color:rgba(10,9,46,.65);line-height:1.55; }
.next-step .eyebrow { margin-bottom:24px;color:#86c7ff; }
.next-step h2 { margin:0 0 35px;font:800 clamp(3.5rem,7vw,7rem)/.9 "Manrope";letter-spacing:-.07em; }
.next-step h2 em { font-style:normal;color:transparent;-webkit-text-stroke:1.4px rgba(255,255,255,.7); }

.faq-hero { background:radial-gradient(circle at 70% 50%,#7133bd 0,transparent 30%),radial-gradient(circle at 20% 30%,#1649a4 0,transparent 36%),#090a36; }
.faq-spark { position:absolute;right:7vw;top:48%;transform:translateY(-50%);font:800 clamp(20rem,40vw,43rem)/.7 "Manrope";color:transparent;-webkit-text-stroke:2px rgba(255,255,255,.09);text-shadow:0 0 80px rgba(255,76,155,.15); }
.faq-section { display:grid;grid-template-columns:.7fr 1.3fr;gap:clamp(50px,10vw,150px);background:#090a2d; }
.faq-intro { position:sticky;top:120px;align-self:start; }
.faq-intro h2 { margin:0 0 24px;font:800 clamp(2.8rem,5vw,5rem)/.95 "Manrope";letter-spacing:-.065em; }
.faq-intro > p:last-child { color:var(--muted);line-height:1.6; }
.faq-category { margin:64px 0 16px;padding-bottom:15px;border-bottom:1px solid rgba(255,255,255,.28);font:700 .72rem "Manrope";letter-spacing:.18em;text-transform:uppercase;color:#ff78b7;scroll-margin-top:110px; }
.faq-category:first-child { margin-top:0; }
.accordion-item { border-top:1px solid rgba(255,255,255,.17); }
.accordion-item:last-child { border-bottom:1px solid rgba(255,255,255,.17); }
.accordion-item h3 { margin:0; }
.accordion-item button { width:100%;padding:29px 0;display:flex;align-items:center;justify-content:space-between;gap:20px;border:0;background:none;color:#fff;text-align:left;font:650 clamp(1.25rem,1.8vw,1.55rem) "Manrope";cursor:pointer; }
.accordion-item button i { flex:0 0 22px;width:22px;height:22px;position:relative; }
.accordion-item button i::before,.accordion-item button i::after { content:"";position:absolute;left:3px;right:3px;top:10px;height:1px;background:#72c9ff;transition:transform .25s; }
.accordion-item button i::after { transform:rotate(90deg); }
.accordion-item button[aria-expanded="true"] i::after { transform:rotate(0); }
.accordion-panel { display:grid;grid-template-rows:0fr;transition:grid-template-rows .35s ease; }
.accordion-panel > p { overflow:hidden;margin:0;max-width:650px;color:var(--muted);line-height:1.7; }
.accordion-item.open .accordion-panel { grid-template-rows:1fr; }
.accordion-item.open .accordion-panel > p { padding-bottom:30px; }
.accordion-panel a { color:#8fd0ff;text-decoration:underline;text-underline-offset:3px; }

.updates-hero { background:radial-gradient(circle at 50% 0,#243fa9 0,#0a0b43 42%,#070823 78%); }
.updates-hero .spark-canvas { z-index:-1; }
.latest-section { background:#070823; }
.latest-heading { display:flex;align-items:center;justify-content:space-between;gap:30px;margin-bottom:40px; }
.latest-heading .section-kicker { margin:0; }
.status-pill { display:inline-flex;align-items:center;gap:9px;padding:9px 13px;border:1px solid rgba(255,255,255,.18);border-radius:50px;font-size:.72rem;color:var(--muted); }
.status-pill i { width:7px;height:7px;border-radius:50%;background:#fff36c;box-shadow:0 0 12px #fff36c; }
.announcement-card { display:grid;grid-template-columns:.35fr 1.65fr;gap:clamp(35px,8vw,120px);padding:clamp(35px,6vw,80px);border:1px solid rgba(255,255,255,.13);border-radius:28px;background:linear-gradient(135deg,rgba(38,59,154,.35),rgba(255,77,157,.1)); }
.announcement-mark { font-size:clamp(5rem,12vw,12rem);line-height:1;color:#ff73b6;text-shadow:0 0 55px rgba(255,73,155,.5); }
.announcement-date { text-transform:uppercase;letter-spacing:.18em;font-size:.68rem;color:#8dcaff; }
.announcement-card h2 { margin:18px 0 20px;font:800 clamp(2.6rem,5vw,5rem)/.95 "Manrope";letter-spacing:-.06em; }
.announcement-card div:last-child > p:not(.announcement-date) { max-width:700px;color:var(--muted);line-height:1.7;margin-bottom:25px; }
.update-principles { padding-top:20px;background:#070823; }
.principle-grid { display:grid;grid-template-columns:repeat(3,1fr);border-top:1px solid rgba(255,255,255,.15); }
.principle-grid article { padding:34px 38px 20px 0;border-right:1px solid rgba(255,255,255,.15); }
.principle-grid article + article { padding-left:38px; }
.principle-grid article:last-child { border-right:0; }
.principle-grid h3 { margin:18px 0 12px;font:700 clamp(1.4rem,2vw,1.7rem) "Manrope"; }
.principle-grid p { margin:0;color:var(--muted);line-height:1.6; }

.travel-hero { background:radial-gradient(circle at 75% 20%,rgba(255,76,157,.55),transparent 24%),radial-gradient(circle at 26% 45%,#183c9c 0,transparent 40%),#080930; }
.travel-lines { position:absolute;inset:0;z-index:-1;overflow:hidden; }
.travel-lines::before,.travel-lines i { content:"";position:absolute;width:75vw;height:75vw;border:1px solid rgba(255,255,255,.11);border-radius:50%;right:-20vw;top:-28vw; }
.travel-lines i:first-child { width:58vw;height:58vw;right:-10vw;top:-20vw; }
.travel-lines i:nth-child(2) { width:38vw;height:38vw;right:2vw;top:-11vw;box-shadow:0 0 75px rgba(90,192,255,.12); }
.travel-lines i:nth-child(3) { width:13px;height:13px;right:22vw;top:22%;border:0;background:#fff16b;box-shadow:0 0 30px #fff16b;animation:orbitPulse 3s ease-in-out infinite; }
.travel-section { display:grid;grid-template-columns:.78fr 1.22fr;gap:clamp(60px,10vw,150px);background:#08092d; }
.travel-intro { align-self:start;position:sticky;top:120px; }
.travel-intro h2,.route-callout h2 { margin:0;font:800 clamp(3.4rem,6vw,6.4rem)/.9 "Manrope";letter-spacing:-.07em; }
.travel-intro h2 em,.route-callout h2 em { font-style:normal;color:transparent;-webkit-text-stroke:1.4px rgba(255,255,255,.72); }
.travel-intro > p:last-child { margin-top:28px;max-width:480px;color:var(--muted);line-height:1.65; }
.travel-options { border-top:1px solid rgba(255,255,255,.16); }
.travel-option { display:grid;grid-template-columns:76px 1fr;gap:24px;align-items:start;padding:38px 0;border-bottom:1px solid rgba(255,255,255,.16); }
.travel-icon { width:68px;height:68px;display:grid;place-items:center;border:1px solid rgba(102,196,255,.38);border-radius:19px;background:linear-gradient(145deg,rgba(83,191,255,.2),rgba(255,80,163,.12));box-shadow:0 0 28px rgba(83,182,255,.14);font-size:2rem;line-height:1; }
.travel-option h3 { margin:0 0 15px;font:700 clamp(1.8rem,2.8vw,2.65rem) "Manrope";letter-spacing:-.04em; }
.travel-option p { margin:0;max-width:620px;color:var(--muted);line-height:1.65; }
.travel-option p + p { margin-top:14px; }
.route-callout { display:grid;grid-template-columns:1fr .65fr;gap:clamp(45px,8vw,120px);align-items:center;background:linear-gradient(135deg,#4b46d6,#c34baf 58%,#ff9d70);color:#fff; }
.route-callout .eyebrow { margin-bottom:24px;color:#130d3d; }
.route-callout h2 em { -webkit-text-stroke-color:rgba(18,11,58,.6); }
.route-callout > div:last-child p { margin:0 0 28px;max-width:500px;color:rgba(16,9,51,.72);font-size:1.08rem;line-height:1.65; }

.ticket-hero { background:radial-gradient(circle at 76% 25%,rgba(255,77,157,.48),transparent 25%),radial-gradient(circle at 30% 30%,#234bb1 0,transparent 38%),#080930; }
.ticket-rings { position:absolute;inset:0;z-index:-1;overflow:hidden; }
.ticket-rings::before,.ticket-rings i { content:"";position:absolute;width:38vw;height:38vw;border-radius:50%;border:1px solid rgba(255,255,255,.12);right:4vw;top:5vw; }
.ticket-rings i:first-child { width:25vw;height:25vw;right:10.5vw;top:11.5vw;box-shadow:0 0 70px rgba(255,77,157,.18); }
.ticket-rings i:last-child { width:9px;height:9px;right:23vw;top:24vw;border:0;background:#fff36c;box-shadow:0 0 28px #fff36c; }
.session-choice { background:#eeebff;color:#0a092d; }
.session-choice-heading { margin-bottom:48px; }
.session-choice-heading .section-kicker { color:#873bac;margin-bottom:22px; }
.session-choice-heading h2 { margin:0;font:800 clamp(3.2rem,6vw,6.5rem)/.9 "Manrope";letter-spacing:-.072em; }
.session-choice-heading h2 em { font-style:normal;color:transparent;-webkit-text-stroke:1.4px #171342; }
.session-grid { display:grid;grid-template-columns:repeat(2,1fr);gap:18px; }
.session-card { min-height:460px;padding:clamp(30px,5vw,58px);border-radius:24px;display:flex;flex-direction:column;justify-content:space-between;overflow:hidden;position:relative; }
.session-card::after { content:"";position:absolute;width:310px;height:310px;border-radius:50%;right:-130px;top:-120px;background:radial-gradient(circle at 35% 35%,rgba(255,255,255,.8),rgba(255,255,255,.06) 55%,transparent 58%);mix-blend-mode:screen; }
.session-early { background:linear-gradient(145deg,#54c7ff,#6959de);color:#fff; }
.session-late { background:linear-gradient(145deg,#ff4d9d,#ff9b73);color:#170a38; }
.session-state { display:inline-block;padding:8px 12px;border-radius:100px;background:rgba(255,255,255,.2);font:700 .72rem "Manrope";text-transform:uppercase;letter-spacing:.1em; }
.session-card p { margin:55px 0 5px;text-transform:uppercase;letter-spacing:.15em;font-size:.74rem;font-weight:700; }
.session-card h3 { margin:0 0 12px;font:800 clamp(2.5rem,4.5vw,4.8rem)/.92 "Manrope";letter-spacing:-.06em; }
.session-card strong { display:block;font:800 clamp(3rem,6vw,6rem)/1 "Manrope";letter-spacing:-.07em; }
.session-card small { display:block;margin-top:8px;font-size:.9rem;opacity:.72; }
.button-outline { border:1px solid currentColor;color:currentColor;background:transparent;align-self:flex-start; }
.button-outline:hover { background:#170a38;color:#fff;box-shadow:none; }
.ticket-summary { padding-top:70px;padding-bottom:70px;background:#08092d; }
.ticket-prices { display:grid;grid-template-columns:repeat(3,1fr);border-top:1px solid rgba(255,255,255,.16);border-bottom:1px solid rgba(255,255,255,.16); }
.ticket-prices > div { min-height:210px;padding:30px;display:flex;flex-direction:column;border-right:1px solid rgba(255,255,255,.16); }
.ticket-prices > div:last-child { border-right:0; }
.ticket-prices span { font-size:.78rem;text-transform:uppercase;letter-spacing:.13em;color:#8dccff; }
.ticket-prices strong { margin:auto 0 4px;font:800 clamp(3rem,5vw,5rem) "Manrope";letter-spacing:-.065em; }
.ticket-prices small { color:var(--muted); }
.booking-section { display:grid;grid-template-columns:.72fr 1.28fr;gap:clamp(50px,8vw,120px);background:#eeebff;color:#0a092d;align-items:start; }
.booking-heading { position:sticky;top:120px; }
.booking-heading .section-kicker { color:#873bac;margin-bottom:18px; }
.session-badge { display:inline-block;margin-bottom:30px;padding:8px 12px;border-radius:50px;background:#ff4d9d;color:#fff;font-size:.7rem;text-transform:uppercase;letter-spacing:.15em; }
.booking-heading h2,.late-session h2 { margin:0;font:800 clamp(3.2rem,5.5vw,5.8rem)/.91 "Manrope";letter-spacing:-.07em; }
.booking-heading h2 em,.late-session h2 em { font-style:normal;color:transparent;-webkit-text-stroke:1.4px #171342; }
.booking-heading > p:last-child { max-width:480px;margin-top:25px;color:rgba(10,9,45,.68);line-height:1.65; }
.widget-shell { min-height:460px;padding:clamp(22px,4vw,50px);border-radius:24px;background:#fff;box-shadow:0 25px 70px rgba(16,10,55,.15); }
.tt-widget-fallback a { display:inline-flex;padding:15px 22px;border-radius:100px;background:#0a092d;color:#fff;font-weight:700; }
.late-session { display:grid;grid-template-columns:1fr .7fr;gap:clamp(50px,9vw,140px);align-items:center;background:linear-gradient(135deg,#ff529e,#7c4ed8 55%,#3157c7); }
.late-session .section-kicker { color:#160d41; }
.late-session h2 em { -webkit-text-stroke-color:rgba(17,10,55,.62); }
.late-session .status-pill { border-color:rgba(255,255,255,.4);color:#fff; }
.late-session > div:last-child p { margin:28px 0 0;line-height:1.7;color:rgba(15,9,51,.72); }
.late-session .late-widget { min-height:420px;margin-top:24px;padding:clamp(18px,3vw,34px); }
.late-session .late-widget .tt-widget-fallback p { margin:0; }
.late-session .button-disabled { margin-top:26px;background:rgba(15,9,51,.18);color:rgba(15,9,51,.58);box-shadow:none;cursor:not-allowed; }
.ticket-note { display:flex;align-items:center;justify-content:space-between;gap:50px;background:#070823;padding-top:70px;padding-bottom:70px; }
.ticket-note strong { font:700 1.2rem "Manrope"; }
.ticket-note p { max-width:780px;margin:10px 0 0;color:var(--muted);line-height:1.6; }

.reveal { opacity:0; transform:translateY(28px); transition:opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity:1; transform:translateY(0); }

@media (max-width: 1060px) {
  .site-header { grid-template-columns:1fr auto; height:74px; }
  .brand-mark { width:132px; }
  .hero { padding-top:95px; }
  .logo-stage { width:min(650px,92vw); }
  .scroll-cue { right:22px; bottom:22px; }
  .intro-grid { grid-template-columns:1fr; gap:40px; }
  .feature-strip { grid-template-columns:1fr; }
  .feature-strip article,.feature-strip article + article { padding:26px 0; border-right:0; border-bottom:1px solid rgba(255,255,255,.16); }
  .plan-panel { grid-template-columns:1fr; }
  .plan-visual { min-height:400px; }
  .page-hero { min-height:75svh;padding-top:125px; }
  .page-index { display:none; }
  .story-grid,.faq-section,.visit-checklist,.travel-section,.route-callout,.booking-section,.late-session,.session-grid { grid-template-columns:1fr; }
  .moments-grid { grid-template-columns:1fr; }
  .moment-card { min-height:360px; }
  .faq-intro { position:static; }
  .travel-intro { position:static; }
  .travel-option { grid-template-columns:64px 1fr;gap:18px; }
  .travel-icon { width:58px;height:58px;border-radius:16px;font-size:1.7rem; }
  .booking-heading { position:static; }
  .announcement-card { grid-template-columns:1fr; }
  .announcement-mark { font-size:6rem; }
  .principle-grid { grid-template-columns:1fr; }
  .principle-grid article,.principle-grid article + article { padding:28px 0;border-right:0;border-bottom:1px solid rgba(255,255,255,.15); }
  .principle-grid h3 { margin:28px 0 10px; }
}

@media (max-width: 560px) {
  .hero { min-height:125svh;padding-top:108px; }
  .hero-background { background-position:50% 76%; }
  .logo-stage { margin:22px auto; }
  .hero .eyebrow { font-size:clamp(1.65rem,8vw,2.25rem);line-height:1.02; }
  .hero-copy { margin-top:12px;font-size:clamp(2rem,10vw,2.8rem);line-height:1.03; }
  .hero-actions { flex-direction:column; gap:10px; }
  .hero-actions .button-primary { width:min(330px,100%);min-width:0; }
  .hero-schedule { grid-template-columns:1fr;margin-top:28px; }
  .hero-schedule > div { min-height:62px;padding:10px 16px;justify-content:space-between;border-right:0;border-bottom:1px solid rgba(255,255,255,.22); }
  .hero-schedule > div:last-child { border-bottom:0; }
  .hero-schedule strong { font-size:2rem; }
  .section { padding:90px 22px; }
  .display-title { font-size:3.25rem; }
  .plan-panel { border-radius:20px; }
  .film-section { padding-left:14px;padding-right:14px; }
  .film-frame { min-height:680px;border-radius:20px;padding:32px 24px; }
  .film-copy h2 { font-size:3.55rem; }
  .plan-copy { padding:44px 26px; }
  .plan-visual { min-height:320px; }
  .orb-a { width:260px;height:260px; }
  .orb-b { width:180px;height:180px; }
  .updates { min-height:72vh; }
  .updates h2 { font-size:3.75rem; }
  footer { grid-template-columns:1fr; text-align:center; }
  footer img, footer a { justify-self:center; }
  footer > a:first-child { justify-self:center; }
  footer p { margin:0; }
  .page-hero { min-height:70svh;padding-bottom:65px; }
  .page-hero h1 { font-size:4rem; }
  .page-hero-content > p:last-child { margin-top:25px; }
  .notice-band { flex-direction:column;gap:4px; }
  .info-grid { grid-template-columns:1fr; }
  .info-card { min-height:300px; }
  .info-icon { width:62px;height:62px;flex-basis:62px;border-radius:17px;font-size:1.8rem; }
  .latest-heading { align-items:flex-start;flex-direction:column; }
  .announcement-card { padding:28px; }
  .menu-toggle::before { display:none; }
  .menu-toggle { width:48px;height:48px;padding:0;justify-content:center; }
  .menu-toggle span { width:21px; }
  .menu-toggle span + span { right:13px;top:20px; }
  .mobile-menu nav { grid-template-columns:1fr;gap:8px;padding-top:54px; }
  .mobile-menu nav a { min-height:60px;padding:13px 20px;border-radius:12px;font-size:1.35rem; }
  .ticket-prices { grid-template-columns:1fr; }
  .ticket-prices > div { min-height:180px;border-right:0;border-bottom:1px solid rgba(255,255,255,.16); }
  .ticket-prices > div:last-child { border-bottom:0; }
  .ticket-note { align-items:flex-start;flex-direction:column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *,*::before,*::after { animation-duration:.01ms!important; animation-iteration-count:1!important; transition-duration:.01ms!important; }
  .reveal { opacity:1; transform:none; }
}
