/* ============================================================
   ELEVATE DIGITAL — neon restyle (approved 8 Jul 2026)
   Built on the brand tokens in C:\Users\Administrator\web-build\
   elevate-brand.css (logo-sampled neon gradient on near-black).
   Type: Unbounded (display) / Instrument Sans (body) / Space Mono (mono).
   Pre-restyle Hormozi-match CSS preserved in git (commit 1f12b2c).
   ============================================================ */

:root {
  /* Brand tokens (mirror elevate-brand.css) */
  --ed-neon-1: #7B2FF0;
  --ed-neon-2: #9B30F2;
  --ed-neon-3: #C42DD0;
  --ed-neon-4: #E64DC0;
  --ed-gradient: linear-gradient(92deg, var(--ed-neon-1) 0%, var(--ed-neon-2) 34%, var(--ed-neon-3) 68%, var(--ed-neon-4) 100%);
  --ed-ink: #0B0D1A;
  --ed-panel: #12152A;
  --ed-panel-2: #171B36;
  --ed-line: rgba(155, 48, 242, .18);
  --ed-line-hot: rgba(230, 77, 192, .45);

  --ed-font-display: 'Unbounded', sans-serif;
  --ed-font-body: 'Instrument Sans', sans-serif;
  --ed-font-mono: 'Space Mono', monospace;

  --ed-ease: cubic-bezier(.22, 1, .36, 1);

  /* Aliases consumed by the legal pages' inline styles */
  --text: #F2F1FA;
  --text-muted: #9DA0BF;
  --accent: #C42DD0;
}

/* ---------- Base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
button { font: inherit; color: inherit; }

body {
  position: relative;
  background: var(--ed-ink);
  color: var(--text);
  font-family: var(--ed-font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Glow pools flowing down the page + film grain */
body::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
  background:
    radial-gradient(900px 600px at 8% 0%, rgba(123, 47, 240, .16), transparent 60%),
    radial-gradient(800px 560px at 96% 4%, rgba(230, 77, 192, .12), transparent 60%),
    radial-gradient(900px 600px at 12% 38%, rgba(123, 47, 240, .07), transparent 65%),
    radial-gradient(900px 600px at 88% 68%, rgba(196, 45, 208, .08), transparent 65%),
    radial-gradient(700px 500px at 50% 100%, rgba(196, 45, 208, .12), transparent 65%);
}
body::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none; z-index: 1; opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

main, nav, header, section, footer, .announcement-bar { position: relative; z-index: 2; }

h1, h2, h3, h4 { font-family: var(--ed-font-display); }

::selection { background: var(--ed-neon-3); color: #fff; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--ed-neon-4);
  outline-offset: 3px;
  border-radius: 4px;
}

img { max-width: 100%; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 40px; }

.mono {
  font-family: var(--ed-font-mono);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.grad-text {
  background: var(--ed-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Announcement bar (fixed; script.js pads body) ---------- */
.announcement-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: rgba(11, 13, 26, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ed-line);
}
.announcement-bar::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px;
  background: var(--ed-gradient); opacity: .55;
}
.announcement-bar a {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  padding: 11px 16px;
  color: var(--text); text-decoration: none;
  font-family: var(--ed-font-mono); font-size: 12px; letter-spacing: .08em;
}
.announcement-badge {
  background: var(--ed-gradient);
  color: #fff; font-weight: 700; font-size: 10px; letter-spacing: .18em;
  padding: 3px 10px; border-radius: 100px;
}
.announcement-text strong { color: #fff; font-weight: 700; }
.announcement-arrow { display: inline-flex; }
.announcement-arrow svg { width: 26px; height: 13px; }

/* ---------- Navbar ---------- */
.navbar { padding: 26px 0 10px; }
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text); }
.logo img { height: 34px; }
.logo-text {
  font-family: var(--ed-font-display); font-weight: 700; font-size: 14px; letter-spacing: .06em;
}
.logo-dot { color: var(--ed-neon-4); }

.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; }
.nav-links a {
  font-family: var(--ed-font-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-muted); text-decoration: none;
  transition: color .2s var(--ed-ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a.nav-cta {
  color: var(--text); padding: 11px 22px; border-radius: 100px; white-space: nowrap;
  background: linear-gradient(var(--ed-ink), var(--ed-ink)) padding-box, var(--ed-gradient) border-box;
  border: 1px solid transparent;
  transition: box-shadow .25s var(--ed-ease);
}
.nav-links a.nav-cta:hover { box-shadow: 0 0 24px rgba(196, 45, 208, .45); }

.mobile-toggle, .mobile-close { display: none; background: none; border: none; cursor: pointer; }
.mobile-close-wrap { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 62px 0 30px; }

.traj {
  position: absolute; left: 0; right: 0; top: 20px;
  width: 100%; height: 640px;
  z-index: 0; pointer-events: none;
}

.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: 40px; align-items: center;
}

.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 26px; }
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--ed-gradient); }

.hero h1 {
  font-weight: 800;
  font-size: clamp(38px, 4.6vw, 62px);
  line-height: 1.08; letter-spacing: -.01em;
  text-wrap: balance;
  margin-bottom: 26px;
}
.hero .lede { font-size: 19px; color: var(--text-muted); max-width: 30em; margin-bottom: 38px; }

.cta-row { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }

.btn-primary {
  display: inline-block; text-align: center; line-height: 1.4;
  font-family: var(--ed-font-display); font-weight: 700; font-size: 14px; letter-spacing: .05em;
  color: #fff; text-decoration: none;
  padding: 18px 36px; border-radius: 16px;
  background: var(--ed-gradient);
  box-shadow: 0 8px 40px rgba(196, 45, 208, .45), 0 2px 10px rgba(123, 47, 240, .5);
  transition: transform .25s var(--ed-ease), box-shadow .25s var(--ed-ease);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(230, 77, 192, .4), 0 26px 80px -14px rgba(196, 45, 208, .6);
}
.btn-ghost {
  font-family: var(--ed-font-mono); font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text); text-decoration: none;
  border-bottom: 1px solid var(--ed-neon-3); padding-bottom: 4px;
}
.btn-ghost:hover { color: var(--ed-neon-4); }

.founder-slot { position: relative; justify-self: end; width: min(380px, 100%); }
.founder-slot::before {
  content: ""; position: absolute; inset: -8%;
  border-radius: 32px;
  background: radial-gradient(closest-side, rgba(155, 48, 242, .35), transparent 75%);
  filter: blur(12px);
}
.founder-slot img {
  position: relative; width: 100%; display: block;
  border-radius: 24px;
  border: 1px solid var(--ed-line-hot);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
}
.founder-tag {
  position: absolute; left: -26px; bottom: 26px;
  background: var(--ed-panel); border: 1px solid var(--ed-line);
  border-radius: 12px; padding: 12px 18px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .5);
}
.founder-tag strong { font-family: var(--ed-font-display); font-size: 13px; font-weight: 700; display: block; }
.founder-tag span { font-family: var(--ed-font-mono); font-size: 11px; color: var(--text-muted); letter-spacing: .1em; }

/* Stat nodes on the trajectory */
.stats {
  position: relative; z-index: 2;
  display: flex; justify-content: space-between;
  max-width: 880px; margin: 48px 0 0;
}
.stat { position: relative; padding-left: 26px; }
.stat::before {
  content: ""; position: absolute; left: 0; top: 10px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--ed-gradient);
  box-shadow: 0 0 18px rgba(230, 77, 192, .9);
}
.stat b { font-family: var(--ed-font-display); font-weight: 700; font-size: 30px; display: block; line-height: 1.1; }
.stat i {
  font-style: normal; font-family: var(--ed-font-mono);
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--text-muted);
}

/* ---------- Section heads ---------- */
h2 {
  font-weight: 700;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15; letter-spacing: -.01em;
}
.sec-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 44px; }
.sec-head p { color: var(--text-muted); max-width: 26em; }
.sec-head .mono { display: block; margin-bottom: 12px; }

/* ---------- Training ---------- */
.training { padding: 120px 0 30px; }
.training-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.training-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--ed-panel);
  border: 1px solid rgba(155, 48, 242, .14);
  border-radius: 18px; padding: 24px 22px 22px;
  overflow: hidden;
  transition: transform .3s var(--ed-ease), box-shadow .3s var(--ed-ease), border-color .3s var(--ed-ease);
}
.training-card::before {
  content: ""; position: absolute; left: 0; top: 0; right: 0; height: 3px;
  background: var(--ed-gradient); opacity: .25;
  transition: opacity .3s var(--ed-ease);
}
.training-card:hover {
  transform: translateY(-6px);
  background: var(--ed-panel-2);
  border-color: var(--ed-line-hot);
  box-shadow: 0 18px 60px rgba(123, 47, 240, .25);
}
.training-card:hover::before { opacity: 1; }

.training-badge-wrap { margin-bottom: 14px; }
.training-badge {
  font-family: var(--ed-font-mono); font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--text-muted);
}
.training-badge.new-release, .training-badge.live-badge { color: var(--ed-neon-4); }

.training-card h3 {
  font-weight: 500; font-size: 16px; line-height: 1.35;
  margin-bottom: 18px; min-height: 44px;
}
.training-image-link { display: block; margin-bottom: 20px; }
.training-figure {
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--ed-line);
  aspect-ratio: 4 / 3;
}
.training-figure img { width: 100%; height: 100%; object-fit: cover; display: block; }

.btn-training {
  margin-top: auto;
  font-family: var(--ed-font-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text); text-decoration: none;
}
.btn-training::after { content: " ->"; color: var(--ed-neon-4); }
.btn-training:hover { color: var(--ed-neon-4); }

/* ---------- FAQ ---------- */
.faq { padding: 110px 0 20px; }
.faq h2 { margin-bottom: 40px; }
.faq-list { max-width: 820px; }
.faq-item {
  background: var(--ed-panel);
  border: 1px solid rgba(155, 48, 242, .14);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .3s var(--ed-ease);
}
.faq-item.active { border-color: var(--ed-line-hot); background: var(--ed-panel-2); }
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: none; cursor: pointer;
  padding: 20px 24px;
  color: var(--text); text-align: left;
  font-family: var(--ed-font-body); font-weight: 600; font-size: 17px;
}
.faq-question i {
  color: var(--ed-neon-4); font-size: 22px; flex-shrink: 0;
  transition: transform .3s var(--ed-ease);
}
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .35s var(--ed-ease);
}
.faq-answer p { padding: 0 24px 22px; color: var(--text-muted); font-size: 16px; }
.faq-answer a { color: var(--ed-neon-4); }

/* ---------- About the founder ---------- */
.about-founder { padding: 110px 0 20px; }
.about-founder h2 { margin-bottom: 44px; }
.founder-layout {
  display: grid; grid-template-columns: .8fr 1.2fr;
  gap: 56px; align-items: center;
}
.founder-image { position: relative; }
.founder-image::before {
  content: ""; position: absolute; inset: -6%;
  border-radius: 32px;
  background: radial-gradient(closest-side, rgba(123, 47, 240, .3), transparent 75%);
  filter: blur(12px);
}
.founder-image img {
  position: relative; width: 100%; display: block;
  border-radius: 24px;
  border: 1px solid var(--ed-line);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
}
.founder-bio p { color: var(--text-muted); margin-bottom: 20px; }
.founder-bio strong { color: var(--text); }

/* ---------- Final CTA ---------- */
.final-cta { padding: 110px 0 90px; }
.cta-content {
  position: relative; text-align: center;
  border-radius: 28px; padding: 66px 60px;
  overflow: hidden;
  background:
    radial-gradient(720px 320px at 50% 120%, rgba(230, 77, 192, .3), transparent 70%),
    radial-gradient(600px 300px at 12% -30%, rgba(123, 47, 240, .33), transparent 70%),
    var(--ed-panel);
  border: 1px solid rgba(196, 45, 208, .3);
}
.cta-label {
  font-family: var(--ed-font-mono); font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ed-neon-4);
}
.cta-content h2 { font-size: clamp(30px, 3.6vw, 46px); margin: 14px 0 30px; }
.cta-image { max-width: 640px; margin: 0 auto 36px; }
.cta-image img {
  width: 100%; display: block; border-radius: 16px;
  border: 1px solid var(--ed-line);
}

/* ---------- Footer ---------- */
.footer { border-top: 1px solid rgba(155, 48, 242, .15); padding: 40px 0 44px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-left { display: flex; align-items: center; gap: 12px; }
.footer-logo { height: 26px; }
.footer-domain { font-family: var(--ed-font-mono); font-size: 12px; letter-spacing: .14em; color: var(--text-muted); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 22px; list-style: none; }
.footer-nav a, .footer-privacy a {
  font-family: var(--ed-font-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-muted); text-decoration: none;
}
.footer-nav a:hover, .footer-privacy a:hover { color: var(--ed-neon-4); }
.footer-privacy ul { display: flex; gap: 22px; list-style: none; margin-top: 22px; }
.footer__copyright { margin-top: 30px; }
.footer-disclaimer { font-size: 11px; line-height: 1.7; color: rgba(157, 160, 191, .55); max-width: 980px; }

/* ---------- Legal pages ---------- */
.legal-page h1 { font-weight: 700; }
.legal-page h2 { font-size: 1.2rem; }

/* ---------- Mobile ---------- */
@media (max-width: 980px) {
  .training-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .container { padding: 0 22px; }

  .announcement-bar a { font-size: 10px; letter-spacing: .04em; gap: 10px; padding: 9px 12px; }
  .announcement-arrow { display: none; }

  /* Slide-in nav panel (script.js toggles .active + body.menu-open) */
  .nav-links {
    position: fixed; inset: 0; z-index: 950;
    display: none;
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 30px; padding: 40px 34px;
    background: rgba(11, 13, 26, .97);
    backdrop-filter: blur(14px);
  }
  .nav-links.active { display: flex; }
  .nav-links a { font-size: 15px; }
  .nav-links a.nav-cta { font-size: 13px; }
  body.menu-open { overflow: hidden; }

  .mobile-toggle { display: flex; flex-direction: column; gap: 5px; padding: 6px; }
  .mobile-toggle .bar { width: 24px; height: 2px; background: var(--text); display: block; }
  .mobile-close-wrap { display: block; position: absolute; top: 26px; right: 22px; }
  .mobile-close { display: block; color: var(--text); font-size: 34px; }

  .hero { padding-top: 34px; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .founder-slot { justify-self: center; }
  .founder-tag { left: 12px; }
  .traj { display: none; }

  .stats { flex-direction: column; gap: 26px; margin-top: 54px; }

  .sec-head { flex-direction: column; align-items: flex-start; }
  .training-grid { grid-template-columns: 1fr; }
  .training-card h3 { min-height: 0; }

  .founder-layout { grid-template-columns: 1fr; gap: 40px; }
  .founder-image { max-width: 380px; }

  .cta-content { padding: 50px 26px; }
  .btn-primary { font-size: 13px; padding: 16px 26px; }
  .logo-text { font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
