/* CCLP — Three direction system, locked constraints
   - Inter only
   - Teal + orange on white/black surfaces (no cream)
   - Single genius metaphor per direction
   - Numbers as design
   - Density + scroll storytelling
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  --teal: #004E4D;
  --teal-deep: #00302F;
  --teal-soft: #1F6A66;
  --teal-tint: #E0EDEC;
  --orange: #D98929;
  --orange-deep: #A65F12;
  --orange-tint: #F8E5CB;

  --black: #0A0A0A;
  --ink: #14110B;
  --ink-soft: #2A2519;
  --ink-mute: #5C5343;

  --gray-50: #FAFAFA;
  --gray-100: #F4F4F5;
  --gray-200: #E4E4E7;
  --gray-300: #D4D4D8;
  --gray-400: #A1A1AA;
  --gray-500: #71717A;
  --gray-600: #52525B;
  --gray-700: #3F3F46;
  --gray-800: #27272A;
  --gray-900: #18181B;

  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --max: 1280px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }

::selection { background: var(--orange); color: white; }

/* ===== Direction selector (top of page) ===== */
.dir-bar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 6px;
  display: flex;
  gap: 4px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.dir-bar__item {
  background: transparent;
  border: none;
  color: inherit;
  padding: 9px 18px;
  border-radius: 999px;
  letter-spacing: -0.01em;
  transition: all .2s;
  white-space: nowrap;
  font-family: inherit;
}
.dir-bar__item:hover { color: white; }
.dir-bar__item.active {
  background: white;
  color: var(--black);
}
.dir-bar__item .dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}
.dir-bar__item .dot--a { background: var(--teal); }
.dir-bar__item .dot--b { background: var(--orange); }
.dir-bar__item .dot--c { background: linear-gradient(90deg, var(--teal) 50%, var(--orange) 50%); }

@media (max-width: 700px) {
  .dir-bar { font-size: 11px; }
  .dir-bar__item { padding: 8px 12px; }
}

.direction { display: none; }
.direction.active { display: block; }

/* ============================================================ */
/* DIRECTION A — THE FILTER                                     */
/* White surface, Linear/Stripe density, vertical pipeline      */
/* ============================================================ */

.dir-a {
  background: white;
  color: var(--black);
  font-size: 16px;
  line-height: 1.5;
}
.dir-a a { text-decoration: none; }

.dir-a__nav {
  position: sticky;
  top: 0; z-index: 30;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
}
.dir-a__nav-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 16px 32px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 32px;
}
.dir-a__brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 15px;
  color: var(--black);
}
.dir-a__brand-mark {
  width: 28px; height: 28px;
  background: var(--teal);
  border-radius: 6px;
  position: relative;
}
.dir-a__brand-mark::after {
  content: "";
  position: absolute;
  inset: 8px;
  background: var(--orange);
  border-radius: 999px;
}
.dir-a__nav-links {
  display: flex; gap: 28px; font-size: 14px; font-weight: 500;
  color: var(--gray-600);
}
.dir-a__nav-links a:hover { color: var(--black); }
.dir-a__nav-cta {
  background: var(--black); color: white;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 14px; font-weight: 600;
  letter-spacing: -0.01em;
}
.dir-a__nav-cta:hover { background: var(--teal); }
@media (max-width: 800px) { .dir-a__nav-links { display: none; } }

/* Hero — vertical filter spine */
.dir-a__hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 32px 32px;
  position: relative;
}
.dir-a__hero-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--orange-deep);
  margin-bottom: 32px;
  display: flex; align-items: center; gap: 12px;
}
.dir-a__hero-meta::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.dir-a__hero h1 {
  font-size: clamp(56px, 8.5vw, 128px);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.045em;
  margin: 0 0 32px;
  max-width: 14ch;
  font-feature-settings: "ss01", "cv11";
}
.dir-a__hero h1 .accent-teal { color: var(--teal); }
.dir-a__hero h1 .accent-orange { color: var(--orange); }
.dir-a__hero h1 .strike {
  text-decoration: line-through;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 6px;
  color: var(--gray-400);
}
.dir-a__hero-sub {
  font-size: 22px;
  line-height: 1.45;
  color: var(--gray-700);
  max-width: 56ch;
  margin: 0 0 48px;
  font-weight: 400;
  letter-spacing: -0.015em;
}
.dir-a__hero-sub b { color: var(--black); font-weight: 600; }

.dir-a__hero-cta {
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
  margin-bottom: 80px;
}

/* Big stat cards under hero */
.dir-a__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
}
.dir-a__stat {
  background: white;
  padding: 32px;
  position: relative;
}
.dir-a__stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.dir-a__stat-value {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--black);
  font-feature-settings: "ss01", "cv11", "tnum";
}
.dir-a__stat-value .unit {
  font-size: 24px;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: -0.01em;
  margin-left: 4px;
}
.dir-a__stat-caption {
  margin-top: 16px;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.45;
}
.dir-a__stat::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  pointer-events: none;
  transition: border-color .2s;
  border-radius: 12px;
}
.dir-a__stat:hover::after { border-color: var(--teal); }

@media (max-width: 800px) {
  .dir-a__stats { grid-template-columns: 1fr; }
}

/* Section system */
.dir-a section { padding: 120px 0; border-top: 1px solid var(--gray-200); }
.dir-a__sec { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.dir-a__eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--orange-deep);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 14px;
}
.dir-a__eyebrow::before {
  content: ""; width: 32px; height: 1px;
  background: var(--orange);
}
.dir-a__h2 {
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.0;
  font-weight: 700;
  letter-spacing: -0.035em;
  margin: 0 0 24px;
  max-width: 18ch;
  text-wrap: balance;
}
.dir-a__h2 .accent-teal { color: var(--teal); }
.dir-a__h2 .accent-orange { color: var(--orange); }
.dir-a__lede {
  font-size: 22px;
  line-height: 1.45;
  color: var(--gray-700);
  max-width: 60ch;
  margin: 0;
  letter-spacing: -0.01em;
  font-weight: 400;
}
.dir-a__lede b { color: var(--black); font-weight: 600; }

/* Buttons */
.dir-a__btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--black);
  color: white;
  padding: 16px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  transition: all .2s;
  border: none;
}
.dir-a__btn:hover { background: var(--teal); transform: translateY(-1px); }
.dir-a__btn--outline {
  background: white;
  color: var(--black);
  border: 1.5px solid var(--gray-300);
}
.dir-a__btn--outline:hover { border-color: var(--black); background: var(--gray-50); transform: none; }
.dir-a__btn--orange { background: var(--orange); }
.dir-a__btn--orange:hover { background: var(--orange-deep); }
.dir-a__btn--lg { padding: 18px 28px; font-size: 17px; }

/* The pipeline — THE genius element of Direction A */
.pipeline {
  background: var(--gray-50);
  position: relative;
}
.pipeline__inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 32px;
}
.pipeline__title-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 80px;
}
.pipeline__stages {
  position: relative;
  padding-left: 80px;
}
.pipeline__stages::before {
  content: "";
  position: absolute;
  left: 32px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal) 0%, var(--teal) 35%, var(--orange) 50%, var(--orange) 100%);
}
.pipeline__stage {
  position: relative;
  padding: 24px 0 64px;
}
.pipeline__stage:last-child { padding-bottom: 0; }
.pipeline__stage::before {
  content: "";
  position: absolute;
  left: -56px; top: 32px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--teal);
}
.pipeline__stage--orange::before { border-color: var(--orange); }
.pipeline__stage--center::before {
  width: 24px; height: 24px;
  left: -60px;
  background: var(--black);
  border-color: var(--black);
}
.pipeline__stage-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 8px;
}
.pipeline__stage-tag b { color: var(--teal); margin-right: 8px; }
.pipeline__stage--orange .pipeline__stage-tag b { color: var(--orange); }
.pipeline__stage--center .pipeline__stage-tag b { color: var(--black); }
.pipeline__stage h3 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 12px;
  color: var(--black);
}
.pipeline__stage p {
  font-size: 17px;
  line-height: 1.5;
  color: var(--gray-700);
  margin: 0 0 20px;
  max-width: 56ch;
}
.pipeline__chips {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.pipeline__chip {
  font-family: var(--font-mono);
  font-size: 12px;
  background: white;
  color: var(--gray-700);
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid var(--gray-200);
  letter-spacing: -0.01em;
  transition: all .15s;
}
.pipeline__chip:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--teal-tint);
}
.pipeline__stage--orange .pipeline__chip:hover {
  border-color: var(--orange);
  color: var(--orange-deep);
  background: var(--orange-tint);
}
.pipeline__stage--center {
  background: var(--black);
  color: white;
  border-radius: 12px;
  padding: 36px 36px 36px 36px;
  margin-left: -16px;
}
.pipeline__stage--center::before { left: -76px; }
.pipeline__stage--center h3 { color: white; }
.pipeline__stage--center p { color: rgba(255,255,255,0.78); }
.pipeline__stage--center .pipeline__chip {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
}

@media (max-width: 800px) {
  .pipeline__title-row { grid-template-columns: 1fr; gap: 32px; margin-bottom: 56px; }
  .pipeline__stages { padding-left: 56px; }
  .pipeline__stages::before { left: 16px; }
  .pipeline__stage::before { left: -52px; }
}

/* Habit deep-dive — listing comparison */
.dir-a__compare {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.dir-a__listing {
  border-radius: 12px;
  padding: 32px;
  position: relative;
  display: flex; flex-direction: column;
}
.dir-a__listing--bad {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  color: var(--gray-700);
}
.dir-a__listing--good {
  background: var(--black);
  color: white;
  position: relative;
}
.dir-a__listing--good::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 1.5px;
  background: linear-gradient(135deg, var(--teal), var(--orange));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.dir-a__listing-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
}
.dir-a__listing--bad .dir-a__listing-tag { color: var(--gray-500); }
.dir-a__listing--bad .dir-a__listing-tag::before { content: "✕"; color: var(--gray-400); }
.dir-a__listing--good .dir-a__listing-tag { color: var(--orange); }
.dir-a__listing--good .dir-a__listing-tag::before { content: "✓"; color: var(--teal-soft); font-weight: 700; }
.dir-a__listing-price {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--black);
  margin-bottom: 24px;
  font-feature-settings: "tnum";
}
.dir-a__listing--good .dir-a__listing-price { color: white; }
.dir-a__listing-price .per {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-mono);
  color: var(--gray-500);
  letter-spacing: 0;
  margin-left: 8px;
}
.dir-a__listing--good .dir-a__listing-price .per { color: rgba(255,255,255,0.6); }
.dir-a__listing-body {
  font-size: 15px;
  line-height: 1.55;
  flex: 1;
}
.dir-a__listing-result {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
  font-size: 13px;
  font-family: var(--font-mono);
  letter-spacing: -0.01em;
}
.dir-a__listing--good .dir-a__listing-result { border-top-color: rgba(255,255,255,0.15); }
.dir-a__listing--bad .dir-a__listing-result { color: var(--gray-500); }
.dir-a__listing--good .dir-a__listing-result { color: var(--teal-soft); }
.dir-a__listing--good .dir-a__listing-result b { color: var(--orange); font-weight: 600; }

@media (max-width: 800px) { .dir-a__compare { grid-template-columns: 1fr; } }

.dir-a__verdict {
  margin-top: 48px;
  padding: 32px 36px;
  background: white;
  border: 1px solid var(--gray-200);
  border-left: 3px solid var(--orange);
  border-radius: 0 8px 8px 0;
  font-size: 18px;
  line-height: 1.5;
  color: var(--gray-800);
}
.dir-a__verdict b { color: var(--black); font-weight: 600; }

/* Operator path */
.path-list {
  margin-top: 64px;
  border-top: 1px solid var(--gray-200);
}
.path-row {
  display: grid;
  grid-template-columns: 80px 240px 1fr;
  gap: 48px;
  padding: 32px 0;
  border-bottom: 1px solid var(--gray-200);
  align-items: baseline;
  position: relative;
  transition: padding-left .2s;
}
.path-row:hover { padding-left: 12px; }
.path-row__num {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: -0.01em;
}
.path-row__title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--black);
}
.path-row__body {
  font-size: 16px;
  line-height: 1.55;
  color: var(--gray-700);
  margin: 0;
}
.path-row__verbs {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray-500);
  letter-spacing: -0.005em;
}
.path-row__verbs span { color: var(--teal); }
@media (max-width: 800px) {
  .path-row { grid-template-columns: 1fr; gap: 8px; padding: 24px 0; }
}

/* Founder strip */
.founder-strip {
  background: var(--black);
  color: white;
  padding: 0;
  border: none;
}
.founder-strip__inner {
  max-width: var(--max); margin: 0 auto;
  padding: 96px 32px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: center;
}
.founder-strip__photo {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--gray-900);
  border-radius: 12px;
  overflow: hidden;
}
.founder-strip__photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.05) saturate(0.9);
}
.founder-strip__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.6));
  pointer-events: none;
}
.founder-strip__photo-tag {
  position: absolute;
  bottom: 16px; left: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
  z-index: 2;
}
.founder-strip__photo-tag b { color: var(--orange); margin-right: 8px; }
.founder-strip__copy .dir-a__eyebrow { color: var(--orange); }
.founder-strip h2 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 0 0 12px;
  color: white;
}
.founder-strip__role {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--orange);
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}
.founder-strip p {
  color: rgba(255,255,255,0.78);
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 18px;
  max-width: 56ch;
}
.founder-strip p b { color: white; font-weight: 600; }
.founder-strip__sig {
  margin-top: 24px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--orange);
}
@media (max-width: 900px) {
  .founder-strip__inner { grid-template-columns: 1fr; padding: 64px 24px; gap: 32px; }
}

/* Roles grid */
.roles-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.role-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 32px;
  display: flex; flex-direction: column; gap: 12px;
  transition: all .2s;
  text-decoration: none;
  color: inherit;
  position: relative;
  min-height: 240px;
}
.role-card:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -8px rgba(0,78,77,0.15);
}
.role-card__num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: -0.01em;
}
.role-card h3 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0;
  color: var(--black);
}
.role-card p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--gray-700);
  margin: 0;
  flex: 1;
}
.role-card__arrow {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--teal);
  font-weight: 500;
  letter-spacing: -0.01em;
  display: inline-flex; align-items: center; gap: 6px;
}
.role-card:hover .role-card__arrow { color: var(--orange); }
.role-card--full {
  grid-column: span 2;
  background: var(--black);
  color: white;
  border-color: var(--black);
}
.role-card--full h3 { color: white; }
.role-card--full p { color: rgba(255,255,255,0.78); }
.role-card--full:hover {
  border-color: var(--orange);
  background: var(--gray-900);
  box-shadow: 0 12px 28px -8px rgba(217,137,41,0.25);
}
.role-card--full .role-card__arrow { color: var(--orange); }
@media (max-width: 800px) {
  .roles-grid { grid-template-columns: 1fr; }
  .role-card--full { grid-column: span 1; }
}

/* Assessment promo */
.assessment-promo {
  margin-top: 64px;
  background: var(--black);
  color: white;
  border-radius: 16px;
  padding: 56px 56px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.assessment-promo::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, var(--orange) 0%, transparent 65%);
  opacity: 0.18;
  pointer-events: none;
}
.assessment-promo h3 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 20px;
  color: white;
}
.assessment-promo h3 .accent { color: var(--orange); }
.assessment-promo p {
  color: rgba(255,255,255,0.78);
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 28px;
  max-width: 50ch;
}
.assessment-promo__chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 32px;
}
.assessment-promo__chip {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 6px 12px;
  border-radius: 999px;
  color: rgba(255,255,255,0.78);
}
.assessment-promo__big {
  font-size: clamp(120px, 16vw, 200px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.85;
  color: white;
  text-align: right;
  font-feature-settings: "tnum";
}
.assessment-promo__big-sub {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--orange);
  text-align: right;
  margin-top: 8px;
}
.assessment-promo .dir-a__btn {
  background: white;
  color: var(--black);
}
.assessment-promo .dir-a__btn:hover { background: var(--orange); color: white; }
@media (max-width: 900px) {
  .assessment-promo { grid-template-columns: 1fr; padding: 40px 28px; gap: 32px; }
  .assessment-promo__big { text-align: left; }
  .assessment-promo__big-sub { text-align: left; }
}

/* Tracks list */
.tracks-list {
  margin-top: 64px;
  border-top: 1px solid var(--gray-200);
}
.track-row {
  display: grid;
  grid-template-columns: 280px 1fr 160px 60px;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-200);
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: padding-left .2s;
}
.track-row:hover { padding-left: 12px; }
.track-row:hover .track-row__title { color: var(--teal); }
.track-row:hover .track-row__arrow { transform: translateX(8px); color: var(--orange); }
.track-row__cond { font-size: 14px; color: var(--gray-600); }
.track-row__title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--black);
  transition: color .2s;
}
.track-row__price {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--orange-deep);
  text-align: right;
  letter-spacing: -0.01em;
}
.track-row__arrow {
  font-size: 22px;
  color: var(--gray-400);
  text-align: right;
  transition: transform .2s, color .2s;
}
@media (max-width: 800px) {
  .track-row { grid-template-columns: 1fr; gap: 6px; padding: 20px 0; }
  .track-row__price, .track-row__arrow { text-align: left; }
}

.other-ways {
  margin-top: 80px;
  padding-top: 56px;
  border-top: 1px solid var(--gray-200);
}
.other-ways__title {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--orange-deep);
  margin-bottom: 32px;
}
.other-ways__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.other-way {
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 24px;
  display: flex; flex-direction: column; gap: 10px;
  transition: all .2s;
  min-height: 200px;
  background: white;
}
.other-way:hover {
  border-color: var(--teal);
  background: var(--gray-50);
}
.other-way__cond {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--gray-500);
  text-transform: uppercase;
}
.other-way h4 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--black);
}
.other-way p { font-size: 13px; line-height: 1.5; color: var(--gray-600); margin: 0; flex: 1; }
.other-way__price {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--orange-deep);
  font-weight: 600;
  letter-spacing: -0.01em;
  display: flex; justify-content: space-between; align-items: center;
}
.other-way__price::after {
  content: "→";
  color: var(--gray-400);
  transition: transform .2s, color .2s;
}
.other-way:hover .other-way__price::after { transform: translateX(4px); color: var(--orange); }
@media (max-width: 980px) { .other-ways__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .other-ways__grid { grid-template-columns: 1fr; } }

/* Workshops */
.workshops-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.workshop-card {
  text-decoration: none;
  color: inherit;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: all .2s;
}
.workshop-card:hover {
  border-color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -8px rgba(0,0,0,0.12);
}
.workshop-card__cover {
  background: var(--teal);
  height: 180px;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 20px 24px;
  color: white;
}
.workshop-card__cover::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
  opacity: 0.4;
}
.workshop-card:nth-child(2) .workshop-card__cover { background: var(--black); }
.workshop-card__live {
  align-self: flex-start;
  background: var(--orange);
  color: white;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  position: relative; z-index: 2;
}
.workshop-card__topic {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  position: relative; z-index: 2;
}
.workshop-card__body {
  padding: 28px;
  display: flex; flex-direction: column; gap: 12px; flex: 1;
}
.workshop-card h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0;
  color: var(--black);
}
.workshop-card p { font-size: 14px; line-height: 1.5; color: var(--gray-700); margin: 0; flex: 1; }
.workshop-card__cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
  margin-top: 8px;
}
.workshop-card:hover .workshop-card__cta { color: var(--orange); }
@media (max-width: 800px) { .workshops-grid { grid-template-columns: 1fr; } }

/* Manifesto + final CTA */
.manifesto-block {
  background: var(--black);
  color: white;
  padding: 120px 0;
  border: none;
}
.manifesto-block__inner { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.manifesto-block .dir-a__eyebrow { color: var(--orange); }
.manifesto-block h2 {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0 0 40px;
  color: white;
  max-width: 18ch;
  text-wrap: balance;
}
.manifesto-block h2 .accent { color: var(--orange); }
.manifesto-block p {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: rgba(255,255,255,0.78);
  max-width: 60ch;
  margin: 0 0 24px;
}
.manifesto-block__pull {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: white;
  max-width: 24ch;
}
.manifesto-block__pull .accent { color: var(--orange); }

.final-cta {
  background: var(--orange);
  color: white;
  padding: 96px 0;
  border: none;
}
.final-cta__inner {
  max-width: var(--max); margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: center;
}
.final-cta h2 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.0;
  margin: 0 0 20px;
  color: white;
  max-width: 16ch;
}
.final-cta p {
  font-size: 17px;
  color: rgba(255,255,255,0.92);
  margin: 0;
  max-width: 50ch;
}
.final-cta .dir-a__btn {
  background: var(--black);
}
.final-cta .dir-a__btn:hover { background: white; color: var(--black); }
.final-cta__price {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
  margin-top: 14px;
}
@media (max-width: 800px) {
  .final-cta__inner { grid-template-columns: 1fr; gap: 24px; }
}

.dir-a__footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 28px;
  font-size: 14px;
}
.dir-a__footer-inner { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.dir-a__footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.dir-a__footer-tagline {
  font-size: 18px;
  line-height: 1.5;
  color: white;
  font-weight: 500;
  letter-spacing: -0.01em;
  max-width: 320px;
  margin: 16px 0 0;
}
.dir-a__footer h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--orange);
  margin: 0 0 16px;
  font-weight: 500;
  text-transform: uppercase;
}
.dir-a__footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.dir-a__footer a { color: rgba(255,255,255,0.85); text-decoration: none; display: flex; justify-content: space-between; }
.dir-a__footer a:hover { color: white; }
.dir-a__footer a span { font-family: var(--font-mono); font-size: 12px; color: rgba(255,255,255,0.4); }
.dir-a__footer-bottom {
  padding-top: 28px;
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 11px;
  color: rgba(255,255,255,0.4); letter-spacing: 0.04em;
}
@media (max-width: 800px) { .dir-a__footer-top { grid-template-columns: 1fr; gap: 32px; } }
