:root {
  --pine: #143528;
  --sage: #5f7f6c;
  --straw: #d4a84b;
  --mist: #f4f7f5;
  --ink: #0f1f17;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; }
body {
  font-family: var(--font-body);
  color: var(--mist);
  background:
    radial-gradient(ellipse 90% 70% at 50% -10%, rgba(212, 168, 75, 0.22), transparent 55%),
    radial-gradient(ellipse 70% 50% at 80% 90%, rgba(95, 127, 108, 0.28), transparent 50%),
    linear-gradient(165deg, #0c1a12 0%, #143528 48%, #1a3d2c 100%);
  min-height: 100dvh;
}

.stage {
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 2.75rem);
  max-width: 68rem;
  margin: 0 auto;
  padding: clamp(1.5rem, 5vw, 3rem);
}

@media (min-width: 900px) {
  .stage {
    grid-template-columns: minmax(0, 1.15fr) minmax(16rem, 0.85fr);
    align-items: center;
  }
}

.copy { min-width: 0; }

.buddy {
  justify-self: center;
  width: min(100%, 22rem);
  animation: rise 0.85s 0.2s ease both;
}
.buddy-frame {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(244, 247, 245, 0.18);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
  aspect-ratio: 1;
  background: rgba(8, 18, 13, 0.35);
}
.buddy-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
}
.love {
  margin: 0.85rem 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  color: rgba(244, 247, 245, 0.88);
}
.love .heart {
  color: #e8a0a0;
  font-size: 1.05rem;
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.12); opacity: 1; }
}

.badge {
  margin: 0;
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(212, 168, 75, 0.95);
  color: #1a160c;
  animation: rise 0.7s ease both;
}

.site {
  margin: 1.1rem 0 0;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(244, 247, 245, 0.55);
  animation: rise 0.7s 0.05s ease both;
}

.brand {
  margin: 0.35rem 0 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 10vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #fff;
  animation: rise 0.75s 0.1s ease both;
}
.brand span { color: var(--straw); }

.subbrand {
  margin: 0.55rem 0 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(244, 247, 245, 0.78);
  animation: rise 0.75s 0.14s ease both;
}

.lead {
  margin: 1.1rem 0 0;
  max-width: 34ch;
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.45;
  color: rgba(244, 247, 245, 0.86);
  animation: rise 0.75s 0.18s ease both;
}

.countdown {
  margin-top: 1.85rem;
  width: 100%;
  max-width: 28rem;
  animation: rise 0.8s 0.24s ease both;
}
.countdown-label {
  margin: 0 0 0.7rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 247, 245, 0.62);
}
.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.28rem;
  padding: 0.9rem 0.35rem 0.75rem;
  border-radius: 14px;
  background: rgba(8, 18, 13, 0.45);
  border: 1px solid rgba(244, 247, 245, 0.14);
  backdrop-filter: blur(8px);
}
.countdown-n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 6vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  color: #fff;
}
.countdown-l {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--straw);
}

.note {
  margin: 1.5rem 0 0;
  max-width: 42ch;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(244, 247, 245, 0.55);
  animation: rise 0.8s 0.32s ease both;
}

.cta {
  margin: 1.75rem 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(244, 247, 245, 0.72);
  animation: rise 0.8s 0.38s ease both;
}
.cta a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cta a:hover { color: var(--straw); }
.dot { opacity: 0.45; }

@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 480px) {
  .countdown-grid { gap: 0.4rem; }
  .lead { max-width: none; }
}
