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

:root {
  --paper: #F7F5F2;
  --ink: #1A1A1A;
  --blue-accent: #2E6DAD;
  --cyan: #00AEEF;
  --magenta: #EC008C;
  --yellow: #FFD100;
  --black: #1A1A1A;
  --radius: 12px;
}

html {
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--paper);
  color: var(--ink);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.paper-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

.lang-toggle {
  position: fixed;
  top: 24px;
  right: 32px;
  z-index: 10;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lang-link {
  color: var(--ink);
  text-decoration: none;
  opacity: 0.4;
  transition: opacity 0.3s;
}

.lang-link:hover,
.lang-link.active {
  opacity: 1;
}

.lang-sep {
  margin: 0 6px;
  opacity: 0.2;
}

main {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 24px;
  max-width: 720px;
  width: 100%;
}

.logo {
  margin-bottom: 40px;
}

.logo svg {
  width: 80px;
  height: auto;
}

.heading {
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 16px;
  color: var(--ink);
}

.tagline {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--blue-accent);
  margin-bottom: 56px;
  opacity: 0.85;
}

.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 90px;
}

.countdown-value {
  font-size: clamp(2.8rem, 8vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.countdown-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.45;
  margin-top: 8px;
}

.countdown-sep {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 200;
  color: var(--ink);
  opacity: 0.2;
  margin: 0 4px;
  padding-bottom: 28px;
}

@media (max-width: 480px) {
  .lang-toggle {
    top: 16px;
    right: 20px;
  }

  .logo {
    margin-bottom: 32px;
  }

  .logo svg {
    width: 60px;
  }

  .tagline {
    margin-bottom: 40px;
  }

  .countdown-item {
    min-width: 60px;
  }

  .countdown-sep {
    margin: 0 0;
  }
}

.cmyk-shapes {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.cmyk-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}

.shape-cyan {
  width: 500px;
  height: 500px;
  background: var(--cyan);
  top: -120px;
  right: -100px;
}

.shape-magenta {
  width: 400px;
  height: 400px;
  background: var(--magenta);
  bottom: -80px;
  left: -120px;
}

.shape-yellow {
  width: 300px;
  height: 300px;
  background: var(--yellow);
  top: 50%;
  left: -80px;
  transform: translateY(-50%);
}

.shape-black {
  width: 200px;
  height: 200px;
  background: var(--black);
  bottom: 60px;
  right: 80px;
}

.shape-cyan-2 {
  width: 180px;
  height: 180px;
  background: var(--cyan);
  bottom: 20%;
  right: 15%;
  opacity: 0.05;
}

.shape-magenta-2 {
  width: 120px;
  height: 120px;
  background: var(--magenta);
  top: 20%;
  left: 25%;
  opacity: 0.06;
}

.shape-yellow-2 {
  width: 90px;
  height: 90px;
  background: var(--yellow);
  top: 15%;
  right: 30%;
  opacity: 0.07;
}

.cmyk-dot {
  position: absolute;
  border-radius: 50%;
}

.dot-1 {
  width: 12px;
  height: 12px;
  background: var(--cyan);
  opacity: 0.15;
  top: 30%;
  left: 12%;
}

.dot-2 {
  width: 8px;
  height: 8px;
  background: var(--magenta);
  opacity: 0.2;
  top: 55%;
  right: 10%;
}

.dot-3 {
  width: 6px;
  height: 6px;
  background: var(--yellow);
  opacity: 0.25;
  bottom: 35%;
  left: 20%;
}

.dot-4 {
  width: 14px;
  height: 14px;
  background: var(--black);
  opacity: 0.1;
  top: 10%;
  left: 40%;
}

.dot-5 {
  width: 5px;
  height: 5px;
  background: var(--cyan);
  opacity: 0.2;
  bottom: 15%;
  right: 35%;
}

.dot-6 {
  width: 9px;
  height: 9px;
  background: var(--magenta);
  opacity: 0.15;
  top: 40%;
  right: 40%;
}
