:root {
  color-scheme: dark;
  --bg: #0b0f14;
  --bg-soft: #121822;
  --accent: #f3b45b;
  --accent-2: #5ad0c1;
  --text: #f7f4ef;
  --text-soft: #c6c1b7;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 10% 20%, rgba(90, 208, 193, 0.2), transparent 40%),
    radial-gradient(circle at 80% 10%, rgba(243, 180, 91, 0.2), transparent 35%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.bg-overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(130deg, rgba(11, 15, 20, 0.95), rgba(11, 15, 20, 0.7));
  z-index: 0;
}

.page {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  min-height: 100vh;
  padding: 4rem clamp(1.5rem, 4vw, 5rem) 2.5rem;
}

.hero {
  display: grid;
  gap: 2.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(140deg, var(--accent), var(--accent-2));
  display: grid;
  place-items: center;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.08em;
  color: #0b0f14;
}

.brand-text {
  display: flex;
  flex-direction: column;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-content {
  max-width: 600px;
  display: grid;
  gap: 1.5rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  color: var(--accent);
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  line-height: 1.1;
}

.subhead {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.6;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
}

.time-box {
  background: rgba(18, 24, 34, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1rem;
  text-align: center;
  backdrop-filter: blur(6px);
}

.time-value {
  font-size: 2rem;
  font-weight: 600;
  display: block;
}

.time-label {
  color: var(--text-soft);
  font-size: 0.85rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

button {
  border: none;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #0b0f14;
  font-weight: 600;
}

.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(90, 208, 193, 0.2);
}

.ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text);
}

.ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.highlights article {
  background: rgba(18, 24, 34, 0.6);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.highlights h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.highlights p {
  color: var(--text-soft);
  line-height: 1.5;
}

.footer {
  color: var(--text-soft);
  font-size: 0.85rem;
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .hero-content {
    justify-self: end;
  }
}
