@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600&family=Inter:wght@300;400;500&display=swap');

:root {
  --bg: #ffffff;
  --fg: #111111;
  --muted: #555555;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
  padding: 3rem 2rem;
  max-width: 720px;
  width: 100%;
}

.company {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3rem);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.subtitle {
  color: var(--muted);
  margin-bottom: 3rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.box {
  border: 1px solid #e5e5e5;
  border-radius: 0.75rem;
  padding: 1.5rem 1rem;
}

.value {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 500;
}

.label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 0.35rem;
}

footer {
  margin-top: 3rem;
  font-size: 0.85rem;
  color: var(--muted);
}

@media (max-width: 600px) {
  .countdown {
    grid-template-columns: repeat(2, 1fr);
  }
}
