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

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

:root {
  --primary: #4f46e5; --primary-lt: #818cf8; --primary-dk: #3730a3; --accent: #a5b4fc;
  --bg: #020617; --bg2: #0f172a; --bg3: #1e293b; --text: #f8fafc; --muted: #64748b;
  --border: #4f46e524;
}

html { scroll-behavior: smooth; }

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

body::before {
  content: ""; position: fixed; top: -20%; left: -10%; width: 50%; height: 50%;
  background: radial-gradient(ellipse, #4f46e518 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}

body::after {
  content: ""; position: fixed; bottom: -25%; right: -15%; width: 55%; height: 55%;
  background: radial-gradient(ellipse, #a5b4fc0f 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}

.urgency-bar {
  background: linear-gradient(90deg, #3730a3, #4f46e5, #3730a3); text-align: center; padding: 9px 16px;
  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: #a5b4fc; border-radius: 50%; margin: 0 10px; vertical-align: middle;
  animation: blink 1.2s ease infinite;
}

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

.site-header {
  padding: 20px 28px; display: flex; justify-content: center; align-items: center;
  border-bottom: 1px solid var(--border); background: #020617eb; 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, #4f46e5, #818cf8);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: #fff;
}

.logo-text { font-size: 16px; font-weight: 700; color: var(--text); line-height: 1.2; }
.logo-text span { display: block; font-size: 9px; font-weight: 500; color: #818cf8; letter-spacing: 0.14em; text-transform: uppercase; }

.header-meta {
  font-size: 11px; font-weight: 600; color: var(--muted);
  letter-spacing: 0.06em; text-transform: uppercase;
  display: flex; align-items: center; gap: 6px;
    position: absolute; right: 28px;
}

.header-meta::before {
  content: ""; width: 6px; height: 6px;
  background: #818cf8; border-radius: 50%; animation: blink 1.8s ease infinite;
}

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

.badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: #4f46e518; border: 1px solid #4f46e538; border-radius: 100px; padding: 5px 14px;
  font-size: 11px; font-weight: 600; color: #818cf8; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 26px; animation: fadeUp 0.5s ease both;
}

.badge::before {
  content: ""; width: 6px; height: 6px; background: #818cf8; border-radius: 50%; animation: blink 1.4s ease infinite;
}

.headline {
  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;
  text-align: center;
}

.headline em {
  font-style: normal;
  background: linear-gradient(90deg, #818cf8, #a5b4fc);
  -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: 0 auto 10px;
  animation: fadeUp 0.5s 0.14s ease both;
  text-align: center;
}

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

.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: 16px; overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 30px 70px #4f46e51a;
  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: #0f172a;
  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: #0f172a99; 
  border: 1px solid var(--border); border-radius: 16px;
  padding: 24px 20px; transition: all 0.25s ease;
}

.feature-card:hover {
  border-color: #4f46e558; background: #0f172add;
}


.feature-num {
  font-size: 28px; font-weight: 700; color: #818cf8;
  opacity: 0.4; margin-bottom: 12px; line-height: 1;
}
.feature-title { font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.feature-text { font-size: 13px; color: var(--muted); line-height: 1.55; }

.survey-section {
  background: #0f172a; border: 1px solid var(--border); border-radius: 16px; padding: 32px 28px;
  margin-bottom: 40px; animation: fadeUp 0.5s 0.36s ease both;
}

.survey-section::before {
  content: ""; display: block; width: 60px; height: 4px; background: #4f46e5; border-radius: 2px; margin-bottom: 20px;
}

.survey-question {
  font-size: 16px; font-weight: 600;
  margin-bottom: 20px; line-height: 1.5; text-align: center;
}

.survey-option {
  display: block; width: 100%; background: transparent; border: 1px solid var(--border);
  border-radius: 10px; padding: 14px 18px; margin-bottom: 10px; color: #f8fafc;
  font-size: 14px; font-family: inherit; cursor: pointer; text-align: left; transition: all 0.2s;
}

.survey-option:hover {
  border-color: #4f46e5; background: #4f46e50d;
}

.survey-option.selected {
  border-color: #4f46e5; background: #4f46e515; color: #818cf8;
}

.quiz-block {
  margin-bottom: 24px; padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  animation: fadeUp 0.3s ease both;
}
.quiz-block:last-of-type { border-bottom: none; }

.stats-bar { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 40px; animation: fadeUp 0.5s 0.4s ease both; }
.stat-box { text-align: center; padding: 20px 12px; background: #0f172a; border: 1px solid var(--border); border-radius: 16px; }

.stat-label {
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px;
}

.stat-value {
  font-size: 28px; font-weight: 800;
  font-style: italic; color: var(--text);
}

.stat-value.red { color: #ef4444; }

.contact-form {
  margin-top: 32px; padding-top: 28px;
  border-top: 2px solid var(--border);
}

.contact-form.hidden { display: none; }

.form-title {
  font-size: 18px; font-weight: 700; text-align: center; margin-bottom: 8px;
}

.form-subtitle {
  font-size: 13px; color: var(--muted); text-align: center;
  margin-bottom: 24px; line-height: 1.5;
}

.reg-form { display: flex; flex-direction: column; gap: 16px; }

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

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 12px; font-weight: 600; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.08em;
}

.form-group input {
  background: #020617; border: 1px solid var(--border); border-radius: 10px;
  padding: 12px 16px; font-size: 14px; font-family: inherit; color: #f8fafc; outline: none; transition: border-color 0.2s;
}

.form-group input::placeholder { color: var(--muted); opacity: 0.5; }

.form-group input:focus {
  border-color: #4f46e5;
}

.submit-btn {
  background: #4f46e5; color: #fff; border: none;
  border-radius: 12px; padding: 14px 28px; font-size: 15px; font-weight: 700;
  font-family: inherit; cursor: pointer; transition: opacity 0.2s, transform 0.2s; margin-top: 8px;
  
}

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

.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;
}

.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #0f172a; border-top: 1px solid var(--border);
  padding: 16px 24px; display: flex; align-items: center;
  justify-content: center; gap: 18px; z-index: 9999;
  font-size: 13px; color: var(--muted); flex-wrap: wrap;
}

.cookie-banner p { margin: 0; line-height: 1.5; text-align: center; }
.cookie-banner a { color: var(--text); text-decoration: underline; }

.cookie-btn {
  background: linear-gradient(135deg, #4f46e5, #818cf8);
  color: #fff; border: none; padding: 10px 24px;
  border-radius: 100px;
  font-size: 13px; font-weight: 600; cursor: pointer; white-space: nowrap;
}

.cookie-banner.hidden { display: none; }

.footer-links {
  margin-top: 8px; display: flex; gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-links a { font-size: 11px; color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: #818cf8; text-decoration: underline; }

@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; }
  .stats-bar { grid-template-columns: 1fr; }
  .social-proof { flex-wrap: wrap; gap: 10px; }
  .header-meta { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .stat-box + .stat-box::before { display: none; }
}
