:root {
  --bg: #000000;
  --bg-elevated: #10161d;
  --yellow: #e5ff00;
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.6);
  --text-faint: rgba(255, 255, 255, 0.45);
  --card-bg: rgba(255, 255, 255, 0.06);
  --card-border: rgba(255, 255, 255, 0.08);
  --radius: 16px;
  --max-width: 1200px;
  --font: "paralucent", "Work Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Logo ---------- */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.5px;
}
.logo-mark {
  color: var(--text);
}
.logo-img {
  height: 25px;
  width: auto;
  display: block;
}
.logo-accent {
  color: var(--yellow);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, opacity 0.15s ease;
}
.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--yellow);
  color: #000;
  padding: 14px 24px;
  border-radius: 6px;
}
.btn-primary:hover {
  opacity: 0.9;
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--text);
  padding: 12px 22px;
  border-radius: 999px;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.bolt::before {
  content: "\26A1";
  font-size: 16px;
}

/* ---------- Header ---------- */
.site-header {
  position: relative;
  z-index: 10;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  padding-bottom: 28px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 15px;
}
.nav-links a:not(.btn):hover {
  color: var(--yellow);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  margin-top: -96px;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: -20px;
  background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.7) 35%,
      rgba(0, 0, 0, 0.9) 100%
    ),
    radial-gradient(ellipse at top, rgba(229, 255, 0, 0.06), transparent 55%),
    url("../images/hero-bg.png") center top / cover no-repeat,
    linear-gradient(180deg, #060a0e 0%, #000 100%);
  filter: blur(.5px);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 60%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 60%, transparent 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.coming-soon-pill {
  height: 62px;
  border-radius: 31px;
  border: 2.5px solid var(--yellow);
  background: #111;
  display: inline-flex;
  align-items: center;
  padding: 0 22px;
  gap: 12px;
  margin-bottom: 28px;
  animation: borderbeat 2s ease-in-out infinite;
}
@keyframes borderbeat {
  0%,
  100% {
    box-shadow: 0 0 8px rgba(229, 255, 0, 0.15);
  }
  50% {
    box-shadow: 0 0 20px rgba(229, 255, 0, 0.4);
  }
}
.pill-text {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}

.dot-wrap {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.dot {
  width: 13px;
  height: 13px;
  background: var(--yellow);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: dp 1.6s ease-in-out infinite;
}
.dot-ring {
  width: 13px;
  height: 13px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: dr 1.6s ease-out infinite;
}
@keyframes dp {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(0.75);
    opacity: 0.7;
  }
}
@keyframes dr {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.4);
    opacity: 0;
  }
}

.seg-row {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-left: 6px;
}
.seg-b {
  width: 11px;
  height: 24px;
  border-radius: 2px;
  background: #1e1e1e;
  transform: skewX(-14deg);
  transition: background 0.15s, box-shadow 0.15s;
  flex-shrink: 0;
}
.seg-b.on {
  background: var(--yellow);
  box-shadow: 0 0 7px rgba(229, 255, 0, 0.7);
}

.hero-title {
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.hero-title .line-white,
.hero-title .line-accent {
  display: block;
}
.hero-title .line-white {
  color: var(--text);
  font-size: clamp(40px, 7vw, 84px);
}
.hero-title .line-accent {
  color: var(--yellow);
  font-size: clamp(44px, 8vw, 96px);
}

.hero-sub {
  max-width: 620px;
  color: rgb(255, 255, 255);
  font-size: 20px;
  margin-bottom: 36px;
}

.waitlist-form {
  display: flex;
  gap: 8px;
  background: rgba(229, 255, 0, 0.07);
  padding: 8px;
  border-radius: 10px;
  width: 100%;
  max-width: 600px;
}
.waitlist-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  padding: 0 16px;
}
.waitlist-input::placeholder {
  color: var(--text-muted);
}

.form-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
}
.form-note a {
  color: var(--text);
  text-decoration: underline;
}

/* ---------- Features ---------- */
.features {
  padding: 40px 0 80px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 36px 28px;
}
.card h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 18px 0 10px;
}
.card p {
  color: var(--text-muted);
  font-size: 16px;
}
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(229, 255, 0, 0.19);
  color: var(--yellow);
  font-weight: 700;
  font-size: 18px;
}
.icon-dot::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--yellow);
}

/* ---------- Secondary CTA ---------- */
.cta {
  padding: 60px 0 120px;
}
.cta-inner {
  background: transparent;
  padding: 40px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-title {
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}
.cta-title .line-white,
.cta-title .line-glow {
  display: block;
  font-size: clamp(32px, 5vw, 52px);
}
.cta-title .line-white {
  color: var(--text);
}
.cta-title .line-glow {
  color: var(--yellow);
  text-shadow: 0 0 8px rgba(229, 255, 0, 0.9),
    0 0 22px rgba(229, 255, 0, 0.7),
    0 0 45px rgba(229, 255, 0, 0.5),
    0 0 80px rgba(229, 255, 0, 0.35);
  animation: neon-text-pulse 3.2s ease-in-out infinite;
}
@keyframes neon-text-pulse {
  0%,
  100% {
    text-shadow: 0 0 8px rgba(229, 255, 0, 0.9),
      0 0 22px rgba(229, 255, 0, 0.7),
      0 0 45px rgba(229, 255, 0, 0.5),
      0 0 80px rgba(229, 255, 0, 0.35);
  }
  50% {
    text-shadow: 0 0 6px rgba(229, 255, 0, 0.65),
      0 0 14px rgba(229, 255, 0, 0.45),
      0 0 30px rgba(229, 255, 0, 0.3),
      0 0 55px rgba(229, 255, 0, 0.2);
  }
}
.cta-sub {
  max-width: 560px;
  color: var(--text-muted);
  font-size: 18px;
  margin-bottom: 32px;
}

/* Neon pill button used in the CTA */
.btn-pill {
  position: relative;
  background: #050505;
  color: var(--text);
  border: 1.5px solid rgba(229, 255, 0, 0.55);
  padding: 16px 40px;
  border-radius: 999px;
  box-shadow: 0 0 6px rgba(229, 255, 0, 0.35),
    0 0 18px rgba(229, 255, 0, 0.25),
    inset 0 0 10px rgba(229, 255, 0, 0.08);
  transition: transform 0.15s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  animation: neon-pill-pulse 3.2s ease-in-out infinite;
}
@keyframes neon-pill-pulse {
  0%,
  100% {
    box-shadow: 0 0 6px rgba(229, 255, 0, 0.35),
      0 0 18px rgba(229, 255, 0, 0.25),
      inset 0 0 10px rgba(229, 255, 0, 0.08);
    border-color: rgba(229, 255, 0, 0.55);
  }
  50% {
    box-shadow: 0 0 4px rgba(229, 255, 0, 0.2),
      0 0 11px rgba(229, 255, 0, 0.15),
      inset 0 0 7px rgba(229, 255, 0, 0.05);
    border-color: rgba(229, 255, 0, 0.38);
  }
}
.btn-pill:hover {
  background: #050505;
  animation: none;
  border-color: rgba(229, 255, 0, 0.9);
  box-shadow: 0 0 10px rgba(229, 255, 0, 0.6),
    0 0 28px rgba(229, 255, 0, 0.4),
    0 0 50px rgba(229, 255, 0, 0.25),
    inset 0 0 14px rgba(229, 255, 0, 0.12);
}

/* ---------- Thank You page ---------- */
.thanks {
  position: relative;
  padding: 120px 0 140px;
}
.thanks-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.thanks-title {
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -1px;
  margin: 28px 0 24px;
}
.thanks-title .line-white,
.thanks-title .line-glow {
  display: block;
}
.thanks-title .line-white {
  color: var(--text);
  font-size: clamp(40px, 7vw, 84px);
}
.thanks-title .line-glow {
  color: var(--yellow);
  font-size: clamp(36px, 6vw, 72px);
  text-shadow: 0 0 8px rgba(229, 255, 0, 0.9),
    0 0 22px rgba(229, 255, 0, 0.7),
    0 0 45px rgba(229, 255, 0, 0.5),
    0 0 80px rgba(229, 255, 0, 0.35);
  animation: neon-text-pulse 3.2s ease-in-out infinite;
}
.thanks-sub {
  max-width: 620px;
  color: var(--text-muted);
  font-size: 20px;
  margin-bottom: 36px;
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 48px 0 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.copyright {
  color: var(--text-faint);
  font-size: 14px;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav {
    gap: 12px;
  }
  .nav-links {
    gap: 16px;
  }
  .nav-links a:not(.btn) {
    display: none;
  }
  .nav-links .btn-outline {
    white-space: nowrap;
    padding: 10px 16px;
    font-size: 14px;
  }
  .waitlist-form {
    flex-direction: column;
    background: transparent;
    padding: 0;
    gap: 12px;
  }
  .waitlist-input {
    background: rgba(229, 255, 0, 0.07);
    border-radius: 8px;
    padding: 14px 16px;
  }
  .btn-primary {
    justify-content: center;
  }
}

@media (max-width: 380px) {
  .logo {
    font-size: 20px;
  }
  .nav-links .btn-outline {
    padding: 9px 14px;
    font-size: 13px;
  }
}
