/* ═══════════════════════════════════════════════
   PASCHIM TRADING INSTITUTE — MAIN STYLESHEET
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;0,800;0,900;1,700&family=IBM+Plex+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

/* ── Font System ──────────────────────────────────────────────────
   Display / Headings  → Playfair Display  (prestige, authority)
   Body / UI           → IBM Plex Sans     (clarity, data-density)
   Numbers / Prices    → IBM Plex Mono     (terminal precision)
   ─────────────────────────────────────────────────────────────── */

/* ── Variables ── */
:root {
  --ink:       #0a0f1e;
  --paper:     #fafaf7;
  --gold:      #e8a020;
  --gold-lt:   #f5c55a;
  --green:     #00c853;
  --green-dim: #1a3a2a;
  --red:       #ff3b3b;
  --muted:     #6b7280;
  --border:    rgba(255,255,255,0.08);
  --card:      #0f1628;
  --gradient:  linear-gradient(135deg, #0a0f1e 0%, #0d1a2d 100%);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }

body {
  font-family:'IBM Plex Sans',sans-serif;
  background:var(--ink);
  color:var(--paper);
  overflow-x:hidden;
  line-height:1.6;
}

/* Noise texture overlay */
body::before {
  content:'';
  position:fixed; inset:0;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events:none; z-index:9999; opacity:.4;
}

/* ── NAV ── */
.site-nav {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  padding:18px 40px;
  display:flex; align-items:center; justify-content:space-between;
  background:rgba(10,15,30,.88);
  backdrop-filter:blur(20px);
  border-bottom:1px solid var(--border);
  transition:border-color .3s;
}
.nav-logo {
  font-family:'Playfair Display',Georgia,serif; font-weight:700; font-size:1.25rem;
  color:var(--paper); text-decoration:none; letter-spacing:0.02em;
}
.nav-logo span { color:var(--gold); }
.nav-links { display:flex; gap:32px; list-style:none; }
.nav-links a {
  color:rgba(250,250,247,.7); text-decoration:none;
  font-size:.9rem; font-weight:500; transition:color .2s;
}
.nav-links a:hover, .nav-links a.active { color:var(--gold); }
.nav-cta {
  background:var(--gold); color:var(--ink) !important;
  padding:10px 22px; border-radius:50px;
  font-weight:700 !important; font-size:.85rem !important;
}
.nav-cta:hover { background:var(--gold-lt) !important; box-shadow:0 8px 24px rgba(232,160,32,.35); }

/* ── TICKER ── */
.ticker-bar {
  position:fixed; top:73px; left:0; right:0; z-index:999;
  background:var(--green-dim); border-bottom:1px solid rgba(0,200,83,.2);
  overflow:hidden; height:34px; display:flex; align-items:center;
}
.ticker-track {
  display:flex; gap:0; white-space:nowrap;
  animation:ticker 35s linear infinite;
  animation-delay: 0s;
  font-size:.75rem; font-weight:500; font-family:'IBM Plex Sans',sans-serif;
  will-change: transform;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item { display:inline-flex; align-items:center; gap:6px; padding: 0 24px; border-right: 1px solid rgba(255,255,255,0.08); }
.ticker-item .sym { color:rgba(250,250,247,.55); font-size:.72rem; letter-spacing:.03em; }
.ticker-item .val { color:var(--paper); font-family:'IBM Plex Mono',monospace; font-size:.74rem; }
.ticker-item .chg { font-family:'IBM Plex Mono',monospace; font-size:.72rem; }
.chg.up { color:var(--green); }
.chg.dn { color:var(--red); }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── COMMON COMPONENTS ── */
.container { max-width:1280px; margin:0 auto; }
section { padding:100px 40px; }
.section-label {
  display:inline-block; font-size:.75rem; font-weight:700;
  letter-spacing:2px; text-transform:uppercase; color:var(--gold); margin-bottom:12px;
}
.section-title {
  font-family:'Playfair Display',Georgia,serif;
  font-size:clamp(2rem,3.5vw,2.9rem);
  font-weight:800; letter-spacing:-0.5px; line-height:1.12; margin-bottom:16px;
}
.section-sub {
  color:rgba(250,250,247,.6); font-size:1.05rem; max-width:580px; line-height:1.7;
}
.center { text-align:center; }
.center .section-sub { margin:0 auto; }

.btn-primary {
  display:inline-flex; align-items:center; gap:10px;
  background:var(--gold); color:var(--ink);
  padding:16px 32px; border-radius:50px;
  font-weight:700; font-size:1rem; text-decoration:none;
  transition:all .25s; border:none; cursor:pointer;
}
.btn-primary:hover {
  background:var(--gold-lt); transform:translateY(-2px);
  box-shadow:0 12px 40px rgba(232,160,32,.4);
}
.btn-primary svg { transition:transform .2s; }
.btn-primary:hover svg { transform:translateX(4px); }

.btn-secondary {
  display:inline-flex; align-items:center; gap:10px;
  background:transparent; color:var(--paper);
  padding:16px 32px; border-radius:50px;
  font-weight:600; font-size:1rem; text-decoration:none;
  border:1px solid rgba(250,250,247,.2); transition:all .25s;
}
.btn-secondary:hover { border-color:var(--gold); color:var(--gold); transform:translateY(-2px); }

/* ── HERO ── */
.hero-wrap { background:var(--gradient); }
.hero {
  min-height:100vh; padding:180px 40px 100px;
  display:grid; grid-template-columns:1fr 1fr; gap:60px;
  align-items:center; max-width:1280px; margin:0 auto;
  position:relative; overflow:hidden;
}
.hero::before {
  content:''; position:absolute; top:-200px; right:-200px;
  width:700px; height:700px;
  background:radial-gradient(circle,rgba(232,160,32,.12) 0%,transparent 70%);
  pointer-events:none;
}
.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(232,160,32,.12); border:1px solid rgba(232,160,32,.3);
  padding:6px 16px; border-radius:50px;
  font-size:.8rem; font-weight:600; color:var(--gold); margin-bottom:24px;
  animation:fadeUp .6s ease both;
}
.badge-dot {
  width:7px; height:7px; background:var(--green); border-radius:50%;
  animation:pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }

.hero h1 {
  font-family:'Playfair Display',Georgia,serif;
  font-size:clamp(2.6rem,4.5vw,4.2rem);
  font-weight:800; line-height:1.1; letter-spacing:-0.5px; margin-bottom:20px;
  animation:fadeUp .7s .1s ease both;
}
.hero h1 em {
  font-style:normal; color:var(--gold); position:relative;
}
.hero h1 em::after {
  content:''; position:absolute; bottom:2px; left:0; right:0;
  height:3px; background:linear-gradient(90deg,var(--gold),transparent); border-radius:2px;
}
.hero-sub {
  font-size:1.1rem; color:rgba(250,250,247,.65); max-width:480px;
  line-height:1.7; margin-bottom:32px; animation:fadeUp .7s .2s ease both;
}
.hero-actions { display:flex; gap:16px; flex-wrap:wrap; animation:fadeUp .7s .3s ease both; }
.hero-trust {
  display:flex; align-items:center; gap:16px; margin-top:28px;
  animation:fadeUp .7s .4s ease both;
}
.trust-avatars { display:flex; }
.trust-avatars span {
  width:36px; height:36px; border-radius:50%; border:2px solid var(--ink);
  display:flex; align-items:center; justify-content:center;
  font-size:.7rem; font-weight:700; margin-left:-10px;
}
.trust-avatars span:first-child { margin-left:0; }
.trust-text { font-size:.85rem; color:rgba(250,250,247,.6); }
.trust-text strong { color:var(--paper); }

@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

/* ── CHART CARD ── */
.hero-visual { animation:fadeUp .8s .2s ease both; }
.chart-card {
  background:var(--card); border:1px solid var(--border);
  border-radius:20px; padding:28px; position:relative; overflow:hidden;
}
.chart-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:1px;
  background:linear-gradient(90deg,transparent,var(--gold),transparent);
}
.chart-header { display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:20px; }
.chart-title { font-family:'Playfair Display',Georgia,serif; font-weight:700; font-size:.95rem; }
.chart-price-label { font-size:.78rem; color:var(--muted); margin-top:2px; }
.chart-price-val { font-family:'Playfair Display',Georgia,serif; font-size:1.4rem; font-weight:800; text-align:right; }
.chart-change { font-size:.8rem; color:var(--green); font-weight:600; text-align:right; }
.chart-svg-wrap { height:160px; margin-bottom:20px; }
.chart-svg-wrap svg { width:100%; height:100%; }
.chart-stats { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; }
.stat-box { background:rgba(255,255,255,.04); border-radius:10px; padding:12px; text-align:center; }
.stat-box .s-lbl { font-size:.72rem; color:var(--muted); margin-bottom:4px; }
.stat-box .s-val { font-family:'Playfair Display',Georgia,serif; font-weight:700; font-size:1rem; }
.stat-box .s-val.up { color:var(--green); }

.hero-visual-inner { position:relative; padding:30px; }
.floating-badge {
  position:absolute; background:var(--card); border:1px solid var(--border);
  border-radius:12px; padding:12px 16px;
  display:flex; align-items:center; gap:10px;
  font-size:.82rem; box-shadow:0 20px 60px rgba(0,0,0,.5);
}
.fb-tr { top:-20px; right:-20px; animation:float1 3s ease-in-out infinite; }
.fb-bl { bottom:-20px; left:-20px; animation:float2 3.5s ease-in-out infinite; }
@keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }
.fb-icon { font-size:1.2rem; }
.fb-title { font-weight:700; color:var(--paper); }
.fb-sub { color:var(--muted); font-size:.75rem; }

/* ── STATS STRIP ── */
.stats-strip {
  background:var(--card);
  border-top:1px solid var(--border); border-bottom:1px solid var(--border);
  padding:40px;
}
.stats-grid { max-width:1280px; margin:0 auto; display:grid; grid-template-columns:repeat(4,1fr); }
.stat-item { text-align:center; padding:20px; border-right:1px solid var(--border); }
.stat-item:last-child { border-right:none; }
.stat-item .num { font-family:'Playfair Display',Georgia,serif; font-size:2.8rem; font-weight:800; color:var(--gold); line-height:1; margin-bottom:6px; }
.stat-item .desc { font-size:.9rem; color:rgba(250,250,247,.6); }

/* ── FEATURES ── */
.course-section { background:var(--gradient); }
.features-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:56px; }
.feature-card {
  background:var(--card); border:1px solid var(--border);
  border-radius:16px; padding:32px 28px;
  transition:all .3s; position:relative; overflow:hidden;
}
.feature-card::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg,rgba(232,160,32,.05),transparent);
  opacity:0; transition:opacity .3s;
}
.feature-card:hover { border-color:rgba(232,160,32,.35); transform:translateY(-4px); box-shadow:0 20px 60px rgba(0,0,0,.4); }
.feature-card:hover::before { opacity:1; }
.feature-icon {
  width:52px; height:52px; border-radius:12px;
  background:rgba(232,160,32,.1); border:1px solid rgba(232,160,32,.2);
  display:flex; align-items:center; justify-content:center;
  font-size:1.5rem; margin-bottom:20px;
}
.feature-card h3 { font-family:'Playfair Display',Georgia,serif; font-size:1.1rem; font-weight:700; margin-bottom:10px; letter-spacing:-0.01em; line-height:1.3; }
.feature-card p { font-size:.9rem; color:rgba(250,250,247,.6); line-height:1.6; }

/* ── CURRICULUM ── */
.curriculum-section { background:#070d1c; }
.curriculum-grid { display:grid; grid-template-columns:1fr 1.2fr; gap:60px; align-items:start; margin-top:56px; }
.week-list { display:flex; flex-direction:column; gap:16px; }
.week-item {
  background:var(--card); border:1px solid var(--border);
  border-radius:14px; padding:22px 24px;
  display:flex; gap:20px; align-items:flex-start;
  cursor:pointer; transition:all .3s;
}
.week-item.active { border-color:var(--gold); background:rgba(232,160,32,.07); }
.week-item:hover { border-color:rgba(232,160,32,.3); }
.week-num {
  width:40px; height:40px; border-radius:10px;
  background:rgba(232,160,32,.1); border:1px solid rgba(232,160,32,.25);
  display:flex; align-items:center; justify-content:center;
  font-family:'Playfair Display',Georgia,serif; font-weight:800; font-size:.8rem;
  color:var(--gold); flex-shrink:0;
}
.week-item.active .week-num { background:var(--gold); color:var(--ink); }
.week-content h4 { font-family:'Playfair Display',Georgia,serif; font-weight:700; font-size:.95rem; margin-bottom:4px; }
.week-content p { font-size:.83rem; color:rgba(250,250,247,.55); line-height:1.5; }

.curriculum-detail {
  background:var(--card); border:1px solid var(--border);
  border-radius:20px; padding:36px;
  position:sticky; top:120px;
}
.curriculum-detail::before {
  content:''; position:absolute; top:0; left:0; right:0; height:2px;
  background:linear-gradient(90deg,var(--gold),var(--green));
  border-radius:20px 20px 0 0;
}
.curriculum-detail { position:sticky; top:120px; }
.curriculum-detail h3 { font-family:'Playfair Display',Georgia,serif; font-size:1.2rem; font-weight:800; margin-bottom:20px; }
.topic-list { list-style:none; display:flex; flex-direction:column; gap:10px; }
.topic-list li {
  display:flex; align-items:center; gap:12px;
  font-size:.9rem; color:rgba(250,250,247,.8);
  padding:10px 14px; border-radius:10px;
  background:rgba(255,255,255,.03); transition:background .2s;
}
.topic-list li:hover { background:rgba(255,255,255,.06); }
.topic-list li::before {
  content:'✓'; width:22px; height:22px;
  background:rgba(0,200,83,.15); border-radius:6px;
  display:flex; align-items:center; justify-content:center;
  font-size:.7rem; color:var(--green); flex-shrink:0;
}
.outcome-box {
  margin-top:24px; padding:18px; border-radius:12px;
  background:rgba(232,160,32,.07); border:1px solid rgba(232,160,32,.2);
}
.outcome-box .out-label { font-size:.75rem; color:var(--gold); font-weight:700; text-transform:uppercase; letter-spacing:1px; margin-bottom:6px; }
.outcome-box p { font-size:.88rem; color:rgba(250,250,247,.7); }

/* ── AUDIENCE ── */
.audience-section { background:var(--gradient); }
.audience-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; margin-top:48px; }
.audience-card {
  display:flex; gap:18px; align-items:flex-start;
  background:var(--card); border:1px solid var(--border);
  border-radius:16px; padding:24px; transition:all .3s;
}
.audience-card:hover { border-color:rgba(232,160,32,.3); transform:translateY(-3px); }
.aud-emoji { font-size:1.8rem; flex-shrink:0; }
.aud-text h4 { font-family:'Playfair Display',Georgia,serif; font-weight:700; font-size:.95rem; margin-bottom:6px; }
.aud-text p { font-size:.85rem; color:rgba(250,250,247,.55); line-height:1.55; }

/* ── TESTIMONIALS ── */
.testimonials-section { background:#070d1c; overflow:hidden; }
.testimonials-track {
  display:flex; gap:24px; margin-top:48px;
  animation:scrollX 40s linear infinite; width:max-content;
}
.testimonials-track:hover { animation-play-state:paused; }
@keyframes scrollX { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.testimonial-card {
  background:var(--card); border:1px solid var(--border);
  border-radius:20px; padding:28px 30px; width:380px; flex-shrink:0; position:relative;
}
.testimonial-card::before {
  content:'"'; position:absolute; top:16px; right:24px;
  font-size:4rem; font-family:'Playfair Display',Georgia,serif; font-weight:800;
  color:rgba(232,160,32,.1); line-height:1;
}
.stars { color:var(--gold); font-size:.85rem; margin-bottom:14px; letter-spacing:2px; }
.testimonial-text { font-size:.92rem; color:rgba(250,250,247,.75); line-height:1.65; margin-bottom:20px; }
.reviewer { display:flex; align-items:center; gap:12px; }
.reviewer-avatar {
  width:42px; height:42px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:.85rem; flex-shrink:0;
}
.reviewer-name { font-weight:700; font-size:.9rem; }
.reviewer-role { font-size:.78rem; color:var(--muted); }

/* ── MENTOR ── */
.mentor-section { background:var(--gradient); }
.mentor-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; margin-top:56px; }
.mentor-placeholder {
  height:420px; border-radius:24px;
  background:linear-gradient(135deg,#0f1e2d,#0a1520);
  border:1px solid var(--border);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:16px;
  position:relative; overflow:hidden;
}
.mentor-placeholder::before {
  content:''; position:absolute; top:-100px; left:-100px;
  width:400px; height:400px;
  background:radial-gradient(circle,rgba(232,160,32,.1),transparent 70%);
}
.mentor-icon { font-size:4rem; }
.mentor-label { font-family:'Playfair Display',Georgia,serif; font-weight:700; font-size:1.1rem; }
.mentor-sublabel { font-size:.85rem; color:var(--muted); }
.experience-chips { display:flex; flex-wrap:wrap; gap:10px; margin-top:16px; }
.chip {
  background:rgba(232,160,32,.1); border:1px solid rgba(232,160,32,.2);
  color:var(--gold); padding:6px 14px; border-radius:50px;
  font-size:.78rem; font-weight:600;
}
.mentor-stats { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-top:28px; }
.m-stat { background:var(--card); border:1px solid var(--border); border-radius:14px; padding:18px; }
.m-stat .n { font-family:'Playfair Display',Georgia,serif; font-size:1.6rem; font-weight:800; color:var(--gold); }
.m-stat .l { font-size:.82rem; color:rgba(250,250,247,.5); margin-top:2px; }

/* ── FAQ ── */
.faq-section { background:#070d1c; }
.faq-grid { max-width:800px; margin:48px auto 0; display:flex; flex-direction:column; gap:14px; }
.faq-item { background:var(--card); border:1px solid var(--border); border-radius:14px; overflow:hidden; }
.faq-q {
  width:100%; background:none; border:none; color:var(--paper);
  font-family:'IBM Plex Sans',sans-serif; font-size:.97rem; font-weight:600;
  padding:22px 24px; text-align:left; cursor:pointer;
  display:flex; justify-content:space-between; align-items:center; transition:color .2s;
}
.faq-q:hover { color:var(--gold); }
.faq-q .icon { font-size:1.2rem; transition:transform .3s; color:var(--gold); }
.faq-item.open .faq-q .icon { transform:rotate(45deg); }
.faq-a {
  max-height:0; overflow:hidden; transition:max-height .3s ease,padding .3s ease;
  font-size:.9rem; color:rgba(250,250,247,.65); line-height:1.7; padding:0 24px;
}
.faq-item.open .faq-a { max-height:200px; padding:0 24px 22px; }

/* ── CTA SECTION ── */
.cta-section { background:var(--gradient); position:relative; overflow:hidden; padding:100px 40px; }
.cta-section::before {
  content:''; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:800px; height:800px;
  background:radial-gradient(circle,rgba(232,160,32,.08),transparent 70%);
}
.cta-inner { max-width:700px; margin:0 auto; text-align:center; position:relative; z-index:1; }
.cta-form { display:flex; gap:12px; max-width:500px; margin:0 auto 24px; }
.cta-form input {
  flex:1; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.15);
  border-radius:50px; padding:15px 22px; color:var(--paper);
  font-family:'IBM Plex Sans',sans-serif; font-size:.95rem; outline:none; transition:border-color .2s;
}
.cta-form input:focus { border-color:var(--gold); }
.cta-form input::placeholder { color:rgba(250,250,247,.35); }
.cta-trust { font-size:.8rem; color:rgba(250,250,247,.4); display:flex; align-items:center; justify-content:center; gap:6px; }

/* ── FOOTER ── */
footer { background:#05090f; border-top:1px solid var(--border); padding:60px 40px 30px; }
.footer-grid { max-width:1280px; margin:0 auto; display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:40px; margin-bottom:48px; }
.footer-brand p { font-size:.88rem; color:rgba(250,250,247,.45); margin:14px 0 20px; line-height:1.6; max-width:280px; }
.footer-social { display:flex; gap:10px; }
.social-btn {
  width:36px; height:36px; border-radius:8px; border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  font-size:.85rem; text-decoration:none; color:rgba(250,250,247,.6); transition:all .2s;
}
.social-btn:hover { border-color:var(--gold); color:var(--gold); }
.footer-col h5 { font-family:'IBM Plex Sans',sans-serif; font-weight:600; font-size:.82rem; margin-bottom:16px; color:var(--paper); letter-spacing:0.05em; text-transform:uppercase; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-col ul li a { font-size:.85rem; color:rgba(250,250,247,.45); text-decoration:none; transition:color .2s; }
.footer-col ul li a:hover { color:var(--gold); }
.footer-bottom {
  max-width:1280px; margin:0 auto; padding-top:24px;
  border-top:1px solid var(--border);
  display:flex; justify-content:space-between; align-items:center;
  font-size:.8rem; color:rgba(250,250,247,.3);
}

/* ── WA FLOAT (bottom-left) ── */
.wa-float {
  position:fixed; bottom:28px; left:28px; z-index:999;
  width:56px; height:56px; background:#25d366; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  text-decoration:none; box-shadow:0 8px 30px rgba(37,211,102,.4);
  transition:all .3s; animation:waPulse 2.5s infinite;
}
.wa-float:hover { transform:scale(1.1); }
@keyframes waPulse { 0%,100%{box-shadow:0 8px 30px rgba(37,211,102,.4)} 50%{box-shadow:0 8px 50px rgba(37,211,102,.7)} }

/* ── LANDING PAGE ── */
.lp-hero {
  min-height:100vh; display:flex; align-items:center; justify-content:center;
  padding:120px 40px 80px; background:var(--gradient);
  position:relative; overflow:hidden; text-align:center;
}
.lp-hero::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse at 50% 0%,rgba(232,160,32,.15) 0%,transparent 60%);
}
.lp-content { max-width:760px; position:relative; z-index:1; }
.lp-hero .hero-badge { margin:0 auto 24px; }
.lp-hero h1 {
  font-family:'Playfair Display',Georgia,serif;
  font-size:clamp(2.8rem,5vw,4.8rem);
  font-weight:800; letter-spacing:-0.5px; line-height:1.1; margin-bottom:20px;
}
.lp-hero h1 em { font-style:normal; color:var(--gold); }
.lp-sub { margin:0 auto 36px; font-size:1.15rem; color:rgba(250,250,247,.65); max-width:560px; }

.countdown-wrap { display:flex; justify-content:center; gap:20px; margin-bottom:40px; }
.countdown-box {
  background:var(--card); border:1px solid var(--border);
  border-radius:14px; padding:16px 20px; text-align:center; min-width:80px;
}
.cd-num { font-family:'Playfair Display',Georgia,serif; font-size:2rem; font-weight:800; color:var(--gold); line-height:1; }
.cd-label { font-size:.72rem; color:var(--muted); margin-top:4px; text-transform:uppercase; letter-spacing:1px; }

.enroll-form-wrap {
  max-width:460px; margin:0 auto;
  background:var(--card); border:1px solid var(--border);
  border-radius:20px; padding:32px; position:relative;
}
.enroll-form-wrap::before {
  content:''; position:absolute; top:0; left:0; right:0; height:2px;
  background:linear-gradient(90deg,var(--gold),var(--green));
  border-radius:20px 20px 0 0;
}
.enroll-form-wrap h3 { font-family:'Playfair Display',Georgia,serif; font-weight:800; font-size:1.2rem; margin-bottom:6px; }
.form-note { font-size:.85rem; color:rgba(250,250,247,.5); margin-bottom:24px; }
.form-field { margin-bottom:14px; }
.form-field input, .form-field select {
  width:100%; background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.1); border-radius:12px;
  padding:14px 16px; color:var(--paper);
  font-family:'IBM Plex Sans',sans-serif; font-size:.92rem; outline:none; transition:border-color .2s;
}
.form-field input:focus, .form-field select:focus { border-color:var(--gold); }
.form-field input::placeholder { color:rgba(250,250,247,.3); }
.form-field select { appearance:none; }
.form-field select option { background:var(--ink); }
.form-submit {
  width:100%; padding:15px; background:var(--gold); color:var(--ink);
  font-family:'Playfair Display',Georgia,serif; font-weight:800; font-size:1rem;
  border:none; border-radius:12px; cursor:pointer; transition:all .25s; margin-top:6px;
}
.form-submit:hover { background:var(--gold-lt); transform:translateY(-1px); box-shadow:0 8px 30px rgba(232,160,32,.35); }
.form-privacy { font-size:.75rem; color:rgba(250,250,247,.3); text-align:center; margin-top:12px; }
.form-success {
  display:none; background:rgba(0,200,83,.1); border:1px solid rgba(0,200,83,.3);
  border-radius:12px; padding:18px; text-align:center;
  color:var(--green); font-weight:600; font-size:.95rem; margin-top:14px;
}

.lp-guarantees { padding:80px 40px; background:#070d1c; }
.guarantee-grid { max-width:900px; margin:40px auto 0; display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.guarantee-card { text-align:center; padding:32px 24px; }
.g-icon { font-size:2.5rem; margin-bottom:14px; }
.g-title { font-family:'Playfair Display',Georgia,serif; font-weight:700; font-size:.95rem; margin-bottom:8px; }
.g-text { font-size:.85rem; color:rgba(250,250,247,.5); line-height:1.6; }

.lp-pricing { padding:80px 40px; background:var(--gradient); }
.pricing-card {
  max-width:500px; margin:40px auto 0;
  background:var(--card); border:2px solid var(--gold);
  border-radius:24px; padding:40px; text-align:center; position:relative; overflow:hidden;
}
.pricing-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg,var(--gold),var(--gold-lt));
}
.price-badge-top {
  position:absolute; top:20px; right:20px;
  background:var(--green); color:var(--ink);
  font-size:.72rem; font-weight:800; padding:4px 12px;
  border-radius:50px; text-transform:uppercase; letter-spacing:1px;
}
.pricing-title { font-family:'Playfair Display',Georgia,serif; font-weight:700; font-size:1.3rem; margin-bottom:6px; letter-spacing:-0.02em; }
.pricing-sub { font-size:.85rem; color:var(--muted); margin-bottom:24px; }
.price-currency { font-size:1.5rem; color:var(--gold); vertical-align:top; margin-top:12px; display:inline-block; }
.price-amount { font-family:'Playfair Display',Georgia,serif; font-size:4rem; font-weight:800; color:var(--gold); line-height:1; }
.price-original { font-size:1rem; color:var(--muted); text-decoration:line-through; margin-bottom:6px; }
.price-save { font-size:.85rem; color:var(--green); font-weight:600; margin-bottom:28px; }
.price-includes { list-style:none; text-align:left; margin-bottom:28px; display:flex; flex-direction:column; gap:10px; }
.price-includes li { display:flex; align-items:center; gap:12px; font-size:.9rem; color:rgba(250,250,247,.8); }
.price-includes li::before {
  content:'✓'; width:22px; height:22px; background:rgba(0,200,83,.15);
  border-radius:6px; display:flex; align-items:center; justify-content:center;
  font-size:.7rem; color:var(--green); flex-shrink:0;
}

/* ── BLOG PAGE ── */
.blog-hero { padding:160px 40px 80px; background:var(--gradient); text-align:center; }
.blog-area { background:var(--ink); }
.blog-grid { max-width:1280px; margin:0 auto; padding:60px 40px; display:grid; grid-template-columns:2fr 1fr; gap:48px; }
.blog-posts { display:flex; flex-direction:column; gap:32px; }
.blog-card {
  background:var(--card); border:1px solid var(--border);
  border-radius:20px; overflow:hidden;
  display:grid; grid-template-columns:280px 1fr; transition:all .3s;
}
.blog-card:hover { border-color:rgba(232,160,32,.3); transform:translateY(-2px); }
.blog-img {
  min-height:200px; background:linear-gradient(135deg,#0f1e2d,#1a2e45);
  display:flex; align-items:center; justify-content:center; font-size:3rem;
}
.blog-content { padding:28px; }
.blog-meta { display:flex; align-items:center; gap:12px; margin-bottom:12px; }
.blog-tag {
  background:rgba(232,160,32,.1); border:1px solid rgba(232,160,32,.2);
  color:var(--gold); padding:4px 12px; border-radius:50px;
  font-size:.72rem; font-weight:700; text-transform:uppercase; letter-spacing:1px;
}
.blog-date { font-size:.8rem; color:var(--muted); }
.blog-card h2 {
  font-family:'Playfair Display',Georgia,serif; font-size:1.15rem; font-weight:700;
  line-height:1.35; margin-bottom:10px; color:var(--paper); letter-spacing:-0.02em;
}
.blog-card h2 a { color:inherit; text-decoration:none; transition:color .2s; }
.blog-card h2 a:hover { color:var(--gold); }
.blog-excerpt { font-size:.88rem; color:rgba(250,250,247,.55); line-height:1.6; margin-bottom:16px; }
.read-more { font-size:.85rem; color:var(--gold); font-weight:600; text-decoration:none; display:inline-flex; align-items:center; gap:6px; transition:gap .2s; }
.read-more:hover { gap:10px; }

.blog-sidebar { display:flex; flex-direction:column; gap:24px; }
.sidebar-widget { background:var(--card); border:1px solid var(--border); border-radius:16px; padding:24px; }
.sidebar-widget h4 { font-family:'IBM Plex Sans',sans-serif; font-weight:600; margin-bottom:16px; font-size:.88rem; color:var(--gold); letter-spacing:0.03em; text-transform:uppercase; }
.keyword-tags { display:flex; flex-wrap:wrap; gap:8px; }
.keyword-tag {
  background:rgba(255,255,255,.04); border:1px solid var(--border);
  border-radius:8px; padding:6px 12px;
  font-size:.78rem; color:rgba(250,250,247,.65); cursor:pointer; transition:all .2s;
}
.keyword-tag:hover { border-color:var(--gold); color:var(--gold); }
.popular-list { list-style:none; display:flex; flex-direction:column; gap:12px; }
.popular-list li { display:flex; gap:10px; align-items:flex-start; font-size:.85rem; color:rgba(250,250,247,.7); cursor:pointer; line-height:1.5; }
.popular-list li:hover { color:var(--gold); }
.pop-num { font-family:'Playfair Display',Georgia,serif; font-weight:800; color:var(--gold); opacity:.4; font-size:.8rem; flex-shrink:0; }
.sidebar-cta { background:rgba(232,160,32,.07) !important; border-color:rgba(232,160,32,.2) !important; }
.sidebar-cta h4 { color:var(--paper) !important; }

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .hero { grid-template-columns:1fr; padding-top:160px; }
  .features-grid { grid-template-columns:repeat(2,1fr); }
  .curriculum-grid { grid-template-columns:1fr; }
  .curriculum-detail { position:static; }
  .mentor-grid { grid-template-columns:1fr; }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .blog-card { grid-template-columns:1fr; }
  .blog-grid { grid-template-columns:1fr; }
  .guarantee-grid { grid-template-columns:1fr; }
}
@media(max-width:768px) {
  .site-nav { padding:16px 20px; }
  section { padding:70px 20px; }
  .features-grid, .audience-grid { grid-template-columns:1fr; }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .stat-item { border-right:none; border-bottom:1px solid var(--border); }
  .cta-form { flex-direction:column; }
  .footer-grid { grid-template-columns:1fr; }
  .hero { padding:150px 20px 70px; }
  .stats-strip { padding:40px 20px; }
  .lp-hero { padding:120px 20px 60px; }
  .blog-hero { padding:120px 20px 50px; }
  .footer-bottom { flex-direction:column; gap:8px; text-align:center; }
}

/* ── MARKET STATUS BADGE (in ticker bar) ── */
.market-status {
  position: absolute;
  right: 0;
  top: 0; bottom: 0;
  display: flex;
  align-items: center;
  padding: 0 16px 0 32px;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: 'Playfair Display', Georgia, serif;
  white-space: nowrap;
  z-index: 2;
  cursor: default;
  user-select: none;
}
.market-status.open {
  background: linear-gradient(90deg, transparent, var(--green-dim) 28%);
  color: var(--green);
}
.market-status.closed {
  background: linear-gradient(90deg, transparent, rgba(10,15,30,.97) 28%);
  color: rgba(250,250,247,.4);
}
@media(max-width:600px) {
  /* On small screens just show the dot + status word, hide "Last Close" */
  .market-status { font-size:.6rem; padding: 0 10px 0 20px; letter-spacing:.5px; }
}

/* ── Monospaced numbers — trading terminal feel ── */
.num, .s-val, .chart-price-val, .chart-change, .cd-num,
.price-amount, .price-currency, .price-original,
#cc-price, #cc-change, #cc-open, #cc-high, #cc-vol,
.stat-box .s-val, .stat-item .num, .m-stat .n,
.ticker-item .val, .ticker-item .chg,
.countdown-box .cd-num, .reviewer-name {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

/* ── Body text refinements ── */
p, li, .section-sub, .hero-sub, .feature-card p,
.aud-text p, .testimonial-text, .faq-a,
.blog-excerpt, .week-content p, .outcome-box p,
.g-text, .reviewer-role, .footer-brand p {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
  line-height: 1.72;
}

/* ── Small UI labels — slightly tighter ── */
.section-label, .blog-tag, .chip, .badge-dot + *,
.hero-badge, .nav-links a, .s-lbl, .stat-item .desc,
.m-stat .l, .reviewer-role, .blog-date, .form-privacy,
.footer-col ul li a, .ticker-item .sym {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 500;
}

/* ── Heading refinements — Playfair italic accent ── */
.hero h1 em, .lp-hero h1 em, .section-title em {
  font-style: italic;
  font-weight: 700;
}

/* ── Typography fine-tuning for Playfair + IBM Plex system ───────── */

/* Week headings, card sub-titles — use IBM Plex for UI density */
.week-content h4, .sidebar-widget .pop-num,
.m-stat .l, .stat-item .desc, .feature-card p,
.form-note, .form-privacy, .g-text, .badge-info .badge-sub,
.chart-price-label, .chart-title, .fb-sub {
  font-family: 'IBM Plex Sans', sans-serif;
}

/* Curriculum detail h3 — editorial heading */
.curriculum-detail h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

/* FAQ question button — readable UI */
.faq-q {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 500;
  font-size: .95rem;
}

/* CTAs / Buttons — IBM Plex Sans, not display font */
.btn-primary, .btn-secondary, .form-submit, .nav-cta {
  font-family: 'IBM Plex Sans', sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em;
}

/* Testimonial quote mark — keep as decorative serif */
.testimonial-card::before {
  font-family: 'Playfair Display', Georgia, serif;
}

/* Chart card price — mono for precision */
.chart-price-val {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.chart-change {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-weight: 500;
  font-size: .82rem;
}

/* Ticker number values */
.ticker-item .val,
.ticker-item .chg {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-weight: 500;
}

/* Market status badge */
.market-status {
  font-family: 'IBM Plex Sans', sans-serif;
}

/* Countdown numbers */
.cd-num {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-weight: 600;
  letter-spacing: -0.04em;
}
.cd-label {
  font-family: 'IBM Plex Sans', sans-serif;
}

/* Audience card headings */
.aud-text h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Mentor stats numbers */
.m-stat .n {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-weight: 600;
  letter-spacing: -0.03em;
}

/* Hero h1 italic gold accent */
.hero h1 em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 800;
}

/* ════════════════════════════════════════════════════════════════
   MOBILE-FIRST IMPROVEMENTS & MENTOR REDESIGN
   ════════════════════════════════════════════════════════════════ */

/* ── HAMBURGER MENU ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
  transition: border-color .2s;
}
.nav-hamburger:hover { border-color: var(--gold); }
.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--paper);
  border-radius: 2px;
  transition: all .3s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
  backdrop-filter: blur(4px);
}
.nav-overlay.show { display: block; }

/* ── MENTOR VISUAL — new design ── */
.mentor-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.mentor-img-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
}
.mentor-img-card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/5;
  position: relative;
  background: linear-gradient(135deg, #152030, #0a1520);
}
.mentor-img-card svg {
  width: 100%;
  height: 100%;
  display: block;
}
.mentor-photo-note {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: rgba(10,15,30,0.85);
  font-size: .75rem;
  color: rgba(250,250,247,0.4);
  text-align: center;
  border-top: 1px solid var(--border);
}
.mentor-photo-note code {
  color: var(--gold);
  font-family: 'IBM Plex Mono', monospace;
  font-size: .7rem;
}
.mentor-stats-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  z-index: 2;
}
.mf-item { text-align: center; }
.mf-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.mf-lbl {
  font-size: .72rem;
  color: rgba(250,250,247,0.5);
  margin-top: 3px;
  display: block;
  white-space: nowrap;
}
.mf-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ── IMPROVED RESPONSIVE — 1024px ── */
@media (max-width: 1024px) {
  .mentor-grid { grid-template-columns: 1fr; gap: 40px; }
  .mentor-img-wrap { max-width: 340px; margin: 0 auto; }
  .hero { grid-template-columns: 1fr; }
  .hero-visual { display: block; }
  .hero-visual-inner { padding: 16px 0 0; }
  .floating-badge { display: none; }
}

/* ── TABLET — 768px ── */
@media (max-width: 768px) {
  /* Nav */
  .nav-hamburger { display: flex; }
  .site-nav { padding: 14px 20px; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: #0a0f1e;
    border-left: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 80px 0 40px;
    z-index: 999;
    transition: right .35s cubic-bezier(.4,0,.2,1);
    list-style: none;
  }
  .nav-links.open { right: 0; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 16px 28px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: rgba(250,250,247,0.75);
  }
  .nav-links a:hover { color: var(--gold); background: rgba(232,160,32,0.05); }
  .nav-cta {
    margin: 20px 24px 0 !important;
    display: block !important;
    text-align: center !important;
    border-radius: 12px !important;
    padding: 14px 20px !important;
    font-size: .95rem !important;
    border: none !important;
  }

  /* Hero */
  .hero { padding: 140px 20px 60px; gap: 32px; }
  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-sub { font-size: 1rem; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { width: 100%; justify-content: center; padding: 15px 24px; }

  /* Sections */
  section { padding: 64px 20px; }
  .stats-strip { padding: 32px 20px; }

  /* Stats grid */
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 0; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 24px 16px; }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat-item:last-child, .stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
  .stat-item .num { font-size: 2.2rem; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 36px; }
  .feature-card { padding: 24px 20px; }

  /* Curriculum */
  .curriculum-grid { grid-template-columns: 1fr; gap: 32px; }
  .curriculum-detail { position: static; padding: 24px; }
  .week-item { padding: 16px 18px; gap: 14px; }

  /* Audience */
  .audience-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 32px; }
  .audience-card { padding: 20px; }

  /* Testimonials */
  .testimonial-card { width: 300px; padding: 22px; }

  /* Mentor */
  .mentor-grid { grid-template-columns: 1fr; gap: 32px; }
  .mentor-img-wrap { max-width: 280px; }
  .mentor-stats-float { right: -10px; bottom: -10px; padding: 12px 14px; gap: 12px; }
  .mf-num { font-size: 1.1rem; }
  .mentor-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .m-stat { padding: 14px; }
  .m-stat .n { font-size: 1.3rem; }
  .experience-chips { gap: 8px; }
  .chip { font-size: .73rem; padding: 5px 12px; }

  /* FAQ */
  .faq-grid { padding: 0; }
  .faq-q { padding: 18px 20px; font-size: .92rem; }
  .faq-a { padding: 0 20px; }
  .faq-item.open .faq-a { padding: 0 20px 18px; max-height: 300px; }

  /* CTA */
  .cta-section { padding: 64px 20px; }
  .cta-form { flex-direction: column; gap: 10px; }
  .cta-form input, .cta-form .btn-primary { width: 100%; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  footer { padding: 48px 20px 24px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; font-size: .75rem; }

  /* Landing page */
  .lp-hero { padding: 120px 20px 60px; }
  .lp-hero h1 { font-size: clamp(2.2rem, 7vw, 3.5rem); }
  .countdown-wrap { gap: 12px; }
  .countdown-box { min-width: 64px; padding: 12px 14px; }
  .cd-num { font-size: 1.6rem; }
  .enroll-form-wrap { padding: 24px 20px; margin: 0 -4px; }

  /* Blog */
  .blog-hero { padding: 120px 20px 50px; }
  .blog-grid { grid-template-columns: 1fr; padding: 40px 20px; gap: 32px; }
  .blog-card { grid-template-columns: 1fr; }
  .blog-img { min-height: 160px; }

  /* WA float */
  .wa-float { bottom: 20px; left: 16px; width: 50px; height: 50px; }
}

/* ── SMALL PHONE — 480px ── */
@media (max-width: 480px) {
  .hero { padding: 130px 16px 50px; }
  .hero h1 { font-size: clamp(1.8rem, 9vw, 2.4rem); }
  .hero-badge { font-size: .72rem; padding: 5px 12px; }
  .hero-trust { flex-wrap: wrap; gap: 10px; }

  section { padding: 52px 16px; }
  .stats-strip { padding: 24px 16px; }
  .stat-item .num { font-size: 1.9rem; }

  .section-title { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .section-sub { font-size: .92rem; }

  .features-grid { gap: 12px; }
  .feature-card { padding: 20px 16px; }
  .feature-icon { width: 44px; height: 44px; font-size: 1.3rem; }
  .feature-card h3 { font-size: 1rem; }

  .week-item { padding: 14px 14px; gap: 12px; }
  .week-num { width: 34px; height: 34px; font-size: .75rem; }
  .week-content h4 { font-size: .88rem; }

  .audience-card { gap: 14px; padding: 18px 14px; }
  .aud-emoji { font-size: 1.5rem; }
  .aud-text h4 { font-size: .88rem; }

  .testimonial-card { width: 270px; padding: 18px; }
  .testimonial-text { font-size: .85rem; }

  .mentor-img-wrap { max-width: 240px; }
  .mentor-stats-float { right: -8px; bottom: -8px; gap: 10px; padding: 10px 12px; }
  .mf-num { font-size: 1rem; }
  .mf-lbl { font-size: .65rem; }

  .faq-q { font-size: .88rem; padding: 16px; }
  .faq-a { font-size: .85rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  footer { padding: 40px 16px 20px; }

  .lp-hero { padding: 110px 16px 50px; }
  .countdown-wrap { gap: 8px; }
  .countdown-box { min-width: 56px; padding: 10px 10px; }
  .cd-num { font-size: 1.4rem; }
  .enroll-form-wrap { padding: 20px 16px; }

  .blog-grid { padding: 28px 16px; }
  .blog-content { padding: 20px 16px; }
  .blog-card h2 { font-size: 1rem; }

  .guarantee-grid { grid-template-columns: 1fr; }
  .lp-pricing { padding: 60px 16px; }
  .pricing-card { padding: 28px 20px; }
  .price-amount { font-size: 3rem; }

  /* Ticker smaller on mobile */
  .ticker-track { font-size: .68rem; gap: 36px; }
  .ticker-item { gap: 5px; }

  .btn-primary, .btn-secondary { padding: 14px 20px; font-size: .92rem; }
  .cta-trust { font-size: .75rem; flex-direction: column; gap: 4px; }
}

/* ── TICKER — fix height on small screens ── */
@media (max-width: 480px) {
  .ticker-bar { height: 30px; top: 68px; }
  .site-nav { padding: 12px 16px; }
  .nav-logo { font-size: 1.1rem; }
}

/* ── Touch targets — accessibility ── */
@media (max-width: 768px) {
  .faq-q, .week-item, .feature-card, .audience-card { min-height: 44px; }
  a, button { -webkit-tap-highlight-color: rgba(232,160,32,0.15); }
}

/* ── MENTOR FULL-WIDTH (no photo) ── */
.mentor-full {
  max-width: 900px;
  margin: 0 auto;
}
.mentor-full-header {
  margin-bottom: 32px;
}
.mentor-full-header .section-title {
  margin-bottom: 0;
}
.mentor-full-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}
.mentor-lead {
  color: rgba(250,250,247,.65);
  line-height: 1.75;
  font-size: 1.05rem;
  margin: 0;
}
.mentor-stats-full {
  grid-template-columns: repeat(4, 1fr) !important;
  margin-top: 36px;
}
@media (max-width: 768px) {
  .mentor-stats-full {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 480px) {
  .mentor-lead { font-size: .97rem; }
  .mentor-stats-full {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }
}

/* ── HERO CHART CARD — mobile fixes ── */
@media (max-width: 768px) {
  .hero-visual { display: block !important; }
  .hero-visual-inner { padding: 0; }
  .floating-badge { display: none; }
  .chart-card { border-radius: 16px; padding: 20px; }
  .chart-svg-wrap { height: 120px; margin-bottom: 14px; }
  .chart-header { margin-bottom: 14px; }
  .chart-price-val { font-size: 1.2rem; }
  .chart-title { font-size: .88rem; }
  .chart-price-label { font-size: .72rem; }
  .chart-stats { gap: 8px; }
  .stat-box { padding: 10px 8px; }
  .stat-box .s-val { font-size: .9rem; }
}

/* ── NAV-LINKS — ensure not hidden when JS opens them ── */
@media (max-width: 768px) {
  .nav-links {
    display: flex !important; /* override any display:none — visibility controlled by right: -100% */
  }
}

/* ════════════════════════════════════════════════════════════════
   BLOG — FULLY MOBILE FRIENDLY
   ════════════════════════════════════════════════════════════════ */

/* ── Blog listing page ── */
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr; padding: 40px 24px; gap: 28px; }
  .blog-sidebar { display: none; }
}
@media (max-width: 768px) {
  .blog-hero { padding: 110px 20px 40px; }
  .blog-hero .section-title { font-size: clamp(1.5rem,6vw,2rem); }
  .blog-hero .section-sub { font-size: .92rem; }
  .blog-grid { padding: 28px 16px; gap: 20px; }
  .blog-card { grid-template-columns: 1fr; border-radius: 14px; }
  .blog-img { min-height: 110px; font-size: 2.2rem; border-radius: 14px 14px 0 0; }
  .blog-content { padding: 16px; }
  .blog-meta { margin-bottom: 8px; }
  .blog-card h2 { font-size: .95rem; line-height: 1.4; margin-bottom: 8px; }
  .blog-excerpt { font-size: .83rem; margin-bottom: 12px; }
  .read-more { font-size: .82rem; }
}

/* ── Blog post: hero ── */
.post-hero {
  background: var(--gradient);
  padding: 140px 40px 60px;
}
.post-hero-inner { max-width: 800px; margin: 0 auto; }

.post-breadcrumb {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px; flex-wrap: wrap;
}
.post-breadcrumb a {
  font-size: .85rem; color: rgba(250,250,247,.5); text-decoration: none;
  transition: color .2s;
}
.post-breadcrumb a:hover { color: var(--gold); }
.post-breadcrumb span { color: rgba(250,250,247,.2); }

.post-h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 800; letter-spacing: -1px;
  line-height: 1.18; margin-bottom: 16px;
}

.post-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: .85rem; color: rgba(250,250,247,.5); flex-wrap: wrap;
}

/* ── Blog post: body ── */
.post-body { background: var(--ink); padding: 60px 40px; }

.post-layout {
  max-width: 800px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 280px;
  gap: 48px; align-items: start;
}

/* ── Article content ── */
.post-article { line-height: 1.8; color: rgba(250,250,247,.85); }
.post-article p { margin-bottom: 14px; }
.post-article p.mt { margin-top: 14px; }
.post-article p:last-child { margin-bottom: 0; }

.post-lead {
  font-size: 1.05rem; color: rgba(250,250,247,.7);
  margin-bottom: 28px !important;
}

.post-h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 800; letter-spacing: -0.5px;
  margin: 36px 0 12px; color: var(--paper);
  line-height: 1.25;
}

.post-callout {
  background: rgba(232,160,32,.07);
  border: 1px solid rgba(232,160,32,.2);
  border-radius: 14px; padding: 24px; margin: 36px 0;
}
.post-callout-label {
  font-size: .78rem; color: var(--gold); font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px;
}
.post-callout p { color: rgba(250,250,247,.8); margin: 0 !important; }

.post-author-box {
  margin-top: 48px; background: var(--card);
  border: 1px solid var(--border); border-radius: 16px;
  padding: 24px; display: flex; gap: 18px; align-items: flex-start;
}
.post-author-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg,#e8a020,#f5c55a);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .9rem; flex-shrink: 0; color: var(--ink);
}
.post-author-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700; margin-bottom: 4px;
}
.post-author-bio {
  font-size: .85rem; color: rgba(250,250,247,.55);
  line-height: 1.6; margin-bottom: 12px;
}
.post-author-link {
  font-size: .83rem; color: var(--gold);
  text-decoration: none; font-weight: 600;
}
.post-author-link:hover { color: var(--gold-lt); }

/* ── Sidebar ── */
.post-sidebar { position: sticky; top: 120px; }

.toc-list {
  list-style: none; display: flex;
  flex-direction: column; gap: 8px;
}
.toc-link {
  font-size: .85rem; color: rgba(250,250,247,.65);
  text-decoration: none; transition: color .2s;
  display: block; padding: 2px 0;
}
.toc-link:hover { color: var(--gold); }

.sidebar-p {
  font-size: .85rem; color: rgba(250,250,247,.6);
  line-height: 1.6; margin-bottom: 16px;
}

.btn-full {
  display: flex !important;
  justify-content: center;
  font-size: .88rem !important;
  padding: 12px 20px !important;
  width: 100%;
}

/* ── Mobile: blog post ── */
@media (max-width: 900px) {
  .post-layout { grid-template-columns: 1fr; gap: 0; }
  .post-sidebar { display: none; }
}

@media (max-width: 768px) {
  .post-hero { padding: 110px 20px 36px; }
  .post-body { padding: 36px 20px; }
  .post-h2 { margin: 24px 0 10px; }
  .post-lead { font-size: .97rem; }
  .post-callout { padding: 18px; margin: 24px 0; }
  .post-author-box { flex-direction: row; padding: 18px; gap: 14px; }
  .post-author-avatar { width: 46px; height: 46px; font-size: .82rem; }
  .post-author-bio { font-size: .82rem; }
  .post-author-name { font-size: .95rem; }
}

@media (max-width: 480px) {
  .post-hero { padding: 100px 14px 28px; }
  .post-body { padding: 28px 14px; }
  .post-h1 { font-size: clamp(1.35rem, 7vw, 1.75rem); letter-spacing: -.5px; }
  .post-meta { font-size: .76rem; gap: 6px; }
  .post-meta span { display: none; } /* hide separators on very small screens */
  .post-meta time, .post-meta span:nth-child(3) { display: inline; }
  .post-callout { padding: 14px 12px; border-radius: 10px; }
  .post-callout-label { font-size: .72rem; }
  .post-h2 { font-size: clamp(1rem, 5vw, 1.25rem); margin: 20px 0 8px; }
  .post-author-box { padding: 14px; gap: 12px; }
  .post-author-avatar { width: 40px; height: 40px; font-size: .78rem; }
  .post-breadcrumb { font-size: .78rem; }
  .blog-tag { font-size: .67rem; padding: 3px 10px; }
}


/* ═══════════════════════════════════════════════════════════════
   BLOG ENHANCEMENTS v3 — uses existing CSS variable names only
   ═══════════════════════════════════════════════════════════════ */

/* ── Blog Hero: upgrade background ── */
.blog-hero {
  padding: 160px 48px 80px;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(232,160,32,0.10) 0%, transparent 70%),
    linear-gradient(180deg, #090f1e 0%, var(--ink) 100%) !important;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.blog-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 15% 85%, rgba(232,160,32,0.04) 0%, transparent 50%),
              radial-gradient(circle at 85% 15%, rgba(0,200,83,0.03) 0%, transparent 50%);
  pointer-events: none;
}
.blog-hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,160,32,0.12); border: 1px solid rgba(232,160,32,0.25);
  border-radius: 50px; padding: 6px 18px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 24px;
  position: relative;
}
.blog-hero-label::before { content: '●'; font-size: 0.5em; }
.blog-hero .section-title { position: relative; }
.blog-hero .section-title em { font-style: italic; color: var(--gold); }
.blog-hero .section-sub { position: relative; }

/* ── Filter pills row ── */
.blog-filter-row {
  background: rgba(255,255,255,0.025);
  border-bottom: 1px solid var(--border);
  padding: 14px 48px;
  display: flex; align-items: center; gap: 10px;
  overflow-x: auto; scrollbar-width: none;
}
.blog-filter-row::-webkit-scrollbar { display: none; }
.blog-filter-pill {
  display: inline-flex; align-items: center;
  padding: 6px 18px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 500;
  cursor: pointer; border: 1px solid var(--border); background: transparent;
  color: rgba(250,250,247,0.55); transition: all 0.22s; white-space: nowrap;
  font-family: 'IBM Plex Sans', sans-serif;
}
.blog-filter-pill:hover { border-color: rgba(232,160,32,0.4); color: var(--paper); }
.blog-filter-pill.active {
  background: rgba(232,160,32,0.12);
  border-color: rgba(232,160,32,0.4);
  color: var(--gold);
}

/* ── Blog grid layout ── */
.blog-grid {
  max-width: 1280px; margin: 0 auto;
  padding: 56px 48px;
  display: grid; grid-template-columns: 2fr 1fr; gap: 52px;
}

/* ── FEATURED card ── */
.blog-featured-card {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 22px; overflow: hidden; margin-bottom: 28px;
  text-decoration: none; color: inherit;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.blog-featured-card:hover {
  border-color: rgba(232,160,32,0.35);
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.blog-featured-img {
  min-height: 260px;
  background: linear-gradient(135deg, #0f2040, #1a3560);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  position: relative;
}
.blog-featured-body {
  padding: 36px 32px;
  display: flex; flex-direction: column; justify-content: center;
}
.blog-featured-body h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.45rem; font-weight: 800;
  line-height: 1.25; letter-spacing: -0.03em;
  color: var(--paper); margin: 12px 0 14px;
  transition: color 0.2s;
}
.blog-featured-card:hover h2 { color: var(--gold); }
.blog-featured-body .blog-excerpt {
  font-size: 0.88rem; color: rgba(250,250,247,0.55); line-height: 1.68;
  margin-bottom: 20px;
}
.blog-featured-badge {
  background: var(--gold); color: var(--ink);
  font-size: 0.6rem; font-weight: 800; letter-spacing: 2px;
  padding: 3px 10px; border-radius: 4px;
  font-family: 'IBM Plex Sans', sans-serif;
}
.blog-read {
  font-size: 0.75rem; color: rgba(250,250,247,0.45);
  font-family: 'IBM Plex Mono', monospace;
}

/* ── Standard blog cards: improved ── */
.blog-posts { display: flex; flex-direction: column; gap: 20px; }
.blog-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
  display: grid; grid-template-columns: 200px 1fr;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  text-decoration: none; color: inherit;
}
.blog-card:hover {
  border-color: rgba(232,160,32,0.28);
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(0,0,0,0.35);
}
.blog-img {
  min-height: 160px;
  background: linear-gradient(135deg, #0f1e2d, #1a2e45);
  display: flex; align-items: center; justify-content: center; font-size: 2.8rem;
}
.blog-content { padding: 24px 28px; display: flex; flex-direction: column; gap: 8px; }
.blog-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.blog-card h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.08rem; font-weight: 700;
  line-height: 1.35; color: var(--paper); letter-spacing: -0.02em;
  transition: color 0.2s; margin: 0;
}
.blog-card:hover h2, .blog-card h2 a:hover { color: var(--gold); }
.blog-card h2 a { color: inherit; text-decoration: none; }
.blog-excerpt { font-size: 0.86rem; color: rgba(250,250,247,0.5); line-height: 1.65; }
.read-more {
  font-size: 0.84rem; color: var(--gold); font-weight: 600;
  text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s; margin-top: auto;
}
.read-more:hover { gap: 10px; }

/* ── Sidebar stats widget ── */
.blog-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.blog-stat-box {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 10px; padding: 14px; text-align: center;
}
.blog-stat-val {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.3rem; font-weight: 700; color: var(--gold); letter-spacing: -0.03em;
}
.blog-stat-lbl { font-size: 0.68rem; color: rgba(250,250,247,0.45); margin-top: 3px; }

/* ── Reading progress bar ── */
.progress-bar {
  position: fixed; top: 97px; left: 0; height: 3px;
  background: var(--gold); z-index: 850;
  transition: width 0.1s linear; border-radius: 0 2px 2px 0;
  width: 0%;
}

/* ── Post page enhancements ── */
.post-lead {
  border-left: 3px solid var(--gold) !important;
  padding-left: 20px !important;
}
.post-h2::before {
  content: '';
  display: block; width: 36px; height: 3px;
  background: var(--gold); margin-bottom: 12px; border-radius: 2px;
}
.stat-callout {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 24px; margin: 32px 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: center;
}
.sc-val {
  font-family: 'IBM Plex Mono', monospace; font-size: 1.75rem;
  font-weight: 700; color: var(--gold); letter-spacing: -0.04em;
}
.sc-lbl { font-size: 0.72rem; color: rgba(250,250,247,0.45); margin-top: 4px; line-height: 1.4; }

/* Share row */
.share-row {
  margin-top: 36px; padding-top: 32px; border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.share-label {
  font-size: 0.76rem; font-weight: 700; color: rgba(250,250,247,0.45);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.share-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 14px; border-radius: 8px;
  border: 1px solid var(--border); background: rgba(255,255,255,0.03);
  color: rgba(250,250,247,0.55); font-size: 0.78rem; font-weight: 500;
  text-decoration: none; font-family: 'IBM Plex Sans', sans-serif;
  cursor: pointer; transition: all 0.2s;
}
.share-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(232,160,32,0.07); }

/* Related posts */
.related-section { margin-top: 48px; padding-top: 40px; border-top: 1px solid var(--border); }
.related-title {
  font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 800;
  margin-bottom: 20px; letter-spacing: -0.02em;
}
.related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.related-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px;
  padding: 20px; text-decoration: none; color: inherit;
  display: flex; gap: 14px; align-items: flex-start;
  transition: border-color 0.2s, transform 0.2s;
}
.related-card:hover { border-color: rgba(232,160,32,0.3); transform: translateY(-2px); }
.related-emoji { font-size: 1.8rem; flex-shrink: 0; }
.related-tag { font-size: 0.63rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.related-card h4 {
  font-family: 'Playfair Display', serif; font-size: 0.88rem; font-weight: 700;
  line-height: 1.4; color: var(--paper); transition: color 0.2s;
}
.related-card:hover h4 { color: var(--gold); }

/* TOC active state */
.toc-link { display: flex; align-items: flex-start; gap: 10px; border-radius: 8px; }
.toc-link.active { background: rgba(232,160,32,0.1); color: var(--gold); padding-left: 8px; }
.toc-num { font-family: 'IBM Plex Mono', monospace; font-size: 0.68rem; color: rgba(232,160,32,0.4); flex-shrink: 0; padding-top: 2px; }

/* Course sidebar widget */
.course-widget {
  background: linear-gradient(135deg, #0f2040, #1a3060) !important;
  border-color: rgba(100,150,255,0.15) !important;
}
.course-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.course-features li { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; color: rgba(250,250,247,0.7); }
.course-features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }

/* ── RESPONSIVE ── */
@media(max-width: 1024px) {
  .blog-grid { grid-template-columns: 1fr; padding: 40px 24px; gap: 40px; }
  .blog-featured-card { grid-template-columns: 1fr; }
  .blog-featured-img { min-height: 180px; font-size: 4rem; }
  .blog-filter-row { padding: 12px 24px; }
  .related-grid { grid-template-columns: 1fr; }
}
@media(max-width: 768px) {
  .blog-hero { padding: 120px 20px 56px; }
  .blog-filter-row { padding: 12px 16px; gap: 8px; }
  .blog-grid { padding: 32px 16px; }
  .blog-card { grid-template-columns: 1fr; }
  .blog-img { min-height: 110px; font-size: 2.4rem; border-radius: 0; }
  .blog-featured-card { display: block; }
  .blog-featured-img { min-height: 140px; font-size: 3.5rem; }
  .blog-featured-body { padding: 22px 20px; }
  .blog-featured-body h2 { font-size: 1.2rem; }
  .blog-content { padding: 18px 16px; }
  .stat-callout { grid-template-columns: 1fr; text-align: left; gap: 16px; }
  .share-row { gap: 8px; }
}
@media(max-width: 480px) {
  .blog-filter-pill { padding: 5px 12px; font-size: 0.73rem; }
  .blog-card h2 { font-size: 0.98rem; }
}
