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

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

:root {
  --black: #080808;
  --dark: #0f0f0f;
  --card: #131313;
  --border: #1e1e1e;
  --mid: #666666;
  --light: #999999;
  --white: #F0F0F0;
  --pure: #FFFFFF;
  --accent: #B9FF4B;
  --accent-dim: rgba(185, 255, 75, 0.08);
  --accent-glow: rgba(185, 255, 75, 0.18);
  --radius: 8px;
  --radius-lg: 16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--black);
  color: var(--white);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

/* ── UTILITY ── */
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 720px; margin: 0 auto; padding: 0 24px; }

.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--black);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform .15s, box-shadow .2s, opacity .2s;
  text-decoration: none;
  letter-spacing: -.01em;
  box-shadow: 0 0 20px rgba(185,255,75,.2);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255,255,255,.38) 50%,
    transparent 80%
  );
  transform: skewX(-15deg);
  animation: btn-shimmer 3.2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes btn-shimmer {
  0%   { left: -100%; opacity: 0; }
  10%  { opacity: 1; }
  40%  { left: 150%; opacity: 1; }
  41%  { opacity: 0; }
  100% { left: 150%; opacity: 0; }
}
.btn:hover { opacity: .92; transform: translateY(-1px); text-decoration: none; box-shadow: 0 0 32px rgba(185,255,75,.4); color: var(--black); }

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--white);
  padding: 13px 27px;
  box-shadow: none;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-dim); box-shadow: 0 0 16px rgba(185,255,75,.12); }

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
.logo {
  font-size: 18px;
  font-weight: 800;
  color: var(--pure);
  letter-spacing: -.04em;
  text-decoration: none;
}
.logo span { color: var(--accent); }
.logo-img {
  height: 32px;
  width: auto;
  display: block;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  color: var(--light);
  font-size: 14px;
  transition: color .2s;
  text-decoration: none;
}
.nav-links a:hover { color: var(--white); }
.nav-cta { margin-left: 8px; padding: 10px 20px; font-size: 14px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--white); margin: 5px 0; transition: .3s; }

/* ── HERO ── */
.hero {
  padding: 120px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -160px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(185,255,75,.09) 0%, transparent 70%);
  pointer-events: none;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(185,255,75,.25);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 32px;
  box-shadow: 0 0 16px rgba(185,255,75,.1);
}
.hero-label::before { content: '●'; font-size: 8px; }
.hero h1 {
  font-size: clamp(48px, 8.5vw, 96px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -.05em;
  color: var(--pure);
  margin-bottom: 24px;
  max-width: 820px;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero p {
  font-size: 18px;
  color: var(--light);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.6;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-note { font-size: 13px; color: var(--mid); margin-top: 20px; }

/* ── LOGOS STRIP ── */
.logos-strip {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.logos-label { font-size: 12px; color: var(--mid); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 24px; }
.logos-row { display: flex; gap: 40px; align-items: center; flex-wrap: wrap; }
.logo-item {
  font-size: 14px;
  font-weight: 600;
  color: var(--border);
  letter-spacing: -.01em;
}

/* ── PITCH SECTION ── */
.pitch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.pitch-text h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.1;
  color: var(--pure);
  margin-bottom: 20px;
}
.pitch-text p { color: var(--light); font-size: 17px; line-height: 1.7; margin-bottom: 16px; }
.pitch-visual {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  box-shadow: 0 0 40px rgba(185,255,75,.06);
}
.mock-browser {
  background: var(--dark);
  border-radius: var(--radius);
  overflow: hidden;
}
.mock-bar {
  background: #1a1a1a;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-dot:nth-child(1) { background: #ff5f57; }
.mock-dot:nth-child(2) { background: #febc2e; }
.mock-dot:nth-child(3) { background: #28c840; }
.mock-url {
  flex: 1; background: var(--border); border-radius: 4px;
  height: 20px; margin-left: 10px;
}
.mock-content { padding: 24px; }
.mock-hero-block {
  background: linear-gradient(135deg, #1a1a1a, #111);
  border-radius: 6px;
  padding: 28px;
  margin-bottom: 16px;
}
.mock-h { background: var(--accent); height: 12px; border-radius: 3px; margin-bottom: 10px; width: 70%; box-shadow: 0 0 12px rgba(185,255,75,.4); }
.mock-p { background: var(--border); height: 8px; border-radius: 3px; margin-bottom: 6px; }
.mock-p:last-child { width: 55%; }
.mock-btn-block { display: flex; gap: 8px; margin-top: 16px; }
.mock-btn { background: var(--accent); height: 32px; border-radius: 4px; width: 100px; box-shadow: 0 0 10px rgba(185,255,75,.35); }
.mock-btn-ghost { background: var(--border); height: 32px; border-radius: 4px; width: 80px; }
.mock-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mock-card { background: #1a1a1a; border-radius: 6px; padding: 16px; }
.mock-icon { width: 28px; height: 28px; background: var(--accent-dim); border-radius: 6px; margin-bottom: 10px; border: 1px solid rgba(185,255,75,.15); }
.mock-card-h { background: var(--white); height: 8px; border-radius: 2px; margin-bottom: 6px; width: 60%; opacity: .3; }
.mock-card-p { background: var(--border); height: 6px; border-radius: 2px; }

/* ── HOW IT WORKS ── */
.how-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 56px;
}
.how-step {
  background: var(--card);
  padding: 36px 28px;
  position: relative;
  transition: background .2s;
}
.how-step:hover { background: #1a1a1a; }
.step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: 20px;
  font-family: monospace;
}
.how-step h3 { font-size: 18px; font-weight: 700; color: var(--pure); margin-bottom: 10px; letter-spacing: -.02em; }
.how-step p { font-size: 14px; color: var(--light); line-height: 1.6; }

/* ── WHAT'S INCLUDED ── */
.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 56px;
}
.included-item {
  background: var(--card);
  padding: 32px 28px;
  transition: background .2s;
  position: relative;
}
.included-item:hover { background: #1b1b1b; }
.included-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border: 1px solid rgba(185,255,75,.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 0 14px rgba(185,255,75,.1);
}
.included-icon svg { width: 20px; height: 20px; }
.included-item h3 { font-size: 16px; font-weight: 700; color: var(--pure); margin-bottom: 8px; }
.included-item p { font-size: 14px; color: var(--light); line-height: 1.6; }

/* ── PRICING ── */
.pricing-card {
  background: var(--card);
  border: 1px solid rgba(185,255,75,.15);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 680px;
  margin: 56px auto 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 48px rgba(185,255,75,.08), inset 0 0 60px rgba(185,255,75,.03);
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.pricing-card::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 120px;
  background: radial-gradient(ellipse, rgba(185,255,75,.08) 0%, transparent 70%);
  pointer-events: none;
}
.pricing-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 32px; flex-wrap: wrap; gap: 16px; }
.pricing-name { font-size: 13px; font-weight: 600; color: var(--light); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 8px; }
.pricing-price { font-size: 48px; font-weight: 800; color: var(--pure); letter-spacing: -.04em; line-height: 1; }
.pricing-price span { font-size: 18px; color: var(--light); font-weight: 400; }
.pricing-badge {
  background: var(--accent-dim);
  border: 1px solid rgba(185,255,75,.25);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: 0 0 12px rgba(185,255,75,.1);
}
.pricing-items { list-style: none; margin-bottom: 36px; }
.pricing-items li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--light);
}
.pricing-items li:last-child { border-bottom: none; }
.check { color: var(--accent); font-size: 16px; flex-shrink: 0; margin-top: 2px; text-shadow: 0 0 8px rgba(185,255,75,.5); }
.pricing-cta { width: 100%; padding: 16px; font-size: 16px; text-align: center; }
.pricing-note { text-align: center; font-size: 13px; color: var(--mid); margin-top: 16px; }

/* ── AEO ADD-ON CARD ── */
.aeo-card {
  background: var(--card);
  border: 1px solid rgba(185,255,75,.2);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 48px rgba(185,255,75,.1), inset 0 0 80px rgba(185,255,75,.03);
}
.aeo-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.aeo-card::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(185,255,75,.07) 0%, transparent 70%);
  pointer-events: none;
}

/* ── FAQ ── */
.faq-list { margin-top: 56px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  letter-spacing: -.01em;
}
.faq-q:hover { color: var(--pure); }
.faq-icon { color: var(--accent); font-size: 20px; flex-shrink: 0; transition: transform .2s; }
.faq-a { display: none; padding-bottom: 24px; color: var(--light); font-size: 15px; line-height: 1.7; max-width: 680px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item.open .faq-a { display: block; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
  margin-top: 56px;
}
.contact-info h3 { font-size: 22px; font-weight: 700; color: var(--pure); margin-bottom: 16px; letter-spacing: -.02em; }
.contact-info p { color: var(--light); font-size: 15px; line-height: 1.7; margin-bottom: 32px; }
.contact-detail { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 20px; }
.contact-detail-icon { font-size: 18px; margin-top: 2px; }
.contact-detail p { margin: 0; font-size: 14px; color: var(--light); }
.contact-detail strong { color: var(--white); display: block; margin-bottom: 2px; }
.form-card {
  background: var(--card);
  border: 1px solid rgba(185,255,75,.12);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 0 40px rgba(185,255,75,.07), inset 0 0 60px rgba(185,255,75,.02);
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185,255,75,.5), transparent);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--light); margin-bottom: 8px; letter-spacing: .02em; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 15px;
  color: var(--white);
  font-family: inherit;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-dim), 0 0 12px rgba(185,255,75,.1); }
.form-group textarea { height: 120px; resize: vertical; }
.form-group select { appearance: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; padding: 15px; font-size: 16px; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 14px; color: var(--mid); line-height: 1.7; margin-top: 12px; max-width: 280px; }
footer h4 { font-size: 12px; font-weight: 700; color: var(--light); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul a { color: var(--mid); font-size: 14px; text-decoration: none; transition: color .2s; }
footer ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--mid);
}

/* ── SUPPORT PAGE ── */
.support-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 640px;
  margin: 56px auto 0;
}
.support-form h2 { font-size: 22px; font-weight: 700; color: var(--pure); margin-bottom: 8px; }
.support-form p { color: var(--light); font-size: 15px; margin-bottom: 32px; }

/* ── PAGE HERO ── */
.page-hero { padding: 80px 0 64px; border-bottom: 1px solid var(--border); }
.page-hero h1 { font-size: clamp(28px, 5vw, 48px); font-weight: 800; letter-spacing: -.04em; color: var(--pure); margin-bottom: 16px; }
.page-hero p { font-size: 18px; color: var(--light); max-width: 520px; }

/* ── GLOW CARD utility ── */
.glow-card {
  background: var(--card);
  border: 1px solid rgba(185,255,75,.15);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(185,255,75,.07);
}
.glow-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185,255,75,.4), transparent);
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 60px; left: 0; right: 0; background: var(--dark); border-bottom: 1px solid var(--border); padding: 20px 24px; flex-direction: column; align-items: flex-start; gap: 20px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .hero { padding: 80px 0 64px; }
  .hero h1 { font-size: 42px; }
  .pitch-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .pricing-card { padding: 32px 24px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
}

/* ── PITCH REDESIGN ── */
.pitch-why {
  margin-bottom: 56px;
}
.step-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: monospace;
}
.pitch-big-h {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--pure);
  line-height: 1.08;
  max-width: 820px;
  margin-top: 16px;
}
.pitch-dim {
  color: var(--mid);
  font-weight: 800;
}
.pitch-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pitch-card {
  background: var(--card);
  padding: 32px 28px;
  transition: background .2s;
}
.pitch-card:hover { background: #1a1a1a; }
.pitch-card-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: 16px;
  font-family: monospace;
}
.pitch-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--pure);
  margin-bottom: 12px;
  letter-spacing: -.02em;
  line-height: 1.3;
}
.pitch-card p {
  font-size: 14px;
  color: var(--light);
  line-height: 1.7;
}

/* ── CALCULATOR ── */
.calc-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.calc-left .pitch-big-h {
  font-size: clamp(28px, 4vw, 46px);
  margin-bottom: 36px;
}
.calc-copy h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--pure);
  letter-spacing: -.03em;
  margin-bottom: 16px;
  line-height: 1.3;
}
.calc-copy p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 16px;
}
.calc-copy strong { color: var(--white); }
.calc-quote {
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin-top: 24px;
  font-size: 16px;
  font-style: italic;
  color: var(--light);
  line-height: 1.6;
}
.calc-card {
  background: var(--card);
  border: 1px solid rgba(185,255,75,.15);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 48px rgba(185,255,75,.08);
}
.calc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185,255,75,.5), transparent);
}
.calc-card-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--accent);
  text-transform: uppercase;
  font-family: monospace;
  margin-bottom: 14px;
}
.calc-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--pure);
  letter-spacing: -.02em;
  margin-bottom: 8px;
}
.calc-card-sub {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.6;
  margin-bottom: 28px;
}
.calc-field {
  margin-bottom: 24px;
}
.calc-field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 10px;
}
.calc-field label span {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0;
  font-weight: 800;
}
.calc-input-wrap {
  display: flex;
  align-items: center;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 14px;
  transition: border-color .2s;
}
.calc-input-wrap:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}
.calc-dollar {
  color: var(--light);
  font-size: 15px;
  margin-right: 4px;
}
.calc-input-wrap input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  padding: 12px 0;
  width: 100%;
}
.calc-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  outline: none;
  cursor: pointer;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(185,255,75,.5);
}
.calc-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: none;
  box-shadow: 0 0 10px rgba(185,255,75,.5);
}
.calc-result {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 8px;
}
.calc-result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--light);
}
.calc-result-row span:last-child {
  font-weight: 700;
  color: var(--white);
  font-size: 16px;
}
.calc-divider {
  height: 1px;
  background: var(--border);
  margin: 14px 0;
}
.calc-result-big {
  align-items: flex-end;
}
.calc-result-big span:first-child {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mid);
  font-family: monospace;
}
.calc-result-big span:last-child {
  font-size: 42px;
  font-weight: 800;
  color: var(--pure);
  letter-spacing: -.04em;
  line-height: 1;
}
.calc-fine {
  font-size: 11px;
  color: var(--mid);
  margin-top: 10px;
  font-family: monospace;
}

/* ── BEFORE / AFTER ── */
.ba-toggle-row {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}
.ba-toggle-btn {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--light);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
  transition: all .2s;
}
.ba-toggle-btn.active,
.ba-toggle-btn:hover {
  background: var(--accent-dim);
  border-color: rgba(185,255,75,.3);
  color: var(--accent);
}
.ba-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}
.ba-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ba-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  width: fit-content;
  letter-spacing: .04em;
}
.ba-before {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--light);
}
.ba-after {
  background: rgba(185,255,75,.1);
  border: 1px solid rgba(185,255,75,.25);
  color: var(--accent);
}
.ba-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  line-height: 0;
  aspect-ratio: 1200 / 692;
}
.ba-img-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}
.ba-img-after {
  border-color: rgba(185,255,75,.2);
  box-shadow: 0 0 32px rgba(185,255,75,.1);
}
.ba-mobile-wrap {
  max-width: 320px;
  margin: 0 auto;
  aspect-ratio: unset;
}
.ba-mobile-wrap img {
  object-fit: contain;
  object-position: top center;
  height: auto;
  max-height: 560px;
}
.ba-caption {
  font-size: 13px;
  color: var(--light);
  line-height: 1.6;
}
.ba-arrow {
  font-size: 28px;
  color: var(--accent);
  text-shadow: 0 0 16px rgba(185,255,75,.5);
  text-align: center;
  flex-shrink: 0;
}

/* ── RESPONSIVE additions ── */
@media (max-width: 768px) {
  .pitch-cards { grid-template-columns: 1fr; }
  .calc-section { grid-template-columns: 1fr; gap: 48px; }
  .ba-grid { grid-template-columns: 1fr; }
  .ba-arrow { transform: rotate(90deg); text-align: center; }
  .ba-mobile-wrap { max-width: 100%; }
}

/* ── LOGO LOCKUP (bolt + wordmark) ── */
.logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-lockup:hover { text-decoration: none; }
.logo-bolt {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(185,255,75,.6));
}
.logo-bolt-footer {
  width: 28px;
  height: 28px;
}
.logo-word {
  font-size: 18px;
  font-weight: 800;
  color: var(--pure);
  letter-spacing: -.04em;
  line-height: 1;
}
.logo-word em {
  font-style: normal;
  color: var(--accent);
}
.footer-logo-lockup .logo-word {
  font-size: 17px;
}

/* ── HERO BRAND ROW ── */
.hero-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.hero-bolt {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(185,255,75,.8));
  animation: bolt-pulse 3s ease-in-out infinite;
}
@keyframes bolt-pulse {
  0%, 100% { filter: drop-shadow(0 0 16px rgba(185,255,75,.7)); }
  50%       { filter: drop-shadow(0 0 32px rgba(185,255,75,1)); }
}
.hero-brand-name {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--pure);
  line-height: 1;
}

/* ── BRAND STRIP ── */
.brand-strip {
  padding: 48px 0;
  background: linear-gradient(135deg, rgba(185,255,75,.04) 0%, transparent 60%);
}
.brand-strip-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.brand-strip-bolt {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(185,255,75,.9));
  flex-shrink: 0;
}
.brand-strip-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.brand-strip-name {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--pure);
  line-height: 1;
}
.brand-strip-tagline {
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: .04em;
}
.brand-strip-btn {
  flex-shrink: 0;
  font-size: 16px;
  padding: 16px 32px;
}

@media (max-width: 768px) {
  .hero-bolt { width: 40px; height: 40px; }
  .hero-brand-name { font-size: 22px; }
  .brand-strip-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .brand-strip-btn { width: 100%; text-align: center; }
}

/* ── FREE SITE CARD ── */
.free-site-card {
  background: var(--card);
  border: 1px solid rgba(185,255,75,.18);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 48px rgba(185,255,75,.08);
}
.free-site-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.free-site-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.free-site-h {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  color: var(--pure);
  letter-spacing: -.03em;
  margin-bottom: 10px;
  max-width: 480px;
}
.free-site-sub {
  color: var(--light);
  font-size: 14px;
  max-width: 460px;
  line-height: 1.6;
}
.free-site-price {
  text-align: right;
  flex-shrink: 0;
}
.free-site-was {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 6px;
  margin-bottom: 6px;
}
.free-site-was-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--mid);
  text-decoration: line-through;
  letter-spacing: -.03em;
}
.free-site-was-label {
  font-size: 12px;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.free-site-free {
  font-size: 72px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -.05em;
  line-height: 1;
  text-shadow: 0 0 40px rgba(185,255,75,.4);
}
.free-site-note {
  font-size: 12px;
  color: var(--mid);
  margin-top: 6px;
}

/* ── PRICING TOGGLE ── */
.pricing-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.pricing-toggle {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 4px;
  display: inline-flex;
  gap: 4px;
}
.ptoggle-btn {
  padding: 9px 22px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  background: transparent;
  color: var(--light);
  transition: all .2s;
  font-family: inherit;
}
.ptoggle-btn.ptoggle-active {
  background: var(--accent);
  color: var(--black);
  box-shadow: 0 0 12px rgba(185,255,75,.3);
}
.ptoggle-save {
  color: var(--accent);
  font-size: 11px;
}
.ptoggle-active .ptoggle-save {
  color: rgba(0,0,0,.6);
}

/* ── NEW PRICING CARD ── */
.new-pricing-wrap { max-width: 680px; margin: 0 auto; }
.np-card {
  background: var(--card);
  border: 1px solid rgba(185,255,75,.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 48px rgba(185,255,75,.08);
  position: relative;
}
.np-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.np-card-top {
  padding: 40px 40px 0;
}
.np-card-topline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.np-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.np-title {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 800;
  color: var(--pure);
  letter-spacing: -.03em;
  max-width: 420px;
}
.np-badge {
  background: var(--accent-dim);
  border: 1px solid rgba(185,255,75,.25);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(185,255,75,.1);
}
.np-sub {
  color: var(--light);
  font-size: 14px;
  line-height: 1.6;
  max-width: 500px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}
.np-price-row {
  padding: 24px 40px;
  border-bottom: 1px solid var(--border);
}
.np-price {
  font-size: 52px;
  font-weight: 800;
  color: var(--pure);
  letter-spacing: -.04em;
  line-height: 1;
}
.np-price span {
  font-size: 17px;
  color: var(--light);
  font-weight: 400;
  letter-spacing: 0;
}
.np-features {
  padding: 28px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--border);
}
.np-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.np-feature svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
}
.np-feature strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--pure);
  margin-bottom: 2px;
}
.np-feature p {
  font-size: 12px;
  color: var(--light);
  line-height: 1.5;
  margin: 0;
}
.np-cta {
  display: block;
  margin: 28px 40px 8px;
  text-align: center;
  padding: 16px;
  font-size: 16px;
}
.np-card .pricing-note {
  margin: 0 40px 28px;
}

/* ── AEO ADDON BOX (inside card) ── */
.aeo-addon-box {
  background: rgba(185,255,75,.04);
  border-top: 1px solid rgba(185,255,75,.15);
  position: relative;
  overflow: hidden;
}
.aeo-addon-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185,255,75,.4), transparent);
}
.aeo-addon-inner {
  display: flex;
  gap: 32px;
  padding: 36px 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.aeo-addon-left {
  flex: 1;
  min-width: 240px;
}
.aeo-addon-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: monospace;
  margin-bottom: 10px;
}
.aeo-addon-h {
  font-size: 17px;
  font-weight: 800;
  color: var(--pure);
  letter-spacing: -.02em;
  margin-bottom: 8px;
  line-height: 1.3;
}
.aeo-addon-sub {
  font-size: 13px;
  color: var(--light);
  line-height: 1.6;
  margin-bottom: 16px;
}
.aeo-addon-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.aeo-addon-list li {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: var(--light);
}
.aeo-addon-list li span {
  color: var(--accent);
  font-size: 13px;
  flex-shrink: 0;
  text-shadow: 0 0 6px rgba(185,255,75,.4);
}
.aeo-addon-right {
  flex-shrink: 0;
  text-align: center;
  background: var(--card);
  border: 1px solid rgba(185,255,75,.2);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  min-width: 160px;
  box-shadow: 0 0 24px rgba(185,255,75,.08);
}
.aeo-addon-price-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 8px;
}
.aeo-addon-price {
  font-size: 42px;
  font-weight: 800;
  color: var(--pure);
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 2px;
}
.aeo-addon-price span {
  font-size: 16px;
  color: var(--light);
  font-weight: 400;
}
.aeo-addon-gst {
  font-size: 11px;
  color: var(--mid);
  margin-bottom: 16px;
}
.aeo-addon-btn {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  text-align: center;
}
.aeo-addon-cancel {
  font-size: 11px;
  color: var(--mid);
  margin-top: 8px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .free-site-card { flex-direction: column; align-items: flex-start; }
  .free-site-price { text-align: left; }
  .free-site-was { justify-content: flex-start; }
  .free-site-free { font-size: 56px; }
  .np-features { grid-template-columns: 1fr; }
  .np-card-top, .np-price-row, .np-features { padding-left: 24px; padding-right: 24px; }
  .np-cta { margin-left: 24px; margin-right: 24px; }
  .np-card .pricing-note { margin-left: 24px; margin-right: 24px; }
  .aeo-addon-inner { padding: 24px; flex-direction: column; }
  .aeo-addon-right { width: 100%; }
}

/* ── HERO CANVAS ── */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hero {
  position: relative;
  overflow: hidden;
}
.hero .container {
  position: relative;
  z-index: 1;
}
/* Allow mouse events on canvas only for the hero */
.hero #hero-canvas {
  pointer-events: all;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
.reveal.revealed {
  opacity: 1;
  transform: none !important;
}
.reveal-up    { transform: translateY(36px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-scale { transform: scale(0.94); }

/* Stagger pitch cards */
.pitch-cards .pitch-card:nth-child(1) { transition-delay: 0s; }
.pitch-cards .pitch-card:nth-child(2) { transition-delay: 0.12s; }
.pitch-cards .pitch-card:nth-child(3) { transition-delay: 0.24s; }

/* Stagger how-steps */
.how-steps .how-step:nth-child(1) { transition-delay: 0s; }
.how-steps .how-step:nth-child(2) { transition-delay: 0.1s; }
.how-steps .how-step:nth-child(3) { transition-delay: 0.2s; }
.how-steps .how-step:nth-child(4) { transition-delay: 0.3s; }

/* Stagger included items */
.included-grid .included-item:nth-child(1)  { transition-delay: 0s; }
.included-grid .included-item:nth-child(2)  { transition-delay: 0.07s; }
.included-grid .included-item:nth-child(3)  { transition-delay: 0.14s; }
.included-grid .included-item:nth-child(4)  { transition-delay: 0.21s; }
.included-grid .included-item:nth-child(5)  { transition-delay: 0.28s; }
.included-grid .included-item:nth-child(6)  { transition-delay: 0.35s; }
.included-grid .included-item:nth-child(7)  { transition-delay: 0.42s; }
.included-grid .included-item:nth-child(8)  { transition-delay: 0.49s; }
.included-grid .included-item:nth-child(9)  { transition-delay: 0.56s; }

/* Stagger FAQ */
.faq-list .faq-item:nth-child(1) { transition-delay: 0s; }
.faq-list .faq-item:nth-child(2) { transition-delay: 0.08s; }
.faq-list .faq-item:nth-child(3) { transition-delay: 0.16s; }
.faq-list .faq-item:nth-child(4) { transition-delay: 0.24s; }
.faq-list .faq-item:nth-child(5) { transition-delay: 0.32s; }
.faq-list .faq-item:nth-child(6) { transition-delay: 0.40s; }

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  #hero-canvas { display: none; }
}

/* ── AEO ADDON REDESIGN ── */
.aeo-addon-box {
  background: linear-gradient(135deg, rgba(185,255,75,.05) 0%, rgba(0,0,0,0) 60%);
  border-top: 1px solid rgba(185,255,75,.2);
  position: relative;
  overflow: hidden;
}
.aeo-addon-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185,255,75,.6), transparent);
}
.aeo-addon-box::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(185,255,75,.07) 0%, transparent 70%);
  pointer-events: none;
}
.aeo-addon-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 24px 40px 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: monospace;
}
.aeo-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(185,255,75,.6);
  animation: aeo-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes aeo-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(185,255,75,.6); }
  70%  { box-shadow: 0 0 0 10px rgba(185,255,75,0); }
  100% { box-shadow: 0 0 0 0 rgba(185,255,75,0); }
}
.aeo-addon-inner {
  display: flex;
  gap: 32px;
  padding: 20px 40px 40px;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.aeo-addon-left {
  flex: 1;
  min-width: 260px;
}
.aeo-addon-h {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 800;
  color: var(--pure);
  letter-spacing: -.03em;
  margin-bottom: 12px;
  line-height: 1.3;
}
.aeo-addon-h em {
  font-style: normal;
  color: var(--accent);
}
.aeo-addon-sub {
  font-size: 14px;
  color: var(--light);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 460px;
}
.aeo-ai-logos {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.aeo-ai-chip {
  background: rgba(185,255,75,.08);
  border: 1px solid rgba(185,255,75,.2);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: .04em;
}
.aeo-addon-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.aeo-addon-list li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--light);
  align-items: flex-start;
}
.aeo-addon-list li span {
  color: var(--accent);
  font-size: 14px;
  flex-shrink: 0;
  text-shadow: 0 0 6px rgba(185,255,75,.4);
  margin-top: 1px;
}
.aeo-addon-honest {
  font-size: 12px;
  color: var(--mid);
  font-family: monospace;
  line-height: 1.5;
  margin-top: 4px;
}

/* Right price card */
.aeo-addon-right {
  flex-shrink: 0;
  min-width: 200px;
}
.aeo-price-card {
  background: var(--dark);
  border: 1px solid rgba(185,255,75,.25);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 0 32px rgba(185,255,75,.1);
  position: relative;
  overflow: hidden;
}
.aeo-price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185,255,75,.6), transparent);
}
.aeo-addon-price-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 10px;
  font-family: monospace;
}
.aeo-addon-price {
  font-size: 52px;
  font-weight: 800;
  color: var(--pure);
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 2px;
}
.aeo-addon-price span {
  font-size: 18px;
  color: var(--light);
  font-weight: 400;
}
.aeo-addon-gst {
  font-size: 12px;
  color: var(--mid);
  margin-bottom: 20px;
}
.aeo-addon-btn {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  text-align: center;
}
.aeo-addon-cancel {
  font-size: 11px;
  color: var(--mid);
  margin-top: 10px;
}
.aeo-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}
.aeo-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 14px;
}
.aeo-stat:last-child { margin-bottom: 0; }
.aeo-stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -.04em;
  line-height: 1;
  text-shadow: 0 0 16px rgba(185,255,75,.4);
}
.aeo-stat-label {
  font-size: 11px;
  color: var(--mid);
  text-align: center;
  line-height: 1.4;
  margin-top: 3px;
}

@media (max-width: 768px) {
  .aeo-addon-eyebrow { padding: 20px 24px 0; }
  .aeo-addon-inner { padding: 16px 24px 28px; flex-direction: column; }
  .aeo-addon-right { width: 100%; }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
.reveal.revealed {
  opacity: 1;
  transform: none !important;
}
.reveal-up    { transform: translateY(36px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-scale { transform: scale(0.94); }

/* Stagger pitch cards */
.pitch-cards .pitch-card:nth-child(1) { transition-delay: 0s; }
.pitch-cards .pitch-card:nth-child(2) { transition-delay: 0.12s; }
.pitch-cards .pitch-card:nth-child(3) { transition-delay: 0.24s; }

/* Stagger how-steps */
.how-steps .how-step:nth-child(1) { transition-delay: 0s; }
.how-steps .how-step:nth-child(2) { transition-delay: 0.1s; }
.how-steps .how-step:nth-child(3) { transition-delay: 0.2s; }
.how-steps .how-step:nth-child(4) { transition-delay: 0.3s; }

/* Stagger included items */
.included-grid .included-item:nth-child(1)  { transition-delay: 0s; }
.included-grid .included-item:nth-child(2)  { transition-delay: 0.07s; }
.included-grid .included-item:nth-child(3)  { transition-delay: 0.14s; }
.included-grid .included-item:nth-child(4)  { transition-delay: 0.21s; }
.included-grid .included-item:nth-child(5)  { transition-delay: 0.28s; }
.included-grid .included-item:nth-child(6)  { transition-delay: 0.35s; }
.included-grid .included-item:nth-child(7)  { transition-delay: 0.42s; }
.included-grid .included-item:nth-child(8)  { transition-delay: 0.49s; }
.included-grid .included-item:nth-child(9)  { transition-delay: 0.56s; }

/* Stagger FAQ */
.faq-list .faq-item:nth-child(1) { transition-delay: 0s; }
.faq-list .faq-item:nth-child(2) { transition-delay: 0.08s; }
.faq-list .faq-item:nth-child(3) { transition-delay: 0.16s; }
.faq-list .faq-item:nth-child(4) { transition-delay: 0.24s; }
.faq-list .faq-item:nth-child(5) { transition-delay: 0.32s; }
.faq-list .faq-item:nth-child(6) { transition-delay: 0.40s; }

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  #hero-canvas { display: none; }
}

/* ── AEO ADDON REDESIGN ── */
.aeo-addon-box {
  background: linear-gradient(135deg, rgba(185,255,75,.05) 0%, rgba(0,0,0,0) 60%);
  border-top: 1px solid rgba(185,255,75,.2);
  position: relative;
  overflow: hidden;
}
.aeo-addon-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185,255,75,.6), transparent);
}
.aeo-addon-box::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(185,255,75,.07) 0%, transparent 70%);
  pointer-events: none;
}
.aeo-addon-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 24px 40px 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: monospace;
}
.aeo-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(185,255,75,.6);
  animation: aeo-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes aeo-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(185,255,75,.6); }
  70%  { box-shadow: 0 0 0 10px rgba(185,255,75,0); }
  100% { box-shadow: 0 0 0 0 rgba(185,255,75,0); }
}
.aeo-addon-inner {
  display: flex;
  gap: 32px;
  padding: 20px 40px 40px;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.aeo-addon-left {
  flex: 1;
  min-width: 260px;
}
.aeo-addon-h {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 800;
  color: var(--pure);
  letter-spacing: -.03em;
  margin-bottom: 12px;
  line-height: 1.3;
}
.aeo-addon-h em {
  font-style: normal;
  color: var(--accent);
}
.aeo-addon-sub {
  font-size: 14px;
  color: var(--light);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 460px;
}
.aeo-ai-logos {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.aeo-ai-chip {
  background: rgba(185,255,75,.08);
  border: 1px solid rgba(185,255,75,.2);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: .04em;
}
.aeo-addon-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.aeo-addon-list li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--light);
  align-items: flex-start;
}
.aeo-addon-list li span {
  color: var(--accent);
  font-size: 14px;
  flex-shrink: 0;
  text-shadow: 0 0 6px rgba(185,255,75,.4);
  margin-top: 1px;
}
.aeo-addon-honest {
  font-size: 12px;
  color: var(--mid);
  font-family: monospace;
  line-height: 1.5;
  margin-top: 4px;
}

/* Right price card */
.aeo-addon-right {
  flex-shrink: 0;
  min-width: 200px;
}
.aeo-price-card {
  background: var(--dark);
  border: 1px solid rgba(185,255,75,.25);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 0 32px rgba(185,255,75,.1);
  position: relative;
  overflow: hidden;
}
.aeo-price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185,255,75,.6), transparent);
}
.aeo-addon-price-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 10px;
  font-family: monospace;
}
.aeo-addon-price {
  font-size: 52px;
  font-weight: 800;
  color: var(--pure);
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 2px;
}
.aeo-addon-price span {
  font-size: 18px;
  color: var(--light);
  font-weight: 400;
}
.aeo-addon-gst {
  font-size: 12px;
  color: var(--mid);
  margin-bottom: 20px;
}
.aeo-addon-btn {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  text-align: center;
}
.aeo-addon-cancel {
  font-size: 11px;
  color: var(--mid);
  margin-top: 10px;
}
.aeo-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}
.aeo-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 14px;
}
.aeo-stat:last-child { margin-bottom: 0; }
.aeo-stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -.04em;
  line-height: 1;
  text-shadow: 0 0 16px rgba(185,255,75,.4);
}
.aeo-stat-label {
  font-size: 11px;
  color: var(--mid);
  text-align: center;
  line-height: 1.4;
  margin-top: 3px;
}

@media (max-width: 768px) {
  .aeo-addon-eyebrow { padding: 20px 24px 0; }
  .aeo-addon-inner { padding: 16px 24px 28px; flex-direction: column; }
  .aeo-addon-right { width: 100%; }
}

/* ── TESTIMONIALS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.review-card {
  background: var(--card);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background .2s;
}
.review-card:hover { background: #1b1b1b; }
.review-featured {
  background: linear-gradient(135deg, #161616, #111);
  border-bottom: none;
  position: relative;
  overflow: hidden;
}
.review-featured::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.review-stars {
  color: #FFB800;
  font-size: 16px;
  letter-spacing: 2px;
}
.review-featured .review-stars {
  text-shadow: 0 0 12px rgba(255,184,0,.4);
}
.review-quote {
  font-size: 15px;
  color: var(--light);
  line-height: 1.75;
  flex: 1;
  font-style: normal;
  position: relative;
}
.review-featured .review-quote {
  color: var(--white);
  font-size: 15px;
}
.review-quote::before {
  content: '"';
  position: absolute;
  top: -16px;
  left: -4px;
  font-size: 64px;
  color: rgba(185,255,75,.1);
  font-family: Georgia, serif;
  line-height: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(185,255,75,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.review-featured .review-avatar {
  background: rgba(185,255,75,.15);
  border-color: rgba(185,255,75,.4);
  box-shadow: 0 0 12px rgba(185,255,75,.2);
}
.review-author strong {
  display: block;
  font-size: 14px;
  color: var(--pure);
  font-weight: 700;
}
.review-author span {
  display: block;
  font-size: 12px;
  color: var(--mid);
  margin-top: 1px;
}

/* First card spans full width on its row */
.reviews-grid .review-featured {
  grid-column: 1 / -1;
}
.reviews-grid .review-featured .review-quote {
  max-width: 680px;
}

@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid .review-featured { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-grid .review-featured { grid-column: 1; }
}

/* ── MARQUEE TESTIMONIALS ── */
.marquee-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  /* Fade edges */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 8px 0;
}
.marquee-left {
  animation: marquee-scroll-left 55s linear infinite;
}
.marquee-right {
  animation: marquee-scroll-right 45s linear infinite;
}
.marquee-wrap:hover .marquee-left,
.marquee-wrap:hover .marquee-right {
  animation-play-state: paused;
}
@keyframes marquee-scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marquee-scroll-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Card styles */
.marquee-card {
  flex-shrink: 0;
  width: 320px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color .2s, box-shadow .2s;
  cursor: default;
}
.marquee-card:hover {
  border-color: rgba(185,255,75,.2);
  box-shadow: 0 0 24px rgba(185,255,75,.07);
}
.review-card.review-featured.marquee-card {
  width: 400px;
  background: linear-gradient(135deg, #1a1a1a, #111);
  border-color: rgba(185,255,75,.2);
  box-shadow: 0 0 28px rgba(185,255,75,.08);
  position: relative;
  overflow: hidden;
}
.review-card.review-featured.marquee-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.review-stars {
  color: #FFB800;
  font-size: 14px;
  letter-spacing: 2px;
}
.review-quote {
  font-size: 14px;
  color: var(--light);
  line-height: 1.7;
  font-style: normal;
  flex: 1;
}
.review-featured .review-quote {
  color: var(--white);
  font-size: 14px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 4px;
  border-top: 1px solid var(--border);
}
.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(185,255,75,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.review-featured .review-avatar {
  background: rgba(185,255,75,.15);
  border-color: rgba(185,255,75,.4);
  box-shadow: 0 0 10px rgba(185,255,75,.2);
}
.review-author strong {
  display: block;
  font-size: 13px;
  color: var(--pure);
  font-weight: 700;
}
.review-author span {
  display: block;
  font-size: 11px;
  color: var(--mid);
  margin-top: 1px;
}

@media (prefers-reduced-motion: reduce) {
  .marquee-left, .marquee-right { animation: none; }
}



/* Featured card wider */
.review-featured.marquee-card {
  width: 380px;
}
.marquee-card {
  width: 300px;
}

/* ── MOCK SITE PREVIEWS ── */
.mp2-wrap { margin-bottom: 14px; }
.mp2-browser {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 8px 40px rgba(0,0,0,.6), inset 0 1px 0 rgba(255,255,255,.05);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.mp2-bar {
  background: #1c1c1c;
  padding: 7px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.mp2-dots { display: flex; gap: 5px; flex-shrink: 0; }
.mp2-dots span { width: 8px; height: 8px; border-radius: 50%; }
.mp2-dots span:nth-child(1) { background: #ff5f57; }
.mp2-dots span:nth-child(2) { background: #febc2e; }
.mp2-dots span:nth-child(3) { background: #28c840; }
.mp2-url {
  background: rgba(255,255,255,.07);
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 9px;
  color: rgba(255,255,255,.3);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: monospace;
}
.mp2-url-blank {
  background: rgba(255,255,255,.07);
  border-radius: 4px;
  padding: 3px 8px;
  flex: 1;
  height: 16px;
}
.mp2-img-card {
  display: block;
  min-height: 220px;
  overflow: hidden;
}
.mp2-img-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.mp2-site { overflow: hidden; }
.mp2-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 12px;
  gap: 8px;
}
.mp2-brand {
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
  flex-shrink: 0;
}
.mp2-navlinks {
  display: flex;
  gap: 9px;
  flex: 1;
  justify-content: center;
}
.mp2-navlinks span { font-size: 8px; }
.mp2-cta-nav {
  font-size: 8px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}
/* Card widths */
.review-featured.marquee-card { width: 380px; }
.marquee-card { width: 310px; }




/* ── OFFER PANELS ── */
.offer-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.offer-panel {
  border-radius: 14px;
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background: linear-gradient(175deg, #141a12 0%, #0c0e0b 60%, #080a07 100%);
  border: 1px solid rgba(185,255,75,.18);
  box-shadow: 0 0 0 1px rgba(0,0,0,.6), 0 8px 24px rgba(0,0,0,.5), inset 0 1px 0 rgba(185,255,75,.15);
}
.offer-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 15%; right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185,255,75,.7), transparent);
  z-index: 1;
}
.offer-panel::after {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 360px; height: 280px;
  background: radial-gradient(ellipse, rgba(185,255,75,.1) 0%, transparent 65%);
  pointer-events: none;
}

.offer-panel-teal {
  background: linear-gradient(175deg, #0e1a1a 0%, #0a0f0f 60%, #070c0c 100%);
  border-color: rgba(45,212,191,.2);
  box-shadow: 0 0 0 1px rgba(0,0,0,.6), 0 8px 24px rgba(0,0,0,.5), inset 0 1px 0 rgba(45,212,191,.15);
}
.offer-panel-teal::before {
  background: linear-gradient(90deg, transparent, rgba(45,212,191,.7), transparent);
}
.offer-panel-teal::after {
  background: radial-gradient(ellipse, rgba(45,212,191,.11) 0%, transparent 65%);
}

.offer-panel-purple {
  background: linear-gradient(175deg, #140f1e 0%, #0e0b14 60%, #090710 100%);
  border-color: rgba(167,139,250,.2);
  box-shadow: 0 0 0 1px rgba(0,0,0,.6), 0 8px 24px rgba(0,0,0,.5), inset 0 1px 0 rgba(167,139,250,.15);
}
.offer-panel-purple::before {
  background: linear-gradient(90deg, transparent, rgba(167,139,250,.7), transparent);
}
.offer-panel-purple::after {
  background: radial-gradient(ellipse, rgba(167,139,250,.12) 0%, transparent 65%);
}

/* Tag */
.offer-tag {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 20px;
  padding: 4px 11px;
  width: fit-content;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  color: #888;
  border: 1px solid #222;
  background: rgba(255,255,255,.03);
}
.offer-tag-teal { color: #2DD4BF; border-color: rgba(45,212,191,.3); background: rgba(45,212,191,.06); }
.offer-tag-purple { color: #c4b5fd; border-color: rgba(167,139,250,.3); background: rgba(167,139,250,.06); }

/* Hero block — fixed height so titles align */
.offer-hero {
  height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}
.offer-free {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -.06em;
  color: #B9FF4B;
  line-height: 1;
  display: block;
}
.offer-was {
  font-size: 13px;
  font-weight: 500;
  color: #3a3a3a;
  text-decoration: line-through;
  display: block;
  margin-top: 2px;
}
.offer-engines {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.offer-engines span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #2DD4BF;
  background: rgba(45,212,191,.06);
  border: 1px solid rgba(45,212,191,.2);
  border-radius: 20px;
  padding: 3px 9px;
}
.offer-hero-sub {
  font-size: 13px;
  font-weight: 500;
  color: #444;
  letter-spacing: -.01em;
}

/* Title */
.offer-title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.2;
  color: #fff;
  position: relative;
  z-index: 1;
  margin: 0;
}
.offer-title em { font-style: normal; }
.offer-panel .offer-title em { color: #B9FF4B; }
.offer-panel-teal .offer-title em { color: #2DD4BF; }
.offer-panel-purple .offer-title em { color: #c4b5fd; }

/* Divider */
.offer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,.07);
  margin: 20px 0;
  position: relative;
  z-index: 1;
}

/* Ticks */
.offer-list {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  margin-bottom: 22px;
}
.offer-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  color: #e0e0e0;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  line-height: 1.3;
}
.offer-list li:last-child { border-bottom: none; }

.offer-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 900;
  flex-shrink: 0;
  line-height: 1;
}
.offer-check-green { background: #B9FF4B; color: #080808; }
.offer-check-teal  { background: #2DD4BF; color: #080808; }
.offer-check-purple { background: #a78bfa; color: #fff; }

/* CTAs */
.offer-cta {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -.01em;
  text-decoration: none;
  position: relative;
  z-index: 1;
  border: none;
}
.offer-cta:hover { opacity: .88; text-decoration: none; }
.offer-cta-green  { background: #B9FF4B; color: #080808; }
.offer-cta-teal   { background: #2DD4BF; color: #080808; }
.offer-cta-purple { background: #a78bfa; color: #080808; }

@media (max-width: 900px) {
  .offer-panels { grid-template-columns: 1fr; }
}

/* ── URGENCY BAR ── */
.urgency-bar {
  background: #0d0d0d;
  border-bottom: 1px solid #1a1a1a;
  padding: 9px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.urgency-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
.urgency-text {
  font-size: 12px;
  color: #666;
  font-family: monospace;
}
.urgency-text strong { color: var(--accent); }
.urgency-strong {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  font-family: monospace;
}
.urgency-slots {
  display: flex;
  gap: 3px;
  align-items: center;
}
.urgency-slot {
  width: 9px; height: 9px;
  border-radius: 2px;
}
.urgency-slot-taken {
  background: var(--accent);
  opacity: .25;
}
.urgency-slot-open {
  background: var(--accent);
}

/* ── HERO AUDIENCE TAG ── */
.hero-audience-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(185,255,75,.07);
  border: 1px solid rgba(185,255,75,.2);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 12px;
}

/* ── HERO PRICE ANCHOR ── */
.hero-price {
  font-size: 13px;
  color: var(--mid);
  margin-bottom: 24px;
  letter-spacing: -.01em;
}
.hero-price strong { color: var(--accent); font-weight: 700; }

/* ── FORM RISK REVERSAL ── */
.form-risk-reverse {
  text-align: center;
  font-size: 12px;
  color: var(--mid);
  font-style: italic;
  margin-top: 14px;
  line-height: 1.5;
}

/* ── SOCIAL PROOF BAR ── */
.social-proof-bar {
  background: #0d0d0d;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  padding: 28px 0;
}
.social-proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.social-proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 36px;
}
.social-proof-num {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.social-proof-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--mid);
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.social-proof-divider {
  width: 1px;
  height: 40px;
  background: #1e1e1e;
  flex-shrink: 0;
}
.social-proof-cta {
  margin-left: 36px;
}

@media (max-width: 768px) {
  .social-proof-inner { gap: 20px; }
  .social-proof-stat { padding: 0 16px; }
  .social-proof-divider { display: none; }
  .social-proof-cta { margin-left: 0; width: 100%; text-align: center; }
}

/* ── PANEL 3 24/7 ANCHOR ── */
.offer-hero-num {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -.06em;
  color: #a78bfa;
  line-height: 1;
  display: block;
}

/* ── HERO TRUST ROW ── */
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  margin-top: 24px;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 500;
  color: var(--mid);
  letter-spacing: -.01em;
}
.hero-trust-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
