*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #0a0a0f;
  --surface: #111118;
  --surface2: #1a1a24;
  --surface3: #222230;
  --border: rgba(255,255,255,0.07);
  --border-hover: rgba(255,255,255,0.15);
  --accent: #a78bfa;
  --accent-dim: rgba(167,139,250,0.12);
  --accent-glow: rgba(167,139,250,0.25);
  --text: #f0f0f5;
  --muted: #6b6b80;
  --muted2: #9898b0;
  --green: #34d399;
  --font: 'Syne', sans-serif;
  --mono: 'DM Mono', monospace;
}
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font); min-height: 100vh; overflow-x: hidden; }

body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}

/* ── HERO SECTION ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

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

/* Main hero image - podcaster at mic */
.hero-img-main {
  position: absolute;
  right: 0; top: 0;
  width: 55%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.45) saturate(0.8);
}

/* Purple overlay gradient */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, #0a0a0f 42%, rgba(10,10,15,0.85) 60%, rgba(10,10,15,0.3) 100%);
  z-index: 1;
}

/* Accent glow */
.hero-bg::before {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(167,139,250,0.12) 0%, transparent 65%);
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 80px;
  width: 100%;
}

.logo {
  position: absolute;
  top: 36px; left: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
  animation: fadeUp 0.5s ease both;
}

.logo-mark {
  width: 36px; height: 36px;
  background: var(--accent);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}

.logo-mark svg { width: 20px; height: 20px; }
.logo-name { font-size: 20px; font-weight: 800; letter-spacing: -0.02em; }
.logo-badge {
  font-family: var(--mono); font-size: 9px;
  background: var(--accent-dim); border: 0.5px solid rgba(167,139,250,0.3);
  color: var(--accent); padding: 3px 8px; border-radius: 20px;
  letter-spacing: 0.06em; text-transform: uppercase;
}

.hero-tag {
  font-family: var(--mono); font-size: 11px; color: var(--accent);
  letter-spacing: 0.12em; text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 20px;
  animation: fadeUp 0.5s 0.1s ease both;
}
.hero-tag::before { content: ''; width: 28px; height: 1px; background: var(--accent); opacity: 0.6; }

h1 {
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.035em;
  max-width: 560px;
  animation: fadeUp 0.5s 0.15s ease both;
}

h1 em { font-style: normal; color: var(--accent); }

.hero-sub {
  margin-top: 20px;
  font-size: 17px;
  color: var(--muted2);
  line-height: 1.65;
  max-width: 440px;
  animation: fadeUp 0.5s 0.2s ease both;
}

/* Social proof avatars */
.social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  animation: fadeUp 0.5s 0.25s ease both;
}

.avatar-stack { display: flex; }

.avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -10px;
  object-fit: cover;
  filter: brightness(0.9);
}

.avatar:first-child { margin-left: 0; }

.proof-text { font-size: 13px; color: var(--muted2); line-height: 1.5; }
.proof-text strong { color: var(--text); font-weight: 600; }

.proof-divider { width: 1px; height: 32px; background: var(--border); }

.live-dot { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--green); font-family: var(--mono); }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }

/* Feature pills */
.feature-pills {
  display: flex;
  gap: 10px;
  margin-top: 32px;
  flex-wrap: wrap;
  animation: fadeUp 0.5s 0.3s ease both;
}

.pill {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 0.5px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px; color: var(--muted2);
}

.pill svg { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; }

.hero-cta {
  margin-top: 44px;
  animation: fadeUp 0.5s 0.35s ease both;
}

.btn-hero {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: #0a0a0f;
  font-family: var(--font); font-size: 15px; font-weight: 700;
  padding: 16px 32px; border-radius: 12px;
  border: none; cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}
.btn-hero:hover { background: #c4b5fd; transform: translateY(-2px); box-shadow: 0 10px 30px var(--accent-glow); }
.btn-hero svg { width: 16px; height: 16px; }

/* How it works strip */
.how-strip {
  position: relative; z-index: 3;
  background: rgba(255,255,255,0.03);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.how-item {
  display: flex; align-items: center; gap: 14px;
  padding: 0 40px;
  border-right: 0.5px solid var(--border);
}
.how-item:last-child { border-right: none; }

.how-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 0.5px solid rgba(167,139,250,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 12px; color: var(--accent);
  flex-shrink: 0;
}

.how-text { font-size: 13px; color: var(--muted2); line-height: 1.4; }
.how-text strong { color: var(--text); display: block; font-size: 14px; margin-bottom: 2px; }

/* Floating kit preview card on hero */
.kit-float {
  position: absolute;
  right: 48px; bottom: 80px;
  width: 280px;
  z-index: 4;
  animation: floatIn 0.7s 0.4s ease both;
}

.kit-float-inner {
  background: rgba(17,17,24,0.92);
  backdrop-filter: blur(20px);
  border: 0.5px solid rgba(167,139,250,0.2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
}

.kit-float-header {
  background: linear-gradient(135deg, #1a1520 0%, #0f1428 100%);
  padding: 16px;
  display: flex; align-items: center; gap: 10px;
}

.kit-float-avatar {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; color: #1a1520;
}

.kit-float-name { font-size: 13px; font-weight: 700; color: #fff; }
.kit-float-cat { font-size: 10px; color: rgba(255,255,255,0.4); margin-top: 1px; }

.kit-float-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px; padding: 14px;
}

.kit-float-stat {
  background: rgba(255,255,255,0.05);
  border-radius: 8px; padding: 10px;
  text-align: center;
}

.kit-float-val { font-size: 16px; font-weight: 800; color: var(--text); }
.kit-float-key { font-size: 9px; color: var(--muted); margin-top: 1px; }

.kit-float-badge {
  margin: 0 14px 14px;
  background: rgba(167,139,250,0.12);
  border: 0.5px solid rgba(167,139,250,0.25);
  border-radius: 8px;
  padding: 10px 12px;
  display: flex; align-items: center; justify-content: space-between;
}

.kit-float-badge-label { font-size: 11px; color: var(--muted2); }
.kit-float-badge-val { font-size: 13px; font-weight: 700; color: var(--accent); }

/* ── TESTIMONIALS ── */
.testimonials {
  max-width: 1100px; margin: 0 auto;
  padding: 80px 48px;
}

.section-eyebrow {
  font-family: var(--mono); font-size: 10px; color: var(--accent);
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 40px;
  display: flex; align-items: center; gap: 12px;
}
.section-eyebrow::after { content: ''; flex: 1; max-width: 60px; height: 1px; background: var(--accent); opacity: 0.4; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.tcard {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  transition: border-color 0.3s;
}
.tcard:hover { border-color: rgba(167,139,250,0.25); }

.tcard-quote {
  font-size: 14px; color: var(--muted2); line-height: 1.7;
  margin-bottom: 20px;
}
.tcard-quote::before { content: '"'; color: var(--accent); font-size: 20px; font-weight: 800; }

.tcard-person { display: flex; align-items: center; gap: 12px; }

.tcard-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  filter: brightness(0.9);
}

.tcard-name { font-size: 13px; font-weight: 700; color: var(--text); }
.tcard-show { font-size: 11px; color: var(--muted); margin-top: 2px; font-family: var(--mono); }

/* ── FORM SECTION ── */
.form-section {
  max-width: 700px; margin: 0 auto;
  padding: 0 24px 100px;
}

.form-section-header {
  text-align: center;
  padding: 60px 0 48px;
}

.form-section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.form-section-header h2 em { font-style: normal; color: var(--accent); }
.form-section-header p { font-size: 15px; color: var(--muted2); line-height: 1.6; }

/* Steps */
.steps-bar { display: flex; gap: 5px; margin-bottom: 24px; }
.step-pip { height: 2px; border-radius: 2px; background: var(--surface3); flex: 1; transition: all 0.4s ease; }
.step-pip.active { background: var(--accent); box-shadow: 0 0 8px var(--accent-glow); }
.step-pip.done { background: rgba(167,139,250,0.4); }

/* Form card */
.form-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(167,139,250,0.06);
}

.section { padding: 32px; border-bottom: 0.5px solid var(--border); display: none; }
.section.active { display: block; }

.section-header { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 28px; }
.section-num {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--accent-dim); border: 0.5px solid rgba(167,139,250,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 11px; color: var(--accent);
  flex-shrink: 0; margin-top: 1px;
}
.section-title { font-size: 16px; font-weight: 700; color: var(--text); }
.section-sub { font-size: 12px; color: var(--muted); margin-top: 3px; }

.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.span2 { grid-column: span 2; }

label { font-size: 12px; font-weight: 500; color: var(--muted2); letter-spacing: 0.02em; }
label .req { color: var(--accent); margin-left: 2px; }

input[type="text"], input[type="email"], textarea, select {
  background: var(--surface2);
  border: 0.5px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  -webkit-appearance: none; appearance: none;
}
input[type="text"]::placeholder, input[type="email"]::placeholder, textarea::placeholder { color: var(--muted); }
input[type="text"]:focus, input[type="email"]:focus, textarea:focus, select:focus {
  border-color: rgba(167,139,250,0.4);
  box-shadow: 0 0 0 3px rgba(167,139,250,0.08);
}
textarea { resize: vertical; min-height: 88px; line-height: 1.55; }
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6b80' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  background-color: var(--surface2); padding-right: 36px; cursor: pointer;
}
select option { background: #1a1a24; color: var(--text); }
.hint { font-size: 11px; color: var(--muted); font-family: var(--mono); line-height: 1.5; margin-top: 2px; }

.field-error input, .field-error textarea, .field-error select {
  border-color: rgba(248,113,113,0.6) !important;
  box-shadow: 0 0 0 3px rgba(248,113,113,0.1) !important;
}
.error-msg {
  font-size: 11px; color: #f87171;
  font-family: var(--mono); margin-top: 4px;
  display: none;
}
.field-error .error-msg { display: block; }


.logo-upload-area {
  background: var(--surface2);
  border: 1px dashed rgba(167,139,250,0.25);
  border-radius: 10px;
  padding: 20px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}
.logo-upload-area:hover {
  border-color: rgba(167,139,250,0.5);
  background: rgba(167,139,250,0.04);
}
.logo-upload-area.has-logo {
  border-style: solid;
  border-color: rgba(167,139,250,0.3);
}
.logo-upload-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--muted);
}
.logo-upload-text {
  font-size: 13px;
  color: var(--muted2);
  font-weight: 500;
}
.logo-upload-hint {
  font-size: 11px;
  color: var(--muted);
  font-family: var(--mono);
}

/* Package cards */
.package-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; }
.pkg {
  background: var(--surface2); border: 0.5px solid var(--border);
  border-radius: 14px; padding: 18px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color 0.2s;
}
.pkg:focus-within { border-color: rgba(167,139,250,0.3); }
.pkg-name { font-size: 11px; font-weight: 700; color: var(--muted2); text-transform: uppercase; letter-spacing: 0.08em; }
.pkg-field { display: flex; flex-direction: column; gap: 5px; }
.pkg-field > label { font-size: 10px; color: var(--muted); }
.pkg-field > input[type="text"] {
  background: var(--surface3); border: 0.5px solid var(--border);
  border-radius: 8px; font-size: 13px; padding: 9px 11px;
}
.price-row {
  display: flex; align-items: center;
  background: var(--surface3); border: 0.5px solid var(--border);
  border-radius: 8px; overflow: hidden; transition: border-color 0.2s;
}
.price-row:focus-within { border-color: rgba(167,139,250,0.4); }
.price-symbol {
  font-family: var(--mono); font-size: 13px; color: var(--muted);
  padding: 0 0 0 11px; flex-shrink: 0; pointer-events: none; user-select: none;
}
.price-row input {
  background: transparent !important; border: none !important; border-radius: 0 !important;
  padding: 9px 6px 9px 2px !important; font-size: 13px !important;
  color: var(--text) !important; font-family: var(--font) !important;
  flex: 1; min-width: 0; outline: none !important; box-shadow: none !important; width: auto !important;
}
.price-row input::placeholder { color: var(--muted); }
.price-symbol { padding: 0 0 0 10px !important; margin-right: 0 !important; }

/* Nav */
.nav-row {
  padding: 18px 32px; display: flex;
  justify-content: space-between; align-items: center;
  background: rgba(10,10,15,0.6); border-top: 0.5px solid var(--border);
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: 10px;
  font-family: var(--font); font-size: 14px; font-weight: 700;
  cursor: pointer; transition: all 0.2s; border: none; outline: none;
}
.btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.btn-ghost { background: transparent; color: var(--muted2); border: 0.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--border-hover); color: var(--text); }
.btn-primary { background: var(--accent); color: #0a0a0f; }
.btn-primary:hover { background: #c4b5fd; transform: translateY(-1px); box-shadow: 0 6px 20px var(--accent-glow); }
.btn-primary:active { transform: translateY(0); }
.progress-text { font-family: var(--mono); font-size: 10px; color: var(--muted); letter-spacing: 0.05em; }

/* Preview */
.preview-section { padding: 28px 32px 0; }
.preview-eyebrow {
  font-family: var(--mono); font-size: 10px; color: var(--accent);
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 18px; display: flex; align-items: center; gap: 8px;
}
.preview-eyebrow::after { content: ''; flex: 1; height: 0.5px; background: var(--border); }

.preview-kit { background: #fff; border-radius: 14px; overflow: hidden; color: #111; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.kit-header { background: linear-gradient(135deg, #1a1520 0%, #0f1420 100%); padding: 28px; }
.kit-podcast-row { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.kit-avatar {
  width: 52px; height: 52px; border-radius: 12px; background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 800; color: #1a1520; flex-shrink: 0;
}
.kit-podcast-name { font-size: 19px; font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.kit-podcast-niche { font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 3px; }
.kit-desc { font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.6; }
.kit-body { padding: 22px 28px; }
.kit-section-label { font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #aaa; margin-bottom: 12px; }
.kit-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-bottom: 20px; }
.kit-stat { background: #f6f4f0; border-radius: 8px; padding: 12px 10px; text-align: center; }
.kit-stat-val { font-size: 17px; font-weight: 800; color: #1a1520; }
.kit-stat-key { font-size: 9px; color: #999; margin-top: 2px; line-height: 1.3; }
.kit-divider { height: 0.5px; background: #ece8e0; margin: 18px 0; }
.kit-packages { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.kit-pkg { border: 1px solid #ece8e0; border-radius: 8px; padding: 12px; background: #fdfcfa; }
.kit-pkg-name { font-size: 9px; font-weight: 700; color: #bbb; text-transform: uppercase; letter-spacing: 0.07em; }
.kit-pkg-price { font-size: 20px; font-weight: 800; color: #7c5cbf; margin: 4px 0 2px; }
.kit-pkg-desc { font-size: 9px; color: #bbb; line-height: 1.4; }
.kit-footer { padding: 14px 28px; background: #f6f4f0; display: flex; justify-content: space-between; align-items: center; border-top: 0.5px solid #ece8e0; }
.kit-host-name { font-size: 13px; font-weight: 700; color: #1a1520; }
.kit-host-email { font-size: 10px; color: #aaa; margin-top: 1px; }
.kit-brand { font-size: 10px; color: #bbb; text-align: right; }
.kit-brand strong { color: #7c5cbf; display: block; font-size: 12px; font-weight: 800; }

/* Download */
.download-row { padding: 24px 32px; background: rgba(10,10,15,0.6); border-top: 0.5px solid var(--border); display: none; flex-direction: column; gap: 14px; }
.download-row.visible { display: flex; }
.price-tag {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; background: var(--accent-dim);
  border: 0.5px solid rgba(167,139,250,0.2); border-radius: 14px;
}
.price-tag-label { font-size: 13px; font-weight: 700; color: var(--muted2); }
.price-tag-desc { font-size: 11px; color: var(--muted); font-family: var(--mono); margin-top: 3px; }
.price-tag-amount { font-size: 32px; font-weight: 800; color: var(--accent); letter-spacing: -0.03em; }
.btn-download { width: 100%; justify-content: center; padding: 15px; font-size: 15px; border-radius: 12px; }
.btn-edit { width: 100%; justify-content: center; padding: 13px; font-size: 14px; border-radius: 12px; }

@keyframes fadeUp { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:translateY(0)} }
@keyframes floatIn { from{opacity:0;transform:translateY(30px) scale(0.96)} to{opacity:1;transform:translateY(0) scale(1)} }
@keyframes pulse { 0%,100%{opacity:1;box-shadow:0 0 0 0 rgba(52,211,153,0.4)} 50%{opacity:0.8;box-shadow:0 0 0 6px rgba(52,211,153,0)} }

@media(max-width:768px){
  .hero-img-main{width:100%;opacity:0.3}
  .hero-content{padding:100px 24px 60px}
  .logo{left:24px}
  .kit-float{display:none}
  .how-strip{flex-direction:column;gap:20px;padding:24px}
  .how-item{border-right:none;border-bottom:0.5px solid var(--border);padding:0 0 20px;width:100%}
  .how-item:last-child{border-bottom:none;padding-bottom:0}
  .testimonials{padding:48px 24px}
  .testimonials-grid{grid-template-columns:1fr}
  .field-grid{grid-template-columns:1fr}
  .field.span2{grid-column:span 1}
  .package-grid{grid-template-columns:1fr}
  .kit-stats{grid-template-columns:repeat(2,1fr)}
  .kit-packages{grid-template-columns:1fr}
  h1{font-size:40px}
}
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
