:root {
  --bg-1: #070b17;
  --bg-2: #0f172a;
  --panel: rgba(15, 23, 42, 0.72);
  --panel-border: rgba(148, 163, 184, 0.18);
  --text: #edf2ff;
  --muted: #cbd5e1;
  --soft: #a5b4fc;
  --brand: #6366f1;
  --brand-2: #8b5cf6;
  --success: #34d399;
  --error: #fca5a5;
  --shadow: rgba(15, 23, 42, 0.5);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Manrope', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(99, 102, 241, 0.28), transparent 28%),
    radial-gradient(circle at bottom right, rgba(168, 85, 247, 0.25), transparent 22%),
    linear-gradient(135deg, var(--bg-1) 0%, var(--bg-2) 45%, #111827 100%);
  color: var(--text);
}

.page-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 28px 54px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.45);
  font-weight: 800;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 1.05rem;
}

.brand-copy span {
  font-size: 0.74rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.topbar-badge {
  border: 1px solid rgba(96, 165, 250, 0.35);
  background: rgba(14, 165, 233, 0.12);
  color: #dbeafe;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.hero-layout {
  min-height: calc(100vh - 90px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.copy-column {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--soft);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 800;
}

.copy-column h1 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.08em;
  font-weight: 800;
}

.subhead {
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.stats {
  margin: 28px 0 22px;
  display: grid;
  grid-template-columns: minmax(84px, 0.9fr) minmax(84px, 0.9fr) minmax(120px, 1.45fr);
  gap: 12px;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  background: rgba(15, 23, 42, 0.56);
  border: 1px solid var(--panel-border);
  border-radius: 18px;
  padding: 14px 10px;
  text-align: center;
  backdrop-filter: blur(6px);
}

.stat-card strong {
  display: block;
  font-size: clamp(1.1rem, 2vw, 1.95rem);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.04em;
  text-align: center;
}

.stat-card span {
  display: block;
  font-size: 0.68rem;
  color: var(--soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.4;
}

.stat-card:nth-child(3) {
  min-height: 110px;
  padding-inline: 12px;
}

.benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.benefits li {
  position: relative;
  padding-left: 24px;
  color: #dbeafe;
  line-height: 1.6;
}

.benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--success);
  font-weight: 800;
}

.media-column {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.video-wrap {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.4), rgba(16, 185, 129, 0.18));
  border: 1px solid var(--panel-border);
  box-shadow: 0 32px 80px var(--shadow);
  isolation: isolate;
}

.video-wrap video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  background: #020617;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(82%, 420px);
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
  padding: 18px 16px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.video-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.video-kicker {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #dbeafe;
  font-weight: 800;
}

.video-overlay strong {
  display: block;
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  line-height: 1.25;
  letter-spacing: -0.04em;
  text-align: center;
}

.form-card {
  background: var(--panel);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 20px;
  padding: 24px 22px;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.45);
}

.form-kicker {
  margin: 0 0 8px;
  color: var(--soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-card h2 {
  margin: 0 0 18px;
  font-size: clamp(1.8rem, 2vw, 2.5rem);
  line-height: 1.1;
}

form {
  display: grid;
  gap: 16px;
}

form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

input {
  width: 100%;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 12px;
  padding: 15px 14px;
  color: var(--text);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus {
  border-color: rgba(99, 102, 241, 1);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.18);
}

.primary-btn {
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 15px 18px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: white;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 12px 28px rgba(99, 102, 241, 0.32);
}

.primary-btn:hover {
  transform: translateY(-1px);
}

.primary-btn:disabled {
  opacity: 0.7;
  cursor: progress;
}

.form-error {
  min-height: 20px;
  margin: 0;
  color: var(--error);
  font-size: 0.9rem;
}

.success-panel {
  display: grid;
  gap: 12px;
  text-align: center;
  padding: 8px 0 0;
}

.success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto;
  font-weight: 800;
  background: rgba(16, 185, 129, 0.15);
  color: #6ee7b7;
  border: 1px solid rgba(16, 185, 129, 0.28);
}

.success-panel h2 {
  margin: 0;
  font-size: 1.5rem;
}

.success-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.small-print {
  margin-top: 12px;
  font-size: 0.78rem;
  text-align: center;
  color: #94a3b8;
}

.hidden {
  display: none !important;
}

@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
    padding-top: 16px;
  }

  .copy-column {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .page-shell {
    padding-left: 14px;
    padding-right: 14px;
    padding-bottom: 32px;
  }

  .topbar {
    align-items: flex-start;
    gap: 10px;
    padding-bottom: 12px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 28px;
    height: 28px;
    border-radius: 9px;
  }

  .brand-copy strong {
    font-size: 0.92rem;
  }

  .brand-copy span {
    font-size: 0.62rem;
  }

  .topbar-badge {
    padding: 7px 12px;
    font-size: 0.58rem;
    letter-spacing: 0.08em;
  }

  .copy-column h1 {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
    line-height: 0.94;
    letter-spacing: -0.065em;
  }

  .subhead {
    margin-top: 16px;
    font-size: 1rem;
    line-height: 1.55;
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 20px 0 18px;
  }

  .stat-card {
    min-height: 84px;
    padding: 12px 10px;
  }

  .stat-card strong {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
    margin-bottom: 6px;
  }

  .benefits {
    gap: 12px;
  }

  .benefits li {
    padding-left: 22px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .video-wrap video {
    min-height: 220px;
  }

  .video-overlay {
    width: min(86%, 320px);
    padding: 12px 14px;
    gap: 6px;
  }

  .video-kicker {
    font-size: 0.58rem;
    letter-spacing: 0.08em;
  }

  .video-overlay strong {
    font-size: 1rem;
    line-height: 1.3;
  }

  .form-card {
    padding: 18px 16px;
  }

  .form-card h2 {
    font-size: 2rem;
  }

  .primary-btn {
    font-size: 0.98rem;
    padding: 14px 16px;
  }

  .small-print {
    font-size: 0.72rem;
  }
}
