:root {
  --bg-1: #020617;
  --bg-2: #061226;
  --bg-3: #091a34;
  --panel: rgba(10, 18, 34, 0.72);
  --border: rgba(148, 163, 184, 0.16);
  --text: #f8fafc;
  --muted: #b6c2d2;
  --soft: #8fa2bd;
  --cyan: #67e8f9;
  --blue: #2ea7ff;
  --blue-2: #2563eb;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --max-width: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 149, 255, 0.18), transparent 30%),
    radial-gradient(circle at 80% 30%, rgba(34, 211, 238, 0.12), transparent 25%),
    radial-gradient(circle at 60% 70%, rgba(59, 130, 246, 0.14), transparent 28%),
    linear-gradient(135deg, var(--bg-1) 0%, var(--bg-2) 45%, var(--bg-3) 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.02), rgba(255,255,255,0.01)),
    radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.18) 100%);
  z-index: 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(2, 6, 23, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.topbar-inner {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 5px 0 10px;
}

.site-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.brand-logo {
  height: 80px;
  width: auto;
  display: block;
  transition: all 0.3s ease;
  filter:
    drop-shadow(0 0 10px rgba(46, 167, 255, 0.6))
    drop-shadow(0 0 25px rgba(46, 167, 255, 0.35));
}

.brand-logo:hover {
  transform: scale(1.05);
  filter:
    drop-shadow(0 0 18px rgba(46, 167, 255, 0.9))
    drop-shadow(0 0 40px rgba(46, 167, 255, 0.6));
}

.topnav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.topnav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.topnav a:hover {
  color: #fff;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 180px);
  padding: 48px 0 32px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  color: var(--cyan);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 0.98;
  margin: 0 0 20px;
  font-weight: 900;
  letter-spacing: -0.05em;
  max-width: 700px;
}

.gradient-text {
  background: linear-gradient(90deg, #ffffff 0%, #8fdcff 35%, #42b2ff 70%, #67e8f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 700px;
  margin: 0 0 28px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #1b8dff 0%, #2563eb 100%);
  color: white;
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.38);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  color: white;
  backdrop-filter: blur(12px);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-pills span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
  font-size: 0.92rem;
  backdrop-filter: blur(12px);
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-glow {
  position: absolute;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(46, 167, 255, 0.35) 0%, rgba(46, 167, 255, 0.12) 28%, transparent 68%);
  filter: blur(24px);
  z-index: 0;
  animation: glowPulse 4s ease-in-out infinite;
}

.product-card {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.95), rgba(7, 14, 28, 0.92));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  box-shadow: var(--shadow), 0 0 80px rgba(37, 99, 235, 0.18);
  backdrop-filter: blur(24px);
  transform: perspective(1400px) rotateY(-10deg) rotateX(4deg);
  overflow: visible;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: perspective(1400px) rotateY(-8deg) rotateX(3deg) translateY(-6px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 100px rgba(37, 99, 235, 0.25);
}

.product-topbar {
  height: 56px;
  display: grid;
  grid-template-columns: 100px 1fr 80px;
  align-items: center;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01));
  overflow: visible;
}

.window-dots {
  display: flex;
  gap: 8px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
}

.product-title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 0;
}

.mini-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
  transform: translateY(10px);
  filter:
    drop-shadow(0 0 10px rgba(46, 167, 255, 0.6))
    drop-shadow(0 0 20px rgba(46, 167, 255, 0.35));
}

.product-icons {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
}

.product-body {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  padding: 20px;
}

.product-left,
.product-right {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 18px;
}

.fake-label {
  color: #ff5f9a;
  font-weight: 700;
  margin-bottom: 14px;
}

.fake-status {
  background: rgba(255,255,255,0.07);
  color: #d9e6f5;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 16px;
  line-height: 1.5;
  border: 1px solid rgba(255,255,255,0.08);
}

.video-frame {
  position: relative;
  min-height: 290px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(5, 11, 24, 0.2), rgba(3, 7, 18, 0.7)),
    radial-gradient(circle at 30% 30%, rgba(70, 180, 255, 0.16), transparent 35%),
    linear-gradient(135deg, #0e1727 0%, #101f38 45%, #0a1120 100%);
}

.video-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 55%, rgba(46, 167, 255, 0.2), transparent 24%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.play-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(37, 99, 235, 0.95);
  color: white;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  padding: 8px 12px;
  border-radius: 999px;
}

.video-meta {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
}

.video-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.video-subtitle {
  color: var(--muted);
  font-size: 0.95rem;
}

.live-ticker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #d9e6f5;
  font-size: 0.95rem;
}

.live-ticker-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.75);
  animation: liveBlink 1.2s ease-in-out infinite;
  flex-shrink: 0;
}

.live-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.live-count {
  font-weight: 800;
  color: #ffffff;
  flex-shrink: 0;
  text-transform: lowercase;
}

.publish-btn {
  width: 100%;
  border: 0;
  border-radius: 14px;
  min-height: 52px;
  background: linear-gradient(135deg, #1ea4ff 0%, #2563eb 100%);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 20px;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.28);
}

.status-list {
  margin-bottom: 18px;
}

.status-heading {
  font-weight: 800;
  margin-bottom: 12px;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  color: #dfe8f5;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.tick {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 0 18px rgba(34, 197, 94, 0.3);
  flex-shrink: 0;
}

.toggle-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
}

.toggle {
  position: relative;
  width: 54px;
  height: 30px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.1);
}

.toggle::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 4px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: white;
}

.toggle.on {
  background: linear-gradient(135deg, #2563eb, #22d3ee);
}

.toggle.on::after {
  left: 27px;
}

.content-section,
.waitlist-section {
  padding: 24px 0 36px;
}

.info-card,
.waitlist-card {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 28px;
  backdrop-filter: blur(18px);
}

.section-heading h2,
.waitlist-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-heading {
  width: 100%;
  max-width: 100%;
  margin-bottom: 24px;
}

.section-heading p,
.info-card p,
.waitlist-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.three-up {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid.two-up {
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
}

.card-grid.two-up .info-card {
  min-height: 220px;
}

.info-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.waitlist-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: start;
}

.waitlist-stat {
  margin-top: 24px;
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 22px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.waitlist-stat-label {
  color: var(--soft);
  font-size: 0.95rem;
}

.waitlist-stat-number {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}

.waitlist-form {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-weight: 700;
  color: #dce8f9;
}

.field input {
  width: 100%;
  min-height: 56px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: white;
  padding: 0 16px;
  font-size: 1rem;
  outline: none;
  font-family: inherit;
}

.field input::placeholder {
  color: #8aa0bd;
}

.form-submit {
  width: 100%;
}

.form-message {
  min-height: 28px;
  font-weight: 700;
}

.form-message.success {
  color: #86efac;
}

.form-message.error {
  color: #fca5a5;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--soft);
  font-size: 0.94rem;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1100;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.82);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease, border-color 0.2s ease;
}

.back-to-top:hover {
  border-color: rgba(103, 232, 249, 0.35);
  transform: translateY(-2px);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#register,
#founders,
#next,
#registerCard {
  scroll-margin-top: 140px;
}

.founder-badge {
  margin-top: 18px;
  display: inline-flex;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(103, 232, 249, 0.22);
  background: rgba(103, 232, 249, 0.08);
  color: #d8f8ff;
  font-weight: 700;
  line-height: 1.5;
}

.hidden {
  display: none;
}

@keyframes glowPulse {
  0% {
    transform: scale(0.96);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.06);
    opacity: 1;
  }
  100% {
    transform: scale(0.96);
    opacity: 0.72;
  }
}

@keyframes liveBlink {
  0% { opacity: 1; }
  50% { opacity: 0.45; }
  100% { opacity: 1; }
}

@media (max-width: 1080px) {
  .hero,
  .waitlist-card {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 28px;
    min-height: auto;
    padding-top: 28px;
  }

  .hero-visual {
    min-height: auto;
  }

  .product-card {
    transform: none;
  }

  .card-grid.three-up,
  .card-grid.two-up,
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .card-grid.two-up .info-card {
    min-height: auto;
  }
}

@media (max-width: 780px) {
  .topbar-inner,
  .site-shell {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-copy h1 {
    font-size: 2.5rem;
  }

  .product-body,
  .card-grid.three-up,
  .card-grid.two-up,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .live-ticker {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
  }
}
