:root{
  --bg:#050d18;
  --bg2:#081526;
  --panel:#0b1b2f;
  --panel2:#0d2038;
  --line:rgba(212,168,75,.18);
  --line2:rgba(255,255,255,.08);
  --gold:#d4a84b;
  --gold2:#f2c766;
  --green:#20d07a;
  --red:#ff5b5b;
  --text:#f6f2e9;
  --muted:#9fb0c3;
  --muted2:#6f8298;
  --shadow:0 25px 80px rgba(0,0,0,.35);
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.65;
  overflow-x:hidden;
}
a{color:inherit}
img{max-width:100%;display:block}
.container{width:min(1240px,calc(100% - 36px));margin:auto}
.gold{color:var(--gold)}
.section-pad{padding:78px 0}
.eyebrow{font-size:12px;letter-spacing:.14em;text-transform:uppercase;font-weight:800;color:var(--gold);margin-bottom:10px}
h1,h2,h3{font-family:Manrope,Inter,sans-serif;line-height:1.05}
h2{font-size:clamp(32px,4vw,52px);font-weight:700}
p{color:var(--muted)}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  height:48px;padding:0 24px;border-radius:6px;
  font-size:13px;font-weight:800;letter-spacing:.04em;text-transform:uppercase;
  text-decoration:none;border:1px solid transparent;transition:.2s ease;cursor:pointer;
}
.btn-primary{background:var(--gold);color:#06101c;box-shadow:0 10px 30px rgba(212,168,75,.18)}
.btn-primary:hover{background:var(--gold2);transform:translateY(-2px)}
.btn-outline{border-color:rgba(212,168,75,.55);color:var(--text);background:rgba(5,13,24,.35)}
.btn-outline:hover{border-color:var(--gold);background:rgba(212,168,75,.08);transform:translateY(-2px)}
.card{
  background:linear-gradient(180deg,rgba(15,34,58,.88),rgba(7,18,32,.88));
  border:1px solid var(--line);
  border-radius:12px;
  box-shadow:var(--shadow);
}

/* HEADER */
.site-header{
  position:sticky;top:0;z-index:50;
  background:rgba(5,13,24,.82);
  backdrop-filter:blur(18px);
  border-bottom:1px solid var(--line2);
}
.nav{min-height:92px;padding-top:12px;padding-bottom:12px;display:flex;align-items:center;justify-content:space-between;gap:24px}
.brand{display:flex;align-items:center;gap:12px;text-decoration:none;min-width:210px}
.brand-mark{
  width:43px;height:43px;border:2px solid var(--gold);border-radius:5px;
  display:grid;place-items:center;font-family:Manrope,Inter,sans-serif;
  font-weight:800;font-size:29px;color:var(--gold);line-height:1
}
.brand-text{font-family:Manrope,Inter,sans-serif;font-size:25px;font-weight:700;letter-spacing:.03em}
.brand-text span{display:block;font-family:Inter,sans-serif;font-size:9px;letter-spacing:.28em;color:var(--muted);margin-top:-4px;text-transform:uppercase}
.nav-links{display:flex;align-items:center;gap:8px;list-style:none}
.nav-links a{
  text-decoration:none;font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.045em;
  color:#d8e1ec;padding:34px 12px;position:relative
}
.nav-links a:hover,.nav-links a.active{color:var(--gold)}
.nav-links a.active:after{
  content:"";position:absolute;left:12px;right:12px;bottom:25px;height:2px;background:var(--gold)
}

.nav-links li{position:relative}
.nav-dropdown > a{display:inline-flex;align-items:center;gap:6px}
.nav-dropdown > a:after{content:"▾";font-size:10px;color:var(--gold);margin-left:2px}
.dropdown-menu{
  position:absolute;top:100%;left:0;min-width:230px;padding:10px;
  background:rgba(6,17,31,.98);border:1px solid var(--line);border-radius:10px;
  box-shadow:var(--shadow);opacity:0;visibility:hidden;transform:translateY(10px);transition:.18s ease;
}
.dropdown-menu a{display:block;padding:12px 12px!important;border-radius:7px;color:#d8e1ec!important;white-space:nowrap}
.dropdown-menu a:hover{background:rgba(212,168,75,.08);color:var(--gold)!important}
.nav-dropdown:hover .dropdown-menu{opacity:1;visibility:visible;transform:translateY(0)}

.nav-actions{display:flex;align-items:center;gap:16px}
.login{font-size:12px;font-weight:800;text-decoration:none;color:#fff;text-transform:uppercase}
.hamburger{display:none;background:none;border:0;cursor:pointer}
.hamburger span{display:block;width:26px;height:2px;background:var(--gold);margin:6px 0}

/* HERO */
.hero{
  position:relative;min-height:880px;display:flex;align-items:center;
  background:
    linear-gradient(90deg,rgba(5,13,24,.96) 0%,rgba(5,13,24,.88) 30%,rgba(5,13,24,.48) 55%,rgba(5,13,24,.58) 100%),
    radial-gradient(circle at 18% 48%,rgba(212,168,75,.13),transparent 34%),
    url("../images/hero-miami.jpg");
  background-size:cover;
  background-position:center center;
  border-bottom:1px solid var(--line2);
  overflow:hidden;
}
.hero:before{
  content:"";position:absolute;inset:0;pointer-events:none;
  background-image:
    linear-gradient(rgba(212,168,75,.035) 1px,transparent 1px),
    linear-gradient(90deg,rgba(212,168,75,.035) 1px,transparent 1px);
  background-size:58px 58px;opacity:.55;mask-image:linear-gradient(90deg,#000,transparent 82%);
}
.hero:after{
  content:"";position:absolute;left:0;right:0;bottom:0;height:160px;
  background:linear-gradient(180deg,transparent,var(--bg));
}
.hero-inner{
  position:relative;z-index:2;display:grid;grid-template-columns:minmax(0,1.05fr) 420px;gap:50px;align-items:center;
  padding:70px 0 86px
}
.hero h1{font-size:clamp(44px,5vw,78px);max-width:710px}
.hero h1 .gold{display:block}
.hero-sub{max-width:610px;font-size:18px;margin:24px 0 28px;color:#d4deea}
.hero-buttons{display:flex;gap:16px;flex-wrap:wrap;margin-bottom:24px}
.trust-mini{display:flex;align-items:center;gap:12px;flex-wrap:wrap;font-size:13px;color:#d4deea}
.tp-boxes{display:flex;gap:3px}
.tp-boxes span{background:#00b67a;color:white;font-size:11px;width:19px;height:19px;display:grid;place-items:center;font-weight:900}
.stat-panel{padding:26px;background:rgba(6,17,31,.78);backdrop-filter:blur(18px);border:1px solid rgba(212,168,75,.23);border-radius:12px}
.stat-row{display:flex;gap:18px;align-items:center;padding:20px 0;border-bottom:1px solid var(--line2)}
.stat-row:first-child{padding-top:0}.stat-row:last-child{border-bottom:0;padding-bottom:0}
.icon{
  width:44px;height:44px;border-radius:10px;display:grid;place-items:center;
  border:1px solid rgba(212,168,75,.32);background:linear-gradient(145deg,rgba(212,168,75,.13),rgba(255,255,255,.025));color:var(--gold);flex:0 0 44px;box-shadow:inset 0 1px 0 rgba(255,255,255,.06),0 12px 28px rgba(0,0,0,.18)
}
.icon svg{width:25px;height:25px;stroke:currentColor;fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}

/* Custom CSS icons — no emoji/icon libraries */
.icon svg{display:none}
.css-icon,.feature-icon{position:relative;display:inline-block;width:30px;height:30px;color:var(--gold)}
.css-icon:before,.css-icon:after,.feature-icon:before,.feature-icon:after{content:"";position:absolute;box-sizing:border-box}
.i-shield:before{left:5px;top:2px;width:20px;height:24px;border:2px solid currentColor;border-radius:10px 10px 14px 14px;clip-path:polygon(50% 0,100% 18%,100% 58%,50% 100%,0 58%,0 18%)}
.i-shield:after{left:11px;top:11px;width:10px;height:6px;border-left:2px solid currentColor;border-bottom:2px solid currentColor;transform:rotate(-45deg)}
.i-accounts:before{left:9px;top:3px;width:12px;height:12px;border:2px solid currentColor;border-radius:50%}.i-accounts:after{left:3px;bottom:2px;width:24px;height:13px;border:2px solid currentColor;border-top-left-radius:14px;border-top-right-radius:14px;border-bottom:0}.i-accounts{filter:drop-shadow(0 0 8px rgba(212,168,75,.16))}
.i-growth:before{left:3px;bottom:4px;width:24px;height:18px;border-left:2px solid currentColor;border-bottom:2px solid currentColor}.i-growth:after{left:8px;top:7px;width:18px;height:14px;border-top:2px solid currentColor;border-right:2px solid currentColor;transform:skew(-22deg) rotate(-12deg)}
.i-percent:before{left:4px;top:14px;width:23px;height:2px;background:currentColor;transform:rotate(-45deg);border-radius:2px}.i-percent:after{left:4px;top:4px;width:8px;height:8px;border:2px solid currentColor;border-radius:50%;box-shadow:15px 15px 0 -2px transparent,15px 15px 0 0 currentColor}.i-percent span{position:absolute;right:3px;bottom:3px;width:8px;height:8px;border:2px solid currentColor;border-radius:50%}
.i-user:before{left:9px;top:3px;width:12px;height:12px;border:2px solid currentColor;border-radius:50%}.i-user:after{left:4px;bottom:3px;width:22px;height:12px;border:2px solid currentColor;border-top-left-radius:14px;border-top-right-radius:14px;border-bottom:0}
.i-doc:before{left:6px;top:2px;width:18px;height:25px;border:2px solid currentColor;border-radius:3px}.i-doc:after{left:11px;top:16px;width:10px;height:6px;border-left:2px solid currentColor;border-bottom:2px solid currentColor;transform:rotate(-45deg)}
.i-bars:before{left:5px;bottom:4px;width:4px;height:10px;background:currentColor;box-shadow:8px -5px 0 currentColor,16px -11px 0 currentColor;border-radius:2px}.i-bars:after{left:4px;bottom:4px;width:23px;height:19px;border-left:2px solid currentColor;border-bottom:2px solid currentColor}
.i-dollar:before{left:5px;top:5px;width:20px;height:20px;border:2px solid currentColor;border-radius:50%}.i-dollar:after{left:14px;top:7px;width:2px;height:16px;background:currentColor;box-shadow:-4px 3px 0 -1px currentColor,4px 10px 0 -1px currentColor}
.i-trophy:before{left:8px;top:4px;width:14px;height:14px;border:2px solid currentColor;border-radius:3px 3px 8px 8px}.i-trophy:after{left:12px;top:18px;width:6px;height:8px;background:currentColor;box-shadow:-5px 8px 0 -1px currentColor,5px 8px 0 -1px currentColor}
.i-building:before{left:5px;top:8px;width:20px;height:18px;border:2px solid currentColor;border-bottom-width:3px}.i-building:after{left:10px;top:3px;width:10px;height:7px;border:2px solid currentColor;border-bottom:0;transform:perspective(10px) rotateX(25deg)}
.i-lock:before{left:6px;top:12px;width:18px;height:14px;border:2px solid currentColor;border-radius:3px}.i-lock:after{left:10px;top:4px;width:10px;height:11px;border:2px solid currentColor;border-bottom:0;border-radius:12px 12px 0 0}
.i-master:before{left:4px;top:8px;width:22px;height:15px;border:2px solid currentColor;border-radius:10px}.i-master:after{left:10px;top:3px;width:10px;height:10px;border:2px solid currentColor;border-radius:50%;box-shadow:-7px 6px 0 -3px currentColor,7px 6px 0 -3px currentColor}
.i-bank:before{left:3px;top:9px;width:24px;height:3px;background:currentColor;box-shadow:0 15px 0 currentColor}.i-bank:after{left:6px;top:13px;width:3px;height:11px;background:currentColor;box-shadow:7px 0 0 currentColor,14px 0 0 currentColor}
.i-check:before{left:2px;top:2px;width:26px;height:26px;border:2px solid currentColor;border-radius:8px}.i-check:after{left:8px;top:14px;width:12px;height:7px;border-left:3px solid var(--green);border-bottom:3px solid var(--green);transform:rotate(-45deg)}
.i-target:before{left:4px;top:4px;width:22px;height:22px;border:2px solid currentColor;border-radius:50%;box-shadow:inset 0 0 0 6px rgba(212,168,75,.12)}.i-target:after{left:13px;top:1px;width:4px;height:28px;background:currentColor;transform:rotate(45deg);border-radius:3px}
.i-news:before{left:5px;top:5px;width:20px;height:20px;border:2px solid currentColor;border-radius:3px}.i-news:after{left:9px;top:10px;width:12px;height:2px;background:currentColor;box-shadow:0 5px 0 currentColor,0 10px 0 currentColor}
.i-mountain:before{left:3px;bottom:4px;width:24px;height:18px;background:linear-gradient(135deg,transparent 48%,currentColor 49% 54%,transparent 55%),linear-gradient(45deg,transparent 38%,currentColor 39% 45%,transparent 46%);border-bottom:2px solid currentColor}.i-water:before{left:8px;top:3px;width:14px;height:22px;border:2px solid currentColor;border-radius:12px 12px 14px 14px;transform:rotate(45deg)}.i-eye:before{left:2px;top:8px;width:26px;height:14px;border:2px solid currentColor;border-radius:50%}.i-eye:after{left:11px;top:11px;width:8px;height:8px;background:currentColor;border-radius:50%}.i-none:before{left:5px;top:5px;width:20px;height:20px;border:2px solid currentColor;border-radius:50%}.i-none:after{left:6px;top:14px;width:18px;height:2px;background:currentColor;transform:rotate(45deg)}

.stat-value{font-family:Manrope,Inter,sans-serif;color:var(--gold);font-size:32px;line-height:1;font-weight:700}
.stat-label{font-size:13px;color:#fff;font-weight:700;margin-top:5px}
.stat-sub{font-size:11px;color:var(--muted2)}

/* REVIEWS STRIP */
.reviews-strip{position:relative;margin-top:-52px;z-index:5}
.reviews-box{padding:28px 30px;display:grid;grid-template-columns:1fr 1fr 1fr 220px;gap:28px;align-items:center}
.review-mini{border-right:1px solid var(--line2);padding-right:25px}
.review-mini:nth-child(3){border-right:1px solid var(--line2)}
.stars{color:var(--gold);font-size:18px;letter-spacing:1px;margin-bottom:8px}
.review-mini p{font-size:13px;color:#e1e8ef}.review-mini small{display:block;color:var(--gold);margin-top:10px}
.tp-score{text-align:left}.tp-logo{color:#00b67a;font-weight:800;font-size:13px}.tp-num{font-family:Manrope,Inter,sans-serif;font-size:48px;line-height:1;margin:8px 0}.tp-score a{color:var(--gold);text-decoration:none;font-size:13px;font-weight:700}

/* HOW */
.how-wrap{padding:34px}
.how-title{text-align:center;margin-bottom:28px}
.how-title h2{font-size:30px}
.steps{display:grid;grid-template-columns:repeat(5,1fr);gap:18px}
.step{position:relative;text-align:center;border:1px solid var(--line);background:rgba(255,255,255,.025);border-radius:10px;padding:28px 18px 24px}
.step-num{position:absolute;top:-13px;left:18px;width:26px;height:26px;border-radius:50%;background:var(--gold);color:#07111f;font-size:12px;font-weight:900;display:grid;place-items:center}
.step .icon{margin:0 auto 18px;background:transparent;border-color:rgba(255,255,255,.12);color:#e8eef6}
.step h3{font-family:Inter,sans-serif;font-size:14px;margin-bottom:8px}
.step p{font-size:12px;line-height:1.55}

/* PERFORMANCE */
.performance-grid{display:grid;grid-template-columns:270px 280px 1fr;gap:18px;align-items:stretch}
.perf-copy{padding:30px}
.perf-copy h2{font-size:38px;margin:6px 0 18px}
.perf-summary{padding:24px}
.summary-row{display:flex;justify-content:space-between;border-bottom:1px solid var(--line2);padding:11px 0;font-size:13px;color:var(--muted)}
.summary-row:last-child{border-bottom:0}
.summary-row strong{font-size:16px;color:#fff}
.summary-row .green{color:var(--green)}
.chart-panel{padding:18px}
.chart-head{display:flex;justify-content:space-between;gap:14px;align-items:center;margin-bottom:10px}
.chart-head h3{font-family:Inter,sans-serif;font-size:12px;text-transform:uppercase;letter-spacing:.08em}
.chart-filter{background:rgba(255,255,255,.04);border:1px solid var(--line2);color:var(--muted);border-radius:5px;padding:5px 10px;font-size:11px}
.chart-wrap{height:260px}
.month-strip{margin-top:18px;padding:16px;display:grid;grid-template-columns:repeat(12,1fr);gap:8px}
.month-pill{background:rgba(255,255,255,.03);border:1px solid var(--line2);border-radius:7px;padding:9px;text-align:center;min-height:58px}
.month-pill .m{font-size:10px;color:var(--muted);white-space:nowrap}
.month-pill .v{font-size:14px;font-weight:900;margin-top:5px}
.month-pill.pos .v{color:var(--green)}.month-pill.neg .v{color:var(--red)}
.kpi-row{display:grid;grid-template-columns:repeat(5,1fr);gap:0;margin-top:14px;padding:18px 0}
.kpi{text-align:center;border-right:1px solid var(--line2);display:flex;align-items:center;justify-content:center;gap:14px}
.kpi:last-child{border-right:0}
.kpi .icon{width:38px;height:38px;flex-basis:38px}
.kpi b{font-family:Manrope,Inter,sans-serif;font-size:28px;font-weight:700}.kpi span{display:block;color:var(--muted);font-size:11px;line-height:1.25}
.perf-table-box{margin-top:18px;padding:20px}
.table-top{display:flex;justify-content:space-between;align-items:end;gap:18px;margin-bottom:18px}
.table-top h3{font-family:Manrope,Inter,sans-serif;font-size:28px}
.perf-table-wrap{overflow-x:auto}
.perf-table{width:100%;border-collapse:separate;border-spacing:0 6px;font-size:13px}
.perf-table th{font-size:10px;color:var(--muted);text-transform:uppercase;letter-spacing:.08em;padding:0 10px 6px;text-align:center}
.perf-table th:first-child{text-align:left}
.perf-table td{padding:9px 10px;text-align:center;background:rgba(255,255,255,.035)}
.perf-table td:first-child{text-align:left;border-radius:7px 0 0 7px;color:var(--gold);font-weight:900}
.perf-table td:last-child{border-radius:0 7px 7px 0;font-weight:900}
.cell-pos{color:var(--green)!important;background:rgba(32,208,122,.09)!important;font-weight:900}
.cell-neg{color:var(--red)!important;background:rgba(255,91,91,.09)!important;font-weight:900}
.cell-pos:hover,.cell-neg:hover{transform:scale(1.08);position:relative;z-index:2;border-radius:6px;box-shadow:0 12px 24px rgba(0,0,0,.28)}

/* TRUST CARDS */
.trust-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:20px}
.trust-card{padding:24px;display:flex;gap:18px;align-items:flex-start}
.trust-card h3{font-family:Inter,sans-serif;font-size:17px;margin-bottom:7px}
.trust-card p{font-size:13px}

/* FAQ + FOUNDER */
.lower-grid{display:grid;grid-template-columns:1fr;gap:18px}
.panel{padding:26px}
.faq-item{border-bottom:1px solid var(--line2)}
.faq-q{display:flex;justify-content:space-between;align-items:center;gap:12px;cursor:pointer;padding:14px 0;font-size:13px;font-weight:700}
.faq-a{display:none;color:var(--muted);font-size:13px;padding:0 0 14px}
.faq-item.open .faq-a{display:block}.faq-item.open .plus{transform:rotate(45deg)}
.plus{transition:.2s;color:var(--gold)}
.founder{display:grid;grid-template-columns:180px 1fr;gap:22px;align-items:center}
.founder-photo{
  height:245px;border-radius:8px;background:
  linear-gradient(180deg,rgba(212,168,75,.04),rgba(5,13,24,.88)),
  url("../images/michael-harding.jpg");
  background-size:cover;background-position:center;
  border:1px solid var(--line2)
}
.founder h3{font-size:30px;margin:8px 0 14px}
.founder-list{list-style:none;margin:0 0 16px}
.founder-list li{display:flex;gap:10px;align-items:center;color:var(--muted);font-size:13px;margin:8px 0}
.check-list{display:grid;grid-template-columns:1fr 1fr;gap:18px;margin-top:18px}
.check-box{padding:20px;background:rgba(255,255,255,.03);border:1px solid var(--line2);border-radius:10px}
.check-box h4{font-size:12px;letter-spacing:.08em;text-transform:uppercase;margin-bottom:12px}
.check-box.good h4{color:var(--green)}.check-box.bad h4{color:var(--red)}
.check-box li{list-style:none;margin:10px 0;font-size:13px;color:#dbe6ef}
.check-box.good li:before{content:"✓";color:var(--green);font-weight:900;margin-right:10px}
.check-box.bad li:before{content:"×";color:var(--red);font-weight:900;margin-right:10px}

/* CALCULATOR */
.calc-grid{display:grid;grid-template-columns:360px 1fr;gap:18px;margin-top:24px}
.calc-controls{padding:26px}
.calc-field{margin-bottom:22px}
.calc-field label{display:flex;justify-content:space-between;font-size:11px;text-transform:uppercase;letter-spacing:.08em;color:var(--muted);font-weight:800;margin-bottom:8px}
.calc-field label span{color:var(--gold)}
.calc-input{width:100%;height:44px;border:1px solid var(--line);background:rgba(255,255,255,.04);color:var(--text);border-radius:6px;padding:0 14px;font-weight:800;margin-bottom:10px}
.calc-slider{width:100%;accent-color:var(--gold)}
.calc-results{display:grid;gap:10px;margin-top:14px}
.calc-result{display:flex;justify-content:space-between;align-items:center;background:rgba(255,255,255,.035);border:1px solid var(--line2);padding:12px;border-radius:7px;font-size:12px;color:var(--muted)}
.calc-result b{font-family:Manrope,Inter,sans-serif;color:var(--gold);font-size:20px}
.calc-chart-card{padding:18px}
.calc-chart-wrap{height:355px}
.monthly-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:8px;margin-top:16px;max-height:210px;overflow:auto;padding-right:4px}
.month-cell{border:1px solid rgba(32,208,122,.16);background:rgba(32,208,122,.05);border-radius:7px;padding:8px;text-align:center}
.month-cell-num{font-size:10px;color:var(--muted)}.month-cell-val{font-size:12px;color:var(--green);font-weight:900}.month-cell-bal{font-size:10px;color:var(--muted)}

/* CTA / FOOTER */
.cta{
  position:relative;text-align:center;padding:72px 0;
  background:linear-gradient(180deg,rgba(5,13,24,.2),rgba(5,13,24,.92)),url("../images/city-footer.jpg");
  background-size:cover;background-position:center;border-top:1px solid var(--line2)
}
.cta h2{font-size:46px}.cta p{font-size:17px;margin:10px 0 22px}
.footer{background:#030912;border-top:1px solid var(--line2);padding:28px 0}
.footer-inner{display:flex;align-items:center;justify-content:space-between;gap:20px;flex-wrap:wrap;color:var(--muted);font-size:12px}
.footer-links{display:flex;gap:24px;flex-wrap:wrap}.footer-links a{text-decoration:none;color:var(--muted)}
.disclaimer{font-size:11px;color:#64768a;margin-top:18px;border-top:1px solid var(--line2);padding-top:16px}


/* PROGRAMS + GET STARTED FORM */
.programs-intro{display:grid;grid-template-columns:1fr 1fr;gap:22px;margin-top:28px}
.program-card{padding:30px;position:relative;overflow:hidden}
.program-card:before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 15% 15%,rgba(212,168,75,.13),transparent 34%);pointer-events:none}
.program-card > *{position:relative;z-index:1}
.program-card h3{font-family:Manrope,Inter,sans-serif;font-size:24px;margin:16px 0 10px}
.program-card p{font-size:14px;margin-bottom:18px}
.program-list{list-style:none;display:grid;gap:10px;margin:18px 0 22px}
.program-list li{color:#dbe6ef;font-size:13px;display:flex;gap:10px;align-items:flex-start}
.program-list li:before{content:"✓";color:var(--green);font-weight:900;line-height:1.3}
.program-mini{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:24px}
.program-mini .mini{padding:18px;border:1px solid var(--line2);border-radius:10px;background:rgba(255,255,255,.03)}
.program-mini b{display:block;color:var(--gold);font-size:20px;font-family:Manrope,Inter,sans-serif}.program-mini span{font-size:11px;color:var(--muted);text-transform:uppercase;letter-spacing:.06em}
.get-started-grid{display:grid;grid-template-columns:.8fr 1.2fr;gap:26px;align-items:start;margin-top:24px}
.form-panel{padding:30px}
.form-box{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.form-field{display:flex;flex-direction:column;gap:7px}
.form-field.full{grid-column:1/-1}
.form-field label{font-size:11px;font-weight:900;letter-spacing:.08em;text-transform:uppercase;color:var(--muted)}
.form-field input,.form-field select,.form-field textarea{
  width:100%;border:1px solid var(--line);background:rgba(255,255,255,.045);color:var(--text);
  border-radius:8px;padding:12px 13px;font:600 14px Inter,sans-serif;outline:none;transition:.18s ease
}
.form-field textarea{min-height:110px;resize:vertical}
.form-field input:focus,.form-field select:focus,.form-field textarea:focus{border-color:var(--gold);box-shadow:0 0 0 3px rgba(212,168,75,.08)}
.form-field select option{background:#081526;color:#fff}
.account-toggle{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin:20px 0 22px}
.account-choice input{display:none}.account-choice span{display:block;border:1px solid var(--line2);background:rgba(255,255,255,.035);border-radius:10px;padding:16px;cursor:pointer;transition:.18s ease}
.account-choice b{display:block;color:#fff;margin-bottom:4px}.account-choice small{color:var(--muted)}
.account-choice input:checked + span{border-color:var(--gold);background:rgba(212,168,75,.10);box-shadow:0 12px 30px rgba(0,0,0,.18)}
.conditional{display:none;grid-column:1/-1;grid-template-columns:1fr 1fr;gap:16px;padding-top:4px}.conditional.active{display:grid}
.form-note{font-size:12px;color:var(--muted);border:1px solid var(--line2);border-radius:10px;background:rgba(255,255,255,.025);padding:14px;margin:18px 0}
.form-success{display:none;margin-top:15px;border:1px solid rgba(32,208,122,.25);background:rgba(32,208,122,.08);color:#dfffee;border-radius:10px;padding:14px;font-size:13px}
.process-card{padding:28px}.process-card h3{font-family:Manrope,Inter,sans-serif;font-size:24px;margin-bottom:14px}.process-timeline{display:grid;gap:14px;margin-top:18px}
.timeline-item{display:flex;gap:14px;align-items:flex-start;padding:14px;border:1px solid var(--line2);background:rgba(255,255,255,.025);border-radius:10px}.timeline-num{width:30px;height:30px;border-radius:50%;background:var(--gold);color:#07111f;display:grid;place-items:center;font-weight:900;flex:0 0 30px}.timeline-item b{display:block;color:#fff;font-size:14px}.timeline-item span{display:block;color:var(--muted);font-size:12px;margin-top:2px}

/* MOBILE */
.mobile-nav{display:none;position:fixed;inset:0;background:#050d18;z-index:100;padding:80px 28px}
.mobile-nav.open{display:block}
.mobile-nav a{display:block;text-decoration:none;color:#fff;font-weight:800;text-transform:uppercase;letter-spacing:.04em;border-bottom:1px solid var(--line2);padding:14px 0}
.mobile-close{position:absolute;right:24px;top:20px;background:none;border:0;color:var(--gold);font-size:34px;cursor:pointer}

/* COPY TRADING / RISK / WHY / TRIAL / NEWSLETTER / WHATSAPP */
.split-section{display:grid;grid-template-columns:1.05fr .95fr;gap:54px;align-items:center}
.copy-steps-list{display:flex;flex-direction:column;gap:22px;margin-top:34px}.copy-line{display:grid;grid-template-columns:42px 1fr;gap:16px;align-items:start}.copy-num{width:34px;height:34px;border-radius:50%;background:var(--gold);color:#06101c;display:grid;place-items:center;font-weight:900}.copy-line h3{font-family:Inter,sans-serif;font-size:15px}.copy-line p{font-size:14px}.copy-flow-card{padding:32px;border-top:2px solid var(--gold);position:relative}.flow-node{display:flex;align-items:center;gap:14px;padding:16px 18px;background:rgba(255,255,255,.035);border:1px solid var(--line2);border-radius:10px;margin-bottom:10px}.flow-node.master{border-color:rgba(212,168,75,.45)}.flow-node.result{border-color:rgba(32,208,122,.45);background:rgba(32,208,122,.08)}.flow-emoji{width:34px;height:34px;display:grid;place-items:center;color:var(--gold);flex:0 0 34px}.flow-label{font-size:11px;text-transform:uppercase;letter-spacing:.12em;color:#8fb1d1}.flow-value{font-weight:900;color:#fff}.flow-badge{margin-left:auto;font-size:10px;font-weight:900;color:#20d07a;background:rgba(32,208,122,.12);padding:6px 10px;border-radius:99px}.flow-arrow{text-align:center;color:var(--gold);font-size:18px;font-weight:800;margin:8px 0 10px}
.risk-feature-list{display:flex;flex-direction:column;gap:16px}.risk-feature{display:grid;grid-template-columns:46px 1fr;gap:18px;padding:22px;border:1px solid var(--line);border-radius:12px;background:rgba(255,255,255,.035)}.risk-feature .feature-icon{margin-top:2px}.risk-feature h3{font-family:Inter,sans-serif;font-size:15px}.risk-feature p{font-size:13px}.pair-chips{display:flex;gap:8px;flex-wrap:wrap;margin-top:24px}.pair-chips span{padding:7px 14px;border-radius:6px;border:1px solid rgba(212,168,75,.25);background:rgba(255,255,255,.04);font-size:13px;font-weight:800;color:var(--gold)}.pair-chips .no{color:var(--red);text-decoration:line-through;border-color:rgba(255,91,91,.18);opacity:.7}.risk-bottom{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:44px}.center-card{text-align:center;padding:34px 28px}.center-card .feature-icon{margin:0 auto 16px;display:block}.center-card h3{font-family:Inter,sans-serif;font-size:15px}.center-card p{font-size:13px}
.why-section{text-align:center}.why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:44px;text-align:left}.why-card{padding:30px}.why-num{font-size:12px;color:var(--gold);font-weight:900;letter-spacing:.12em;margin-bottom:22px}.why-card .feature-icon{margin-bottom:18px;display:block}.why-card h3{font-family:Inter,sans-serif;font-size:15px;margin-bottom:12px}.why-card p{font-size:13px}.trial-section{background:#0b1f3a}.trial-card-big{padding:42px;border-top:2px solid var(--gold);text-align:center}.trial-price{font-family:Manrope,Inter,sans-serif;font-size:58px;font-weight:900;color:var(--gold);line-height:1;margin-bottom:16px}.trial-list{list-style:none;margin-top:26px;display:grid;gap:13px}.trial-list li{color:#fff;font-size:14px}.trial-list li:before{content:'✓';color:var(--green);font-weight:900;margin-right:10px}.trial-left-list{list-style:none;margin:28px 0 26px;display:grid;gap:13px}.trial-left-list li{color:#fff;font-weight:700}.trial-left-list li:before{content:'✓';display:inline-grid;place-items:center;width:22px;height:22px;border-radius:50%;background:rgba(32,208,122,.13);color:var(--green);margin-right:10px}.newsletter-card{display:grid;grid-template-columns:1fr auto;gap:24px;align-items:center;padding:34px;margin-top:28px}.newsletter-form{display:flex;gap:10px}.newsletter-form input{height:48px;min-width:280px;border-radius:6px;border:1px solid var(--line);background:rgba(255,255,255,.05);color:#fff;padding:0 16px;font-weight:700}.whatsapp-float{position:fixed;right:22px;bottom:22px;z-index:80;width:60px;height:60px;border-radius:50%;display:grid;place-items:center;background:#25D366;color:#fff;text-decoration:none;box-shadow:0 18px 40px rgba(0,0,0,.35);transition:.2s ease}.whatsapp-float:hover{transform:translateY(-3px) scale(1.03)}.whatsapp-float svg{width:32px;height:32px;fill:currentColor}
@media(max-width:900px){.split-section,.newsletter-card{grid-template-columns:1fr}.why-grid,.risk-bottom{grid-template-columns:1fr}.newsletter-form{flex-direction:column}.newsletter-form input{min-width:0;width:100%}}

@media(max-width:1100px){
  .nav-links,.nav-actions{display:none}.hamburger{display:block}
  .hero-inner{grid-template-columns:1fr}.stat-panel{max-width:620px}
  .reviews-box,.performance-grid,.lower-grid,.calc-grid,.programs-intro,.get-started-grid{grid-template-columns:1fr}
  .steps{grid-template-columns:repeat(2,1fr)}
  .month-strip{grid-template-columns:repeat(6,1fr)}
  .kpi-row,.trust-grid{grid-template-columns:repeat(2,1fr)}
  .kpi:nth-child(2n){border-right:0}
}
@media(max-width:680px){
  .nav{min-height:76px}.brand-text{font-size:20px}.brand-mark{width:38px;height:38px;font-size:25px}
  .hero{min-height:auto;background-position:center}.hero-inner{padding:54px 0}.hero h1{font-size:42px}.hero-sub{font-size:16px}
  .hero-buttons .btn{width:100%}.reviews-strip{margin-top:0}.reviews-box{padding:22px;gap:18px}
  .review-mini{border-right:0;border-bottom:1px solid var(--line2);padding:0 0 18px}
  .steps,.month-strip,.kpi-row,.trust-grid,.check-list,.form-box,.conditional,.account-toggle,.program-mini{grid-template-columns:1fr}
  .kpi{border-right:0;border-bottom:1px solid var(--line2);padding:15px 0}.kpi:last-child{border-bottom:0}
  .monthly-grid{grid-template-columns:repeat(2,1fr)}
}


/* CHANGING MATH CAPTCHA */
.captcha-field{margin-top:4px}
.captcha-box{
  display:grid;
  grid-template-columns:auto 46px minmax(140px,1fr);
  gap:10px;
  align-items:center;
  padding:14px;
  border:1px solid rgba(212,168,75,.22);
  background:rgba(212,168,75,.055);
  border-radius:10px;
}
.captcha-question{
  min-height:46px;
  display:flex;
  align-items:center;
  padding:0 16px;
  border-radius:8px;
  background:rgba(5,13,24,.45);
  border:1px solid rgba(255,255,255,.08);
  color:#fff;
  font-size:14px;
  font-weight:900;
  letter-spacing:.02em;
}
.captcha-question span{color:var(--gold)}
.captcha-refresh{
  height:46px;
  width:46px;
  border-radius:8px;
  border:1px solid rgba(212,168,75,.35);
  background:rgba(255,255,255,.04);
  color:var(--gold);
  font-size:22px;
  font-weight:900;
  cursor:pointer;
  transition:.18s ease;
}
.captcha-refresh:hover{background:rgba(212,168,75,.10);transform:translateY(-1px)}
.captcha-box input[type=number]{
  min-height:46px;
  margin:0;
}
.captcha-error{
  display:none;
  margin-top:8px;
  color:#ffb3b3;
  font-size:12px;
  font-weight:700;
}
.captcha-field.has-error .captcha-error{display:block}
.captcha-field.has-error .captcha-box{border-color:rgba(255,91,91,.45);box-shadow:0 0 0 3px rgba(255,91,91,.08)}
@media(max-width:680px){
  .captcha-box{grid-template-columns:1fr 46px}
  .captcha-box input[type=number]{grid-column:1/-1}
}


/* DOCUMENTS + BLOG RESTORED SECTIONS */
.document-grid{display:grid;grid-template-columns:.95fr 1.05fr;gap:70px;align-items:center}
.document-copy h2,.blog-head h2{font-family:"Playfair Display",Manrope,Inter,sans-serif;font-size:clamp(36px,4.5vw,58px);font-weight:800;line-height:1.05;margin-bottom:22px;color:var(--text)}
.document-copy p{font-size:17px;line-height:1.75;max-width:680px;margin:0 0 20px;color:#9dc6ec}
.document-list{display:grid;gap:14px}
.document-card{display:grid;grid-template-columns:42px 1fr auto;gap:18px;align-items:center;text-decoration:none;padding:20px 22px;border-radius:12px;background:linear-gradient(180deg,rgba(15,34,58,.88),rgba(9,24,43,.88));border:1px solid rgba(212,168,75,.16);transition:.22s ease;box-shadow:0 14px 42px rgba(0,0,0,.18)}
.document-card:hover{transform:translateY(-2px);border-color:rgba(212,168,75,.42);background:linear-gradient(180deg,rgba(18,40,68,.95),rgba(9,24,43,.92))}
.document-card strong{display:block;color:#fff;font-size:16px;line-height:1.25;margin-bottom:2px}
.document-card small{display:block;color:#9dc6ec;font-size:13px;line-height:1.35}
.document-card em{font-style:normal;color:var(--gold);font-size:13px;font-weight:800;white-space:nowrap}
.doc-icon{width:28px;height:28px;position:relative;color:var(--gold);display:inline-block}
.doc-icon:before,.doc-icon:after{content:"";position:absolute;box-sizing:border-box}
.doc-paper:before{left:6px;top:2px;width:17px;height:24px;border:2px solid currentColor;border-radius:3px}.doc-paper:after{left:10px;top:9px;width:9px;height:2px;background:currentColor;box-shadow:0 5px 0 currentColor,0 10px 0 currentColor}
.doc-shield:before{left:5px;top:2px;width:20px;height:24px;border:2px solid currentColor;clip-path:polygon(50% 0,100% 18%,100% 58%,50% 100%,0 58%,0 18%)}.doc-shield:after{left:11px;top:10px;width:9px;height:6px;border-left:2px solid currentColor;border-bottom:2px solid currentColor;transform:rotate(-45deg)}
.doc-check:before{left:2px;top:3px;width:23px;height:22px;border:2px solid currentColor;border-radius:4px}.doc-check:after{left:8px;top:13px;width:12px;height:7px;border-left:3px solid var(--green);border-bottom:3px solid var(--green);transform:rotate(-45deg)}
.doc-handshake:before{left:3px;top:10px;width:22px;height:9px;border:2px solid currentColor;border-radius:12px;transform:rotate(-12deg)}.doc-handshake:after{left:9px;top:6px;width:10px;height:16px;border:2px solid currentColor;border-radius:7px;transform:rotate(35deg)}
.doc-scale:before{left:13px;top:3px;width:2px;height:22px;background:currentColor;box-shadow:-8px 8px 0 -1px currentColor,8px 8px 0 -1px currentColor}.doc-scale:after{left:4px;top:8px;width:20px;height:2px;background:currentColor;box-shadow:-4px 14px 0 currentColor,4px 14px 0 currentColor}
.blog-head{display:flex;justify-content:space-between;gap:26px;align-items:center;margin-bottom:44px}
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.blog-card{text-decoration:none;overflow:hidden;transition:.22s ease;display:block}
.blog-card:hover{transform:translateY(-4px);border-color:rgba(212,168,75,.36)}
.blog-thumb{height:170px;background:radial-gradient(circle at 50% 50%,rgba(212,168,75,.12),transparent 34%),linear-gradient(180deg,rgba(9,22,39,.96),rgba(5,13,24,.96));display:grid;place-items:center;border-bottom:1px solid var(--line2)}
.blog-icon{width:36px;height:36px;color:rgba(212,168,75,.72);position:relative;display:inline-block;filter:drop-shadow(0 10px 15px rgba(0,0,0,.32))}
.blog-icon:before,.blog-icon:after{content:"";position:absolute;box-sizing:border-box}
.blog-icon.i-master:before{left:5px;top:11px;width:26px;height:16px;border:3px solid currentColor;border-radius:12px}.blog-icon.i-master:after{left:13px;top:5px;width:10px;height:10px;border:3px solid currentColor;border-radius:50%}
.blog-icon.i-bars:before{left:6px;bottom:5px;width:5px;height:14px;background:currentColor;box-shadow:10px -8px 0 currentColor,20px -15px 0 currentColor}.blog-icon.i-bars:after{left:4px;bottom:4px;width:29px;height:25px;border-left:3px solid currentColor;border-bottom:3px solid currentColor}
.blog-icon.i-shield:before{left:7px;top:3px;width:22px;height:28px;border:3px solid currentColor;clip-path:polygon(50% 0,100% 18%,100% 58%,50% 100%,0 58%,0 18%)}
.blog-icon.i-doc:before{left:8px;top:5px;width:22px;height:26px;border:3px solid currentColor;border-radius:4px}.blog-icon.i-doc:after{left:13px;top:14px;width:12px;height:3px;background:currentColor;box-shadow:0 7px 0 currentColor}
.blog-icon.i-growth:before{left:6px;bottom:6px;width:25px;height:21px;border-left:3px solid currentColor;border-bottom:3px solid currentColor}.blog-icon.i-growth:after{left:10px;top:9px;width:20px;height:15px;border-top:3px solid currentColor;border-right:3px solid currentColor;transform:skew(-20deg) rotate(-12deg)}
.blog-icon.i-target:before{left:5px;top:5px;width:26px;height:26px;border:3px solid currentColor;border-radius:50%;box-shadow:inset 0 0 0 7px rgba(212,168,75,.18)}.blog-icon.i-target:after{left:16px;top:1px;width:4px;height:35px;background:currentColor;transform:rotate(45deg)}
.blog-body{padding:22px 22px 24px;background:rgba(255,255,255,.025)}
.blog-cat{font-size:10px;letter-spacing:.12em;text-transform:uppercase;color:var(--gold);font-weight:900;margin-bottom:18px}
.blog-body time{display:block;color:#8ebfe8;font-size:12px;margin-bottom:12px}
.blog-body h3{font-family:Inter,sans-serif;font-size:17px;line-height:1.25;margin-bottom:12px;color:#fff}
.blog-body p{font-size:13px;line-height:1.65;color:#9fb0c3;margin-bottom:16px}
.blog-body strong{font-size:13px;color:var(--gold)}
@media(max-width:1000px){.document-grid,.blog-grid{grid-template-columns:1fr}.blog-head{align-items:flex-start;flex-direction:column}.document-card{grid-template-columns:36px 1fr}.document-card em{grid-column:2}.blog-thumb{height:130px}}
