/* =============================================
   HANDLED. — Premium Marketing Website v2
   ============================================= */

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

/* --- Design Tokens --- */
:root {
  --bg:             #07060f;
  --bg-card:        rgba(9, 6, 22, 0.72);
  --bg-card-hover:  rgba(14, 9, 32, 0.78);
  --accent:         #C8F04C;
  --accent-dim:     rgba(200, 240, 76, 0.08);
  --accent-glow:    rgba(200, 240, 76, 0.18);
  --indigo:         #6366f1;
  --text:           #F5F2ED;
  --text-muted:     rgba(245, 242, 237, 0.5);
  --text-subtle:    rgba(245, 242, 237, 0.3);
  --border:         rgba(255, 255, 255, 0.07);
  --border-strong:  rgba(255, 255, 255, 0.11);
  /* Semi-transparent card glass — dark purple tint, shows canvas through */
  --glass-bg:       rgba(9, 6, 22, 0.65);
  --glass-border:   rgba(140, 100, 255, 0.15);
  --font-head:      'Plus Jakarta Sans', sans-serif;
  --font-body:      'DM Sans', sans-serif;
  --max-width:      1140px;
  --radius:         8px;
  --radius-lg:      14px;
  --section-pad:    7rem 2rem;
}

/* --- Base --- */
/* html provides the dark purple base so the canvas blobs sit on top of it */
html {
  scroll-behavior: smooth;
  background: var(--bg);
}

/* body transparent so the fixed canvas shows through all sections */
body {
  background: transparent;
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* --- Typography --- */
h1, h2, h3, .logo {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3.2rem); line-height: 1.1; }
h3 { font-size: 1.05rem; font-weight: 700; line-height: 1.35; }
p  { line-height: 1.72; }

/* --- Utilities --- */
.accent        { color: var(--accent); }
.muted         { color: var(--text-muted); }

.gradient-text {
  background: linear-gradient(100deg, #C8F04C 0%, #e4ff8a 60%, #C8F04C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: var(--accent);
  opacity: 0.7;
}

/* --- Canvas animated background --- */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

/* --- Neon glow — base states --- */
.glass-card {
  box-shadow: 0 0 0 0 transparent;
  transition: box-shadow 0.4s ease, border-color 0.3s ease, transform 0.25s ease;
}

.neon-glow {
  box-shadow:
    0 0 18px rgba(200, 240, 76, 0.08),
    0 0 40px rgba(200, 240, 76, 0.04),
    inset 0 0 20px rgba(200, 240, 76, 0.02);
}

/* Cards that pulse with neon on hover */
.hero-stat.glass-card:hover,
.problem-card.glass-card:hover,
.waitlist-card.glass-card {
  box-shadow:
    0 0 20px rgba(200, 240, 76, 0.1),
    0 0 50px rgba(200, 240, 76, 0.05),
    inset 0 0 30px rgba(200, 240, 76, 0.025);
  border-color: rgba(200, 240, 76, 0.18);
}

.calc-card.glass-card {
  box-shadow:
    0 0 30px rgba(200, 240, 76, 0.08),
    0 0 70px rgba(200, 240, 76, 0.03),
    inset 0 0 40px rgba(200, 240, 76, 0.02);
}

/* --- Reveal animation base (GSAP sets opacity/transform) --- */
.reveal, .reveal-group > * { will-change: transform, opacity; }

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #0A0A0A;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: opacity 0.15s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 0 0 var(--accent-glow);
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border-strong);
  color: var(--text-muted);
  font-size: 0.875rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* =============================================
   NAV
   ============================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(7, 5, 18, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: rgba(140, 100, 255, 0.12);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 10rem 2rem 6rem;
  overflow: hidden;
}

/* Canvas background — JS handles the animated blobs */

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--accent);
}

.hero h1 {
  margin-bottom: 1.75rem;
  max-width: 760px;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 2.75rem;
  font-weight: 300;
  line-height: 1.8;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-microcopy {
  font-size: 0.8rem;
  color: var(--text-subtle);
  font-weight: 400;
}

/* Floating stat pills */
.hero-stats {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
}

.hero-stat {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  min-width: 160px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.hero-stat:hover {
  border-color: rgba(200, 240, 76, 0.2);
  transform: translateY(-2px);
}

.hero-stat-number {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
  line-height: 1;
  letter-spacing: -0.03em;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: block;
  margin-top: 0.4rem;
  line-height: 1.4;
  max-width: 140px;
  font-weight: 400;
}

/* =============================================
   PROBLEM SECTION
   ============================================= */
.problem {
  padding: var(--section-pad);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problem-header {
  max-width: var(--max-width);
  margin: 0 auto 3.5rem;
}

.problem h2 {
  max-width: 600px;
  margin-bottom: 1rem;
}

.problem-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 500px;
}

.problem-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.problem-card {
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.problem-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 240, 76, 0.15);
}

.stat-big {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.8rem, 5vw, 4rem);
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 0.75rem;
  display: block;
}

.problem-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 400;
}

.problem-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-subtle);
  display: block;
  margin-bottom: 1rem;
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.how {
  padding: var(--section-pad);
}

.how-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.how-header {
  margin-bottom: 4rem;
}

.how h2 { max-width: 560px; }

.steps-wrapper {
  position: relative;
}

/* Horizontal connector line — desktop only */
.steps-line {
  position: absolute;
  top: 28px;
  left: calc(28px + 1.5rem);
  right: calc(28px + 1.5rem);
  height: 1px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(200,240,76,0.3) 50%, var(--accent) 100%);
  opacity: 0.25;
  z-index: 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease, box-shadow 0.3s ease;
  cursor: default;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.step-card:hover {
  border-color: rgba(200, 240, 76, 0.2);
  transform: translateY(-3px);
  background: var(--bg-card-hover);
  box-shadow:
    0 0 20px rgba(200, 240, 76, 0.08),
    0 0 50px rgba(200, 240, 76, 0.03);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(200, 240, 76, 0.2);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.step-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1rem;
}

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

/* =============================================
   SMS DEMO SECTION
   ============================================= */
.demo {
  padding: var(--section-pad);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.demo-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.demo-copy h2 {
  margin-bottom: 1.25rem;
}

.demo-copy p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.demo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-dim);
  border: 1px solid rgba(200, 240, 76, 0.15);
  border-radius: 999px;
  padding: 0.4rem 0.875rem;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
}

/* Phone frame */
.phone-wrap {
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: 300px;
  background: rgba(9, 6, 22, 0.82);
  border: 2px solid rgba(140, 100, 255, 0.18);
  border-radius: 36px;
  padding: 16px 12px 24px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 40px rgba(99,102,241,0.1);
  position: relative;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Notch */
.phone-notch {
  width: 90px;
  height: 22px;
  background: #0A0A0A;
  border-radius: 0 0 14px 14px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.phone-notch-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #222;
}

/* SMS status bar */
.sms-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 12px;
}

.sms-contact {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.sms-contact span {
  color: var(--accent);
}

.sms-contact-sub {
  font-family: var(--font-body);
  font-size: 0.62rem;
  color: var(--text-muted);
  font-weight: 400;
  display: block;
  margin-top: 1px;
}

/* Conversation area */
.sms-messages {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 340px;
  padding: 4px;
}

.sms-msg {
  max-width: 86%;
  padding: 8px 11px;
  border-radius: 14px;
  font-size: 0.72rem;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.sms-msg.visible {
  opacity: 1;
  transform: translateY(0);
}

.sms-msg--out {
  align-self: flex-end;
  background: rgba(200, 240, 76, 0.12);
  border: 1px solid rgba(200, 240, 76, 0.2);
  color: var(--text);
  border-bottom-right-radius: 4px;
}

.sms-msg--in {
  align-self: flex-start;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  color: var(--text);
  border-bottom-left-radius: 4px;
}

.sms-time {
  font-size: 0.6rem;
  color: var(--text-subtle);
  text-align: center;
  margin: 4px 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.sms-time.visible { opacity: 1; }

/* Typing indicator */
.sms-typing {
  align-self: flex-start;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  padding: 10px 14px;
  display: flex;
  gap: 4px;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sms-typing.visible { opacity: 1; }

.typing-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--text-muted);
  animation: typingPulse 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingPulse {
  0%, 60%, 100% { opacity: 0.3; transform: scale(1); }
  30%            { opacity: 1;   transform: scale(1.2); }
}

/* Demo footer badge */
.demo-footer-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 10px;
  font-size: 0.6rem;
  color: var(--text-subtle);
  font-weight: 400;
}

.demo-footer-badge strong {
  color: var(--accent);
  font-weight: 700;
}

/* =============================================
   REVENUE CALCULATOR
   ============================================= */
.calculator {
  padding: var(--section-pad);
}

.calculator-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.calculator-header {
  margin-bottom: 3rem;
  max-width: 600px;
}

.calc-card {
  border-radius: var(--radius-lg);
  border-top: 2px solid var(--accent);
  padding: 2.5rem 2.5rem 2rem;
}

.calc-input-section {
  margin-bottom: 2.5rem;
}

.calc-input-section label {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-bottom: 1.25rem;
}

.calc-input-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* Custom range input */
#lead-slider {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 3px;
  border-radius: 999px;
  background: var(--border-strong);
  outline: none;
  cursor: pointer;
}

#lead-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: 2px solid #0A0A0A;
  box-shadow: 0 0 12px var(--accent-glow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

#lead-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 0 20px var(--accent-glow);
}

#lead-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: 2px solid #0A0A0A;
}

#lead-count {
  width: 90px;
  background: rgba(9, 6, 22, 0.8);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  color: var(--text);
  padding: 0.6rem 0.875rem;
  font-size: 0.9rem;
  font-weight: 400;
  text-align: center;
  outline: none;
  transition: border-color 0.15s ease;
  -moz-appearance: textfield;
}

#lead-count::-webkit-outer-spin-button,
#lead-count::-webkit-inner-spin-button { -webkit-appearance: none; }

#lead-count:focus { border-color: var(--accent); }

/* Results grid */
.calc-results {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.calc-result {
  background: var(--bg-card);
  padding: 1.5rem 1.25rem;
  text-align: center;
}

.calc-result--highlight {
  background: var(--bg-card-hover);
  border: 1px solid rgba(200, 240, 76, 0.15);
  border-radius: 0;
}

.calc-result-num {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--text);
  display: block;
  line-height: 1;
  letter-spacing: -0.03em;
  transition: color 0.2s ease;
}

.calc-result--highlight .calc-result-num {
  color: var(--accent);
}

.calc-result-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  display: block;
  margin-top: 0.4rem;
  font-weight: 400;
  line-height: 1.4;
}

/* Big lead count display */
.calc-lead-display {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

#lead-display-num {
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.04em;
  transition: color 0.15s ease;
}

.calc-lead-unit {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 400;
  padding-bottom: 0.2rem;
}

.calc-range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 0.7rem;
  color: var(--text-subtle);
  font-weight: 400;
}

.calc-disclaimer {
  font-size: 0.72rem;
  color: var(--text-subtle);
  font-weight: 400;
  line-height: 1.6;
}

.calc-source {
  font-size: 0.68rem;
  color: var(--text-subtle);
  font-weight: 400;
  line-height: 1.6;
  margin-top: 0.4rem;
}

.calc-source a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s ease;
}

.calc-source a:hover { color: var(--text); }

/* =============================================
   FEATURES SECTION
   ============================================= */
.features {
  padding: var(--section-pad);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.features-header {
  margin-bottom: 3.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(2px);
}

.feature-card {
  background: var(--bg-card);
  padding: 2rem 1.75rem;
  transition: background 0.2s ease, box-shadow 0.3s ease;
  position: relative;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.feature-card:hover {
  background: var(--bg-card-hover);
  box-shadow:
    0 0 20px rgba(200, 240, 76, 0.1),
    0 0 50px rgba(200, 240, 76, 0.04);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: var(--accent-dim);
  border: 1px solid rgba(200, 240, 76, 0.15);
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.feature-card h3 {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--text);
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =============================================
   WAITLIST SECTION
   ============================================= */
.waitlist {
  padding: var(--section-pad);
}

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

.waitlist h2 { margin-bottom: 1rem; }

.waitlist-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2.75rem;
  line-height: 1.75;
}

.waitlist-card {
  border-radius: var(--radius-lg);
  border-top: 2px solid var(--accent);
  padding: 2.25rem 2rem;
  margin-bottom: 1rem;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.waitlist-form input,
.waitlist-form select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  color: var(--text);
  padding: 0.9rem 1.1rem;
  font-size: 0.925rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
}

.waitlist-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-color: rgba(255,255,255,0.04);
  padding-right: 2.5rem;
  color: var(--text-muted);
  cursor: pointer;
}

.waitlist-form select option { background: #1c1c1c; color: var(--text); }

.waitlist-form input:focus,
.waitlist-form select:focus { border-color: var(--accent); }

.waitlist-form input::placeholder { color: var(--text-subtle); }

.waitlist-form .btn-primary {
  width: 100%;
  font-size: 0.95rem;
  padding: 1rem;
  margin-top: 0.25rem;
  justify-content: center;
}

/* Trust badges */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  color: var(--text-subtle);
  font-weight: 400;
}

.trust-badge::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  font-size: 0.75rem;
}

.form-reassurance {
  font-size: 0.78rem;
  color: var(--text-subtle);
  margin-top: 0.875rem;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 2rem 2rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.footer-logo {
  font-size: 1.3rem;
  letter-spacing: -0.04em;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-subtle);
}

.footer-legal {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.7rem;
  color: rgba(245, 242, 237, 0.22);
  line-height: 1.65;
}

/* =============================================
   THANK-YOU PAGE
   ============================================= */
.thankyou-body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.thankyou-card {
  text-align: center;
  max-width: 500px;
}

.thankyou-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(200, 240, 76, 0.25);
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-head);
  margin-bottom: 1.75rem;
  box-shadow: 0 0 30px rgba(200, 240, 76, 0.1);
}

.thankyou-card h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}

.thankyou-card p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2.25rem;
  line-height: 1.75;
}

/* =============================================
   RESPONSIVE — 768px
   ============================================= */
@media (max-width: 768px) {
  :root { --section-pad: 5rem 1.25rem; }

  .nav-inner { padding: 1.1rem 1.25rem; }

  .hero { padding: 8rem 1.25rem 5rem; }
  .hero h1 { font-size: clamp(2.4rem, 8vw, 3.5rem); }
  .hero-orb--lime { width: 350px; height: 350px; }
  .hero-orb--indigo { width: 280px; height: 280px; }
  .hero-stats { flex-direction: row; }
  .hero-stat { min-width: unset; flex: 1; }

  .problem-grid { grid-template-columns: 1fr; gap: 1rem; }
  .problem-header { margin-bottom: 2rem; }

  .steps-line { display: none; }
  .steps-grid { grid-template-columns: 1fr; gap: 1rem; }

  .demo-inner { grid-template-columns: 1fr; gap: 3rem; }
  .demo-copy { order: 2; }
  .phone-wrap { order: 1; }

  .calc-results { grid-template-columns: repeat(2, 1fr); }
  .calc-card { padding: 1.75rem 1.25rem 1.5rem; }
  .calc-input-row { flex-direction: column; align-items: stretch; }
  #lead-count { width: 100%; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }

  .waitlist-card { padding: 1.75rem 1.25rem; }

  .footer-inner { justify-content: flex-start; flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: clamp(2.2rem, 10vw, 3rem); }
  .hero-orb--lime { display: none; }
  .hero-orb--indigo { display: none; }
  .hero-stats { flex-direction: column; }
  .hero-stat { min-width: unset; }

  .features-grid { grid-template-columns: 1fr; }

  .calc-results { grid-template-columns: 1fr 1fr; }

  .trust-badges { gap: 1rem; }
}
