/* ====================================================================
   BONZICART AFFILIATE PROGRAM — STYLES
   Light + Dark themes · Responsive · Modern SaaS
==================================================================== */

/* ---------- Tokens ---------- */
:root,
:root[data-theme="light"]{
  --brand:#df653a;
  --brand-2:#b94a1f;
  --brand-3:#8e3712;
  --brand-soft:#fff4ec;
  --brand-soft-2:#ffe2cc;
  --brand-glow:rgba(223,101,58,.22);

  --bg:#fbfaf7;
  --bg-2:#f3efe9;
  --surface:#ffffff;
  --surface-2:#faf6f0;
  --surface-3:#fff4ec;

  --border:rgba(31,24,19,.08);
  --border-2:rgba(31,24,19,.16);

  --ink:#1f1813;
  --ink-2:#4a3f37;
  --muted:#7a6e63;

  --success:#16a34a;
  --info:#0ea5e9;
  --warning:#f59e0b;
  --error:#dc2626;
  --purple:#8b5cf6;
  --rose:#e11d48;
  --amber:#f59e0b;

  --info-soft:#dbeafe;
  --success-soft:#dcfce7;
  --purple-soft:#ede9fe;
  --rose-soft:#ffe4e6;
  --amber-soft:#fef3c7;

  --shadow-xs:0 1px 2px rgba(31,24,19,.05);
  --shadow-sm:0 1px 4px rgba(31,24,19,.06);
  --shadow:0 6px 18px rgba(31,24,19,.07);
  --shadow-lg:0 20px 48px rgba(31,24,19,.12);
  --shadow-xl:0 30px 80px rgba(31,24,19,.15);

  --r-sm:8px;
  --r-md:14px;
  --r-lg:20px;
  --r-xl:28px;
  --r-pill:999px;

  --ff-display:'Plus Jakarta Sans', system-ui, sans-serif;
  --ff-body:'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --grad-brand:linear-gradient(135deg, #df653a, #b94a1f);
  --grad-hero:radial-gradient(ellipse at top right, rgba(223,101,58,.20), transparent 60%),
              radial-gradient(ellipse at bottom left, rgba(139,92,246,.12), transparent 60%);
}

:root[data-theme="dark"]{
  --brand:#ff7a4e;
  --brand-2:#df653a;
  --brand-3:#ffaa80;
  --brand-soft:#2b1d14;
  --brand-soft-2:#3a2618;
  --brand-glow:rgba(255,122,78,.28);

  --bg:#0a0705;
  --bg-2:#120c08;
  --surface:#1a120c;
  --surface-2:#241910;
  --surface-3:#322216;

  --border:rgba(255,241,226,.07);
  --border-2:rgba(255,241,226,.16);

  --ink:#fff1e2;
  --ink-2:#e8d8c7;
  --muted:#a99a8c;

  --success:#22c55e;
  --info:#38bdf8;
  --warning:#fbbf24;
  --error:#f87171;
  --purple:#a78bfa;
  --rose:#fb7185;
  --amber:#fbbf24;

  --info-soft:rgba(56,189,248,.14);
  --success-soft:rgba(34,197,94,.14);
  --purple-soft:rgba(167,139,250,.14);
  --rose-soft:rgba(251,113,133,.14);
  --amber-soft:rgba(251,191,36,.14);

  --shadow-xs:0 1px 2px rgba(0,0,0,.4);
  --shadow-sm:0 1px 4px rgba(0,0,0,.5);
  --shadow:0 6px 18px rgba(0,0,0,.55);
  --shadow-lg:0 20px 48px rgba(0,0,0,.65);
  --shadow-xl:0 30px 80px rgba(0,0,0,.7);

  --grad-hero:radial-gradient(ellipse at top right, rgba(255,122,78,.20), transparent 60%),
              radial-gradient(ellipse at bottom left, rgba(167,139,250,.14), transparent 60%);
}

/* ---------- Reset ---------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
html,body{ margin:0; padding:0; }
body{
  font-family:var(--ff-body);
  background:var(--bg);
  color:var(--ink);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  min-height:100vh;
  transition:background .4s ease, color .4s ease;
}
img{ max-width:100%; display:block; }
a{ color:var(--brand); text-decoration:none; transition:color .2s; }
button{ font-family:inherit; cursor:pointer; }
::selection{ background:var(--brand); color:#fff; }

h1,h2,h3,h4,h5{
  font-family:var(--ff-display);
  font-weight:800;
  letter-spacing:-.02em;
  color:var(--ink);
  margin:0;
}

::-webkit-scrollbar{ width:10px; height:10px; }
::-webkit-scrollbar-track{ background:transparent; }
::-webkit-scrollbar-thumb{ background:var(--border-2); border-radius:8px; }
::-webkit-scrollbar-thumb:hover{ background:var(--muted); }

/* ---------- Layout ---------- */
.container{
  width:100%; max-width:1240px;
  margin:0 auto; padding:0 24px;
}

.section{ padding:90px 0; position:relative; }
.section-head{
  text-align:center;
  max-width:680px;
  margin:0 auto 56px;
}

.section-title{
  font-size:clamp(28px, 4vw, 42px);
  line-height:1.15;
  margin-bottom:14px;
}
.section-sub{
  font-size:16px;
  color:var(--muted);
  margin:0;
}

.eyebrow{
  display:inline-flex; align-items:center; gap:7px;
  font-size:11.5px; font-weight:800;
  letter-spacing:.10em; text-transform:uppercase;
  color:var(--brand);
  background:var(--brand-soft);
  padding:5px 12px;
  border-radius:var(--r-pill);
  border:1px solid var(--brand-soft-2);
  margin-bottom:16px;
}
.eyebrow-dot{
  width:7px; height:7px;
  border-radius:50%;
  background:var(--brand);
  box-shadow:0 0 0 4px rgba(223,101,58,.18);
}
.eyebrow-light{
  background:rgba(255,255,255,.15);
  color:#fff;
  border-color:rgba(255,255,255,.30);
}

.grad-text{
  background:linear-gradient(135deg, var(--brand), var(--brand-2));
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  color:transparent;
}

/* ---------- Buttons ---------- */
.btn{
  appearance:none;
  border:1.5px solid transparent;
  padding:11px 22px;
  border-radius:var(--r-pill);
  font-family:var(--ff-body);
  font-weight:700;
  font-size:14px;
  cursor:pointer;
  display:inline-flex; align-items:center; gap:8px;
  transition:all .2s;
  text-decoration:none;
  white-space:nowrap;
  justify-content:center;
}
.btn i{ font-size:12px; }
.btn-xl{ padding:14px 26px; font-size:15px; }
.btn-block{ width:100%; }
.btn-primary{
  background:var(--grad-brand);
  color:#fff;
  box-shadow:0 6px 18px var(--brand-glow);
}
.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 26px var(--brand-glow);
  color:#fff;
}
.btn-outline{
  background:transparent;
  color:var(--ink);
  border-color:var(--border-2);
}
.btn-outline:hover{
  border-color:var(--brand);
  color:var(--brand);
  background:var(--brand-soft);
}
.btn-ghost{
  background:transparent;
  color:var(--ink-2);
}
.btn-ghost:hover{
  background:var(--surface-2);
  color:var(--brand);
}
.btn-glass{
  background:rgba(255,255,255,.10);
  color:var(--ink);
  border-color:var(--border-2);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}
.btn-glass:hover{
  background:var(--surface);
  border-color:var(--brand);
  color:var(--brand);
}

/* ====================================================================
   HEADER
==================================================================== */
.site-header{
  position:sticky; top:0;
  z-index:50;
  background:rgba(251,250,247,.85);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border-bottom:1px solid var(--border);
  transition:background .3s, box-shadow .3s;
}
[data-theme="dark"] .site-header{ background:rgba(10,7,5,.80); }
.site-header.scrolled{ box-shadow:var(--shadow-sm); }

.header-inner{
  display:flex; align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:14px 24px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  text-decoration:none;
  flex-shrink:0;
}
.brand-logo{
  width:38px; height:38px;
  object-fit:contain;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:10px;
  padding:4px;
}
.brand-text{ display:flex; flex-direction:column; gap:1px; }
.brand-name{
  font-family:var(--ff-display);
  font-weight:800; font-size:16px;
  color:var(--ink);
  line-height:1;
}
.brand-tag{
  font-size:10.5px;
  font-weight:600;
  color:var(--brand);
  letter-spacing:.04em;
  text-transform:uppercase;
}

.main-nav{ display:flex; gap:8px; }
.nav-link{
  color:var(--ink-2);
  font-weight:600;
  font-size:13.5px;
  padding:8px 14px;
  border-radius:8px;
  transition:all .15s;
}
.nav-link:hover{ background:var(--brand-soft); color:var(--brand); }

.header-actions{ display:flex; align-items:center; gap:8px; }

.theme-toggle{
  width:40px; height:40px;
  border:1px solid var(--border);
  background:var(--surface);
  border-radius:10px;
  display:inline-flex; align-items:center; justify-content:center;
  color:var(--ink-2);
  font-size:14px;
  transition:all .2s;
  position:relative;
  overflow:hidden;
}
.theme-toggle:hover{ background:var(--brand-soft); color:var(--brand); border-color:var(--brand); }
.theme-toggle .sun-ico, .theme-toggle .moon-ico{
  position:absolute; transition:all .35s ease;
}
:root[data-theme="light"] .moon-ico{ opacity:0; transform:translateY(20px) rotate(120deg); }
:root[data-theme="dark"] .sun-ico{ opacity:0; transform:translateY(-20px) rotate(-120deg); }

.btn-login{ padding:8px 14px; font-size:13px; }

.mobile-toggle{
  display:none;
  background:transparent;
  border:0;
  color:var(--ink);
  font-size:18px;
  padding:6px;
}

/* ====================================================================
   HERO
==================================================================== */
.hero{
  position:relative;
  padding:80px 0 120px;
  overflow:hidden;
}
.hero-bg{
  position:absolute; inset:0;
  background:var(--grad-hero);
  pointer-events:none;
  z-index:-1;
}
.hero-blob{
  position:absolute;
  width:520px; height:520px;
  border-radius:50%;
  pointer-events:none;
  filter:blur(80px);
  z-index:-1;
  opacity:.55;
}
.blob-1{
  background:radial-gradient(circle, var(--brand), transparent 65%);
  top:-200px; right:-180px;
  animation:float-1 8s ease-in-out infinite;
}
.blob-2{
  background:radial-gradient(circle, var(--purple), transparent 65%);
  bottom:-200px; left:-100px;
  animation:float-2 10s ease-in-out infinite;
  opacity:.35;
}
@keyframes float-1{
  0%,100%{ transform:translate(0,0); }
  50%{ transform:translate(-20px, 20px); }
}
@keyframes float-2{
  0%,100%{ transform:translate(0,0); }
  50%{ transform:translate(30px, -30px); }
}

.hero-inner{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:60px;
  align-items:center;
}

.hero-title{
  font-size:clamp(34px, 5vw, 58px);
  line-height:1.05;
  letter-spacing:-.03em;
  margin-bottom:20px;
}
.hero-sub{
  font-size:17px;
  color:var(--ink-2);
  max-width:560px;
  margin:0 0 32px;
}
.hero-cta{
  display:flex; gap:12px;
  flex-wrap:wrap;
  margin-bottom:36px;
}
.hero-trust{
  display:flex; align-items:center; gap:14px;
}
.trust-avatars{
  display:flex;
}
.trust-avatars img{
  width:36px; height:36px;
  border-radius:50%;
  border:2.5px solid var(--bg);
  object-fit:cover;
  margin-left:-10px;
  background:var(--surface-2);
}
.trust-avatars img:first-child{ margin-left:0; }
.trust-text{
  display:flex; flex-direction:column;
  gap:2px;
}
.stars{
  display:flex; align-items:center; gap:5px;
  font-size:12.5px;
  font-weight:700;
  color:var(--ink);
}
.stars i{ color:#fbbf24; font-size:12px; }
.stars strong{ margin-left:4px; }
.trust-text span{
  font-size:11.5px;
  color:var(--muted);
}

/* Hero visual / dashboard cards */
.hero-visual{
  position:relative;
  height:520px;
}
.float-card{
  position:absolute;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--r-md);
  box-shadow:var(--shadow-lg);
  padding:18px;
  animation:float-card 6s ease-in-out infinite;
}
@keyframes float-card{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-12px); }
}

.float-main{
  top:60px; left:30px; right:30px;
  max-width:380px;
  margin:0 auto;
}
.float-card-head{
  display:flex; justify-content:space-between;
  align-items:flex-start;
  margin-bottom:18px;
}
.fc-eyebrow{
  font-size:11px;
  color:var(--muted);
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.06em;
}
.fc-amount{
  font-family:var(--ff-display);
  font-weight:800;
  font-size:28px;
  color:var(--ink);
  margin:4px 0 6px;
}
.fc-trend{
  display:inline-flex; align-items:center; gap:5px;
  font-size:11.5px;
  font-weight:700;
  background:var(--success-soft);
  color:var(--success);
  padding:3px 10px;
  border-radius:var(--r-pill);
}
.fc-ico{
  width:42px; height:42px;
  background:var(--grad-brand);
  color:#fff;
  border-radius:12px;
  display:inline-flex; align-items:center; justify-content:center;
  font-size:18px;
  box-shadow:0 6px 16px var(--brand-glow);
}
.fc-ico.blue{ background:linear-gradient(135deg, #0ea5e9, #0369a1); box-shadow:0 6px 16px rgba(14,165,233,.30); }
.fc-ico.green{ background:linear-gradient(135deg, #16a34a, #15803d); box-shadow:0 6px 16px rgba(22,163,74,.30); }
.fc-ico.purple{ background:linear-gradient(135deg, #8b5cf6, #6d28d9); box-shadow:0 6px 16px rgba(139,92,246,.30); }
.fc-bars{
  display:flex;
  gap:8px;
  align-items:flex-end;
  height:80px;
  margin-bottom:6px;
}
.fc-bars span{
  flex:1;
  background:linear-gradient(180deg, var(--brand), var(--brand-2));
  border-radius:5px 5px 0 0;
  min-height:8px;
  transition:height .6s;
  position:relative;
}
.fc-bars span:last-child{ box-shadow:0 -6px 12px var(--brand-glow); }
.fc-foot{
  display:flex; justify-content:space-between;
  font-size:9.5px;
  font-weight:700;
  color:var(--muted);
  letter-spacing:.04em;
}

.float-clicks{
  top:30px; right:-30px;
  padding:14px 18px;
  display:flex; align-items:center; gap:12px;
  animation-delay:-2s;
}
.float-conv{
  top:340px; left:-20px;
  padding:14px 18px;
  display:flex; align-items:center; gap:12px;
  animation-delay:-4s;
}
.float-payout{
  bottom:0; right:0;
  padding:14px 18px;
  display:flex; align-items:center; gap:12px;
  animation-delay:-1s;
}
.fc-mini-label{
  display:block;
  font-size:10.5px;
  color:var(--muted);
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.04em;
}
.fc-mini-val{
  display:block;
  font-family:var(--ff-display);
  font-weight:800;
  font-size:18px;
  color:var(--ink);
  line-height:1.2;
}
.fc-mini-sub{
  font-size:10.5px;
  color:var(--muted);
  display:block;
}
.float-tag{
  position:absolute;
  top:0; left:50%;
  transform:translateX(-50%);
  background:var(--success);
  color:#fff;
  padding:5px 12px;
  border-radius:var(--r-pill);
  font-size:11px;
  font-weight:700;
  display:inline-flex; align-items:center; gap:6px;
  box-shadow:0 6px 16px rgba(22,163,74,.30);
  z-index:5;
}
.live-dot{
  width:6px; height:6px;
  border-radius:50%;
  background:#fff;
  animation:pulse 1.5s infinite;
}
@keyframes pulse{
  0%,100%{ opacity:.6; box-shadow:0 0 0 0 rgba(255,255,255,.6); }
  50%{ opacity:1; box-shadow:0 0 0 5px transparent; }
}

/* ====================================================================
   TRUST BAR
==================================================================== */
.trust-bar{
  background:var(--surface);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  padding:36px 0;
}
.trust-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:30px;
}
.trust-item{
  text-align:center;
}
.trust-num{
  font-family:var(--ff-display);
  font-weight:800;
  font-size:clamp(28px, 4vw, 40px);
  line-height:1;
  color:var(--ink);
  background:var(--grad-brand);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  letter-spacing:-.02em;
  font-variant-numeric:tabular-nums;
  margin-bottom:6px;
}
.trust-label{
  font-size:13px;
  color:var(--muted);
  font-weight:600;
}

/* ====================================================================
   BENEFITS
==================================================================== */
.benefits{ background:var(--bg); }

.benefit-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}
.benefit-card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--r-lg);
  padding:32px 26px;
  transition:transform .25s, box-shadow .25s, border-color .25s;
  position:relative;
  overflow:hidden;
}
.benefit-card::before{
  content:"";
  position:absolute;
  top:-50px; right:-50px;
  width:120px; height:120px;
  background:radial-gradient(circle, var(--brand-glow), transparent 70%);
  border-radius:50%;
  opacity:0;
  transition:opacity .3s;
  pointer-events:none;
}
.benefit-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-lg);
  border-color:var(--brand);
}
.benefit-card:hover::before{ opacity:1; }

.bc-ico{
  width:56px; height:56px;
  border-radius:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  margin-bottom:18px;
  transition:transform .25s;
}
.benefit-card:hover .bc-ico{ transform:scale(1.1) rotate(-5deg); }

.bc-orange{ background:var(--brand-soft); color:var(--brand); }
.bc-blue{ background:var(--info-soft); color:var(--info); }
.bc-purple{ background:var(--purple-soft); color:var(--purple); }
.bc-green{ background:var(--success-soft); color:var(--success); }
.bc-rose{ background:var(--rose-soft); color:var(--rose); }
.bc-amber{ background:var(--amber-soft); color:var(--amber); }

.benefit-card h3{
  font-size:18px;
  margin-bottom:10px;
  position:relative;
  z-index:1;
}
.benefit-card p{
  font-size:14px;
  color:var(--muted);
  margin:0 0 16px;
  line-height:1.6;
  position:relative;
  z-index:1;
}
.bc-tag{
  display:inline-block;
  font-size:11px;
  font-weight:700;
  background:var(--surface-2);
  color:var(--ink-2);
  padding:3px 10px;
  border-radius:var(--r-pill);
  border:1px solid var(--border);
  position:relative;
  z-index:1;
}

/* ====================================================================
   HOW IT WORKS
==================================================================== */
.how-it-works{
  background:var(--surface-2);
  position:relative;
  overflow:hidden;
}
.how-it-works::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse at top left, rgba(223,101,58,.06), transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(139,92,246,.06), transparent 60%);
  pointer-events:none;
}

.steps-grid{
  display:flex;
  align-items:stretch;
  gap:18px;
  flex-wrap:nowrap;
  position:relative;
  z-index:1;
}
.step-card{
  flex:1;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--r-lg);
  padding:32px 26px;
  position:relative;
  transition:transform .25s, box-shadow .25s, border-color .25s;
}
.step-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-lg);
  border-color:var(--brand);
}
.step-num{
  position:absolute;
  top:14px; right:18px;
  font-family:var(--ff-display);
  font-weight:800;
  font-size:48px;
  color:var(--brand-soft-2);
  line-height:1;
  letter-spacing:-.04em;
  pointer-events:none;
}
[data-theme="dark"] .step-num{ color:var(--brand-soft-2); }
.step-ico{
  width:54px; height:54px;
  background:var(--grad-brand);
  color:#fff;
  border-radius:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  margin-bottom:18px;
  box-shadow:0 8px 20px var(--brand-glow);
}
.step-card h3{
  font-size:19px;
  margin-bottom:10px;
}
.step-card p{
  font-size:14px;
  color:var(--muted);
  margin:0 0 16px;
}
.step-link{
  font-weight:700;
  font-size:13px;
  display:inline-flex; align-items:center;
  gap:6px;
  transition:gap .2s;
}
.step-link:hover{ gap:10px; }
.step-link i{ font-size:11px; }

.step-arrow{
  display:flex; align-items:center;
  color:var(--brand);
  font-size:22px;
  opacity:.6;
  animation:arrow-bounce 2s infinite;
}
@keyframes arrow-bounce{
  0%,100%{ transform:translateX(0); }
  50%{ transform:translateX(8px); }
}

/* ====================================================================
   COMMISSION TIERS
==================================================================== */
.commission{ background:var(--bg); }

.tier-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
}
.tier-card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--r-lg);
  overflow:hidden;
  display:flex; flex-direction:column;
  transition:transform .3s, box-shadow .3s, border-color .3s;
  position:relative;
}
.tier-card:hover{
  transform:translateY(-8px);
  box-shadow:var(--shadow-lg);
  border-color:var(--brand);
}
.tier-card.popular{
  border-color:var(--brand);
  box-shadow:0 12px 32px var(--brand-glow);
  transform:translateY(-8px);
}
.popular-tag{
  position:absolute;
  top:12px; right:12px;
  background:var(--grad-brand);
  color:#fff;
  font-size:10.5px;
  font-weight:800;
  padding:4px 12px;
  border-radius:var(--r-pill);
  letter-spacing:.04em;
  text-transform:uppercase;
  box-shadow:0 6px 16px var(--brand-glow);
}
.tier-band{
  height:6px;
}
.tier-head{
  padding:28px 24px 20px;
  text-align:center;
  border-bottom:1px solid var(--border);
}
.tier-badge{
  width:48px; height:48px;
  background:var(--surface-2);
  color:var(--brand);
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  margin:0 auto 14px;
  border:2px solid var(--border);
}
.tier-head h3{
  font-size:18px;
  margin-bottom:6px;
}
.tier-rate{
  display:block;
  font-family:var(--ff-display);
  font-weight:800;
  font-size:42px;
  line-height:1;
  color:var(--brand);
  margin:8px 0 10px;
  letter-spacing:-.02em;
}
.tier-rate small{ font-size:18px; opacity:.7; margin-left:2px; }
.tier-of{
  display:block;
  font-size:10.5px;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--muted);
  margin:-4px 0 10px;
}
.tier-head p{
  font-size:12.5px;
  color:var(--muted);
  margin:0;
}

/* ===== Commission Math / Breakdown Block ===== */
.commission-math{
  margin-top:36px;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--r-xl);
  padding:36px;
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
}
.commission-math::before{
  content:"";
  position:absolute;
  top:-60px; right:-60px;
  width:200px; height:200px;
  background:radial-gradient(circle, var(--brand-glow), transparent 70%);
  border-radius:50%;
  pointer-events:none;
}
.cm-head{
  display:flex; align-items:center; gap:18px;
  margin-bottom:28px;
  position:relative; z-index:1;
}
.cm-head-ico{
  width:54px; height:54px;
  background:var(--grad-brand);
  color:#fff;
  border-radius:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  flex-shrink:0;
  box-shadow:0 8px 20px var(--brand-glow);
}
.cm-head h3{
  font-size:20px;
  margin-bottom:4px;
}
.cm-head p{
  font-size:13.5px;
  color:var(--muted);
  margin:0;
  line-height:1.5;
}

/* Flow diagram */
.cm-flow{
  display:flex;
  align-items:stretch;
  gap:10px;
  margin-bottom:32px;
  flex-wrap:wrap;
  justify-content:space-between;
  position:relative; z-index:1;
}
.cm-step{
  flex:1;
  min-width:140px;
  background:var(--surface-2);
  border:1.5px solid var(--border);
  border-radius:var(--r-md);
  padding:18px 16px;
  text-align:center;
  position:relative;
  transition:transform .2s, border-color .2s;
}
.cm-step:hover{ transform:translateY(-3px); border-color:var(--brand); }
.cm-step.cm-highlight{
  background:var(--grad-brand);
  color:#fff;
  border-color:transparent;
  box-shadow:0 12px 28px var(--brand-glow);
}
.cm-num{
  position:absolute;
  top:-12px; left:50%;
  transform:translateX(-50%);
  width:24px; height:24px;
  background:var(--brand);
  color:#fff;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-family:var(--ff-display);
  font-weight:800;
  font-size:11.5px;
  box-shadow:0 3px 10px var(--brand-glow);
}
.cm-step.cm-highlight .cm-num{
  background:#fff;
  color:var(--brand-2);
}
.cm-step strong{
  display:block;
  font-family:var(--ff-display);
  font-weight:800;
  font-size:20px;
  margin:4px 0 4px;
  letter-spacing:-.02em;
  color:var(--ink);
}
.cm-step.cm-highlight strong{ color:#fff; }
.cm-step span{
  font-size:11.5px;
  color:var(--muted);
  display:block;
}
.cm-step.cm-highlight span{ color:rgba(255,255,255,.92); font-weight:600; }
.cm-arrow{
  display:flex; align-items:center;
  color:var(--brand);
  font-size:14px;
  opacity:.5;
  flex-shrink:0;
}

/* Categories table */
.cm-cats{
  background:var(--surface-2);
  border:1px solid var(--border);
  border-radius:var(--r-md);
  padding:22px 24px;
  position:relative; z-index:1;
}
.cm-cats h4{
  font-size:14px;
  margin-bottom:14px;
  display:flex; align-items:center; gap:8px;
}
.cm-cats h4 i{ color:var(--brand); font-size:13px; }
.cm-cats h4 small{
  font-family:var(--ff-body);
  font-weight:500;
  font-size:11.5px;
  color:var(--muted);
  margin-left:6px;
  letter-spacing:0;
  text-transform:none;
}
.cm-table-wrap{
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  margin-bottom:12px;
}
.cm-cats table{
  width:100%;
  border-collapse:collapse;
  font-size:13px;
  min-width:520px;
}
.cm-cats th{
  text-align:left;
  font-family:var(--ff-display);
  font-weight:800;
  font-size:10.5px;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--muted);
  padding:8px 12px;
  border-bottom:1.5px solid var(--border);
  white-space:nowrap;
}
.cm-cats td{
  padding:10px 12px;
  border-bottom:1px dashed var(--border);
  color:var(--ink-2);
  vertical-align:middle;
}
.cm-cats tr:last-child td{ border-bottom:0; }
.cm-cats tr:hover td{ background:var(--brand-soft); color:var(--ink); }
.cm-cats td i{
  color:var(--brand);
  margin-right:7px;
  font-size:11px;
  width:14px;
  text-align:center;
}
.cm-cats td .eff{
  font-family:var(--ff-display);
  font-weight:800;
  color:var(--brand);
  font-size:14px;
  background:var(--brand-soft);
  padding:2px 8px;
  border-radius:var(--r-pill);
  border:1px solid var(--brand-soft-2);
  margin-right:4px;
}
.cm-note{
  display:flex; align-items:center; gap:8px;
  font-size:12px;
  color:var(--muted);
  margin:14px 0 0;
  padding-top:12px;
  border-top:1px solid var(--border);
}
.cm-note i{ color:var(--info); font-size:12px; }

@media (max-width: 720px){
  .commission-math{ padding:24px 20px; }
  .cm-head{ flex-direction:column; align-items:flex-start; text-align:left; }
  .cm-flow{ flex-direction:column; }
  .cm-arrow{ transform:rotate(90deg); margin:2px auto; }
  .cm-cats{ padding:18px 16px; }
}

/* ====================================================================
   SCENARIO BLOCK — 200 SALES/DAY PROJECTION
==================================================================== */
.scenario-block{
  margin-top:40px;
  padding-top:36px;
  border-top:2px dashed var(--border-2);
}
.scenario-head{
  text-align:center;
  margin-bottom:30px;
}
.scenario-eyebrow{
  display:inline-flex; align-items:center; gap:7px;
  font-size:11px; font-weight:800;
  letter-spacing:.10em; text-transform:uppercase;
  color:var(--brand);
  background:var(--brand-soft);
  padding:5px 14px;
  border-radius:var(--r-pill);
  border:1px solid var(--brand-soft-2);
  margin-bottom:14px;
}
.scenario-head h3{
  font-size:clamp(22px, 3vw, 30px);
  margin-bottom:10px;
  line-height:1.2;
}
.scenario-head > p{
  font-size:14px;
  color:var(--ink-2);
  max-width:620px;
  margin:0 auto;
  line-height:1.6;
}

/* KPI strip */
.scenario-kpis{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:12px;
  margin-bottom:28px;
}
.sk-card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--r-md);
  padding:14px 16px;
  display:flex; align-items:center; gap:12px;
  box-shadow:var(--shadow-xs);
  transition:transform .2s, box-shadow .2s;
}
.sk-card:hover{ transform:translateY(-2px); box-shadow:var(--shadow-sm); }
.sk-card.highlight{
  background:var(--grad-brand);
  color:#fff;
  border-color:transparent;
  box-shadow:0 8px 20px var(--brand-glow);
}
.sk-card.highlight strong{ color:#fff; }
.sk-card.highlight span{ color:rgba(255,255,255,.85); }
.sk-ico{
  width:38px; height:38px;
  border-radius:10px;
  display:inline-flex; align-items:center; justify-content:center;
  font-size:14px;
  color:#fff;
  flex-shrink:0;
}
.bg-blue{ background:linear-gradient(135deg, #0ea5e9, #0369a1); box-shadow:0 4px 10px rgba(14,165,233,.25); }
.bg-purple{ background:linear-gradient(135deg, #8b5cf6, #6d28d9); box-shadow:0 4px 10px rgba(139,92,246,.25); }
.bg-amber{ background:linear-gradient(135deg, #f59e0b, #b45309); box-shadow:0 4px 10px rgba(245,158,11,.25); }
.bg-white{ background:rgba(255,255,255,.24); border:1px solid rgba(255,255,255,.34); }
.sk-card strong{
  display:block;
  font-family:var(--ff-display);
  font-weight:800;
  font-size:16px;
  color:var(--ink);
  line-height:1.1;
  font-variant-numeric:tabular-nums;
}
.sk-card span{
  font-size:10.5px;
  color:var(--muted);
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.04em;
  margin-top:3px;
  display:block;
}

/* Section sub-head used inside scenario */
.sc-head{
  display:flex; justify-content:space-between;
  align-items:flex-end;
  gap:12px;
  margin-bottom:18px;
  flex-wrap:wrap;
}
.sc-head h4{
  font-size:15px;
  display:flex; align-items:center; gap:8px;
  margin:0;
}
.sc-head h4 i{ color:var(--brand); font-size:13px; }
.sc-sub{
  font-size:11.5px;
  color:var(--muted);
  font-weight:600;
}

/* Bar chart */
.scenario-chart,
.scenario-projection,
.scenario-growth{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--r-md);
  padding:22px 24px;
  margin-bottom:20px;
}
.chart-bars{
  display:flex; flex-direction:column;
  gap:14px;
}
.cb-row{
  display:grid;
  grid-template-columns:150px 1fr 110px;
  align-items:center;
  gap:14px;
}
.cb-label{
  display:flex; align-items:center; gap:10px;
}
.cb-medal{
  width:34px; height:34px;
  border-radius:50%;
  display:inline-flex; align-items:center; justify-content:center;
  color:#fff;
  font-size:13px;
  flex-shrink:0;
  box-shadow:0 3px 8px rgba(31,24,19,.15);
}
.cb-medal.bronze{ background:linear-gradient(135deg, #cd7f32, #8b5a2b); }
.cb-medal.silver{ background:linear-gradient(135deg, #c0c0c0, #808080); }
.cb-medal.gold{ background:linear-gradient(135deg, #ffd700, #d4a017); }
.cb-medal.platinum{ background:linear-gradient(135deg, #e5e4e2, #a8a9ad); color:#5a5a5a; }
.cb-label > div strong{
  display:block;
  font-family:var(--ff-display);
  font-weight:800;
  font-size:13.5px;
  color:var(--ink);
}
.cb-label > div small{
  font-size:10.5px;
  color:var(--muted);
  font-weight:600;
}
.cb-track{
  height:26px;
  background:var(--surface-2);
  border-radius:var(--r-pill);
  overflow:hidden;
  position:relative;
}
.cb-bar{
  height:100%;
  border-radius:var(--r-pill);
  width:0;
  transition:width 1.4s cubic-bezier(.22,1,.36,1);
  position:relative;
}
.cb-row.in .cb-bar{ width:var(--w, 100%); }
.cb-bar.bronze{ background:linear-gradient(90deg, #cd7f32, #8b5a2b); }
.cb-bar.silver{ background:linear-gradient(90deg, #c0c0c0, #808080); }
.cb-bar.gold{ background:linear-gradient(90deg, #ffd700, #d4a017); box-shadow:inset 0 -2px 4px rgba(0,0,0,.10); }
.cb-bar.platinum{ background:linear-gradient(90deg, #e5e4e2, #a8a9ad); box-shadow:inset 0 -2px 4px rgba(0,0,0,.10); }
.cb-value{
  text-align:right;
}
.cb-value strong{
  display:block;
  font-family:var(--ff-display);
  font-weight:800;
  font-size:15px;
  color:var(--brand);
  font-variant-numeric:tabular-nums;
  line-height:1.1;
}
.cb-value small{
  font-size:10.5px;
  color:var(--muted);
  font-weight:600;
}

/* Projection grid */
.proj-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:12px;
}
.proj-card{
  background:var(--surface-2);
  border:1px solid var(--border);
  border-radius:var(--r-md);
  padding:16px 14px;
  position:relative;
  transition:transform .2s, box-shadow .2s, border-color .2s;
  overflow:hidden;
}
.proj-card:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow);
  border-color:var(--brand);
}
.proj-card.popular{
  background:linear-gradient(135deg, var(--brand-soft), var(--surface));
  border-color:var(--brand);
  box-shadow:0 6px 16px var(--brand-glow);
}
.proj-card .popular-tag{
  position:absolute;
  top:0; right:12px;
  background:var(--brand);
  color:#fff;
  font-size:9.5px;
  font-weight:800;
  padding:3px 10px;
  border-radius:0 0 var(--r-pill) var(--r-pill);
  letter-spacing:.04em;
  text-transform:uppercase;
}
.proj-tier-band{
  height:4px;
  margin:-16px -14px 12px;
}
.proj-tier-band.bronze{ background:linear-gradient(90deg, #cd7f32, #8b5a2b); }
.proj-tier-band.silver{ background:linear-gradient(90deg, #c0c0c0, #808080); }
.proj-tier-band.gold{ background:linear-gradient(90deg, #ffd700, #d4a017); }
.proj-tier-band.platinum{ background:linear-gradient(90deg, #e5e4e2, #a8a9ad); }
.proj-tier{
  font-size:10.5px;
  font-weight:800;
  color:var(--muted);
  letter-spacing:.06em;
  text-transform:uppercase;
  margin-bottom:8px;
}
.proj-monthly{
  font-family:var(--ff-display);
  font-weight:800;
  font-size:24px;
  color:var(--brand);
  line-height:1;
  margin-bottom:5px;
  font-variant-numeric:tabular-nums;
}
.proj-monthly small{
  font-size:11px;
  font-weight:600;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.04em;
  margin-left:3px;
}
.proj-yearly{
  font-size:11.5px;
  color:var(--ink-2);
  font-weight:600;
}

/* Growth chart */
.growth-chart{
  display:flex; gap:14px;
  position:relative;
  margin-bottom:6px;
}
.growth-y-axis{
  display:flex; flex-direction:column;
  justify-content:space-between;
  font-size:10.5px;
  color:var(--muted);
  font-weight:700;
  text-align:right;
  padding:0 4px 0 0;
  min-width:54px;
  font-variant-numeric:tabular-nums;
  height:260px;
}
.growth-svg{
  flex:1;
  height:260px;
  display:block;
  color:var(--ink);
}
.growth-svg polyline{
  stroke-dasharray:2000;
  stroke-dashoffset:2000;
  transition:stroke-dashoffset 1.8s ease-out;
}
.growth-chart.in .growth-svg polyline{ stroke-dashoffset:0; }
.growth-chart.in .line-bro{ transition-delay:0s; }
.growth-chart.in .line-sil{ transition-delay:.15s; }
.growth-chart.in .line-gold{ transition-delay:.30s; }
.growth-chart.in .line-plat{ transition-delay:.45s; }

.growth-x-labels{
  display:grid;
  grid-template-columns:repeat(12, 1fr);
  gap:0;
  margin:6px 0 14px 68px;
  font-size:10.5px;
  font-weight:700;
  color:var(--muted);
  text-align:center;
  letter-spacing:.04em;
}
.growth-legend{
  display:flex; flex-wrap:wrap;
  gap:14px;
  font-size:12px;
  color:var(--ink-2);
  padding-top:14px;
  border-top:1px solid var(--border);
  font-weight:600;
}
.growth-legend > div{
  display:inline-flex; align-items:center; gap:7px;
}
.growth-legend .dot{
  width:12px; height:12px;
  border-radius:50%;
}
.growth-legend .dot.bronze{ background:#cd7f32; }
.growth-legend .dot.silver{ background:#c0c0c0; }
.growth-legend .dot.gold{ background:#ffd700; }
.growth-legend .dot.platinum{ background:#e5e4e2; border:1px solid #a8a9ad; }

/* Closing vision panel */
.scenario-vision{
  background:var(--grad-brand);
  color:#fff;
  border-radius:var(--r-md);
  padding:26px;
  display:flex; gap:20px;
  align-items:flex-start;
  position:relative;
  overflow:hidden;
}
.scenario-vision::before{
  content:"";
  position:absolute;
  top:-60px; right:-60px;
  width:200px; height:200px;
  background:radial-gradient(circle, rgba(255,255,255,.18), transparent 70%);
  border-radius:50%;
  pointer-events:none;
}
.sv-ico{
  width:56px; height:56px;
  background:rgba(255,255,255,.22);
  border:1px solid rgba(255,255,255,.30);
  border-radius:14px;
  display:inline-flex; align-items:center; justify-content:center;
  font-size:22px;
  color:#fff;
  flex-shrink:0;
  position:relative; z-index:1;
}
.sv-text{ flex:1; position:relative; z-index:1; }
.sv-text h4{
  font-size:19px;
  color:#fff;
  margin-bottom:10px;
}
.sv-text p{
  font-size:13.5px;
  margin:0 0 16px;
  line-height:1.6;
  opacity:.95;
}
.sv-text p strong{ color:#fff; }
.sv-points{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:7px 14px;
  margin-bottom:18px;
  font-size:12.5px;
}
.sv-points > div{
  display:flex; align-items:center; gap:7px;
  font-weight:500;
}
.sv-points i{ color:#86efac; font-size:11px; }
.scenario-vision .btn{
  background:#fff;
  color:var(--brand-2);
  padding:11px 22px;
  border-radius:var(--r-pill);
}
.scenario-vision .btn:hover{
  background:var(--ink);
  color:#fff;
  transform:translateY(-2px);
}

@media (max-width: 960px){
  .scenario-kpis{ grid-template-columns:repeat(2, 1fr); }
  .proj-grid{ grid-template-columns:repeat(2, 1fr); }
  .cb-row{ grid-template-columns:130px 1fr 96px; }
}
@media (max-width: 640px){
  .scenario-kpis{ grid-template-columns:1fr; }
  .proj-grid{ grid-template-columns:1fr; }
  .scenario-vision{ flex-direction:column; }
  .sv-points{ grid-template-columns:1fr; }
  .cb-row{ grid-template-columns:1fr; gap:6px; }
  .cb-track{ height:20px; }
  .cb-value{ text-align:left; }
  .growth-chart{ flex-direction:column; }
  .growth-y-axis{ flex-direction:row; height:auto; min-width:0; justify-content:space-between; margin-bottom:4px; }
  .growth-x-labels{ margin-left:0; }
  .growth-svg{ height:200px; }
}
.tier-features{
  list-style:none;
  margin:0;
  padding:20px 24px 28px;
  flex:1;
  display:flex; flex-direction:column;
  gap:9px;
}
.tier-features li{
  display:flex; align-items:flex-start; gap:9px;
  font-size:13px;
  color:var(--ink-2);
}
.tier-features li i{
  color:var(--success);
  font-size:11px;
  margin-top:5px;
  flex-shrink:0;
}

/* ====================================================================
   EARNINGS CALCULATOR
==================================================================== */
.calculator{
  background:var(--surface-2);
  position:relative;
  overflow:hidden;
}

.calc-wrap{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:32px;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--r-xl);
  padding:36px;
  box-shadow:var(--shadow);
}

.calc-inputs{
  display:flex; flex-direction:column;
  gap:24px;
}
.slider-group{
  display:flex; flex-direction:column;
  gap:8px;
}
.slider-head{
  display:flex; justify-content:space-between;
  align-items:center;
  gap:10px;
}
.slider-head label{
  font-size:13px;
  font-weight:700;
  color:var(--ink);
  display:inline-flex; align-items:center; gap:8px;
}
.slider-head label i{ color:var(--brand); font-size:12px; }
.slider-val{
  font-family:var(--ff-display);
  font-weight:800;
  font-size:16px;
  color:var(--brand);
  background:var(--brand-soft);
  padding:3px 12px;
  border-radius:var(--r-pill);
  border:1px solid var(--brand-soft-2);
  font-variant-numeric:tabular-nums;
}

.slider-group input[type="range"]{
  -webkit-appearance:none;
  appearance:none;
  width:100%;
  height:6px;
  background:linear-gradient(90deg, var(--brand) var(--p,30%), var(--surface-2) var(--p,30%));
  border-radius:3px;
  outline:none;
  cursor:pointer;
}
.slider-group input[type="range"]::-webkit-slider-thumb{
  -webkit-appearance:none;
  width:22px; height:22px;
  background:#fff;
  border:3px solid var(--brand);
  border-radius:50%;
  cursor:pointer;
  box-shadow:0 4px 12px var(--brand-glow);
  transition:transform .15s;
}
.slider-group input[type="range"]::-webkit-slider-thumb:hover{ transform:scale(1.15); }
.slider-group input[type="range"]::-moz-range-thumb{
  width:22px; height:22px;
  background:#fff;
  border:3px solid var(--brand);
  border-radius:50%;
  cursor:pointer;
  box-shadow:0 4px 12px var(--brand-glow);
}
.slider-foot{
  display:flex; justify-content:space-between;
  font-size:10.5px;
  color:var(--muted);
  font-weight:600;
}

/* Result card */
.calc-result{ display:flex; align-items:center; }
.calc-result-card{
  background:var(--grad-brand);
  color:#fff;
  border-radius:var(--r-lg);
  padding:28px;
  width:100%;
  position:relative;
  overflow:hidden;
  box-shadow:0 20px 40px var(--brand-glow);
}
.calc-result-card::before,
.calc-result-card::after{
  content:"";
  position:absolute;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,.15), transparent 70%);
  pointer-events:none;
}
.calc-result-card::before{ top:-40px; right:-40px; width:160px; height:160px; }
.calc-result-card::after{ bottom:-40px; left:-30px; width:130px; height:130px; background:radial-gradient(circle, rgba(255,255,255,.08), transparent 70%); }

.cr-eyebrow{
  font-size:11px;
  font-weight:800;
  letter-spacing:.10em;
  text-transform:uppercase;
  opacity:.95;
  margin-bottom:18px;
  display:inline-flex; align-items:center; gap:6px;
  position:relative; z-index:1;
}
.cr-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-bottom:18px;
  position:relative; z-index:1;
}
.cr-stat{}
.cr-label{
  font-size:12px;
  opacity:.85;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.04em;
}
.cr-value{
  display:block;
  font-family:var(--ff-display);
  font-weight:800;
  font-size:28px;
  line-height:1;
  margin-top:4px;
  font-variant-numeric:tabular-nums;
}
.cr-breakdown{
  background:rgba(255,255,255,.18);
  border:1px solid rgba(255,255,255,.20);
  border-radius:var(--r-md);
  padding:10px 14px;
  display:flex; justify-content:space-between;
  gap:12px;
  font-size:12.5px;
  margin-bottom:18px;
  flex-wrap:wrap;
  position:relative; z-index:1;
}
.cr-breakdown strong{ font-weight:700; }
.calc-result-card .btn{
  background:#fff;
  color:var(--brand-2);
  position:relative; z-index:1;
}
.calc-result-card .btn:hover{
  background:var(--ink);
  color:#fff;
  transform:translateY(-2px);
}
.cr-disclaimer{
  display:block;
  margin-top:12px;
  font-size:10.5px;
  opacity:.80;
  text-align:center;
  position:relative; z-index:1;
}

/* ====================================================================
   30-DAY MONTHLY PLAN
==================================================================== */
.monthly-plan{
  background:var(--surface-2);
  position:relative;
  overflow:hidden;
}
.monthly-plan::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse at top right, rgba(223,101,58,.06), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(139,92,246,.05), transparent 60%);
  pointer-events:none;
}

/* Week Tabs */
.week-tabs{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:10px;
  margin-bottom:28px;
  position:relative; z-index:1;
}
.week-tab{
  appearance:none;
  background:var(--surface);
  border:2px solid var(--border);
  border-radius:var(--r-md);
  padding:14px 16px;
  cursor:pointer;
  text-align:left;
  transition:all .2s;
  display:flex; flex-direction:column;
  gap:3px;
  position:relative;
  overflow:hidden;
}
.week-tab:hover{
  border-color:var(--brand);
  transform:translateY(-2px);
  box-shadow:var(--shadow);
}
.week-tab.active{
  background:var(--grad-brand);
  color:#fff;
  border-color:transparent;
  box-shadow:0 10px 24px var(--brand-glow);
}
.week-tab.active::before{
  content:"";
  position:absolute;
  top:-30px; right:-30px;
  width:100px; height:100px;
  background:radial-gradient(circle, rgba(255,255,255,.18), transparent 70%);
  border-radius:50%;
  pointer-events:none;
}
.wt-num{
  font-family:var(--ff-display);
  font-weight:800;
  font-size:11px;
  letter-spacing:.10em;
  color:var(--brand);
}
.week-tab.active .wt-num{ color:#fff; opacity:.95; }
.wt-date{
  font-size:10.5px;
  font-weight:600;
  color:var(--muted);
}
.week-tab.active .wt-date{ color:rgba(255,255,255,.80); }
.wt-cat{
  font-family:var(--ff-display);
  font-weight:800;
  font-size:13px;
  color:var(--ink);
  margin-top:2px;
}
.week-tab.active .wt-cat{ color:#fff; }

/* Week panels */
.week-panel{
  display:none;
  animation:fadeUp .3s ease-out;
  position:relative; z-index:1;
}
.week-panel.active{ display:block; }
.wp-head{
  text-align:center;
  margin-bottom:24px;
}
.wp-head h3{
  font-size:24px;
  margin-bottom:8px;
  display:inline-flex; align-items:center; gap:10px;
}
.wp-head h3 i{
  width:36px; height:36px;
  background:var(--grad-brand);
  color:#fff;
  border-radius:10px;
  display:inline-flex; align-items:center; justify-content:center;
  font-size:15px;
  box-shadow:0 6px 16px var(--brand-glow);
}
.wp-head p{
  font-size:14px;
  color:var(--ink-2);
  max-width:680px;
  margin:0 auto;
  line-height:1.6;
}

/* Grid layout */
.wp-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr;
  gap:20px;
}

/* Category cards */
.wp-categories{
  display:flex; flex-direction:column;
  gap:12px;
}
.cat-card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--r-md);
  padding:16px 18px;
  transition:transform .2s, box-shadow .2s, border-color .2s;
}
.cat-card:hover{
  transform:translateY(-2px);
  box-shadow:var(--shadow);
  border-color:var(--brand);
}
.cc-row{
  display:flex; align-items:center; gap:12px;
  margin-bottom:11px;
}
.cc-ico{
  width:44px; height:44px;
  border-radius:11px;
  display:inline-flex; align-items:center; justify-content:center;
  color:#fff;
  font-size:17px;
  flex-shrink:0;
  box-shadow:0 4px 10px rgba(31,24,19,.10);
}
.cc-text{ flex:1; min-width:0; }
.cc-text h4{
  font-size:14px;
  margin-bottom:2px;
  line-height:1.2;
}
.cc-text p{
  font-size:11.5px;
  color:var(--muted);
  margin:0;
}
.cc-text p strong{ color:var(--ink-2); font-weight:700; }
.cc-pct{
  font-family:var(--ff-display);
  font-weight:800;
  font-size:18px;
  color:var(--brand);
  background:var(--brand-soft);
  padding:5px 11px;
  border-radius:var(--r-pill);
  border:1px solid var(--brand-soft-2);
}

.cc-products{
  display:flex; flex-wrap:wrap; gap:5px;
  margin-bottom:11px;
}
.cc-products span{
  background:var(--surface-2);
  color:var(--ink-2);
  border:1px solid var(--border);
  padding:3px 9px;
  border-radius:var(--r-pill);
  font-size:11px;
  font-weight:600;
  transition:all .15s;
}
.cc-products span:hover{
  background:var(--brand-soft);
  color:var(--brand);
  border-color:var(--brand);
}

.cc-meta{
  display:flex; align-items:center; gap:14px;
  flex-wrap:wrap;
  border-top:1px dashed var(--border);
  padding-top:10px;
}
.cc-geo{
  font-size:11.5px;
  color:var(--muted);
  font-weight:600;
  flex:1;
  min-width:0;
}
.cc-geo i{ color:var(--brand); font-size:10px; margin-right:4px; }
.cc-bar{
  display:inline-flex; align-items:center; gap:8px;
  background:var(--surface-2);
  border-radius:var(--r-pill);
  padding:3px 10px 3px 4px;
  position:relative;
  overflow:hidden;
  flex-shrink:0;
}
.cc-bar-fill{
  height:14px;
  border-radius:var(--r-pill);
  position:relative;
  display:inline-block;
  flex-shrink:0;
}
.cc-bar strong{
  font-family:var(--ff-display);
  font-weight:800;
  font-size:11px;
  color:var(--ink);
  font-variant-numeric:tabular-nums;
}

/* Analytics sidebar */
.wp-analytics{
  display:flex; flex-direction:column;
  gap:14px;
}
.ana-card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--r-md);
  padding:16px 18px;
}
.ana-card h4{
  font-size:13px;
  margin-bottom:14px;
  display:flex; align-items:center; gap:7px;
}
.ana-card h4 i{ color:var(--brand); font-size:12px; }

/* Donut chart */
.donut-wrap{
  display:flex; justify-content:center;
  margin-bottom:14px;
}
.donut-chart{
  width:160px; height:160px;
  color:var(--ink);
}
.donut-seg{
  transition:stroke-dashoffset 1s ease-out;
  cursor:pointer;
}
.donut-seg:hover{
  filter:brightness(1.15);
  stroke-width:36;
}

.pie-legend{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:6px 10px;
  font-size:11px;
  color:var(--ink-2);
}
.pie-legend > div{
  display:flex; align-items:center; gap:6px;
  font-weight:500;
}
.pie-legend strong{
  margin-left:auto;
  font-family:var(--ff-display);
  font-weight:800;
  color:var(--ink);
  font-variant-numeric:tabular-nums;
}
.pie-legend .dot{
  width:9px; height:9px;
  border-radius:2px;
  flex-shrink:0;
}

/* Audience & City bars */
.aud-bars, .city-bars{
  display:flex; flex-direction:column;
  gap:9px;
}
.aud-row, .city-row{
  display:grid;
  grid-template-columns:90px 1fr 40px;
  gap:8px;
  align-items:center;
  font-size:11px;
}
.aud-row span, .city-row span{
  color:var(--ink-2);
  font-weight:600;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.aud-bar, .city-bar{
  height:8px;
  background:var(--surface-2);
  border-radius:var(--r-pill);
  overflow:hidden;
}
.aud-fill{
  height:100%;
  background:linear-gradient(90deg, #8b5cf6, #6d28d9);
  border-radius:var(--r-pill);
  transition:width 1s cubic-bezier(.22,1,.36,1);
}
.city-fill{
  height:100%;
  background:linear-gradient(90deg, var(--brand), var(--brand-2));
  border-radius:var(--r-pill);
  transition:width 1s cubic-bezier(.22,1,.36,1);
}
.aud-row strong, .city-row strong{
  font-family:var(--ff-display);
  font-weight:800;
  font-size:11.5px;
  color:var(--brand);
  text-align:right;
  font-variant-numeric:tabular-nums;
}

/* ============ GEO STRATEGY ============ */
.geo-strategy{
  margin-top:40px;
  padding:32px;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--r-xl);
  box-shadow:var(--shadow);
  position:relative; z-index:1;
}
.gs-head{
  text-align:center;
  margin-bottom:28px;
}
.gs-head h3{
  font-size:26px;
  margin-bottom:8px;
}
.gs-head p{
  font-size:14px;
  color:var(--muted);
  max-width:580px;
  margin:0 auto;
}
.gs-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:flex-start;
}

/* India Map */
.india-map-wrap{
  background:var(--surface-2);
  border:1px solid var(--border);
  border-radius:var(--r-md);
  padding:20px;
  text-align:center;
}
.india-map-wrap h4{
  font-size:13px;
  margin-bottom:14px;
  display:flex; align-items:center; gap:7px;
  justify-content:center;
}
.india-map-wrap h4 i{ color:var(--brand); font-size:12px; }
.india-map{
  width:100%;
  max-width:400px;
  height:auto;
  color:var(--ink);
  margin:0 auto;
}
.pulse-ring{
  transform-origin:center;
  transform-box:fill-box;
  animation:mapPulse 2.4s ease-in-out infinite;
}
.pin-1 .pulse-ring{ animation-delay:0s; }
.pin-2 .pulse-ring{ animation-delay:.3s; }
.pin-3 .pulse-ring{ animation-delay:.6s; }
.pin-4 .pulse-ring{ animation-delay:.9s; }
.pin-5 .pulse-ring{ animation-delay:1.2s; }
.pin-6 .pulse-ring{ animation-delay:1.5s; }
.pin-7 .pulse-ring{ animation-delay:1.8s; }
.pin-8 .pulse-ring{ animation-delay:2.1s; }
@keyframes mapPulse{
  0%,100%{ opacity:.20; }
  50%{ opacity:.50; }
}
.map-legend{
  margin-top:14px;
  font-size:11px;
  color:var(--muted);
  display:flex; align-items:center; justify-content:center; gap:8px;
}
.pulse-dot{
  width:10px; height:10px;
  border-radius:50%;
  background:var(--brand);
  box-shadow:0 0 0 4px var(--brand-glow);
  display:inline-block;
}

/* Region bars */
.region-bars{
  background:var(--surface-2);
  border:1px solid var(--border);
  border-radius:var(--r-md);
  padding:20px;
}
.region-bars h4{
  font-size:13px;
  margin-bottom:16px;
  display:flex; align-items:center; gap:7px;
}
.region-bars h4 i{ color:var(--brand); font-size:12px; }
.rb-row{
  display:grid;
  grid-template-columns:130px 1fr 40px;
  align-items:center;
  gap:10px;
  margin-bottom:4px;
}
.rb-label{
  font-size:12px;
  font-weight:700;
  color:var(--ink);
  display:flex; align-items:center; gap:7px;
}
.rb-label i{ color:var(--brand); font-size:11px; }
.rb-bar{
  height:10px;
  background:var(--surface);
  border-radius:var(--r-pill);
  overflow:hidden;
  border:1px solid var(--border);
}
.rb-fill{
  height:100%;
  background:var(--grad-brand);
  border-radius:var(--r-pill);
  transition:width 1.2s cubic-bezier(.22,1,.36,1);
}
.rb-row strong{
  font-family:var(--ff-display);
  font-weight:800;
  font-size:13px;
  color:var(--brand);
  text-align:right;
  font-variant-numeric:tabular-nums;
}
.rb-cities{
  display:block;
  margin:2px 0 12px 138px;
  font-size:10.5px;
  color:var(--muted);
  font-weight:500;
}
.region-summary{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:8px;
  margin-top:14px;
  padding-top:14px;
  border-top:1px dashed var(--border);
}
.region-summary > div{
  text-align:center;
}
.region-summary strong{
  display:block;
  font-family:var(--ff-display);
  font-weight:800;
  font-size:18px;
  color:var(--brand);
  font-variant-numeric:tabular-nums;
}
.region-summary span{
  font-size:11px;
  color:var(--muted);
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.04em;
}

/* Plan vision (closing) */
.plan-vision{
  margin-top:28px;
  background:var(--grad-brand);
  color:#fff;
  border-radius:var(--r-xl);
  padding:30px;
  display:flex; gap:22px;
  align-items:flex-start;
  position:relative;
  overflow:hidden;
  z-index:1;
}
.plan-vision::before{
  content:"";
  position:absolute;
  top:-80px; right:-80px;
  width:240px; height:240px;
  background:radial-gradient(circle, rgba(255,255,255,.18), transparent 70%);
  border-radius:50%;
  pointer-events:none;
}
.pv-ico{
  width:60px; height:60px;
  background:rgba(255,255,255,.22);
  border:1px solid rgba(255,255,255,.30);
  border-radius:14px;
  display:inline-flex; align-items:center; justify-content:center;
  font-size:24px;
  color:#fff;
  flex-shrink:0;
  position:relative; z-index:1;
}
.pv-text{ flex:1; position:relative; z-index:1; }
.pv-text h4{
  font-size:20px;
  color:#fff;
  margin-bottom:10px;
}
.pv-text p{
  font-size:14px;
  margin:0 0 18px;
  line-height:1.6;
  opacity:.95;
}
.pv-text p strong{ color:#fff; }
.pv-stats{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:10px;
  margin-bottom:20px;
}
.pv-stats > div{
  background:rgba(255,255,255,.15);
  border:1px solid rgba(255,255,255,.20);
  border-radius:var(--r-md);
  padding:12px;
  text-align:center;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}
.pv-stats strong{
  display:block;
  font-family:var(--ff-display);
  font-weight:800;
  font-size:24px;
  line-height:1;
  margin-bottom:4px;
}
.pv-stats span{
  font-size:10.5px;
  font-weight:600;
  opacity:.85;
  text-transform:uppercase;
  letter-spacing:.04em;
}
.plan-vision .btn{
  background:#fff;
  color:var(--brand-2);
  padding:11px 22px;
}
.plan-vision .btn:hover{
  background:var(--ink);
  color:#fff;
}

@media (max-width: 1024px){
  .wp-grid{ grid-template-columns:1fr; }
  .gs-grid{ grid-template-columns:1fr; }
  .week-tabs{ grid-template-columns:repeat(2, 1fr); }
}
@media (max-width: 640px){
  .geo-strategy{ padding:22px 18px; }
  .week-tabs{ grid-template-columns:1fr; }
  .pv-stats{ grid-template-columns:repeat(2, 1fr); }
  .plan-vision{ flex-direction:column; }
  .rb-row{ grid-template-columns:120px 1fr 36px; }
  .rb-cities{ margin-left:0; }
  .aud-row, .city-row{ grid-template-columns:80px 1fr 38px; }
}

/* ====================================================================
   SUB-PAGE SHARED STYLES
==================================================================== */
.page-hero{
  position:relative;
  padding:60px 0 50px;
  text-align:center;
  overflow:hidden;
}
.page-hero::before{
  content:"";
  position:absolute; inset:0;
  background:var(--grad-hero);
  pointer-events:none;
  z-index:-1;
}
.breadcrumb-nav{
  display:flex; align-items:center; justify-content:center;
  gap:8px;
  font-size:12px;
  color:var(--muted);
  margin-bottom:18px;
  flex-wrap:wrap;
}
.breadcrumb-nav a{ color:var(--muted); font-weight:500; }
.breadcrumb-nav a:hover{ color:var(--brand); }
.breadcrumb-nav i{ font-size:9px; color:var(--border-2); }
.breadcrumb-nav .current{ color:var(--ink-2); font-weight:600; }
.page-hero h1{
  font-size:clamp(28px, 4vw, 42px);
  margin-bottom:14px;
  line-height:1.15;
}
.page-hero > .container > p{
  font-size:16px;
  color:var(--ink-2);
  max-width:640px;
  margin:0 auto;
  line-height:1.6;
}
.page-content{ padding:30px 0 80px; }

/* Filter chips */
.filter-chips{
  display:flex; gap:8px;
  flex-wrap:wrap; justify-content:center;
  margin-bottom:36px;
}
.filter-chip{
  appearance:none;
  background:var(--surface);
  border:1.5px solid var(--border);
  color:var(--ink-2);
  padding:7px 16px;
  border-radius:var(--r-pill);
  font-weight:700; font-size:12.5px;
  cursor:pointer;
  transition:all .15s;
  font-family:var(--ff-body);
}
.filter-chip:hover{ border-color:var(--brand); color:var(--brand); }
.filter-chip.active{
  background:var(--grad-brand);
  color:#fff;
  border-color:transparent;
  box-shadow:0 4px 12px var(--brand-glow);
}

/* ======= BLOG ======= */
.article-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
}
.article-card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--r-lg);
  overflow:hidden;
  transition:transform .2s, box-shadow .2s, border-color .2s;
  display:flex; flex-direction:column;
}
.article-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-lg);
  border-color:var(--brand);
}
.article-cover{
  height:170px;
  position:relative;
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-size:42px;
  overflow:hidden;
}
.article-cover::before{
  content:"";
  position:absolute;
  top:-30px; right:-30px;
  width:120px; height:120px;
  background:radial-gradient(circle, rgba(255,255,255,.20), transparent 70%);
  border-radius:50%;
}
.cover-orange{ background:linear-gradient(135deg, #df653a, #b94a1f); }
.cover-blue{ background:linear-gradient(135deg, #0ea5e9, #0369a1); }
.cover-purple{ background:linear-gradient(135deg, #8b5cf6, #6d28d9); }
.cover-green{ background:linear-gradient(135deg, #16a34a, #15803d); }
.cover-rose{ background:linear-gradient(135deg, #e11d48, #9f1239); }
.cover-amber{ background:linear-gradient(135deg, #f59e0b, #b45309); }
.cover-teal{ background:linear-gradient(135deg, #14b8a6, #0d9488); }
.cover-indigo{ background:linear-gradient(135deg, #6366f1, #4338ca); }
.article-body{
  padding:18px 20px;
  flex:1;
  display:flex; flex-direction:column;
  gap:8px;
}
.article-cat{
  display:inline-block;
  font-size:10px; font-weight:800;
  letter-spacing:.06em; text-transform:uppercase;
  color:var(--brand);
  background:var(--brand-soft);
  padding:3px 9px;
  border-radius:var(--r-pill);
  width:fit-content;
}
.article-title{
  font-family:var(--ff-display);
  font-weight:800; font-size:15.5px;
  color:var(--ink);
  line-height:1.3;
  margin:4px 0 0;
}
.article-excerpt{
  font-size:13px;
  color:var(--muted);
  flex:1;
  line-height:1.5;
}
.article-meta{
  display:flex; justify-content:space-between;
  font-size:11px;
  color:var(--muted);
  padding-top:10px;
  border-top:1px dashed var(--border);
  margin-top:auto;
}
.article-meta i{ margin-right:4px; color:var(--brand); }

.featured-article{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--r-xl);
  overflow:hidden;
  margin-bottom:32px;
  display:grid;
  grid-template-columns:1.1fr 1fr;
  box-shadow:var(--shadow);
}
.featured-article .article-cover{ height:auto; min-height:300px; font-size:80px; }
.featured-body{
  padding:34px;
  display:flex; flex-direction:column;
  justify-content:center;
  gap:12px;
}
.featured-body .article-title{ font-size:22px; }
.featured-body .article-excerpt{ font-size:14px; }

/* ======= CREATIVE LIBRARY ======= */
.creative-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(250px, 1fr));
  gap:16px;
}
.creative-card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--r-md);
  overflow:hidden;
  transition:transform .2s, box-shadow .2s, border-color .2s;
}
.creative-card:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow);
  border-color:var(--brand);
}
.creative-preview{
  height:170px;
  position:relative;
  display:flex; align-items:center; justify-content:center;
  flex-direction:column;
  color:#fff;
  overflow:hidden;
  text-align:center; padding:0 16px;
}
.creative-preview .preview-headline{
  font-family:var(--ff-display);
  font-weight:800; font-size:22px;
  line-height:1.1;
  margin-bottom:6px;
}
.creative-preview .preview-tag{
  font-size:11px;
  letter-spacing:.06em;
  text-transform:uppercase;
  opacity:.85;
  font-weight:700;
}
.creative-preview .preview-icon{
  font-size:32px;
  margin-bottom:10px;
}
.creative-info{ padding:14px 16px; }
.creative-info h4{
  font-size:13.5px;
  margin-bottom:3px;
}
.creative-info > p{
  font-size:11.5px;
  color:var(--muted);
  margin:0 0 12px;
}
.creative-actions{
  display:flex; justify-content:space-between;
  align-items:center;
  padding-top:10px;
  border-top:1px dashed var(--border);
}
.creative-actions .dl-info{
  font-size:11px;
  color:var(--muted);
  font-weight:600;
}
.creative-actions .dl-info i{ margin-right:4px; color:var(--brand); }

/* ======= API DOCS ======= */
.docs-layout{
  display:grid;
  grid-template-columns:240px 1fr;
  gap:32px;
  align-items:start;
}
.docs-sidebar{
  position:sticky;
  top:90px;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--r-md);
  padding:18px;
  max-height:calc(100vh - 110px);
  overflow-y:auto;
}
.docs-sidebar h5{
  font-size:10.5px;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--muted);
  margin:16px 0 6px;
  padding-top:14px;
  border-top:1px dashed var(--border);
}
.docs-sidebar h5:first-child{ margin-top:0; padding-top:0; border-top:0; }
.docs-sidebar a{
  display:block;
  padding:6px 10px;
  border-radius:6px;
  font-size:12.5px;
  color:var(--ink-2);
  font-weight:500;
  transition:all .15s;
}
.docs-sidebar a:hover{ background:var(--brand-soft); color:var(--brand); }
.docs-content{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--r-md);
  padding:32px 36px;
}
.docs-section{ margin-bottom:36px; }
.docs-section h2{
  font-size:22px;
  margin-bottom:12px;
  padding-bottom:8px;
  border-bottom:1px solid var(--border);
}
.docs-section p{
  font-size:14px;
  color:var(--ink-2);
  line-height:1.6;
  margin:0 0 12px;
}
.endpoint-row{
  display:flex; align-items:center; gap:10px;
  background:var(--surface-2);
  border:1px solid var(--border);
  border-radius:8px;
  padding:8px 14px;
  margin:14px 0;
  font-family:'JetBrains Mono', monospace;
  font-size:13px;
  color:var(--ink);
  flex-wrap:wrap;
}
.endpoint-row .method{
  font-weight:800;
  padding:3px 9px;
  border-radius:5px;
  font-size:10.5px;
  letter-spacing:.04em;
}
.endpoint-row .method.get{ background:var(--info-soft); color:var(--info); }
.endpoint-row .method.post{ background:var(--success-soft); color:var(--success); }
.endpoint-row .method.delete{ background:var(--error-soft); color:var(--error); }
.code-block{
  background:#1a1610;
  color:#fff1e2;
  border-radius:10px;
  padding:18px 22px;
  font-family:'JetBrains Mono', monospace;
  font-size:12.5px;
  overflow-x:auto;
  border:1px solid #322216;
  margin:14px 0;
  position:relative;
  line-height:1.7;
  white-space:pre;
}
.code-block::before{
  content:attr(data-lang);
  position:absolute;
  top:8px; right:14px;
  font-size:9.5px;
  color:#a99a8c;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.code-block .key{ color:#fbbf24; }
.code-block .str{ color:#86efac; }
.code-block .num{ color:#a78bfa; }
.code-block .com{ color:#7a6e63; font-style:italic; }

/* ======= MARKETING GUIDE ======= */
.guide-layout{
  display:grid;
  grid-template-columns:260px 1fr;
  gap:32px;
  align-items:start;
}
.guide-toc{
  position:sticky;
  top:90px;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--r-md);
  padding:20px;
  max-height:calc(100vh - 110px);
  overflow-y:auto;
}
.guide-toc h5{
  font-size:10.5px;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:14px;
}
.guide-toc ol{
  list-style:none;
  padding:0; margin:0;
  counter-reset:c;
}
.guide-toc ol li{
  counter-increment:c;
  margin-bottom:6px;
}
.guide-toc ol li a{
  display:flex; gap:9px;
  color:var(--ink-2);
  font-size:12.5px;
  font-weight:500;
  padding:5px 8px;
  border-radius:6px;
  transition:all .15s;
}
.guide-toc ol li a::before{
  content:counter(c, decimal-leading-zero);
  color:var(--brand);
  font-weight:800;
  font-family:var(--ff-display);
  flex-shrink:0;
}
.guide-toc ol li a:hover{ background:var(--brand-soft); color:var(--brand); }

.guide-chapter{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--r-md);
  padding:30px 36px;
  margin-bottom:20px;
}
.chapter-num{
  display:inline-block;
  font-family:var(--ff-display);
  font-weight:800; font-size:11px;
  color:var(--brand);
  letter-spacing:.08em;
  margin-bottom:6px;
  text-transform:uppercase;
}
.guide-chapter h2{
  font-size:22px;
  margin-bottom:14px;
}
.guide-chapter p{
  font-size:14px;
  color:var(--ink-2);
  line-height:1.7;
  margin:0 0 14px;
}
.guide-chapter h3{
  font-size:15px;
  margin:20px 0 10px;
}
.guide-chapter ul{
  font-size:13.5px;
  color:var(--ink-2);
  line-height:1.7;
  list-style:none;
  padding:0;
  margin:0 0 14px;
}
.guide-chapter ul li{
  position:relative;
  padding-left:22px;
  margin-bottom:7px;
}
.guide-chapter ul li::before{
  content:"\f00c";
  font-family:"Font Awesome 6 Free";
  font-weight:900;
  position:absolute;
  left:0; top:4px;
  color:var(--success);
  font-size:11px;
}
.pro-tip{
  background:linear-gradient(135deg, var(--brand-soft), var(--surface));
  border:1px solid var(--brand-soft-2);
  border-left:3px solid var(--brand);
  border-radius:8px;
  padding:14px 18px;
  margin:18px 0;
  display:flex; gap:12px;
  align-items:flex-start;
}
.pro-tip > i{
  color:var(--brand);
  font-size:18px;
  flex-shrink:0;
  margin-top:2px;
}
.pro-tip strong{ color:var(--ink); display:block; margin-bottom:3px; font-size:13px; }
.pro-tip span{ font-size:13px; color:var(--ink-2); line-height:1.5; }

/* ======= WEBINARS ======= */
.webinar-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:22px;
}
.webinar-card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--r-lg);
  overflow:hidden;
  transition:transform .2s, box-shadow .2s, border-color .2s;
}
.webinar-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-lg);
  border-color:var(--brand);
}
.webinar-cover{
  height:160px;
  position:relative;
  display:flex; align-items:center; justify-content:center;
  color:#fff;
  font-size:48px;
}
.webinar-cover .pill{
  position:absolute;
  top:14px; left:14px;
  padding:3px 10px;
  border-radius:var(--r-pill);
  font-size:10.5px;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
  display:inline-flex; align-items:center; gap:5px;
  color:#fff;
}
.pill-upcoming{ background:var(--success); }
.pill-live{ background:#ef4444; }
.pill-recorded{ background:rgba(0,0,0,0.55); backdrop-filter:blur(6px); }
.pill .dot{
  width:6px; height:6px; border-radius:50%;
  background:#fff;
  animation:pulse 1.6s infinite;
}
.webinar-body{ padding:22px 24px; }
.webinar-body h4{
  font-size:16px;
  margin-bottom:8px;
  line-height:1.3;
}
.webinar-meta{
  display:flex; gap:14px;
  font-size:12px;
  color:var(--muted);
  margin-bottom:14px;
  flex-wrap:wrap;
}
.webinar-meta span i{ color:var(--brand); margin-right:5px; font-size:11px; }
.webinar-host{
  display:flex; align-items:center; gap:10px;
  padding-top:12px;
  border-top:1px dashed var(--border);
}
.webinar-host .avatar{
  width:34px; height:34px;
  border-radius:50%;
  background:var(--grad-brand);
  color:#fff;
  display:inline-flex; align-items:center; justify-content:center;
  font-weight:800;
  font-size:13px;
  flex-shrink:0;
}
.webinar-host .info{ flex:1; min-width:0; }
.webinar-host .info strong{ display:block; font-size:13px; color:var(--ink); }
.webinar-host .info small{ font-size:11px; color:var(--muted); }
.webinar-host .btn{ padding:6px 14px; font-size:11.5px; }

/* ======= LEGAL PAGES ======= */
.legal-layout{
  display:grid;
  grid-template-columns:240px 1fr;
  gap:32px;
  align-items:start;
}
.legal-toc{
  position:sticky;
  top:90px;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--r-md);
  padding:18px;
  max-height:calc(100vh - 110px);
  overflow-y:auto;
}
.legal-toc h5{
  font-size:10.5px;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:14px;
}
.legal-toc ol{
  list-style:none;
  counter-reset:t;
  padding:0; margin:0;
  display:flex; flex-direction:column;
  gap:5px;
}
.legal-toc ol li{
  counter-increment:t;
  font-size:12px;
}
.legal-toc ol li a{
  display:flex; gap:8px;
  padding:5px 8px;
  border-radius:6px;
  color:var(--ink-2);
  font-weight:500;
  transition:all .15s;
}
.legal-toc ol li a::before{
  content:counter(t) ".";
  color:var(--brand);
  font-weight:800;
  flex-shrink:0;
  font-family:var(--ff-display);
}
.legal-toc ol li a:hover{ background:var(--brand-soft); color:var(--brand); }
.legal-content{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--r-md);
  padding:34px 40px;
}
.legal-meta{
  padding:14px 18px;
  background:var(--surface-2);
  border-radius:var(--r-md);
  margin-bottom:24px;
  display:flex; justify-content:space-between;
  flex-wrap:wrap;
  gap:12px;
  font-size:12px;
  color:var(--muted);
}
.legal-meta strong{ color:var(--ink); }
.legal-content h2{
  font-size:19px;
  margin:28px 0 10px;
  display:flex; align-items:center; gap:10px;
}
.legal-content h2:first-of-type{ margin-top:0; }
.legal-content h2 .num{
  background:var(--grad-brand);
  color:#fff;
  width:28px; height:28px;
  border-radius:50%;
  display:inline-flex; align-items:center; justify-content:center;
  font-size:12px;
  font-weight:800;
  flex-shrink:0;
}
.legal-content h3{
  font-size:14px;
  margin:18px 0 8px;
  color:var(--ink);
}
.legal-content p{
  font-size:13.5px;
  color:var(--ink-2);
  line-height:1.7;
  margin:0 0 10px;
}
.legal-content ul{
  font-size:13.5px;
  color:var(--ink-2);
  line-height:1.7;
  padding-left:18px;
  margin:0 0 12px;
}
.legal-content ul li{ margin-bottom:4px; }
.legal-content strong{ color:var(--ink); }

/* ======= SECTION HEAD (sub-pages variant) ======= */
.subhead{
  display:flex; justify-content:space-between;
  align-items:flex-end;
  gap:16px;
  margin-bottom:22px;
  padding-bottom:14px;
  border-bottom:2px solid var(--border);
  flex-wrap:wrap;
}
.subhead h2{
  font-size:22px;
  display:flex; align-items:center; gap:9px;
}
.subhead h2 i{ color:var(--brand); }
.subhead .sub-count{
  font-size:12px;
  color:var(--muted);
  font-weight:600;
}

@media (max-width: 900px){
  .legal-layout, .guide-layout, .docs-layout{ grid-template-columns:1fr; }
  .legal-toc, .guide-toc, .docs-sidebar{ position:static; max-height:none; }
  .featured-article{ grid-template-columns:1fr; }
  .featured-article .article-cover{ min-height:200px; font-size:60px; }
  .article-grid{ grid-template-columns:1fr; }
  .webinar-grid{ grid-template-columns:1fr; }
  .docs-content, .legal-content, .guide-chapter{ padding:24px 22px; }
}

/* ====================================================================
   TESTIMONIALS
==================================================================== */
.testimonials{ background:var(--bg); }

.testi-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
}
.testi-card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--r-lg);
  padding:28px;
  position:relative;
  transition:transform .25s, box-shadow .25s, border-color .25s;
}
.testi-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-lg);
  border-color:var(--brand);
}
.testi-head{
  display:flex; align-items:center; gap:12px;
  margin-bottom:16px;
  position:relative;
}
.testi-avatar{
  width:52px; height:52px;
  border-radius:50%;
  object-fit:cover;
  border:3px solid var(--brand-soft);
}
.testi-head h4{
  font-size:14.5px;
  margin-bottom:2px;
}
.testi-head span{
  font-size:11.5px;
  color:var(--muted);
}
.testi-quote-ico{
  position:absolute;
  top:-6px; right:-6px;
  width:36px; height:36px;
  background:var(--brand-soft);
  color:var(--brand);
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
}
.testi-text{
  font-size:13.5px;
  color:var(--ink-2);
  line-height:1.6;
  margin:0 0 18px;
  font-style:italic;
  position:relative;
}
.testi-foot{
  display:flex; justify-content:space-between;
  align-items:center;
  gap:10px;
  padding-top:14px;
  border-top:1px dashed var(--border);
}
.testi-stat span{
  display:block;
  font-size:10.5px;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.04em;
  font-weight:700;
}
.testi-stat strong{
  font-family:var(--ff-display);
  font-weight:800;
  font-size:18px;
  color:var(--brand);
}
.testi-tier{
  display:inline-flex; align-items:center; gap:5px;
  font-size:10.5px;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
  padding:5px 10px;
  border-radius:var(--r-pill);
}
.testi-tier.gold{ background:linear-gradient(135deg, #ffd700, #d4a017); color:#fff; }
.testi-tier.platinum{ background:linear-gradient(135deg, #e5e4e2, #a8a9ad); color:#fff; }
.testi-tier.silver{ background:linear-gradient(135deg, #c0c0c0, #808080); color:#fff; }

/* ====================================================================
   FAQ
==================================================================== */
.faq{ background:var(--surface-2); }
.faq-wrap{
  display:grid;
  grid-template-columns:1fr 1.5fr;
  gap:48px;
  align-items:start;
}
.faq-side{ position:sticky; top:100px; }
.faq-side .section-title{ font-size:30px; text-align:left; margin-bottom:14px; }
.faq-side .section-sub{ text-align:left; margin-bottom:24px; }

.faq-list{
  display:flex; flex-direction:column;
  gap:10px;
}
.faq-item{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--r-md);
  overflow:hidden;
  transition:border-color .2s, box-shadow .2s;
}
.faq-item:hover{
  border-color:var(--brand);
}
.faq-item[open]{
  border-color:var(--brand);
  box-shadow:var(--shadow-sm);
}
.faq-item summary{
  cursor:pointer;
  padding:18px 22px;
  display:flex; justify-content:space-between;
  align-items:center;
  gap:14px;
  list-style:none;
  font-family:var(--ff-display);
  font-weight:700;
  font-size:14.5px;
  color:var(--ink);
  user-select:none;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary i{
  width:28px; height:28px;
  background:var(--brand-soft);
  color:var(--brand);
  border-radius:50%;
  display:inline-flex;
  align-items:center; justify-content:center;
  font-size:11px;
  transition:transform .25s;
  flex-shrink:0;
}
.faq-item[open] summary i{
  transform:rotate(45deg);
  background:var(--brand);
  color:#fff;
}
.faq-item p{
  padding:0 22px 20px;
  margin:0;
  color:var(--muted);
  font-size:13.5px;
  line-height:1.6;
}

/* ====================================================================
   JOIN FORM
==================================================================== */
.join{
  background:linear-gradient(135deg, var(--brand-3), var(--brand-2), var(--brand));
  color:#fff;
  position:relative;
  overflow:hidden;
}
.join::before{
  content:"";
  position:absolute; inset:0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.10) 1px, transparent 2px),
    radial-gradient(circle at 70% 70%, rgba(255,255,255,.08) 1px, transparent 2px);
  background-size:60px 60px;
  opacity:.6;
  pointer-events:none;
}

.join-wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:start;
  position:relative;
  z-index:1;
}
.join-info{
  color:#fff;
}
.join-title{
  color:#fff;
  font-size:clamp(28px, 4vw, 40px);
  line-height:1.15;
  margin-bottom:14px;
}
.join-title .grad-text{
  background:linear-gradient(135deg, #fff, #ffd9c4);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
}
.join-sub{
  font-size:15px;
  opacity:.92;
  margin:0 0 26px;
}
.join-perks{
  list-style:none;
  margin:0 0 30px;
  padding:0;
  display:flex; flex-direction:column;
  gap:10px;
}
.join-perks li{
  display:flex; align-items:center; gap:10px;
  font-size:13.5px;
  font-weight:500;
  color:rgba(255,255,255,.95);
}
.join-perks li i{ color:#86efac; font-size:13px; }

.join-stat-line{
  display:flex; align-items:center; gap:18px;
  padding:18px 22px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.20);
  border-radius:var(--r-md);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  flex-wrap:wrap;
}
.join-stat-line strong{
  display:block;
  font-family:var(--ff-display);
  font-weight:800;
  font-size:20px;
}
.join-stat-line small{
  font-size:11.5px;
  opacity:.85;
}
.join-stat-line .stars i{ color:#fbbf24; font-size:11px; }
.join-divider{
  width:1px; height:32px;
  background:rgba(255,255,255,.30);
}

/* Form */
.join-form{
  background:var(--surface);
  color:var(--ink);
  border-radius:var(--r-xl);
  padding:32px;
  box-shadow:var(--shadow-xl);
}
.form-head{
  margin-bottom:24px;
  padding-bottom:18px;
  border-bottom:1px solid var(--border);
}
.form-head h3{
  font-size:20px;
  margin-bottom:4px;
}
.form-head p{
  font-size:13px;
  color:var(--muted);
  margin:0;
}
.form-row{
  display:grid;
  gap:14px;
  margin-bottom:14px;
}
.form-row.two{ grid-template-columns:1fr 1fr; }
.form-field{ display:flex; flex-direction:column; gap:6px; }
.form-field label{
  font-size:11.5px;
  font-weight:700;
  color:var(--ink-2);
  letter-spacing:.04em;
  text-transform:uppercase;
}
.form-field label .req{ color:var(--error); }
.form-field input,
.form-field select,
.form-field textarea{
  background:var(--surface-2);
  border:1.5px solid var(--border);
  color:var(--ink);
  border-radius:10px;
  padding:10px 14px;
  font-size:14px;
  font-family:var(--ff-body);
  outline:none;
  transition:all .15s;
  width:100%;
}
.form-field select{
  appearance:none;
  cursor:pointer;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%237a6e63' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 14px center;
  padding-right:36px;
}
.form-field textarea{ resize:vertical; min-height:80px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus{
  border-color:var(--brand);
  background:var(--surface);
  box-shadow:0 0 0 3px var(--brand-glow);
}

.form-check{
  display:flex; align-items:flex-start; gap:9px;
  font-size:12.5px;
  color:var(--muted);
  margin:18px 0;
  cursor:pointer;
  line-height:1.5;
}
.form-check input{
  width:16px; height:16px;
  margin-top:3px;
  accent-color:var(--brand);
  cursor:pointer;
  flex-shrink:0;
}
.form-check a{ font-weight:600; }

.form-footer{
  display:block;
  margin-top:14px;
  font-size:11.5px;
  color:var(--muted);
  text-align:center;
}

/* ====================================================================
   FOOTER
==================================================================== */
.site-footer{
  background:var(--surface-2);
  border-top:1px solid var(--border);
  padding:64px 0 0;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr 1fr 1.4fr;
  gap:40px;
  margin-bottom:48px;
}
.footer-brand{ max-width:300px; }
.footer-about{
  color:var(--muted);
  font-size:13px;
  line-height:1.6;
  margin:16px 0 18px;
}
.socials{
  display:flex; gap:8px;
}
.socials a{
  width:36px; height:36px;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:var(--ink-2);
  transition:all .15s;
  font-size:13px;
}
.socials a:hover{
  background:var(--brand);
  color:#fff;
  border-color:var(--brand);
  transform:translateY(-2px);
}

.footer-col{
  display:flex; flex-direction:column;
  gap:9px;
}
.footer-col h5{
  font-size:13px;
  margin-bottom:6px;
  text-transform:uppercase;
  letter-spacing:.04em;
  color:var(--ink);
}
.footer-col a{
  font-size:13px;
  color:var(--muted);
  font-weight:500;
  transition:color .15s;
}
.footer-col a:hover{ color:var(--brand); }

.footer-news p{
  font-size:12.5px;
  color:var(--muted);
  margin:0 0 12px;
  line-height:1.5;
}
.newsletter{
  display:flex;
  background:var(--surface);
  border:1.5px solid var(--border);
  border-radius:10px;
  overflow:hidden;
  transition:all .15s;
}
.newsletter:focus-within{
  border-color:var(--brand);
  box-shadow:0 0 0 3px var(--brand-glow);
}
.newsletter input{
  flex:1;
  background:transparent;
  border:0;
  outline:none;
  padding:9px 12px;
  font-size:13px;
  color:var(--ink);
  font-family:var(--ff-body);
}
.newsletter input::placeholder{ color:var(--muted); }
.newsletter button{
  background:var(--grad-brand);
  border:0;
  color:#fff;
  padding:0 14px;
  font-size:13px;
  cursor:pointer;
  transition:filter .15s;
}
.newsletter button:hover{ filter:brightness(1.1); }

.footer-bottom{
  border-top:1px solid var(--border);
  padding:20px 0;
  background:var(--bg);
}
.footer-bottom-inner{
  display:flex; justify-content:space-between;
  align-items:center;
  gap:20px;
  font-size:12.5px;
  color:var(--muted);
  flex-wrap:wrap;
}

/* ====================================================================
   TOAST
==================================================================== */
.toast-container{
  position:fixed;
  bottom:24px; right:24px;
  z-index:1200;
  display:flex; flex-direction:column;
  gap:8px;
}
.toast{
  background:var(--ink);
  color:var(--bg);
  padding:14px 20px;
  border-radius:12px;
  font-size:13.5px;
  font-weight:500;
  box-shadow:var(--shadow-lg);
  display:flex; align-items:center; gap:12px;
  min-width:280px;
  animation:toastIn .3s ease-out;
}
.toast.success i{ color:var(--success); }
.toast.info i{ color:var(--info); }
.toast.error i{ color:var(--error); }
.toast strong{ color:#fff; }
@keyframes toastIn{
  from{ opacity:0; transform:translateX(20px); }
  to{ opacity:1; transform:translateX(0); }
}
.toast.out{ animation:toastOut .25s ease-in forwards; }
@keyframes toastOut{ to{ opacity:0; transform:translateX(20px); } }

/* ====================================================================
   BACK TO TOP
==================================================================== */
.back-top{
  position:fixed;
  bottom:24px; right:24px;
  width:44px; height:44px;
  background:var(--grad-brand);
  color:#fff;
  border:0;
  border-radius:50%;
  font-size:14px;
  display:none;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow:0 8px 20px var(--brand-glow);
  z-index:40;
  transition:all .2s;
  opacity:0;
  transform:translateY(20px);
}
.back-top.show{
  display:inline-flex;
  opacity:1;
  transform:translateY(0);
}
.back-top:hover{ transform:translateY(-3px); box-shadow:0 12px 26px var(--brand-glow); }

/* ====================================================================
   ANIMATIONS
==================================================================== */
[data-anim]{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .7s ease, transform .7s ease;
}
[data-anim].in{
  opacity:1;
  transform:translateY(0);
}

/* ====================================================================
   RESPONSIVE
==================================================================== */
@media (max-width: 1024px){
  .main-nav{ display:none; }
  .main-nav.open{
    display:flex;
    flex-direction:column;
    position:absolute;
    top:100%;
    left:0; right:0;
    background:var(--surface);
    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);
    padding:16px 24px;
    gap:4px;
    box-shadow:var(--shadow);
  }
  .main-nav.open .nav-link{ padding:12px 14px; }
  .mobile-toggle{ display:inline-flex; }
  .btn-login{ display:none; }

  .hero-inner{ grid-template-columns:1fr; gap:40px; }
  .hero-visual{ height:480px; max-width:500px; margin:0 auto; }

  .benefit-grid{ grid-template-columns:repeat(2, 1fr); }
  .steps-grid{ flex-direction:column; }
  .step-arrow{ transform:rotate(90deg); margin:0 auto; }
  .step-arrow i{ font-size:18px; }

  .tier-grid{ grid-template-columns:repeat(2, 1fr); }
  .calc-wrap{ grid-template-columns:1fr; padding:28px; }
  .testi-grid{ grid-template-columns:1fr; max-width:560px; margin:0 auto; }
  .faq-wrap{ grid-template-columns:1fr; }
  .faq-side{ position:static; }
  .join-wrap{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:repeat(2, 1fr); }
}

@media (max-width: 720px){
  .container{ padding:0 18px; }
  .section{ padding:60px 0; }
  .section-head{ margin-bottom:40px; }

  .header-inner{ padding:10px 18px; }
  .brand-text{ display:none; }

  .hero{ padding:60px 0 90px; }
  .hero-title{ font-size:34px; }
  .hero-sub{ font-size:15px; }
  .hero-cta .btn{ flex:1; min-width:160px; }
  .hero-visual{ height:420px; }
  .float-main{ left:10px; right:10px; }
  .float-clicks{ right:-10px; }
  .float-conv{ left:-10px; }

  .trust-grid{ grid-template-columns:repeat(2, 1fr); gap:24px; }
  .benefit-grid{ grid-template-columns:1fr; }
  .tier-grid{ grid-template-columns:1fr; }
  .form-row.two{ grid-template-columns:1fr; }
  .join-form{ padding:24px 22px; }

  .footer-grid{ grid-template-columns:1fr; gap:28px; margin-bottom:30px; }
  .footer-bottom-inner{ flex-direction:column; gap:6px; text-align:center; }

  .calc-result-card{ padding:24px 22px; }
  .cr-value{ font-size:24px; }
}

@media (max-width: 480px){
  .hero-title{ font-size:30px; }
  .section-title{ font-size:26px; }
  .float-clicks, .float-conv, .float-payout{
    transform:scale(.85);
  }
}

@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{
    animation-duration:.01ms !important;
    transition-duration:.01ms !important;
  }
}
