:root {
  --bg: #030102;
  --red: #c70f2d;
  --red-dark: #5a0716;
  --text: #f7f7f7;
  --muted: #b9aeb2;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 22%, rgba(199, 15, 45, .48), transparent 34%),
    radial-gradient(circle at 50% 82%, rgba(199, 15, 45, .22), transparent 32%),
    linear-gradient(180deg, #080102 0%, #120206 42%, #030102 100%);
  overflow-x: hidden;
}

.page {
  position: relative;
  min-height: 100vh;
  padding: 34px clamp(20px, 4vw, 64px) 30px;
  overflow: hidden;
}

.page::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.55) 0 1px, transparent 1.5px),
    linear-gradient(110deg, transparent 18%, rgba(255,255,255,.05), transparent 28%);
  background-size: 92px 92px, 100% 100%;
  opacity: .13;
  pointer-events: none;
}

.ambient {
  position: absolute;
  border: 1px solid rgba(255, 20, 60, .35);
  border-radius: 50%;
  filter: blur(.2px);
  pointer-events: none;
}
.ambient-one { width: 1050px; height: 1050px; left: 50%; bottom: -740px; transform: translateX(-50%); box-shadow: 0 0 34px rgba(225,0,45,.55); }
.ambient-two { width: 900px; height: 280px; left: 50%; bottom: 120px; transform: translateX(-50%) rotate(-8deg); opacity: .55; }
.grid-glow { position: absolute; inset: auto 0 0; height: 38%; background: radial-gradient(ellipse at center, rgba(220,0,45,.25), transparent 58%); }

.topbar, footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand, h1, .tagline, .launch-label, .countdown, button, footer, .socials {
  font-family: Orbitron, sans-serif;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.brand { font-size: clamp(18px, 2vw, 26px); font-weight: 700; }
.socials { display: flex; align-items: center; gap: 22px; color: var(--muted); font-size: 12px; }
a { color: inherit; text-decoration: none; }
.socials a { color: #ff3153; font-size: 18px; letter-spacing: 0; }

.hero {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  min-height: calc(100vh - 140px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 46px 0;
}

.logo-wrap { position: relative; width: min(620px, 92vw); margin-bottom: 4px; }
.logo-glow {
  position: absolute;
  inset: 15% 10%;
  background: radial-gradient(circle, rgba(255,0,55,.52), transparent 64%);
  filter: blur(38px);
}
.logo {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 25px rgba(0,0,0,.7));
}

.tagline { color: #ff3b59; font-size: clamp(11px, 1.5vw, 16px); margin: 0 0 16px; }
.line { width: min(610px, 75vw); height: 1px; margin-bottom: 28px; background: linear-gradient(90deg, transparent, #ff2e4d, white, #ff2e4d, transparent); box-shadow: 0 0 18px #ff2e4d; }
h1 { margin: 0; font-size: clamp(42px, 9vw, 92px); font-weight: 500; line-height: 1; text-shadow: 0 0 18px rgba(255,255,255,.28); }
.subtitle { margin: 32px 0 18px; font-family: Orbitron, sans-serif; letter-spacing: .22em; text-transform: uppercase; font-size: clamp(12px, 1.8vw, 17px); }
.subtitle span { color: #ff2e4d; }
.copy { max-width: 670px; margin: 0; color: #ded8da; font-size: clamp(15px, 1.7vw, 19px); line-height: 1.75; }
.launch-label { margin: 34px 0 14px; color: #ff2e4d; font-size: 14px; }

.countdown { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; width: min(650px, 95vw); margin-bottom: 36px; }
.countdown div { padding: 0 26px; border-left: 1px solid rgba(255,255,255,.18); }
.countdown div:first-child { border-left: 0; }
.countdown strong { display: block; font-size: clamp(32px, 6vw, 58px); font-weight: 400; letter-spacing: .08em; }
.countdown small { color: #ff3153; font-size: 11px; letter-spacing: .32em; }

.notify label { display: block; margin-bottom: 16px; font-family: Orbitron, sans-serif; letter-spacing: .22em; text-transform: uppercase; }
.input-row { display: flex; width: min(560px, 92vw); border: 1px solid rgba(255,49,83,.65); border-radius: 7px; overflow: hidden; background: rgba(255,255,255,.04); }
input { flex: 1; min-width: 0; border: 0; padding: 18px 22px; color: white; background: transparent; outline: none; font: inherit; }
button { border: 0; padding: 0 30px; color: white; background: linear-gradient(135deg, #c70f2d, #620715); cursor: pointer; }

footer { color: #8f8589; justify-content: center; flex-wrap: wrap; font-size: 11px; }
footer a { margin-left: 20px; }

@media (max-width: 700px) {
  .topbar { justify-content: center; }
  .socials { display: none; }
  .hero { padding-top: 28px; }
  .countdown { grid-template-columns: repeat(2, 1fr); row-gap: 22px; }
  .countdown div:nth-child(3) { border-left: 0; }
  .input-row { flex-direction: column; }
  button { padding: 17px 20px; }
}
