/* ---------- Reset & tokens ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy-950: #060c18;
  --navy-900: #0a1424;
  --navy-800: #0e1b30;
  --navy-700: #14243d;
  --navy-600: #1c3255;

  --gold: #d4af6a;
  --gold-bright: #f0cf8f;
  --orange: #e0672c;
  --orange-bright: #f28148;
  --sky: #a9dcec;
  --sky-soft: #cdeaf4;

  --ink-000: #ffffff;
  --ink-100: #e9eef7;
  --ink-300: #b7c3d9;
  --ink-500: #7c8bab;

  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;

  --ff-display: "Bebas Neue", "Manrope", sans-serif;
  --ff-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html { color-scheme: dark; }

body {
  font-family: var(--ff-body);
  background: var(--navy-950);
  color: var(--ink-100);
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
.sr-only {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* ---------- Ambient background ---------- */
.bg-fx {
  position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none;
  background:
    radial-gradient(120% 90% at 15% -10%, #12213a 0%, transparent 55%),
    linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 45%, #081120 100%);
}
.glow {
  position: absolute; border-radius: 50%; filter: blur(110px); opacity: .35;
}
.glow-gold { width: 480px; height: 480px; top: -120px; right: 8%; background: var(--gold); opacity: .18; }
.glow-blue { width: 560px; height: 560px; bottom: -180px; left: -120px; background: var(--sky); opacity: .12; }
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(120% 100% at 50% 0%, black, transparent 75%);
}

/* ---------- Layout ---------- */
.page {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
}

/* Visual panel */
.visual { position: relative; overflow: hidden; height: 100vh; }
.visual-scroll {
  position: absolute; inset: 0;
  overflow-y: auto; overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(212,175,106,.5) transparent;
}
.visual-scroll::-webkit-scrollbar { width: 6px; }
.visual-scroll::-webkit-scrollbar-track { background: transparent; }
.visual-scroll::-webkit-scrollbar-thumb { background: rgba(212,175,106,.5); border-radius: 3px; }
.visual-img { display: block; width: 100%; height: auto; }
.visual-shade {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(100deg, rgba(6,12,24,.15) 0%, rgba(6,12,24,.65) 78%, var(--navy-950) 100%),
    linear-gradient(to top, rgba(6,12,24,.55) 0%, transparent 30%),
    linear-gradient(to bottom, rgba(6,12,24,.4) 0%, transparent 22%);
}
.visual-frame {
  position: absolute; inset: 14px; z-index: 1;
  border: 1px solid rgba(212,175,106,.35);
  border-radius: 4px;
  pointer-events: none;
}
.scroll-hint {
  position: absolute; left: 50%; bottom: 26px; z-index: 2;
  transform: translateX(-50%);
  display: flex; align-items: center; gap: 6px;
  padding: 7px 14px;
  font-size: .72rem; font-weight: 600; letter-spacing: .04em;
  color: var(--ink-100);
  background: rgba(6,12,24,.5);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  pointer-events: none;
  animation: hintBounce 2.2s ease-in-out infinite;
}
.scroll-hint svg { width: 13px; height: 13px; }
@keyframes hintBounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 5px); }
}

/* Content panel */
.content {
  position: relative;
  display: flex; flex-direction: column;
  height: 100vh;
  padding: clamp(24px, 4vw, 56px) clamp(24px, 5vw, 72px);
  overflow-y: auto;
}

.brandbar { display: flex; justify-content: flex-end; }
.org {
  display: flex; align-items: center; gap: 10px;
  font-size: .78rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink-300); font-weight: 600;
}
.org-mark { color: var(--sky-soft); }
.org-sep { color: var(--gold); opacity: .8; }

.content-inner {
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  gap: 22px;
  max-width: 560px;
  padding-block: 28px;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  width: fit-content;
  font-size: .8rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--orange-bright);
  padding: 7px 16px 7px 12px;
  border: 1px solid rgba(224,103,44,.4);
  border-radius: 999px;
  background: rgba(224,103,44,.08);
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--orange-bright);
  box-shadow: 0 0 0 0 rgba(224,103,44,.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(224,103,44,.55); }
  70% { box-shadow: 0 0 0 8px rgba(224,103,44,0); }
  100% { box-shadow: 0 0 0 0 rgba(224,103,44,0); }
}

.title {
  font-family: var(--ff-display);
  font-weight: 400;
  letter-spacing: .01em;
  line-height: .92;
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  color: var(--ink-000);
  text-transform: uppercase;
}
.title span {
  background: linear-gradient(95deg, var(--gold-bright) 0%, var(--gold) 45%, var(--sky-soft) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.tagline {
  font-size: clamp(.98rem, 1.4vw, 1.08rem);
  color: var(--ink-300);
  max-width: 46ch;
}

.meta-row { display: flex; flex-wrap: wrap; gap: 14px 26px; }
.meta-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .88rem; font-weight: 600; color: var(--sky-soft);
}
.meta-item svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--gold); }

/* Countdown */
.countdown {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 10px; max-width: 420px;
}
.cd-box {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px;
  padding: 14px 4px 12px;
  background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.015));
  border: 1px solid rgba(169,220,236,.22);
  border-radius: var(--radius-md);
  backdrop-filter: blur(6px);
  position: relative;
  overflow: hidden;
}
.cd-box::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 2px;
  background: linear-gradient(90deg, var(--sky), var(--gold));
  opacity: .8;
}
.cd-num {
  font-family: var(--ff-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--ink-000);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.cd-label {
  font-size: .66rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-500); font-weight: 600;
}

/* Footer */
.footer {
  margin-top: 12px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 12px 20px;
}
.footer-org { font-size: .78rem; color: var(--ink-500); max-width: 320px; }
.copyright { width: 100%; font-size: .72rem; color: var(--ink-500); opacity: .8; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .page { grid-template-columns: 1fr; }
  .visual { height: 46vh; }
  .content { height: auto; padding-top: 28px; }
  .content-inner { padding-block: 20px; gap: 18px; }
  .brandbar { justify-content: center; }
}

@media (max-width: 560px) {
  .visual { height: 36vh; }
  .visual-frame { inset: 8px; }
  .scroll-hint { bottom: 14px; font-size: .66rem; padding: 6px 12px; }
  .countdown { max-width: 100%; }
  .footer { justify-content: center; text-align: center; }
  .footer-org { max-width: 100%; }
}

@media (max-height: 760px) and (min-width: 981px) {
  .content-inner { gap: 12px; padding-block: 14px; justify-content: flex-start; }
  .title { font-size: clamp(2.2rem, 5vw, 3.4rem); }
  .tagline { font-size: .92rem; }
  .brandbar { padding-bottom: 4px; }
}
