:root {
  color-scheme: dark;
  --bg: #000000;
  --gold: #cba869;
  --gold-light: #ecdfc0;
  --gold-dark: #8a7143;
  --text: #f5f3ee;
  --muted: #a89f8c;
  --card-bg: rgba(203, 168, 105, 0.08);
  --card-border: rgba(203, 168, 105, 0.28);
  --display-font: 'Bebas Neue', 'Arial Narrow', system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
}

#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
}

.glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.28;
  z-index: 0;
  pointer-events: none;
}

.glow-a {
  width: 560px;
  height: 560px;
  top: -200px;
  left: -160px;
  background: radial-gradient(circle, var(--gold-dark), transparent 70%);
}

.glow-b {
  width: 620px;
  height: 620px;
  bottom: -220px;
  right: -180px;
  background: radial-gradient(circle, var(--gold), transparent 70%);
}

.page {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: clamp(20px, 5vw, 56px);
  gap: 32px;
}

.brand {
  width: 100%;
  display: flex;
  justify-content: center;
}

.logo {
  max-width: 100%;
  width: clamp(140px, 22vw, 220px);
  height: auto;
  filter: drop-shadow(0 0 22px rgba(203, 168, 105, 0.35));
}

.hero {
  flex: 1;
  width: 100%;
  max-width: 860px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 18px;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.72rem;
  color: var(--muted);
}

.title {
  margin: 0;
  font-weight: 400;
  font-size: clamp(3rem, 9vw, 5.6rem);
  line-height: 1.05;
  letter-spacing: 0.03em;
}

.font-display {
  font-family: var(--display-font);
}

.gradient-text {
  background: linear-gradient(115deg, var(--gold-dark) 10%, var(--gold-light) 45%, var(--gold) 75%, var(--gold-dark) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 6s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.subtitle {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  max-width: 520px;
}

.countdown {
  display: flex;
  align-items: center;
  gap: clamp(8px, 2vw, 20px);
  flex-wrap: wrap;
  justify-content: center;
}

.unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.card {
  position: relative;
  min-width: clamp(64px, 18vw, 108px);
  padding: clamp(14px, 3vw, 22px) 6px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 0 0 1px rgba(203, 168, 105, 0.05) inset,
    0 20px 40px -20px rgba(203, 168, 105, 0.3);
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(203, 168, 105, 0.16), transparent 55%);
  pointer-events: none;
}

.value {
  display: block;
  font-family: var(--display-font);
  font-weight: 400;
  font-size: clamp(2rem, 6.5vw, 3.2rem);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
  color: var(--gold-light);
  text-shadow: 0 0 24px rgba(203, 168, 105, 0.4);
}

.value.tick {
  animation: pop 0.4s ease;
}

@keyframes pop {
  0% { transform: translateY(-6px) scale(1.08); opacity: 0.4; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

.label {
  font-family: var(--display-font);
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

.sep {
  font-family: var(--display-font);
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  color: var(--gold-dark);
  transform: translateY(-10px);
  opacity: 0.8;
}

.launched {
  margin-top: 8px;
  font-family: var(--display-font);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: var(--gold);
}

.footer {
  color: var(--muted);
  font-size: 0.8rem;
  text-align: center;
}

@media (max-width: 480px) {
  .sep {
    display: none;
  }
}
