:root {
  --bg: #0b1220;
  --card: #0f1629;
  --muted: #9aa3b2;
  --text: #e6e9ef;
  --brand: #7c8cff;
  --accent: #22d3ee;
  --ring: rgba(124, 140, 255, 0.6);
  --ok: #22c55e;
  --warn: #f59e0b;
  --err: #ef4444;
  --border: rgba(255,255,255,0.08);
}

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

html, body { 
  height: 100%; 
}

body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 10% 10%, rgba(124,140,255,0.15), transparent 60%),
              radial-gradient(circle at 90% 20%, rgba(34,211,238,0.15), transparent 60%),
              linear-gradient(180deg, #0b1220 0%, #0a0f1d 100%);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  letter-spacing: 0.1px;
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px;
}

.nav {
  display: flex; 
  align-items: center; 
  gap: 12px; 
  height: 56px;
}

.logo {
  display: flex; 
  align-items: center; 
  gap: 10px; 
  font-weight: 700; 
  letter-spacing: 0.3px;
  font-size: 1.125rem;
  color: var(--text);
}

.logo-dot { 
  width: 10px; 
  height: 10px; 
  border-radius: 999px; 
  background: var(--brand); 
  box-shadow: 0 0 0 6px rgba(124,140,255,0.18); 
  flex-shrink: 0;
}

.pill {
  margin-left: auto;
  font-size: 12px; 
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 6px 10px; 
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
}

.hero {
  margin-top: 20px; 
  padding: 28px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

.title { 
  font-size: 28px; 
  font-weight: 700; 
  margin: 0 0 6px; 
  color: var(--text);
  line-height: 1.3;
}

.subtitle { 
  color: var(--muted); 
  margin: 0 0 16px; 
  font-size: 1rem;
  line-height: 1.5;
}

.countdown {
  display: grid; 
  grid-template-columns: repeat(9, minmax(0,auto)); 
  gap: 8px; 
  align-items: center;
  width: fit-content; 
  border: 1px solid var(--border);
  padding: 12px 14px; 
  border-radius: 12px; 
  background: rgba(255,255,255,0.02);
  margin-bottom: 16px;
}

.cd-item { 
  text-align: center; 
  min-width: 62px; 
}

.cd-value { 
  font-size: 24px; 
  font-weight: 700; 
  padding: 6px 8px; 
  border-radius: 10px; 
  background: #0e1526; 
  border: 1px solid var(--border);
  color: var(--text);
  line-height: 1;
}

.cd-label { 
  font-size: 11px; 
  color: var(--muted); 
  margin-top: 6px; 
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cd-sep { 
  color: var(--muted); 
  padding: 0 2px; 
  font-weight: 600;
}

.grid {
  display: grid; 
  gap: 16px; 
  margin-top: 22px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  border-radius: 16px; 
  padding: 18px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.card:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 8px 28px rgba(0,0,0,0.35); 
}

.card h3 { 
  margin: 4px 0 8px; 
  font-size: 16px; 
  font-weight: 600;
  color: var(--text);
}

.card p { 
  margin: 0 0 12px; 
  color: var(--muted); 
  font-size: 14px; 
  line-height: 1.5;
}

.icon {
  width: 28px; 
  height: 28px; 
  display: grid; 
  place-items: center;
  border-radius: 10px; 
  background: rgba(124,140,255,0.12);
  border: 1px solid rgba(124,140,255,0.25); 
  color: #cbd5ff;
  font-size: 16px;
  margin-bottom: 8px;
}

.section-title { 
  margin: 28px 0 8px; 
  font-size: 18px; 
  font-weight: 700; 
  color: var(--text);
}

.muted { 
  color: var(--muted); 
  font-size: 14px; 
  line-height: 1.5;
}

.feature-list { 
  display: grid; 
  gap: 10px; 
  margin-top: 10px; 
}

.bullet { 
  display: flex; 
  gap: 10px; 
  align-items: flex-start; 
}

.bullet .dot { 
  color: var(--accent); 
  margin-top: 4px; 
  flex-shrink: 0;
}

.bullet span:last-child {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.table { 
  width: 100%; 
  border-collapse: separate; 
  border-spacing: 0; 
  overflow: hidden; 
  border-radius: 14px; 
  border: 1px solid var(--border);
  margin-top: 16px;
}

.table th, .table td { 
  padding: 12px 14px; 
  border-bottom: 1px solid var(--border); 
  text-align: left;
}

.table th { 
  font-size: 12px; 
  color: var(--muted); 
  background: rgba(255,255,255,0.02);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.table td {
  color: var(--text);
  font-size: 14px;
}

.table tr:last-child td { 
  border-bottom: none; 
}

.badge {
  display: inline-flex; 
  gap: 6px; 
  align-items: center;
  font-size: 12px; 
  padding: 6px 10px; 
  border-radius: 999px; 
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02); 
  color: var(--text);
}

.cta-row { 
  display: flex; 
  gap: 10px; 
  flex-wrap: wrap; 
  margin-top: 16px; 
}

.btn {
  display: inline-flex; 
  gap: 10px; 
  align-items: center; 
  justify-content: center;
  padding: 10px 14px; 
  border-radius: 12px; 
  border: 1px solid var(--border);
  background: #111833; 
  color: var(--text); 
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35); 
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.4);
}

.btn.brand { 
  background: linear-gradient(90deg, #7c8cff, #22d3ee); 
  color: #0b1220; 
  border-color: transparent; 
}

.btn.brand:hover {
  opacity: 0.9;
}

.btn.ghost { 
  background: transparent; 
}

.btn.ghost:hover {
  background: rgba(255,255,255,0.05);
}

.email-form-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.email-input {
  flex: 1;
  min-width: 220px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #0e1526;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.2s ease;
}

.email-input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--ring);
}

.email-input::placeholder {
  color: var(--muted);
}

.notify-message {
  margin-top: 10px;
  display: none;
  color: var(--ok);
}

.foot { 
  margin: 22px 0 14px; 
  text-align: center; 
  color: var(--muted); 
  font-size: 12px; 
}

.sep { 
  height: 1px; 
  background: var(--border); 
  margin: 20px 0; 
}

@media (max-width: 768px) {
  .container {
    padding: 16px;
  }

  .hero {
    padding: 20px;
  }

  .title {
    font-size: 24px;
  }

  .subtitle {
    font-size: 0.95rem;
  }

  .countdown {
    gap: 6px;
    padding: 10px 12px;
  }

  .cd-item { 
    min-width: 52px; 
  }

  .cd-value { 
    font-size: 20px; 
    padding: 5px 6px;
  }

  .cd-label {
    font-size: 10px;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .card {
    padding: 16px;
  }

  .table {
    font-size: 12px;
  }

  .table th,
  .table td {
    padding: 10px 12px;
  }
}

@media (max-width: 480px) {
  .nav {
    flex-wrap: wrap;
    height: auto;
    gap: 8px;
  }

  .pill {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }

  .title {
    font-size: 20px;
  }

  .countdown {
    grid-template-columns: repeat(5, minmax(0,auto));
    width: 100%;
    justify-content: center;
  }

  .cd-sep {
    display: none;
  }

  .cd-item {
    min-width: 48px;
  }

  .cd-value {
    font-size: 18px;
  }

  .cta-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .email-input {
    min-width: 100%;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Print Styles */
@media print {
  body {
    background: white;
    color: #000;
  }
}
