@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500&display=swap");

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

:root {
  --violet: #7c3aed;
  --violet-lt: #a78bfa;
  --violet-dk: #5b21b6;
  --cyan: #22d3ee;
  --bg: #09090b;
  --bg2: #111114;
  --bg3: #18181c;
  --text: #eeeef0;
  --muted: #71717a;
  --border: rgba(124, 58, 237, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: -30%;
  right: -20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(124, 58, 237, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  bottom: -20%;
  left: -15%;
  width: 50%;
  height: 50%;
  background: radial-gradient(ellipse, rgba(34, 211, 238, 0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.site-header {
  padding: 20px 28px;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid var(--border);
  background: rgba(9, 9, 11, 0.92);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--violet), var(--violet-lt));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.logo-text {
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.logo-text span {
  display: block;
  font-size: 9px;
  font-weight: 500;
  color: var(--violet-lt);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.urgency-bar {
  background: linear-gradient(90deg, var(--violet-dk), var(--violet), var(--violet-dk));
  text-align: center;
  padding: 9px 16px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

.urgency-bar .dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--cyan);
  border-radius: 50%;
  margin: 0 10px;
  vertical-align: middle;
  animation: blink 1.2s ease infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.main {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: 100px;
  padding: 5px 14px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--violet-lt);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 26px;
  animation: fadeUp 0.5s ease both;
}

.badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--violet-lt);
  border-radius: 50%;
  animation: blink 1.4s ease infinite;
}

.headline {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(20px, 3.5vw, 32px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  animation: fadeUp 0.5s 0.08s ease both;
}

.headline em {
  font-style: normal;
  background: linear-gradient(90deg, var(--violet-lt), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subheadline {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 10px;
  animation: fadeUp 0.5s 0.14s ease both;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 36px;
  animation: fadeUp 0.5s 0.2s ease both;
}

.stars {
  color: #facc15;
  font-size: 14px;
  letter-spacing: 2px;
}

.proof-text {
  font-size: 13px;
  color: var(--muted);
}

.proof-text strong {
  color: var(--text);
  font-weight: 500;
}

.viewers {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #4ade80;
}

.viewers::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 8px #4ade80;
  animation: blink 1.8s ease infinite;
}

.video-wrap {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow:
    0 30px 70px rgba(124, 58, 237, 0.12),
    0 0 0 1px rgba(124, 58, 237, 0.06);
  margin-bottom: 40px;
  animation: fadeUp 0.5s 0.26s ease both;
}

.video-wrap video {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  background: #000;
}

.video-caption {
  padding: 12px 20px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
  animation: fadeUp 0.5s 0.32s ease both;
}

.feature-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 20px;
  transition: border-color 0.2s, background 0.2s;
}

.feature-card:hover {
  border-color: rgba(124, 58, 237, 0.35);
  background: var(--bg3);
}

.feature-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--violet-lt);
  opacity: 0.4;
  margin-bottom: 12px;
  line-height: 1;
}

.feature-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

.spots-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 20px;
  margin-bottom: 40px;
  animation: fadeUp 0.5s 0.36s ease both;
}

.spots-left {
  font-size: 13px;
  color: var(--muted);
}

.spots-left strong {
  font-size: 18px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: #ef4444;
  display: block;
}

.spots-bar-track {
  flex: 1;
  height: 5px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  overflow: hidden;
}

.spots-bar-fill {
  height: 100%;
  width: 30%;
  background: linear-gradient(90deg, #ef4444, #f87171);
  border-radius: 100px;
  animation: fillBar 1.8s 1s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes fillBar {
  from { width: 0; }
  to { width: 30%; }
}

.spots-deadline {
  font-size: 11px;
  color: var(--muted);
  text-align: right;
  line-height: 1.4;
}

.spots-deadline strong {
  display: block;
  color: var(--text);
  font-size: 13px;
}

.cta-section {
  text-align: center;
  animation: fadeUp 0.5s 0.4s ease both;
}

.btn-cta {
  display: inline-block;
  padding: 18px 60px;
  background: linear-gradient(135deg, var(--violet), var(--violet-lt));
  border-radius: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.35);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(124, 58, 237, 0.5);
}

.btn-cta:active {
  transform: translateY(0);
}

.cta-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
}

.site-footer {
  text-align: center;
  padding: 28px 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  .main {
    padding: 40px 16px 60px;
  }
  .features {
    grid-template-columns: 1fr;
  }
  .spots-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .spots-bar-track {
    width: 100%;
  }
  .spots-deadline {
    text-align: left;
  }
  .social-proof {
    flex-wrap: wrap;
    gap: 10px;
  }
}