:root {
  --ink: #cfe7ff;
  --muted: #9ec7ff;
  --line: rgba(207, 231, 255, 0.22);
  --panel: rgba(4, 8, 18, 0.58);
  --violet: oklch(0.74 0.11 280);
  --violet-soft: oklch(0.72 0.1 280 / 0.35);
  --blue: #2b8cf3;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  background: #000;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body { overflow-x: hidden; }

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { border: 0; cursor: pointer; }

/* ---------- æntenna loading cover (copied from native-boot.js) ---------- */
#ae-loadcover {
  position: fixed; inset: 0; z-index: 10045; background: #000;
  display: flex; align-items: center; justify-content: center;
  opacity: 1; transition: opacity .6s ease; pointer-events: none;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
#ae-loadcover.ae-out { opacity: 0; }
#ae-loadcover .ae-lc-wrap { display: flex; flex-direction: column; align-items: center; gap: min(7vmin, 40px); }
#ae-loadcover .ae-lc-mark { position: relative; width: min(64vmin, 320px); height: min(64vmin, 320px); display: flex; align-items: center; justify-content: center; }
#ae-loadcover svg { position: absolute; inset: 0; width: 100%; height: 100%; }
#ae-loadcover .ae-lc-disc { position: relative; width: 60.9%; height: 60.9%; border-radius: 50%; overflow: hidden; background: #000; display: flex; align-items: center; justify-content: center; }
#ae-loadcover .ae-lc-disc img { width: 204%; height: auto; display: block; }
#ae-loadcover .ae-lc-pct { display: flex; align-items: baseline; color: rgba(255, 255, 255, .94); }
#ae-loadcover .ae-lc-pct .ae-lc-n { font-weight: 200; font-size: clamp(26px, 10vmin, 44px); letter-spacing: -1px; line-height: 1; }
#ae-loadcover .ae-lc-pct .ae-lc-s { font-weight: 300; font-size: clamp(11px, 4vmin, 16px); margin-left: 2px; color: rgba(255, 255, 255, .55); }
#ae-loadcover .ae-lc-ring { transform-box: fill-box; transform-origin: center; }
#ae-loadcover .ae-lc-pulse { transform-box: fill-box; transform-origin: center; animation: aeLcPulse 5s ease-out infinite; }
@keyframes aeLcPulse {
  0% { transform: scale(.34); opacity: 0; }
  14% { opacity: .5; }
  100% { transform: scale(1.95); opacity: 0; }
}

/* ---------- background sky ---------- */
.sky-video, .sky-scrim {
  position: fixed; inset: 0; width: 100%; height: 100%;
}
.sky-video { object-fit: cover; opacity: 0.85; }
.sky-scrim {
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 20%, oklch(0.72 0.1 280 / 0.10), transparent 40%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.86) 88%);
}

/* ---------- layout ---------- */
.app { position: relative; min-height: 100vh; padding: 22px clamp(16px, 3vw, 44px) 84px; }
.topbar, .view, .menu-button { position: relative; z-index: 2; }

.topbar { display: flex; align-items: center; justify-content: space-between; gap: 18px; }

.brand, .topnav, .glass, .menu-button {
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.03)),
    var(--panel);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
}

.brand { display: inline-flex; align-items: center; gap: 10px; min-height: 44px; padding: 8px 14px; border-radius: 8px; font-weight: 600; letter-spacing: 0.02em; }
.brand-mark { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; overflow: hidden; background: #000; }
.brand-mark img { width: 200%; height: auto; }

.topnav { display: flex; gap: 8px; padding: 8px; border-radius: 8px; }
.topnav a { display: grid; place-items: center; min-height: 34px; padding: 0 12px; color: var(--muted); font-size: 14px; }
.topnav a:hover { color: #fff; }

.view { min-height: calc(100vh - 82px); }
.hidden { display: none !important; }

/* ---------- hero ---------- */
.home-view { display: grid; gap: 26px; max-width: 980px; margin: 0 auto; padding-top: clamp(28px, 7vh, 80px); }

.hero { text-align: center; display: grid; gap: 14px; justify-items: center; }

.eyebrow {
  margin: 0; color: var(--violet); font-size: 12px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
}

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

.title {
  margin: 4px 0 0;
  font-size: clamp(56px, 12vw, 132px);
  line-height: 0.92;
  font-weight: 200;
  letter-spacing: 0.06em;
  color: #fff;
  text-shadow: 0 0 60px oklch(0.72 0.1 280 / 0.55);
}

.hero-sub { margin: 0; color: var(--ink); font-size: clamp(17px, 2.6vw, 24px); font-weight: 300; letter-spacing: 0.08em; }

.yt-frame { width: min(100%, 860px); aspect-ratio: 16 / 9; padding: 10px; border-radius: 12px; margin-top: 14px; }
.yt-frame iframe { width: 100%; height: 100%; border: 0; border-radius: 6px; background: #000; display: block; }

.hero-lede { color: #d7e6f7; font-size: 18px; line-height: 1.6; max-width: 560px; }
.hero-actions { justify-content: center; }

/* ---------- content blocks ---------- */
.glass { border-radius: 10px; padding: clamp(22px, 4vw, 36px); }
.block { display: grid; gap: 12px; }
.block h2 { font-weight: 300; font-size: clamp(24px, 4vw, 34px); line-height: 1.25; color: #fff; }
.block p { color: #d7e6f7; font-size: 17px; line-height: 1.65; margin-bottom: 0; }

.pull { font-size: clamp(20px, 3vw, 26px) !important; font-weight: 300; line-height: 1.45 !important; color: #fff !important; }
.pull.violet { color: var(--violet) !important; font-weight: 400; }

.subhead { font-size: 0.62em; font-weight: 300; color: var(--muted); letter-spacing: 0.06em; }

/* event facts */
.event-facts { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.event-facts li {
  display: grid; grid-template-columns: 110px 1fr; gap: 14px; align-items: baseline;
  padding: 12px 0; border-top: 1px solid rgba(207, 231, 255, 0.12);
}
.event-facts li span { color: var(--muted); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; }
.event-facts li b { font-weight: 500; color: #fff; font-size: 17px; }

.fine-print { color: var(--muted); font-size: 13px; }

/* ---------- buttons ---------- */
.actions { display: flex; flex-wrap: wrap; gap: 12px; }

.btn, .menu-list a, .store-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; border-radius: 8px;
  border: 1px solid rgba(207, 231, 255, 0.2);
  background: var(--blue); color: #fff; padding: 11px 20px;
  box-shadow: 0 10px 28px rgba(43, 140, 243, 0.24);
}
.btn { background: linear-gradient(135deg, oklch(0.55 0.16 280), oklch(0.45 0.14 285)); box-shadow: 0 10px 28px oklch(0.5 0.15 280 / 0.35); }
.btn.ghost, .menu-list a { background: rgba(255, 255, 255, 0.06); box-shadow: none; }

.store-badge { flex-direction: column; align-items: flex-start; min-height: 58px; padding: 10px 18px; background: #000; text-align: left; box-shadow: none; }
.store-badge span { font-size: 11px; color: rgba(255, 255, 255, 0.72); }
.store-badge b { font-size: 20px; font-weight: 500; }

/* ---------- static views ---------- */
.static-view { display: grid; gap: 18px; padding-top: 44px; max-width: 720px; margin: 0 auto; }
.static-card { display: grid; gap: 12px; }
.static-card p { margin: 0; color: #d6e4f4; line-height: 1.6; }

/* ---------- menu ---------- */
.menu-button { position: fixed; right: 20px; bottom: 20px; z-index: 10; width: 50px; height: 50px; padding: 0; border-radius: 16px; }
.menu-button span {
  display: block; width: 20px; height: 13px; margin: auto;
  background:
    linear-gradient(#f6fbff, #f6fbff) 0 0 / 20px 2px no-repeat,
    linear-gradient(#f6fbff, #f6fbff) 0 50% / 15px 2px no-repeat,
    linear-gradient(#f6fbff, #f6fbff) 0 100% / 20px 2px no-repeat;
}

.modal-scrim {
  position: fixed; inset: 0; z-index: 30; display: grid; place-items: end center;
  padding: 24px; background: rgba(0, 0, 0, 0.58); backdrop-filter: blur(8px);
}
.modal { position: relative; width: min(100%, 480px); max-height: min(760px, 86vh); overflow: auto; padding: 34px; }
.menu-list { display: flex; flex-direction: column; gap: 12px; }
.close { position: absolute; top: 14px; right: 14px; width: 32px; height: 32px; padding: 0; border-radius: 50%; background: rgba(255, 255, 255, 0.08); color: #fff; }

/* ---------- footer ---------- */
.footer { position: relative; z-index: 2; text-align: center; padding: 0 18px 34px; color: var(--muted); font-size: 13px; }
.footer a { color: var(--ink); text-decoration: underline; }

@media (max-width: 640px) {
  .app { padding: 14px 14px 80px; }
  .topnav { display: none; }
  .event-facts li { grid-template-columns: 1fr; gap: 2px; }
}
