html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
html, body { height: 100%; }
body {
  margin: 0;
  background: #0a060e;
  color: #fff;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.font-inter { font-family: 'Inter', system-ui, sans-serif; }
.font-jakarta { font-family: 'Plus Jakarta Sans', sans-serif; }
.font-instrument { font-family: 'Instrument Serif', serif; }

/* ============== Glassmorphic nav ============== */
.glass-nav {
  position: relative;
  background: rgba(20, 8, 18, 0.35);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10), 0 8px 32px rgba(0, 0, 0, 0.25);
  border-radius: 999px;
}
.glass-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.35), rgba(255,255,255,0.04) 60%, rgba(255,255,255,0.12));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.nav-cta {
  font-size: 12px; letter-spacing: 0.12em; padding: 10px 18px;
  transition: transform 200ms ease, box-shadow 240ms ease;
}
.nav-cta:hover { transform: translateY(-1px); }
@media (max-width: 420px) {
  .nav-cta { font-size: 10px; letter-spacing: 0.02em; padding: 9px 12px; gap: 4px; }
}
@media (max-width: 340px) {
  .nav-cta-label { display: none; }
}
.cta-btn { transition: transform 200ms ease, box-shadow 240ms ease; }
.cta-btn:hover { transform: translateY(-1px); box-shadow: 0 14px 44px -10px rgba(240, 110, 126, 0.55); }
.ghost-btn { transition: background 200ms ease, border-color 200ms ease; }
.ghost-btn:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.22); }

/* ============== Demo disclosure bar + header offset ============== */
.demo-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  text-align: center; padding: 8px 16px;
  background: rgba(240,110,126,0.12);
  border-bottom: 1px solid rgba(240,110,126,0.22);
  font-family: 'Inter', sans-serif; font-size: 11.5px; color: rgba(255,255,255,0.75);
  letter-spacing: 0.01em;
}
.demo-bar strong { color: #fff; font-weight: 600; }
.site-header { top: 46px; }
@media (min-width: 40rem) { .site-header { top: 50px; } }

/* ============== Section dividers ============== */
.section-divider {
  position: relative;
  height: 1px;
  width: 100%;
  pointer-events: none;
  isolation: isolate;
}
.section-divider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(240,110,126,0.05) 15%, rgba(240,110,126,0.55) 50%, rgba(240,110,126,0.05) 85%, transparent 100%);
}
.section-divider::after {
  content: "";
  position: absolute;
  left: 10%; right: 10%; top: 50%;
  height: 14px;
  transform: translateY(-50%);
  background: radial-gradient(ellipse at center, rgba(240,110,126,0.45) 0%, rgba(240,110,126,0.15) 35%, transparent 70%);
  filter: blur(6px);
}

/* ============== Hero: animated glowing wave background ============== */
.hero-section { position: relative; background: #0a060e; }
.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.wave-glow {
  position: absolute; left: 0; right: 0; top: 52%; width: 100%; height: 380px;
  transform: translateY(-50%); overflow: visible;
  transition: transform 900ms cubic-bezier(.2,.7,.2,1);
}
@media (max-width: 640px) {
  .wave-glow { height: 230px; }
}
.wave-layer { fill: none; stroke: url(#waveGradient); }
.wave-layer--ambient { stroke-width: 120px; filter: blur(90px); opacity: 0.32; }
.wave-layer--outer { stroke-width: 70px; filter: blur(62px); opacity: 0.55; }
.wave-layer--mid { stroke-width: 20px; filter: blur(22px); opacity: 0.85; }
.wave-layer--core { stroke-width: 4px; filter: blur(1px); opacity: 0.95; }
.cursor-glow {
  position: absolute; top: 0; left: 0; width: 520px; height: 520px;
  margin-left: -260px; margin-top: -260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.10) 0%, rgba(240,110,126,0.08) 45%, transparent 72%);
  mix-blend-mode: screen; opacity: 0;
  transition: opacity 420ms ease;
}
.cursor-glow.is-active { opacity: 1; }
.hero-grain { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(10,6,14,0) 0%, rgba(10,6,14,0.4) 55%, #0a060e 100%); pointer-events: none; }

/* ============== Native entrance and reveal motion ============== */
.js .glass-nav,
.js .hero-eyebrow,
.js .hero-sub,
.js .hero-ctas > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 720ms cubic-bezier(.2,.7,.2,1), transform 720ms cubic-bezier(.2,.7,.2,1);
}
.js.hero-ready .glass-nav,
.js.hero-ready .hero-eyebrow,
.js.hero-ready .hero-sub,
.js.hero-ready .hero-ctas > * {
  opacity: 1;
  transform: none;
}
.js.hero-ready .hero-eyebrow { transition-delay: 60ms; }
.js.hero-ready .hero-sub { transition-delay: 460ms; }
.js.hero-ready .hero-ctas > :first-child { transition-delay: 620ms; }
.js.hero-ready .hero-ctas > :last-child { transition-delay: 720ms; }
.word-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(105%);
  transition: opacity 820ms cubic-bezier(.2,.7,.2,1), transform 820ms cubic-bezier(.2,.7,.2,1);
}
.hero-ready .hero-word {
  opacity: 1;
  transform: translateY(0);
}
.word-delay-1 { transition-delay: 60ms; }
.word-delay-2 { transition-delay: 120ms; }
.word-delay-3 { transition-delay: 180ms; }
.word-delay-4 { transition-delay: 240ms; }
.word-delay-5 { transition-delay: 300ms; }
.word-delay-6 { transition-delay: 360ms; }
.word-delay-7 { transition-delay: 420ms; }
.word-delay-8 { transition-delay: 480ms; }
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 760ms cubic-bezier(.2,.7,.2,1), transform 760ms cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .glass-nav,
  .js .hero-eyebrow,
  .js .hero-sub,
  .js .hero-ctas > *,
  .hero-word,
  .reveal { opacity: 1 !important; transform: none !important; }
  .wave-glow { transform: translateY(-50%) !important; }
  .cursor-glow { display: none !important; }
}

/* ============== Problem / Offer cards (shared) ============== */
.info-section { position: relative; background: #0a060e; overflow: hidden; }
.info-section::before {
  content: ""; position: absolute; top: -10%; right: -10%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(240,110,126,0.10) 0%, transparent 60%);
  filter: blur(60px); pointer-events: none;
}
.info-section::after {
  content: ""; position: absolute; bottom: -10%; left: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(112,40,90,0.18) 0%, transparent 60%);
  filter: blur(60px); pointer-events: none;
}
.info-section--top::before, .info-section--top::after { display: none; }

.feature-card {
  position: relative;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 28px 26px 24px;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), background 320ms ease, border-color 320ms ease, box-shadow 320ms ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.04);
  border-color: rgba(240,110,126,0.45);
  box-shadow: 0 0 0 1px rgba(240,110,126,0.20), 0 12px 36px -10px rgba(240,110,126,0.40), 0 0 60px -10px rgba(240,110,126,0.30);
}
.feature-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(240,110,126,0.10); color: #f06e7e;
  border: 1px solid rgba(240,110,126,0.18);
}
.feature-card:hover .feature-icon { background: rgba(240,110,126,0.18); border-color: rgba(240,110,126,0.40); }

.check-icon {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: rgba(240,110,126,0.15); color: #f06e7e;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(240,110,126,0.30);
}
.benefit-row { display: flex; align-items: flex-start; gap: 14px; }
.benefit-row + .benefit-row { margin-top: 18px; }

/* ============== Process section ============== */
.process-section { position: relative; background: #0a060e; overflow: hidden; }
.process-section::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 90%; max-width: 1100px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.10), transparent);
  pointer-events: none;
}
.process-step { position: relative; }
.process-num {
  font-family: 'Instrument Serif', serif; font-style: italic; font-size: 44px; line-height: 1;
  color: #f06e7e; text-shadow: 0 0 30px rgba(240,110,126,0.30); letter-spacing: -0.02em;
}
.process-dotline {
  flex-shrink: 0; width: 8px; height: 8px; border-radius: 50%;
  background: rgba(240,110,126,0.40); box-shadow: 0 0 0 4px rgba(240,110,126,0.10);
}
.process-connector {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, rgba(240,110,126,0.30), rgba(240,110,126,0.05));
}

/* ============== Proof / Trust section ============== */
.proof-section { position: relative; background: #0a060e; overflow: hidden; }
.proof-section::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 90%; max-width: 1100px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.10), transparent);
  pointer-events: none;
}
.proof-section::after {
  content: ""; position: absolute; top: 30%; right: -10%;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(240,110,126,0.08) 0%, transparent 65%);
  filter: blur(60px); pointer-events: none;
}
.stat-card {
  text-align: center; padding: 22px 16px; border-radius: 16px;
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.07);
}
.stat-num {
  font-family: 'Instrument Serif', serif; font-style: italic; color: #f06e7e;
  font-size: 40px; line-height: 1;
}
.testimonial-card {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px; padding: 24px 22px; display: flex; flex-direction: column; gap: 14px;
  transition: border-color 220ms ease, background 220ms ease;
}
.testimonial-card:hover { border-color: rgba(240,110,126,0.30); background: rgba(255,255,255,0.035); }
.testimonial-stars { color: #f06e7e; font-size: 13px; letter-spacing: 2px; }
.testimonial-quote { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.75); }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(240,110,126,0.55), rgba(112,40,90,0.65));
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 12px; color: #fff;
}
.testimonial-name { font-size: 13px; font-weight: 600; color: #fff; }
.testimonial-role { font-size: 11.5px; color: rgba(255,255,255,0.45); }

.badge-row { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.10);
  font-size: 12.5px; color: rgba(255,255,255,0.75); font-family: 'Inter', sans-serif;
}

.ba-block {
  border-radius: 18px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}
.ba-panels { display: grid; grid-template-columns: 1fr 1fr; }
.ba-panel { position: relative; aspect-ratio: 3 / 4; display: flex; align-items: flex-end; padding: 14px; }
.ba-panel--before { background: linear-gradient(160deg, #1c1420, #2a1620); }
.ba-panel--after { background: linear-gradient(160deg, #2a1a24, rgba(240,110,126,0.28)); }
.ba-tag {
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 5px 10px; border-radius: 999px;
  background: rgba(0,0,0,0.4); color: #fff; backdrop-filter: blur(6px);
}
.ba-caption { padding: 12px 16px; font-size: 11.5px; color: rgba(255,255,255,0.4); text-align: center; }

/* ============== FAQ ============== */
.faq-section { position: relative; background: #0a060e; overflow: hidden; }
.faq-section::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 90%; max-width: 1100px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.10), transparent);
  pointer-events: none;
}
.faq-item {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px; overflow: hidden; transition: border-color 220ms ease, background 220ms ease;
}
.faq-item:hover { border-color: rgba(255,255,255,0.14); }
.faq-item--open { background: rgba(240,110,126,0.05); border-color: rgba(240,110,126,0.30); }
.faq-trigger {
  display: flex; align-items: center; gap: 18px; width: 100%; padding: 20px 22px;
  background: transparent; border: none; cursor: pointer; text-align: left;
  font-family: 'Inter', sans-serif; color: #fff; transition: background 200ms ease;
}
.faq-num {
  font-family: 'Instrument Serif', serif; font-style: italic; font-size: 22px; line-height: 1;
  color: rgba(240,110,126,0.85); flex-shrink: 0; width: 32px;
}
.faq-q { flex: 1; font-size: 15.5px; font-weight: 600; letter-spacing: -0.005em; line-height: 1.4; }
.faq-chevron {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; color: #fff;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10);
  transition: transform 280ms ease, background 220ms ease, border-color 220ms ease, color 220ms ease;
}
.faq-item--open .faq-chevron { transform: rotate(45deg); background: #f06e7e; border-color: #f06e7e; color: #0a060e; }
.faq-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 320ms ease; }
.faq-item--open .faq-body { grid-template-rows: 1fr; }
.faq-body-inner { overflow: hidden; color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.65; padding: 0 22px 0 72px; }
.faq-item--open .faq-body-inner { padding-bottom: 22px; }

/* ============== Final CTA / Contact ============== */
.contact-section { position: relative; background: #0a060e; overflow: hidden; }
.contact-section::before {
  content: ""; position: absolute; top: 20%; left: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(240,110,126,0.10) 0%, transparent 60%);
  filter: blur(70px); pointer-events: none;
}
.contact-section::after {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 90%; max-width: 1100px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.10), transparent);
  pointer-events: none;
}
.contact-detail {
  display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: 14px;
  background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.06);
  transition: background 220ms ease, border-color 220ms ease; text-decoration: none;
}
.contact-detail:hover { background: rgba(255,255,255,0.045); border-color: rgba(240,110,126,0.25); }
.contact-detail-icon {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(240,110,126,0.10); color: #f06e7e; border: 1px solid rgba(240,110,126,0.18);
}
.contact-card {
  position: relative; background: rgba(255,255,255,0.02);
  backdrop-filter: blur(14px) saturate(140%); -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 22px; padding: 32px 28px;
}
.contact-form { display: flex; flex-direction: column; }
.contact-field { display: flex; flex-direction: column; gap: 8px; }
.contact-label {
  font-family: 'Inter', sans-serif; font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.18em; font-weight: 600; color: rgba(255,255,255,0.55);
}
.contact-input {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 11px; padding: 12px 14px; color: #fff; font-family: 'Inter', sans-serif;
  font-size: 14px; line-height: 1.5; outline: none;
  transition: border-color 200ms ease, background 200ms ease; width: 100%; box-sizing: border-box;
}
.contact-input::placeholder { color: rgba(255,255,255,0.30); }
.contact-input:focus { border-color: rgba(240,110,126,0.55); background: rgba(255,255,255,0.06); }
.contact-textarea { resize: vertical; min-height: 90px; font-family: 'Inter', sans-serif; }
.contact-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: #f06e7e; color: #0a060e; font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: 13.5px; letter-spacing: 0.02em; border: none; border-radius: 12px;
  padding: 14px 22px; cursor: pointer; transition: transform 200ms ease, box-shadow 240ms ease;
}
.contact-submit:hover { transform: translateY(-1px); box-shadow: 0 14px 40px -12px rgba(240,110,126,0.55); }
.contact-submit:disabled { opacity: 0.6; cursor: default; transform: none; }
.privacy-note { font-size: 11.5px; color: rgba(255,255,255,0.4); line-height: 1.5; }

.site-footer {
  text-align: center; padding: 28px 20px 34px; font-size: 12px; color: rgba(255,255,255,0.35);
  border-top: 1px solid rgba(255,255,255,0.06);
}
