/* ============================================================
   STACKEDDAILY v2 — Full Design System
   Dark: Deep navy + electric green accent
   Light: Crisp white + forest green accent
   Fonts: Cabinet Grotesk (display) + Satoshi (body)
   ============================================================ */

/* ---- DARK THEME (default) ---- */
:root,
[data-theme="dark"] {
  --bg:           #0b0e14;
  --bg-2:         #111520;
  --bg-3:         #171c29;
  --bg-4:         #1e2435;
  --border:       #242c3f;
  --border-light: #1c2336;

  --text:         #edf0f7;
  --text-2:       #8b95ad;
  --text-3:       #505a72;
  --text-inv:     #0b0e14;

  --green:        #00e676;
  --green-h:      #00c853;
  --green-dim:    rgba(0,230,118,.12);
  --green-glow:   0 0 32px rgba(0,230,118,.2);

  --blue:         #4fc3f7;
  --blue-dim:     rgba(79,195,247,.12);
  --purple:       #b388ff;
  --amber:        #ffca28;

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  22px;
  --radius-2xl: 32px;

  --shadow-sm:  0 1px 4px rgba(0,0,0,.5);
  --shadow-md:  0 4px 20px rgba(0,0,0,.6);
  --shadow-lg:  0 12px 48px rgba(0,0,0,.7);

  --ease: cubic-bezier(0.16,1,0.3,1);
  --dur: 200ms;

  --fw-display:  'Cabinet Grotesk', 'Helvetica Neue', sans-serif;
  --fw-body:     'Satoshi', 'Inter', sans-serif;

  --max-w:  1200px;
  --max-nm: 960px;
  --max-xs: 640px;
}

/* ---- LIGHT THEME ---- */
[data-theme="light"] {
  --bg:           #fafbff;
  --bg-2:         #ffffff;
  --bg-3:         #f2f4fa;
  --bg-4:         #e8ecf7;
  --border:       #dce1ef;
  --border-light: #e8ecf7;

  --text:         #0f1623;
  --text-2:       #4a5468;
  --text-3:       #9199af;
  --text-inv:     #ffffff;

  --green:        #00a854;
  --green-h:      #007d3d;
  --green-dim:    rgba(0,168,84,.1);
  --green-glow:   0 0 32px rgba(0,168,84,.15);

  --blue:         #0284c7;
  --blue-dim:     rgba(2,132,199,.1);
  --purple:       #7c3aed;
  --amber:        #d97706;

  --shadow-sm:  0 1px 4px rgba(0,0,0,.07);
  --shadow-md:  0 4px 20px rgba(0,0,0,.09);
  --shadow-lg:  0 12px 48px rgba(0,0,0,.12);
}

/* ============================================================ RESET */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;scroll-behavior:smooth;scroll-padding-top:72px}
body{min-height:100dvh;font-family:var(--fw-body);font-size:clamp(1rem,.95rem + .25vw,1.125rem);color:var(--text);background:var(--bg);line-height:1.65;transition:background .3s,color .3s}
img,picture,video,canvas,svg{display:block;max-width:100%}
h1,h2,h3,h4,h5,h6{font-family:var(--fw-display);line-height:1.1;text-wrap:balance}
p,li{text-wrap:pretty;max-width:68ch}
input,button,textarea,select{font:inherit;color:inherit}
button{cursor:pointer;background:none;border:none}
a{color:inherit;text-decoration:none}
::selection{background:var(--green-dim);color:var(--text)}
:focus-visible{outline:2px solid var(--green);outline-offset:3px;border-radius:4px}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}

/* ============================================================ LAYOUT */
.container{max-width:var(--max-w);margin-inline:auto;padding-inline:clamp(1.25rem,5vw,3rem)}
.section{padding-block:clamp(4rem,8vw,8rem)}
.section-tinted{background:var(--bg-2)}

/* ============================================================ ANNOUNCE BAR */
.announce-bar{
  display:flex;align-items:center;justify-content:center;gap:1rem;
  background:var(--green);color:var(--text-inv);
  padding:.6rem 1.25rem;font-size:.8125rem;font-weight:600;
  position:relative;
}
.announce-inner{display:flex;align-items:center;gap:.5rem}
.announce-dot{width:7px;height:7px;border-radius:50%;background:var(--text-inv);opacity:.7}
.announce-bar a{text-decoration:underline;color:var(--text-inv)}
.announce-close{position:absolute;right:1rem;top:50%;transform:translateY(-50%);color:var(--text-inv);opacity:.7;font-size:.875rem;padding:.25rem}
.announce-close:hover{opacity:1}

/* ============================================================ HEADER */
.header{
  position:sticky;top:0;z-index:100;
  background:color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);
  border-bottom:1px solid var(--border);
  transition:box-shadow var(--dur) var(--ease), background var(--dur);
}
.header.scrolled{box-shadow:var(--shadow-md)}

.nav-inner{
  max-width:var(--max-w);margin-inline:auto;
  padding-inline:clamp(1.25rem,5vw,3rem);
  height:64px;display:flex;align-items:center;gap:2rem;
}

/* Logo */
.logo{display:flex;align-items:center;gap:.6rem;flex-shrink:0}
.logo-text{font-family:var(--fw-display);font-weight:800;font-size:1.125rem;letter-spacing:-.03em;color:var(--text)}
.logo-icon rect:first-child{transition:fill .2s}
.logo:hover .logo-icon rect:first-child{fill:var(--green-h)}

/* Nav links */
.nav-links{display:flex;gap:1.75rem;margin-left:auto;font-size:.9rem;font-weight:500;color:var(--text-2)}
.nav-links a{transition:color var(--dur);position:relative;padding-bottom:2px}
.nav-links a::after{content:'';position:absolute;bottom:0;left:0;width:0;height:1.5px;background:var(--green);border-radius:1px;transition:width var(--dur) var(--ease)}
.nav-links a:hover{color:var(--text)}
.nav-links a:hover::after{width:100%}

/* Nav actions */
.nav-actions{display:flex;align-items:center;gap:.75rem;margin-left:1.5rem}

/* Theme toggle */
.theme-toggle{
  width:36px;height:36px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  color:var(--text-2);background:var(--bg-3);border:1px solid var(--border);
  transition:color var(--dur),background var(--dur),transform var(--dur);
}
.theme-toggle:hover{color:var(--text);background:var(--bg-4);transform:scale(1.05)}

/* Hamburger */
.hamburger{display:none;flex-direction:column;gap:5px;padding:.5rem}
.hamburger span{display:block;width:22px;height:2px;background:var(--text);border-radius:2px;transition:transform .25s var(--ease),opacity .2s}
.hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.hamburger.open span:nth-child(2){opacity:0;transform:scaleX(0)}
.hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* Mobile menu */
.mobile-menu{
  display:none;flex-direction:column;gap:.5rem;
  padding:1rem clamp(1.25rem,5vw,3rem) 1.5rem;
  border-top:1px solid var(--border);background:var(--bg);
}
.mobile-menu.open{display:flex}
.mobile-menu a{padding:.75rem;font-weight:500;color:var(--text-2);border-radius:var(--radius-md);transition:color var(--dur),background var(--dur)}
.mobile-menu a:hover{color:var(--text);background:var(--bg-3)}
.mobile-menu .btn-primary{margin-top:.5rem;text-align:center}

@media(max-width:768px){
  .nav-links{display:none}
  .hamburger{display:flex}
  .nav-cta{display:none}
}

/* ============================================================ BUTTONS */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  padding:.625rem 1.25rem;border-radius:var(--radius-md);
  font-family:var(--fw-display);font-size:.9rem;font-weight:700;
  line-height:1;white-space:nowrap;border:1.5px solid transparent;
  cursor:pointer;transition:all var(--dur) var(--ease);text-decoration:none;
}
.btn-xl{padding:.875rem 1.75rem;font-size:1rem;border-radius:var(--radius-lg);gap:.625rem}
.btn-full{width:100%;justify-content:center}

.btn-primary{background:var(--green);color:var(--text-inv);border-color:var(--green)}
.btn-primary:hover{background:var(--green-h);border-color:var(--green-h);transform:translateY(-1px);box-shadow:var(--green-glow)}

.btn-outline{background:transparent;color:var(--green);border-color:var(--green)}
.btn-outline:hover{background:var(--green-dim);transform:translateY(-1px)}

.btn-ghost{background:transparent;color:var(--text-2);border-color:var(--border)}
.btn-ghost:hover{color:var(--text);background:var(--bg-3);border-color:var(--border)}

/* ============================================================ HERO */
.hero{
  min-height:90vh;display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;gap:4rem;
  max-width:var(--max-w);margin-inline:auto;
  padding:clamp(5rem,10vw,8rem) clamp(1.25rem,5vw,3rem) clamp(4rem,6vw,6rem);
  position:relative;
}

/* Background noise/gradient */
.hero::before{
  content:'';position:fixed;inset:0;z-index:-2;
  background:
    radial-gradient(ellipse 60% 50% at 20% 20%, rgba(0,230,118,.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(79,195,247,.05) 0%, transparent 60%);
  pointer-events:none;
}
[data-theme="light"] .hero::before{
  background:
    radial-gradient(ellipse 60% 50% at 20% 20%, rgba(0,168,84,.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(2,132,199,.05) 0%, transparent 60%);
}

.hero-content{display:flex;flex-direction:column;gap:1.75rem;align-items:flex-start}

.hero-badge{
  display:inline-flex;align-items:center;gap:.5rem;
  background:var(--bg-3);border:1px solid var(--border);
  padding:.375rem 1rem;border-radius:999px;
  font-size:.8125rem;font-weight:600;color:var(--text-2);
}
.badge-dot{width:7px;height:7px;border-radius:50%;background:var(--green);box-shadow:0 0 8px var(--green);animation:blink 2.2s ease-in-out infinite}
@keyframes blink{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.65;transform:scale(1.35)}}

.hero-heading{
  font-size:clamp(2.4rem,2rem + 2.5vw,4.5rem);
  font-weight:900;letter-spacing:-.04em;color:var(--text);line-height:1.02;
}
.hero-em{font-style:normal;color:var(--green)}

.hero-sub{font-size:clamp(1rem,1rem + .3vw,1.2rem);color:var(--text-2);max-width:44ch;line-height:1.6}

.hero-ctas{display:flex;gap:.875rem;flex-wrap:wrap}

.hero-proof{display:flex;align-items:center;gap:.875rem;font-size:.9rem;color:var(--text-2)}
.proof-avatars{display:flex}
.avatar{
  width:34px;height:34px;border-radius:50%;margin-left:-9px;
  display:flex;align-items:center;justify-content:center;
  font-size:.75rem;font-weight:800;color:white;
  border:2.5px solid var(--bg);flex-shrink:0;
}
.avatar:first-child{margin-left:0}
.hero-proof strong{color:var(--text)}

/* Hero visual */
.hero-visual{position:relative;display:flex;align-items:center;justify-content:center}
.hero-card-wrap{position:relative;width:100%;max-width:440px}

/* Dashboard card */
.dashboard-card{
  background:var(--bg-2);border:1px solid var(--border);
  border-radius:var(--radius-xl);padding:1.5rem;
  box-shadow:var(--shadow-lg),0 0 80px rgba(0,230,118,.06);
  position:relative;z-index:1;
}
[data-theme="light"] .dashboard-card{box-shadow:var(--shadow-lg),0 0 60px rgba(0,168,84,.08)}

.db-header{
  display:flex;align-items:center;gap:.5rem;
  padding-bottom:1rem;margin-bottom:1.25rem;
  border-bottom:1px solid var(--border-light);
}
.db-dots{display:flex;gap:6px}
.db-dot{width:11px;height:11px;border-radius:50%}
.db-title{font-size:.75rem;font-weight:600;color:var(--text-3);margin-left:auto}
.db-live{display:flex;align-items:center;gap:.35rem;font-size:.7rem;font-weight:700;color:var(--green);background:var(--green-dim);padding:.2rem .6rem;border-radius:999px}
.db-live-dot{width:5px;height:5px;border-radius:50%;background:var(--green);animation:blink 1.5s infinite}

.db-total-row{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:1.5rem}
.db-total-label{font-size:.75rem;color:var(--text-3);font-weight:500;margin-bottom:.25rem}
.db-total-val{font-family:var(--fw-display);font-size:2rem;font-weight:900;color:var(--green);letter-spacing:-.03em}
.db-badge-up{background:rgba(0,230,118,.12);color:var(--green);border:1px solid rgba(0,230,118,.2);font-size:.7rem;font-weight:700;padding:.3rem .75rem;border-radius:999px;align-self:flex-start;margin-top:.25rem}
[data-theme="light"] .db-badge-up{background:rgba(0,168,84,.1);color:var(--green);border-color:rgba(0,168,84,.2)}

.db-bars{display:flex;flex-direction:column;gap:1rem}
.db-bar-row{display:grid;grid-template-columns:110px 1fr 56px;align-items:center;gap:.75rem}
.db-bar-label{font-size:.75rem;color:var(--text-2);font-weight:500}
.db-bar-track{height:5px;background:var(--bg-4);border-radius:999px;overflow:hidden}
.db-bar-fill{height:100%;width:0;border-radius:999px;background:var(--bar-color, var(--green));transition:width .9s var(--ease)}
.db-bar-val{font-size:.75rem;font-weight:700;color:var(--text);text-align:right}

/* Floating notification cards */
.notif-card{
  position:absolute;display:flex;align-items:center;gap:.75rem;
  background:var(--bg-2);border:1px solid var(--border);
  border-radius:var(--radius-lg);padding:.75rem 1rem;
  box-shadow:var(--shadow-md);z-index:2;min-width:180px;
  animation:floatY 4s ease-in-out infinite;
}
.notif-1{bottom:-3.5rem;left:1rem;animation-delay:0s}
.notif-2{top:3.5rem;right:-9rem;animation-delay:2s}
@keyframes floatY{0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)}}

.notif-icon{width:36px;height:36px;border-radius:var(--radius-sm);display:flex;align-items:center;justify-content:center;font-size:1rem;flex-shrink:0;opacity:.15}
/* override opacity for emoji */
.notif-icon{font-size:1.1rem;opacity:1;background:var(--green-dim)!important}
.notif-title{font-size:.8rem;font-weight:700;color:var(--text);line-height:1.2}
.notif-sub{font-size:.7rem;color:var(--text-2)}

@media(max-width:900px){
  .hero{grid-template-columns:1fr;text-align:center;gap:3rem}
  .hero-content{align-items:center}
  .hero-sub{text-align:center}
  .hero-visual{max-width:420px;margin-inline:auto}
  .notif-1{bottom:-1rem;left:-.5rem}
  .notif-2{top:-.75rem;right:-.5rem}
}

/* ============================================================ MARQUEE */
.marquee-wrap{
  border-top:1px solid var(--border);border-bottom:1px solid var(--border);
  background:var(--bg-2);padding:.875rem 0;overflow:hidden;
}
.marquee-track{
  display:flex;align-items:center;gap:1.5rem;
  animation:marquee 28s linear infinite;
  width:max-content;
}
.marquee-track:hover{animation-play-state:paused}
@keyframes marquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.marquee-item{font-size:.8rem;font-weight:700;color:var(--text-2);white-space:nowrap;letter-spacing:.02em}
.marquee-sep{color:var(--green);font-size:.6rem;opacity:.6}

/* ============================================================ STATS STRIP */
.stats-strip{padding-block:3rem}
.stats-grid{
  display:flex;align-items:center;justify-content:center;
  gap:0;flex-wrap:wrap;
  background:var(--bg-2);border:1px solid var(--border);
  border-radius:var(--radius-xl);overflow:hidden;
}
.stat-item{
  flex:1;min-width:140px;padding:2rem;
  display:flex;flex-direction:column;align-items:center;gap:.5rem;
  text-align:center;
}
.stat-big{font-family:var(--fw-display);font-size:clamp(2rem,3vw,2.75rem);font-weight:900;color:var(--green);letter-spacing:-.04em}
.stat-desc{font-size:.8125rem;color:var(--text-2);font-weight:500}
.stat-divider{width:1px;height:60px;background:var(--border);flex-shrink:0}
@media(max-width:640px){.stat-divider{display:none}.stat-item{border-bottom:1px solid var(--border)}.stat-item:last-child{border-bottom:none}}

/* ============================================================ SECTION INTRO */
.section-intro{text-align:center;max-width:580px;margin-inline:auto;margin-bottom:clamp(2.5rem,5vw,4rem)}
.eyebrow{font-size:.75rem;font-weight:800;text-transform:uppercase;letter-spacing:.14em;color:var(--green);margin-bottom:.75rem;display:block}
.section-intro h2{font-size:clamp(1.75rem,1.5rem + 1.5vw,3rem);font-weight:900;letter-spacing:-.04em;margin-bottom:1rem}
.section-sub{font-size:1rem;color:var(--text-2);line-height:1.65;margin-inline:auto}

.section-header-row{display:flex;justify-content:space-between;align-items:flex-end;gap:1.5rem;margin-bottom:clamp(2.5rem,5vw,4rem);flex-wrap:wrap}
.section-header-row h2{font-size:clamp(1.75rem,2vw,2.5rem);font-weight:900;letter-spacing:-.04em}

/* ============================================================ PILLARS */
.pillars-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1.25rem}

.pillar-card{
  background:var(--bg-2);border:1px solid var(--border);
  border-radius:var(--radius-xl);padding:2rem;
  display:flex;flex-direction:column;gap:1rem;
  position:relative;overflow:hidden;
  transition:border-color var(--dur),transform var(--dur),box-shadow var(--dur);
}
.pillar-card::before{
  content:'';position:absolute;top:0;left:0;right:0;height:2px;
  background:var(--green);opacity:0;transition:opacity var(--dur);
}
.pillar-card:hover{border-color:var(--green);transform:translateY(-4px);box-shadow:var(--green-glow)}
.pillar-card:hover::before{opacity:1}

.pillar-num{font-family:var(--fw-display);font-size:3rem;font-weight:900;color:var(--green);opacity:.12;line-height:1;margin-bottom:-.5rem}

.pillar-icon-wrap{
  width:46px;height:46px;border-radius:var(--radius-md);
  background:color-mix(in oklab, var(--accent) 12%, transparent);
  border:1px solid color-mix(in oklab, var(--accent) 25%, transparent);
  display:flex;align-items:center;justify-content:center;
  color:var(--accent);
}

.pillar-card h3{font-size:1.1rem;font-weight:800;color:var(--text)}
.pillar-card p{font-size:.9rem;color:var(--text-2);line-height:1.6;flex:1;max-width:none}
.pillar-link{font-size:.875rem;font-weight:700;color:var(--green);display:inline-flex;align-items:center;gap:.25rem}
.pillar-link:hover{text-decoration:underline}
.pillar-link span{transition:transform var(--dur) var(--ease)}
.pillar-link:hover span{transform:translateX(3px)}

/* ============================================================ PRODUCTS */
.products-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.25rem}

.product-card{
  background:var(--bg-3);border:1px solid var(--border);
  border-radius:var(--radius-xl);padding:2rem;
  display:flex;flex-direction:column;gap:1.25rem;
  position:relative;overflow:hidden;
  transition:border-color var(--dur),transform var(--dur);
}
.product-card:hover{border-color:var(--green);transform:translateY(-3px)}
.product-featured{border-color:var(--green);background:var(--bg-2);box-shadow:var(--green-glow)}

.product-ribbon{
  position:absolute;top:1.25rem;right:1.25rem;
  background:var(--green);color:var(--text-inv);
  font-size:.7rem;font-weight:800;text-transform:uppercase;letter-spacing:.08em;
  padding:.2rem .65rem;border-radius:999px;
}

.product-emoji{font-size:2.25rem;line-height:1}

.product-body{display:flex;flex-direction:column;gap:.75rem;flex:1}
.product-body h3{font-size:1.1rem;font-weight:800;color:var(--text)}
.product-body p{font-size:.875rem;color:var(--text-2);line-height:1.6;max-width:none}

.product-features{list-style:none;display:flex;flex-direction:column;gap:.4rem;margin-top:.25rem}
.product-features li{font-size:.8rem;color:var(--text-2);padding-left:1.25rem;position:relative}
.product-features li::before{content:'✓';position:absolute;left:0;color:var(--green);font-weight:700}

.product-footer{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding-top:1rem;border-top:1px solid var(--border-light)}
.product-price{font-family:var(--fw-display);font-size:1.75rem;font-weight:900;color:var(--text)}
.product-price-free{font-family:var(--fw-display);font-size:1.75rem;font-weight:900;color:var(--green)}

.products-cta{text-align:center;margin-top:2.5rem}

/* ============================================================ BLOG */
.blog-grid{
  display:grid;grid-template-columns:1fr 1fr;
  grid-template-rows:auto auto;gap:1.25rem;
}
.blog-featured{grid-row:span 2}

@media(max-width:700px){
  .blog-grid{grid-template-columns:1fr}
  .blog-featured{grid-row:span 1}
}

.blog-card{
  background:var(--bg-2);border:1px solid var(--border);
  border-radius:var(--radius-xl);padding:1.75rem;
  display:flex;flex-direction:column;gap:1rem;
  transition:border-color var(--dur),transform var(--dur);
}
.blog-card:hover{border-color:var(--green);transform:translateY(-3px)}
.blog-featured{padding:2.25rem}

.blog-tag-chip{
  display:inline-block;font-size:.7rem;font-weight:800;text-transform:uppercase;letter-spacing:.1em;
  padding:.25rem .75rem;border-radius:999px;
  background:color-mix(in oklab, var(--chip) 14%, transparent);
  color:var(--chip);border:1px solid color-mix(in oklab, var(--chip) 25%, transparent);
  align-self:flex-start;
}
.blog-card h3{font-size:1rem;font-weight:800;line-height:1.35;color:var(--text)}
.blog-featured h3{font-size:1.25rem}
.blog-card h3 a:hover{color:var(--green)}
.blog-card p{font-size:.875rem;color:var(--text-2);line-height:1.6;flex:1;max-width:none}

.blog-foot{display:flex;align-items:center;gap:.75rem;margin-top:auto}
.read-time{font-size:.75rem;font-weight:600;color:var(--text-3);background:var(--bg-3);padding:.2rem .65rem;border-radius:999px}
.blog-date{font-size:.75rem;color:var(--text-3)}

/* ============================================================ ROADMAP */
.roadmap-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:1.25rem}

.roadmap-card{
  background:var(--bg-3);border:1px solid var(--border);
  border-radius:var(--radius-xl);padding:2rem;
  position:relative;overflow:hidden;
  transition:border-color var(--dur),transform var(--dur);
}
.roadmap-card:hover{border-color:var(--green);transform:translateY(-3px)}
.roadmap-mid{border-color:var(--green);box-shadow:var(--green-glow)}

.roadmap-phase-label{font-size:.7rem;font-weight:800;text-transform:uppercase;letter-spacing:.12em;color:var(--green);margin-bottom:.5rem}
.roadmap-card h3{font-size:1.25rem;font-weight:800;color:var(--text);margin-bottom:.5rem}
.roadmap-income{font-size:1.5rem;font-weight:900;color:var(--green);margin-bottom:1.25rem;letter-spacing:-.03em;font-family:var(--fw-display)}
.roadmap-income span{font-size:.875rem;font-weight:500;color:var(--text-2)}
.roadmap-tasks{list-style:none;display:flex;flex-direction:column;gap:.625rem}
.roadmap-tasks li{font-size:.875rem;color:var(--text-2);padding-left:1.4rem;position:relative;line-height:1.5;max-width:none}
.roadmap-tasks li::before{content:'→';position:absolute;left:0;color:var(--green);font-weight:700}

/* ============================================================ ABOUT */
.about-split{display:grid;grid-template-columns:1fr 1fr;gap:clamp(3rem,6vw,6rem);align-items:center}
@media(max-width:768px){.about-split{grid-template-columns:1fr;gap:3rem}}

.about-text{display:flex;flex-direction:column;gap:1.25rem}
.about-text h2{font-size:clamp(1.75rem,2vw,2.75rem);font-weight:900;letter-spacing:-.04em}
.about-text p{font-size:.95rem;color:var(--text-2);line-height:1.7;max-width:none}
.about-text em{color:var(--green);font-style:normal;font-weight:700}

.about-goal{
  display:flex;align-items:flex-start;gap:.875rem;
  background:var(--green-dim);border:1px solid rgba(0,230,118,.2);
  border-radius:var(--radius-lg);padding:1.25rem;
}
[data-theme="light"] .about-goal{border-color:rgba(0,168,84,.2)}
.goal-icon{font-size:1.5rem;flex-shrink:0;margin-top:.1rem}
.about-goal p{font-size:.9rem;color:var(--text-2);max-width:none}
.about-goal strong{color:var(--text)}

.about-stat-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.about-stat-card{
  background:var(--bg-2);border:1px solid var(--border);
  border-radius:var(--radius-xl);padding:1.5rem;
  display:flex;flex-direction:column;gap:.5rem;
  transition:border-color var(--dur);
}
.about-stat-card:hover{border-color:var(--green)}
.about-stat-num{font-family:var(--fw-display);font-size:clamp(1.75rem,2.5vw,2.5rem);font-weight:900;color:var(--green);letter-spacing:-.04em}
.about-stat-label{font-size:.8rem;color:var(--text-2);font-weight:500}

/* ============================================================ NEWSLETTER */
.newsletter-section{background:var(--bg-2);border-top:1px solid var(--border)}

.newsletter-box{
  display:grid;grid-template-columns:1fr 1fr;gap:clamp(3rem,6vw,6rem);
  align-items:start;
}
@media(max-width:768px){.newsletter-box{grid-template-columns:1fr;gap:2.5rem}}

.newsletter-left{display:flex;flex-direction:column;gap:1.25rem}
.newsletter-left h2{font-size:clamp(1.5rem,1.5rem + 1vw,2.25rem);font-weight:900;letter-spacing:-.04em}
.newsletter-left p{font-size:.95rem;color:var(--text-2);line-height:1.65;max-width:none}
.nl-features{list-style:none;display:flex;flex-direction:column;gap:.625rem}
.nl-features li{font-size:.875rem;color:var(--text-2);display:flex;align-items:flex-start;gap:.5rem;max-width:none}
.nl-features li::first-letter{color:var(--green);font-weight:700}

.nl-count{font-size:.875rem;color:var(--text-2);margin-bottom:1.25rem}
.nl-count strong{color:var(--text)}

/* Newsletter form */
.nl-form{display:flex;flex-direction:column;gap:.875rem}
.nl-input-group input{
  width:100%;padding:.875rem 1.125rem;
  background:var(--bg);border:1.5px solid var(--border);
  border-radius:var(--radius-md);font-size:.95rem;color:var(--text);
  transition:border-color var(--dur),box-shadow var(--dur);
}
.nl-input-group input:focus{outline:none;border-color:var(--green);box-shadow:0 0 0 3px var(--green-dim)}
.nl-input-group input::placeholder{color:var(--text-3)}
.nl-disclaimer{font-size:.75rem;color:var(--text-3);line-height:1.5;max-width:none}
.nl-disclaimer a{color:var(--green);text-decoration:underline}

/* Success state */
.nl-success{
  background:var(--green-dim);border:1px solid rgba(0,230,118,.2);
  border-radius:var(--radius-lg);padding:2rem;
  display:flex;flex-direction:column;align-items:center;gap:1rem;text-align:center;
}
[data-theme="light"] .nl-success{border-color:rgba(0,168,84,.2)}
.nl-success-icon{font-size:2.5rem}
.nl-success p{color:var(--text-2);font-size:.95rem;max-width:none}
.nl-success strong{color:var(--text)}

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

.footer-grid{
  display:grid;grid-template-columns:2fr 1fr 1fr 1fr;
  gap:clamp(2rem,5vw,4rem);margin-bottom:3rem;
}
@media(max-width:900px){.footer-grid{grid-template-columns:1fr 1fr}}
@media(max-width:480px){.footer-grid{grid-template-columns:1fr}}

.footer-brand{display:flex;flex-direction:column;gap:1rem}
.footer-tagline{font-size:.875rem;color:var(--text-2);max-width:30ch;line-height:1.6}
.footer-socials{display:flex;gap:.75rem;margin-top:.5rem}
.social-link{
  width:34px;height:34px;border-radius:var(--radius-md);
  background:var(--bg-3);border:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;
  color:var(--text-2);transition:color var(--dur),background var(--dur),border-color var(--dur);
}
.social-link:hover{color:var(--green);background:var(--green-dim);border-color:var(--green)}

.footer-col{display:flex;flex-direction:column;gap:.875rem}
.footer-col h4{font-size:.7rem;font-weight:800;text-transform:uppercase;letter-spacing:.12em;color:var(--text);margin-bottom:.25rem}
.footer-col a{font-size:.875rem;color:var(--text-2);transition:color var(--dur)}
.footer-col a:hover{color:var(--green)}

.footer-bottom{
  display:flex;flex-wrap:wrap;gap:1rem;justify-content:space-between;
  padding-top:2rem;border-top:1px solid var(--border-light);
  font-size:.75rem;color:var(--text-3);
}

/* ============================================================ SHOP PAGE */
.page-hero{
  padding:clamp(4rem,8vw,7rem) 0 3rem;text-align:center;
}
.page-hero h1{font-size:clamp(2rem,1.5rem + 2vw,3.5rem);font-weight:900;letter-spacing:-.04em;margin-bottom:1rem}
.page-hero p{font-size:1.05rem;color:var(--text-2);max-width:48ch;margin-inline:auto}

/* Shop grid */
.shop-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:1.5rem}

.shop-card{
  background:var(--bg-2);border:1px solid var(--border);
  border-radius:var(--radius-xl);overflow:hidden;
  display:flex;flex-direction:column;
  transition:border-color var(--dur),transform var(--dur),box-shadow var(--dur);
}
.shop-card:hover{border-color:var(--green);transform:translateY(-3px);box-shadow:var(--green-glow)}
.shop-card.shop-featured{border-color:var(--green);box-shadow:var(--green-glow)}

.shop-card-head{
  padding:2rem 2rem 1.5rem;
  background:linear-gradient(135deg,var(--bg-3),var(--bg-2));
  border-bottom:1px solid var(--border);
  display:flex;align-items:center;justify-content:space-between;
}
.shop-emoji{font-size:2.5rem}
.free-badge{
  background:var(--green);color:var(--text-inv);
  font-size:.7rem;font-weight:800;text-transform:uppercase;letter-spacing:.07em;
  padding:.3rem .875rem;border-radius:999px;
}

.shop-card-body{padding:1.5rem 2rem;flex:1;display:flex;flex-direction:column;gap:1rem}
.shop-card-body h3{font-size:1.1rem;font-weight:800;line-height:1.3}
.shop-card-body p{font-size:.875rem;color:var(--text-2);flex:1;line-height:1.6;max-width:none}

.shop-features{list-style:none;display:flex;flex-direction:column;gap:.5rem}
.shop-features li{font-size:.8125rem;color:var(--text-2);padding-left:1.25rem;position:relative;max-width:none}
.shop-features li::before{content:'✓';position:absolute;left:0;color:var(--green);font-weight:700}

.shop-card-foot{
  padding:1.25rem 2rem;border-top:1px solid var(--border-light);
  display:flex;align-items:center;justify-content:space-between;gap:1rem;
}
.shop-price{font-family:var(--fw-display);font-size:1.75rem;font-weight:900;color:var(--text)}
.shop-price.is-free{color:var(--green)}

/* Blog index */
.blog-index-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:1.5rem}
.blog-index-card{
  background:var(--bg-2);border:1px solid var(--border);
  border-radius:var(--radius-xl);padding:2rem;
  display:flex;flex-direction:column;gap:1rem;
  transition:border-color var(--dur),transform var(--dur);
}
.blog-index-card:hover{border-color:var(--green);transform:translateY(-3px)}
.blog-index-card h2{font-size:1.05rem;font-weight:800;line-height:1.35}
.blog-index-card h2 a:hover{color:var(--green)}
.blog-index-card p{font-size:.875rem;color:var(--text-2);flex:1;line-height:1.6;max-width:none}
.read-more-link{font-size:.875rem;font-weight:700;color:var(--green);margin-top:auto}
.read-more-link:hover{text-decoration:underline}

/* ============================================================ SCROLL ANIMATIONS */
.reveal{opacity:0;transform:translateY(24px);transition:opacity .55s var(--ease),transform .55s var(--ease)}
.reveal.visible{opacity:1;transform:none}
