:root {
  --bg: #0b0906;
  --bg-2: #14100a;
  --gold: #c9a227;
  --gold-light: #e8c766;
  --ink: #f3ecdd;
  --ink-dim: #b9ae97;
  --line: rgba(201, 162, 39, 0.25);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(201,162,39,0.10), transparent 60%),
    linear-gradient(180deg, var(--bg-2), var(--bg) 60%);
  color: var(--ink);
  font-family: 'Jost', system-ui, -apple-system, sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  position: relative;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.glow {
  position: fixed;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(201,162,39,0.14) 0%, transparent 65%);
  pointer-events: none;
  animation: pulse 8s ease-in-out infinite;
  z-index: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.08); }
}

.wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 720px;
  padding: 48px 24px 40px;
  text-align: center;
  animation: rise 1s ease-out;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.brand { margin-bottom: 8px; }

.brand__logo {
  width: 180px;
  max-width: 60vw;
  filter: invert(1) brightness(1.15) sepia(0.4) saturate(3) hue-rotate(-10deg);
  opacity: 0.95;
}

.eyebrow {
  font-family: 'Jost', sans-serif;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--gold-light);
  margin: 18px 0 10px;
}

.headline {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: clamp(28px, 5vw, 46px);
  line-height: 1.15;
  margin: 0 0 14px;
  color: var(--ink);
  text-shadow: 0 0 30px rgba(201,162,39,0.15);
}

.sub {
  font-size: 16px;
  color: var(--ink-dim);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 40px;
  flex-wrap: wrap;
}

.cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 70px;
  padding: 14px 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(0,0,0,0.15));
  box-shadow: 0 8px 30px rgba(0,0,0,0.35), inset 0 0 0 1px rgba(201,162,39,0.05);
}

.cd-num {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: clamp(28px, 6vw, 40px);
  color: var(--gold-light);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.cd-label {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.cd-sep {
  font-family: 'Cinzel', serif;
  font-size: 28px;
  color: var(--gold);
  opacity: 0.5;
  transform: translateY(-8px);
}

.launched-msg {
  font-family: 'Cinzel', serif;
  color: var(--gold-light);
  font-size: 22px;
  margin: 0 0 36px;
}

.social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.social__link {
  color: var(--ink-dim);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.05em;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.social__link:hover { color: var(--gold-light); border-color: var(--gold); }

.dot { color: var(--line); }

@media (max-width: 420px) {
  .cd-block { min-width: 58px; padding: 10px 6px; }
  .cd-sep { transform: translateY(-4px); font-size: 20px; }
}
