/* ===== SELF-HOSTED INTER FONT ===== */
@font-face{
  font-family:'Inter';
  font-style:normal;
  font-weight:400 800;
  font-display:swap;
  src:url(fonts/inter-latin-ext.woff2) format('woff2');
  unicode-range:U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}
@font-face{
  font-family:'Inter';
  font-style:normal;
  font-weight:400 800;
  font-display:swap;
  src:url(fonts/inter-latin.woff2) format('woff2');
  unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

/* ===== CSS CUSTOM PROPERTIES ===== */
:root{
  --bg-primary:#0a0a0a;
  --bg-card:#111111;
  --bg-card-hover:#1a1a1a;
  --bg-surface:#161616;
  --border-subtle:rgba(255,255,255,0.08);
  --border-accent:rgba(124,58,237,0.3);
  --border-accent-hover:rgba(124,58,237,0.6);
  --text-primary:#f5f5f5;
  --text-secondary:rgba(255,255,255,0.7);
  --text-muted:rgba(255,255,255,0.55);
  --accent:#7c3aed;
  --accent-light:#a78bfa;
  --accent-glow:rgba(124,58,237,0.15);
  --gradient-accent:linear-gradient(135deg,#7c3aed,#a78bfa);
  --radius-sm:12px;
  --radius-md:20px;
  --radius-lg:32px;
  --radius-xl:48px;
  --max-width:1100px;
  --section-padding:6rem 1.5rem;
  --ease-out-expo:cubic-bezier(0.16,1,0.3,1);
  --shadow-card:0 2px 8px rgba(0,0,0,0.2),0 8px 32px rgba(0,0,0,0.15);
  --shadow-card-hover:0 4px 16px rgba(0,0,0,0.25),0 16px 48px rgba(0,0,0,0.2),0 0 0 1px rgba(124,58,237,0.15);
}

/* ===== RESET ===== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:"Inter",-apple-system,BlinkMacSystemFont,sans-serif;
  background:var(--bg-primary);
  color:var(--text-primary);
  line-height:1.6;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  text-rendering:geometricPrecision;
}

/* ===== SCROLL GLOW ===== */
.scroll-glow{
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:0;
  opacity:0;
  transition:opacity 1.5s ease;
  background:radial-gradient(ellipse 60% 50% at var(--glow-x,50%) var(--glow-y,40%),
    rgba(124,58,237,0.06) 0%,
    rgba(124,58,237,0.02) 40%,
    transparent 70%);
}

/* ===== UTILITY ===== */
.highlight{
  background:var(--gradient-accent);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}
.highlight-danger{
  background:linear-gradient(135deg,#ef4444,#f87171);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}
.container{
  max-width:var(--max-width);
  margin:0 auto;
  padding:0 1.5rem;
}

/* ===== SCROLL ANIMATIONS ===== */
[data-animate]{
  opacity:0;
  transform:translateY(24px);
  transition:opacity 0.7s var(--ease-out-expo),transform 0.7s var(--ease-out-expo);
}
[data-animate].visible{
  opacity:1;
  transform:translateY(0);
}
[data-animate="fade-up"]{transform:translateY(24px)}
[data-animate="fade-in"]{transform:none}
[data-animate="scale-in"]{transform:scale(0.96);transform-origin:center}
[data-animate="scale-in"].visible{transform:scale(1)}

/* Stagger children */
[data-animate-delay="1"]{transition-delay:0.12s}
[data-animate-delay="2"]{transition-delay:0.24s}
[data-animate-delay="3"]{transition-delay:0.36s}
[data-animate-delay="4"]{transition-delay:0.48s}

/* ===== HEADER ===== */
.header{
  position:fixed;top:0;left:0;right:0;
  z-index:100;
  padding:1rem 1.5rem;
  transition:padding 0.3s;
}
.header.scrolled{
  padding:0.6rem 1.5rem;
}
.header-wrap{
  max-width:820px;
  margin:0 auto;
  display:flex;
  align-items:center;
  gap:0.6rem;
}
.header-inner{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:rgba(10,10,10,0.92);
  backdrop-filter:blur(24px);-webkit-backdrop-filter:blur(24px);
  border-radius:60px;
  border:1px solid var(--border-subtle);
  padding:0.9rem 2rem;
  transition:box-shadow .3s,border-color .3s;
}
.header-inner:hover{
  border-color:var(--border-accent);
}
.header.scrolled .header-inner{
  box-shadow:0 8px 40px rgba(124,58,237,0.12),0 4px 20px rgba(0,0,0,0.4);
  border-color:var(--border-accent);
}
.logo{
  display:flex;align-items:center;gap:0.6rem;
  text-decoration:none;color:#fff;font-weight:700;font-size:1rem;
}
.logo img{width:auto;height:32px;object-fit:contain}
.nav{display:flex;gap:1.75rem}
.nav a{
  color:var(--text-secondary);text-decoration:none;
  font-size:0.88rem;font-weight:500;
  transition:color .2s;
  position:relative;
}
.nav a:hover{color:#fff}
.nav a::after{
  content:'';position:absolute;
  bottom:-4px;left:50%;width:0;height:2px;
  background:var(--accent);border-radius:2px;
  transition:width .25s,left .25s;
}
.nav a:hover::after,.nav a.active::after{width:100%;left:0}
.nav a.active{color:#fff}

/* Nav download button */
.nav-download{
  display:inline-flex;align-items:center;gap:0.55rem;
  background:var(--accent);color:#fff;
  padding:0.75rem 1.5rem;border-radius:60px;
  font-weight:600;font-size:0.88rem;text-decoration:none;
  white-space:nowrap;border:none;
  transition:transform .2s,box-shadow .2s;
  animation:nav-cta-pulse 3s ease-in-out infinite;
}
.nav-download:hover{
  transform:translateY(-1px);
  box-shadow:0 6px 20px rgba(124,58,237,0.4);
  animation:none;
}
@keyframes nav-cta-pulse{
  0%,100%{box-shadow:0 0 0 0 rgba(124,58,237,0.45)}
  50%{box-shadow:0 0 20px 6px rgba(124,58,237,0.3)}
}
.nav-download img{width:auto;height:18px;object-fit:contain;filter:brightness(0) invert(1)}

/* ===== STORE BUTTONS ===== */
.store-btn{
  display:inline-flex;align-items:center;gap:1rem;
  padding:1.1rem 2rem;border-radius:16px;
  text-decoration:none;
  transition:transform 0.4s var(--ease-out-expo),box-shadow 0.4s var(--ease-out-expo),border-color 0.3s;
}
.store-btn:hover{transform:translateY(-3px)}
.store-btn img{width:28px;height:28px;object-fit:contain}
.store-btn-dark{
  background:#fff;color:#000;
  border:2px solid rgba(255,255,255,0.15);
  animation:cta-pulse 2.5s ease-in-out infinite;
}
.store-btn-dark:hover{
  border-color:rgba(255,255,255,0.3);
  box-shadow:0 8px 28px rgba(255,255,255,0.12);
  animation:none;
}
@keyframes cta-pulse{
  0%,100%{box-shadow:0 0 0 0 rgba(124,58,237,0.5)}
  50%{box-shadow:0 0 28px 8px rgba(124,58,237,0.35)}
}
.store-btn-light{
  background:transparent;color:#fff;
  border:2px solid var(--border-accent);
}
.store-btn-light:hover{
  border-color:var(--border-accent-hover);
  box-shadow:0 8px 28px rgba(124,58,237,0.15);
}
.store-btn-text{display:flex;flex-direction:column;line-height:1.15;text-align:left}
.store-btn-label{font-size:0.82rem;font-weight:500;opacity:0.7}
.store-btn-title{font-size:1.15rem;font-weight:700}
.store-btn-light .store-btn-label{opacity:0.5}

/* ===== PHONE MOCKUP ===== */
.phone-mockup{max-width:320px}
.phone-mockup.shimmer{position:relative;overflow:hidden;border-radius:26px;background:linear-gradient(110deg,#161616 30%,#1e1e1e 50%,#161616 70%);background-size:200% 100%;animation:shimmer 1.6s ease-in-out infinite}
.phone-mockup.img-loaded{animation:none;background:none}
.phone-mockup img{border-radius:26px;width:100%;height:auto;display:block;aspect-ratio:420/745}

/* ===== LAZY IMAGE FADE-IN ===== */
img[loading="lazy"]{opacity:0;transition:opacity 0.5s ease}
img[loading="lazy"].loaded{opacity:1}

@keyframes shimmer{
  0%{background-position:200% 0}
  100%{background-position:-200% 0}
}

/* ===== SECTION HEADINGS ===== */
h2{
  font-size:clamp(1.8rem,5vw,3rem);
  font-weight:800;text-align:center;
  margin-bottom:1.5rem;letter-spacing:-0.03em;line-height:1.15;
  color:var(--text-primary);
}

/* ===== HERO ===== */
.hero{
  padding:calc(5.5rem + 30px) 1.5rem 0;
  position:relative;
  overflow-x:clip;
  overflow-y:visible;
}
.hero-container{
  max-width:var(--max-width);
  margin:0 auto;
  position:relative;
  overflow:visible;
  padding:0;
}
.hero-center{
  display:flex;flex-direction:column;align-items:center;
  text-align:center;position:relative;z-index:2;
  padding:0 2rem;
  min-height:480px;
}
.hero-eyebrow{
  display:inline-block;
  font-size:0.85rem;
  font-weight:700;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:var(--accent-light);
  margin-bottom:1.5rem;
  padding:0.5rem 1.25rem;
  border:1px solid var(--border-accent);
  border-radius:60px;
  background:rgba(124,58,237,0.08);
}
.hero h1{
  font-size:clamp(2.5rem,6vw,4rem);
  font-weight:800;line-height:1.1;
  margin-bottom:1.5rem;letter-spacing:-0.03em;
  color:#fff;
}
.hero-subtitle{
  font-size:clamp(1rem,2vw,1.25rem);
  color:var(--text-secondary);
  max-width:600px;
  margin:0 auto 2.5rem;
  line-height:1.6;
}
.hero-buttons{
  display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;
  margin-bottom:0.75rem;
}
.hero-microcopy{
  font-size:0.85rem;color:var(--text-muted);
  margin:0 auto 0.5rem;
  text-align:center;
}
/* Hero visual — phone + surrounding icons */
.hero-visual{
  position:relative;
  max-width:900px;
  width:100%;
  margin:2rem auto 0;
  z-index:1;
  --icon-scale:1;
}
.hero-visual::before{
  content:'';
  position:absolute;
  top:50%;left:50%;
  width:140%;height:140%;
  transform:translate(-50%,-50%);
  background:radial-gradient(ellipse at center,rgba(124,58,237,0.08) 0%,transparent 60%);
  pointer-events:none;
  z-index:0;
}
.hero-phone{
  position:relative;z-index:3;
  display:flex;justify-content:center;
}
.hero-phone .phone-mockup{
  max-width:420px;
}
.floating-icon{
  position:absolute;
  left:var(--x);
  top:var(--y);
  z-index:1;
  will-change:transform;
}
.floating-icon-inner{
  width:calc(var(--size,90px) * var(--icon-scale));
  height:calc(var(--size,90px) * var(--icon-scale));
  position:relative;
  transform:rotate(var(--rotate,0deg));
  animation:float-bob var(--bob-dur,6s) ease-in-out infinite;
  animation-delay:var(--delay,0s);
  transition:transform 0.4s cubic-bezier(0.25,0.1,0.25,1),filter 0.4s ease;
  cursor:default;
}
.floating-icon-inner:hover{
  transform:rotate(var(--rotate,0deg)) scale(1.12);
  filter:brightness(1.1);
}
.floating-icon-inner:hover .floating-lock{
  animation:badge-wiggle 0.5s ease;
}
.floating-icon-inner>img{
  width:100%;height:100%;
  border-radius:22%;
  object-fit:cover;
  box-shadow:0 8px 30px rgba(0,0,0,0.35),0 2px 8px rgba(0,0,0,0.2);
  display:block;
}
.floating-lock{
  position:absolute;
  top:-8px;right:-8px;
  width:calc(30px * var(--icon-scale));
  height:calc(30px * var(--icon-scale));
  border-radius:50%;
  background:var(--badge-bg,var(--accent));
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 2px 10px rgba(0,0,0,0.3);
  z-index:2;
}
.floating-lock img{
  width:60%;height:60%;
  border-radius:0!important;
  box-shadow:none!important;
  object-fit:contain;
  filter:brightness(0) invert(1);
}

/* Floating habit card screenshots */
.floating-card{
  position:absolute;
  left:var(--x);
  top:var(--y);
  z-index:2;
  will-change:transform;
  width:calc(var(--card-w, 160px) * var(--icon-scale));
  transform:rotate(var(--rotate,0deg));
  animation:float-bob var(--bob-dur,7s) ease-in-out infinite;
  animation-delay:var(--delay,0s);
  transition:transform 0.4s cubic-bezier(0.25,0.1,0.25,1),filter 0.4s ease;
  pointer-events:none;
}
.floating-card img{
  width:100%;height:auto;
  border-radius:16px;
  box-shadow:0 8px 30px rgba(0,0,0,0.4),0 2px 8px rgba(0,0,0,0.2);
  display:block;
}

/* Floating icon keyframes */
@keyframes float-bob{
  0%,100%{translate:0 0}
  50%{translate:0 -14px}
}
@keyframes badge-wiggle{
  0%,100%{transform:rotate(0deg) scale(1)}
  25%{transform:rotate(-12deg) scale(1.15)}
  50%{transform:rotate(8deg) scale(1.1)}
  75%{transform:rotate(-5deg) scale(1.05)}
}

/* ===== SOCIAL PROOF BAR ===== */
.proof-bar{
  position:relative;
  z-index:10;
  padding:2rem 1.5rem;
  border-top:1px solid var(--border-subtle);
  border-bottom:1px solid var(--border-subtle);
  background:rgba(22,22,22,0.6);
  backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);
}
.proof-bar-inner{
  max-width:var(--max-width);
  margin:0 auto;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:3rem;
  flex-wrap:wrap;
}
.proof-item{
  display:flex;align-items:center;gap:0.6rem;
  font-size:1rem;font-weight:600;
  color:var(--text-secondary);
}
.proof-item .proof-number{
  font-size:1.2rem;
  font-weight:800;
  color:#fff;
  font-variant-numeric:tabular-nums;
}
.proof-item .proof-stars{
  color:#facc15;
  font-size:1.1rem;
}
.proof-divider{
  width:1px;height:24px;
  background:var(--border-subtle);
}

/* ===== PROBLEM SECTION ===== */

/* ===== HOW IT WORKS ===== */
/* ===== FEATURES SHOWCASE ===== */
.features-section{
  padding:var(--section-padding);
}
.features-section h2{
  margin-bottom:0;
}
.features-list{
  max-width:var(--max-width);
  margin:4rem auto 0;
  display:flex;
  flex-direction:column;
  gap:6rem;
}
.feature-row{
  display:flex;
  align-items:center;
  gap:2rem;
}
.feature-row:nth-child(even){
  flex-direction:row-reverse;
}
.feature-visual{
  flex:1;
  display:flex;
  justify-content:flex-end;
}
.feature-row:nth-child(even) .feature-visual{
  justify-content:flex-start;
}
.feature-visual img{
  --scroll-y:0px;
  width:100%;
  max-width:500px;
  max-height:740px;
  height:auto;
  aspect-ratio:1135/2014;
  object-fit:contain;
  filter:drop-shadow(0 16px 48px rgba(124,58,237,0.2));
  transform:translateY(var(--scroll-y));
  transition:transform 0.35s ease-out, opacity 0.5s ease;
}
.feature-content{
  flex:1;
}
.feature-row:nth-child(even) .feature-content{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  text-align:right;
}
.feature-badge{
  display:inline-block;
  font-size:0.75rem;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:1.5px;
  color:var(--accent-light);
  background:rgba(124,58,237,0.1);
  padding:0.35rem 0.85rem;
  border-radius:20px;
  border:1px solid rgba(124,58,237,0.2);
  margin-bottom:1rem;
}
.feature-content h3{
  font-size:clamp(1.5rem,3vw,2rem);
  font-weight:700;
  color:#fff;
  margin-bottom:0.75rem;
}
.feature-content p{
  font-size:1.05rem;
  color:var(--text-secondary);
  line-height:1.7;
  max-width:440px;
}

/* ===== TESTIMONIALS — WALL OF LOVE MARQUEE ===== */
.testimonials-section{
  padding:var(--section-padding);
  overflow:hidden;
  position:relative;
}
/* Ambient glow behind the marquee */
.testimonials-section::before{
  content:'';
  position:absolute;
  top:50%;left:50%;
  width:60%;height:60%;
  transform:translate(-50%,-50%);
  background:radial-gradient(ellipse at center,rgba(124,58,237,0.06) 0%,transparent 70%);
  pointer-events:none;
}
.testimonials-section h2{
  margin-bottom:0.75rem;
  position:relative;
}
.testimonials-rating{
  text-align:center;
  font-size:0.95rem;
  color:var(--text-secondary);
  margin-bottom:4.5rem;
  font-weight:500;
  position:relative;
}
.testimonials-rating-stars{
  color:#f5c518;
  font-size:1.1rem;
  letter-spacing:2px;
  margin-right:0.4rem;
}

/* Testimonials grid — flexbox columns (not CSS column-count, which is broken in Safari) */
.testimonials-grid{
  display:flex;
  gap:1.25rem;
  max-width:var(--max-width);
  margin:0 auto;
  transition:transform 0.25s ease-out;
}
.testimonials-col{
  flex:1;
  display:flex;
  flex-direction:column;
  gap:2rem;
  min-width:0;
}

/* Reduced motion */
@media(prefers-reduced-motion:reduce){
  .testimonials-grid,
  .testimonial-card{
    transition:none !important;
  }
  .floating-icon,
  .floating-card{
    animation:none !important;
  }
  .store-btn-dark,
  .nav-download{
    animation:none !important;
  }
  [data-animate]{
    opacity:1 !important;
    transform:none !important;
    transition:none !important;
  }
  .strike-icon{
    animation:none !important;
    transition-duration:0s !important;
  }
  .strike-section.active .strike-icon{
    opacity:1 !important;
    animation:none !important;
  }
  .strike-logo,.strike-text,.strike-glow,.strike-you,.strike-plus{
    transition-duration:0s !important;
    animation:none !important;
  }
  .strike-section.active .strike-logo{
    opacity:1 !important;
    transform:scale(1) !important;
  }
  .strike-section.active .strike-text{
    opacity:1 !important;
    transform:translateY(0) !important;
  }
  .strike-section.active .strike-you{
    opacity:1 !important;
    transform:translateX(0) !important;
  }
  .strike-section.active .strike-plus,
  .strike-section.active .strike-glow{
    opacity:1 !important;
  }
  .strike-icon.struck img{filter:brightness(0.2) saturate(0.3) !important}
  .strike-pulse,.strike-flash{display:none !important}
  img[loading="lazy"]{opacity:1 !important;transition:none !important}
  .phone-mockup.shimmer{animation:none !important;background:none !important}
}

/* Testimonial card — outer shell carries spotlight glow */
.testimonial-card{
  --mouse-x:50%;
  --mouse-y:50%;
  --spotlight-opacity:0;
  --scroll-y:0px;
  padding:1px;
  background:var(--border-subtle);
  border-radius:var(--radius-md);
  position:relative;
  transform:translateY(var(--scroll-y));
  transition:transform 0.35s ease-out, opacity 0.35s ease-out;
}
/* Radial spotlight that follows the cursor */
.testimonial-card::before{
  content:'';
  position:absolute;
  inset:0;
  border-radius:inherit;
  background:radial-gradient(300px circle at var(--mouse-x) var(--mouse-y),rgba(124,58,237,0.45),transparent 40%);
  opacity:var(--spotlight-opacity);
  transition:opacity 0.35s ease-out;
  pointer-events:none;
  z-index:1;
}
/* Inner card covers the glow, leaving border edges visible */
.testimonial-card-inner{
  background:rgba(17,17,17,0.8);
  backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);
  border-radius:calc(var(--radius-md) - 1px);
  padding:1.75rem;
  position:relative;
  z-index:2;
  overflow:hidden;
  transition:background 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
}
/* Top accent gradient line (on inner) */
.testimonial-card-inner::before{
  content:'';
  position:absolute;
  top:0;left:0;right:0;
  height:2px;
  background:linear-gradient(90deg,transparent,var(--accent),var(--accent-light),transparent);
  opacity:0.6;
}
.testimonial-card[data-stars="4"] .testimonial-card-inner::before{
  background:linear-gradient(90deg,transparent,var(--accent-light),rgba(167,139,250,0.6),transparent);
}
.testimonial-card[data-stars="3"] .testimonial-card-inner::before{
  background:linear-gradient(90deg,transparent,rgba(167,139,250,0.4),rgba(124,58,237,0.3),transparent);
  opacity:0.4;
}
/* Focus / dim states */
.testimonial-card.tc-dimmed{
  opacity:0.4;
}
.testimonial-card.tc-focused{
  z-index:5;
  --spotlight-opacity:1;
}
.tc-focused .testimonial-card-inner{
  background:var(--bg-card-hover);
  box-shadow:0 16px 48px rgba(0,0,0,0.4),0 0 0 1px rgba(124,58,237,0.2);
}
.testimonial-stars{
  color:#facc15;
  font-size:1rem;
  margin-bottom:1rem;
  letter-spacing:2px;
  position:relative;
}
.testimonial-text{
  font-size:0.92rem;
  color:var(--text-secondary);
  line-height:1.7;
  margin-bottom:1.5rem;
  font-style:italic;
  position:relative;
  transition:color 0.35s ease-out;
}
.tc-focused .testimonial-text{
  color:#fff;
}
.testimonial-author{
  display:flex;
  align-items:center;
  gap:0.75rem;
  position:relative;
}
.testimonial-avatar{
  width:40px;height:40px;
  border-radius:50%;
  background:var(--gradient-accent);
  display:flex;align-items:center;justify-content:center;
  font-weight:700;font-size:1rem;color:#fff;
  flex-shrink:0;
}
.testimonial-name{
  font-size:0.9rem;font-weight:700;color:#fff;
}
.testimonial-role{
  font-size:0.8rem;color:var(--text-muted);
}

/* ===== BEFORE / AFTER TRANSFORMATION ===== */
.transform-section{
  padding:var(--section-padding);
}
.transform-section h2{
  margin-bottom:0.75rem;
}
.transform-subtitle{
  text-align:center;
  color:var(--text-secondary);
  font-size:1rem;
  margin-bottom:3rem;
}
.transform-grid{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  gap:0;
  align-items:stretch;
  max-width:900px;
  margin:0 auto;
}
.transform-card{
  background:rgba(17,17,17,0.7);
  backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);
  border:1px solid var(--border-subtle);
  border-radius:var(--radius-md);
  padding:2.25rem;
  position:relative;
  overflow:hidden;
  box-shadow:var(--shadow-card);
  transition:transform 0.5s var(--ease-out-expo),border-color 0.4s,box-shadow 0.5s var(--ease-out-expo);
}
.transform-card::after{
  content:'';
  position:absolute;
  inset:0;
  border-radius:inherit;
  opacity:0;
  pointer-events:none;
}
.transform-before{
  border-color:rgba(239,68,68,0.15);
}
.transform-before::after{
  background:radial-gradient(ellipse at 30% 0%,rgba(239,68,68,0.07) 0%,transparent 60%);
}
.transform-after{
  border-color:rgba(34,197,94,0.5);
  background:linear-gradient(180deg,rgba(34,197,94,0.05) 0%,var(--bg-card) 40%);
  box-shadow:0 12px 40px rgba(34,197,94,0.15),0 4px 16px rgba(0,0,0,0.3);
  transform:translateY(-6px);
}
.transform-after::after{
  background:radial-gradient(ellipse at 30% 0%,rgba(34,197,94,0.08) 0%,transparent 60%);
  opacity:1;
}
.transform-label{
  display:inline-block;
  font-size:0.78rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.1em;
  color:var(--text-muted);
  padding:0.35rem 0.85rem;
  border-radius:60px;
  border:1px solid var(--border-subtle);
  background:var(--bg-surface);
  margin-bottom:1.5rem;
}
.transform-label-accent{
  color:#22c55e;
  border-color:rgba(34,197,94,0.3);
  background:rgba(34,197,94,0.08);
}
.transform-stat{
  margin-bottom:1.5rem;
}
.transform-stat-number{
  display:block;
  font-size:clamp(2.5rem,6vw,3.5rem);
  font-weight:800;
  line-height:1.1;
  letter-spacing:-0.02em;
  background:linear-gradient(135deg,#ef4444,#f87171);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  filter:drop-shadow(0 0 20px rgba(239,68,68,0.2));
}
.transform-stat-accent{
  background:linear-gradient(135deg,#22c55e,#4ade80);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  filter:drop-shadow(0 0 30px rgba(34,197,94,0.45));
}
.transform-stat-label{
  font-size:0.85rem;
  color:var(--text-muted);
  font-weight:500;
}
.transform-list{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:0.75rem;
}
.transform-list li{
  display:flex;
  align-items:flex-start;
  gap:0.6rem;
  font-size:0.92rem;
  color:var(--text-secondary);
  line-height:1.5;
}
.transform-list .check{
  color:#22c55e;
  font-weight:700;
  font-size:1rem;
  flex-shrink:0;
  margin-top:1px;
}
.transform-list .cross{
  color:#ef4444;
  font-weight:700;
  font-size:1rem;
  flex-shrink:0;
  margin-top:1px;
}
.transform-divider{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 1rem;
  color:var(--text-muted);
}
.transform-divider svg{
  opacity:0.4;
}
.transform-footnote{
  text-align:center;
  font-size:0.8rem;
  color:var(--text-muted);
  margin-top:1.5rem;
  font-style:italic;
}

/* ===== BACKED BY SCIENCE ===== */
.science-section{
  position:relative;
  padding:var(--section-padding);
}
.science-section::after{
  content:'';
  position:absolute;
  bottom:0;left:0;right:0;
  height:200px;
  background:linear-gradient(to bottom,transparent,rgba(124,58,237,0.06));
  pointer-events:none;
}
.science-section h2{
  margin-bottom:0.75rem;
}
.science-subtitle{
  text-align:center;
  color:var(--text-secondary);
  font-size:1rem;
  margin-bottom:3rem;
  max-width:650px;
  margin-left:auto;
  margin-right:auto;
  line-height:1.6;
}
.science-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.5rem;
  max-width:1100px;
  margin:0 auto;
  align-items:center;
}
.science-card{
  background:rgba(17,17,17,0.7);
  backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);
  border:1px solid var(--border-subtle);
  border-radius:var(--radius-md);
  padding:2.25rem;
  display:flex;
  flex-direction:column;
  gap:1rem;
  transition:transform 0.5s var(--ease-out-expo),border-color 0.4s,box-shadow 0.5s var(--ease-out-expo);
  position:relative;
  overflow:hidden;
  box-shadow:var(--shadow-card);
}
.science-card::after{
  content:'';
  position:absolute;
  inset:0;
  border-radius:inherit;
  opacity:0;
  transition:opacity 0.4s;
  pointer-events:none;
}
.science-card:hover::after{
  opacity:1;
}
/* Danger cards — red tint (doomscrolling downsides) */
.science-card-danger{
  border-color:rgba(239,68,68,0.15);
}
.science-card-danger::after{
  background:radial-gradient(ellipse at 30% 0%,rgba(239,68,68,0.07) 0%,transparent 60%);
}
.science-card-danger:hover{
  border-color:rgba(239,68,68,0.4);
  box-shadow:0 12px 40px rgba(239,68,68,0.12),0 4px 16px rgba(0,0,0,0.3);
  transform:translateY(-6px);
}
.science-card-danger .science-stat{
  background:linear-gradient(135deg,#ef4444,#f87171);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  filter:drop-shadow(0 0 20px rgba(239,68,68,0.25));
}
.science-card-danger:hover .science-stat{
  filter:drop-shadow(0 0 30px rgba(239,68,68,0.45));
}
/* Centre card — hero stat, larger */
.science-grid .science-card:nth-child(2){
  padding:3rem 2.25rem;
}
.science-grid .science-card:nth-child(2) .science-stat{
  font-size:clamp(5rem,12vw,7.5rem);
}
.science-stat{
  font-size:clamp(3rem,7vw,4.5rem);
  font-weight:800;
  background:var(--gradient-accent);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  line-height:1;
  letter-spacing:-0.03em;
  transition:filter 0.4s;
}
.science-stat-unit{
  font-size:0.5em;
}
.science-finding{
  font-size:0.95rem;
  color:var(--text-secondary);
  line-height:1.6;
  flex:1;
}
.science-cite{
  font-size:0.8rem;
  color:var(--text-muted);
  text-decoration:none;
  border-top:1px solid var(--border-subtle);
  padding-top:0.75rem;
  margin-top:0.25rem;
  transition:color 0.3s;
  line-height:1.4;
}
.science-cite:hover{
  color:var(--accent-light);
}
/* ===== STRIKE SECTION ===== */
.strike-section{
  position:relative;
  min-height:100vh;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  overflow:hidden;
  contain:layout style;
  padding:8rem 1rem;
  background:linear-gradient(to bottom,
    var(--bg-primary) 0%,
    rgba(124,58,237,0.03) 8%,
    rgba(124,58,237,0.07) 20%,
    rgba(124,58,237,0.12) 40%,
    rgba(124,58,237,0.12) 60%,
    rgba(124,58,237,0.07) 80%,
    rgba(124,58,237,0.03) 92%,
    var(--bg-primary) 100%);
}

/* Ambient glow */
.strike-glow{
  position:absolute;top:50%;left:50%;
  width:500px;height:500px;
  transform:translate(-50%,-50%);
  background:radial-gradient(circle,rgba(124,58,237,0.12) 0%,transparent 70%);
  border-radius:50%;
  opacity:0;
  transition:opacity 0.8s ease 0.3s,width 0.6s ease,height 0.6s ease;
  pointer-events:none;
}
.strike-section.active .strike-glow{opacity:1}
.strike-section.pulsed .strike-glow{
  width:900px;height:900px;
  background:radial-gradient(circle,rgba(124,58,237,0.35) 0%,rgba(124,58,237,0.08) 40%,transparent 70%);
}

/* Full-section flash on pulse */
.strike-flash{
  position:absolute;inset:0;
  background:radial-gradient(circle at center,rgba(124,58,237,0.4) 0%,rgba(124,58,237,0.1) 40%,transparent 70%);
  opacity:0;
  pointer-events:none;
  z-index:3;
}
.strike-section.pulsed .strike-flash{
  animation:strike-flash-pop 0.5s ease-out forwards;
}
@keyframes strike-flash-pop{
  0%{opacity:0}
  12%{opacity:1}
  100%{opacity:0}
}

/* Title text — in flow, above animation */
.strike-text{
  font-size:clamp(1.4rem,3.5vw,2.2rem);
  font-weight:700;
  color:#fff;
  text-align:center;
  line-height:1.4;
  opacity:0;
  transform:translateY(20px);
  transition:opacity 0.6s ease,transform 0.6s ease;
  margin-bottom:2rem;
  z-index:2;
  position:relative;
}
.strike-section.active .strike-text{
  opacity:1;
  transform:translateY(0);
}

/* Arena (contains rings + center + pulses) */
.strike-arena{
  position:relative;
  width:480px;height:480px;
  flex-shrink:0;
  z-index:1;
}

/* Icon rings */
.strike-ring{
  position:absolute;
  top:0;left:0;
  width:100%;height:100%;
  pointer-events:none;
}
.strike-ring-inner{--orbit-r:-140px}
.strike-ring-outer{--orbit-r:-225px}

/* Individual icons */
.strike-icon{
  position:absolute;
  top:50%;left:50%;
  width:56px;height:56px;
  opacity:0;
  transform:translate(-50%,-50%) rotate(var(--angle)) translateY(var(--orbit-r)) rotate(calc(-1 * var(--angle)));
  transition:opacity 0.5s ease var(--delay);
  will-change:transform;
}
.strike-section.active .strike-icon{
  opacity:1;
  animation:strike-float 2.5s ease-in-out var(--delay) infinite;
}
.strike-ring-outer .strike-icon{
  width:44px;height:44px;
}
.strike-section.active .strike-ring-outer .strike-icon{
  animation-duration:3.2s;
}
.strike-icon img{
  width:100%;height:100%;
  border-radius:14px;
  object-fit:cover;
  transition:filter 0.3s ease;
}
.strike-ring-outer .strike-icon img{border-radius:11px}
.strike-icon.struck img{filter:brightness(0.2) saturate(0.3)}

/* Float animation */
@keyframes strike-float{
  0%,100%{transform:translate(-50%,-50%) rotate(var(--angle)) translateY(var(--orbit-r)) rotate(calc(-1 * var(--angle)))}
  50%{transform:translate(-50%,-50%) rotate(var(--angle)) translateY(calc(var(--orbit-r) - 10px)) rotate(calc(-1 * var(--angle)))}
}

/* Hover tooltip — habit card */
.strike-tooltip{
  position:absolute;
  bottom:calc(100% + 14px);
  left:50%;
  transform:translateX(-50%) scale(0.85) translateY(6px);
  background:linear-gradient(135deg,rgba(14,14,28,0.97),rgba(22,16,40,0.97));
  border:1px solid rgba(124,58,237,0.25);
  border-radius:16px;
  padding:14px 18px;
  white-space:nowrap;
  opacity:0;
  pointer-events:none;
  transition:opacity 0.2s ease,transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
  z-index:10;
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  box-shadow:
    0 0 24px rgba(124,58,237,0.2),
    0 8px 32px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.06);
}
.strike-tooltip::after{
  content:'';
  position:absolute;
  top:100%;
  left:50%;
  transform:translateX(-50%);
  border:6px solid transparent;
  border-top-color:rgba(14,14,28,0.97);
}
.strike-tooltip-header{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:6px;
}
.strike-tooltip-header img{
  width:24px;height:24px;
  border-radius:6px;
  object-fit:cover;
}
.strike-tooltip-badge{
  font-size:0.75rem;
  font-weight:600;
  color:rgba(255,255,255,0.45);
  text-transform:uppercase;
  letter-spacing:0.05em;
}
.strike-tooltip-divider{
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(124,58,237,0.4),transparent);
  margin-bottom:8px;
}
.strike-tooltip-habit{
  font-size:0.95rem;
  font-weight:700;
  color:#fff;
  margin-bottom:4px;
}
.strike-tooltip-meta{
  font-size:0.8rem;
  color:var(--accent-light);
  margin-bottom:10px;
}
.strike-tooltip-bar{
  height:3px;
  background:rgba(255,255,255,0.06);
  border-radius:2px;
  overflow:hidden;
}
.strike-tooltip-fill{
  height:100%;
  width:0%;
  background:linear-gradient(90deg,var(--accent),var(--accent-light));
  border-radius:2px;
  transition:width 0.6s cubic-bezier(0.4,0,0.2,1) 0.15s;
}

/* Center: You + Logo */
.strike-center{
  position:absolute;top:50%;left:50%;
  transform:translate(-50%,-50%);
  display:flex;align-items:center;
  gap:0.6rem;
  z-index:2;
  pointer-events:none;
}
.strike-you{
  font-size:1.6rem;
  font-weight:800;
  color:#fff;
  text-shadow:0 0 20px rgba(255,255,255,0.3);
  opacity:0;
  transform:translateX(-10px);
  transition:opacity 0.4s ease 0.4s,transform 0.4s ease 0.4s;
}
.strike-section.active .strike-you{
  opacity:1;
  transform:translateX(0);
}
.strike-plus{
  font-size:1.4rem;
  font-weight:700;
  color:var(--accent-light);
  opacity:0;
  transition:opacity 0.3s ease 0.5s;
}
.strike-section.active .strike-plus{opacity:1}
.strike-logo{
  height:52px;
  width:auto;
  border-radius:12px;
  opacity:0;
  transform:scale(0.3);
  transition:opacity 0.4s ease 0.5s,transform 0.5s cubic-bezier(0.34,1.56,0.64,1) 0.5s,filter 0.6s ease;
  filter:drop-shadow(0 0 20px rgba(124,58,237,0.6));
}
.strike-section.active .strike-logo{
  opacity:1;
  transform:scale(1);
}
.strike-section.pulsed .strike-logo{
  filter:drop-shadow(0 0 40px rgba(124,58,237,0.9)) drop-shadow(0 0 80px rgba(124,58,237,0.4));
}

/* Pulse rings */
.strike-pulse{
  position:absolute;
  top:50%;left:50%;
  width:60px;height:60px;
  margin:-30px 0 0 -30px;
  border:3px solid rgba(124,58,237,0.8);
  border-radius:50%;
  opacity:0;
  pointer-events:none;
  z-index:1;
}
.strike-section.pulsed .strike-pulse{
  animation:strike-pulse-expand 1.2s ease-out forwards;
}
.strike-section.pulsed .strike-pulse--2{animation-delay:0.1s}
.strike-section.pulsed .strike-pulse--3{animation-delay:0.2s}
.strike-section.pulsed .strike-pulse--4{animation-delay:0.3s}
.strike-pulse--2{border-width:2.5px}
.strike-pulse--3{border-width:2px;border-color:rgba(167,139,250,0.6)}
.strike-pulse--4{border-width:1.5px;border-color:rgba(167,139,250,0.35)}
@keyframes strike-pulse-expand{
  0%{transform:scale(1);opacity:0.9}
  100%{transform:scale(14);opacity:0}
}

/* Hover interactions after animation settles */
.strike-section.settled .strike-arena{
  transition:transform 0.15s ease-out;
}
.strike-section.settled .strike-icon.struck{
  cursor:pointer;
  pointer-events:auto;
}
.strike-section.settled .strike-icon.struck:hover,
.strike-section.settled .strike-icon.struck.tapped{
  z-index:10;
}
.strike-section.settled .strike-icon.struck:hover img,
.strike-section.settled .strike-icon.struck.tapped img{
  filter:brightness(0.65) saturate(0.7);
  transform:scale(1.08);
}
.strike-section.settled .strike-icon.struck:hover .strike-tooltip,
.strike-section.settled .strike-icon.struck.tapped .strike-tooltip{
  opacity:1;
  transform:translateX(-50%) scale(1) translateY(0);
}
.strike-section.settled .strike-icon.struck:hover .strike-tooltip-fill,
.strike-section.settled .strike-icon.struck.tapped .strike-tooltip-fill{
  width:var(--progress,65%);
}

/* Hero live count styling */
.hero-live-count{
  font-variant-numeric:tabular-nums;
  color:#fff;
  font-weight:700;
}

/* ===== FREE VS PRO ===== */
.pricing-section{
  padding:var(--section-padding);
}
.pricing-section h2{
  margin-bottom:0.75rem;
}
.pricing-subtitle{
  text-align:center;
  color:var(--text-secondary);
  font-size:1rem;
  margin-bottom:3rem;
}
.pricing-table-wrap{
  max-width:700px;
  margin:0 auto;
  overflow-x:auto;
  border-radius:var(--radius-md);
  border:1px solid var(--border-subtle);
  box-shadow:var(--shadow-card);
  background:rgba(17,17,17,0.5);
  backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);
}
.pricing-table{
  width:100%;
  border-collapse:collapse;
  font-size:0.92rem;
}
.pricing-table th,
.pricing-table td{
  padding:1rem 1.25rem;
  text-align:center;
  border-bottom:1px solid var(--border-subtle);
}
.pricing-table th{
  font-weight:700;
  color:var(--text-secondary);
  font-size:0.82rem;
  text-transform:uppercase;
  letter-spacing:0.05em;
  background:var(--bg-surface);
}
.pricing-table td:first-child,
.pricing-table th:first-child{
  text-align:left;
  font-weight:600;
  color:var(--text-secondary);
}
.pricing-table tr:last-child td{border-bottom:none}
.pricing-table .col-free{
  color:var(--text-primary);
  font-weight:500;
  white-space:nowrap;
  min-width:5.5rem;
}
.pricing-table th.col-pro{
  color:var(--accent-light);
  background:rgba(124,58,237,0.08);
}
.pricing-table td.col-pro{
  background:rgba(124,58,237,0.04);
  color:#fff;
  font-weight:600;
}
.pricing-table .check{color:#22c55e;font-weight:700;font-size:1.1rem}
.pricing-table .dash{color:var(--text-muted);font-size:1.1rem}

/* Pricing cards */
.pricing-cards{
  display:flex;
  justify-content:center;
  gap:1.25rem;
  margin-top:3rem;
  flex-wrap:wrap;
}
.pricing-card{
  background:rgba(17,17,17,0.7);
  backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);
  border:1px solid var(--border-subtle);
  border-radius:var(--radius-sm);
  padding:1.75rem 2rem;
  text-align:center;
  min-width:180px;
  flex:1;
  max-width:240px;
  box-shadow:var(--shadow-card);
  transition:border-color 0.3s,transform 0.5s var(--ease-out-expo),box-shadow 0.5s var(--ease-out-expo);
}
.pricing-card:hover{
  border-color:rgba(124,58,237,0.3);
  transform:translateY(-4px);
  box-shadow:var(--shadow-card-hover);
}
.pricing-card-featured{
  border-color:var(--accent);
  background:rgba(124,58,237,0.06);
  box-shadow:0 0 30px rgba(124,58,237,0.15);
  transform:scale(1.04);
}
.pricing-card-featured:hover{
  transform:scale(1.04) translateY(-2px);
}
.pricing-tag{
  display:inline-block;
  font-size:0.7rem;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--text-muted);
  margin-bottom:0.75rem;
}
.pricing-tag-highlight{
  color:var(--accent-light);
}
.pricing-amount{
  font-size:1.75rem;
  font-weight:800;
  color:var(--text-primary);
}
.pricing-period{
  font-size:0.85rem;
  font-weight:500;
  color:var(--text-muted);
}
.pricing-trial{
  margin-top:0.5rem;
  font-size:0.82rem;
  color:var(--accent-light);
  font-weight:500;
}
.pricing-cta{
  display:flex;
  justify-content:center;
  margin-top:2.5rem;
}

/* ===== COMPARISON TABLE ===== */
.comparison-section{
  padding:var(--section-padding);
}
.comparison-section h2{
  margin-bottom:0.75rem;
}
.comparison-subtitle{
  text-align:center;
  color:var(--text-secondary);
  font-size:1rem;
  margin-bottom:3rem;
}
.comparison-table-wrap{
  max-width:900px;
  margin:0 auto;
  overflow-x:auto;
  border-radius:var(--radius-md);
  border:1px solid var(--border-subtle);
  box-shadow:var(--shadow-card);
  background:rgba(17,17,17,0.5);
  backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);
}
.comparison-table{
  width:100%;
  border-collapse:collapse;
  font-size:0.92rem;
}
.comparison-table th,
.comparison-table td{
  padding:1rem 1.25rem;
  text-align:center;
  border-bottom:1px solid var(--border-subtle);
}
.comparison-table th{
  font-weight:700;
  color:var(--text-secondary);
  font-size:0.82rem;
  text-transform:uppercase;
  letter-spacing:0.05em;
  background:var(--bg-surface);
}
.comparison-table td:first-child,
.comparison-table th:first-child{
  text-align:left;
  font-weight:600;
  color:var(--text-secondary);
}
.comparison-table tr:last-child td{border-bottom:none}

/* Highlighted HabitDoom column */
.comparison-table th.col-highlight{
  color:var(--accent-light);
  background:rgba(124,58,237,0.08);
  position:relative;
}
.comparison-table td.col-highlight{
  background:rgba(124,58,237,0.04);
  color:#fff;
  font-weight:600;
}
.comparison-table .check{color:#22c55e;font-weight:700;font-size:1.1rem}
.comparison-table .cross{color:var(--text-muted);font-size:1.1rem}
.comparison-table .partial{color:#facc15;font-size:0.85rem;font-weight:500}

/* ===== FAQ ACCORDION ===== */
.faq-section{
  padding:var(--section-padding);
}
.faq-section h2{
  margin-bottom:0.75rem;
}
.faq-subtitle{
  text-align:center;
  color:var(--text-secondary);
  font-size:1rem;
  margin-bottom:3rem;
}
.faq-list{
  max-width:750px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:0.75rem;
}
.faq-item{
  background:rgba(17,17,17,0.7);
  backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);
  border:1px solid var(--border-subtle);
  border-radius:var(--radius-sm);
  overflow:hidden;
  box-shadow:var(--shadow-card);
  transition:border-color 0.3s,box-shadow 0.4s var(--ease-out-expo);
}
.faq-item:hover{
  border-color:var(--border-accent);
  box-shadow:var(--shadow-card-hover);
}
.faq-question{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:1.25rem 1.5rem;
  background:transparent;
  border:none;
  color:#fff;
  font-size:1rem;
  font-weight:600;
  font-family:inherit;
  cursor:pointer;
  text-align:left;
  gap:1rem;
}
.faq-icon{
  flex-shrink:0;
  width:24px;height:24px;
  transition:transform 0.3s;
  color:var(--accent-light);
}
.faq-item.open .faq-icon{
  transform:rotate(45deg);
}
.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.35s ease;
}
.faq-answer-inner{
  padding:0 1.5rem 1.25rem;
  font-size:0.95rem;
  color:var(--text-secondary);
  line-height:1.7;
}

/* ===== FEATURED BLOG ===== */
.blog-featured{
  padding:var(--section-padding);
  text-align:center;
}
.blog-featured h2{
  margin-bottom:0.75rem;
}
.blog-featured-sub{
  text-align:center;
  color:var(--text-secondary);
  font-size:1rem;
  margin-bottom:3rem;
}
.blog-featured-grid{
  max-width:1000px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:2rem;
}
.blog-featured-card{
  background:transparent;
  border:none;
  border-radius:var(--radius-md);
  overflow:visible;
  text-decoration:none;
  color:inherit;
  transition:transform 0.5s var(--ease-out-expo);
}
.blog-featured-card:hover{
  transform:translateY(-6px);
}
.blog-featured-accent{
  height:180px;
  position:relative;
  overflow:hidden;
  border-radius:var(--radius-sm);
  transition:transform 0.5s ease,filter 0.5s ease;
  filter:brightness(1) saturate(1);
}
.blog-featured-card:hover .blog-featured-accent{
  transform:scale(1.04);
  filter:brightness(1.12) saturate(1.2);
}
.blog-featured-accent-text{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:clamp(1.6rem,4vw,2.2rem);
  font-weight:800;
  letter-spacing:-0.03em;
  line-height:1;
  color:rgba(255,255,255,0.92);
  text-shadow:0 2px 20px rgba(0,0,0,0.15);
  pointer-events:none;
  z-index:1;
}
.blog-featured-card[data-category="guide"] .blog-featured-accent{
  background:
    radial-gradient(ellipse at 10% 40%,rgba(59,130,246,0.95) 0%,transparent 50%),
    radial-gradient(ellipse at 80% 15%,rgba(167,139,250,0.85) 0%,transparent 45%),
    radial-gradient(ellipse at 55% 90%,rgba(45,212,191,0.8) 0%,transparent 50%),
    radial-gradient(ellipse at 90% 70%,rgba(244,114,182,0.45) 0%,transparent 40%),
    linear-gradient(160deg,#1e3a5f 0%,#2563eb 40%,#7dd3fc 70%,#c4b5fd 100%);
}
.blog-featured-card[data-category="comparison"] .blog-featured-accent{
  background:
    radial-gradient(ellipse at 20% 35%,rgba(167,139,250,0.95) 0%,transparent 50%),
    radial-gradient(ellipse at 85% 20%,rgba(236,72,153,0.8) 0%,transparent 45%),
    radial-gradient(ellipse at 10% 80%,rgba(99,102,241,0.75) 0%,transparent 50%),
    radial-gradient(ellipse at 65% 75%,rgba(196,181,253,0.55) 0%,transparent 45%),
    linear-gradient(160deg,#4c1d95 0%,#7c3aed 35%,#a78bfa 60%,#ec4899 100%);
}
.blog-featured-card[data-category="product"] .blog-featured-accent{
  background:
    radial-gradient(ellipse at 15% 50%,rgba(74,222,128,0.95) 0%,transparent 50%),
    radial-gradient(ellipse at 80% 20%,rgba(45,212,191,0.85) 0%,transparent 45%),
    radial-gradient(ellipse at 50% 85%,rgba(163,230,53,0.75) 0%,transparent 50%),
    radial-gradient(ellipse at 90% 65%,rgba(253,224,71,0.45) 0%,transparent 40%),
    linear-gradient(160deg,#065f46 0%,#22c55e 35%,#4ade80 60%,#2dd4bf 100%);
}
.blog-featured-card[data-category="research"] .blog-featured-accent{
  background:
    radial-gradient(ellipse at 25% 40%,rgba(251,191,36,0.95) 0%,transparent 50%),
    radial-gradient(ellipse at 85% 20%,rgba(251,113,133,0.8) 0%,transparent 45%),
    radial-gradient(ellipse at 50% 90%,rgba(245,158,11,0.8) 0%,transparent 50%),
    radial-gradient(ellipse at 10% 15%,rgba(254,215,170,0.7) 0%,transparent 40%),
    linear-gradient(160deg,#c2410c 0%,#f59e0b 35%,#fbbf24 60%,#fb7185 100%);
}
.blog-featured-body{
  padding:1.25rem 0.25rem;
  text-align:left;
}
.blog-featured-tag{
  display:inline-block;
  font-size:0.72rem;
  font-weight:600;
  letter-spacing:0.04em;
  color:var(--text-muted);
  margin-bottom:0.5rem;
}
.blog-featured-title{
  font-size:1.05rem;
  font-weight:700;
  line-height:1.35;
  color:var(--text-primary);
  margin-bottom:0.5rem;
  transition:color 0.3s;
}
.blog-featured-card:hover .blog-featured-title{
  color:#fff;
}
.blog-featured-meta{
  font-size:0.8rem;
  color:var(--text-muted);
}
.blog-featured-more{
  display:inline-flex;
  align-items:center;
  gap:0.4rem;
  margin-top:2rem;
  color:var(--accent-light);
  text-decoration:none;
  font-size:0.95rem;
  font-weight:600;
  transition:color 0.2s;
}
.blog-featured-more:hover{
  color:#fff;
}

/* ===== FINAL CTA ===== */
.final-cta{
  padding:var(--section-padding);
}
.final-cta-card{
  max-width:800px;
  margin:0 auto;
  text-align:center;
  background:rgba(17,17,17,0.7);
  backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);
  border:1px solid var(--border-accent);
  border-radius:var(--radius-lg);
  padding:4rem 2.5rem;
  position:relative;
  overflow:hidden;
  box-shadow:0 4px 16px rgba(0,0,0,0.25),0 24px 64px rgba(124,58,237,0.08);
}
.final-cta-card::before{
  content:'';
  position:absolute;
  top:-50%;left:-50%;
  width:200%;height:200%;
  background:radial-gradient(circle at center,rgba(124,58,237,0.06) 0%,transparent 60%);
  pointer-events:none;
}
.final-cta-card h2{
  font-size:clamp(1.6rem,4vw,2.4rem);
  margin-bottom:1rem;
  position:relative;
}
.final-cta-subtitle{
  font-size:clamp(1rem,2vw,1.15rem);
  color:var(--text-secondary);
  margin-bottom:2.5rem;
  max-width:500px;
  margin-left:auto;
  margin-right:auto;
  position:relative;
}
.final-cta-stat{
  font-size:1rem;
  color:var(--accent-light);
  font-weight:600;
  margin-bottom:2rem;
  text-align:center;
}
.final-cta-buttons{
  display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;
  position:relative;
}
.final-cta-microcopy{
  font-size:0.85rem;color:var(--text-muted);
  margin:1rem auto 0.5rem;
  text-align:center;
}
.final-cta-android{
  font-size:0.8rem;color:var(--text-muted);
  text-align:center;
  font-style:italic;
}

/* ===== FOOTER ===== */
.footer{
  padding:3rem 1.5rem 2rem;
  border-top:1px solid var(--border-subtle);
}
.footer-inner{
  max-width:var(--max-width);
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.footer-left{
  display:flex;
  align-items:center;
  gap:0.75rem;
}
.footer-logo{height:28px;width:auto;object-fit:contain}
.footer-tagline{
  font-size:0.85rem;
  color:var(--text-muted);
  font-style:italic;
}
.footer-links{display:flex;gap:2rem}
.footer-links a{
  color:var(--text-muted);text-decoration:none;
  font-size:0.85rem;font-weight:500;transition:color .2s;
}
.footer-links a:hover{color:#fff}
.footer-copy{
  font-size:0.8rem;color:var(--text-muted);
  text-align:center;
  margin-top:2rem;
  max-width:var(--max-width);
  margin-left:auto;margin-right:auto;
}

/* ===== MOBILE FIXED BOTTOM ===== */
.mobile-fixed-bottom{display:none}
.mobile-nav{display:none}

/* ========================================
   RESPONSIVE
   ======================================== */

@media(max-width:900px){
  .hero{padding:calc(5.5rem + 20px) 1rem 0}
  .hero-visual{max-width:600px;--icon-scale:0.82}
  .hero-phone .phone-mockup{max-width:340px}
  .floating-card{display:none}
  .features-list{gap:4rem}
  .feature-row{gap:1.5rem}
  .strike-arena{width:380px;height:380px}
  .strike-ring-inner{--orbit-r:-110px}
  .strike-ring-outer{--orbit-r:-178px}
  .strike-icon{width:48px;height:48px}
  .strike-ring-outer .strike-icon{width:38px;height:38px}
  .strike-icon img{border-radius:12px}
  .strike-ring-outer .strike-icon img{border-radius:10px}
  .strike-logo{height:44px;border-radius:10px}
  .strike-you{font-size:1.4rem}
  .strike-text{font-size:clamp(1.1rem,3vw,1.6rem)}
  .transform-grid{grid-template-columns:1fr;gap:1rem}
  .transform-divider{transform:rotate(90deg);padding:0.5rem 0}
  .comparison-table{font-size:0.82rem}
  .comparison-table th,.comparison-table td{padding:0.75rem 0.8rem}
  .pricing-table{font-size:0.82rem}
  .pricing-table th,.pricing-table td{padding:0.75rem 0.8rem}
  .pricing-cards{flex-direction:column;align-items:center;gap:1rem}
  .pricing-card{width:100%;max-width:320px;padding:1.25rem 1.5rem}
  .pricing-amount{font-size:1.35rem}
  .pricing-card-featured{transform:none}
  .pricing-card-featured:hover{transform:translateY(-2px)}
  .footer-inner{flex-direction:column;gap:1.5rem;text-align:center}
  .footer-links{flex-direction:column;gap:0.75rem}
  .testimonials-grid{flex-direction:column;max-width:480px;margin:0 auto}
  .testimonials-col{gap:1.25rem}
  .science-grid{grid-template-columns:1fr;gap:1rem}
  .blog-featured-grid{grid-template-columns:1fr;max-width:400px;margin:0 auto}
}

@media(max-width:768px){
  :root{--section-padding:4rem 1rem}
  .header{display:none}
  .hero{padding:calc(1.5rem + 44px) 1rem 0;min-height:auto}
  .hero-center{min-height:auto}
  .hero h1{font-size:clamp(2rem,8vw,2.8rem);margin-bottom:1rem}
  .hero-eyebrow{font-size:0.72rem;padding:0.35rem 0.9rem;margin-bottom:1rem}
  .hero-subtitle{font-size:0.95rem;margin-bottom:1.5rem;line-height:1.5}
  .hero-center{padding:0 0.5rem}
  .hero-buttons{margin-bottom:1rem}
  .hero-microcopy{display:none}
  .hero-visual{max-width:420px;--icon-scale:0.65;margin-bottom:0}
  .hero-phone .phone-mockup{max-width:280px}

  /* Testimonials — single column stack on mobile, no spotlight */
  .testimonials-grid{
    flex-direction:column;
    max-width:480px;
    margin:0 auto;
  }
  .testimonials-col{gap:1.25rem}
  .testimonial-card::before{display:none}
  .testimonial-desktop-only{display:none}
  .testimonial-card{
    opacity:1 !important;
    transform:none !important;
  }
  .testimonial-card-inner{
    padding:1.25rem;
  }

  h2{font-size:clamp(1.5rem,6vw,2.2rem)}

  .strike-arena{width:340px;height:340px}
  .strike-ring-inner{--orbit-r:-100px}
  .strike-ring-outer{--orbit-r:-160px}
  .strike-icon{width:46px;height:46px}
  .strike-ring-outer .strike-icon{width:36px;height:36px}
  .strike-icon img{border-radius:11px}
  .strike-ring-outer .strike-icon img{border-radius:9px}
  .strike-logo{height:42px;border-radius:10px}
  .strike-you{font-size:1.3rem}
  .strike-plus{font-size:1.1rem}
  .strike-section{min-height:auto;padding:5rem 1rem}
  .strike-text{font-size:clamp(1.3rem,5.5vw,1.8rem);white-space:normal}
  .strike-text-line2{display:block}
  /* Transform cards — always show hover state on mobile */
  .transform-card{padding:1.5rem}
  .transform-card::after{opacity:1}
  .transform-before{
    border-color:rgba(239,68,68,0.4);
    box-shadow:0 12px 40px rgba(239,68,68,0.12),0 4px 16px rgba(0,0,0,0.3);
  }
  .transform-before .transform-stat-number{
    filter:drop-shadow(0 0 30px rgba(239,68,68,0.4));
  }
  .transform-after{
    border-color:rgba(34,197,94,0.5);
    box-shadow:0 12px 40px rgba(34,197,94,0.15),0 4px 16px rgba(0,0,0,0.3);
  }
  .transform-after .transform-stat-accent{
    filter:drop-shadow(0 0 30px rgba(34,197,94,0.45));
  }
  .transform-stat-number{font-size:clamp(1.8rem,7vw,2.4rem)}

  /* Features — stack vertically, tight image-to-text, large row gap + divider */
  .features-section .highlight{display:block}
  .features-list{gap:0}
  .feature-row,
  .feature-row:nth-child(even){flex-direction:column;text-align:center;gap:0}
  .feature-visual img{transform:none !important}
  .feature-row{padding-bottom:3rem;margin-bottom:3rem;position:relative}
  .feature-row::after{
    content:'';
    position:absolute;
    bottom:0;left:15%;right:15%;
    height:1px;
    background:linear-gradient(90deg,transparent,rgba(124,58,237,0.4),transparent);
    opacity:0;
    transition:opacity 0.6s ease;
  }
  .feature-row.visible::after{opacity:1}
  .feature-row:last-child{padding-bottom:0;margin-bottom:0}
  .feature-row:last-child::after{display:none}
  .feature-visual,
  .feature-row:nth-child(even) .feature-visual{justify-content:center}
  .feature-row:nth-child(even) .feature-content{align-items:center;text-align:center}
  .feature-visual img{max-width:320px;margin-bottom:-2rem}
  .feature-visual{margin-bottom:0}
  .feature-content p{margin:0 auto;max-width:none}

  /* Science cards — scroll-activated on mobile */
  .science-grid{grid-template-columns:1fr;gap:1rem}
  .science-card{padding:1.5rem}
  .science-card:hover{transform:none}
  .science-card-danger:hover{
    border-color:rgba(239,68,68,0.15);
    box-shadow:none;
    transform:none;
  }
  .science-card-danger:hover .science-stat{
    filter:drop-shadow(0 0 20px rgba(239,68,68,0.25));
  }
  .science-card-danger.in-view{
    border-color:rgba(239,68,68,0.4);
    box-shadow:0 12px 40px rgba(239,68,68,0.12),0 4px 16px rgba(0,0,0,0.3);
    transform:scale(1.02);
  }
  .science-card-danger.in-view::after{opacity:1}
  .science-card-danger.in-view .science-stat{
    filter:drop-shadow(0 0 30px rgba(239,68,68,0.45));
  }
  .proof-bar-inner{gap:1.5rem}
  .proof-divider{display:none}

  .final-cta-card{padding:3rem 1.5rem}

  .mobile-fixed-bottom{
    display:block;
    position:fixed;bottom:0;left:0;right:0;
    z-index:99;
  }
  .mobile-nav{
    display:flex;align-items:center;justify-content:space-around;
    position:fixed;top:0;left:0;right:0;
    z-index:99;
    background:var(--bg-primary);
    padding:0.6rem 0.5rem;
    border-bottom:1px solid var(--border-subtle);
  }
  .mobile-nav-link{
    color:var(--text-muted);
    text-decoration:none;
    font-size:0.78rem;font-weight:600;
    padding:0.35rem 0.7rem;
    border-radius:20px;
    transition:color .2s,background .2s;
  }
  .mobile-nav-link.active{
    color:#fff;
    background:var(--accent);
  }
  .mobile-bar{
    display:flex;align-items:center;justify-content:space-between;
    background:var(--bg-card);
    padding:0.55rem 0.85rem;
    border-top:1px solid var(--border-subtle);
  }
  .mobile-bar-brand{
    display:flex;align-items:center;gap:0.5rem;
  }
  .mobile-bar-brand img{width:auto;height:28px;object-fit:contain}
  .mobile-bar-brand div{font-weight:700;font-size:0.95rem;color:#fff}
  .mobile-bar-brand span{display:block;font-weight:400;font-size:0.72rem;color:var(--text-muted)}
  .mobile-bar-btn{
    display:flex;align-items:center;gap:0.4rem;
    background:var(--accent);color:#fff;padding:0.65rem 1.1rem;
    border-radius:12px;text-decoration:none;
    font-weight:600;font-size:0.85rem;white-space:nowrap;
    border:none;
  }
  .mobile-bar-btn img{width:16px;height:16px;object-fit:contain;filter:brightness(0) invert(1)}

  .footer{padding-bottom:5rem}
}

@media(max-width:480px){
  .hero-buttons{flex-direction:column;align-items:center}
  .store-btn{width:100%;max-width:300px;justify-content:center}
  .hero-visual{max-width:340px;--icon-scale:0.5;margin-bottom:0}
  .hero-phone .phone-mockup{max-width:240px}
  .final-cta-buttons{flex-direction:column;align-items:center}
  .proof-bar-inner{flex-direction:column;gap:1rem}
  .testimonial-card-inner{padding:1rem}
  .testimonial-text{font-size:0.82rem;margin-bottom:1rem;line-height:1.6}
  .testimonial-stars{font-size:0.85rem;margin-bottom:0.6rem}
  .features-list{gap:3rem}
  .feature-visual img{max-width:280px}
  .feature-content h3{font-size:1.3rem}
  .feature-content p{font-size:0.95rem}
  .strike-section{padding:4rem 1rem}
  .strike-arena{width:310px;height:310px}
  .strike-ring-inner{--orbit-r:-90px}
  .strike-ring-outer{--orbit-r:-145px}
  .strike-icon{width:42px;height:42px}
  .strike-ring-outer .strike-icon{width:32px;height:32px}
  .strike-icon img{border-radius:10px}
  .strike-ring-outer .strike-icon img{border-radius:8px}
  .strike-logo{height:36px;border-radius:9px}
  .strike-you{font-size:1.1rem}
  .strike-plus{font-size:0.95rem}
}

/* ==========================================================================
   HOW IT WORKS V2 — Natural Scroll Section
   ========================================================================== */

.how2-section{
  padding:6rem 1.5rem;
  position:relative;
}
.how2-content{
  max-width:var(--max-width);
  margin:0 auto;
}
.how2-heading{
  text-align:center;
  font-size:clamp(1.8rem,4vw,2.8rem);
  font-weight:800;
  letter-spacing:-0.02em;
  margin-bottom:4rem;
}

/* ---------- Grid: progress rail + steps ---------- */
.how2-body{
  display:grid;
  grid-template-columns:48px 1fr;
  gap:0 2rem;
  position:relative;
}

/* ---------- Vertical progress rail (desktop) ---------- */
.how2-progress{
  grid-column:1;
  grid-row:1 / -1;
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-self:center;
}
.how2-progress-inner{
  position:sticky;
  top:50vh;
  transform:translateY(-50%);
  display:flex;
  flex-direction:column;
  align-items:center;
  height:240px;
}
.how2-progress-track{
  position:absolute;
  top:18px;bottom:18px;
  width:3px;
  background:rgba(255,255,255,0.08);
  border-radius:2px;
}
.how2-progress-fill{
  position:absolute;
  top:0;left:0;right:0;
  height:0%;
  background:var(--accent);
  border-radius:2px;
  transition:height 0.3s ease, background-color 0.4s ease, box-shadow 0.4s ease;
  box-shadow:0 0 8px rgba(124,58,237,0.4);
}
.how2-progress-dots{
  position:relative;
  z-index:2;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  height:100%;
}
.how2-dot{
  width:36px;height:36px;
  border-radius:50%;
  background:var(--bg-surface);
  border:2px solid var(--border-subtle);
  display:flex;align-items:center;justify-content:center;
  font-size:0.8rem;font-weight:700;
  color:var(--text-muted);
  transition:background 0.3s, border-color 0.3s, color 0.3s, box-shadow 0.3s, transform 0.3s;
  cursor:default;
}
.how2-dot.active{
  background:var(--dot-color, var(--accent));
  color:#fff;
  border-color:var(--dot-color, var(--accent));
  box-shadow:0 4px 18px rgba(var(--dot-rgb, 124,58,237),0.45),0 0 24px rgba(var(--dot-rgb, 124,58,237),0.3);
  transform:scale(1.1);
  animation:how2DotPulse 2s ease-in-out infinite;
}
.how2-dot.completed{
  background:var(--bg-surface);
  color:var(--text-muted);
  border-color:rgba(var(--dot-rgb, 124,58,237),0.35);
  transform:scale(0.78);
  font-size:0.7rem;
}
@keyframes how2DotPulse{
  0%,100%{box-shadow:0 4px 18px rgba(var(--dot-rgb,124,58,237),0.45),0 0 24px rgba(var(--dot-rgb,124,58,237),0.3)}
  50%{box-shadow:0 4px 24px rgba(var(--dot-rgb,124,58,237),0.6),0 0 40px rgba(var(--dot-rgb,124,58,237),0.4)}
}

/* ---------- Step rows ---------- */
.how2-steps{
  grid-column:2;
  display:flex;
  flex-direction:column;
  gap:6rem;
}
.how2-step{
  display:flex;
  align-items:center;
  gap:3rem;
  opacity:0.55;
  transition:opacity 0.5s ease;
}
.how2-step.active{
  opacity:1;
}
/* Alternate: even steps reverse */
.how2-step:nth-child(even){
  flex-direction:row-reverse;
}

/* ---------- Phone mockup ---------- */
.how2-phone{
  flex:0 0 360px;
  position:relative;
}
.how2-phone .phone-mockup{
  width:100%;
  max-width:360px;
  position:relative;
}
.how2-phone .phone-mockup img{
  width:100%;
  height:auto;
  border-radius:var(--radius-lg);
  display:block;
}
/* Colored glow behind phone */
.how2-phone .phone-mockup::before{
  content:'';
  position:absolute;
  inset:-20px;
  border-radius:var(--radius-xl);
  background:radial-gradient(ellipse at center, var(--how2-glow) 0%, transparent 70%);
  opacity:0;
  transition:opacity 0.5s ease;
  z-index:-1;
}
.how2-step.active .how2-phone .phone-mockup::before{
  opacity:1;
}

/* ---------- Text block ---------- */
.how2-text{
  flex:1;
  min-width:0;
}
.how2-badge{
  display:inline-block;
  font-size:0.75rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.08em;
  padding:0.3rem 0.8rem;
  border-radius:20px;
  margin-bottom:0.75rem;
  background:var(--how2-badge-bg);
  color:var(--how2-badge-color);
}
.how2-text h3{
  font-size:clamp(1.3rem,2.5vw,1.8rem);
  font-weight:700;
  letter-spacing:-0.02em;
  margin-bottom:0.75rem;
  color:var(--text-primary);
}
.how2-text p{
  font-size:1rem;
  line-height:1.7;
  color:var(--text-secondary);
  max-width:420px;
}
.how2-step:nth-child(even) .how2-text{
  text-align:right;
}
.how2-step:nth-child(even) .how2-text p{
  margin-left:auto;
}

/* ---------- Per-step color themes ---------- */
.how2-step[data-how2-color="purple"]{
  --how2-glow:rgba(124,58,237,0.2);
  --how2-badge-bg:rgba(124,58,237,0.15);
  --how2-badge-color:#a78bfa;
  --how2-accent:#7c3aed;
}
.how2-step[data-how2-color="blue"]{
  --how2-glow:rgba(59,130,246,0.2);
  --how2-badge-bg:rgba(59,130,246,0.15);
  --how2-badge-color:#60a5fa;
  --how2-accent:#3b82f6;
}
.how2-step[data-how2-color="amber"]{
  --how2-glow:rgba(245,158,11,0.2);
  --how2-badge-bg:rgba(245,158,11,0.15);
  --how2-badge-color:#fbbf24;
  --how2-accent:#f59e0b;
}
.how2-step[data-how2-color="green"]{
  --how2-glow:rgba(16,185,129,0.2);
  --how2-badge-bg:rgba(16,185,129,0.15);
  --how2-badge-color:#34d399;
  --how2-accent:#10b981;
}
/* ---------- Payoff ---------- */
.how2-payoff{
  text-align:center;
  margin-top:4rem;
  opacity:0;
  transform:translateY(20px) scale(0.97);
  transition:opacity 0.6s ease, transform 0.6s ease;
}
.how2-payoff.visible{
  opacity:1;
  transform:translateY(0) scale(1);
}
.how2-payoff-card{
  max-width:560px;
  margin:0 auto;
  padding:2.5rem 2rem;
  background:var(--bg-card);
  border:1px solid rgba(16,185,129,0.3);
  border-radius:var(--radius-md);
  position:relative;
  overflow:hidden;
}
.how2-payoff-card::before{
  content:'';
  position:absolute;
  top:-50%;left:-50%;
  width:200%;height:200%;
  background:radial-gradient(circle at center,rgba(16,185,129,0.08) 0%,transparent 60%);
  pointer-events:none;
}
.how2-payoff-icon{
  display:inline-flex;align-items:center;justify-content:center;
  width:56px;height:56px;
  border-radius:50%;
  background:rgba(16,185,129,0.15);
  color:#34d399;
  font-size:1.5rem;font-weight:700;
  margin-bottom:1.25rem;
  box-shadow:0 0 24px rgba(16,185,129,0.25);
}
.how2-payoff.visible .how2-payoff-icon{
  animation:how2PayoffPulse 2s ease-in-out infinite;
}
@keyframes how2PayoffPulse{
  0%,100%{box-shadow:0 0 24px rgba(16,185,129,0.25)}
  50%{box-shadow:0 0 40px rgba(16,185,129,0.45)}
}
.how2-payoff-text{
  font-size:clamp(1.2rem,2.5vw,1.5rem);
  color:var(--text-primary);
  font-weight:600;
  margin-bottom:0.5rem;
  position:relative;
}
.how2-payoff-sub{
  font-size:0.95rem;
  color:var(--text-muted);
  position:relative;
}

/* ---------- Horizontal progress bar (mobile) — hidden by default ---------- */
.how2-progress-h{
  display:none;
}

/* ===== HOW2 RESPONSIVE: 900px ===== */
@media(max-width:900px){
  .how2-body{
    grid-template-columns:1fr;
    gap:0;
  }
  .how2-progress{
    display:none;
  }
  .how2-steps{
    grid-column:1;
    gap:5rem;
  }
  .how2-step{
    gap:2rem;
  }
  .how2-phone{
    flex:0 0 280px;
  }
}

/* ===== HOW2 RESPONSIVE: 768px ===== */
@media(max-width:768px){
  .how2-section{
    padding:4rem 1rem;
  }
  .how2-heading{
    margin-bottom:1rem;
  }
  .how2-steps{
    gap:4rem;
  }
  .how2-step,
  .how2-step:nth-child(even){
    flex-direction:column;
    text-align:center;
    gap:0;
    padding-bottom:3rem;
    position:relative;
  }
  .how2-step .how2-text{
    margin-top:-1rem;
  }
  .how2-step::after{
    content:'';
    position:absolute;
    bottom:0;left:15%;right:15%;
    height:1px;
    background:linear-gradient(90deg,transparent,rgba(124,58,237,0.4),transparent);
  }
  .how2-step:last-child{
    padding-bottom:0;
  }
  .how2-step:last-child::after{
    display:none;
  }
  .how2-step:nth-child(even) .how2-text{
    text-align:center;
  }
  .how2-step:nth-child(even) .how2-text p{
    margin-left:auto;
    margin-right:auto;
  }
  .how2-text p{
    display:none;
  }
  .how2-phone{
    flex:none;
    width:100%;
    display:flex;
    justify-content:center;
  }
  .how2-phone .phone-mockup{
    max-width:300px;
  }

  /* Horizontal sticky progress bar — fixed to bottom on mobile */
  .how2-progress-h{
    display:block;
    position:fixed;
    bottom:52px;
    left:0;right:0;
    z-index:50;
    background:var(--bg-primary);
    padding:0.75rem 1rem;
    margin-bottom:0;
    border-top:1px solid var(--border-subtle);
    opacity:0;
    pointer-events:none;
    transform:translateY(10px);
    transition:opacity 0.3s ease, transform 0.3s ease;
  }
  .how2-progress-h.visible{
    opacity:1;
    pointer-events:auto;
    transform:translateY(0);
  }
  .how2-progress-h-inner{
    max-width:320px;
    margin:0 auto;
    display:flex;
    align-items:center;
    gap:0;
    position:relative;
  }
  .how2-progress-h-track{
    position:absolute;
    top:50%;
    left:16px;right:16px;
    height:3px;
    background:rgba(255,255,255,0.08);
    border-radius:2px;
    transform:translateY(-50%);
  }
  .how2-progress-h-fill{
    position:absolute;
    top:0;left:0;bottom:0;
    width:0%;
    background:var(--accent);
    border-radius:2px;
    transition:width 0.3s ease, background-color 0.4s ease, box-shadow 0.4s ease;
    box-shadow:0 0 8px rgba(124,58,237,0.4);
  }
  .how2-progress-h-dots{
    position:relative;
    z-index:2;
    display:flex;
    justify-content:space-between;
    width:100%;
  }
  .how2-dot-h{
    width:32px;height:32px;
    border-radius:50%;
    background:var(--bg-surface);
    border:2px solid var(--border-subtle);
    display:flex;align-items:center;justify-content:center;
    font-size:0.75rem;font-weight:700;
    color:var(--text-muted);
    transition:background 0.3s, border-color 0.3s, color 0.3s, box-shadow 0.3s, transform 0.3s;
  }
  .how2-dot-h.active{
    background:var(--dot-color, var(--accent));
    color:#fff;
    border-color:var(--dot-color, var(--accent));
    box-shadow:0 3px 14px rgba(var(--dot-rgb, 124,58,237),0.45),0 0 18px rgba(var(--dot-rgb, 124,58,237),0.3);
    transform:scale(1.1);
    animation:how2DotPulse 2s ease-in-out infinite;
  }
  .how2-dot-h.completed{
    background:var(--bg-surface);
    color:var(--text-muted);
    border-color:rgba(var(--dot-rgb, 124,58,237),0.35);
    transform:scale(0.78);
  }
}

/* ===== HOW2 RESPONSIVE: 480px ===== */
@media(max-width:480px){
  .how2-phone .phone-mockup{
    max-width:260px;
  }
  .how2-steps{
    gap:3rem;
  }
  .how2-text h3{
    font-size:1.2rem;
  }
  .how2-text p{
    font-size:0.92rem;
  }
}

/* ===== HOW2 REDUCED MOTION ===== */
@media(prefers-reduced-motion:reduce){
  .how2-step{
    opacity:1;
    transition:none;
  }
  .how2-progress-fill,
  .how2-progress-h-fill{
    transition:none;
  }
  .how2-dot,
  .how2-dot-h{
    transition:none;
    animation:none;
  }
  .how2-payoff{
    opacity:1;
    transform:none;
    transition:none;
  }
  .how2-phone .phone-mockup::before{
    opacity:0.6;
    transition:none;
  }
}
