/* ═══════════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════════ */
.nav {
  background: rgba(255, 255, 255, 0.80);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(255, 255, 255, 0.95);
}

.nav__inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: var(--s6);
}

.nav__logo {
  display: inline-flex; align-items: center; gap: var(--s3);
  color: var(--text); font-weight: 700; font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.nav__logo:hover { color: var(--text); }

.logo-mark {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  border-radius: var(--r-sm); flex-shrink: 0;
}

.nav__links { display: flex; gap: var(--s7); }
.nav__links a { color: var(--text-muted); font-size: 0.9rem; font-weight: 500; }
.nav__links a:hover { color: var(--text); }

@media (max-width: 768px) { .nav__links { display: none; } }

.nav__cta { padding: 10px var(--s5); font-size: 0.875rem; }
@media (max-width: 480px) { .nav__cta { display: none; } }

/* ── Burger button ────────────────────────────────────── */
.nav__burger {
  display: none;
  align-items: center; justify-content: center;
  width: 38px; height: 38px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  cursor: pointer;
  color: var(--text);
  padding: 0;
  flex-shrink: 0;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.nav__burger:hover { background: var(--bg-elev); border-color: var(--border-strong); }
.nav__burger-x { display: none; }
.nav--open .nav__burger > svg:first-child { display: none; }
.nav--open .nav__burger-x { display: block; }

@media (max-width: 768px) { .nav__burger { display: flex; } }

/* ── Mobile nav drawer ────────────────────────────────── */
.nav__mobile {
  display: none;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  padding: var(--s4) 0 var(--s6);
  animation: mobileNavIn 180ms var(--ease);
}
.nav--open .nav__mobile { display: block; }

@keyframes mobileNavIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav__mobile nav { display: flex; flex-direction: column; }
.nav__mobile-link {
  display: block;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  padding: var(--s4) 0;
  border-bottom: 1px solid var(--border);
}
.nav__mobile-link:hover { color: var(--accent); }
.nav__mobile-link:last-of-type { border-bottom: 0; }

/* ═══════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: var(--s2);
  padding: 14px var(--s6); border-radius: var(--r-sm);
  font-family: inherit; font-weight: 600; font-size: 0.95rem;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: all var(--dur) var(--ease); white-space: nowrap;
}

.btn--primary {
  background: var(--secondary); color: white; border-color: var(--secondary);
}
.btn--primary:hover {
  background: var(--secondary-dark); color: white; border-color: var(--secondary-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -8px var(--secondary-glow);
}

.btn--accent {
  background: var(--secondary); color: white; border-color: var(--secondary);
}
.btn--accent:hover {
  background: var(--secondary-dark); color: white;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -8px var(--secondary-glow);
}

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

.btn--lg { padding: 18px var(--s7); font-size: 1rem; }
.btn .icon { width: 16px; height: 16px; }

/* ═══════════════════════════════════════════════════════════
   SCROLL PROGRESS + SECTION NAV
═══════════════════════════════════════════════════════════ */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0;
  background: var(--accent); z-index: 100;
  transition: width 80ms linear; pointer-events: none;
}

.section-nav {
  position: fixed; right: var(--s6); top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: var(--s3);
  z-index: 40;
}
@media (max-width: 1200px) { .section-nav { display: none; } }

.section-nav__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--border-strong);
  transition: all 350ms var(--ease);
  position: relative;
}
.section-nav__dot::after {
  content: attr(title);
  position: absolute; right: 18px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono); font-size: 10px;
  color: var(--text-dim); white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity 200ms;
}
.section-nav__dot:hover::after { opacity: 1; }
.section-nav__dot.is-active {
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

/* ═══════════════════════════════════════════════════════════
   PROOF STATS
═══════════════════════════════════════════════════════════ */
.stat { display: flex; flex-direction: column; gap: var(--s2); }

.stat__value {
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 2.4vw, 1.85rem);
  font-weight: 600; color: var(--text);
  letter-spacing: -0.02em; line-height: 1.1;
}
.stat__value .accent { color: var(--secondary); }
.stat__label { font-size: 0.85rem; color: var(--text-dim); line-height: 1.4; }

/* ═══════════════════════════════════════════════════════════
   PROBLEM CARDS
═══════════════════════════════════════════════════════════ */
.prob-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: var(--s7);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.prob-card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 4px 20px -8px rgba(11,13,20,0.1);
}

.prob-card__icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(220, 38, 38, 0.06);
  border: 1px solid rgba(220, 38, 38, 0.15);
  border-radius: var(--r-sm); color: var(--danger); margin-bottom: var(--s5);
}
.prob-card__icon svg { width: 20px; height: 20px; }

.prob-card__title { font-size: 1.05rem; margin-bottom: var(--s3); }
.prob-card__desc  { font-size: 0.92rem; line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════
   SERVICES ACCORDION
═══════════════════════════════════════════════════════════ */
.pillar {
  border-bottom: 1px solid var(--border);
  transition: background var(--dur) var(--ease);
}

.pillar__trigger {
  width: 100%;
  display: grid;
  grid-template-columns: 48px 1fr auto auto;
  gap: var(--s5);
  align-items: center;
  padding: var(--s7) var(--s4);
  background: none; border: none;
  text-align: left; cursor: pointer;
  transition: background var(--dur) var(--ease);
}
.pillar__trigger:hover { background: var(--bg-elev); }

.pillar.is-active {
  background: var(--bg);
  border-left: 3px solid var(--accent);
  margin-left: -3px;
  padding-left: 3px;
}
.pillar.is-active .pillar__trigger { background: transparent; }

.pillar__num {
  font-family: var(--font-mono); font-size: 0.75rem;
  font-weight: 600; color: var(--text-dim);
  letter-spacing: 0.06em;
}
.pillar.is-active .pillar__num { color: var(--accent); }

.pillar__head {}

.pillar__name {
  display: block; font-size: 1.05rem; font-weight: 600;
  color: var(--text); margin-bottom: 4px;
  transition: color var(--dur);
}
.pillar.is-active .pillar__name { color: var(--accent-dark); }

.pillar__tagline {
  display: block; font-size: 0.875rem; color: var(--text-dim);
  line-height: 1.4;
}

.pillar__flag {
  font-family: var(--font-mono); font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; padding: 3px 10px;
  border-radius: var(--r-pill);
  background: var(--text); color: white;
  white-space: nowrap;
}

.pillar__chevron {
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim);
}
.pillar__chevron svg { width: 18px; height: 18px; }

/* Pillar body (accordion panel) */
.pillar__content {
  padding: var(--s3) var(--s4) var(--s8);
  padding-left: calc(48px + var(--s5) + var(--s4));
}

@media (max-width: 768px) {
  .pillar__trigger { grid-template-columns: 36px 1fr auto; }
  .pillar__content { padding-left: var(--s4); }
  .pillar__flag    { display: none; }
}

.pillar__cols {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: var(--s8);
  align-items: start;
}
@media (max-width: 1024px) { .pillar__cols { grid-template-columns: 1fr; gap: var(--s6); } }

.pillar__bullets {
  list-style: none; padding: 0; margin: 0;
  font-size: 0.92rem; color: var(--text-muted);
}
.pillar__bullets li {
  display: flex; gap: var(--s3); align-items: flex-start;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  line-height: 1.55;
}
.pillar__bullets li:last-child { border-bottom: 0; }
.pillar__bullets li::before {
  content: '';
  display: inline-block; width: 14px; height: 14px;
  margin-top: 4px; flex-shrink: 0;
  background: var(--accent);
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-size: contain; mask-size: contain;
}

.pillar__aside {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: var(--s6);
}
.pillar__aside-label {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: var(--s3);
}
.pillar__aside-price {
  font-size: 1.1rem; font-weight: 700; color: var(--text);
  font-family: var(--font-mono); margin-bottom: var(--s5);
  letter-spacing: -0.02em;
}
.pillar__aside-price small {
  display: block; font-size: 0.78rem; font-weight: 400;
  color: var(--text-dim); margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════
   SERVICE TABS
═══════════════════════════════════════════════════════════ */
.svc-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.svc-tabs::-webkit-scrollbar { display: none; }

.svc-tab {
  display: flex;
  align-items: center;
  gap: var(--s2);
  padding: var(--s4) var(--s5);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
}
.svc-tab:hover { color: var(--text); }
.svc-tab.is-active {
  color: var(--accent);
  border-bottom-color: var(--accent);
  font-weight: 600;
}
.svc-tab__num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-dim);
}
.svc-tab.is-active .svc-tab__num { color: var(--accent); }
.svc-tab__badge {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 2px 7px;
  border-radius: var(--r-pill);
  background: var(--text);
  color: white;
}

.svc-panel { display: none; }
.svc-panel.is-active { display: block; animation: svcFadeIn 200ms var(--ease); }

@keyframes svcFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.svc-panel__inner {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: var(--s8);
  align-items: start;
  padding: var(--s7) 0;
}
@media (max-width: 1024px) { .svc-panel__inner { grid-template-columns: 1fr; gap: var(--s6); } }

.svc-panel__title {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  margin-bottom: var(--s3);
}
.svc-panel__tagline {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: var(--s6);
  line-height: 1.5;
}

.svc-aside {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: var(--s6);
}
.svc-aside__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: var(--s3);
}
.svc-aside__scope {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--s3);
}
.svc-aside__note {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.5;
  margin-bottom: var(--s4);
}

/* ═══════════════════════════════════════════════════════════
   LADDER TIERS
═══════════════════════════════════════════════════════════ */
.tier {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--r);
  padding: var(--s6); position: relative;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  display: flex; flex-direction: column;
}
.tier:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(11,13,20,0.1);
}
.tier__name {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: var(--s3);
}
.tier__price {
  font-size: 1.35rem; font-weight: 700; color: var(--text);
  margin-bottom: var(--s4); letter-spacing: -0.02em;
  font-family: var(--font-mono);
}
.tier__price small {
  font-size: 0.78rem; font-weight: 400; color: var(--text-dim);
  display: block; margin-top: 4px; font-family: var(--font-mono);
}
.tier__desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.55; }

.tier--featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(91,78,255,0.04), var(--bg));
}
.tier--featured::after {
  content: 'START HERE';
  position: absolute; top: -11px; right: var(--s5);
  font-family: var(--font-mono); font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em; padding: 4px 10px;
  border-radius: var(--r-pill); background: var(--accent); color: white;
}

/* ═══════════════════════════════════════════════════════════
   STATUS PANEL (dark island)
═══════════════════════════════════════════════════════════ */
.status-panel {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 32px 64px -16px rgba(0,0,0,0.4),
    0 0 0 1px var(--panel-border);
}

.status-panel__header {
  display: flex; align-items: center; gap: var(--s3);
  padding: var(--s4) var(--s5);
  background: var(--panel-elev);
  border-bottom: 1px solid var(--panel-border);
}
.status-panel__title {
  font-family: var(--font-mono); font-size: 0.75rem;
  color: var(--panel-dim); margin-left: auto;
}
.dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.dot--red    { background: #FF5F57; }
.dot--yellow { background: #FEBC2E; }
.dot--green  { background: #28C840; }

.status-panel__body {
  padding: var(--s5) var(--s6);
  font-family: var(--font-mono); font-size: 0.85rem;
}
.metric-row {
  display: grid; grid-template-columns: 1fr auto auto;
  gap: var(--s4); align-items: center;
  padding: var(--s3) 0;
  border-bottom: 1px dashed var(--panel-border);
}
.metric-row:last-child { border-bottom: 0; }
.metric-row__label { color: var(--panel-dim); }
.metric-row__value { color: var(--panel-text); font-weight: 500; }
.metric-row__delta {
  font-size: 0.72rem; padding: 2px 8px; border-radius: 4px; font-weight: 500;
}
.metric-row__delta--good { background: rgba(5,150,105,0.15); color: #34D399; }
.metric-row__delta--bad  { background: rgba(220,38,38,0.15); color: #FCA5A5; }

.status-panel__footer {
  padding: var(--s4) var(--s5);
  background: var(--panel-elev);
  border-top: 1px solid var(--panel-border);
  font-family: var(--font-mono); font-size: 0.75rem;
  color: #34D399;
  display: flex; align-items: center; gap: var(--s3);
}
.status-panel__footer .pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: #28C840;
  animation: pulse-dot 2s infinite;
}

/* ═══════════════════════════════════════════════════════════
   PORTFOLIO / CASE STUDY
═══════════════════════════════════════════════════════════ */
.case-study {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s9);
}
@media (max-width: 768px) { .case-study { padding: var(--s7); } }

.case-study__label {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: var(--s4);
}
.case-study__title  { margin-bottom: var(--s5); font-size: clamp(1.5rem, 2.8vw, 2rem); }
.case-study__desc   { font-size: 1.05rem; margin-bottom: var(--s6); line-height: 1.65; }
.case-study__list   { list-style: none; padding: 0; margin: 0 0 var(--s7); }
.case-study__list li {
  display: flex; gap: var(--s3); align-items: flex-start;
  padding: var(--s3) 0; border-bottom: 1px solid var(--border);
  font-size: 0.95rem; color: var(--text-muted); line-height: 1.55;
}
.case-study__list li:last-child { border-bottom: 0; }
.case-study__list li::before {
  content: '';
  display: inline-block; width: 14px; height: 14px; margin-top: 5px; flex-shrink: 0;
  background: var(--accent);
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-size: contain; mask-size: contain;
}
.case-study__cta {
  display: inline-flex; align-items: center; gap: var(--s2);
  font-weight: 600; font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════════════════
   DIAGRAM (portfolio visual)
═══════════════════════════════════════════════════════════ */
.diagram {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: var(--r); padding: var(--s7);
}
.diagram__head {
  font-family: var(--font-mono); font-size: 0.72rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--panel-dim); margin-bottom: var(--s5);
  display: flex; align-items: center; gap: var(--s3);
}
.diagram__row {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: var(--s3); align-items: center;
  font-family: var(--font-mono); font-size: 0.72rem; text-align: center;
}
@media (max-width: 640px) {
  .diagram__row { grid-template-columns: 1fr; }
  .diagram__arrow { transform: rotate(90deg); justify-self: center; }
}
.diagram__node {
  background: var(--panel-elev); border: 1px solid var(--panel-strong);
  border-radius: var(--r-sm); padding: var(--s4) var(--s3);
  color: var(--panel-muted); font-weight: 500; line-height: 1.4;
}
.diagram__node--accent {
  border-color: var(--accent); background: rgba(91,78,255,0.15);
  color: #C4BEFF;
  box-shadow: 0 0 0 3px rgba(91,78,255,0.1);
}
.diagram__arrow { color: var(--panel-dim); font-weight: 700; font-size: 1rem; }
.diagram__row-2 {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: var(--s3); align-items: center; margin-top: var(--s4);
  font-family: var(--font-mono); font-size: 0.72rem; text-align: center;
}
@media (max-width: 640px) {
  .diagram__row-2 { grid-template-columns: 1fr; }
}
.diagram__caption {
  margin-top: var(--s5); text-align: center;
  font-family: var(--font-mono); font-size: 0.7rem;
  color: var(--panel-dim); letter-spacing: 0.06em;
}

/* ═══════════════════════════════════════════════════════════
   COACHING CARDS
═══════════════════════════════════════════════════════════ */
.coaching-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r); padding: var(--s7);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  display: flex; flex-direction: column;
}
.coaching-card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 4px 20px -8px rgba(11,13,20,0.1);
}
.coaching-card__num {
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; color: var(--accent); margin-bottom: var(--s3);
}
.coaching-card__title { font-size: 1.05rem; margin-bottom: var(--s3); }
.coaching-card__desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.55; flex-grow: 1; }
.coaching-card__price {
  margin-top: var(--s5); padding-top: var(--s4);
  border-top: 1px solid var(--border);
  font-family: var(--font-mono); font-size: 0.78rem; color: var(--text-dim);
}
.coaching-card__footer {
  margin-top: var(--s5); padding-top: var(--s4);
  border-top: 1px solid var(--border);
}

/* ═══════════════════════════════════════════════════════════
   ABOUT — expertise tiles + principles
═══════════════════════════════════════════════════════════ */
.expertise-tile {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r); padding: var(--s6);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.expertise-tile.is-visible:not(:first-child) {
  /* handled by reveal */
}
.expertise-tile:hover {
  border-color: var(--accent-glow);
  box-shadow: 0 4px 20px -8px rgba(11,13,20,0.1);
  transform: translateY(-2px);
}

.expertise-tile__icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft); border: 1px solid var(--accent-glow);
  border-radius: var(--r-sm); color: var(--accent);
  margin-bottom: var(--s5);
}
.expertise-tile__icon svg { width: 20px; height: 20px; }
.expertise-tile__name { font-size: 1rem; margin-bottom: var(--s3); }
.expertise-tile__desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.55; }

.principle {
  position: relative;
  padding-top: var(--s6);
}
.principle::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 40px; height: 2px;
  background: var(--accent);
  border-radius: 1px;
}
.principle__num {
  font-family: var(--font-mono); font-size: 0.72rem;
  font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: var(--s4);
}
.principle h4 { font-size: 1.05rem; margin-bottom: var(--s3); }
.principle p  { font-size: 0.9rem; line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════
   CTA STRIP
═══════════════════════════════════════════════════════════ */
.cta-strip__inner {
  background: var(--accent-soft);
  border: 1px solid var(--accent-glow);
  border-radius: var(--r-lg); padding: var(--s10) var(--s8);
  position: relative; overflow: hidden;
}
@media (max-width: 768px) { .cta-strip__inner { padding: var(--s9) var(--s6); } }

.cta-strip__inner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(91,78,255,0.07), transparent);
  pointer-events: none;
}
.cta-strip__inner > * { position: relative; z-index: 1; }
.cta-strip__title { margin-bottom: var(--s5); }
.cta-strip__sub {
  max-width: 560px; margin: 0 auto var(--s7);
  font-size: 1.05rem; line-height: 1.65;
}
.cta-strip__email {
  display: block; margin-top: var(--s5);
  font-family: var(--font-mono); font-size: 0.85rem; color: var(--text-dim);
}
.cta-strip__email a { color: var(--accent); }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer__brand {
  display: flex; align-items: center; gap: var(--s3);
  margin-bottom: var(--s4); font-weight: 700; color: var(--text);
}
.footer__tagline {
  font-size: 0.88rem; color: var(--text-dim); max-width: 320px; line-height: 1.6;
}
.footer__col h4 {
  font-size: 0.75rem; font-family: var(--font-mono);
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-dim); margin-bottom: var(--s4); font-weight: 500;
}
.footer__col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: var(--s3);
}
.footer__col a     { color: var(--text-muted); font-size: 0.88rem; }
.footer__col a:hover { color: var(--text); }
.footer__bottom span,
.footer__bottom a {
  font-size: 0.82rem; color: var(--text-dim); font-family: var(--font-mono);
}

/* ═══════════════════════════════════════════════════════════
   LANDING PAGE MOBILE OVERRIDES
═══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .prob-card   { padding: var(--s5); }
  .case-study  { padding: var(--s6); }
  .coaching-card { padding: var(--s5); }
  .cta-strip__inner { padding: var(--s7) var(--s5); }
}
@media (max-width: 640px) {
  .tier        { padding: var(--s5); }
  .ladder__head { flex-direction: column; }
  .svc-aside   { padding: var(--s5); }
}
@media (prefers-reduced-motion: reduce) {
  .svc-panel.is-active { animation: none; }
}
