/* MeechTunez | dark minimalist stylesheet */

:root {
  --bg: #0a0a0a;
  --bg-elevated: #101114;
  --bg-card: #15171b;
  --bg-card-hover: #1a1d22;
  --border: #23262c;
  --border-strong: #353941;

  --text: #f0f1f3;
  --text-muted: #9aa0a6;
  --text-dim: #5f6368;

  --accent: #00d4ff;
  --accent-hover: #4ee0ff;
  --accent-glow: rgba(0, 212, 255, 0.10);
  --accent-glow-strong: rgba(0, 212, 255, 0.18);

  --radius: 10px;
  --radius-lg: 14px;
  --maxw: 1180px;
  --maxw-narrow: 820px;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-image:
    radial-gradient(1200px 600px at 50% -100px, var(--accent-glow), transparent 70%),
    radial-gradient(800px 400px at 90% 30%, rgba(0, 212, 255, 0.04), transparent 60%);
  background-attachment: fixed;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}

h1, h2, h3, h4 {
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
}

p { margin: 0; }

.mono {
  font-family: var(--font-mono);
  font-size: 0.92em;
  color: var(--text-muted);
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow {
  max-width: var(--maxw-narrow);
}

/* ─── Nav ──────────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 18px 32px;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--border);
}

/* Offset anchor scrolling so the sticky nav doesn't cover the target */
#top, .section, [id] { scroll-margin-top: 84px; }

.nav__brand { margin-right: auto; display: inline-flex; align-items: center; gap: 9px; }
.brand__mark { display: block; height: 28px; width: 28px; border-radius: 6px; }

.brand {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.03em;
  color: var(--text);
  white-space: nowrap;
}
.brand__accent { color: var(--accent); }
.accent { color: var(--accent); }
.brand--sm { font-size: 16px; }

.nav__links {
  display: flex;
  gap: 28px;
}
.nav__links a {
  font-size: 14px;
  color: var(--text-muted);
}
.nav__links a:hover {
  color: var(--text);
}

.nav__dropdown { position: relative; display: inline-flex; align-items: center; }
.nav__dropdown-btn {
  font: inherit;
  font-size: 14px;
  color: var(--text-muted);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.nav__dropdown-btn:hover { color: var(--text); }
.nav__caret { font-size: 9px; transition: transform 0.2s ease; }
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 210px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 60;
}
.nav__dropdown-menu::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown:hover .nav__caret,
.nav__dropdown:focus-within .nav__caret { transform: rotate(180deg); }
.nav__dropdown-menu a {
  padding: 9px 12px;
  border-radius: 7px;
  font-size: 14px;
  color: var(--text-muted);
  white-space: nowrap;
}
.nav__dropdown-menu a:hover { background: var(--bg-elevated); color: var(--text); }
.nav__dropdown-menu a[aria-current="page"] { color: var(--accent); }

.nav__cta {
  display: flex;
  gap: 10px;
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ─── Buttons ──────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  font: 500 14px/1 var(--font-sans);
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.05s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--lg {
  padding: 14px 24px;
  font-size: 15px;
}

.btn--primary {
  background: var(--accent);
  color: #001218;
  font-weight: 600;
  box-shadow: 0 0 0 1px var(--accent), 0 8px 30px -10px var(--accent-glow-strong);
}
.btn--primary:hover {
  background: var(--accent-hover);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn--ghost:hover {
  background: var(--bg-card-hover);
  border-color: var(--text-muted);
}

.btn--disabled {
  background: var(--bg-card-hover);
  color: var(--text-dim);
  border-color: var(--border-strong);
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
}

/* ─── Partner banner (Lwky) ────────────────────────── */
.partner {
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(700px 200px at 50% -40px, rgba(124, 77, 255, 0.14), transparent 70%),
    var(--bg-elevated);
  padding: 12px 0;
}
.partner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 16px;
  text-align: center;
}
.partner__label {
  font: 500 12.5px/1.4 var(--font-mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.partner__logo {
  display: inline-flex;
  align-items: center;
  padding: 6px 15px;
  border-radius: 8px;
  border: 1px solid rgba(124, 77, 255, 0.4);
  background: rgba(124, 77, 255, 0.09);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.partner__logo:hover {
  border-color: rgba(124, 77, 255, 0.75);
  background: rgba(124, 77, 255, 0.18);
}
.partner__logo img { display: block; height: 30px; width: auto; }
.partner__sub {
  flex-basis: 100%;
  font-size: 13px;
  color: var(--text-dim);
}

/* ─── Hero ─────────────────────────────────────────── */

.hero {
  padding: 110px 0 90px;
  text-align: left;
}
.hero .container { max-width: 980px; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-elevated);
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 18px;
}
.hero__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text);
  margin-bottom: 16px;
}
.hero__mark { display: block; height: 46px; width: 46px; border-radius: 9px; flex: 0 0 auto; }
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

.hero__title {
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 28px;
}
.hero__title--muted {
  color: var(--text-muted);
}

.hero__lede {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 20px;
}

.hero__by {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 40px;
  padding: 9px 16px 9px 14px;
  font: 500 13px/1.4 var(--font-mono);
  letter-spacing: 0.01em;
  color: var(--text-muted);
  background: rgba(0, 212, 255, 0.06);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 999px;
}
.hero__by-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
  animation: byPulse 2.4s ease-in-out infinite;
}
@keyframes byPulse {
  0%, 100% { box-shadow: 0 0 5px rgba(0, 212, 255, 0.5); opacity: 0.85; }
  50% { box-shadow: 0 0 14px rgba(0, 212, 255, 0.95); opacity: 1; }
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 64px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 0;
}
.hero__stats > div {
  background: var(--bg-elevated);
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.hero__stats > div:hover {
  background: var(--bg-card);
  box-shadow: inset 0 1px 0 rgba(0, 212, 255, 0.45);
}
.hero__stats dt {
  font: 600 13px/1 var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin: 0;
  padding: 15px 24px;
  background: linear-gradient(180deg, rgba(0, 212, 255, 0.15), rgba(0, 212, 255, 0.04));
  border-bottom: 1px solid rgba(0, 212, 255, 0.22);
  text-shadow: 0 0 18px rgba(0, 212, 255, 0.45);
  transition: background 0.25s ease;
}
.hero__stats > div:hover dt {
  background: linear-gradient(180deg, rgba(0, 212, 255, 0.24), rgba(0, 212, 255, 0.07));
}
.hero__stats dd {
  margin: 0;
  padding: 22px 24px 24px;
  font-size: 15px;
  color: var(--text);
  flex: 1;
}
.hero__stats dd ol {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: stat;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero__stats dd li {
  counter-increment: stat;
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14.5px;
  line-height: 1.45;
}
.hero__stats dd li::before {
  content: counter(stat);
  color: var(--accent);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 12px;
  flex-shrink: 0;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 5px;
  background: rgba(0, 212, 255, 0.07);
}

/* ─── Guide CTA ────────────────────────────────────── */

.guide-cta { padding: 72px 0; }
.guide-cta__card {
  text-align: center;
  padding: 48px 40px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.guide-cta__card .kicker { margin-bottom: 14px; }
.guide-cta__card h2 {
  font-size: clamp(24px, 2.8vw, 32px);
  margin-bottom: 14px;
}
.guide-cta__card p {
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 28px;
  font-size: clamp(15px, 1.5vw, 17px);
}
@media (max-width: 600px) {
  .guide-cta__card { padding: 36px 24px; }
}

/* ─── Sections ─────────────────────────────────────── */

.section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.section--alt {
  background: var(--bg-elevated);
}
.section--cta {
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}

.section__head {
  margin-bottom: 56px;
  max-width: 720px;
}
.kicker {
  display: inline-block;
  font: 500 12px/1 var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 16px;
}
.section__head h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 16px;
}
#process .section__head { max-width: none; }
#process .section__head h2 { font-size: clamp(20px, 2.6vw, 31px); white-space: nowrap; }
@media (max-width: 760px) {
  #process .section__head h2 { white-space: normal; font-size: clamp(24px, 6vw, 30px); }
}
.section__sub {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 640px;
}

/* ─── Prose ────────────────────────────────────────── */

.prose {
  margin-bottom: 56px;
}
.prose p {
  color: var(--text-muted);
  font-size: 17px;
  margin-bottom: 20px;
  max-width: 70ch;
}
.prose strong { color: var(--text); font-weight: 600; }
.prose ul { padding-left: 22px; margin: 0 0 20px; max-width: 70ch; }
.prose li {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 10px;
}
.prose__highlight {
  margin: 16px 0 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 20px 24px;
  color: var(--text) !important;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
}
.prose__highlight em { color: var(--accent); font-style: normal; font-weight: 600; }

/* ─── Frame time graphs ────────────────────────────── */

.frame-graphs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 36px 0;
}
.frame-graph {
  margin: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 24px 20px;
}
.frame-graph figcaption {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}
.frame-graph__title {
  font: 500 11px/1 var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 6px;
}
.frame-graph--bad .frame-graph__title { color: #ff6b7a; }
.frame-graph--good .frame-graph__title { color: var(--accent); }
.frame-graph__sub {
  font-size: 13px;
  color: var(--text-muted);
}
.frame-graph svg {
  display: block;
  width: 100%;
  height: auto;
}
.frame-graph__meta {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
}
.frame-graph__meta b {
  color: var(--text);
  font-weight: 500;
}
@media (max-width: 700px) {
  .frame-graphs { grid-template-columns: 1fr; }
}

/* ─── Frame-time explainer (avg vs cadence) ────────── */
.ftx {
  margin: 32px 0;
  padding: 28px 26px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg, 14px);
}
.ftx__cap {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 24px;
  padding: 12px 16px;
  background: linear-gradient(180deg, rgba(0, 212, 255, 0.12), rgba(0, 212, 255, 0.04));
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: var(--radius);
  letter-spacing: 0.01em;
}
.ftx__cap strong { color: inherit; font-weight: 700; }

.ff-intro {
  margin: 0 0 22px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-muted);
}
.ftx__row { margin-bottom: 28px; }
.ftx__row:last-of-type { margin-bottom: 0; }
.ftx__tag {
  display: inline-block;
  font: 600 12px/1 "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding: 5px 11px;
  border-radius: 5px;
}
.ftx__row--good .ftx__tag { color: var(--accent); background: var(--accent-glow); }
.ftx__row--bad .ftx__tag { color: #ff6b7a; background: rgba(255, 107, 122, 0.12); }
.ftx__chain {
  display: flex;
  align-items: center;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 212, 255, 0.45) transparent;
}
.ftx__chain::-webkit-scrollbar { height: 8px; }
.ftx__chain::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
}
.ftx__chain::-webkit-scrollbar-thumb {
  background: rgba(0, 212, 255, 0.4);
  border-radius: 4px;
}
.ftx__chain::-webkit-scrollbar-thumb:hover { background: rgba(0, 212, 255, 0.65); }
.ftx__frame {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  min-width: 68px;
  padding: 0 11px;
  border: 1px solid var(--border-strong);
  border-radius: 7px;
  background: var(--bg);
  font: 600 11.5px/1 "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  white-space: nowrap;
}
.ftx__gap {
  flex: 0 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: center;
}
.ftx__ms {
  font: 500 12px/1 "JetBrains Mono", ui-monospace, monospace;
  color: var(--text-muted);
  margin-bottom: 8px;
  white-space: nowrap;
}
.ftx__arrow {
  position: relative;
  width: 100%;
  height: 0;
  border-top: 2px solid currentColor;
}
.ftx__arrow::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 7px solid currentColor;
  border-top: 4.5px solid transparent;
  border-bottom: 4.5px solid transparent;
}
.ftx__row--good .ftx__arrow { color: var(--accent); }
.ftx__row--bad .ftx__arrow { color: #ff6b7a; }
.ftx__math {
  margin-top: 16px;
  font: 400 14.5px/1.5 "JetBrains Mono", ui-monospace, monospace;
  color: var(--text-muted);
}
.ftx__math strong { color: var(--text); font-weight: 600; }
.ftx__note {
  margin: 24px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--text-muted);
}
.ftx__note + .ftx__note {
  margin-top: 14px;
  padding-top: 0;
  border-top: none;
}

/* ─── Pricing ──────────────────────────────────────── */
.pricing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: start;
}
.price-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.price-card--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 24px 60px -30px var(--accent-glow-strong);
}
.price-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font: 600 10px/1 var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid var(--accent);
  padding: 5px 10px;
  border-radius: 999px;
}
.price-card__name {
  font-size: 22px;
  margin-bottom: 8px;
}
.price-card__tagline {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 18px;
  min-height: 38px;
}
.price-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.price-card__amount {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.price-card__unit {
  color: var(--text-dim);
  font-size: 14px;
}
.price-card__features {
  list-style: none;
  padding: 22px 0 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
  border-top: 1px solid var(--border);
}
.price-card__features li {
  position: relative;
  padding-left: 26px;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.5;
}
.price-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}
.price-card__features strong { color: var(--text); font-weight: 600; }
.feature-note {
  display: inline-block;
  margin-top: 3px;
  font-size: 0.86em;
  font-style: italic;
  color: var(--text-dim);
}
.price-card__why {
  font-size: 13px;
  color: var(--text-dim);
  border-left: 2px solid var(--border-strong);
  padding-left: 14px;
  line-height: 1.6;
}
.price-card__cta {
  margin-top: auto;
  width: 100%;
}
@media (max-width: 760px) {
  .pricing { grid-template-columns: 1fr; }
}

.build-band {
  margin-top: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 34px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 44px;
  align-items: center;
}
.build-band__badge {
  position: static;
  display: inline-block;
  margin-bottom: 14px;
}
.build-band__name {
  font-size: 24px;
  margin-bottom: 12px;
}
.build-band__desc {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.build-band__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 22px;
}
.build-band__fine {
  margin-top: 16px;
  font-size: 12.5px;
  color: var(--text-dim);
  line-height: 1.5;
}
.build-flow {
  list-style: none;
  padding: 0;
  margin: 0;
}
.build-flow li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  color: var(--text-muted);
  font-size: 14.5px;
  border-bottom: 1px solid var(--border);
}
.build-flow li:last-child { border-bottom: 0; }
.build-flow__n {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-glow);
  color: var(--accent);
  font: 600 12px/1 var(--font-mono);
}
@media (max-width: 760px) {
  .build-band { grid-template-columns: 1fr; gap: 28px; padding: 28px 22px; }
}

/* ─── Pillars ──────────────────────────────────────── */

.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.pillar {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 32px;
  align-items: start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.pillar:hover {
  border-color: var(--border-strong);
}
.pillar__num {
  font: 500 13px/1 var(--font-mono);
  color: var(--accent);
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}
.pillar h3 {
  font-size: 18px;
  margin: 0;
}
.pillar ul {
  margin: 0;
  padding-left: 20px;
  list-style: disc;
}
.pillar li {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 10px;
}
.pillar li:last-child { margin-bottom: 0; }
.pillar li::marker { color: var(--accent); }

/* ─── Tune grid ────────────────────────────────────── */

.tune-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
}
.card__head {
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--border);
}
.card__tag {
  display: inline-block;
  font: 600 13px/1 var(--font-mono);
  letter-spacing: 0.1em;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 7px 12px;
  border-radius: 6px;
  margin-bottom: 16px;
}
.card__head h3 {
  font-size: 18px;
  color: var(--text);
}
.card__body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}
.card__body > p {
  color: var(--text-muted);
  font-size: 14.5px;
}
.card__row h4 {
  font-size: 13px;
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.card__row p {
  color: var(--text-muted);
  font-size: 14px;
}
.card__note {
  color: var(--text-dim) !important;
  font-style: italic;
  font-size: 13.5px !important;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

/* ─── Steps ────────────────────────────────────────── */

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  counter-reset: step;
}
.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
}
.step__num {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-glow);
  color: var(--accent);
  font: 600 18px/40px var(--font-mono);
  text-align: center;
  margin-bottom: 22px;
  border: 1px solid var(--accent-glow-strong);
}
.step h3 {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 12px;
}
.step__h-sep {
  color: var(--accent);
  font-weight: 400;
  margin: 0 2px;
}
.step > p {
  color: var(--text-muted);
  font-size: 14.5px;
  margin-bottom: 18px;
}
.step__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.step__list li {
  color: var(--text-muted);
  font-size: 13.5px;
  padding: 4px 0;
}
.step__list-note {
  display: block;
  color: var(--text-dim);
  font-size: 12.5px;
  margin-top: 2px;
  padding-left: 2px;
  line-height: 1.5;
}
.step__list a { color: inherit; text-decoration: none; }
.step__list a:hover .mono { color: var(--accent); }

.process__note {
  margin-top: 40px;
  padding: 18px 22px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 14px;
}
.process__note strong { color: var(--accent); }

/* ─── FAQ ──────────────────────────────────────────── */

.faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.15s ease;
}
.faq__item:hover { border-color: var(--border-strong); }
.faq__item[open] { border-color: var(--border-strong); }
.faq__q {
  cursor: pointer;
  padding: 20px 24px;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  user-select: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: '+';
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq__item[open] .faq__q::after {
  transform: rotate(45deg);
}
.faq__a {
  padding: 0 24px 22px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}
.faq__a p { margin: 0 0 14px; }
.faq__a p:last-child { margin-bottom: 0; }
.faq__a em { color: var(--text); font-style: italic; }
.faq__a strong { color: var(--text); font-weight: 600; }

/* ─── CTA ──────────────────────────────────────────── */

.cta {
  text-align: center;
  padding: 60px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 200px at 50% 0%, var(--accent-glow-strong), transparent 70%);
  pointer-events: none;
}
.cta > * { position: relative; }
.cta h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 14px;
}
.cta > p {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 540px;
  margin: 0 auto 32px;
}
.intake-embed {
  margin: 8px 0 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px;
  overflow: hidden;
  text-align: left;
}
.intake-embed iframe {
  display: block;
  width: 100%;
  min-height: 500px;
  border: 0;
}

.cta__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}
.cta__fine {
  color: var(--text-dim);
  font-size: 12.5px;
}

/* ─── Footer ───────────────────────────────────────── */

.footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
  background: var(--bg);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__tag {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 12px;
  max-width: 320px;
}
.footer__col h4 {
  font: 500 12px/1 var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.footer__col a {
  display: block;
  color: var(--text-muted);
  font-size: 14px;
  padding: 5px 0;
}
.footer__col a:hover { color: var(--text); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 13px;
}

/* ─── Guide page ───────────────────────────────────── */

.guide {
  padding: 80px 0 100px;
}
.guide .container { max-width: 760px; }

.guide h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
}
.guide__lede {
  color: var(--text-muted);
  font-size: 18px;
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.guide h2 {
  font-size: 26px;
  margin: 56px 0 16px;
  padding-top: 16px;
}
.guide h3 {
  font-size: 19px;
  margin: 32px 0 12px;
  color: var(--accent);
}
.guide h4 {
  font-size: 15px;
  margin: 24px 0 8px;
  color: var(--text);
}
.guide p, .guide li {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 16px;
}
.guide ul { padding-left: 22px; }
.guide li { margin-bottom: 8px; }
.guide strong { color: var(--text); font-weight: 600; }
.guide a:not(.btn) {
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}
.guide a:not(.btn):hover { border-bottom-color: var(--accent); }
.guide blockquote {
  margin: 28px 0;
  padding: 14px 22px;
  border-left: 2px solid var(--accent);
  color: var(--text);
  font-style: italic;
  background: var(--bg-elevated);
  border-radius: 0 var(--radius) var(--radius) 0;
}
/* ─── Floating guide TOC ───────────────────────────── */

.guide-toc {
  position: fixed;
  top: 110px;
  right: 32px;
  width: 200px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  z-index: 10;
}
.guide-toc h4 {
  font: 500 11px/1 var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-dim);
  margin: 0 0 14px;
}
.guide-toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  counter-reset: toc;
}
.guide-toc li {
  counter-increment: toc;
}
.guide-toc a {
  display: flex;
  gap: 10px;
  align-items: baseline;
  font-size: 13px;
  color: var(--text-muted);
  padding: 6px 0 6px 10px;
  margin-left: -12px;
  border-left: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.guide-toc a::before {
  content: counter(toc, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-dim);
  flex-shrink: 0;
}
.guide-toc a:hover {
  color: var(--text);
}
.guide-toc a.is-active {
  color: var(--accent);
  border-left-color: var(--accent);
}
.guide-toc a.is-active::before {
  color: var(--accent);
}

@media (max-width: 1240px) {
  .guide-toc { display: none; }
}

.guide__note {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 26px 30px;
  margin: 40px 0 48px;
}
.guide__note h4 {
  font: 500 11px/1 var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin: 0 0 18px;
}
.guide__note p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 14px;
}
.guide__note p:last-child { margin-bottom: 0; }
.guide__note .note-foot {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.guide__note .note-sub {
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-dim);
}
.guide h3.accent-head { color: var(--accent); }
.guide .code {
  display: block;
  margin: 10px 0 18px;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  font: 400 13px/1.55 var(--font-mono);
  color: var(--text);
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.guide .data-warning {
  margin: 20px 0 0;
  padding: 12px 16px;
  background: rgba(255, 176, 32, 0.08);
  border: 1px solid rgba(255, 176, 32, 0.32);
  border-left: 3px solid #ffb020;
  border-radius: var(--radius);
  color: var(--text);
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.5;
}
.guide .placeholder {
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  color: var(--text-dim);
  font-style: italic;
  font-size: 14px;
}
.guide__note h5 {
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  margin: 26px 0 16px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.guide-note {
  display: block;
  margin-top: 8px;
  font-size: 13.5px;
  font-style: italic;
  color: var(--text-dim);
  line-height: 1.55;
}
.guide__note strong { color: var(--text); font-weight: 600; }

.guide .toc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 56px;
}
.guide .toc h4 {
  margin: 0 0 12px;
  font: 500 11px/1 var(--font-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.guide .toc ol {
  margin: 0;
  padding-left: 20px;
}
.guide .toc li {
  margin-bottom: 6px;
  font-size: 14px;
}

/* ─── Results / case studies ───────────────────────── */
.metrics-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
  max-width: 660px;
}
.metrics-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.5;
}
.metrics-list li::before {
  content: "›";
  position: absolute;
  left: 2px;
  top: -1px;
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
}
.results-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
}
.sponsor-badge {
  flex: 0 0 auto;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  padding: 16px 22px;
  border-radius: 12px;
  border: 1px solid rgba(124, 77, 255, 0.4);
  background: rgba(124, 77, 255, 0.09);
  text-align: center;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.sponsor-badge:hover {
  border-color: rgba(124, 77, 255, 0.75);
  background: rgba(124, 77, 255, 0.18);
}
.sponsor-badge__pre {
  font: 600 10px/1 var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.sponsor-badge__logo { display: block; height: 30px; width: auto; }
@media (max-width: 760px) {
  .results-top { flex-direction: column; }
  .sponsor-badge { flex-direction: row; align-self: flex-start; }
}

.pending {
  display: inline-block;
  font: 500 12px/1 var(--font-mono);
  letter-spacing: 0.03em;
  color: #ffcf6b;
  background: rgba(255, 207, 107, 0.1);
  border: 1px dashed rgba(255, 207, 107, 0.5);
  border-radius: 6px;
  padding: 9px 13px;
  margin-bottom: 32px;
}
.case {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
}
.case__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.case__avatar {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 700 22px/1 var(--font-sans);
  color: #fff;
  background: linear-gradient(135deg, #7c4dff, #4c2c9a);
  object-fit: cover;
  border: 1px solid var(--border-strong);
}
.case__id { margin-right: auto; }
.case__namerow { display: flex; align-items: center; gap: 10px; }
.case__name { font-size: 20px; margin: 0; }
.case__tiktok {
  display: inline-flex;
  color: var(--text-dim);
  transition: color 0.15s ease, transform 0.15s ease;
}
.case__tiktok:hover { color: var(--accent); transform: translateY(-1px); }
.case__tiktok svg { width: 17px; height: 17px; fill: currentColor; display: block; }
.case__meta {
  font: 500 12px/1 var(--font-mono);
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin: 5px 0 0;
}
.case__pkg {
  flex: 0 0 auto;
  font: 600 11px/1 var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 6px 12px;
}
.case__specs {
  list-style: none;
  margin: 0 0 24px;
  padding: 0 0 22px;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
}
.case__specs li { font-size: 14px; color: var(--text-muted); }
.case__specs li span {
  font: 500 11px/1 var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-right: 8px;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.metric {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}
.metric--key { border-color: rgba(0, 212, 255, 0.3); }
.metric__label {
  display: block;
  font: 500 11px/1 var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.metric__row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}
.metric__before { font-size: 19px; font-weight: 500; color: var(--text-dim); }
.metric__arrow { color: var(--text-dim); font-size: 14px; }
.metric__after {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.metric__gain {
  display: inline-block;
  font: 700 13px/1 var(--font-sans);
  color: var(--accent);
}
.bench { display: flex; flex-direction: column; gap: 20px; }
.bench__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 9px;
}
.bench__name {
  font: 600 12px/1 var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.bench__gain { font: 700 15px/1 var(--font-sans); color: var(--accent); }
.bench__track {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 7px;
}
.bench__track:last-child { margin-bottom: 0; }
.bench__fill {
  height: 22px;
  border-radius: 5px;
  flex: 0 0 auto;
  min-width: 3px;
  transform-origin: left center;
  animation: benchGrow 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.bench__fill--stock { background: var(--border-strong); }
.bench__fill--tuned {
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
  box-shadow: 0 0 18px var(--accent-glow-strong);
}
.bench__num { font: 500 13px/1 var(--font-mono); color: var(--text-dim); flex: 0 0 auto; }
.bench__num--tuned { color: var(--text); font-weight: 600; }
.bench__legend {
  display: flex;
  gap: 22px;
  margin-top: 4px;
  font: 500 11px/1 var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.bench__legend i {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  vertical-align: middle;
  margin-right: 7px;
}
.bench__legend .dot--stock { background: var(--border-strong); }
.bench__legend .dot--tuned { background: var(--accent); }
@keyframes benchGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.testimonial {
  margin: 28px 0 0;
  padding: 24px 28px;
  background: var(--bg);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.testimonial p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  font-style: italic;
  margin: 0 0 12px;
}
.testimonial cite {
  font: 600 13px/1 var(--font-mono);
  letter-spacing: 0.04em;
  color: var(--accent);
  font-style: normal;
}
.results-note {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
  margin: 8px 0 32px;
}
.results-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 640px) {
  .metrics { grid-template-columns: 1fr; }
  .case { padding: 24px 20px; }
}

.teaser-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 56px;
  margin-bottom: 40px;
}
.teaser-stat { display: flex; flex-direction: column; gap: 8px; }
.teaser-stat__num {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
}
.teaser-stat__label {
  font: 500 12px/1.3 var(--font-mono);
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ─── Staff ────────────────────────────────────────── */
.staff-lead {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 840px;
  background: var(--bg-card);
  border: 1px solid var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 24px 60px -30px var(--accent-glow-strong);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 24px;
}
.staff-lead__avatar {
  flex: 0 0 auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
  box-shadow: 0 0 24px var(--accent-glow-strong);
}
.staff-lead__info { flex: 1; min-width: 0; }
.staff-lead__name { font-size: 24px; margin: 0 0 4px; }
.staff-lead__role {
  font: 500 12px/1 var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px;
}
.staff-lead__bio {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.staff-lead__bio li { font-size: 14.5px; color: var(--text-muted); line-height: 1.5; }
.lwky-inline {
  display: inline-block;
  transition: opacity 0.15s ease;
}
.lwky-inline img { height: 1.25em; width: auto; vertical-align: text-bottom; }
.lwky-inline:hover { opacity: 0.7; }
.jk { color: var(--text-dim); font-style: italic; }
.staff-lead__rig {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.staff-lead__rigtitle {
  font: 500 11px/1 var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0 0 12px;
}
.rig-specs { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.rig-specs li {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.45;
  display: flex;
  align-items: baseline;
}
.rig-specs li span {
  flex: 0 0 auto;
  min-width: 64px;
  font: 600 11px/1.4 var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-right: 10px;
}
@media (max-width: 640px) {
  .staff-lead { flex-direction: column; text-align: center; padding: 28px 22px; }
  .staff-lead__bio { text-align: left; }
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.staff-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.staff-card__avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-strong);
  background: linear-gradient(135deg, var(--accent), #0a6e85);
  display: flex;
  align-items: center;
  justify-content: center;
  font: 700 32px/1 var(--font-sans);
  color: #001218;
  margin-bottom: 18px;
}
.staff-card__name { font-size: 18px; margin: 0 0 4px; }
.staff-card__role {
  font: 500 11px/1 var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}
.staff-card__bio {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 760px) {
  .staff-grid { grid-template-columns: 1fr; }
}

/* ─── Responsive ───────────────────────────────────── */

@media (max-width: 900px) {
  .nav { padding: 16px 20px; flex-wrap: wrap; }
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  .nav.is-open .nav__links {
    display: flex;
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-top: 20px;
  }
  .nav.is-open .nav__cta {
    display: flex;
    order: 4;
    width: 100%;
    gap: 10px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
  }
  .nav.is-open .nav__dropdown {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
  }
  .nav.is-open .nav__dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    min-width: 0;
    margin-top: 12px;
    padding: 0 0 0 14px;
    gap: 10px;
    background: none;
    border: none;
    box-shadow: none;
  }
  .nav.is-open .nav__dropdown-menu::before { display: none; }
  .nav__caret { display: none; }

  .hero { padding: 64px 0 56px; }
  .section { padding: 64px 0; }

  .hero__stats {
    grid-template-columns: 1fr;
  }
  .pillars, .tune-grid, .steps {
    grid-template-columns: 1fr;
  }
  .pillar {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer__bottom { flex-direction: column; gap: 8px; }
}

@media (max-width: 600px) {
  .container { padding: 0 18px; }
  .hero { padding: 48px 0 40px; }
  .hero__ctas .btn { width: 100%; }
  .cta { padding: 40px 20px; }
  .cta__buttons .btn { width: 100%; }
}

/* ─── Reduce motion ────────────────────────────────── */

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