:root {
  --bg: #050506;
  --bg2: #131116;
  --line: #d4ba82;
  --text: #f5f1e8;
  --muted: #aea9bc;
  --accent: #b88a3f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

.bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(1200px 700px at 20% 15%, rgba(212, 186, 130, 0.2), transparent),
    radial-gradient(1000px 600px at 85% 10%, rgba(119, 94, 165, 0.16), transparent),
    radial-gradient(900px 550px at 50% 100%, rgba(15, 86, 107, 0.16), transparent),
    linear-gradient(180deg, var(--bg2), var(--bg));
  z-index: -2;
}

.teaser-overlay {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, #0c1a2d 0%, #02040a 75%);
  transition: opacity 700ms ease, visibility 700ms ease;
}

.teaser-overlay.hide {
  opacity: 0;
  visibility: hidden;
}

.teaser-stage {
  text-align: center;
  width: min(900px, 92%);
}

.teaser-line {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.4rem, 5vw, 3rem);
  letter-spacing: 0.06em;
  color: #d7f6ff;
  text-shadow: 0 0 22px rgba(215, 181, 109, 0.78);
  min-height: 4.5rem;
}

.skip-teaser {
  margin-top: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #dce8ff;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
}

.hero {
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem 1rem;
}

.eyebrow {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--line);
  font-size: 0.85rem;
}

h1 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2.6rem, 8vw, 6rem);
  margin: 0.5rem 0;
  text-shadow: 0 0 30px rgba(98, 232, 255, 0.35);
}

.subtitle {
  color: var(--muted);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  margin: 0.3rem 0;
}

.tagline {
  margin-top: 0.8rem;
  font-weight: 700;
}

.countdown {
  margin-top: 0.5rem;
  color: #efe0c2;
  letter-spacing: 0.03em;
  font-weight: 600;
}

.pulse-line {
  margin-top: 0.55rem;
  color: #e6d2a2;
  font-weight: 700;
  animation: pulse 1.8s ease-in-out infinite;
}

.cta {
  margin-top: 1.4rem;
  text-decoration: none;
  color: #111;
  background: linear-gradient(90deg, #f1d7a0, #d7b56d);
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
}

main {
  width: min(1100px, 94%);
  margin: 0 auto 4rem;
}

.panel {
  background: rgba(8, 14, 24, 0.78);
  border: 1px solid rgba(215, 181, 109, 0.28);
  border-radius: 14px;
  padding: 1.4rem;
  margin-bottom: 1rem;
  backdrop-filter: blur(6px);
}

.panel h2 {
  font-family: "Orbitron", sans-serif;
  margin-top: 0;
}

ul {
  margin: 0;
  padding-left: 1.2rem;
}

li {
  margin: 0.45rem 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.8rem;
}

.grid article {
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 181, 109, 0.48);
  background: rgba(215, 181, 109, 0.08);
}

.grid h3 {
  margin: 0 0 0.55rem;
  color: var(--line);
}

.quote {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--accent);
  font-weight: 700;
}

.hype {
  margin-top: 0.8rem;
  color: #f0d99f;
  font-weight: 700;
}

.timeline {
  position: relative;
  padding-left: 1.1rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0.2rem;
  top: 0.3rem;
  bottom: 0.3rem;
  width: 2px;
  background: linear-gradient(var(--line), rgba(215, 181, 109, 0.15));
}

.mile {
  position: relative;
  margin: 0 0 1rem 0.7rem;
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
}

.mile::before {
  content: "";
  position: absolute;
  left: -1.25rem;
  top: 1.05rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line);
  box-shadow: 0 0 14px rgba(215, 181, 109, 0.85);
}

.mile .date {
  display: inline-block;
  font-size: 0.82rem;
  color: #b0c5e4;
  margin-bottom: 0.3rem;
}

.launch {
  border-color: rgba(201, 138, 43, 0.45);
  background: linear-gradient(180deg, rgba(201, 138, 43, 0.12), rgba(8, 14, 24, 0.8));
}

.launch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.8rem;
}

.launch-grid article {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.03);
}

.final-cta {
  margin-top: 0.8rem;
  color: #ffe0d7;
  font-weight: 700;
}

.waitlist {
  border-color: rgba(215, 181, 109, 0.45);
}

.waitlist-form {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.7rem;
}

.waitlist-form label {
  font-size: 0.88rem;
  color: #b9cdf0;
}

.waitlist-form input {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text);
  border-radius: 8px;
  padding: 0.62rem 0.7rem;
  outline: none;
}

.waitlist-form select {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text);
  border-radius: 8px;
  padding: 0.62rem 0.7rem;
  outline: none;
}

.waitlist-form input:focus {
  border-color: rgba(215, 181, 109, 0.85);
  box-shadow: 0 0 0 2px rgba(215, 181, 109, 0.2);
}

.waitlist-form select:focus {
  border-color: rgba(215, 181, 109, 0.85);
  box-shadow: 0 0 0 2px rgba(215, 181, 109, 0.2);
}

.waitlist-form button {
  margin-top: 0.5rem;
  background: linear-gradient(90deg, #f2daa8, #c98a2b);
  color: #071019;
  border: none;
  border-radius: 8px;
  padding: 0.72rem;
  font-weight: 800;
  cursor: pointer;
}

.waitlist-status {
  margin-top: 0.7rem;
  font-size: 0.88rem;
  color: #e8d5a8;
}

.integrations {
  margin-top: 0.7rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.integrations span {
  font-size: 0.78rem;
  border: 1px solid rgba(215, 181, 109, 0.5);
  color: #f2deaf;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  background: rgba(215, 181, 109, 0.1);
}

.artifact {
  border-color: rgba(118, 142, 211, 0.45);
}

.artifact-shell {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0.8rem;
}

.artifact-sidebar {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(13, 20, 35, 0.88);
  padding: 0.85rem;
}

.artifact-sidebar h3 {
  margin: 0 0 0.55rem;
  color: #d8def2;
  font-size: 0.95rem;
}

.artifact-sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.artifact-sidebar li {
  margin: 0.35rem 0;
  padding: 0.4rem 0.5rem;
  border-radius: 7px;
  color: #b4c1df;
}

.artifact-sidebar li.on {
  background: rgba(215, 181, 109, 0.16);
  color: #f1dfb3;
  border: 1px solid rgba(215, 181, 109, 0.35);
}

.artifact-main {
  display: grid;
  gap: 0.75rem;
}

.terminal {
  border: 1px solid rgba(118, 142, 211, 0.35);
  border-radius: 10px;
  background: #0a1020;
  padding: 0.75rem;
}

.dotline {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 0.6rem;
}

.dotline span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #7488c4;
}

.terminal p {
  margin: 0.25rem 0;
}

.terminal code {
  color: #d4def5;
}

.terminal .ok code {
  color: #d8f4b2;
}

.artifact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.7rem;
}

.artifact-cards article {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0.7rem;
  background: rgba(255, 255, 255, 0.03);
}

.artifact-cards h4 {
  margin: 0 0 0.4rem;
  color: #f0dbac;
}

@keyframes pulse {
  0% { opacity: 0.55; }
  50% { opacity: 1; }
  100% { opacity: 0.55; }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 450ms ease, transform 450ms ease;
}

.reveal.on {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 780px) {
  .artifact-shell {
    grid-template-columns: 1fr;
  }
}
