/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0a0a0a;
  --surface: #111111;
  --text-primary: #f0f0f0;
  --text-secondary: #6b6b6b;
  --text-muted: #3a3a3a;
  --accent: #c8ff00;
  --accent-dim: rgba(200, 255, 0, 0.08);
  --border: rgba(255, 255, 255, 0.06);
  --radius: 12px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: 'Open Runde', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ===== Page Layout ===== */
.page {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 100vh;
  padding: 3rem 4rem;
  position: relative;
  overflow: hidden;
}

/* ===== Ambient Glows ===== */
.ambient-glow {
  position: fixed;
  top: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 255, 0, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.ambient-glow-secondary {
  position: fixed;
  bottom: -25%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.015) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* ===== Content ===== */
.content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

/* ===== Logo ===== */
.logo-container {
  margin-bottom: 3rem;
}

.logo {
  height: 28px;
  width: auto;
  color: var(--text-primary);
  opacity: 0;
  animation: fadeSlideUp 0.8s ease-out 0.1s forwards;
}

/* ===== Status Pill ===== */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 14px 4px 5px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease-out 0.25s forwards;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.status-badge {
  font-size: 0.675rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(200, 255, 0, 0.1);
  border: 1px solid rgba(200, 255, 0, 0.22);
  padding: 3px 8px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

.status-text {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: -0.01em;
}

/* ===== Headline ===== */
.headline {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease-out 0.4s forwards;
}

/* ===== Description ===== */
.description {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease-out 0.55s forwards;
}

.description strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ===== Divider ===== */
.divider {
  width: 48px;
  height: 1px;
  background: var(--border);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease-out 0.65s forwards;
}

/* ===== Countdown label ===== */
.countdown-label {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.01em;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease-out 0.75s forwards;
}

/* ===== Footer ===== */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 4rem;
  z-index: 1;
  opacity: 0;
  animation: fadeIn 0.8s ease-out 0.9s forwards;
}

.social-links {
  display: flex;
  gap: 6px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition), background var(--transition);
}

.social-link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
}

.footer-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* ===== Animations ===== */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 8px rgba(200, 255, 0, 0.4);
  }
  50% {
    opacity: 0.5;
    box-shadow: 0 0 16px rgba(200, 255, 0, 0.2);
  }
}

/* ===== Selection ===== */
::selection {
  background: rgba(200, 255, 0, 0.15);
  color: var(--text-primary);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .page {
    padding: 2rem 1.5rem;
    padding-bottom: 6rem;
  }

  .logo-container {
    margin-bottom: 2.5rem;
  }

  .logo {
    height: 24px;
  }

  .headline {
    font-size: 2rem;
  }

  .description {
    font-size: 0.95rem;
  }

  .hide-mobile {
    display: none;
  }

  .footer {
    padding: 1.25rem 1.5rem;
  }

  .footer-text {
    display: none;
  }
}

@media (max-width: 480px) {
  .page {
    padding: 1.5rem 1.25rem;
    padding-bottom: 5rem;
  }

  .headline {
    font-size: 1.75rem;
  }
}
