/* ============================================================
   Meta Energy Advisors — Global Stylesheet
   ============================================================ */

:root {
  /* Brand */
  --navy-900: #0B1E3F;
  --navy-800: #112649;
  --navy-700: #1A3159;
  --navy-600: #2A4470;
  --navy-500: #3C5788;
  --navy-300: #8FA0BE;

  /* Primary accent — bold orange */
  --gold-600: #D05F15;
  --gold-500: #F47E2D;
  --gold-400: #F89857;
  --gold-100: #FCE3D1;

  /* Neutrals (warm) */
  --bone: #FAF7F2;
  --sand: #F1ECE3;
  --stone: #E4DDD1;
  --ink: #191714;
  --ink-70: rgba(25,23,20,0.70);
  --ink-55: rgba(25,23,20,0.55);
  --ink-40: rgba(25,23,20,0.40);
  --ink-15: rgba(25,23,20,0.15);
  --ink-08: rgba(25,23,20,0.08);

  --success: #2E7D5B;
  --danger: #B23A2D;

  /* Type */
  --font-display: "Instrument Serif", "Times New Roman", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Scale */
  --step-0: 16px;
  --step-1: 18px;
  --step-2: 20px;
  --step-3: 24px;
  --step-4: 32px;
  --step-5: 44px;
  --step-6: 64px;
  --step-7: 96px;
  --step-8: 140px;

  /* Radii */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
  --r-xl: 24px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(11, 30, 63, 0.06), 0 1px 1px rgba(11, 30, 63, 0.04);
  --shadow-md: 0 10px 24px -12px rgba(11, 30, 63, 0.18), 0 2px 4px rgba(11, 30, 63, 0.06);
  --shadow-lg: 0 30px 60px -20px rgba(11, 30, 63, 0.25), 0 10px 20px -10px rgba(11, 30, 63, 0.08);

  /* Grid */
  --container: 1280px;
  --gutter: 28px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.55;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* --- Type --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.02;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(48px, 7vw, var(--step-8)); letter-spacing: -0.025em; }
h2 { font-size: clamp(36px, 5vw, var(--step-7)); letter-spacing: -0.02em; }
h3 { font-size: clamp(28px, 3.5vw, var(--step-6)); }
h4 { font-size: clamp(22px, 2.2vw, var(--step-5)); }

p { margin: 0 0 1em 0; text-wrap: pretty; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-70);
  font-weight: 500;
}
.eyebrow--gold { color: var(--gold-600); }
.eyebrow--light { color: rgba(255,255,255,0.65); }

.serif { font-family: var(--font-display); font-weight: 400; }
.num { font-variant-numeric: tabular-nums; }

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

img { max-width: 100%; display: block; }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container--wide { max-width: 1440px; }
.container--narrow { max-width: 900px; }

section { padding: 96px 0; position: relative; }
section.tight { padding: 64px 0; }
section.loose { padding: 140px 0; }

.grid { display: grid; gap: 24px; }
.two-col { grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
.three-col { grid-template-columns: repeat(3, 1fr); }
.four-col { grid-template-columns: repeat(4, 1fr); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  text-decoration: none !important;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
  box-shadow: 0 6px 20px -8px rgba(244, 126, 45, 0.55);
}
.btn--primary:hover { background: var(--gold-400); border-color: var(--gold-400); }

.btn--dark {
  background: var(--navy-900);
  color: var(--bone);
  border-color: var(--navy-900);
}
.btn--dark:hover { background: var(--navy-800); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink-15);
}
.btn--ghost:hover { border-color: var(--ink); }

.btn--ghost-light {
  background: transparent;
  color: var(--bone);
  border-color: rgba(255,255,255,0.25);
}
.btn--ghost-light:hover { border-color: var(--bone); background: rgba(255,255,255,0.05); }

.btn--lg { padding: 20px 32px; font-size: 16px; }
.btn--sm { padding: 10px 16px; font-size: 13px; }

.btn .arrow { display: inline-block; transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* --- Cards --- */
.card {
  background: #fff;
  border: 1px solid var(--ink-08);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: border-color .2s ease, transform .2s ease;
}
.card:hover { border-color: var(--ink-15); }
.card--dark {
  background: var(--navy-800);
  color: var(--bone);
  border-color: rgba(255,255,255,0.08);
}
.card--bare { background: transparent; border: 1px solid var(--ink-15); }

/* --- Forms --- */
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.field label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-70);
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--ink-15);
  border-radius: var(--r-md);
  padding: 14px 16px;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--navy-900);
  box-shadow: 0 0 0 4px rgba(11,30,63,0.08);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-40); }
.field.error input { border-color: var(--danger); }
.field .err { font-size: 12px; color: var(--danger); }

.form-dark .field label { color: rgba(255,255,255,0.7); }
.form-dark .field input, .form-dark .field select, .form-dark .field textarea {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border-color: rgba(255,255,255,0.15);
}
.form-dark .field input:focus, .form-dark .field select:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(244,126,45,0.22);
}
.form-dark .field input::placeholder { color: rgba(255,255,255,0.4); }
.form-dark .field select option { color: var(--ink); background: #fff; }

/* --- Dark section --- */
.dark-section {
  background: var(--navy-900);
  color: var(--bone);
}
.dark-section .eyebrow { color: rgba(255,255,255,0.6); }
.dark-section p { color: rgba(255,255,255,0.75); }

/* --- Photo placeholders --- */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(
      135deg,
      var(--stone) 0px,
      var(--stone) 14px,
      var(--sand) 14px,
      var(--sand) 28px
    );
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-70);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ph--dark {
  background:
    repeating-linear-gradient(
      135deg,
      var(--navy-800) 0px,
      var(--navy-800) 14px,
      var(--navy-700) 14px,
      var(--navy-700) 28px
    );
  color: rgba(255,255,255,0.55);
}
.ph--gold {
  background:
    repeating-linear-gradient(
      135deg,
      var(--gold-400) 0px,
      var(--gold-400) 14px,
      var(--gold-500) 14px,
      var(--gold-500) 28px
    );
  color: var(--navy-900);
}
.ph .ph-label {
  background: rgba(255,255,255,0.9);
  padding: 6px 10px;
  border-radius: 4px;
}
.ph--dark .ph-label { background: rgba(11,30,63,0.85); color: rgba(255,255,255,0.9); }

/* --- Header / Nav --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--ink-08);
}
.site-header .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  max-width: 1440px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--navy-900);
  letter-spacing: -0.01em;
}
.logo-mark {
  width: 34px; height: 34px;
  border-radius: 6px;
  background: var(--navy-900);
  color: var(--gold-500);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0;
}
.logo small {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-55);
  display: block;
  line-height: 1;
}
.logo-text { display: flex; flex-direction: column; gap: 3px; line-height: 1; }
.logo-text strong { font-family: var(--font-display); font-weight: 400; font-size: 20px; }

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.nav a:hover { text-decoration: none; color: var(--navy-900); }
.nav a.active { color: var(--navy-900); }
.nav a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--gold-500);
}
.nav .dropdown { position: relative; padding-bottom: 14px; margin-bottom: -14px; }
.nav .dropdown-toggle { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
.nav .dropdown-menu {
  position: absolute;
  top: 100%;
  left: -16px;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--ink-08);
  border-radius: var(--r-md);
  padding: 8px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: all .15s ease;
}
.nav .dropdown-menu::before {
  content: '';
  position: absolute;
  top: -14px; left: 0; right: 0;
  height: 14px;
}
.nav .dropdown:hover .dropdown-menu,
.nav .dropdown.open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav .dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 14px;
}
.nav .dropdown-menu a:hover { background: var(--sand); }

.header-cta { display: flex; gap: 12px; align-items: center; }
.phone {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-70);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* --- Hamburger --- */
.hamburger {
  display: none;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--ink-15);
  border-radius: 999px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 16px; height: 1.5px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* --- Mobile menu --- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 73px;
  right: 0;
  left: 0;
  bottom: 0;
  background: var(--bone);
  z-index: 99;
  overflow-y: auto;
}
.mobile-menu.open { display: block; animation: mmSlideIn .25s ease; }
@keyframes mmSlideIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mm-inner { padding: 32px var(--gutter) 80px; max-width: 640px; margin: 0 auto; }
.mm-group { padding: 16px 0; border-bottom: 1px solid var(--ink-08); }
.mm-head {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-55);
  margin-bottom: 10px;
}
.mm-link {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--navy-900);
  padding: 8px 0;
}
.mm-sub {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--navy-900);
  padding: 6px 0;
}
.mm-sub.active, .mm-link.active { color: var(--gold-600); }
.mm-cta { margin-top: 32px; }

/* --- Footer --- */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.7);
  padding: 96px 0 32px;
}
.site-footer h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0 0 18px;
  font-weight: 500;
}
.site-footer a { color: rgba(255,255,255,0.85); font-size: 14px; }
.site-footer a:hover { color: var(--gold-500); text-decoration: none; }
.site-footer .foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 64px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer .brand-line {
  font-family: var(--font-display);
  font-size: 28px;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.05;
}
.site-footer .bar-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
}

/* --- Ticker --- */
.ticker {
  background: var(--navy-900);
  color: var(--bone);
  padding: 12px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ticker-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.ticker-track span { display: inline-flex; align-items: center; gap: 48px; }
.ticker-track .dot { color: var(--gold-500); }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* --- Tag / pill --- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--ink-08);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-70);
}
.tag .ddot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-500); }
.tag--dark { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.8); }
.tag--gold { background: var(--gold-100); color: var(--gold-600); }
.tag--live .ddot { background: #42C887; box-shadow: 0 0 0 4px rgba(66, 200, 135, 0.2); animation: pulse 2s infinite; }
@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* --- Callout numbers --- */
.big-stat {
  font-family: var(--font-display);
  font-size: clamp(64px, 9vw, 160px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--navy-900);
}
.big-stat sup { font-size: 0.35em; vertical-align: top; color: var(--gold-600); }

/* --- Divider --- */
.div-line {
  height: 1px;
  background: var(--ink-08);
  margin: 0;
  border: 0;
}
.div-line--dark { background: rgba(255,255,255,0.1); }

/* --- Accordion --- */
.accordion-item {
  border-bottom: 1px solid var(--ink-08);
}
.accordion-trigger {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: color .15s ease;
}
.accordion-trigger:hover { color: var(--navy-900); }
.accordion-trigger .plus {
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--gold-600);
  transition: transform .2s ease;
  flex-shrink: 0;
}
.accordion-item.open .accordion-trigger .plus { transform: rotate(45deg); }
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.accordion-panel-inner {
  padding: 0 0 28px 0;
  color: var(--ink-70);
  font-size: 16px;
  line-height: 1.65;
  max-width: 720px;
}

/* --- Utils --- */
.center { text-align: center; }
.mono { font-family: var(--font-mono); }
.small { font-size: 13px; }
.muted { color: var(--ink-55); }
.light-muted { color: rgba(255,255,255,0.6); }
.mb-0 { margin-bottom: 0; }
.mb-s { margin-bottom: 12px; }
.mb-m { margin-bottom: 24px; }
.mb-l { margin-bottom: 48px; }
.gap-s { gap: 12px; } .gap-m { gap: 24px; } .gap-l { gap: 48px; }
.flex { display: flex; } .ai-c { align-items: center; } .jc-sb { justify-content: space-between; } .jc-c { justify-content: center; }

/* --- Utility: responsive layout helpers --- */
.field-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.two-col-form { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.hero-cols  { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: end; }

/* --- Responsive --- */
@media (max-width: 980px) {
  .two-col, .three-col, .four-col { grid-template-columns: 1fr; }
  .site-footer .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .site-footer .bar-bottom { flex-direction: column; gap: 8px; text-align: center; }
  section { padding: 64px 0; }
  .nav { display: none; }
  .hamburger { display: inline-flex; }
  .phone, .header-cta-btn { display: none; }
  .two-col-form { grid-template-columns: 1fr; gap: 48px; }
  .hero-cols    { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  .field-row { grid-template-columns: 1fr; }

  /* Experience strip */
  .exp-inner { flex-direction: column; align-items: center; text-align: center; gap: 10px; }
  .exp-num   { font-size: 80px; }
  .exp-sep   { display: none; }
  .exp-body  { max-width: 100%; }

  /* Trust / real-work grid: 2 col, no wide spans (avoids orphan gaps on narrow screens) */
  .trust-grid { grid-template-columns: repeat(2, 1fr) !important; grid-auto-flow: dense !important; }
  .trust-grid .ph.wide { grid-column: span 1 !important; aspect-ratio: 1 !important; }

  /* Team grid: single column */
  .team-grid { grid-template-columns: 1fr !important; }
  .sec-head  { grid-template-columns: 1fr !important; gap: 16px !important; }

  /* Lead checks alignment */
  .lead-checks { padding: 0; }
  .lead-checks li { justify-content: flex-start; align-items: flex-start; }
  .lead-checks .check-ic { flex-shrink: 0; margin-top: 2px; }

  /* Lead section */
  .lead-section { padding: 64px 0; }

  /* Contact info values */
  .info-row .val { font-size: 22px !important; line-height: 1.3; }
}

/* --- Toasts --- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translate(-50%, 80px);
  background: var(--navy-900);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  font-size: 14px;
  opacity: 0;
  transition: all .3s ease;
  z-index: 1000;
  display: flex; align-items: center; gap: 10px;
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }
.toast .check {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold-500); color: var(--navy-900);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
}

/* --- Modal --- */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(11, 30, 63, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-backdrop.show { display: flex; }
.modal {
  background: var(--bone);
  border-radius: var(--r-xl);
  max-width: 560px;
  width: 100%;
  padding: 40px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--ink-08);
  border: 0; cursor: pointer;
  font-size: 18px;
}

/* Number running animation */
.rolling-digit {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* --- Spots Slider --- */
.spots-slider {
  background: var(--navy-900);
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.slider-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.slider-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.slider-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.slider-label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 4px;
}
.slider-count {
  font-family: var(--font-display);
  font-size: 26px; color: #fff; line-height: 1.1;
}
.slider-count .count-num { color: var(--gold-500); }
.slider-right {
  display: flex; align-items: center; gap: 20px;
  flex: 1; min-width: 280px; max-width: 520px;
}
.slider-enrolled {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); white-space: nowrap;
}
.slider-pct {
  font-family: var(--font-display);
  font-size: 30px; color: var(--gold-500);
  line-height: 1; white-space: nowrap;
}
.slider-bar {
  flex: 1;
  height: 10px;
  background: rgba(255,255,255,0.12);
  border-radius: 5px;
  overflow: hidden;
}
.slider-bar-fill {
  height: 100%;
  background: var(--gold-500);
  border-radius: 5px;
  transition: width 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (max-width: 680px) {
  .slider-inner { flex-direction: column; align-items: center; text-align: center; gap: 16px; }
  .slider-left  { justify-content: center; }
  .slider-right { min-width: 100%; justify-content: center; }
}

/* --- Experience Strip --- */
.exp-strip {
  background: var(--sand);
  border-top: 1px solid var(--ink-08);
  border-bottom: 1px solid var(--ink-08);
  padding: 18px 0;
}
.exp-inner {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.exp-num {
  font-family: var(--font-display);
  font-size: 52px; color: var(--gold-600); line-height: 1;
}
.exp-body {
  font-size: 14px; color: var(--ink-70); max-width: 340px; line-height: 1.4;
}
.exp-sep {
  color: var(--gold-500); font-weight: 600;
}
.exp-stat {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-55);
}
