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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.coming-soon {
  color: #e2e0e8;
  background: #0B0A0F;
  width: 100%;
  min-height: 100vh;
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  position: relative;
  overflow: hidden;
}

.cs-canvas {
  z-index: 1;
  pointer-events: none;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cs-content {
  z-index: 2;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 48px;
  min-height: 100vh;
  padding: 48px 24px;
  display: flex;
  position: relative;
}

.cs-eyebrow {
  letter-spacing: 4px;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  animation: flicker 3s ease-in-out infinite;
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.75; }
}

.cs-title {
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0;
  font-size: clamp(48px, 10vw, 120px);
  font-weight: 700;
  line-height: 0.9;
}

.cs-sub {
  color: rgba(226, 224, 232, 0.55);
  max-width: 440px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
}

.cs-countdown {
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 40px;
  display: flex;
}

.cs-unit {
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 80px;
  display: flex;
}

.cs-value {
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  color: #ffffff;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1;
}

.cs-label {
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 500;
}

@media (max-width: 760px) {
  .cs-countdown { gap: 24px; }
  .cs-unit { min-width: 60px; }
  .cs-label { letter-spacing: 2px; font-size: 10px; }
  .cs-sub { padding: 0 8px; font-size: 14px; }
  .cs-content { gap: 36px; }
  .cs-eyebrow { font-size: 11px; letter-spacing: 3px; }
}