:root {
  --bg: #f7f4ee;
  --surface: rgba(255, 255, 255, 0.66);
  --surface-strong: rgba(255, 255, 255, 0.82);
  --text: #171717;
  --muted: #6f6a63;
  --line: rgba(23, 23, 23, 0.08);
  --shadow: 0 24px 80px rgba(31, 24, 12, 0.08);
}

* {
  box-sizing: border-box;
}

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

body {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.92), transparent 32%),
    radial-gradient(circle at bottom right, rgba(229, 220, 203, 0.38), transparent 28%),
    var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.55;
  pointer-events: none;
}

.ambient-one {
  width: 28rem;
  height: 28rem;
  top: -10rem;
  left: -8rem;
  background: rgba(255, 255, 255, 0.9);
  animation: drift 14s ease-in-out infinite;
}

.ambient-two {
  width: 22rem;
  height: 22rem;
  right: -7rem;
  bottom: -8rem;
  background: rgba(224, 213, 194, 0.72);
  animation: drift 16s ease-in-out infinite reverse;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  padding: 42px 20px 36px;
  text-align: center;
  animation: rise 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.brand-mark {
  width: 82px;
  height: 82px;
  object-fit: contain;
  margin-bottom: 26px;
}

.eyebrow,
.countdown-label,
.launch-note,
.time-name {
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.74rem;
}

.brand-name {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(4.8rem, 13vw, 9rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  font-weight: 700;
}

.brand-statement {
  width: min(700px, 100%);
  margin: 18px auto 0;
  color: rgba(23, 23, 23, 0.72);
  font-size: clamp(1rem, 1.8vw, 1.14rem);
  line-height: 1.8;
  font-weight: 400;
}

.countdown-block {
  margin-top: 52px;
}

.countdown-label {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.72rem;
}

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

.time-unit {
  padding: 26px 10px 22px;
  border-top: 1px solid rgba(23, 23, 23, 0.07);
  border-bottom: 1px solid rgba(23, 23, 23, 0.07);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08));
}

.time-value {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-variant-numeric: tabular-nums;
  transition: transform 220ms ease, opacity 220ms ease;
}

.time-value.tick {
  transform: translateY(-3px);
  opacity: 0.78;
}

.time-name {
  display: inline-block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.68rem;
}

.launch-note {
  margin: 24px 0 0;
  color: rgba(23, 23, 23, 0.58);
  font-size: 0.68rem;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(14px, -18px, 0);
  }
}

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

  .hero-content {
    padding: 24px 8px;
  }

  .brand-mark {
    width: 68px;
    height: 68px;
    margin-bottom: 18px;
  }

  .brand-statement {
    line-height: 1.55;
  }

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