:root {
  --ink: #1c1a17;
  --warm-white: #fff8f1;
  --sunset: #ff7a59;
  --coral: #ffb35c;
  --teal: #2ec4b6;
  --blue: #2f5cff;
  --shadow: rgba(25, 23, 20, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Avenir Next", "Trebuchet MS", "Helvetica Neue", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #ffe1cc 0%, #fff8f1 55%, #e7f5ff 100%);
}

.page {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 96px 24px 72px;
}

.page::before,
.page::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(0);
  z-index: -1;
}

.page::before {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(47, 92, 255, 0.18) 0%, rgba(47, 92, 255, 0) 70%);
  top: -120px;
  left: -120px;
}

.page::after {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(46, 196, 182, 0.16) 0%, rgba(46, 196, 182, 0) 70%);
  bottom: -180px;
  right: -140px;
}

.hero {
  display: grid;
  gap: 24px;
}

.logo {
  width: 140px;
  max-width: 40vw;
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.12));
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 122, 89, 0.12);
  color: #b1442f;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

h1 {
  margin: 0;
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 500;
}

.lead {
  margin: 0;
  max-width: 640px;
  font-size: 1.15rem;
  line-height: 1.7;
}

.accent {
  color: var(--blue);
  font-weight: 600;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin: 48px 0 18px;
}

.time-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 22px 18px;
  box-shadow: 0 16px 40px var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.03);
  text-align: center;
}

.time-value {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--ink);
}

.time-label {
  display: block;
  margin-top: 6px;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(28, 26, 23, 0.6);
}

.status {
  margin: 0;
  font-weight: 600;
  color: rgba(28, 26, 23, 0.7);
}

@media (max-width: 680px) {
  .page {
    padding: 72px 20px 64px;
  }

  .lead {
    font-size: 1rem;
  }
}
