/* ==========================================================================
   Future Forex Millionaire — Clean Modern Fintech Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root{
  --bg:#ffffff;
  --bg-alt:#f6f9f9;
  --bg-deep:#eef4f3;
  --ink:#0e1b1a;
  --ink-soft:#5b6b6a;
  --ink-faint:#96a3a2;
  --border:#e5ebea;
  --border-soft:#eef2f1;

  --teal:#0fa98d;
  --teal-2:#14c79d;
  --teal-dark:#0a7e69;
  --teal-tint:#e3f7f2;
  --teal-glow: rgba(15,169,141,.35);

  --gold:#a1812f;
  --gold-2:#c9a44b;
  --gold-tint:#faf5e8;

  --discord:#5865F2;
  --discord-dark:#454fbf;
  --discord-tint:#eef0fe;

  --danger:#e2574c;

  --radius-sm:12px;
  --radius:18px;
  --radius-lg:28px;
  --radius-xl:40px;

  --shadow-sm: 0 2px 10px rgba(14,27,26,.05);
  --shadow: 0 12px 32px rgba(14,27,26,.08);
  --shadow-lg: 0 24px 64px rgba(14,27,26,.12);
  --shadow-teal: 0 18px 40px -12px var(--teal-glow);

  --container: 1180px;
  --nav-h: 84px;

  --ease: cubic-bezier(.16,.84,.44,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:'Inter',system-ui,sans-serif;
  color:var(--ink);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
h1,h2,h3,h4{
  font-family:'Sora',system-ui,sans-serif;
  line-height:1.1;
  margin:0;
  letter-spacing:-.01em;
}
p{ margin:0; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
img{ max-width:100%; display:block; }
button{ font-family:inherit; cursor:pointer; }
::selection{ background:var(--teal); color:#fff; }

.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 28px;
}

/* ---------- Reveal-on-scroll ---------- */
[data-reveal]{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].is-visible{ opacity:1; transform:translateY(0); }
[data-reveal-group] > * { transition-delay:calc(var(--i,0) * 90ms); }

/* ---------- Gradient blobs / mesh background ---------- */
.blob-field{
  position:absolute; inset:0;
  overflow:hidden;
  pointer-events:none;
  z-index:0;
}
.blob{
  position:absolute;
  border-radius:50%;
  filter:blur(70px);
  opacity:.55;
  animation:blobFloat 16s ease-in-out infinite;
  will-change:transform;
}
.blob.b1{ width:420px; height:420px; background:radial-gradient(circle at 30% 30%, var(--teal-2), transparent 70%); top:-120px; left:-100px; animation-duration:18s; }
.blob.b2{ width:360px; height:360px; background:radial-gradient(circle at 60% 40%, #7bd9c4, transparent 70%); top:60px; right:-140px; animation-duration:22s; animation-delay:-4s; }
.blob.b3{ width:300px; height:300px; background:radial-gradient(circle at 50% 50%, var(--gold-2), transparent 70%); bottom:-120px; left:38%; animation-duration:20s; animation-delay:-9s; opacity:.35;}
@keyframes blobFloat{
  0%,100%{ transform:translate(0,0) scale(1); }
  33%{ transform:translate(30px,-24px) scale(1.08); }
  66%{ transform:translate(-24px,18px) scale(.95); }
}

.gradient-text{
  background:linear-gradient(100deg, var(--teal-dark), var(--teal-2) 55%, #57d9b8);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  background-size:200% auto;
  animation:sheen 6s ease-in-out infinite;
}
@keyframes sheen{
  0%,100%{ background-position:0% 50%; }
  50%{ background-position:100% 50%; }
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.nav-topbar{
  background:var(--ink);
  color:#c8d3d2;
  font-size:12.5px;
}
.nav-topbar .container{
  display:flex; justify-content:space-between; align-items:center;
  padding-top:8px; padding-bottom:8px;
}
.nav-topbar a{ color:#c8d3d2; transition:color .2s; }
.nav-topbar a:hover{ color:#fff; }
.nav-topbar .socials{ display:flex; gap:16px; }

.navbar{
  position:sticky; top:0; z-index:100;
  background:rgba(255,255,255,.82);
  backdrop-filter:blur(14px) saturate(160%);
  -webkit-backdrop-filter:blur(14px) saturate(160%);
  border-bottom:1px solid var(--border-soft);
  transition:box-shadow .3s var(--ease), padding .3s var(--ease);
}
.navbar.scrolled{ box-shadow:0 8px 30px rgba(14,27,26,.06); }
.navbar .container{
  display:flex; align-items:center; justify-content:space-between;
  height:var(--nav-h);
  transition:height .3s var(--ease);
}
.navbar.scrolled .container{ height:66px; }

.logo{
  font-family:'Sora',sans-serif;
  font-weight:800;
  font-size:19px;
  display:flex; align-items:center; gap:9px;
  white-space:nowrap;
}
.logo .mark{
  width:34px; height:34px; border-radius:10px;
  background:linear-gradient(135deg, var(--teal), var(--teal-2));
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 6px 16px -4px var(--teal-glow);
  flex:none;
}
.logo .mark svg{ width:18px; height:18px; }
.logo .accent{ color:var(--teal); }

.nav-links{
  display:flex; align-items:center; gap:32px;
  font-size:14.5px; font-weight:600;
}
.nav-links a{
  position:relative; padding:6px 0; color:var(--ink);
}
.nav-links a::after{
  content:''; position:absolute; left:0; bottom:0; height:2px; width:0;
  background:var(--teal); transition:width .25s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after{ width:100%; }
.nav-links a.active{ color:var(--teal-dark); }

.nav-cta{ display:flex; align-items:center; gap:12px; }

.mobile-toggle{
  display:none;
  width:40px; height:40px; border-radius:10px; border:1px solid var(--border);
  background:#fff; align-items:center; justify-content:center; flex-direction:column; gap:4px;
}
.mobile-toggle span{ width:18px; height:2px; background:var(--ink); transition:.3s; }
.mobile-toggle.open span:nth-child(1){ transform:translateY(6px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2){ opacity:0; }
.mobile-toggle.open span:nth-child(3){ transform:translateY(-6px) rotate(-45deg); }

.mobile-menu{
  display:none;
  position:fixed; inset:var(--nav-h) 0 0 0; z-index:90;
  background:#fff;
  padding:24px 28px; overflow:auto;
  transform:translateY(-12px); opacity:0; pointer-events:none;
  transition:.28s var(--ease);
}
.mobile-menu.open{ transform:translateY(0); opacity:1; pointer-events:auto; }
.mobile-menu a{ display:block; padding:14px 0; font-family:'Sora',sans-serif; font-weight:700; font-size:20px; border-bottom:1px solid var(--border-soft); }
.mobile-menu .nav-cta{ margin-top:24px; flex-direction:column; align-items:stretch; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:13px 26px;
  border-radius:999px;
  font-weight:700; font-size:14.5px;
  font-family:'Inter',sans-serif;
  border:1px solid transparent;
  cursor:pointer;
  transition:transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space:nowrap;
}
.btn:active{ transform:translateY(1px) scale(.98); }

.btn-primary{
  background:var(--ink); color:#fff;
  box-shadow:0 16px 32px -14px var(--teal-glow);
}
.btn-primary:hover{ background:var(--teal-dark); transform:translateY(-2px); box-shadow:0 20px 40px -12px var(--teal-glow); }

.btn-outline{
  background:#fff; color:var(--ink); border-color:var(--border);
}
.btn-outline:hover{ border-color:var(--teal); color:var(--teal-dark); transform:translateY(-2px); }

.btn-ghost{ background:transparent; color:var(--ink); padding:13px 8px; }
.btn-ghost:hover{ color:var(--teal-dark); }

.btn-teal{
  background:linear-gradient(120deg, var(--teal), var(--teal-2));
  color:#fff;
  box-shadow:0 16px 34px -12px var(--teal-glow);
}
.btn-teal:hover{ transform:translateY(-2px); box-shadow:0 22px 44px -12px var(--teal-glow); filter:brightness(1.04); }

.btn-gold{
  background:linear-gradient(120deg, var(--gold), var(--gold-2));
  color:#fff;
  box-shadow:0 16px 34px -14px rgba(161,129,47,.45);
}
.btn-gold:hover{ transform:translateY(-2px); box-shadow:0 22px 44px -12px rgba(161,129,47,.5); }

.btn-discord{
  background:var(--discord); color:#fff;
  box-shadow:0 16px 34px -14px rgba(88,101,242,.5);
}
.btn-discord:hover{ background:var(--discord-dark); transform:translateY(-2px); }

.btn-lg{ padding:16px 32px; font-size:15.5px; }
.btn-block{ width:100%; }
.btn[disabled]{ opacity:.55; cursor:not-allowed; transform:none !important; }

/* pill glow wrapper for hero CTAs (matches doc's soft glow under buttons) */
.glow-wrap{ position:relative; display:inline-block; }
.glow-wrap::before{
  content:''; position:absolute; inset:-6px; border-radius:999px;
  background:radial-gradient(circle, var(--teal-glow), transparent 70%);
  filter:blur(10px); opacity:.8; z-index:-1;
}

/* ==========================================================================
   Chips / badges / eyebrows
   ========================================================================== */
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:12.5px; font-weight:700; letter-spacing:.09em; text-transform:uppercase;
  color:var(--teal-dark);
}
.eyebrow::before{ content:''; width:22px; height:2px; background:var(--teal); border-radius:2px; }

.badge-pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:9px 18px; border-radius:999px;
  border:1px solid var(--border);
  background:#fff;
  font-size:13.5px; font-weight:600;
  color:var(--ink-soft);
}
.badge-pill.teal{ border-color:rgba(15,169,141,.3); color:var(--teal-dark); background:var(--teal-tint); }
.badge-pill.gold{ border-color:rgba(161,129,47,.3); color:var(--gold); background:var(--gold-tint); }
.badge-pill .dot{ width:7px; height:7px; border-radius:50%; background:var(--teal); animation:pulseDot 1.8s infinite; }
@keyframes pulseDot{
  0%{ box-shadow:0 0 0 0 var(--teal-glow); }
  70%{ box-shadow:0 0 0 8px transparent; }
  100%{ box-shadow:0 0 0 0 transparent; }
}

.tag{
  display:inline-block; font-size:12px; font-weight:700; padding:5px 11px;
  border-radius:8px; background:var(--teal-tint); color:var(--teal-dark);
  letter-spacing:.02em;
}

/* ==========================================================================
   Layout helpers
   ========================================================================== */
.section{ padding:96px 0; position:relative; }
.section-tight{ padding:64px 0; }
.section-alt{ background:var(--bg-alt); }
.section-ink{ background:var(--ink); color:#fff; }
.section-head{ max-width:640px; margin-bottom:52px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size:clamp(28px,4vw,42px); margin-top:14px; font-weight:800; }
.section-head p{ margin-top:16px; color:var(--ink-soft); font-size:17px; line-height:1.6; }

.grid{ display:grid; gap:24px; }
.grid-2{ grid-template-columns:repeat(2,1fr); }
.grid-3{ grid-template-columns:repeat(3,1fr); }
.grid-4{ grid-template-columns:repeat(4,1fr); }
.grid-5{ grid-template-columns:repeat(5,1fr); }

.divider{ height:1px; background:var(--border); border:none; margin:0; }

.breadcrumb{ font-size:13.5px; color:var(--ink-faint); font-weight:600; }
.breadcrumb a{ color:var(--teal-dark); }

.page-hero{ padding:56px 0 40px; }
.page-hero h1{ font-size:clamp(32px,4.4vw,50px); font-weight:800; margin-top:14px; }
.page-hero p{ margin-top:16px; color:var(--ink-soft); font-size:17px; max-width:680px; line-height:1.6; }

/* ==========================================================================
   Cards
   ========================================================================== */
.card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-lg); border-color:transparent; }

.stat-strip{
  display:grid; grid-template-columns:repeat(4,1fr);
  border:1px solid var(--border); border-radius:var(--radius-lg);
  background:#fff; overflow:hidden;
}
.stat-strip .stat{ padding:34px 20px; text-align:center; border-right:1px solid var(--border-soft); }
.stat-strip .stat:last-child{ border-right:none; }
.stat-num{ font-family:'Sora',sans-serif; font-weight:800; font-size:clamp(26px,3vw,34px); color:var(--teal-dark); }
.stat-label{ margin-top:6px; font-size:12.5px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:var(--ink-faint); }

.logo-strip{
  display:flex; align-items:center; justify-content:space-between; gap:24px;
  flex-wrap:wrap; padding:28px 0; opacity:.7;
}
.logo-strip span{ font-family:'Sora',sans-serif; font-weight:700; color:var(--ink-faint); font-size:15px; letter-spacing:.02em; }

/* Recommended brokers marquee */
.broker-label{
  text-align:center; font-family:'Sora',sans-serif; font-weight:700; font-size:12.5px;
  letter-spacing:.08em; text-transform:uppercase; color:var(--ink-faint); margin-bottom:14px;
}
.broker-marquee{
  overflow:hidden; padding:14px 0;
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
  mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
}
.broker-track{ display:flex; align-items:center; gap:56px; width:max-content; animation:broker-scroll 22s linear infinite; }
.broker-marquee:hover .broker-track{ animation-play-state:paused; }
.broker-track a{
  font-family:'Sora',sans-serif; font-weight:700; color:var(--ink-faint); font-size:16px;
  letter-spacing:.02em; white-space:nowrap; text-decoration:none; transition:color .25s;
}
.broker-track a:hover{ color:var(--teal-dark); }
@keyframes broker-scroll{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

/* Feature card */
.feature-card{
  padding:30px 26px; position:relative; overflow:hidden;
}
.feature-card .icon{
  width:52px; height:52px; border-radius:14px;
  background:var(--teal-tint); color:var(--teal-dark);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:18px;
}
.feature-card .icon svg{ width:24px; height:24px; }
.feature-card h3{ font-size:18px; font-weight:700; }
.feature-card p{ margin-top:10px; color:var(--ink-soft); font-size:14.5px; line-height:1.6; }

/* Course card */
.course-card{ overflow:hidden; display:flex; flex-direction:column; align-self:start; }
.course-card .thumb{
  height:150px; position:relative; overflow:hidden;
  background:linear-gradient(135deg, var(--ink) 0%, var(--teal-dark) 130%);
}
.course-card .thumb canvas{ position:absolute; inset:0; width:100%; height:100%; opacity:.9; }
.course-card .thumb .thumb-tag{
  position:absolute; top:14px; left:14px; z-index:2;
  background:rgba(255,255,255,.14); backdrop-filter:blur(6px);
  color:#fff; font-size:11.5px; font-weight:700; padding:6px 12px; border-radius:999px;
  border:1px solid rgba(255,255,255,.25);
}
.course-card .body{ padding:22px; flex:1; display:flex; flex-direction:column; }
.course-card h3{ font-size:17px; font-weight:700; margin-bottom:8px; }
.course-card p{ color:var(--ink-soft); font-size:14px; line-height:1.55; flex:1; }
.course-card .meta{
  display:flex; align-items:center; justify-content:space-between;
  margin-top:16px; padding-top:16px; border-top:1px solid var(--border-soft);
  font-size:13px; color:var(--ink-faint); font-weight:600;
}
.course-card .meta .price{ color:var(--teal-dark); font-family:'Sora',sans-serif; font-weight:800; font-size:15px; }
.course-toggle{
  display:flex; align-items:center; justify-content:space-between; width:100%;
  margin-top:16px; padding:0; background:none; border:none; cursor:pointer;
  font-family:'Sora',sans-serif; font-weight:700; font-size:13.5px; color:var(--teal-dark);
}
.course-toggle svg{ transition:transform .3s var(--ease); flex:none; }
.course-card.open .course-toggle svg{ transform:rotate(135deg); }
.course-modules{ max-height:0; overflow:hidden; transition:max-height .35s var(--ease); }
.course-modules .module-list{ padding-top:16px; }
.course-modules .module-list .mod{ font-size:13.5px; }

/* Book card */
.book-card{ padding:22px; text-align:center; }
.book-cover{
  width:120px; height:168px; margin:0 auto 18px; border-radius:8px;
  background:linear-gradient(160deg, var(--ink), var(--teal-dark));
  display:flex; align-items:center; justify-content:center; position:relative;
  box-shadow:0 20px 30px -14px rgba(14,27,26,.35), 6px 6px 0 rgba(0,0,0,.06);
  transition:transform .35s var(--ease);
}
.book-card:hover .book-cover{ transform:translateY(-6px) rotate(-2deg); }
.book-cover .spine{ position:absolute; left:0; top:0; bottom:0; width:10px; background:rgba(0,0,0,.18); }
.book-cover span{ color:#fff; font-family:'Sora',sans-serif; font-weight:800; font-size:13px; padding:0 14px; text-align:center; line-height:1.3; }
.book-card h3{ font-size:16px; font-weight:700; }
.book-card .sub{ color:var(--ink-faint); font-size:13px; margin-top:4px; }
.book-card .price{ margin-top:14px; font-family:'Sora',sans-serif; font-weight:800; font-size:19px; color:var(--teal-dark); }

/* Pricing card */
.pricing-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; align-items:stretch; }
.price-card{
  padding:34px 28px; display:flex; flex-direction:column; position:relative;
}
.price-card.featured{
  border-color:var(--teal); box-shadow:var(--shadow-teal); transform:scale(1.03);
  background:linear-gradient(180deg,#fff, var(--teal-tint) 240%);
}
.price-card.featured:hover{ transform:scale(1.03) translateY(-6px); }
.price-card .ribbon{
  position:absolute; top:-14px; left:50%; transform:translateX(-50%);
  background:linear-gradient(120deg, var(--teal), var(--teal-2)); color:#fff;
  font-size:12px; font-weight:700; padding:7px 16px; border-radius:999px;
  box-shadow:0 10px 20px -8px var(--teal-glow);
}
.price-card h3{ font-size:19px; font-weight:700; }
.price-card .desc{ color:var(--ink-soft); font-size:13.5px; margin-top:6px; min-height:36px; }
.price-card .price-row{ margin:22px 0; display:flex; align-items:baseline; gap:6px; }
.price-card .price-old{ text-decoration:line-through; color:var(--ink-faint); font-size:15px; margin-right:6px; }
.price-card .price-amt{ font-family:'Sora',sans-serif; font-weight:800; font-size:38px; }
.price-card .price-per{ color:var(--ink-faint); font-size:14px; font-weight:600; }
.price-card ul{ margin:8px 0 26px; display:flex; flex-direction:column; gap:12px; flex:1; }
.price-card li{ display:flex; align-items:flex-start; gap:10px; font-size:14px; color:var(--ink-soft); }
.price-card li svg{ flex:none; width:18px; height:18px; color:var(--teal); margin-top:1px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position:relative;
  padding:76px 0 40px;
  overflow:hidden;
}
.hero-grid{
  display:grid; grid-template-columns:1.05fr .95fr; gap:60px; align-items:center;
  position:relative; z-index:1;
}
.hero h1{
  font-size:clamp(38px,5vw,58px);
  font-weight:800;
  margin-top:20px;
}
.hero p.lead{
  margin-top:20px; font-size:18px; line-height:1.65; color:var(--ink-soft); max-width:520px;
}
.hero-cta{ display:flex; gap:16px; margin-top:34px; flex-wrap:wrap; }
.trust-row{
  display:flex; align-items:center; gap:14px; margin-top:40px;
}
.avatar-stack{ display:flex; }
.avatar-stack span{
  width:36px; height:36px; border-radius:50%; border:2.5px solid #fff;
  background:linear-gradient(135deg,var(--teal),var(--teal-2)); margin-left:-10px;
  display:flex; align-items:center; justify-content:center; color:#fff; font-size:11px; font-weight:700;
  box-shadow:0 4px 10px rgba(14,27,26,.12);
}
.avatar-stack span:first-child{ margin-left:0; }
.trust-row .label{ font-size:14px; font-weight:600; color:var(--ink-soft); }
.trust-row strong{ color:var(--ink); }

.hero-panel{
  background:#fff; border:1px solid var(--border); border-radius:var(--radius-lg);
  padding:26px; box-shadow:var(--shadow-lg); position:relative; z-index:1;
}
.hero-panel .panel-head{ display:flex; justify-content:space-between; align-items:center; margin-bottom:20px; }
.hero-panel .panel-head h4{ font-size:15px; font-weight:700; }
.hero-panel .panel-head .module{ font-size:13px; font-weight:700; color:var(--teal-dark); background:var(--teal-tint); padding:5px 12px; border-radius:999px; }
.progress-row{ margin-bottom:16px; }
.progress-row:last-child{ margin-bottom:0; }
.progress-row .top{ display:flex; justify-content:space-between; font-size:13.5px; font-weight:600; margin-bottom:8px; }
.progress-row .top span:last-child{ color:var(--teal-dark); font-weight:700; }
.progress-track{ height:8px; border-radius:999px; background:var(--bg-deep); overflow:hidden; }
.progress-fill{
  height:100%; border-radius:999px;
  background:linear-gradient(90deg, var(--teal), var(--teal-2));
  width:0%; transition:width 1.4s var(--ease);
}
.hero-chart-card{
  margin-top:18px; border-radius:var(--radius); overflow:hidden; position:relative;
  background:linear-gradient(160deg,var(--ink),var(--teal-dark)); height:150px;
}
.hero-chart-card canvas{ width:100%; height:100%; display:block; }
.hero-chart-card .chip{
  position:absolute; top:12px; left:12px; font-size:11px; font-weight:700; color:#fff;
  background:rgba(255,255,255,.15); padding:5px 10px; border-radius:999px; backdrop-filter:blur(4px);
}

/* ==========================================================================
   Discord Community section
   ========================================================================== */
.discord-panel{
  position:relative; overflow:hidden;
  border-radius:var(--radius-xl);
  background:radial-gradient(circle at 15% 20%, #6b74f5, var(--discord) 45%, var(--discord-dark) 100%);
  color:#fff; padding:64px 56px;
}
.discord-panel .blob-field .blob{ opacity:.5; }
.discord-panel .discord-grid{
  display:grid; grid-template-columns:1.1fr .9fr; gap:48px; align-items:center; position:relative; z-index:1;
}
.discord-panel .badge-pill{ background:rgba(255,255,255,.14); border-color:rgba(255,255,255,.25); color:#fff; }
.discord-panel .badge-pill .dot{ background:#57f2a4; }
.discord-panel h2{ font-size:clamp(28px,3.6vw,40px); font-weight:800; margin-top:16px; color:#fff; }
.discord-panel p.lead{ margin-top:16px; color:rgba(255,255,255,.85); font-size:16.5px; line-height:1.65; max-width:520px; }
.discord-perks{ margin-top:26px; display:grid; grid-template-columns:1fr 1fr; gap:14px 22px; }
.discord-perks li{ display:flex; gap:10px; font-size:14.5px; color:#fff; align-items:flex-start; }
.discord-perks svg{ flex:none; width:18px; height:18px; color:#8ef2c0; margin-top:2px; }
.discord-cta{ margin-top:30px; display:flex; gap:14px; flex-wrap:wrap; align-items:center; }
.discord-online{ font-size:13.5px; color:rgba(255,255,255,.75); display:flex; align-items:center; gap:8px; }
.discord-online .dot{ width:8px; height:8px; border-radius:50%; background:#57f2a4; animation:pulseDot 1.8s infinite; }

.discord-mock{
  background:rgba(15,20,45,.55); border:1px solid rgba(255,255,255,.16);
  border-radius:var(--radius-lg); padding:20px; backdrop-filter:blur(10px);
  box-shadow:0 30px 60px -20px rgba(0,0,0,.4);
}
.discord-mock .row{
  display:flex; align-items:center; gap:12px; padding:11px 8px; border-radius:10px; transition:background .2s;
}
.discord-mock .row:hover{ background:rgba(255,255,255,.06); }
.discord-mock .row .av{
  width:34px; height:34px; border-radius:50%; flex:none;
  background:linear-gradient(135deg,#8ef2c0,#57d9b8); display:flex; align-items:center; justify-content:center;
  font-size:12px; font-weight:800; color:#0e1b1a;
}
.discord-mock .row .msg{ font-size:13px; color:rgba(255,255,255,.9); }
.discord-mock .row .msg strong{ color:#8ef2c0; display:block; font-size:12.5px; margin-bottom:2px; }
.discord-mock .divider{ background:rgba(255,255,255,.12); margin:10px 0; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testi-track{ display:flex; gap:24px; overflow:hidden; }
.testi-card{
  min-width:340px; padding:28px; display:flex; flex-direction:column; gap:16px;
}
.testi-stars{ color:var(--gold-2); font-size:15px; letter-spacing:2px; }
.testi-card p{ color:var(--ink-soft); font-size:15px; line-height:1.65; }
.testi-person{ display:flex; align-items:center; gap:12px; margin-top:auto; }
.testi-person .av{
  width:42px; height:42px; border-radius:50%;
  background:linear-gradient(135deg,var(--teal),var(--teal-2));
  color:#fff; display:flex; align-items:center; justify-content:center; font-weight:700; font-size:14px;
}
.testi-person strong{ display:block; font-size:14px; }
.testi-person span{ display:block; font-size:12.5px; color:var(--ink-faint); }
.testi-dots{ display:flex; gap:8px; justify-content:center; margin-top:28px; }
.testi-dots button{ width:8px; height:8px; border-radius:50%; background:var(--border); border:none; transition:.25s; }
.testi-dots button.active{ background:var(--teal); width:22px; border-radius:6px; }

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.accordion-item{
  border-bottom:1px solid var(--border);
}
.accordion-item:first-child{ border-top:1px solid var(--border); }
.accordion-q{
  width:100%; display:flex; align-items:center; justify-content:space-between;
  background:none; border:none; padding:22px 4px; text-align:left;
  font-family:'Sora',sans-serif; font-weight:700; font-size:16px; color:var(--ink);
}
.accordion-q .icon{
  width:28px; height:28px; border-radius:50%; border:1.5px solid var(--border);
  display:flex; align-items:center; justify-content:center; flex:none; margin-left:20px;
  transition:transform .3s var(--ease), background .3s, border-color .3s;
}
.accordion-item.open .accordion-q .icon{ background:var(--teal); border-color:var(--teal); transform:rotate(135deg); }
.accordion-item.open .accordion-q .icon svg{ stroke:#fff; }
.accordion-a{ max-height:0; overflow:hidden; transition:max-height .4s var(--ease); }
.accordion-a p{ padding:0 34px 22px 4px; color:var(--ink-soft); font-size:14.5px; line-height:1.65; }

/* ==========================================================================
   Forms
   ========================================================================== */
.field{ margin-bottom:20px; }
.field label{ display:block; font-size:13.5px; font-weight:700; margin-bottom:8px; }
.field input, .field select, .field textarea{
  width:100%; padding:13px 16px; border-radius:12px; border:1.5px solid var(--border);
  font-family:'Inter',sans-serif; font-size:14.5px; color:var(--ink); background:#fff;
  transition:border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color:var(--teal); box-shadow:0 0 0 4px var(--teal-tint);
}
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.checkbox-row{ display:flex; align-items:center; justify-content:space-between; margin-bottom:22px; font-size:13.5px; }
.checkbox-row label{ display:flex; align-items:center; gap:8px; color:var(--ink-soft); font-weight:500; }
.checkbox-row a{ color:var(--teal-dark); font-weight:700; }

/* ==========================================================================
   Footer
   ========================================================================== */
footer{ background:var(--ink); color:#c8d3d2; padding:72px 0 28px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; padding-bottom:48px; border-bottom:1px solid rgba(255,255,255,.08); }
.footer-brand .logo{ color:#fff; }
.footer-brand p{ margin-top:16px; color:#8fa09e; font-size:14px; line-height:1.65; max-width:280px; }
.footer-social{ display:flex; gap:10px; margin-top:20px; }
.footer-social a{
  width:38px; height:38px; border-radius:10px; border:1px solid rgba(255,255,255,.14);
  display:flex; align-items:center; justify-content:center; transition:.25s;
}
.footer-social a:hover{ background:var(--teal); border-color:var(--teal); transform:translateY(-3px); }
footer h5{ font-family:'Sora',sans-serif; font-size:12.5px; letter-spacing:.08em; text-transform:uppercase; color:#8fa09e; margin-bottom:18px; }
footer .flinks{ display:flex; flex-direction:column; gap:12px; font-size:14.5px; }
footer .flinks a{ transition:color .2s; }
footer .flinks a:hover{ color:#fff; }
.footer-bottom{ padding-top:26px; display:flex; justify-content:space-between; align-items:center; font-size:13px; color:#75887f; flex-wrap:wrap; gap:12px; }
.footer-bottom .pay-icons{ display:flex; gap:14px; align-items:center; }

/* ==========================================================================
   Misc components
   ========================================================================== */
.cta-banner{
  position:relative; text-align:center; padding:100px 0; overflow:hidden;
}
.cta-banner h2{ font-size:clamp(30px,4.6vw,50px); font-weight:800; max-width:760px; margin:0 auto; }
.cta-banner p{ margin-top:18px; color:var(--ink-soft); font-size:17px; }
.cta-banner .btn{ margin-top:34px; }

.check-list{ display:flex; flex-direction:column; gap:14px; margin-top:22px; }
.check-list li{ display:flex; gap:12px; align-items:flex-start; font-size:15px; color:var(--ink-soft); }
.check-list svg{ flex:none; width:20px; height:20px; color:var(--teal-dark); background:var(--teal-tint); border-radius:50%; padding:3px; }

/* Safety net: any checkmark-style icon svg without an explicit stroke inherits currentColor */
.check-list svg, .price-card li svg, .discord-perks svg{ stroke:currentColor; }

.module-accordion .accordion-q{ font-size:15px; }
.module-list{ padding:0 34px 22px 4px; display:flex; flex-direction:column; gap:10px; }
.module-list .mod{ font-size:14px; color:var(--ink-soft); display:flex; gap:10px; }
.module-list .mod b{ color:var(--ink); font-weight:700; min-width:18px; }

.sidebar-card{
  background:#fff; border:1px solid var(--border); border-radius:var(--radius-lg);
  padding:28px; box-shadow:var(--shadow); position:sticky; top:110px;
}
.sidebar-card .price-amt{ font-family:'Sora',sans-serif; font-weight:800; font-size:36px; color:var(--teal-dark); text-align:center; }
.sidebar-card .price-per{ text-align:center; color:var(--ink-faint); font-size:13.5px; display:block; margin-top:2px; margin-bottom:22px; }

.instructor-card{ display:flex; gap:20px; align-items:center; padding:26px; }
.instructor-card .av{
  width:76px; height:76px; border-radius:20px; flex:none;
  background:linear-gradient(135deg,var(--teal),var(--teal-dark)); color:#fff;
  display:flex; align-items:center; justify-content:center; font-size:26px; font-weight:800;
}
.instructor-card h4{ font-size:17px; font-weight:700; }
.instructor-card span{ color:var(--teal-dark); font-size:13px; font-weight:700; }
.instructor-card p{ margin-top:8px; color:var(--ink-soft); font-size:14px; line-height:1.6; }

/* Timeline (about page) */
.timeline{ position:relative; padding-left:28px; margin-top:20px; }
.timeline::before{ content:''; position:absolute; left:5px; top:6px; bottom:6px; width:2px; background:var(--border); }
.timeline-item{ position:relative; padding-bottom:32px; }
.timeline-item:last-child{ padding-bottom:0; }
.timeline-item::before{
  content:''; position:absolute; left:-28px; top:4px; width:12px; height:12px; border-radius:50%;
  background:var(--teal); box-shadow:0 0 0 4px var(--teal-tint);
}
.timeline-item .yr{ font-family:'Sora',sans-serif; font-weight:800; color:var(--teal-dark); font-size:14px; }
.timeline-item h4{ font-size:17px; font-weight:700; margin-top:4px; }
.timeline-item p{ color:var(--ink-soft); font-size:14.5px; margin-top:6px; line-height:1.6; max-width:520px; }

.team-card{ text-align:center; padding:32px 24px; }
.team-card .av{
  width:88px; height:88px; border-radius:50%; margin:0 auto 18px;
  background:linear-gradient(135deg,var(--teal),var(--teal-2)); color:#fff;
  display:flex; align-items:center; justify-content:center; font-size:30px; font-weight:800;
  box-shadow:0 14px 30px -10px var(--teal-glow);
}
.team-card h4{ font-size:17px; font-weight:700; }
.team-card span{ color:var(--teal-dark); font-size:13px; font-weight:700; display:block; margin-top:4px; }
.team-card p{ margin-top:10px; color:var(--ink-soft); font-size:13.5px; line-height:1.6; }

/* Contact page */
.contact-options{ display:flex; flex-direction:column; gap:16px; }
.contact-opt{ display:flex; gap:16px; padding:22px; align-items:flex-start; }
.contact-opt .icon{
  width:44px; height:44px; border-radius:12px; background:var(--teal-tint); color:var(--teal-dark);
  display:flex; align-items:center; justify-content:center; flex:none;
}
.contact-opt h4{ font-size:15.5px; font-weight:700; }
.contact-opt p{ margin-top:4px; color:var(--ink-soft); font-size:13.5px; }
.contact-opt a.link{ margin-top:8px; display:inline-block; color:var(--teal-dark); font-weight:700; font-size:13.5px; }

/* Auth pages */
.auth-wrap{ min-height:calc(100vh - var(--nav-h)); display:flex; align-items:center; justify-content:center; padding:60px 20px; position:relative; }
.auth-card{ width:100%; max-width:440px; padding:44px; text-align:center; position:relative; z-index:1; }
.auth-card h1{ font-size:28px; font-weight:800; }
.auth-card > p{ margin-top:10px; color:var(--ink-soft); font-size:14.5px; }
.auth-card form{ margin-top:30px; text-align:left; }
.auth-foot{ margin-top:24px; font-size:14px; color:var(--ink-soft); }
.auth-foot a{ color:var(--teal-dark); font-weight:700; }

/* Dashboard */
.dash-shell{ display:grid; grid-template-columns:260px 1fr; gap:32px; align-items:start; padding:40px 0 90px; }
.dash-nav{ padding:20px; position:sticky; top:110px; }
.dash-nav a{
  display:flex; align-items:center; gap:12px; padding:12px 14px; border-radius:12px;
  font-size:14.5px; font-weight:600; color:var(--ink-soft); margin-bottom:4px; transition:.2s;
}
.dash-nav a:hover{ background:var(--bg-alt); color:var(--ink); }
.dash-nav a.active{ background:var(--teal-tint); color:var(--teal-dark); }
.dash-nav a svg{ width:18px; height:18px; }
.dash-welcome{ display:flex; align-items:center; gap:16px; margin-bottom:32px; }
.dash-welcome .av{
  width:56px; height:56px; border-radius:50%; background:linear-gradient(135deg,var(--teal),var(--teal-2));
  color:#fff; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:20px;
}
.dash-welcome h2{ font-size:24px; font-weight:800; }
.dash-welcome span{ color:var(--ink-soft); font-size:13.5px; }
.dash-course-row{ display:flex; align-items:center; gap:18px; padding:18px; }
.dash-course-row .thumb-sm{ width:66px; height:66px; border-radius:12px; flex:none; background:linear-gradient(135deg,var(--ink),var(--teal-dark)); }
.dash-course-row .info{ flex:1; }
.dash-course-row .info h4{ font-size:14.5px; font-weight:700; }
.dash-course-row .progress-track{ margin-top:8px; max-width:260px; }
.dash-course-row .pct{ font-size:13px; font-weight:700; color:var(--teal-dark); }

/* Blog */
.blog-card{ overflow:hidden; }
.blog-card .thumb{ height:200px; background:linear-gradient(135deg,var(--ink),var(--teal-dark)); position:relative; overflow:hidden; }
.blog-card .thumb canvas{ position:absolute; inset:0; width:100%; height:100%; }
.blog-card .body{ padding:24px; }
.blog-card h3{ font-size:18px; font-weight:700; margin:10px 0 8px; line-height:1.35; }
.blog-card p{ color:var(--ink-soft); font-size:14px; line-height:1.6; }
.blog-card .meta{ margin-top:16px; font-size:12.5px; color:var(--ink-faint); font-weight:600; }
.blog-featured{ display:grid; grid-template-columns:1.1fr .9fr; gap:0; overflow:hidden; }
.blog-featured .thumb{ height:100%; min-height:340px; }
.blog-featured .body{ padding:40px; display:flex; flex-direction:column; justify-content:center; }
.blog-featured h3{ font-size:26px; }

/* Coaching (Inner Circle) page — gold accent theme */
.coaching-hero{ background:var(--ink); color:#fff; padding:100px 0 70px; position:relative; overflow:hidden; }
.coaching-hero .blob.b1{ background:radial-gradient(circle at 30% 30%, var(--gold-2), transparent 70%); }
.coaching-hero .blob.b2{ background:radial-gradient(circle at 60% 40%, var(--gold), transparent 70%); }
.coaching-hero .eyebrow{ color:var(--gold-2); justify-content:center; }
.coaching-hero .eyebrow::before{ background:var(--gold-2); }
.coaching-hero h1{ text-align:center; font-size:clamp(34px,5.4vw,58px); font-weight:800; margin-top:18px; }
.coaching-hero h1 .gold{ background:linear-gradient(100deg,var(--gold-2),#e8cd82); -webkit-background-clip:text; background-clip:text; color:transparent; }
.coaching-hero .sub{ text-align:center; color:rgba(255,255,255,.65); font-size:13.5px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; margin-top:12px; }
.coaching-hero p.lead{ text-align:center; max-width:560px; margin:20px auto 0; color:rgba(255,255,255,.78); font-size:16.5px; line-height:1.65; }
.coaching-price-card{
  max-width:420px; margin:38px auto 0; text-align:center; padding:30px;
  border:1px solid rgba(255,255,255,.18); border-radius:var(--radius-lg);
  background:rgba(255,255,255,.05); backdrop-filter:blur(8px); position:relative; z-index:1;
}
.coaching-price-card .old{ text-decoration:line-through; color:rgba(255,255,255,.4); font-size:20px; margin-right:10px; }
.coaching-price-card .new{ font-family:'Sora',sans-serif; font-weight:800; font-size:42px; color:var(--gold-2); }
.coaching-price-card .fine{ margin-top:8px; color:rgba(255,255,255,.6); font-size:13px; }
.coaching-cta-row{ text-align:center; margin-top:24px; position:relative; z-index:1; }

.include-card{ padding:28px; text-align:left; }
.include-card .icon{
  width:52px; height:52px; border-radius:14px;
  background:var(--gold-tint); color:var(--gold);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:18px;
}
.include-card .icon svg{ width:24px; height:24px; }
.include-card h3{ font-size:16.5px; }

/* Responsive */
@media (max-width:980px){
  .hero-grid{ grid-template-columns:1fr; }
  .grid-4{ grid-template-columns:repeat(2,1fr); }
  .grid-3{ grid-template-columns:repeat(2,1fr); }
  .grid-5{ grid-template-columns:repeat(3,1fr); }
  .stat-strip{ grid-template-columns:repeat(2,1fr); }
  .stat-strip .stat:nth-child(2){ border-right:none; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .discord-panel .discord-grid{ grid-template-columns:1fr; }
  .discord-mock{ order:-1; }
  .pricing-grid{ grid-template-columns:1fr; max-width:420px; margin:0 auto; }
  .price-card.featured{ transform:none; }
  .blog-featured{ grid-template-columns:1fr; }
  .dash-shell{ grid-template-columns:1fr; }
  .dash-nav{ position:static; }
}
@media (max-width:760px){
  .nav-links, .nav-cta, .nav-topbar{ display:none; }
  .mobile-toggle{ display:flex; }
  .mobile-menu{ display:block; }
  .grid-2{ grid-template-columns:1fr; }
  .grid-3{ grid-template-columns:1fr; }
  .grid-4{ grid-template-columns:1fr 1fr; }
  .grid-5{ grid-template-columns:1fr 1fr; }
  .section{ padding:64px 0; }
  .field-row{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; gap:32px 20px; }
  .footer-bottom{ flex-direction:column; align-items:flex-start; }
  .discord-panel{ padding:40px 24px; }
  .discord-perks{ grid-template-columns:1fr; }
}
