:root {
  /* Core Colors */
  --bg-color: #080810;
  --text-main: #f0f0ff;
  --text-muted: #9ca3af;
  
  /* Theme Colors */
  --primary: #cfbcff;
  --primary-gradient: linear-gradient(135deg, #7c3aed 0%, #2563eb 50%, #06b6d4 100%);
  --glow-color: rgba(37, 99, 235, 0.3);

  /* Surface Colors */
  --surface-base: rgba(255, 255, 255, 0.04);
  --surface-hover: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.2);

  /* Radii */
  --radius-sm: 0.5rem;
  --radius-lg: 1.5rem;
  --radius-full: 9999px;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* Ambient Background Glow */
body::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at top, rgba(124, 58, 237, 0.15), transparent 60%);
  pointer-events: none;
  z-index: -1;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  text-align: center;
}

p {
  color: var(--text-muted);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.text-gradient {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-sm {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Layout Utilities */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 120px 0;
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }

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

/* Components */
.glass-panel {
  background: var(--surface-base);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.glass-panel:hover {
  border-color: var(--border-hover);
  background: linear-gradient(to bottom, var(--surface-hover), var(--surface-base));
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.875rem;
  border: none;
  gap: 0.5rem;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
}

.btn-primary {
  background: var(--primary-gradient);
  color: white;
  box-shadow: 0 0 20px var(--glow-color);
}

.btn-primary:hover {
  box-shadow: 0 0 30px rgba(37, 99, 235, 0.6);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(8, 8, 16, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  padding: 1rem 0;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text-main);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
}

.nav-cta {
  font-size: 0.8125rem;
  padding: 0.5rem 1.25rem;
}

/* Hero Section */
.hero {
  padding-top: 180px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  gap: 0.5rem;
  animation: badge-pulse 3s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.15); }
  50% { box-shadow: 0 0 0 8px rgba(124, 58, 237, 0); }
}

.hero-subtitle {
  max-width: 640px;
  margin: 0 auto 2rem;
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.hero p {
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Hero Benefits */
.hero-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  align-items: center;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.0625rem;
  color: var(--text-main);
  font-weight: 500;
}

.benefit-check {
  font-size: 1.125rem;
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  justify-content: center;
}

.hero-urgency {
  font-size: 0.9375rem;
  color: #ffb4ab;
  font-weight: 600;
  margin-bottom: 2rem;
  animation: urgency-glow 2s ease-in-out infinite alternate;
}

@keyframes urgency-glow {
  from { opacity: 0.8; }
  to { opacity: 1; text-shadow: 0 0 12px rgba(255, 180, 171, 0.3); }
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Social Proof */
.social-proof {
  margin-bottom: 4rem;
}

.social-proof-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  color: var(--text-muted);
}

.social-proof-inner strong {
  color: var(--text-main);
}

.founder-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8125rem;
  color: white;
  flex-shrink: 0;
}

/* Product Hunt Embed Card */
.ph-embed-card {
  max-width: 500px;
  width: 100%;
  padding: 1.5rem;
  margin: 0 auto 4rem auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.ph-embed-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ph-logo {
  width: 64px;
  height: 64px;
  border-radius: 0.75rem;
  object-fit: cover;
  flex-shrink: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.ph-title-desc {
  flex: 1;
  min-width: 0;
}

.ph-title-desc h3 {
  margin: 0 0 0.25rem 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ph-title-desc p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ph-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: #ff6154;
  color: #ffffff;
  text-decoration: none;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(255, 97, 84, 0.25);
  width: max-content;
  border: none;
}

.ph-button:hover {
  background: #ff7669;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 97, 84, 0.4);
}

.ph-button:active {
  transform: translateY(0);
}


/* Mockup Container */
.mockup-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 80px rgba(124, 58, 237, 0.1);
}

.mockup-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* Features Grid 1 */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.feature-card {
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 2px;
}

.card-accent-1::before { background: #ffb4ab; }
.card-accent-2::before { background: #e7c365; }
.card-accent-3::before { background: #cfbcff; }

.feature-icon {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

/* Steps Section */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
  margin-top: 4rem;
}

.step-num {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.05);
  margin-bottom: 1rem;
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.bento-item {
  padding: 2.5rem;
}

.bento-wide { grid-column: span 6; }
.bento-small { grid-column: span 4; }

/* Pricing — Single Card */
.pricing-single {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.pricing-card {
  padding: 3rem;
  position: relative;
  width: 100%;
  max-width: 480px;
}

.pricing-card.popular {
  border-color: rgba(124, 58, 237, 0.5);
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.12) inset, 0 0 80px rgba(124, 58, 237, 0.06);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-gradient);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.price {
  font-size: 4rem;
  font-weight: 800;
  margin: 1rem 0 0.25rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  justify-content: center;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price span {
  font-size: 1rem;
  color: var(--text-muted);
}

.pricing-tagline {
  text-align: center;
  font-size: 0.9375rem !important;
  color: var(--text-muted) !important;
  margin-bottom: 1.5rem !important;
  font-weight: 500;
}

.features-list {
  list-style: none;
  margin: 2rem 0;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.pricing-urgency {
  text-align: center;
  font-size: 0.875rem;
  color: #ffb4ab;
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 0;
  animation: urgency-glow 2s ease-in-out infinite alternate;
}

/* CTA Section */
.cta-section {
  position: relative;
  text-align: center;
  padding: 8rem 2rem;
  border-radius: var(--radius-lg);
  margin: 4rem auto;
  max-width: 1000px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary-gradient);
  opacity: 0.15;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.testimonial-card {
  padding: 2rem;
}

.quote-icon {
  color: rgba(255, 255, 255, 0.1);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
}

/* Footer */
footer {
  border-top: 1px solid var(--border-light);
  padding: 4rem 0;
  margin-top: 4rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text-main);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .grid-cols-2, .grid-cols-3, .features-grid, .steps-grid, .bento-grid, .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .bento-wide, .bento-small {
    grid-column: span 1;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  .section { padding: 80px 0; }
  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  .benefit-item {
    font-size: 0.9375rem;
  }
  .social-proof-inner {
    font-size: 0.8125rem;
    padding: 0.5rem 1rem;
  }
  .price {
    font-size: 3.5rem;
  }
  .pricing-card {
    padding: 2rem;
  }
  .cta-section {
    padding: 5rem 1.5rem;
  }
  .cta-section h2 {
    font-size: 2rem !important;
  }
}

/* ─────────────────────────────────────
   Premium Checkout Modal — Polished
   ───────────────────────────────────── */

/* Overlay: full viewport, perfectly centered */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(4, 4, 12, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s;
  padding: 1.25rem;
  overflow-y: auto;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Modal panel: floating, centered, generous padding */
.modal-content {
  background: rgba(14, 14, 22, 0.92);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.25rem;
  padding: 3rem;
  width: 100%;
  max-width: 520px;
  margin: auto;
  position: relative;
  opacity: 0;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 0.35s ease;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 24px 64px -16px rgba(0, 0, 0, 0.65),
    0 8px 20px -8px rgba(0, 0, 0, 0.4);
}

.modal-overlay.active .modal-content {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Close button */
.modal-close {
  position: absolute;
  top: 1.125rem;
  right: 1.125rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
}

/* ── Header ── */
.modal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.modal-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.modal-subtitle {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0;
  line-height: 1.6;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Pricing Summary Card ── */
.checkout-summary-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.875rem;
  padding: 1.375rem 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.12);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.summary-product {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  text-align: left;
}

.product-name {
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
}

.product-badge {
  align-self: flex-start;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: rgba(207, 188, 255, 0.08);
  color: var(--primary);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  border: 1px solid rgba(207, 188, 255, 0.12);
  text-transform: uppercase;
}

.summary-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.original-price {
  text-decoration: line-through;
  opacity: 0.35;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
}

.current-price {
  font-weight: 800;
  font-size: 2rem;
  color: #fff;
  letter-spacing: -0.02em;
}

.summary-divider {
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin: 1rem 0;
}

.summary-urgency {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-align: left;
}

.urgency-icon {
  font-size: 0.85rem;
}

.urgency-text {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.01em;
}

/* ── Email Input ── */
.input-group {
  margin-bottom: 1.25rem;
  text-align: left;
}

.input-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.input-icon {
  position: absolute;
  left: 1rem;
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: color 0.2s ease;
}

.modal-input {
  width: 100%;
  height: 56px;
  padding: 0 1.25rem 0 3rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  box-sizing: border-box;
}

.modal-input:focus {
  border-color: rgba(207, 188, 255, 0.5);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 0 3px rgba(207, 188, 255, 0.1), 0 0 16px rgba(207, 188, 255, 0.06);
}

.input-wrapper:focus-within .input-icon {
  color: var(--primary);
}

.modal-input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

/* ── CTA Button ── */
.modal-btn {
  width: 100%;
  height: 56px;
  padding: 0 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  justify-content: center;
  border-radius: 0.75rem;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.2);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: -0.01em;
  cursor: pointer;
}

.modal-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(124, 58, 237, 0.3);
  filter: brightness(1.08);
}

.modal-btn:active:not(:disabled) {
  transform: translateY(0);
}

.modal-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  filter: none;
}

.btn-spinner {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.spinner {
  animation: rotate 2s linear infinite;
  width: 18px;
  height: 18px;
}

.spinner .path {
  stroke: currentColor;
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
  100% { transform: rotate(360deg); }
}

@keyframes dash {
  0%   { stroke-dasharray: 1, 150; stroke-dashoffset: 0; }
  50%  { stroke-dasharray: 90, 150; stroke-dashoffset: -35; }
  100% { stroke-dasharray: 90, 150; stroke-dashoffset: -124; }
}

/* ── Error Message ── */
.modal-error {
  color: #ffb4ab;
  font-size: 0.8125rem;
  margin-top: 1rem;
  display: none;
  text-align: center;
  background: rgba(255, 180, 171, 0.06);
  padding: 0.75rem 1rem;
  border-radius: 0.625rem;
  border: 1px solid rgba(255, 180, 171, 0.1);
  line-height: 1.45;
}

/* ── Trust & Payment Badges ── */
.checkout-trust-section {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
  width: 100%;
}

.trust-badges {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  width: 100%;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
}

.trust-badge svg {
  color: rgba(207, 188, 255, 0.6);
  flex-shrink: 0;
}

/* Payment method labels — minimal muted pills */
.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.payment-logos span {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  padding: 0.2rem 0.5rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: transparent;
  transition: color 0.2s ease;
}

/* ── Mobile ── */
@media (max-width: 580px) {
  .modal-overlay {
    padding: 1rem;
  }

  .modal-content {
    padding: 2rem 1.5rem;
    max-width: 100%;
    border-radius: 1rem;
  }

  .modal-title {
    font-size: 1.5rem;
  }

  .modal-subtitle {
    font-size: 0.8125rem;
  }

  .checkout-summary-card {
    padding: 1.125rem 1.25rem;
  }

  .current-price {
    font-size: 1.625rem;
  }

  .modal-input {
    height: 52px;
    font-size: 0.875rem;
  }

  .modal-btn {
    height: 52px;
    font-size: 0.875rem;
  }

  .trust-badges {
    gap: 0.875rem;
  }

  .trust-badge {
    font-size: 0.625rem;
  }

  .payment-logos {
    gap: 0.375rem;
  }

  .payment-logos span {
    font-size: 0.5rem;
  }
}

/* ═══════════════════════════════════════════
   CONVERSION TRIGGERS — NEW COMPONENTS
   ═══════════════════════════════════════════ */

/* ── Demo Video Section ── */
.demo-video-section {
  text-align: center;
  padding: 2rem 0 4rem;
  max-width: 900px;
  margin: 0 auto;
}

.demo-video-label {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.demo-pulse {
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  display: inline-block;
  animation: demo-pulse-anim 2s ease-in-out infinite;
}

@keyframes demo-pulse-anim {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
}

.demo-video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.demo-video-frame {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1.5px solid rgba(207, 188, 255, 0.2);
  background: rgba(14, 14, 22, 0.6);
  box-shadow:
    0 0 40px rgba(124, 58, 237, 0.12),
    0 0 80px rgba(37, 99, 235, 0.06),
    0 20px 60px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  animation: video-glow 4s ease-in-out infinite alternate;
}

@keyframes video-glow {
  0% { box-shadow: 0 0 40px rgba(124, 58, 237, 0.12), 0 0 80px rgba(37, 99, 235, 0.06), 0 20px 60px rgba(0, 0, 0, 0.4); }
  100% { box-shadow: 0 0 60px rgba(124, 58, 237, 0.2), 0 0 120px rgba(37, 99, 235, 0.1), 0 20px 60px rgba(0, 0, 0, 0.4); }
}

.demo-video-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.demo-video-caption {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 1.25rem;
  margin-bottom: 0;
  font-weight: 500;
}

/* ── Activity Ticker ── */
.activity-ticker {
  position: fixed;
  bottom: 5.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(14, 14, 22, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  padding: 0.625rem 1.25rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  z-index: 9998;
  transform: translateX(-120%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  max-width: 360px;
}

.activity-ticker.visible {
  transform: translateX(0);
  opacity: 1;
}

.ticker-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  animation: ticker-dot-pulse 1.5s ease-in-out infinite;
}

@keyframes ticker-dot-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ── Countdown Timer ── */
.countdown-timer {
  background: rgba(124, 58, 237, 0.06);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: 0.875rem;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.countdown-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.countdown-digits {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 56px;
}

.countdown-unit span {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.countdown-unit small {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.countdown-sep {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(207, 188, 255, 0.4);
  padding-bottom: 1rem;
}

/* ── Anchoring: Price Strikethrough ── */
.price-anchor {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.75rem;
  margin: 1rem 0 0.25rem;
}

.price-anchor .price-old {
  font-size: 1.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: line-through;
  text-decoration-color: rgba(255, 100, 100, 0.6);
}

.price-anchor .price-new {
  font-size: 4rem;
  font-weight: 800;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.price-save-badge {
  display: inline-block;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: #4ade80;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

/* ── Sticky Bottom CTA ── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9997;
  background: rgba(8, 8, 16, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.75rem 1.5rem;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
}

.sticky-cta.active {
  transform: translateY(0);
  opacity: 1;
}

.sticky-cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sticky-cta-text {
  font-size: 0.9375rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sticky-cta-text strong {
  font-weight: 700;
}

.sticky-viewers {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.sticky-cta-btn {
  white-space: nowrap;
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
}

/* ── Before/After Comparison (Loss Aversion) ── */
.before-after-section {
  padding: 100px 0;
}

.before-after-section h2 {
  margin-bottom: 1rem;
}

.before-after-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.0625rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.ba-card {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.ba-card.ba-before {
  background: rgba(255, 100, 100, 0.03);
  border-color: rgba(255, 100, 100, 0.12);
}

.ba-card.ba-after {
  background: rgba(34, 197, 94, 0.03);
  border-color: rgba(34, 197, 94, 0.12);
}

.ba-card-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ba-before .ba-card-label {
  color: #f87171;
}

.ba-after .ba-card-label {
  color: #4ade80;
}

.ba-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ba-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.ba-card ul li .ba-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* ── Viewers Badge ── */
.viewers-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.viewers-badge-dot {
  width: 6px;
  height: 6px;
  background: #ef4444;
  border-radius: 50%;
  animation: demo-pulse-anim 2s ease-in-out infinite;
}

/* ── Scroll Animation Utilities ── */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive — Conversion Components ── */
@media (max-width: 768px) {
  .demo-video-section {
    padding: 1.5rem 0 3rem;
  }

  .demo-video-label {
    font-size: 0.6875rem;
  }

  .activity-ticker {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 5rem;
    max-width: none;
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }

  .countdown-unit {
    min-width: 44px;
  }

  .countdown-unit span {
    font-size: 1.5rem;
  }

  .sticky-cta-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .sticky-cta-text {
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.8125rem;
  }

  .sticky-cta-btn {
    width: 100%;
  }

  .before-after-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .ba-card {
    padding: 1.75rem;
  }

  .before-after-section {
    padding: 60px 0;
  }

  .price-anchor .price-new {
    font-size: 3.5rem;
  }

  .price-anchor .price-old {
    font-size: 1.375rem;
  }
}
