/*
Theme Name: LevelUpSmarter
Theme URI: https://levelupsmarter.com
Author: Clever Wolf Digital
Author URI: https://cleverwolfdigital.com
Description: The Productivity School for Entrepreneurs — custom dark premium theme with 3-track funnel architecture.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: Private
Text Domain: levelupsmarter
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --black:        #080808;
  --ink:          #111110;
  --ink-light:    #1a1916;
  --off-white:    #f0ece4;
  --cream:        #e8e2d8;
  --muted:        #7a7468;
  --faint:        rgba(240,236,228,0.055);
  --border:       rgba(240,236,228,0.08);

  /* Track accent colors */
  --revenue:      #c8001e;
  --revenue-dim:  rgba(200,0,30,0.1);
  --systems:      #b8963e;
  --systems-dim:  rgba(184,150,62,0.1);
  --mindset:      #2a6e8c;
  --mindset-dim:  rgba(42,110,140,0.1);

  /* Typography */
  --font-display: 'Unbounded', sans-serif;
  --font-serif:   'Libre Baskerville', serif;
  --font-body:    'DM Sans', sans-serif;

  /* Spacing */
  --section-pad:  7rem 3rem;
  --section-pad-sm: 4rem 1.5rem;
  --max-w:        1160px;
  --max-w-sm:     760px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--black);
  color: var(--off-white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--off-white); }

ul, ol { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--off-white);
}

h1 { font-size: clamp(2.8rem, 6vw, 6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.2rem; letter-spacing: 0; }

p { margin-bottom: 1rem; color: var(--muted); font-size: 0.95rem; line-height: 1.8; }
p:last-child { margin-bottom: 0; }

.text-white  { color: var(--off-white) !important; }
.text-muted  { color: var(--muted) !important; }
.text-revenue{ color: var(--revenue) !important; }
.text-systems{ color: var(--systems) !important; }
.text-mindset{ color: var(--mindset) !important; }

.serif { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.display { font-family: var(--font-display); }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 3rem;
}

.container--sm {
  max-width: var(--max-w-sm);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: var(--section-pad);
}

.section--bordered-top {
  border-top: 1px solid var(--border);
}

.section--dark {
  background: var(--ink);
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ============================================================
   LABELS & EYEBROWS
   ============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.eyebrow--line::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1px;
  background: currentColor;
}

.eyebrow--revenue { color: var(--revenue); }
.eyebrow--systems { color: var(--systems); }
.eyebrow--mindset { color: var(--mindset); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border: none;
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  white-space: nowrap;
  text-decoration: none;
}

.btn:hover { opacity: 0.85; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--revenue  { background: var(--revenue);  color: #fff; }
.btn--systems  { background: var(--systems);  color: #000; }
.btn--mindset  { background: var(--mindset);  color: #fff; }
.btn--outline  { background: transparent; border: 1px solid var(--border); color: var(--off-white); }
.btn--outline:hover { border-color: var(--off-white); }
.btn--lg { padding: 1.1rem 2.25rem; font-size: 0.72rem; }
.btn--full { width: 100%; justify-content: center; }

/* ============================================================
   FORM ELEMENTS
   ============================================================ */
.lus-input {
  background: rgba(240,236,228,0.05);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.85rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--off-white);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.lus-input::placeholder { color: var(--muted); }
.lus-input:focus { border-color: var(--revenue); background: rgba(200,0,30,0.04); }

.form-row { display: flex; gap: 0.6rem; }
.form-note {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-top: 0.6rem;
  text-align: center;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 3rem;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
  background: rgba(8,8,8,0.78);
  transition: padding 0.3s;
}

#site-header.scrolled { padding: 0.75rem 3rem; }

.site-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--off-white);
  text-decoration: none;
}
.site-logo span { color: var(--revenue); }

.site-nav { display: flex; align-items: center; gap: 2.5rem; }

.site-nav a {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.site-nav a:hover,
.site-nav a.current { color: var(--off-white); }

.nav-cta {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  background: var(--revenue);
  color: #fff !important;
  border-radius: 3px;
  transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity: 0.85; color: #fff !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--off-white);
  transition: all 0.3s;
}

/* ============================================================
   HERO — HOMEPAGE
   ============================================================ */
.hero--home {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10rem 2rem 6rem;
  position: relative;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,0,30,0.07) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: background 0.8s ease;
}

.hero__title { margin-bottom: 0.5rem; }
.hero__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--revenue);
  display: block;
  font-size: 0.82em;
  letter-spacing: 0;
  transition: color 0.5s;
}

.hero__sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  margin: 1.5rem auto 3rem;
  line-height: 1.8;
}
.hero__sub strong { color: var(--off-white); font-weight: 500; }

/* ============================================================
   TRACK TABS
   ============================================================ */
.track-tabs {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 0;
}

.track-tab {
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  background: transparent;
  color: var(--muted);
  border: none;
  border-right: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.25s ease;
}
.track-tab:last-child { border-right: none; }
.track-tab:hover:not(.is-active) { background: var(--faint); color: var(--off-white); }

.track-tab.is-active[data-track="revenue"] { background: var(--revenue-dim); color: var(--revenue); }
.track-tab.is-active[data-track="systems"]  { background: var(--systems-dim);  color: var(--systems); }
.track-tab.is-active[data-track="mindset"]  { background: var(--mindset-dim);  color: var(--mindset); }

/* ============================================================
   TRACK SECTIONS
   ============================================================ */
.track-section { display: none; padding-top: 5rem; }
.track-section.is-active { display: block; animation: fadeUpIn 0.4s ease forwards; }

.track-hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: start;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 3rem;
  margin-bottom: 4rem;
}

.track-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.track-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.track-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  color: var(--off-white);
}

.track-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 1.1rem;
}

.track-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 1.75rem;
}

.who-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.who-tag {
  font-size: 0.65rem;
  letter-spacing: 0.07em;
  padding: 0.28rem 0.7rem;
  border-radius: 100px;
  border: 1px solid;
}

/* ============================================================
   FUNNEL CARD
   ============================================================ */
.funnel-card {
  background: var(--ink);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.funnel-step {
  padding: 1.4rem 1.6rem;
  border-bottom: 1px solid rgba(240,236,228,0.055);
  position: relative;
  transition: background 0.2s;
}
.funnel-step:last-child { border-bottom: none; }
.funnel-step:hover { background: var(--faint); }

.step-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.35rem;
}
.step-tag {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.step-price {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
}
.step-name {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--off-white);
  margin-bottom: 0.25rem;
}
.step-detail { font-size: 0.73rem; color: var(--muted); line-height: 1.55; }
.step-arrow {
  position: absolute;
  right: 1.6rem;
  bottom: -10px;
  font-size: 0.65rem;
  color: var(--muted);
  background: var(--ink);
  padding: 0 3px;
  z-index: 1;
}

/* ============================================================
   MODULE GRID
   ============================================================ */
.modules-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 3rem 5rem;
}

.modules-label {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.modules-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.module-card {
  background: var(--ink);
  padding: 1.5rem;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}
.module-card:hover { background: var(--ink-light); }

.module-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.4rem;
  opacity: 0.07;
}
.module-title {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--off-white);
  margin-bottom: 0.25rem;
  font-family: var(--font-body);
  line-height: 1.4;
}
.module-body { font-size: 0.72rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* ============================================================
   CTA BAR
   ============================================================ */
.cta-bar {
  max-width: var(--max-w);
  margin: 0 auto 6rem;
  padding: 0 3rem;
}

.cta-bar__inner {
  background: var(--ink);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.cta-bar__text h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.3rem;
  color: var(--off-white);
}
.cta-bar__text p { font-size: 0.8rem; color: var(--muted); margin: 0; }

.cta-bar__form { display: flex; gap: 0.55rem; align-items: center; }
.cta-bar__form .lus-input { width: 160px; }

/* ============================================================
   PROOF STRIP
   ============================================================ */
.proof-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.4rem 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  background: rgba(240,236,228,0.02);
  overflow: hidden;
}
.proof-strip__label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.proof-strip__divider { width: 1px; height: 22px; background: var(--border); flex-shrink: 0; }
.proof-strip__items { display: flex; gap: 2.5rem; flex-wrap: wrap; align-items: center; }
.proof-item {
  font-size: 0.78rem;
  color: var(--off-white);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.65;
}
.proof-item .stars { color: var(--revenue); font-size: 0.85rem; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  min-height: 65vh;
  display: flex;
  align-items: flex-end;
  padding: 10rem 3rem 5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  background: radial-gradient(ellipse at top right, rgba(200,0,30,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.about-bio {
  padding: var(--section-pad);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 4rem;
}

.value-card {
  background: var(--ink);
  padding: 2.25rem 2rem;
  transition: background 0.2s;
}
.value-card:hover { background: var(--ink-light); }

.value-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.value-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 0.5rem;
  color: var(--off-white);
}
.value-body { font-size: 0.8rem; color: var(--muted); line-height: 1.7; margin: 0; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-pad);
}

.contact-info h2 { margin-bottom: 1.25rem; }
.contact-info p { margin-bottom: 1.75rem; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
}
.contact-detail__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--revenue-dim);
  border: 1px solid rgba(200,0,30,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.contact-detail__label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 0.15rem; }
.contact-detail__val { color: var(--off-white); }

.contact-form-card {
  background: var(--ink);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem;
}
.contact-form-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1.75rem;
  color: var(--off-white);
}

.form-group { margin-bottom: 1.1rem; }
.form-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
textarea.lus-input { resize: vertical; min-height: 120px; }

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a7468' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* ============================================================
   COMPARE TABLE
   ============================================================ */
.compare-section {
  padding: var(--section-pad);
  border-top: 1px solid var(--border);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  margin-top: 3rem;
}
.compare-table thead tr { border-bottom: 1px solid var(--border); }
.compare-table th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 400;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.compare-table th.col-revenue { color: var(--revenue); }
.compare-table th.col-systems  { color: var(--systems); }
.compare-table th.col-mindset  { color: var(--mindset); }

.compare-table tbody tr {
  border-bottom: 1px solid rgba(240,236,228,0.045);
  transition: background 0.15s;
}
.compare-table tbody tr:hover { background: var(--faint); }
.compare-table td {
  padding: 0.9rem 1.25rem;
  color: var(--off-white);
  vertical-align: middle;
}
.compare-table td:first-child { color: var(--muted); font-size: 0.78rem; }

.dot-check {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  margin-right: 0.35rem;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--ink);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 1;
  color: rgba(200,0,30,0.15);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.testimonial-stars { color: var(--revenue); font-size: 0.75rem; margin-bottom: 0.85rem; letter-spacing: 0.1em; }
.testimonial-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--off-white);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.testimonial-author { font-size: 0.72rem; color: var(--muted); }
.testimonial-author strong { color: var(--off-white); display: block; font-family: var(--font-body); font-weight: 500; font-style: normal; margin-bottom: 0.1rem; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  border-top: 1px solid var(--border);
  padding: 4rem 3rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: var(--max-w);
  margin: 0 auto 3rem;
}

.footer-brand .site-logo { font-size: 1.1rem; display: inline-block; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.8rem; color: var(--muted); line-height: 1.7; max-width: 280px; }

.footer-col h4 {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
  font-weight: 400;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  font-size: 0.82rem;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--off-white); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  font-size: 0.7rem;
  color: var(--muted);
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--off-white); }

/* ============================================================
   SUCCESS STATE
   ============================================================ */
.lus-success {
  display: none;
  background: rgba(200,0,30,0.08);
  border: 1px solid rgba(200,0,30,0.25);
  border-radius: 4px;
  padding: 0.9rem 1.1rem;
  font-size: 0.85rem;
  color: var(--off-white);
  margin-top: 0.75rem;
  text-align: center;
}
.lus-success.show { display: block; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 10rem 3rem 5rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at top right, rgba(200,0,30,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUpIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.anim-up { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.anim-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .container { padding: 0 2rem; }
  .track-hero-grid { grid-template-columns: 1fr; }
  .modules-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 4rem 1.5rem; }

  #site-header { padding: 1rem 1.5rem; }
  #site-header.scrolled { padding: 0.75rem 1.5rem; }

  .site-nav { display: none; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--black); align-items: center; justify-content: center; gap: 2rem; z-index: 490; }
  .site-nav.is-open { display: flex; }
  .site-nav a { font-size: 1rem; }
  .nav-toggle { display: flex; z-index: 510; position: relative; }

  .hero--home { padding: 9rem 1.5rem 5rem; }
  .track-tabs { flex-direction: column; }
  .track-tab { border-right: none; border-bottom: 1px solid var(--border); }
  .track-tab:last-child { border-bottom: none; }
  .track-hero-grid { padding: 0 1.5rem; }
  .modules-wrap { padding: 0 1.5rem 4rem; }
  .modules-grid { grid-template-columns: 1fr; }
  .cta-bar { padding: 0 1.5rem; }
  .cta-bar__inner { grid-template-columns: 1fr; }
  .cta-bar__form { flex-wrap: wrap; }
  .cta-bar__form .lus-input { width: 100%; }
  .grid-2 { grid-template-columns: 1fr; gap: 2rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 1.5rem; }
  .proof-strip { padding: 1.25rem 1.5rem; gap: 1rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  #site-footer { padding: 3rem 1.5rem 2rem; }
  .page-hero { padding: 8rem 1.5rem 4rem; }
  .compare-section { padding: 4rem 1.5rem; }
  .compare-table { font-size: 0.75rem; }
  .compare-table th, .compare-table td { padding: 0.75rem 0.75rem; }
}
