/* =========================================================================
   PROJECT FOX — Elite Performance Coaching
   Dark luxe athletic. Custom design system. No framework dependency.
   ========================================================================= */

/* ----------------------------------------------------------------- Tokens */
:root {
  /* Surfaces */
  --ink:        #0a0a0b;
  --ink-2:      #100f12;
  --surface:    #161519;
  --surface-2:  #1c1a20;
  --surface-3:  #232128;

  /* Lines */
  --line:        rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.15);

  /* Text */
  --text:    #f4f1ec;
  --muted:   #b3aca3;
  --faint:   #837d75;

  /* Brand — fox amber + brass */
  --amber:    #ff7a33;
  --amber-2:  #ff9a4d;
  --ember:    #e0501c;
  --brass:    #d4a537;
  --brass-2:  #eac46a;

  /* Accent washes */
  --amber-glow: rgba(255, 122, 51, 0.18);
  --amber-soft: rgba(255, 122, 51, 0.08);

  /* Type */
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Geometry */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-xl: 32px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 48px);

  /* Shadows */
  --shadow:    0 24px 60px -20px rgba(0, 0, 0, 0.7);
  --shadow-lg: 0 40px 100px -30px rgba(0, 0, 0, 0.85);
  --glow:      0 0 0 1px rgba(255,122,51,0.4), 0 20px 60px -18px rgba(255,122,51,0.35);
}

/* ------------------------------------------------------------------ Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--body);
  background: var(--ink);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
input, select, textarea { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }

::selection { background: var(--amber); color: #0a0a0b; }

:focus-visible {
  outline: 2px solid var(--amber-2);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: fixed; top: -100px; left: 16px; z-index: 200;
  background: var(--amber); color: #0a0a0b; padding: 12px 20px;
  border-radius: var(--r-sm); font-weight: 600; transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; }

/* ------------------------------------------------------------- Background */
.backdrop {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(1100px 700px at 78% -8%, var(--amber-glow), transparent 60%),
    radial-gradient(900px 600px at 8% 12%, rgba(212,165,55,0.10), transparent 55%),
    radial-gradient(1200px 900px at 50% 110%, rgba(255,122,51,0.08), transparent 60%),
    var(--ink);
}
.grain {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.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.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------- Typography */
h1, h2, h3, .display {
  font-family: var(--display);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--amber-2);
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px;
  background: linear-gradient(90deg, var(--amber), transparent);
}
.eyebrow.center::before { display: none; }

.section-title { font-size: clamp(2.4rem, 5.5vw, 4.4rem); }
.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--muted); max-width: 56ch; line-height: 1.65;
}
.amber-text { color: var(--amber-2); }
.brass-text {
  background: linear-gradient(180deg, var(--brass-2), var(--brass));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------------------------------------------------------------- Layout */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
section { position: relative; padding-block: clamp(72px, 11vw, 140px); }
.section-head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 20px; }
.section-head p { margin-top: 22px; }
.rule { height: 1px; background: var(--line); border: 0; }

/* --------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px; border-radius: var(--r-sm);
  font-weight: 600; font-size: 0.96rem; letter-spacing: 0.01em;
  cursor: pointer; position: relative; white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              background-color .25s var(--ease), border-color .25s var(--ease), color .2s;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: linear-gradient(180deg, var(--amber-2), var(--amber));
  color: #160a02;
  box-shadow: 0 10px 30px -10px rgba(255,122,51,0.55), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-primary:hover {
  box-shadow: 0 16px 44px -10px rgba(255,122,51,0.7), inset 0 1px 0 rgba(255,255,255,0.3);
  transform: translateY(-2px);
}
.btn-ghost {
  border: 1px solid var(--line-strong); color: var(--text);
  background: rgba(255,255,255,0.02);
}
.btn-ghost:hover { border-color: var(--amber); background: var(--amber-soft); color: var(--amber-2); transform: translateY(-2px); }
.btn-brass {
  background: linear-gradient(180deg, var(--brass-2), var(--brass));
  color: #1a1304;
  box-shadow: 0 10px 30px -10px rgba(212,165,55,0.5), inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-brass:hover { transform: translateY(-2px); box-shadow: 0 16px 44px -10px rgba(212,165,55,0.65); }
.btn-block { width: 100%; }
.btn-lg { padding: 18px 34px; font-size: 1.02rem; }

/* ----------------------------------------------------------------- Header */
.header {
  position: fixed; inset: 16px 16px auto 16px; z-index: 100;
  max-width: calc(var(--maxw) + 32px); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 12px 14px 12px 20px; border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(12, 11, 14, 0.55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  transition: background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.header.scrolled { background: rgba(10, 9, 12, 0.82); box-shadow: var(--shadow); border-color: var(--line-strong); }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand .mark { width: 34px; height: 34px; flex: none; }
.brand .wordmark {
  font-family: var(--display); font-weight: 700; font-size: 1.35rem;
  letter-spacing: 0.04em; text-transform: uppercase; line-height: 1;
}
.brand .wordmark span { color: var(--amber); }
.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  padding: 9px 14px; border-radius: 10px; font-size: 0.92rem; font-weight: 500;
  color: var(--muted); transition: color .2s, background-color .2s;
}
.nav a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.header-cta { display: flex; align-items: center; gap: 8px; }
.header-cta .btn { padding: 11px 20px; font-size: 0.9rem; }
.nav-login { font-size: 0.9rem; font-weight: 500; color: var(--muted); padding: 9px 10px; transition: color .2s; }
.nav-login:hover { color: var(--amber-2); }
@media (max-width: 1024px) { .nav-login { display: none; } }

.menu-toggle {
  display: none; width: 44px; height: 44px; border-radius: 12px;
  border: 1px solid var(--line-strong); align-items: center; justify-content: center;
}
.menu-toggle svg { width: 22px; height: 22px; }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99; display: flex; flex-direction: column;
  padding: 96px var(--gutter) 40px; gap: 6px;
  background: rgba(10,9,12,0.97); backdrop-filter: blur(20px);
  transform: translateY(-100%); opacity: 0; pointer-events: none;
  transition: transform .45s var(--ease), opacity .3s var(--ease);
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--display); text-transform: uppercase; font-size: 2rem;
  letter-spacing: 0.02em; padding: 14px 0; border-bottom: 1px solid var(--line);
  color: var(--text); transition: color .2s, padding-left .2s;
}
.mobile-menu a:hover { color: var(--amber); padding-left: 10px; }
.mobile-menu .btn { margin-top: 28px; }

/* ------------------------------------------------------------------- Hero */
.hero { padding-top: clamp(130px, 20vw, 220px); padding-bottom: clamp(60px, 8vw, 100px); overflow: hidden; }
.hero-fox {
  position: absolute; top: 50%; right: -6%; width: min(640px, 60vw);
  transform: translateY(-52%); z-index: 0; opacity: 0.5;
  filter: drop-shadow(0 30px 80px rgba(255,122,51,0.25));
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 880px; }
.hero h1 {
  font-size: clamp(3.4rem, 11vw, 8.4rem);
  margin: 26px 0 0;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .o { color: var(--amber); }
.hero .lede { margin-top: 30px; font-size: clamp(1.1rem, 1.7vw, 1.3rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero-note { margin-top: 18px; font-size: 0.86rem; color: var(--faint); display: flex; align-items: center; gap: 8px; }
.pulse { width: 8px; height: 8px; border-radius: 50%; background: #34d27b; box-shadow: 0 0 0 0 rgba(52,210,123,0.6); animation: pulse 2.2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(52,210,123,0.55); }
  70% { box-shadow: 0 0 0 9px rgba(52,210,123,0); }
  100% { box-shadow: 0 0 0 0 rgba(52,210,123,0); }
}

.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  margin-top: clamp(48px, 7vw, 84px); position: relative; z-index: 1;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden;
}
.hero-stats .stat { background: rgba(16,15,18,0.6); padding: 26px 24px; }
.stat .num { font-family: var(--display); font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 700; line-height: 1; color: var(--text); }
.stat .num .unit { color: var(--amber); }
.stat .label { margin-top: 8px; font-size: 0.8rem; color: var(--muted); letter-spacing: 0.02em; }

/* ---------------------------------------------------------------- Marquee */
.marquee {
  border-block: 1px solid var(--line); padding-block: 22px;
  display: flex; overflow: hidden; user-select: none; gap: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track { display: flex; align-items: center; gap: 48px; padding-right: 48px; flex: none; animation: scroll 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: var(--display); text-transform: uppercase; font-size: 1.4rem; letter-spacing: 0.06em; color: var(--faint); white-space: nowrap; }
.marquee-track .dot { color: var(--amber); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* --------------------------------------------------------------- Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step {
  position: relative; padding: 34px 30px; border-radius: var(--r-lg);
  border: 1px solid var(--line); background: linear-gradient(180deg, var(--surface), var(--ink-2));
  overflow: hidden;
}
.step::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 2px;
  background: linear-gradient(90deg, var(--amber), transparent);
  transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease);
}
.step:hover::before { transform: scaleX(1); }
.step .idx { font-family: var(--display); font-size: 1rem; color: var(--amber); letter-spacing: 0.2em; }
.step .ico { width: 50px; height: 50px; margin: 22px 0 20px; color: var(--amber); }
.step h3 { font-size: 1.7rem; }
.step p { margin-top: 12px; color: var(--muted); font-size: 0.97rem; }

/* --------------------------------------------------------------- Pricing */
.pricing-bg { background: linear-gradient(180deg, transparent, rgba(255,122,51,0.03) 50%, transparent); }
.billing-toggle {
  display: inline-flex; align-items: center; gap: 4px; margin: 28px auto 0;
  padding: 5px; border: 1px solid var(--line-strong); border-radius: 999px;
  background: rgba(255,255,255,0.03);
}
.billing-toggle button {
  padding: 9px 20px; border-radius: 999px; font-size: 0.88rem; font-weight: 600;
  color: var(--muted); transition: color .25s, background-color .25s;
}
.billing-toggle button.active { background: var(--amber); color: #160a02; }
.billing-toggle .save { font-size: 0.72rem; color: var(--brass-2); margin-left: 4px; }

.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.tier {
  position: relative; display: flex; flex-direction: column;
  padding: 34px 30px; border-radius: var(--r-lg);
  border: 1px solid var(--line); background: var(--surface);
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.tier:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: var(--shadow); }
.tier.popular {
  border-color: rgba(255,122,51,0.5);
  background: linear-gradient(180deg, rgba(255,122,51,0.08), var(--surface) 40%);
  box-shadow: var(--glow);
}
.tier.popular:hover { transform: translateY(-10px); }
.tier.apex {
  border-color: rgba(212,165,55,0.45);
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(212,165,55,0.12), transparent 60%),
    var(--surface);
}
.tier-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  padding: 6px 16px; border-radius: 999px; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; white-space: nowrap;
}
.tier.popular .tier-badge { background: linear-gradient(180deg, var(--amber-2), var(--amber)); color: #160a02; }
.tier.apex .tier-badge { background: linear-gradient(180deg, var(--brass-2), var(--brass)); color: #1a1304; }
.tier-name { font-family: var(--display); text-transform: uppercase; font-size: 1.5rem; letter-spacing: 0.06em; }
.tier.popular .tier-name { color: var(--amber-2); }
.tier.apex .tier-name { color: var(--brass-2); }
.tier-tag { font-size: 0.84rem; color: var(--muted); margin-top: 6px; min-height: 40px; }
.tier-price { display: flex; align-items: flex-end; gap: 6px; margin: 22px 0 4px; }
.tier-price .currency { font-family: var(--display); font-size: 1.6rem; color: var(--muted); line-height: 1.4; }
.tier-price .amount { font-family: var(--display); font-size: 4rem; font-weight: 700; line-height: 0.85; }
.tier-price .per { color: var(--muted); font-size: 0.9rem; padding-bottom: 6px; }
.tier-tax { font-size: 0.72rem; color: var(--faint); margin-top: 4px; }
.tier-annual { font-size: 0.8rem; color: var(--brass-2); min-height: 20px; }
.tier .btn { margin: 26px 0 24px; }
.tier-features { display: flex; flex-direction: column; gap: 13px; }
.tier-features li { display: flex; gap: 11px; font-size: 0.92rem; color: var(--text); align-items: flex-start; }
.tier-features li .check {
  flex: none; width: 20px; height: 20px; margin-top: 1px; color: var(--amber);
}
.tier.apex .tier-features li .check { color: var(--brass-2); }
.tier-features li.muted { color: var(--faint); }
.tier-features li.muted .check { color: var(--faint); }
.tier-foot { margin-top: auto; padding-top: 22px; font-size: 0.78rem; color: var(--faint); }

/* --------------------------------------------------------------- Programs */
.programs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.program {
  position: relative; text-align: left; padding: 24px; border-radius: var(--r);
  border: 1px solid var(--line); background: var(--surface);
  cursor: pointer; overflow: hidden; display: flex; flex-direction: column; min-height: 200px;
  transition: transform .35s var(--ease), border-color .35s var(--ease), background-color .35s;
}
.program:hover { transform: translateY(-5px); border-color: rgba(255,122,51,0.4); background: var(--surface-2); }
.program .p-ico { width: 34px; height: 34px; color: var(--amber); }
.program .p-num { position: absolute; top: 18px; right: 20px; font-family: var(--display); font-size: 1.1rem; color: var(--faint); }
.program h4 { font-family: var(--display); text-transform: uppercase; font-size: 1.35rem; letter-spacing: 0.02em; margin-top: 18px; line-height: 1; }
.program p { font-size: 0.85rem; color: var(--muted); margin-top: 8px; }
.program .p-meta { margin-top: auto; padding-top: 16px; display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  font-size: 0.7rem; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 6px; border: 1px solid var(--line-strong); color: var(--muted);
}
.chip.amber { color: var(--amber-2); border-color: rgba(255,122,51,0.35); background: var(--amber-soft); }
.program .p-go {
  position: absolute; bottom: 22px; right: 22px; width: 26px; height: 26px; color: var(--amber);
  opacity: 0; transform: translateX(-6px); transition: opacity .3s, transform .3s;
}
.program:hover .p-go { opacity: 1; transform: translateX(0); }
.programs-foot { margin-top: 26px; text-align: center; font-size: 0.9rem; color: var(--muted); }

/* --------------------------------------------------------------- Coaching */
.coach-split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.coach-list { display: flex; flex-direction: column; gap: 4px; margin-top: 32px; }
.coach-row { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.coach-row:last-child { border-bottom: 0; }
.coach-row .c-ico { flex: none; width: 26px; height: 26px; color: var(--amber); margin-top: 2px; }
.coach-row h4 { font-family: var(--body); font-weight: 600; font-size: 1.05rem; text-transform: none; letter-spacing: 0; }
.coach-row p { font-size: 0.92rem; color: var(--muted); margin-top: 4px; }

.coach-card {
  border-radius: var(--r-lg); border: 1px solid var(--line-strong);
  background: linear-gradient(165deg, var(--surface-2), var(--ink-2));
  padding: 34px; position: relative; overflow: hidden; box-shadow: var(--shadow);
}
.coach-card::before {
  content: ""; position: absolute; top: -40%; right: -20%; width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(212,165,55,0.18), transparent 65%);
}
.coach-card .cc-label { position: relative; font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass-2); }
.coach-card h3 { position: relative; font-size: 2.2rem; margin-top: 14px; }
.coach-card .cc-list { position: relative; margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.coach-card .cc-list li { display: flex; gap: 11px; font-size: 0.94rem; }
.coach-card .cc-list .check { flex: none; width: 20px; height: 20px; color: var(--brass-2); }

.disclaimer {
  margin-top: 30px; display: flex; gap: 14px; padding: 18px 20px;
  border: 1px solid var(--line); border-left: 3px solid var(--brass);
  border-radius: var(--r-sm); background: rgba(212,165,55,0.05);
}
.disclaimer svg { flex: none; width: 22px; height: 22px; color: var(--brass-2); margin-top: 1px; }
.disclaimer p { font-size: 0.84rem; color: var(--muted); line-height: 1.55; }
.disclaimer strong { color: var(--text); font-weight: 600; }

/* ------------------------------------------------------------ Testimonials */
.tband { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; margin-bottom: 46px; }
.tband .t { background: var(--ink-2); padding: 26px; text-align: center; }
.tband .t .n { font-family: var(--display); font-size: 2.6rem; color: var(--amber); line-height: 1; }
.tband .t .l { font-size: 0.8rem; color: var(--muted); margin-top: 6px; }

.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review {
  padding: 30px; border-radius: var(--r-lg); border: 1px solid var(--line);
  background: var(--surface); display: flex; flex-direction: column;
}
.review:hover { border-color: var(--line-strong); }
.stars { display: flex; gap: 3px; color: var(--amber); margin-bottom: 18px; }
.stars svg { width: 17px; height: 17px; }
.review blockquote { font-size: 1.02rem; line-height: 1.6; color: var(--text); }
.review .result {
  margin: 20px 0; padding: 12px 16px; border-radius: var(--r-sm);
  background: var(--amber-soft); border: 1px solid rgba(255,122,51,0.2);
  font-size: 0.85rem; color: var(--amber-2); font-weight: 600; align-self: flex-start;
}
.review .who { margin-top: auto; display: flex; align-items: center; gap: 13px; padding-top: 8px; }
.review .av { width: 44px; height: 44px; border-radius: 50%; flex: none; display: grid; place-items: center; font-family: var(--display); font-size: 1.2rem; color: #160a02; background: linear-gradient(150deg, var(--amber-2), var(--ember)); }
.review .who .name { font-weight: 600; font-size: 0.95rem; }
.review .who .role { font-size: 0.82rem; color: var(--muted); }

/* --------------------------------------------------------------- Coach bio */
.bio { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(32px, 5vw, 60px); align-items: center; }
.bio-portrait {
  position: relative; aspect-ratio: 4/5; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(255,122,51,0.25), transparent 55%),
    linear-gradient(180deg, var(--surface-3), var(--ink));
  display: grid; place-items: center;
}
.bio-portrait .pmark { width: 55%; opacity: 0.9; }
.bio-portrait .ptag {
  position: absolute; left: 18px; bottom: 18px; padding: 8px 14px; border-radius: 999px;
  background: rgba(10,9,12,0.7); backdrop-filter: blur(8px); border: 1px solid var(--line-strong);
  font-size: 0.78rem; color: var(--text); display: flex; align-items: center; gap: 8px;
}
.bio h2 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
.bio .role { color: var(--amber-2); font-weight: 600; margin-top: 10px; letter-spacing: 0.02em; }
.bio p { color: var(--muted); margin-top: 18px; }
.bio .creds { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.cred { font-size: 0.82rem; padding: 8px 14px; border: 1px solid var(--line-strong); border-radius: 999px; color: var(--text); }

/* ------------------------------------------------------------------- FAQ */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  text-align: left; padding: 26px 4px; font-size: 1.15rem; font-weight: 600; color: var(--text);
}
.faq-q .pm { flex: none; width: 26px; height: 26px; position: relative; }
.faq-q .pm::before, .faq-q .pm::after { content: ""; position: absolute; inset: 50% 0 auto; height: 2px; background: var(--amber); transition: transform .3s var(--ease); }
.faq-q .pm::after { transform: rotate(90deg); }
.faq-item.open .faq-q .pm::after { transform: rotate(0); }
.faq-a { overflow: hidden; height: 0; transition: height .35s var(--ease); }
.faq-a-inner { padding: 0 4px 26px; color: var(--muted); font-size: 0.98rem; line-height: 1.7; max-width: 70ch; }

/* -------------------------------------------------------------- Final CTA */
.final {
  text-align: center; border-radius: var(--r-xl); overflow: hidden; position: relative;
  border: 1px solid var(--line-strong); padding: clamp(50px, 8vw, 100px) var(--gutter);
  background:
    radial-gradient(120% 130% at 50% 0%, rgba(255,122,51,0.2), transparent 55%),
    linear-gradient(180deg, var(--surface-2), var(--ink-2));
}
.final h2 { font-size: clamp(2.6rem, 7vw, 5.5rem); }
.final p { margin: 22px auto 0; max-width: 50ch; color: var(--muted); }
.final .hero-actions { justify-content: center; }

/* ---------------------------------------------------------------- Footer */
.footer { border-top: 1px solid var(--line); padding-block: 64px 32px; }
.footer-top { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 40px; }
.footer .brand { margin-bottom: 18px; }
.footer-about { color: var(--muted); font-size: 0.92rem; max-width: 38ch; }
.socials { display: flex; gap: 10px; margin-top: 22px; }
.socials a { width: 42px; height: 42px; border-radius: 11px; border: 1px solid var(--line-strong); display: grid; place-items: center; color: var(--muted); transition: color .2s, border-color .2s, background-color .2s; }
.socials a:hover { color: var(--amber-2); border-color: var(--amber); background: var(--amber-soft); }
.socials svg { width: 19px; height: 19px; }
.fcol h5 { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); font-family: var(--body); font-weight: 600; margin-bottom: 16px; }
.fcol a { display: block; padding: 7px 0; font-size: 0.92rem; color: var(--muted); transition: color .2s, padding-left .2s; }
.fcol a:hover { color: var(--amber-2); padding-left: 5px; }
.footer-legal { margin-top: 50px; padding-top: 26px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 16px 30px; justify-content: space-between; align-items: center; }
.footer-legal p { font-size: 0.82rem; color: var(--faint); }
.footer-disc { font-size: 0.76rem; color: var(--faint); line-height: 1.6; margin-top: 22px; max-width: 90ch; }

/* sticky CTA */
.sticky-cta {
  position: fixed; left: 50%; bottom: 22px; transform: translate(-50%, 120%);
  z-index: 90; transition: transform .4s var(--ease);
}
.sticky-cta.show { transform: translate(-50%, 0); }
.sticky-cta .btn { box-shadow: var(--shadow-lg); }

/* ---------------------------------------------------------------- Modal */
.modal-root { position: fixed; inset: 0; z-index: 150; display: none; }
.modal-root.open { display: block; }
.modal-overlay { position: absolute; inset: 0; background: rgba(5,5,7,0.72); backdrop-filter: blur(6px); opacity: 0; transition: opacity .3s var(--ease); }
.modal-root.open .modal-overlay { opacity: 1; }
.modal {
  position: absolute; top: 50%; left: 50%; width: min(560px, calc(100vw - 32px));
  max-height: calc(100vh - 48px); overflow-y: auto;
  transform: translate(-50%, -46%); opacity: 0;
  background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); transition: transform .4s var(--ease), opacity .3s var(--ease);
}
.modal-root.open .modal { transform: translate(-50%, -50%); opacity: 1; }
.modal-head { position: sticky; top: 0; z-index: 2; display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--line); background: var(--surface); }
.modal-head .mh-title { font-family: var(--display); text-transform: uppercase; font-size: 1.35rem; letter-spacing: 0.04em; }
.modal-close { width: 40px; height: 40px; border-radius: 11px; border: 1px solid var(--line-strong); display: grid; place-items: center; color: var(--muted); transition: color .2s, border-color .2s; }
.modal-close:hover { color: var(--text); border-color: var(--amber); }
.modal-close svg { width: 20px; height: 20px; }
.modal-body { padding: 24px; }

.summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 20px; border-radius: var(--r); border: 1px solid var(--line-strong);
  background: var(--ink-2); margin-bottom: 24px;
}
.summary .s-name { font-family: var(--display); text-transform: uppercase; font-size: 1.25rem; letter-spacing: 0.04em; }
.summary .s-sub { font-size: 0.82rem; color: var(--muted); margin-top: 3px; }
.summary .s-price { text-align: right; }
.summary .s-price .sp-amt { font-family: var(--display); font-size: 2rem; line-height: 1; }
.summary .s-price .sp-per { font-size: 0.78rem; color: var(--muted); }

.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--muted); margin-bottom: 7px; }
.field .input, .field select {
  width: 100%; padding: 13px 15px; border-radius: var(--r-sm);
  background: var(--ink-2); border: 1px solid var(--line-strong); color: var(--text);
  transition: border-color .2s, box-shadow .2s; -webkit-appearance: none; appearance: none;
}
.field .input::placeholder { color: var(--faint); }
.field .input:focus, .field select:focus { outline: none; border-color: var(--amber); box-shadow: 0 0 0 3px var(--amber-soft); }
.field.invalid .input, .field.invalid select { border-color: #ef5454; }
.field .err { display: none; font-size: 0.78rem; color: #ff8585; margin-top: 6px; }
.field.invalid .err { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.select-wrap { position: relative; }
.select-wrap::after { content: ""; position: absolute; right: 16px; top: 50%; width: 8px; height: 8px; border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted); transform: translateY(-65%) rotate(45deg); pointer-events: none; }

.card-input { position: relative; }
.card-input .brand-dots { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); display: flex; gap: 4px; }
.card-input .brand-dots i { width: 24px; height: 16px; border-radius: 3px; background: var(--surface-3); display: block; }

.pay-row { display: flex; align-items: center; gap: 8px; justify-content: center; margin-top: 8px; font-size: 0.8rem; color: var(--faint); }
.pay-row svg { width: 15px; height: 15px; color: #34d27b; }
.modal-trust { display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: center; margin-top: 18px; }
.modal-trust span { font-size: 0.78rem; color: var(--muted); display: inline-flex; align-items: center; gap: 6px; }
.modal-trust svg { width: 14px; height: 14px; color: var(--amber); }

/* program picker inside modal */
.picker { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 22px; }
.picker .opt {
  text-align: left; padding: 13px 14px; border-radius: var(--r-sm);
  border: 1px solid var(--line-strong); background: var(--ink-2);
  transition: border-color .2s, background-color .2s; font-size: 0.86rem;
}
.picker .opt:hover { border-color: var(--amber); }
.picker .opt.sel { border-color: var(--amber); background: var(--amber-soft); }
.picker .opt .o-name { font-weight: 600; color: var(--text); }
.picker .opt .o-meta { font-size: 0.74rem; color: var(--muted); margin-top: 3px; }

/* recommendation quiz */
.quiz-progress { height: 5px; border-radius: 999px; background: var(--surface-3); overflow: hidden; margin-bottom: 16px; }
.quiz-progress span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--amber-2), var(--amber)); transition: width .4s var(--ease); }
.quiz-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.quiz-meta #quizCount { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); font-weight: 600; }
.quiz-back { font-size: 0.85rem; color: var(--muted); transition: color .2s; }
.quiz-back:hover { color: var(--amber-2); }
.quiz-q { font-family: var(--display); text-transform: uppercase; font-size: 1.6rem; letter-spacing: 0.01em; line-height: 1.05; margin-bottom: 18px; }
.quiz-options { display: flex; flex-direction: column; gap: 10px; }
.quiz-opt { display: flex; align-items: center; justify-content: space-between; gap: 12px; text-align: left; padding: 15px 18px; border-radius: var(--r-sm); border: 1px solid var(--line-strong); background: var(--ink-2); font-size: 0.98rem; font-weight: 500; color: var(--text); transition: border-color .2s, background-color .2s, transform .15s var(--ease); }
.quiz-opt:hover, .quiz-opt.sel { border-color: var(--amber); background: var(--amber-soft); transform: translateX(3px); }
.quiz-opt svg { width: 18px; height: 18px; color: var(--amber); opacity: 0; transition: opacity .2s; flex: none; }
.quiz-opt:hover svg, .quiz-opt.sel svg { opacity: 1; }
.quiz-skip { display: block; width: 100%; text-align: center; margin-top: 20px; font-size: 0.85rem; color: var(--faint); transition: color .2s; }
.quiz-skip:hover { color: var(--amber-2); }
/* recommendation card */
.reco-label { display: block; font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber-2); font-weight: 700; margin-bottom: 14px; }
.reco-card { border: 1px solid rgba(255,122,51,0.35); border-radius: var(--r); background: linear-gradient(150deg, var(--amber-soft), var(--surface) 62%); padding: 22px; }
.reco-prog { display: flex; gap: 16px; }
.reco-ico { flex: none; width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,122,51,0.12); color: var(--amber); }
.reco-ico svg { width: 26px; height: 26px; }
.reco-name { font-family: var(--display); text-transform: uppercase; font-size: 1.5rem; letter-spacing: 0.02em; line-height: 1; }
.reco-why { color: var(--muted); font-size: 0.92rem; margin: 8px 0 12px; line-height: 1.5; }
.reco-prog .p-meta { display: flex; gap: 8px; flex-wrap: wrap; }
/* picker head + change-program link */
.picker-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; gap: 12px; }
.picker-title { font-size: 0.82rem; font-weight: 600; color: var(--muted); }
.change-program-link { display: block; font-size: 0.85rem; color: var(--muted); margin-bottom: 16px; transition: color .2s; }
.change-program-link[hidden] { display: none; }
.change-program-link:hover { color: var(--amber-2); }

/* success state */
.success { text-align: center; padding: 20px 8px 8px; }
.success .tick { width: 76px; height: 76px; margin: 0 auto 22px; border-radius: 50%; display: grid; place-items: center; background: rgba(52,210,123,0.12); border: 1px solid rgba(52,210,123,0.4); color: #34d27b; }
.success .tick svg { width: 38px; height: 38px; }
.success h3 { font-size: 2rem; }
.success p { color: var(--muted); margin-top: 12px; max-width: 38ch; margin-inline: auto; }
.success .btn { margin-top: 26px; }

/* ----------------------------------------------------------- Reveal anim */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }
[data-reveal][data-delay="5"] { transition-delay: .40s; }

/* ----------------------------------------------------------- Responsive */
@media (max-width: 1024px) {
  .nav { display: none; }
  .header-cta .btn-ghost { display: none; }
  .menu-toggle { display: flex; }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 880px) {
  .steps { grid-template-columns: 1fr; }
  .tiers { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .tier.popular { order: -1; }
  .coach-split { grid-template-columns: 1fr; }
  .bio { grid-template-columns: 1fr; }
  .bio-portrait { max-width: 360px; }
  .reviews { grid-template-columns: 1fr; }
  .hero-fox { opacity: 0.22; right: -25%; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .tband { grid-template-columns: 1fr 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .field-row { grid-template-columns: 1fr; }
  .picker { grid-template-columns: 1fr; }
  .header { inset: 10px 10px auto 10px; padding: 10px 10px 10px 16px; }
  .header-cta .btn-primary { display: none; }
  .brand .wordmark { font-size: 1.2rem; }
  .hero-actions .btn { flex: 1 1 auto; }
}

/* -------------------------------------------------------- Pay panel */
.pay-panel { border: 1px solid var(--line-strong); border-radius: var(--r-sm); background: var(--ink-2); padding: 16px 18px; }
.pp-row { display: flex; gap: 14px; align-items: flex-start; }
.pp-row svg { flex: none; width: 26px; height: 26px; color: var(--amber); margin-top: 2px; }
.pp-title { font-weight: 600; font-size: 0.96rem; }
.pp-sub { font-size: 0.84rem; color: var(--muted); margin-top: 4px; line-height: 1.5; }
.form-error { display: flex; gap: 10px; align-items: center; margin-top: 14px; padding: 12px 14px; border-radius: var(--r-sm); border: 1px solid rgba(239,84,84,0.4); background: rgba(239,84,84,0.08); color: #ff9a9a; font-size: 0.86rem; }
.form-error[hidden] { display: none; }
.form-error svg { flex: none; width: 18px; height: 18px; }

/* ------------------------------------------------------- Legal pages */
.legal-header { position: sticky; top: 0; z-index: 50; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px var(--gutter); border-bottom: 1px solid var(--line); background: rgba(10,9,12,0.72); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.legal-header .mark { width: 32px; height: 32px; }
.legal-header .wordmark { font-family: var(--display); font-weight: 700; font-size: 1.3rem; letter-spacing: 0.04em; text-transform: uppercase; }
.legal-header .wordmark span { color: var(--amber); }
.legal-back { font-size: 0.9rem; color: var(--muted); padding: 9px 16px; border: 1px solid var(--line-strong); border-radius: 10px; transition: color .2s, border-color .2s, background-color .2s; white-space: nowrap; }
.legal-back:hover { color: var(--amber-2); border-color: var(--amber); background: var(--amber-soft); }
.legal-wrap { max-width: 780px; margin-inline: auto; padding: 64px var(--gutter) 80px; }
.legal .eyebrow { margin-bottom: 18px; }
.legal h1 { font-size: clamp(2.6rem, 6vw, 4rem); }
.legal .updated { color: var(--faint); margin-top: 14px; font-size: 0.9rem; }
.legal > p { color: var(--muted); line-height: 1.8; margin-top: 18px; }
.legal h2 { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.01em; font-size: 1.5rem; color: var(--text); margin: 42px 0 6px; }
.legal ul { list-style: disc; padding-left: 22px; margin: 14px 0; display: flex; flex-direction: column; gap: 10px; }
.legal li { color: var(--muted); line-height: 1.7; }
.legal a { color: var(--amber-2); text-decoration: underline; text-underline-offset: 3px; }
.legal a:hover { color: var(--amber); }
.legal strong { color: var(--text); }
.legal-footer { border-top: 1px solid var(--line); padding: 28px var(--gutter); display: flex; flex-wrap: wrap; gap: 14px 24px; align-items: center; justify-content: space-between; }
.legal-footer p { font-size: 0.82rem; color: var(--faint); }
.legal-footer nav { display: flex; gap: 18px; flex-wrap: wrap; }
.legal-footer a { font-size: 0.82rem; color: var(--muted); }
.legal-footer a:hover { color: var(--amber-2); }

/* --------------------------------------------------------- Auth (login) */
.auth-shell { min-height: calc(100vh - 76px); display: grid; place-items: center; padding: 48px var(--gutter); }
.auth-card { width: 100%; max-width: 440px; background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--r-lg); padding: 38px 34px; box-shadow: var(--shadow); }
.auth-card h1 { font-size: 2.6rem; margin-top: 14px; }
.auth-card .sub { color: var(--muted); margin-top: 14px; font-size: 0.98rem; line-height: 1.6; }
.auth-card form { margin-top: 24px; }
.auth-card .btn { margin-top: 8px; }
.auth-foot { margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 0.9rem; color: var(--muted); }
.auth-foot a { color: var(--amber-2); }
.auth-note { display: none; margin-top: 16px; padding: 13px 16px; border-radius: var(--r-sm); font-size: 0.88rem; line-height: 1.55; }
.auth-note.show { display: block; }
.auth-note.ok { border: 1px solid rgba(52,210,123,0.4); background: rgba(52,210,123,0.08); color: #8ef0b6; }
.auth-note.err { border: 1px solid rgba(239,84,84,0.4); background: rgba(239,84,84,0.08); color: #ff9a9a; }
.auth-note a { color: inherit; text-decoration: underline; word-break: break-all; }
.auth-success { display: none; text-align: center; }
.auth-success.show { display: block; }
.auth-success .tick { width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%; display: grid; place-items: center; background: rgba(52,210,123,0.12); border: 1px solid rgba(52,210,123,0.4); color: #34d27b; }
.auth-success .tick svg { width: 32px; height: 32px; }

/* --------------------------------------------------------- Dashboard */
.dash-bar { position: sticky; top: 0; z-index: 50; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px var(--gutter); border-bottom: 1px solid var(--line); background: rgba(10,9,12,0.82); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.dash-bar .mark { width: 30px; height: 30px; }
.dash-bar .wordmark { font-family: var(--display); font-weight: 700; font-size: 1.22rem; letter-spacing: 0.04em; text-transform: uppercase; }
.dash-bar .wordmark span { color: var(--amber); }
.dash-bar .right { display: flex; align-items: center; gap: 8px; }
.dash-bar .who { font-size: 0.84rem; color: var(--muted); margin-right: 6px; }
.dash-bar .btn { padding: 9px 16px; font-size: 0.86rem; }
.dash-wrap { max-width: var(--maxw); margin-inline: auto; padding: 46px var(--gutter) 90px; }
.dash-head { display: flex; flex-wrap: wrap; gap: 12px 20px; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.dash-head h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.dash-sub { color: var(--muted); margin-bottom: 40px; }
.tier-chip { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; border: 1px solid var(--line-strong); }
.tier-chip[hidden] { display: none; }
.tier-chip.field { color: var(--text); }
.tier-chip.pack { color: var(--amber-2); border-color: rgba(255,122,51,0.4); background: var(--amber-soft); }
.tier-chip.apex { color: var(--brass-2); border-color: rgba(212,165,55,0.4); background: rgba(212,165,55,0.06); }
.dash-label { font-family: var(--display); text-transform: uppercase; font-size: 1.5rem; letter-spacing: 0.02em; margin: 8px 0 18px; }
.dash-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.dash-grid .program { min-height: 180px; }
.dash-loading { color: var(--muted); padding: 60px 0; text-align: center; }
.coaching-panel { margin-top: 44px; border: 1px solid var(--line-strong); border-radius: var(--r-lg); padding: 30px; background: linear-gradient(165deg, var(--surface-2), var(--ink-2)); }
.coaching-panel h3 { font-size: 1.8rem; }
.coaching-panel p { color: var(--muted); margin-top: 10px; }
.coaching-panel .cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
/* call booking */
.booking-form { margin-top: 18px; }
.bf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.booking-note { display: none; margin-top: 14px; padding: 11px 14px; border-radius: var(--r-sm); font-size: 0.86rem; }
.booking-note.ok { display: block; border: 1px solid rgba(52,210,123,0.4); background: rgba(52,210,123,0.08); color: #8ef0b6; }
.booking-note.err { display: block; border: 1px solid rgba(239,84,84,0.4); background: rgba(239,84,84,0.08); color: #ff9a9a; }
.booking-empty { color: var(--muted); font-size: 0.92rem; margin-top: 14px; }
.call-list { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.call-item { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 16px; border: 1px solid var(--line-strong); border-radius: var(--r-sm); background: var(--ink-2); }
.ci-date { font-weight: 600; }
.ci-time { font-size: 0.85rem; color: var(--amber-2); margin-top: 2px; }
.ci-cancel { font-size: 0.82rem; color: var(--muted); transition: color .2s; }
.ci-cancel:hover { color: #ff9a9a; }
.ci-past { font-size: 0.8rem; color: var(--faint); }
.slot-display { display: flex; gap: 16px; align-items: center; margin: 18px 0; padding: 18px 20px; border: 1px solid rgba(255,122,51,0.3); border-radius: var(--r); background: var(--amber-soft); }
.slot-display .sd-icon { flex: none; width: 30px; height: 30px; color: var(--amber); }
.sd-main { font-family: var(--display); text-transform: uppercase; font-size: 1.3rem; letter-spacing: 0.02em; }
.sd-sub { font-size: 0.85rem; color: var(--muted); margin-top: 4px; }
input[type="date"].input::-webkit-calendar-picker-indicator, input[type="time"].input::-webkit-calendar-picker-indicator { filter: invert(0.85); cursor: pointer; }
@media (max-width: 520px) { .bf-row { grid-template-columns: 1fr; } }
.inactive-panel { border: 1px solid rgba(212,165,55,0.4); border-radius: var(--r-lg); padding: 36px; background: rgba(212,165,55,0.05); text-align: center; }
.inactive-panel h3 { font-size: 1.9rem; }
.inactive-panel p { color: var(--muted); margin: 12px auto 0; max-width: 44ch; }
.inactive-panel .btn { margin-top: 24px; }
/* program detail */
.prog-meta-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 2px 0 18px; }
.prog-summary { color: var(--muted); line-height: 1.6; margin-bottom: 22px; }
.prog-week { display: flex; flex-direction: column; gap: 12px; }
.prog-day { border: 1px solid var(--line); border-radius: var(--r-sm); padding: 16px 18px; background: var(--ink-2); }
.prog-day h4 { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.02em; font-size: 1.18rem; color: var(--amber-2); }
.prog-day ul { margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.prog-day li { font-size: 0.92rem; color: var(--text); display: flex; justify-content: space-between; gap: 14px; align-items: baseline; }
.prog-day li .sets { color: var(--amber-2); font-variant-numeric: tabular-nums; white-space: nowrap; font-weight: 600; }
.prog-note { margin-top: 20px; padding: 16px 18px; border-radius: var(--r-sm); background: var(--amber-soft); border: 1px solid rgba(255,122,51,0.2); font-size: 0.9rem; color: var(--muted); line-height: 1.6; }
.prog-note strong { color: var(--amber-2); }
.prog-cues { margin-top: 16px; display: flex; flex-direction: column; gap: 9px; }
.prog-cues li { display: flex; gap: 10px; font-size: 0.9rem; color: var(--muted); }
.prog-cues svg { flex: none; width: 18px; height: 18px; color: var(--amber); margin-top: 1px; }
@media (max-width: 1024px) { .dash-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .dash-grid { grid-template-columns: 1fr; }
  .dash-bar .who { display: none; }
}
/* month banner + single-program view */
.month-banner { border: 1px solid var(--line-strong); border-radius: var(--r-lg); padding: 24px 26px; background: linear-gradient(150deg, rgba(255,122,51,0.10), var(--surface) 55%); margin-bottom: 16px; }
.mb-head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.mb-month { font-family: var(--display); text-transform: uppercase; font-size: 1.5rem; letter-spacing: 0.04em; }
.mb-phase { padding: 5px 13px; border-radius: 999px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; border: 1px solid; }
.mb-phase.volume { color: var(--amber-2); border-color: rgba(255,122,51,0.5); background: var(--amber-soft); }
.mb-phase.strength { color: var(--brass-2); border-color: rgba(212,165,55,0.5); background: rgba(212,165,55,0.07); }
.mb-phase.intensity { color: #54d6c2; border-color: rgba(84,214,194,0.5); background: rgba(84,214,194,0.07); }
.mb-focus { color: var(--muted); margin-top: 10px; font-size: 1rem; }
.mb-refresh { display: flex; align-items: center; gap: 9px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 0.9rem; color: var(--muted); }
.mb-refresh svg { width: 18px; height: 18px; color: var(--amber); flex: none; }
.mb-refresh strong { color: var(--text); }
.twist-callout { display: flex; gap: 14px; align-items: flex-start; padding: 18px 20px; border-radius: var(--r); border: 1px solid rgba(255,122,51,0.3); background: var(--amber-soft); }
.twist-callout .tc-ico { flex: none; width: 24px; height: 24px; color: var(--amber); margin-top: 2px; }
.tc-label { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--amber-2); font-weight: 700; }
.twist-callout p { margin-top: 4px; color: var(--text); font-size: 0.96rem; line-height: 1.5; }
.dash-label .dl-ico { width: 26px; height: 26px; color: var(--amber); vertical-align: -4px; margin-right: 10px; }
.phase-guide { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 4px 0 24px; }
.phase-guide > div { border: 1px solid var(--line); border-radius: var(--r-sm); padding: 14px 16px; background: var(--ink-2); }
.phase-guide span { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); font-weight: 600; }
.phase-guide p { margin-top: 7px; font-size: 0.88rem; color: var(--text); line-height: 1.5; }
.change-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line); }
.change-row span { color: var(--muted); font-size: 0.92rem; }
.chooser-note { color: var(--muted); max-width: 62ch; margin-bottom: 24px; line-height: 1.6; }
.chooser-note strong { color: var(--amber-2); }
/* owned-program switcher */
.prog-nav { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.prog-pill { display: inline-flex; align-items: center; gap: 10px; padding: 11px 16px; border-radius: 12px; border: 1px solid var(--line-strong); background: var(--surface); transition: border-color .2s, background-color .2s; }
.prog-pill:hover { border-color: var(--amber); }
.prog-pill.active { border-color: var(--amber); background: var(--amber-soft); }
.prog-pill .pill-ico { width: 18px; height: 18px; color: var(--amber); flex: none; }
.prog-pill .pill-name { font-weight: 600; font-size: 0.92rem; color: var(--text); }
.prog-pill .pill-month { font-size: 0.74rem; color: var(--muted); letter-spacing: 0.02em; }
.prog-pill.active .pill-month { color: var(--amber-2); }
/* add-a-program card + price badge */
.add-card { margin-top: 44px; display: flex; flex-wrap: wrap; gap: 18px 24px; align-items: center; justify-content: space-between; border: 1px dashed var(--line-strong); border-radius: var(--r-lg); padding: 28px 30px; background: var(--ink-2); }
.add-card h3 { font-size: 1.5rem; }
.add-card p { color: var(--muted); margin-top: 8px; max-width: 48ch; font-size: 0.95rem; }
.add-card strong { color: var(--amber-2); }
.program .p-price { position: absolute; bottom: 22px; right: 22px; font-family: var(--display); font-size: 1.15rem; color: var(--amber-2); letter-spacing: 0.02em; }
@media (max-width: 640px) { .phase-guide { grid-template-columns: 1fr; } }

/* ------------------------------------------------------- Coach admin */
.coach-badge { margin-left: 10px; padding: 4px 10px; border-radius: 999px; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber-2); border: 1px solid rgba(255,122,51,0.4); background: var(--amber-soft); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 8px 0 16px; }
.stat-card { border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); padding: 22px 24px; }
.sc-n { font-family: var(--display); font-size: 3rem; line-height: 1; }
.sc-n .sc-cap { font-size: 1.4rem; color: var(--faint); }
.sc-l { margin-top: 8px; font-size: 0.82rem; color: var(--muted); letter-spacing: 0.02em; }
.admin-section { margin-top: 44px; }
.count-chip { font-family: var(--body); font-size: 0.82rem; font-weight: 600; color: var(--amber-2); border: 1px solid rgba(255,122,51,0.35); border-radius: 999px; padding: 3px 12px; vertical-align: middle; margin-left: 10px; letter-spacing: 0; text-transform: none; }
.sched-list { display: flex; flex-direction: column; gap: 10px; }
.sched-item { display: flex; align-items: center; gap: 18px; padding: 14px 18px; border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--surface); }
.si-when { min-width: 150px; }
.si-date { display: block; font-family: var(--display); text-transform: uppercase; font-size: 1.05rem; letter-spacing: 0.02em; }
.si-time { font-size: 0.84rem; color: var(--amber-2); }
.si-who { flex: 1; }
.si-name { font-weight: 600; }
.si-email { font-size: 0.82rem; color: var(--muted); }
.si-tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; border: 1px solid var(--line-strong); white-space: nowrap; }
.si-tag.pack { color: var(--amber-2); border-color: rgba(255,122,51,0.4); background: var(--amber-soft); }
.si-tag.apex { color: var(--brass-2); border-color: rgba(212,165,55,0.4); background: rgba(212,165,55,0.07); }
.status-pill { display: inline-block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; padding: 3px 10px; border-radius: 999px; }
.status-pill.on { color: #8ef0b6; background: rgba(52,210,123,0.12); border: 1px solid rgba(52,210,123,0.35); }
.status-pill.off { color: var(--faint); background: rgba(255,255,255,0.04); border: 1px solid var(--line-strong); }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r); }
.admin-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.admin-table th { text-align: left; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); font-weight: 600; padding: 14px 18px; border-bottom: 1px solid var(--line); }
.admin-table td { padding: 14px 18px; border-bottom: 1px solid var(--line); vertical-align: top; }
.admin-table tr:last-child td { border-bottom: 0; }
.td-name { font-weight: 600; }
.td-email { font-size: 0.82rem; color: var(--muted); }
.td-muted { color: var(--faint); font-size: 0.86rem; }
.prog-tag { display: inline-block; font-size: 0.76rem; color: var(--text); border: 1px solid var(--line-strong); border-radius: 6px; padding: 3px 8px; margin: 0 4px 4px 0; }
/* schedule calendar */
.cal-head { display: flex; align-items: center; gap: 14px 24px; flex-wrap: wrap; margin-bottom: 18px; }
.cal-nav { display: flex; align-items: center; gap: 8px; }
.cal-btn { width: 34px; height: 34px; border-radius: 9px; border: 1px solid var(--line-strong); color: var(--text); font-size: 1.2rem; line-height: 1; display: grid; place-items: center; transition: border-color .2s, background-color .2s; }
.cal-btn:hover { border-color: var(--amber); background: var(--amber-soft); }
.cal-month { font-family: var(--display); text-transform: uppercase; font-size: 1.3rem; letter-spacing: 0.03em; min-width: 170px; text-align: center; }
.cal-today { font-size: 0.8rem; color: var(--muted); border: 1px solid var(--line-strong); border-radius: 9px; padding: 7px 14px; margin-left: 4px; transition: color .2s, border-color .2s; }
.cal-today:hover { color: var(--amber-2); border-color: var(--amber); }
.cal-legend { display: flex; gap: 16px; margin-left: auto; }
.cal-legend .lg { display: inline-flex; align-items: center; gap: 7px; font-size: 0.82rem; color: var(--muted); }
.dot { width: 11px; height: 11px; border-radius: 3px; display: inline-block; flex: none; }
.dot.pack { background: var(--amber); }
.dot.apex { background: #a78bfa; }
.cal-scroll { overflow-x: auto; }
.cal-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 6px; min-width: 740px; }
.cal-dow { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); font-weight: 600; padding: 4px 6px 8px; text-align: center; }
.cal-cell { height: 126px; min-width: 0; border: 1px solid var(--line); border-radius: 10px; background: var(--surface); padding: 8px; display: flex; flex-direction: column; }
.cal-ev { min-width: 0; }
.cal-cell.out { background: transparent; opacity: 0.4; }
.cal-cell.today { border-color: var(--amber); box-shadow: inset 0 0 0 1px rgba(255,122,51,0.4); }
.cal-date { font-size: 0.82rem; color: var(--muted); font-weight: 600; }
.cal-cell.today .cal-date { color: var(--amber-2); }
.cal-evs { display: flex; flex-direction: column; gap: 4px; margin-top: 6px; overflow-y: auto; flex: 1; min-height: 0; }
.cal-ev { font-size: 0.72rem; font-weight: 600; padding: 3px 7px; border-radius: 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; cursor: default; }
.cal-ev.pack { background: rgba(255,122,51,0.16); color: #ffb27a; border: 1px solid rgba(255,122,51,0.5); }
.cal-ev.apex { background: rgba(167,139,250,0.16); color: #cdbcff; border: 1px solid rgba(167,139,250,0.5); }
.cal-foot { margin-top: 12px; font-size: 0.82rem; color: var(--faint); }
/* view toggle (Month / Agenda) */
.cal-toggle { display: inline-flex; padding: 4px; border: 1px solid var(--line-strong); border-radius: 999px; background: rgba(255,255,255,0.03); }
.cal-toggle button { padding: 7px 16px; border-radius: 999px; font-size: 0.82rem; font-weight: 600; color: var(--muted); transition: color .2s, background-color .2s; }
.cal-toggle button.active { background: var(--amber); color: #160a02; }
/* agenda (compact list) */
.agenda { display: flex; flex-direction: column; }
.agenda-day { display: flex; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.agenda-day:last-child { border-bottom: 0; }
.ag-date { flex: none; width: 56px; text-align: center; }
.ag-date .ag-dow { display: block; font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); }
.ag-date .ag-num { display: block; font-family: var(--display); font-size: 2rem; line-height: 1; }
.ag-date .ag-mon { display: block; font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.agenda-day.today .ag-num { color: var(--amber-2); }
.ag-evs { flex: 1; display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.ag-ev { display: flex; align-items: center; gap: 12px; padding: 11px 14px; border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--surface); }
.ag-ev.pack { border-left: 3px solid var(--amber); }
.ag-ev.apex { border-left: 3px solid #a78bfa; }
.ag-ev .dot { width: 10px; height: 10px; }
.ag-time { font-weight: 600; font-size: 0.9rem; min-width: 76px; }
.ag-who { flex: 1; font-size: 0.92rem; min-width: 0; }
.ag-who small { display: block; color: var(--muted); font-size: 0.78rem; overflow: hidden; text-overflow: ellipsis; }
.ag-tag { flex: none; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 9px; border-radius: 999px; }
.ag-tag.pack { color: #ffb27a; background: rgba(255,122,51,0.14); border: 1px solid rgba(255,122,51,0.4); }
.ag-tag.apex { color: #cdbcff; background: rgba(167,139,250,0.14); border: 1px solid rgba(167,139,250,0.45); }
.ag-empty { color: var(--muted); padding: 36px 0; text-align: center; }
/* ------------------------------------------------------- traffic / visitors */
.tr-alltime { margin-left: auto; font-size: 0.82rem; color: var(--faint); }
.tr-chart { margin: 18px 0 8px; border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); padding: 18px 18px 12px; }
.tr-bars { display: flex; align-items: flex-end; gap: 3px; height: 120px; }
.tr-bar { flex: 1 1 0; min-width: 0; height: 100%; display: flex; align-items: flex-end; border-radius: 4px; cursor: default; }
.tr-bar:hover { background: rgba(255,255,255,0.03); }
.tr-bar-fill { display: block; width: 100%; min-height: 2px; border-radius: 4px 4px 2px 2px; background: linear-gradient(to top, var(--ember), var(--amber)); transition: opacity .2s; }
.tr-bar-fill[style*="height:0"] { background: var(--line); }
.tr-bar:hover .tr-bar-fill { opacity: 0.8; }
.tr-axis { display: flex; justify-content: space-between; margin-top: 10px; font-size: 0.74rem; color: var(--faint); }
.tr-split { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 18px; }
.tr-panel { border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); padding: 18px 20px; }
.tr-h { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); font-weight: 600; margin: 0 0 14px; }
.tr-list { display: flex; flex-direction: column; gap: 11px; }
.tr-row { display: grid; grid-template-columns: minmax(0,1fr) 90px 34px; align-items: center; gap: 12px; }
.tr-label { font-size: 0.9rem; font-weight: 500; display: flex; align-items: center; gap: 8px; min-width: 0; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.tr-tag { font-size: 0.72rem; color: var(--faint); font-weight: 400; overflow: hidden; text-overflow: ellipsis; }
.tr-track { height: 7px; border-radius: 999px; background: rgba(255,255,255,0.06); overflow: hidden; }
.tr-fill { display: block; height: 100%; border-radius: 999px; background: var(--amber); }
.tr-count { font-family: var(--display); font-size: 1.15rem; text-align: right; }
/* medium colors (shared by bars, fills, dots) */
.src-dot { width: 9px; height: 9px; border-radius: 50%; flex: none; display: inline-block; background: var(--faint); }
.tr-fill.search, .src-dot.search { background: var(--brass); }
.tr-fill.social, .src-dot.social { background: var(--amber); }
.tr-fill.referral, .src-dot.referral { background: #6ea8fe; }
.tr-fill.email, .src-dot.email, .tr-fill.campaign, .src-dot.campaign { background: #a78bfa; }
.tr-fill.direct, .src-dot.direct { background: var(--faint); }
.tr-fill.page { background: linear-gradient(to right, var(--ember), var(--amber)); }
.tr-recent { margin-top: 18px; }
.tr-feed { display: flex; flex-direction: column; }
.tf-row { display: flex; align-items: center; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 0.9rem; }
.tf-row:last-child { border-bottom: 0; }
.tf-src { font-weight: 600; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 38%; }
.tf-page { color: var(--muted); flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.tf-dev { flex: none; opacity: 0.75; font-size: 0.92rem; }
.tf-ago { flex: none; color: var(--faint); font-size: 0.8rem; min-width: 64px; text-align: right; }
@media (max-width: 760px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } .sched-item { flex-wrap: wrap; gap: 8px 14px; } .si-when { min-width: 0; } .cal-legend { margin-left: 0; } .cal-cell { height: 112px; } .tr-split { grid-template-columns: 1fr; } .tr-alltime { width: 100%; margin-left: 0; } }

/* ------------------------------------------------------- notes (coach↔client) */
/* dashboard tab bar */
.dash-tabs { display: inline-flex; gap: 4px; padding: 5px; margin: 6px 0 26px; border: 1px solid var(--line-strong); border-radius: 999px; background: rgba(255,255,255,0.03); }
.dash-tabs[hidden] { display: none; } /* the hidden attr must win over the display above */
.tab-badge[hidden] { display: none; }
.dash-tab { position: relative; display: inline-flex; align-items: center; gap: 8px; padding: 9px 22px; border-radius: 999px; font-family: var(--display); text-transform: uppercase; letter-spacing: 0.04em; font-size: 1.02rem; color: var(--muted); transition: color .2s, background-color .2s; }
.dash-tab:hover { color: var(--text); }
.dash-tab.active { background: var(--amber); color: #160a02; }
.tab-badge { min-width: 20px; height: 20px; padding: 0 6px; border-radius: 999px; background: var(--amber); color: #160a02; font-family: var(--body); font-size: 0.72rem; font-weight: 700; display: inline-grid; place-items: center; }
.dash-tab.active .tab-badge { background: #160a02; color: var(--amber); }
.dash-tab:focus-visible, .note-modal-close:focus-visible, .note-del:focus-visible { outline: 2px solid var(--amber); outline-offset: 2px; }
.note-del:focus-visible { opacity: 1; } /* always reveal the (normally hover-only) delete control when keyboard-focused */
/* shared note thread (dashboard panel + admin modal) */
.note-thread { display: flex; flex-direction: column; gap: 12px; max-height: clamp(220px, 60vh, 460px); overflow-y: auto; padding: 4px; margin-bottom: 18px; }
.note-item { max-width: 82%; padding: 11px 15px 13px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); align-self: flex-start; }
.note-item.mine { align-self: flex-end; }
.note-item.coach { border-color: rgba(255,122,51,0.34); background: var(--amber-soft); border-bottom-left-radius: 5px; }
.note-item.client { border-bottom-right-radius: 5px; }
.note-item.coach.mine, .note-item.client:not(.mine) { } /* alignment handled by .mine; color by author */
.note-meta { display: flex; align-items: center; gap: 9px; margin-bottom: 5px; font-size: 0.74rem; }
.note-who { font-weight: 700; letter-spacing: 0.01em; }
.note-item.coach .note-who { color: var(--amber-2); }
.note-item.client .note-who { color: var(--muted); }
.note-time { color: var(--faint); }
.note-del { margin-left: auto; width: 20px; height: 20px; border-radius: 6px; color: var(--faint); font-size: 1.05rem; line-height: 1; display: grid; place-items: center; opacity: 0; transition: opacity .15s, color .15s, background-color .15s; }
.note-item:hover .note-del { opacity: 1; }
.note-del:hover { color: #ff9a8a; background: rgba(255,90,70,0.12); }
.note-body { white-space: pre-wrap; word-break: break-word; line-height: 1.5; font-size: 0.93rem; color: var(--text); }
.note-empty { color: var(--muted); border: 1px dashed var(--line-strong); border-radius: var(--r); padding: 26px 22px; text-align: center; margin-bottom: 18px; }
/* composer */
.note-composer { margin-top: 4px; }
.note-input { width: 100%; resize: vertical; min-height: 64px; padding: 13px 15px; border: 1px solid var(--line-strong); border-radius: var(--r-sm); background: rgba(255,255,255,0.03); color: var(--text); font-family: var(--body); font-size: 0.95rem; line-height: 1.5; transition: border-color .2s; }
.note-input:focus { outline: none; border-color: var(--amber); }
.note-input::placeholder { color: var(--faint); }
.note-composer .cta-row { margin-top: 12px; }
/* admin: client row + notes chip */
.table-hint { color: var(--faint); font-size: 0.85rem; margin: -6px 0 16px; }
.admin-table tbody tr.member-row { cursor: pointer; transition: background-color .15s; }
.admin-table tbody tr.member-row:hover { background: rgba(255,122,51,0.06); }
.admin-table tbody tr.member-row:focus-visible { outline: 2px solid var(--amber); outline-offset: -2px; }
.note-chip { display: inline-block; font-size: 0.82rem; color: var(--amber-2); white-space: nowrap; border: 1px solid rgba(255,122,51,0.3); border-radius: 999px; padding: 2px 10px; }
.note-chip.empty { color: var(--faint); border-color: var(--line-strong); }
/* admin: notes modal */
body.modal-open { overflow: hidden; }
.note-modal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 20px; }
.note-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.62); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); }
.note-modal-card { position: relative; z-index: 1; width: min(640px, 100%); max-height: 88vh; overflow-y: auto; overflow-x: hidden; -webkit-overflow-scrolling: touch; display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--r-lg); padding: 26px 28px 28px; box-shadow: var(--shadow-lg); animation: notePop .22s var(--ease); }
@keyframes notePop { from { opacity: 0; transform: translateY(14px) scale(0.98); } to { opacity: 1; transform: none; } }
.note-modal-close { position: absolute; top: 14px; right: 16px; width: 34px; height: 34px; border-radius: 9px; color: var(--muted); font-size: 1.5rem; line-height: 1; display: grid; place-items: center; transition: color .2s, background-color .2s; }
.note-modal-close:hover { color: var(--text); background: rgba(255,255,255,0.06); }
.nm-head { margin: 0 36px 18px 0; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.nm-name { font-family: var(--display); font-size: 1.85rem; line-height: 1.1; }
.nm-sub { color: var(--muted); font-size: 0.85rem; margin-top: 4px; }
.nm-body { display: flex; flex-direction: column; min-height: 0; }
.nm-body .note-thread { max-height: clamp(200px, 48vh, 440px); }
/* grant-access modal + comp badge */
.admin-sec-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 6px; }
.comp-chip { display: inline-block; margin-left: 8px; font-size: 0.64rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brass); border: 1px solid rgba(212,165,55,0.4); border-radius: 999px; padding: 2px 8px; vertical-align: middle; }
.grant-form .field { margin-bottom: 14px; }
.grant-check { display: flex; align-items: center; gap: 9px; margin: 8px 0 2px; font-size: 0.92rem; color: var(--muted); cursor: pointer; }
.grant-check input { width: 16px; height: 16px; accent-color: var(--amber); }
.grant-check[hidden] { display: none; } /* hidden attr must beat the flex above */
.grant-ok { margin-top: 16px; padding: 14px 16px; border: 1px solid rgba(52,210,123,0.35); background: rgba(52,210,123,0.08); border-radius: var(--r-sm); font-size: 0.92rem; line-height: 1.55; }
.grant-link { margin-top: 10px; font-size: 0.82rem; color: var(--muted); word-break: break-all; }
.grant-link a { color: var(--amber-2); }
.grant-ok-note { margin-top: 8px; font-size: 0.8rem; color: var(--faint); }
.grant-mode { display: inline-flex; padding: 4px; border: 1px solid var(--line-strong); border-radius: 999px; background: rgba(255,255,255,0.03); margin-bottom: 16px; }
.gm-opt { padding: 8px 16px; border-radius: 999px; font-size: 0.85rem; font-weight: 600; color: var(--muted); transition: color .2s, background-color .2s; }
.gm-opt.active { background: var(--amber); color: #160a02; }
.grant-mode-note { color: var(--faint); font-size: 0.82rem; margin: 6px 0 0; line-height: 1.5; }
.status-pill.pending { color: var(--amber-2); background: var(--amber-soft); border: 1px solid rgba(255,122,51,0.35); }
/* invited → pay-to-activate wall */
.enroll-panel .eyebrow { color: var(--amber-2); }
.enroll-price { font-family: var(--display); font-size: 2.4rem; color: var(--brass); margin: 10px 0 18px; line-height: 1; }
.enroll-note { color: var(--faint); font-size: 0.82rem; margin-top: 14px; }
/* ---- enhancement protocol ---- */
/* in-modal tabs (notes / protocol) */
.nm-tabs { display: inline-flex; gap: 4px; padding: 4px; border: 1px solid var(--line-strong); border-radius: 999px; background: rgba(255,255,255,0.03); margin: 0 0 18px; }
.nm-tab { padding: 7px 18px; border-radius: 999px; font-size: 0.85rem; font-weight: 600; color: var(--muted); transition: color .2s, background-color .2s; }
.nm-tab.active { background: var(--amber); color: #160a02; }
/* client read-only view */
.rx-disclaimer { border: 1px solid rgba(212,165,55,0.34); background: rgba(212,165,55,0.07); border-radius: var(--r-sm); padding: 14px 16px; font-size: 0.86rem; line-height: 1.55; color: var(--muted); margin-bottom: 20px; }
.rx-disclaimer strong { color: var(--brass); }
.rx-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 18px; }
.rx-card { border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); padding: 18px 20px; }
.rx-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.rx-name { font-family: var(--display); text-transform: uppercase; font-size: 1.3rem; letter-spacing: 0.01em; }
.rx-type { font-size: 0.66rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 3px 9px; border-radius: 999px; }
.rx-type.peptide { color: #cdbcff; background: rgba(167,139,250,0.14); border: 1px solid rgba(167,139,250,0.4); }
.rx-type.steroid { color: #ffb27a; background: rgba(255,122,51,0.14); border: 1px solid rgba(255,122,51,0.45); }
.rx-type.other { color: var(--faint); background: rgba(255,255,255,0.04); border: 1px solid var(--line-strong); }
.rx-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.rx-grid > div span { display: block; font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); margin-bottom: 3px; }
.rx-grid > div p { margin: 0; font-size: 0.95rem; }
.rx-notes { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); white-space: pre-wrap; word-break: break-word; line-height: 1.6; color: var(--muted); font-size: 0.92rem; }
/* coach editor */
.rx-editor-note { color: var(--faint); font-size: 0.82rem; line-height: 1.5; margin: 0 0 16px; }
.rx-rows { display: flex; flex-direction: column; gap: 14px; }
.rx-row { border: 1px solid var(--line); border-radius: var(--r-sm); background: rgba(255,255,255,0.02); padding: 14px; }
.rx-row-top { display: flex; gap: 10px; align-items: center; margin-bottom: 10px; }
.rx-row .input, .rx-row select { width: 100%; padding: 11px 13px; border-radius: var(--r-sm); background: var(--ink-2); border: 1px solid var(--line-strong); color: var(--text); font: inherit; -webkit-appearance: none; appearance: none; transition: border-color .2s; }
.rx-row .input::placeholder { color: var(--faint); }
.rx-row .input:focus, .rx-row select:focus, .rx-row .note-input:focus { outline: none; border-color: var(--amber); }
.rx-row-top .input { flex: 1; min-width: 0; }
.rx-typewrap { flex: none; width: 118px; }
.rx-del { flex: none; width: 32px; height: 32px; border-radius: 8px; color: var(--faint); font-size: 1.3rem; line-height: 1; display: grid; place-items: center; transition: color .15s, background-color .15s; }
.rx-del:hover { color: #ff9a8a; background: rgba(255,90,70,0.12); }
.rx-row-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 10px; }
.rx-add { margin: 14px 0 4px; }
/* protocol files — admin editor */
.rx-divider { border: 0; border-top: 1px solid var(--line); margin: 22px 0; }
.rx-files-h { font-family: var(--display); text-transform: uppercase; font-size: 1.3rem; margin: 0 0 4px; }
.rx-files-note { color: var(--faint); font-size: 0.82rem; line-height: 1.5; margin: 0 0 12px; }
.rx-dropzone { border: 1.5px dashed var(--line-strong); border-radius: var(--r-sm); padding: 22px 16px; text-align: center; color: var(--muted); font-size: 0.9rem; cursor: pointer; transition: border-color .2s, background-color .2s, color .2s; }
.rx-dropzone:hover, .rx-dropzone:focus-visible { border-color: var(--amber); color: var(--text); outline: none; }
.rx-dropzone.drag { border-color: var(--amber); background: var(--amber-soft); color: var(--amber-2); }
.rx-linkrow { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.rx-linkrow .input { flex: 1; min-width: 120px; padding: 11px 13px; border-radius: var(--r-sm); background: var(--ink-2); border: 1px solid var(--line-strong); color: var(--text); font: inherit; -webkit-appearance: none; appearance: none; }
.rx-linkrow .input::placeholder { color: var(--faint); }
.rx-linkrow .input:focus { outline: none; border-color: var(--amber); }
.rx-linkrow .btn { flex: none; }
.att-list-admin { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.att-row { display: flex; align-items: center; gap: 12px; padding: 8px 10px; border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--surface); }
.att-thumb { width: 38px; height: 38px; border-radius: 7px; flex: none; object-fit: cover; display: grid; place-items: center; font-size: 1.1rem; background: rgba(255,255,255,0.05); }
.att-thumb.video { color: var(--amber); } .att-thumb.doc { color: var(--muted); }
.att-row .att-name { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 0.92rem; }
.att-tag { font-size: 0.64rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 2px 8px; border-radius: 999px; color: var(--faint); border: 1px solid var(--line-strong); flex: none; }
.att-tag.video { color: var(--amber-2); border-color: rgba(255,122,51,0.4); }
.att-tag.image { color: #cdbcff; border-color: rgba(167,139,250,0.4); }
.att-del { flex: none; width: 28px; height: 28px; border-radius: 7px; color: var(--faint); font-size: 1.2rem; line-height: 1; display: grid; place-items: center; transition: color .15s, background-color .15s; }
.att-del:hover { color: #ff9a8a; background: rgba(255,90,70,0.12); }
/* protocol files — client read-only */
.att-section { margin-top: 24px; }
.att-h { font-family: var(--display); text-transform: uppercase; font-size: 1.3rem; margin: 0 0 14px; }
.att-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 14px; }
.att-card { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); overflow: hidden; text-decoration: none; color: var(--text); transition: border-color .2s, transform .2s; }
.att-card:hover { border-color: var(--amber); transform: translateY(-2px); }
.att-card.image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; background: rgba(255,255,255,0.04); }
.att-card .att-name { padding: 11px 14px; font-size: 0.9rem; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.att-card.video, .att-card.doc { flex-direction: row; align-items: center; gap: 12px; padding: 14px 16px; }
.att-card.video .att-name, .att-card.doc .att-name { padding: 0; flex: 1; }
.att-ico { font-size: 1.3rem; flex: none; }
.att-card.video .att-ico { color: var(--amber); }
.att-act { flex: none; font-size: 0.8rem; font-weight: 600; color: var(--amber-2); }
@media (max-width: 560px) { .rx-grid, .rx-row-grid { grid-template-columns: 1fr; } .rx-typewrap { width: 104px; } .rx-linkrow { flex-direction: column; } .rx-linkrow .btn { width: 100%; } }
@media (max-width: 560px) { .note-item { max-width: 92%; } .dash-tab { padding: 8px 18px; font-size: 0.95rem; } .note-modal-card { padding: 22px 18px 20px; } .note-del { opacity: 1; } }

/* ======================================================= MANUALS (one-time digital products) */
.man-wrap { max-width: 1140px; margin: 0 auto; padding: 36px var(--gutter) 90px; }
.man-wrap .eyebrow, .bundle-copy .eyebrow { display: inline-block; font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; color: var(--amber-2); }
.man-hero { padding: 26px 0 30px; }
.man-hero h1 { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: clamp(2.5rem, 6vw, 4.4rem); line-height: 0.98; margin: 14px 0 0; }
.man-hero-sub { color: var(--muted); font-size: 1.08rem; line-height: 1.6; max-width: 620px; margin: 20px 0 0; }
.man-hero-meta { display: flex; align-items: center; gap: 12px; margin-top: 22px; color: var(--muted); font-size: 0.95rem; flex-wrap: wrap; }
.mh-stat strong { color: var(--text); } .mh-dot { color: var(--faint); }
.man-foot { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--faint); font-size: 0.86rem; line-height: 1.6; }
/* bundle */
.bundle-card { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; border: 1px solid rgba(212,165,55,0.4); border-radius: var(--r-lg); background: linear-gradient(120deg, rgba(212,165,55,0.09), rgba(255,122,51,0.05)); padding: 28px 30px; margin: 6px 0 40px; }
.bundle-copy h2 { font-family: var(--display); text-transform: uppercase; font-size: 2rem; margin: 8px 0 6px; }
.bundle-copy p { color: var(--muted); max-width: 520px; line-height: 1.55; }
.bundle-buy { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.bundle-price { display: flex; align-items: baseline; gap: 10px; }
.bp-now { font-family: var(--display); font-size: 2.6rem; color: var(--brass); }
.bp-was { color: var(--faint); text-decoration: line-through; font-size: 1.1rem; }
/* card grid */
.man-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 18px; margin-top: 16px; }
.man-card { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); padding: 22px 22px 18px; text-decoration: none; color: var(--text); transition: border-color .2s var(--ease), transform .2s var(--ease); --acc: var(--amber); }
.man-card[data-accent="brass"] { --acc: var(--brass); } .man-card[data-accent="violet"] { --acc: #a78bfa; }
.man-card:hover { border-color: var(--acc); transform: translateY(-3px); }
.mc-top { display: flex; justify-content: space-between; align-items: center; }
.mc-theme { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; color: var(--acc); }
.mc-num { font-family: var(--display); font-size: 1.1rem; color: var(--faint); }
.man-card h3 { font-family: var(--display); text-transform: uppercase; font-size: 1.5rem; line-height: 1.05; margin: 16px 0 8px; }
.man-card > p { color: var(--muted); font-size: 0.92rem; line-height: 1.5; flex: 1; margin: 0; }
.mc-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line); }
.mc-price { font-family: var(--display); font-size: 1.5rem; }
.mc-price.owned { color: #8ef0b6; font-size: 1rem; letter-spacing: .04em; text-transform: uppercase; }
.mc-go { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 600; color: var(--acc); }
.lib-keep { color: var(--faint); }
/* homepage manuals teaser */
#manuals .home-manuals { grid-template-columns: repeat(4, 1fr); margin-top: 8px; }
@media (max-width: 1000px) { #manuals .home-manuals { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { #manuals .home-manuals { grid-template-columns: 1fr; } }
#manuals .manuals-cta { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-top: 36px; text-align: center; }
#manuals .manuals-cta-note { color: var(--muted); font-size: 0.95rem; }
/* ===== reader ===== */
.reader-wrap { max-width: 760px; margin: 0 auto; padding: 28px var(--gutter) 100px; }
.rd-hero { padding: 8px 0 26px; border-bottom: 1px solid var(--line); margin-bottom: 30px; --acc: var(--amber); }
.rd-hero[data-accent="brass"] { --acc: var(--brass); } .rd-hero[data-accent="violet"] { --acc: #a78bfa; }
.rd-theme { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; color: var(--acc); }
.rd-hero h1 { font-family: var(--display); text-transform: uppercase; font-size: clamp(2.2rem, 5.5vw, 3.4rem); line-height: 1; margin: 12px 0 0; }
.rd-tagline { color: var(--muted); font-size: 1.15rem; margin: 14px 0 0; line-height: 1.4; }
.rd-meta { display: flex; gap: 10px; align-items: center; margin-top: 16px; color: var(--faint); font-size: 0.9rem; }
.rd-summary { color: var(--muted); line-height: 1.65; margin-top: 18px; font-size: 1.02rem; }
.rd-body { font-size: 1.05rem; }
.rd-section { margin: 0 0 34px; }
.rd-section h2 { font-family: var(--display); text-transform: uppercase; font-size: 1.7rem; margin: 0 0 14px; }
.rd-section p { color: #d8d3cb; line-height: 1.75; margin: 0 0 15px; }
.rd-bullets { margin: 0 0 16px; padding-left: 0; list-style: none; }
.rd-bullets li { position: relative; padding-left: 22px; color: #d8d3cb; line-height: 1.65; margin-bottom: 9px; }
.rd-bullets li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 6px; height: 6px; border-radius: 50%; background: var(--amber); }
.rd-callout { border-left: 3px solid var(--amber); background: var(--amber-soft); border-radius: 0 var(--r-sm) var(--r-sm) 0; padding: 16px 20px; margin: 22px 0; }
.rd-callout-label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; color: var(--amber-2); }
.rd-callout p { margin: 6px 0 0; color: var(--text); line-height: 1.6; }
.rd-takeaways { border-top: 1px solid var(--line); padding-top: 26px; }
.rd-takeaways ul { list-style: none; padding: 0; margin: 0; }
.rd-takeaways li { position: relative; padding-left: 30px; margin-bottom: 12px; line-height: 1.6; color: var(--text); }
.rd-takeaways li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--amber); font-weight: 700; }
.rd-disclaimer { margin-top: 30px; padding: 16px 20px; border: 1px solid var(--line-strong); border-radius: var(--r-sm); background: rgba(255,255,255,0.02); color: var(--faint); font-size: 0.86rem; line-height: 1.6; }
.rd-disclaimer strong { color: var(--muted); }
/* charts */
.chart { margin: 24px 0 26px; border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); padding: 18px 18px 14px; }
.chart-title { font-family: var(--display); text-transform: uppercase; font-size: 1.05rem; letter-spacing: 0.03em; margin-bottom: 10px; }
.chart-title span { color: var(--faint); font-size: 0.8rem; }
.chart-svg { width: 100%; height: auto; display: block; }
.chart-svg text { font-family: var(--body); }
.chart-svg .cg-axis { fill: var(--faint); font-size: 11px; }
.chart-svg .cg-lab { fill: var(--muted); font-size: 11px; }
.chart-svg .cg-val { fill: var(--text); font-size: 11px; font-weight: 600; }
.chart-cap { color: var(--faint); font-size: 0.82rem; margin: 10px 2px 0; font-style: italic; }
/* locked gate */
.rd-teaser { position: relative; }
.rd-teaser .rd-fade { position: absolute; left: 0; right: 0; bottom: 0; height: 180px; background: linear-gradient(to bottom, transparent, var(--ink)); pointer-events: none; }
.rd-gate { text-align: center; border: 1px solid var(--line-strong); border-radius: var(--r-lg); background: var(--surface); padding: 34px 28px; margin-top: 8px; --acc: var(--amber); }
.rd-gate[data-accent="brass"] { --acc: var(--brass); } .rd-gate[data-accent="violet"] { --acc: #a78bfa; }
.rd-gate h3 { font-family: var(--display); text-transform: uppercase; font-size: 1.9rem; margin: 0 0 10px; }
.rd-gate > p { color: var(--muted); max-width: 460px; margin: 0 auto 22px; line-height: 1.6; }
.rd-toc { text-align: left; max-width: 440px; margin: 0 auto 24px; border: 1px solid var(--line); border-radius: var(--r); background: rgba(255,255,255,0.02); padding: 18px 22px; }
.rd-toc > span { display: block; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; color: var(--faint); margin-bottom: 10px; }
.rd-toc ul { list-style: none; padding: 0; margin: 0; }
.rd-toc li { position: relative; padding: 7px 0 7px 24px; border-bottom: 1px solid var(--line); color: var(--text); font-size: 0.95rem; }
.rd-toc li:last-child { border-bottom: 0; }
.rd-toc li::before { content: ""; position: absolute; left: 4px; top: 14px; width: 6px; height: 6px; border-radius: 50%; background: var(--acc); }
.rd-gate-alt { display: inline-block; margin-top: 16px; color: var(--muted); font-size: 0.9rem; }
.rd-gate-alt:hover { color: var(--amber-2); }
.rd-gate-note { color: var(--faint); font-size: 0.78rem; margin-top: 16px; }
.btn-lg { font-size: 1.05rem; padding: 15px 32px; }
/* purchase success */
.purchase-panel { max-width: 520px; margin: 60px auto; text-align: center; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface); padding: 44px 34px; }
.pp-check { width: 60px; height: 60px; margin: 0 auto 18px; border-radius: 50%; background: rgba(52,210,123,0.14); color: #8ef0b6; font-size: 1.8rem; display: grid; place-items: center; border: 1px solid rgba(52,210,123,0.4); }
.purchase-panel h1 { font-family: var(--display); text-transform: uppercase; font-size: 2.6rem; margin: 0 0 8px; }
.pp-list { list-style: none; padding: 0; margin: 16px 0 26px; }
.pp-list li { padding: 9px 0; border-bottom: 1px solid var(--line); color: var(--text); }
.pp-list li:last-child { border-bottom: 0; }
.pp-note { color: var(--faint); font-size: 0.85rem; margin-top: 18px; }
@media (max-width: 640px) {
  .bundle-card { flex-direction: column; align-items: flex-start; } .bundle-buy { align-items: flex-start; width: 100%; }
  .man-grid { grid-template-columns: 1fr; }
}
@media print {
  .backdrop, .grain, .dash-bar, .reader-bar, #readerActions, .rd-fade { display: none !important; }
  body { background: #fff; color: #111; }
  .reader-wrap { max-width: 100%; padding: 0; }
  .rd-hero { border-color: #ddd; } .rd-hero h1, .rd-section h2 { color: #111 !important; }
  .rd-tagline, .rd-summary, .rd-section p, .rd-bullets li, .rd-takeaways li, .rd-callout p { color: #1a1a1a !important; }
  .rd-theme, .rd-callout-label, .rd-takeaways li::before, .rd-bullets li::before { color: #b4540f !important; }
  .chart, .rd-callout, .rd-disclaimer, .rd-section { break-inside: avoid; }
  .chart, .rd-callout { border-color: #ddd !important; background: #fafafa !important; }
  .chart-svg .cg-axis, .chart-svg .cg-lab { fill: #555 !important; } .chart-svg .cg-val { fill: #111 !important; }
  .chart-title { color: #111 !important; }
}

/* ------------------------------------------------------- Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .marquee-track { animation: none; }
  .pulse { animation: none; }
}
