:root {
  --bg: #fffaf0;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --text: #214e45;
  --text-soft: #5f6f6b;
  --accent: #f5a24a;
  --accent-strong: #ef8d2f;
  --line: rgba(33, 78, 69, 0.1);
  --shadow: 0 24px 60px rgba(89, 69, 27, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Nunito Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(130, 211, 249, 0.3), transparent 34%),
    radial-gradient(circle at right 20%, rgba(245, 162, 74, 0.18), transparent 24%),
    linear-gradient(180deg, #fffdf7 0%, #fff7ea 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

body::before {
  width: 18rem;
  height: 18rem;
  top: 8%;
  right: 6%;
  background: rgba(130, 211, 249, 0.18);
  filter: blur(8px);
}

body::after {
  width: 22rem;
  height: 22rem;
  bottom: -4rem;
  left: -6rem;
  background: rgba(252, 206, 95, 0.18);
  filter: blur(12px);
}

.page-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.hero-card {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 28px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-xl);
  background: rgba(255, 252, 245, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero-copy,
.countdown-panel {
  border-radius: var(--radius-lg);
}

.hero-copy {
  padding: 12px 8px 12px 8px;
}

.brand-logo {
  display: block;
  width: clamp(180px, 28vw, 260px);
  height: auto;
  margin-bottom: 28px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.8rem, 7vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.lead {
  max-width: 36rem;
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 2.3vw, 1.35rem);
  line-height: 1.6;
  color: var(--text-soft);
}

.launch-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 12px 16px;
  border: 1px solid rgba(245, 162, 74, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font-weight: 700;
}

.launch-note__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--accent), var(--accent-strong));
  box-shadow: 0 0 0 6px rgba(245, 162, 74, 0.14);
}

.countdown-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 249, 240, 0.94) 100%);
  border: 1px solid var(--line);
}

.countdown-label {
  margin: 0 0 22px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.countdown-item {
  padding: 22px 16px;
  border-radius: 22px;
  background: var(--surface-strong);
  border: 1px solid rgba(33, 78, 69, 0.08);
  text-align: center;
  box-shadow: 0 14px 28px rgba(33, 78, 69, 0.08);
}

.countdown-value {
  display: block;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--text);
}

.countdown-unit {
  display: block;
  margin-top: 10px;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-strong);
}

.countdown-footer {
  margin: 20px 0 0;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-soft);
}

@media (max-width: 920px) {
  .page-shell {
    padding: 20px;
  }

  .hero-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  h1 {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .page-shell {
    padding: 14px;
  }

  .hero-card {
    gap: 20px;
    padding: 18px;
    border-radius: 24px;
  }

  .countdown-panel {
    padding: 20px;
  }

  .countdown {
    gap: 12px;
  }

  .countdown-item {
    padding: 18px 12px;
    border-radius: 18px;
  }

  .launch-note {
    align-items: center;
    border-radius: 20px;
    line-height: 1.45;
  }
}
