/* ===== CSS Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: hsl(0, 0%, 3%);
  --bg-card: hsl(0, 0%, 7%);
  --bg-zinc-950: #09090b;
  --fg: hsl(0, 0%, 95%);
  --primary: hsl(265, 89%, 66%);
  --primary-10: hsla(265, 89%, 66%, 0.1);
  --primary-20: hsla(265, 89%, 66%, 0.2);
  --primary-30: hsla(265, 89%, 66%, 0.3);
  --secondary: hsl(20, 90%, 60%);
  --secondary-10: hsla(20, 90%, 60%, 0.1);
  --secondary-20: hsla(20, 90%, 60%, 0.2);
  --secondary-30: hsla(20, 90%, 60%, 0.3);
  --muted: hsl(0, 0%, 15%);
  --muted-fg: hsl(0, 0%, 65%);
  --border: hsla(0, 0%, 100%, 0.1);
  --font-sans: 'Inter', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

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

img { max-width: 100%; display: block; }

/* ===== Utility ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.font-display { font-family: var(--font-display); }

/* ===== Scroll Animation ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.fade-in-right {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.fade-in-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  background: hsla(0, 0%, 1%, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.12);
  transition: all 0.3s;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.05em;
  cursor: pointer;
}

.nav-logo-box {
  width: 32px;
  height: 32px;
  background: var(--primary);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 700;
  font-size: 1.125rem;
}

.nav-logo span { color: var(--primary); }

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-fg);
  list-style: none;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
}

.nav-links a:hover { color: #fff; transition: color 0.2s; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 600;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  border-radius: 6px;
}

.btn-md {
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  border-radius: 6px;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  border-radius: 0;
}

.btn-xl {
  padding: 1.25rem 2.5rem;
  font-size: 1.25rem;
  border-radius: 0;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border: 1px solid transparent;
}
.btn-primary:hover { background: hsla(265, 89%, 56%, 1); }

.btn-secondary {
  background: var(--secondary);
  color: #000;
  border: 1px solid transparent;
  box-shadow: 0 0 20px hsla(20, 90%, 60%, 0.3);
}
.btn-secondary:hover { background: hsla(20, 90%, 50%, 1); }

.btn-outline-primary {
  background: var(--primary-10);
  color: var(--primary);
  border: 1px solid var(--primary-30);
}
.btn-outline-primary:hover {
  background: var(--primary-20);
  border-color: hsla(265, 89%, 66%, 0.6);
}

.btn-outline {
  background: transparent;
  color: var(--muted-fg);
  border: 1px solid hsla(0, 0%, 100%, 0.2);
}
.btn-outline:hover {
  background: hsla(0, 0%, 100%, 0.1);
  color: #fff;
  border-color: var(--primary-50, var(--primary-30));
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg) 60%, hsla(265, 89%, 66%, 0.1) 100%);
}

.hero-blob-1 {
  position: absolute;
  top: 25%;
  right: 25%;
  width: 600px;
  height: 600px;
  background: hsla(20, 90%, 60%, 0.1);
  border-radius: 50%;
  filter: blur(150px);
}

.hero-blob-2 {
  position: absolute;
  bottom: 25%;
  left: 25%;
  width: 400px;
  height: 400px;
  background: var(--primary-10);
  border-radius: 50%;
  filter: blur(120px);
}

.hero-content {
  position: relative;
  z-index: 20;
  width: 100%;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  border: 1px solid var(--secondary-30);
  background: var(--secondary-10);
  backdrop-filter: blur(8px);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.badge-primary {
  border-color: var(--primary-30);
  background: var(--primary-10);
  color: var(--primary);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: linear-gradient(90deg, var(--secondary), var(--secondary), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--muted-fg);
  margin-bottom: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle span { color: #fff; }

.hero-note {
  font-size: 1rem;
  color: var(--muted-fg);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-actions { flex-direction: row; }
}

/* ===== SECTIONS ===== */
section { padding: 6rem 0; }

.section-label {
  font-family: monospace;
  font-size: 0.875rem;
  color: var(--secondary);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.section-label-primary {
  color: var(--primary);
}

.section-header {
  max-width: 700px;
  margin: 0 auto 4rem;
  text-align: center;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-title span { color: var(--secondary); }
.section-title .text-primary { color: var(--primary); }
.text-primary { color: var(--primary); }

.section-desc {
  font-size: 1.125rem;
  color: var(--muted-fg);
}

.bg-dark { background: var(--bg-zinc-950); }
.border-top { border-top: 1px solid var(--border); }

/* ===== GRID ===== */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .two-col { grid-template-columns: 1fr 1fr; }
}

/* ===== CARDS ===== */
.card {
  background: hsla(0, 0%, 100%, 0.02);
  border: 1px solid var(--border);
  border-radius: 0;
  transition: all 0.3s;
}

.card:hover {
  background: hsla(0, 0%, 100%, 0.05);
}

.card-featured {
  border-color: var(--secondary-30);
  background: hsla(20, 90%, 60%, 0.03);
}
.card-featured:hover {
  border-color: var(--secondary);
  box-shadow: 0 0 25px hsla(20, 90%, 60%, 0.1);
}

.card:not(.card-featured):hover {
  border-color: var(--primary-30);
  box-shadow: 0 0 20px hsla(265, 89%, 66%, 0.08);
}

.card-body { padding: 2rem; }

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
  background: var(--primary-20);
}

.card-icon.secondary {
  color: var(--secondary);
  background: var(--secondary-20);
}

.card-icon svg { width: 24px; height: 24px; }

.card h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--muted-fg);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.card-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsla(0, 0%, 100%, 0.7);
}

.card-list li svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

.card-featured .card-list li svg { color: var(--secondary); }

/* ===== LIVE SECTION ===== */
.live-section {
  position: relative;
  overflow: hidden;
}

.live-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, hsla(20, 90%, 60%, 0.05), transparent);
  pointer-events: none;
}

.live-bg-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: hsla(20, 90%, 60%, 0.05);
  border-radius: 50%;
  filter: blur(200px);
  pointer-events: none;
}

.live-card {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.live-card-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  filter: blur(60px);
  opacity: 0.15;
  border-radius: 24px;
}

.live-card-header {
  background: linear-gradient(90deg, var(--secondary-20), var(--primary-20));
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.pulse-dot-sm {
  width: 6px;
  height: 6px;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.live-stats {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: hsla(0, 0%, 100%, 0.6);
  font-size: 0.875rem;
}

.live-card-body { padding: 2rem; }

.video-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, hsl(0, 0%, 18%), hsl(0, 0%, 10%));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid hsla(0, 0%, 100%, 0.05);
  position: relative;
  margin-bottom: 1.5rem;
}

.play-btn {
  width: 80px;
  height: 80px;
  background: var(--secondary-20);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  cursor: pointer;
  transition: background 0.2s;
}
.play-btn:hover { background: var(--secondary-30); }
.play-btn svg { width: 32px; height: 32px; margin-left: 4px; }

.video-badge-ai {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,0,0,0.7);
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  color: hsla(0, 0%, 100%, 0.8);
  border: 1px solid var(--border);
}
.video-badge-ai svg { width: 14px; height: 14px; color: var(--secondary); }

.video-badge-live {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(239,68,68,0.9);
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  color: #fff;
  font-weight: 700;
}

.live-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.stat-box {
  background: hsla(0, 0%, 100%, 0.05);
  padding: 0.75rem;
  border: 1px solid hsla(0, 0%, 100%, 0.05);
  text-align: center;
  border-radius: 4px;
}

.stat-box .stat-val {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
}
.stat-box.white .stat-val { color: #fff; }
.stat-box.primary .stat-val { color: var(--primary); }

.stat-box .stat-label {
  font-size: 0.75rem;
  color: var(--muted-fg);
}

.chat-box {
  background: hsla(0, 0%, 100%, 0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem;
}

.chat-box-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: hsla(0, 0%, 100%, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.chat-box-header svg { width: 14px; height: 14px; color: var(--secondary); }

.chat-messages { display: flex; flex-direction: column; gap: 0.5rem; }

.chat-msg {
  max-width: 80%;
  padding: 0.375rem 0.75rem;
  border-radius: 8px;
  font-size: 0.75rem;
  color: hsla(0, 0%, 100%, 0.7);
}

.chat-msg.user {
  background: hsla(0, 0%, 100%, 0.1);
  border-radius: 8px 8px 8px 2px;
}

.chat-msg.bot {
  background: var(--secondary-20);
  border: 1px solid var(--secondary-20);
  border-radius: 8px 8px 2px 8px;
  align-self: flex-end;
  display: flex;
  align-items: flex-start;
  gap: 0.375rem;
  color: hsla(0, 0%, 100%, 0.9);
}
.chat-msg.bot svg { width: 12px; height: 12px; color: var(--secondary); flex-shrink: 0; margin-top: 2px; }

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-list li svg {
  width: 20px;
  height: 20px;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-list li span { color: hsla(0, 0%, 100%, 0.8); }

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid var(--secondary-30);
  background: var(--secondary-10);
  color: var(--secondary);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

/* ===== GROWTH SECTION ===== */
.step-card {
  padding: 2rem;
  height: 100%;
  border: 1px solid var(--border);
  background: linear-gradient(to bottom, hsla(0,0%,100%,0.02), transparent);
  transition: all 0.3s;
  position: relative;
}

.step-card:hover {
  border-color: var(--secondary-30);
  box-shadow: 0 0 20px hsla(20, 90%, 60%, 0.08);
}

.step-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: hsla(0, 0%, 100%, 0.1);
  transition: color 0.3s;
  line-height: 1;
}

.step-card:hover .step-num { color: hsla(20, 90%, 60%, 0.2); }

.step-card-icon svg {
  width: 24px;
  height: 24px;
  color: hsla(20, 90%, 60%, 0.5);
  transition: color 0.3s;
}
.step-card:hover .step-card-icon svg { color: var(--secondary); }

.step-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.875rem;
  color: var(--muted-fg);
  line-height: 1.7;
}

/* ===== EXPERIENCE SECTION ===== */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-item {
  padding: 1.5rem;
  border: 1px solid var(--border);
  background: hsla(0, 0%, 100%, 0.02);
  transition: all 0.3s;
}

.stat-item:hover {
  background: hsla(0, 0%, 100%, 0.05);
  border-color: hsla(0, 0%, 100%, 0.2);
  box-shadow: 0 0 15px hsla(0, 0%, 100%, 0.03);
}

.stat-val {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.stat-val.primary { color: var(--primary); }
.stat-val.secondary { color: var(--secondary); }
.stat-val.white { color: #fff; }

.stat-desc { font-size: 0.875rem; color: var(--muted-fg); }

/* ===== WHY US ===== */
.why-card {
  padding: 2rem;
  border: 1px solid var(--border);
  background: hsla(0, 0%, 100%, 0.02);
  text-align: center;
  transition: all 0.3s;
}

.why-card:hover {
  background: hsla(0, 0%, 100%, 0.05);
  border-color: var(--secondary-30);
  box-shadow: 0 0 20px hsla(20, 90%, 60%, 0.08);
}

.why-num {
  width: 48px;
  height: 48px;
  background: var(--secondary-10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--secondary);
  font-size: 1.25rem;
  font-weight: 700;
}

.why-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.why-card p { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.7; }

/* ===== PRICING ===== */
.pricing-section {
  position: relative;
  overflow: hidden;
}

.pricing-blob-left {
  position: absolute;
  top: 50%;
  left: 25%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  background: var(--primary-10, hsla(265, 89%, 66%, 0.05));
  border-radius: 50%;
  filter: blur(200px);
  pointer-events: none;
}

.pricing-blob-right {
  position: absolute;
  top: 50%;
  right: 25%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  background: hsla(20, 90%, 60%, 0.05);
  border-radius: 50%;
  filter: blur(200px);
  pointer-events: none;
}

.pricing-card {
  background: rgba(0, 0, 0, 0.6);
  border-radius: 0;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}

.pricing-card.plan-a {
  border: 1px solid var(--primary-30);
}
.pricing-card.plan-a:hover {
  border-color: var(--primary);
}

.pricing-card.plan-b {
  border: 1px solid var(--secondary-30);
  box-shadow: 0 0 30px hsla(20, 90%, 60%, 0.1);
}
.pricing-card.plan-b:hover {
  border-color: var(--secondary);
}

.pricing-top-bar {
  height: 4px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.plan-a .pricing-top-bar { background: linear-gradient(90deg, var(--primary), hsla(265, 89%, 66%, 0.5)); }
.plan-b .pricing-top-bar { background: linear-gradient(90deg, var(--secondary), hsla(20, 90%, 60%, 0.5)); }

.popular-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--secondary);
  color: #000;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
}

.pricing-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.plan-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.plan-a .plan-tag {
  border: 1px solid var(--primary-30);
  background: var(--primary-10);
  color: var(--primary);
}
.plan-b .plan-tag {
  border: 1px solid var(--secondary-30);
  background: var(--secondary-10);
  color: var(--secondary);
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.pricing-desc {
  font-size: 0.875rem;
  color: var(--muted-fg);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.pricing-price {
  margin-bottom: 1.5rem;
}

.price-main {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.price-from, .price-period { font-size: 0.875rem; color: var(--muted-fg); }
.price-amount { font-size: 2.5rem; font-weight: 700; color: #fff; }
.price-currency { font-size: 1.25rem; color: hsla(0, 0%, 100%, 0.8); }
.price-note { font-size: 0.75rem; color: var(--muted-fg); margin-top: 0.25rem; }

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
}

.pricing-features li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.plan-a .pricing-features li svg { color: var(--primary); }
.plan-b .pricing-features li svg { color: var(--secondary); }
.pricing-features li span { color: hsla(0, 0%, 100%, 0.8); }

.pricing-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted-fg);
  margin-top: 2.5rem;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-note button {
  background: none;
  border: none;
  color: var(--secondary);
  cursor: pointer;
  font-weight: 500;
}
.pricing-note button:hover { text-decoration: underline; }

/* ===== CONTACT SECTION ===== */
.contact-section {
  position: relative;
  overflow: hidden;
}

.contact-blob {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: hsla(20, 90%, 60%, 0.05);
  border-radius: 50%;
  filter: blur(200px);
  pointer-events: none;
}

.contact-form-card {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  padding: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.875rem;
  color: hsla(0, 0%, 100%, 0.8);
  font-weight: 500;
}

.form-group input {
  height: 48px;
  background: hsla(0, 0%, 100%, 0.05);
  border: 1px solid var(--border);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  padding: 0 1rem;
  transition: border-color 0.2s;
  outline: none;
  border-radius: 0;
  width: 100%;
}

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

.form-group input:focus {
  border-color: var(--secondary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.form-footer-note {
  font-size: 0.75rem;
  color: var(--muted-fg);
  text-align: center;
  margin-top: 0.75rem;
}

.form-footer-note button {
  background: none;
  border: none;
  color: var(--secondary);
  cursor: pointer;
}
.form-footer-note button:hover { text-decoration: underline; }

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsla(0, 0%, 100%, 0.7);
}

.check-list li svg { width: 16px; height: 16px; color: var(--secondary); flex-shrink: 0; }

/* ===== SUCCESS STATE ===== */
.success-card {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--secondary-30);
  backdrop-filter: blur(20px);
  padding: 2rem;
  text-align: center;
  display: none;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: var(--secondary-20);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--secondary);
}
.success-icon svg { width: 32px; height: 32px; }

.success-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.success-card p { color: var(--muted-fg); margin-bottom: 1.5rem; }

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 8rem 0;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsla(20, 90%, 60%, 0.1), transparent);
  pointer-events: none;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700;
  margin-bottom: 2rem;
}

.cta-section h2 span { color: var(--secondary); }

.cta-section p {
  font-size: 1.25rem;
  color: var(--muted-fg);
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* ===== FOOTER ===== */
footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  background: #000;
  font-size: 0.875rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  margin-bottom: 1rem;
}

.footer-brand h3 span { color: var(--primary); }

.footer-brand p { color: var(--muted-fg); max-width: 340px; line-height: 1.7; }

.footer-col h4 {
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col a {
  color: var(--muted-fg);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--secondary); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
  color: var(--muted-fg);
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ===== MODAL / ONBOARDING ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: hsl(0, 0%, 8%);
  border: 1px solid var(--border);
  width: 100%;
  max-width: 520px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s;
}

.modal-overlay.open .modal {
  transform: translateY(0);
}

.modal-header {
  padding: 2rem 2rem 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.modal-header h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.modal-header p { font-size: 0.9rem; color: var(--muted-fg); }

.modal-close {
  background: none;
  border: none;
  color: var(--muted-fg);
  cursor: pointer;
  padding: 0.25rem;
  font-size: 1.5rem;
  line-height: 1;
  transition: color 0.2s;
}
.modal-close:hover { color: #fff; }

.modal-body { padding: 1.5rem 2rem 2rem; }

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.modal-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--muted-fg);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}
.modal-divider::before,
.modal-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.modal-form .form-group { margin-bottom: 1rem; }
.modal-form input {
  height: 44px;
  background: hsla(0, 0%, 100%, 0.05);
  border: 1px solid var(--border);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  padding: 0 1rem;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
  border-radius: 0;
}
.modal-form input:focus { border-color: var(--secondary); }
.modal-form input::placeholder { color: var(--muted-fg); }

/* ===== EXPERIENCE BULLET LIST ===== */
.exp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.exp-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.exp-list li svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.exp-list li span { color: hsla(0, 0%, 100%, 0.8); }

/* ===== SPIN ANIMATION ===== */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.animate-spin { animation: spin 1s linear infinite; }

/* ===== STAGGER DELAY ===== */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.45s; }

/* Max-width utilities */
.max-w-5xl { max-width: 1024px; margin-left: auto; margin-right: auto; }

/* ===== 2-STEP QUALIFICATION MODAL ===== */

.modal-qualify {
  max-width: 580px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.modal-qualify .modal-header { flex-shrink: 0; }

.modal-progress-track {
  margin: 1.25rem 2rem 0;
  height: 3px;
  background: var(--border);
  flex-shrink: 0;
}

.modal-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  width: 50%;
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-steps-body {
  overflow-y: auto;
  padding: 1.5rem 2rem 2rem;
  flex: 1;
}

/* Step slide animations */
@keyframes stepSlideInFromRight {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes stepSlideInFromLeft {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}
.step-enter-forward  { animation: stepSlideInFromRight 0.32s cubic-bezier(0.4, 0, 0.2, 1); }
.step-enter-backward { animation: stepSlideInFromLeft  0.32s cubic-bezier(0.4, 0, 0.2, 1); }

/* Field label for step 2 sections */
.field-label {
  display: block;
  font-size: 0.875rem;
  color: var(--muted-fg);
  margin-bottom: 0.625rem;
  font-weight: 500;
}

/* Radio group */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  font-size: 0.9375rem;
  color: hsla(0, 0%, 100%, 0.65);
  user-select: none;
}

.radio-option:hover {
  border-color: var(--secondary-30);
  background: var(--secondary-10);
  color: hsla(0, 0%, 100%, 0.9);
}

.radio-option input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px !important;
  height: 16px !important;
  min-width: 16px;
  padding: 0 !important;
  background: transparent !important;
  border: 2px solid hsla(0, 0%, 100%, 0.25) !important;
  border-radius: 50% !important;
  flex-shrink: 0;
  transition: border-color 0.2s;
  position: relative;
  cursor: pointer;
}

.radio-option input[type="radio"]::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondary);
  transition: transform 0.18s ease;
}

.radio-option input[type="radio"]:checked {
  border-color: var(--secondary) !important;
}

.radio-option input[type="radio"]:checked::after {
  transform: translate(-50%, -50%) scale(1);
}

.radio-option:has(input:checked) {
  border-color: var(--secondary-30);
  background: var(--secondary-10);
  color: #fff;
}

/* Checkbox grid */
.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.375rem;
}

.checkbox-option {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  font-size: 0.875rem;
  color: hsla(0, 0%, 100%, 0.65);
  user-select: none;
}

.checkbox-option:hover {
  border-color: var(--secondary-30);
  background: var(--secondary-10);
  color: hsla(0, 0%, 100%, 0.9);
}

.checkbox-option input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 15px !important;
  height: 15px !important;
  min-width: 15px;
  padding: 0 !important;
  background: transparent !important;
  border: 2px solid hsla(0, 0%, 100%, 0.25) !important;
  border-radius: 0 !important;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
  cursor: pointer;
}

.checkbox-option input[type="checkbox"]::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 4px;
  width: 4px;
  height: 7px;
  border: 2px solid var(--secondary);
  border-top: none;
  border-left: none;
  transform: rotate(45deg) scale(0);
  transition: transform 0.15s ease;
  transform-origin: center;
}

.checkbox-option input[type="checkbox"]:checked {
  border-color: var(--secondary) !important;
  background: var(--secondary-10) !important;
}

.checkbox-option input[type="checkbox"]:checked::after {
  transform: rotate(45deg) scale(1);
}

.checkbox-option:has(input:checked) {
  border-color: var(--secondary-30);
  background: var(--secondary-10);
  color: #fff;
}

/* Advertising toggle */
.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.25rem 0;
}

.toggle-row .field-label { margin-bottom: 0; }

.toggle-wrap {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.toggle-lbl {
  font-size: 0.875rem;
  color: var(--muted-fg);
  transition: color 0.25s, font-weight 0.25s;
  min-width: 1.5rem;
  text-align: center;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  cursor: pointer;
  line-height: 0;
}

.toggle-switch input[type="checkbox"] {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.toggle-track {
  display: block;
  width: 44px;
  height: 24px;
  background: hsla(0, 0%, 100%, 0.08);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: background 0.3s, border-color 0.3s;
  position: relative;
}

.toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: hsla(0, 0%, 100%, 0.3);
  transition: transform 0.3s, background 0.3s;
}

.toggle-switch input:checked + .toggle-track {
  background: var(--secondary-20);
  border-color: var(--secondary-30);
}

.toggle-switch input:checked + .toggle-track .toggle-thumb {
  transform: translateX(20px);
  background: var(--secondary);
}

.toggle-wrap:has(input:checked) .toggle-lbl:first-child { color: var(--muted-fg); font-weight: 400; }
.toggle-wrap:has(input:checked) .toggle-lbl:last-child  { color: var(--secondary); font-weight: 600; }
.toggle-wrap:not(:has(input:checked)) .toggle-lbl:first-child { color: var(--secondary); font-weight: 600; }

/* Conditional ad spend section */
.adspend-reveal {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: 0.25rem;
}

/* Step 2 action buttons */
.modal-step2-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
  align-items: stretch;
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted-fg);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  white-space: nowrap;
}

.btn-ghost:hover {
  border-color: hsla(0, 0%, 100%, 0.2);
  color: #fff;
  background: hsla(0, 0%, 100%, 0.05);
}

/* Error message */
.modal-error {
  background: hsla(0, 84%, 60%, 0.1);
  border: 1px solid hsla(0, 84%, 60%, 0.3);
  color: #fca5a5;
  font-size: 0.875rem;
  padding: 0.75rem 1rem;
  margin-bottom: 0.75rem;
}

/* Success icon */
.modal-success-icon {
  width: 64px;
  height: 64px;
  background: var(--secondary-20);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--secondary);
}
.max-w-4xl { max-width: 896px; margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }

/* Hide on small screens */
.hidden-sm {
  display: none;
}
@media (min-width: 640px) {
  .hidden-sm { display: inline-flex; }
}

/* Mobile nav toggle */
.nav-mobile-btn {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  color: var(--muted-fg);
  cursor: pointer;
  padding: 0.5rem;
}
.nav-mobile-btn svg { width: 24px; height: 24px; }

@media (min-width: 768px) {
  .nav-mobile-btn { display: none; }
}

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
  gap: 1rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.nav-mobile-menu.open { display: flex; }

.nav-mobile-menu a {
  color: var(--muted-fg);
  font-size: 0.9375rem;
  padding: 0.25rem 0;
}
.nav-mobile-menu a:hover { color: #fff; }
