/* ============================================================
   Direction C — The Two Halves (v2)
   Brand-warm, master-page copy density.
   Locked constraints: Inter, teal + orange, white/black surfaces.
   Metaphor: front of funnel (left, teal) vs back of funnel
   (right, orange), meeting at a community core.
   ============================================================ */

.dir-c2 {
  background: #FFFFFF;
  color: var(--ink);
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "cv11";
  font-size: 17px;
  line-height: 1.55;
  --c2-rule: #E7E2D6;
  --c2-rule-strong: #1A1812;
  --c2-paper: #FAF7EE;
  --c2-paper-warm: #F1ECDD;
  --c2-teal: var(--teal);
  --c2-teal-deep: var(--teal-deep);
  --c2-teal-tint: #E2EEED;
  --c2-orange: var(--orange);
  --c2-orange-deep: var(--orange-deep);
  --c2-orange-tint: #F7E6CC;
  --c2-ink: var(--ink);
  --c2-ink-mute: var(--ink-mute);
  --c2-black: var(--black);
}

/* ===== Top stripe: tri-band marker ===== */
.dir-c2 .c2-stripe {
  position: sticky;
  top: 0;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  height: 6px;
}
.dir-c2 .c2-stripe i { display: block; height: 100%; }
.dir-c2 .c2-stripe i:nth-child(1) { background: var(--c2-teal); }
.dir-c2 .c2-stripe i:nth-child(2) { background: var(--c2-black); }
.dir-c2 .c2-stripe i:nth-child(3) { background: var(--c2-orange); }

/* ===== Top bar ===== */
.dir-c2 .c2-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(28px, 4vw, 56px);
  border-bottom: 1px solid var(--c2-rule);
  background: #FFF;
}
.dir-c2 .c2-bar__left,
.dir-c2 .c2-bar__right {
  display: flex;
  align-items: center;
  gap: 22px;
}
.dir-c2 .c2-bar__brand img {
  height: 28px;
  width: auto;
}
.dir-c2 .c2-bar__side {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c2-ink-mute);
  font-weight: 500;
}
.dir-c2 .c2-bar__side b {
  color: var(--c2-ink);
  font-weight: 700;
}
.dir-c2 .c2-bar__cta {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c2-black);
  color: #FFF;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  letter-spacing: 0.01em;
  transition: background 0.15s ease;
}
.dir-c2 .c2-bar__cta:hover { background: var(--c2-teal-deep); }
.dir-c2 .c2-bar__cta span { font-size: 16px; }

/* ===== Eyebrows ===== */
.dir-c2 .c2-eyebrow,
.dir-c2 .c2-half-tag,
.dir-c2 .c2-spine__eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c2-ink-mute);
  font-weight: 600;
}
.dir-c2 .c2-eyebrow--light { color: rgba(255,255,255,0.66); }

/* ===== HERO — split into left/teal and right/orange halves ===== */
.dir-c2 .c2-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--c2-rule);
  position: relative;
}
.dir-c2 .c2-hero::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--c2-rule);
  transform: translateX(-0.5px);
  z-index: 1;
}
.dir-c2 .c2-hero__left,
.dir-c2 .c2-hero__right {
  padding: clamp(48px, 6vw, 96px) clamp(40px, 5vw, 80px) clamp(48px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}
.dir-c2 .c2-hero__left {
  background: #FFFFFF;
  border-right: none;
}
.dir-c2 .c2-hero__right {
  background: var(--c2-paper);
}

.dir-c2 .c2-half-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.dir-c2 .c2-hero__left .c2-half-tag::before,
.dir-c2 .c2-hero__right .c2-half-tag::before {
  content: "";
  width: 22px; height: 2px;
  display: inline-block;
}
.dir-c2 .c2-hero__left .c2-half-tag::before { background: var(--c2-teal); }
.dir-c2 .c2-hero__right .c2-half-tag::before { background: var(--c2-orange); }

.dir-c2 .c2-hero__h {
  font-size: clamp(48px, 5.6vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-weight: 800;
  margin: 0;
  color: var(--c2-ink);
}
.dir-c2 .c2-hero__h em {
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.dir-c2 .c2-hero__h .num {
  display: inline-block;
  font-size: 0.92em;
  font-weight: 900;
  letter-spacing: -0.06em;
  margin-right: 0.08em;
  font-feature-settings: "ss01", "cv11";
}
.dir-c2 .c2-hero__left .c2-hero__h .num { color: var(--c2-teal); }
.dir-c2 .c2-hero__right .c2-hero__h .num { color: var(--c2-orange); }

.dir-c2 .c2-hero__sub {
  font-size: 18px;
  line-height: 1.5;
  color: var(--c2-ink);
  max-width: 46ch;
  margin: 0;
}
.dir-c2 .c2-hero__sub strong { font-weight: 700; }

.dir-c2 .c2-hero__bullets {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--c2-rule);
}
.dir-c2 .c2-hero__bullets li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--c2-rule);
  align-items: baseline;
}
.dir-c2 .c2-hero__bullets b {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--c2-ink);
}
.dir-c2 .c2-hero__left .c2-hero__bullets b { color: var(--c2-teal-deep); }
.dir-c2 .c2-hero__right .c2-hero__bullets b { color: var(--c2-orange-deep); }
.dir-c2 .c2-hero__bullets div {
  font-size: 15px;
  line-height: 1.45;
  color: var(--c2-ink);
}

.dir-c2 .c2-half-cta { margin-top: 8px; }

/* ===== Buttons ===== */
.dir-c2 .c2-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.005em;
  transition: transform 0.15s ease, background 0.15s ease;
}
.dir-c2 .c2-btn--lg {
  padding: 18px 30px;
  font-size: 17px;
}
.dir-c2 .c2-btn--teal {
  background: var(--c2-teal);
  color: #FFF;
}
.dir-c2 .c2-btn--teal:hover { background: var(--c2-teal-deep); }
.dir-c2 .c2-btn--orange {
  background: var(--c2-orange);
  color: #FFF;
}
.dir-c2 .c2-btn--orange:hover { background: var(--c2-orange-deep); }
.dir-c2 .c2-btn:not(.c2-btn--teal):not(.c2-btn--orange) {
  background: var(--c2-black);
  color: #FFF;
}
.dir-c2 .c2-btn:not(.c2-btn--teal):not(.c2-btn--orange):hover { background: var(--c2-teal-deep); }
.dir-c2 .c2-btn span { font-size: 1.05em; line-height: 1; }

/* ===== SPINE — through-line under hero ===== */
.dir-c2 .c2-spine {
  background: #FFF;
  border-bottom: 1px solid var(--c2-rule);
}
.dir-c2 .c2-spine__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(56px, 7vw, 96px) clamp(28px, 4vw, 56px);
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.dir-c2 .c2-spine__h {
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 0 0 24px;
}
.dir-c2 .c2-spine__h em {
  font-style: italic;
  font-weight: 400;
}
.dir-c2 .c2-spine__h strong {
  font-weight: 800;
  background: linear-gradient(180deg, transparent 60%, var(--c2-orange-tint) 60%);
}
.dir-c2 .c2-spine__body p {
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 12px;
  color: var(--c2-ink);
  max-width: 62ch;
}
.dir-c2 .c2-spine__body p strong { font-weight: 700; }

/* ===== COMMUNITY CORE — bridge between halves ===== */
.dir-c2 .c2-core {
  background: var(--c2-black);
  color: #FFF;
  position: relative;
  overflow: hidden;
}
.dir-c2 .c2-core::before,
.dir-c2 .c2-core::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 33.333%;
  pointer-events: none;
}
.dir-c2 .c2-core::before {
  left: 0;
  background: linear-gradient(90deg, rgba(0, 78, 77, 0.55) 0%, transparent 100%);
}
.dir-c2 .c2-core::after {
  right: 0;
  background: linear-gradient(270deg, rgba(217, 137, 41, 0.4) 0%, transparent 100%);
}
.dir-c2 .c2-core__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(72px, 8vw, 120px) clamp(28px, 4vw, 56px);
  text-align: center;
}
.dir-c2 .c2-core__tag {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.66);
  font-weight: 600;
  margin-bottom: 24px;
}
.dir-c2 .c2-core__h {
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 0 0 20px;
}
.dir-c2 .c2-core__h em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(180deg, transparent 60%, rgba(217, 137, 41, 0.5) 60%);
}
.dir-c2 .c2-core__sub {
  font-size: 18px;
  line-height: 1.55;
  margin: 0 auto;
  max-width: 64ch;
  color: rgba(255,255,255,0.85);
}

/* ===== SPLIT — filters/habits side by side ===== */
.dir-c2 .c2-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--c2-rule);
}
.dir-c2 .c2-split__left,
.dir-c2 .c2-split__right {
  padding: clamp(56px, 6.5vw, 96px) clamp(40px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.dir-c2 .c2-split__left {
  background: var(--c2-paper);
  border-right: 1px solid var(--c2-rule);
}
.dir-c2 .c2-split__right {
  background: #FFF;
}
.dir-c2 .c2-split__num {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c2-ink-mute);
  font-weight: 600;
}
.dir-c2 .c2-split__num b {
  display: inline-block;
  margin-right: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.dir-c2 .c2-split__left .c2-split__num b { color: var(--c2-teal-deep); }
.dir-c2 .c2-split__right .c2-split__num b { color: var(--c2-orange-deep); }

.dir-c2 .c2-split__h {
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 0;
}
.dir-c2 .c2-split__h .accent {
  font-style: italic;
  font-weight: 500;
}
.dir-c2 .c2-split__left .c2-split__h .accent { color: var(--c2-teal); }
.dir-c2 .c2-split__right .c2-split__h .accent { color: var(--c2-orange); }

.dir-c2 .c2-split__lede {
  font-size: 17px;
  line-height: 1.55;
  color: var(--c2-ink);
  margin: 0 0 16px;
  max-width: 52ch;
}

.dir-c2 .c2-filter-list,
.dir-c2 .c2-habit-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--c2-rule);
}
.dir-c2 .c2-filter-item,
.dir-c2 .c2-habit-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--c2-rule);
}
.dir-c2 .c2-filter-item__num,
.dir-c2 .c2-habit-item__num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding-top: 4px;
}
.dir-c2 .c2-filter-item__num { color: var(--c2-teal-deep); }
.dir-c2 .c2-habit-item__num { color: var(--c2-orange-deep); }

.dir-c2 .c2-filter-item__body h4,
.dir-c2 .c2-habit-item__body h4 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  color: var(--c2-ink);
}
.dir-c2 .c2-filter-item__body p,
.dir-c2 .c2-habit-item__body p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--c2-ink-mute);
  margin: 0;
}

/* ===== STATS BAND ===== */
.dir-c2 .c2-stats {
  background: #FFF;
  border-bottom: 1px solid var(--c2-rule);
}
.dir-c2 .c2-stats__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(56px, 7vw, 96px) clamp(28px, 4vw, 56px);
}
.dir-c2 .c2-stats__intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: end;
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--c2-rule);
}
.dir-c2 .c2-stats__eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c2-ink-mute);
  font-weight: 600;
  margin-bottom: 12px;
}
.dir-c2 .c2-stats__h {
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 0;
}
.dir-c2 .c2-stats__h em {
  font-style: italic;
  font-weight: 500;
  color: var(--c2-teal);
}
.dir-c2 .c2-stats__lede {
  font-size: 17px;
  line-height: 1.55;
  color: var(--c2-ink);
  margin: 0;
  max-width: 50ch;
}
.dir-c2 .c2-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--c2-rule-strong);
  border-bottom: 1px solid var(--c2-rule-strong);
}
.dir-c2 .c2-stat {
  padding: 36px 32px 32px;
  border-right: 1px solid var(--c2-rule);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dir-c2 .c2-stat:last-child { border-right: none; }
.dir-c2 .c2-stat__label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c2-ink-mute);
  font-weight: 600;
}
.dir-c2 .c2-stat__val {
  font-size: clamp(64px, 7vw, 104px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.95;
  color: var(--c2-ink);
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-feature-settings: "ss01", "cv11", "tnum";
}
.dir-c2 .c2-stat:nth-child(1) .c2-stat__val { color: var(--c2-teal); }
.dir-c2 .c2-stat:nth-child(2) .c2-stat__val { color: var(--c2-orange); }
.dir-c2 .c2-stat:nth-child(3) .c2-stat__val { color: var(--c2-ink); }
.dir-c2 .c2-stat__val .unit {
  font-size: 0.22em;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--c2-ink-mute);
  text-transform: uppercase;
}
.dir-c2 .c2-stat__caption {
  font-size: 14px;
  line-height: 1.45;
  color: var(--c2-ink-mute);
  margin: 0;
  max-width: 32ch;
}

/* ===== DIVE — listing copy comparison ===== */
.dir-c2 .c2-dive {
  background: var(--c2-paper-warm);
  border-bottom: 1px solid var(--c2-rule);
}
.dir-c2 .c2-dive__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(56px, 7vw, 96px) clamp(28px, 4vw, 56px);
}
.dir-c2 .c2-dive__head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: end;
  margin-bottom: 48px;
}
.dir-c2 .c2-dive__h {
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 16px 0 0;
}
.dir-c2 .c2-dive__h em {
  font-style: italic;
  font-weight: 500;
  color: var(--c2-orange);
}
.dir-c2 .c2-dive__lede {
  font-size: 17px;
  line-height: 1.55;
  color: var(--c2-ink);
  margin: 0;
  max-width: 56ch;
}
.dir-c2 .c2-dive__compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.dir-c2 .c2-listing {
  background: #FFF;
  border: 1px solid var(--c2-rule);
  padding: 28px 28px 0;
  display: flex;
  flex-direction: column;
  position: relative;
}
.dir-c2 .c2-listing__tag {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}
.dir-c2 .c2-listing--bad .c2-listing__tag { color: var(--c2-ink-mute); }
.dir-c2 .c2-listing--good .c2-listing__tag { color: var(--c2-orange-deep); }
.dir-c2 .c2-listing__price {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--c2-ink);
  margin-bottom: 20px;
  font-feature-settings: "ss01", "cv11", "tnum";
}
.dir-c2 .c2-listing__price .per {
  font-size: 14px;
  font-weight: 500;
  color: var(--c2-ink-mute);
  letter-spacing: 0;
  margin-left: 4px;
}
.dir-c2 .c2-listing__body {
  font-size: 16px;
  line-height: 1.55;
  color: var(--c2-ink);
  margin: 0 0 24px;
  flex: 1;
}
.dir-c2 .c2-listing--bad .c2-listing__body {
  color: var(--c2-ink-mute);
  font-style: italic;
}
.dir-c2 .c2-listing__outcome {
  margin: 0 -28px;
  padding: 16px 28px;
  font-size: 13px;
  letter-spacing: 0.03em;
  font-weight: 500;
  border-top: 1px solid var(--c2-rule);
}
.dir-c2 .c2-listing--bad .c2-listing__outcome {
  background: #F4F1E8;
  color: var(--c2-ink-mute);
}
.dir-c2 .c2-listing--good .c2-listing__outcome {
  background: var(--c2-orange-tint);
  color: var(--c2-ink);
}
.dir-c2 .c2-listing--good .c2-listing__outcome strong {
  color: var(--c2-orange-deep);
  font-weight: 700;
}

.dir-c2 .c2-dive__verdict {
  font-size: 17px;
  line-height: 1.55;
  padding: 28px 32px;
  background: #FFF;
  border-left: 3px solid var(--c2-orange);
  color: var(--c2-ink);
}
.dir-c2 .c2-dive__verdict strong { font-weight: 700; }

/* ===== PATH — four moves ===== */
.dir-c2 .c2-path {
  background: var(--c2-black);
  color: #FFF;
}
.dir-c2 .c2-path__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(64px, 7.5vw, 112px) clamp(28px, 4vw, 56px);
}
.dir-c2 .c2-path__head {
  margin-bottom: 56px;
  max-width: 880px;
}
.dir-c2 .c2-path__h {
  font-size: clamp(36px, 4.2vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 12px 0 20px;
}
.dir-c2 .c2-path__h em {
  font-style: italic;
  font-weight: 400;
  color: var(--c2-orange);
}
.dir-c2 .c2-path__lede {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  margin: 0;
  max-width: 64ch;
}
.dir-c2 .c2-path__list {
  border-top: 1px solid rgba(255,255,255,0.18);
}
.dir-c2 .c2-path__row {
  display: grid;
  grid-template-columns: 80px 240px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  align-items: start;
}
.dir-c2 .c2-path__row-num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--c2-orange);
  padding-top: 6px;
}
.dir-c2 .c2-path__row-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  color: #FFF;
}
.dir-c2 .c2-path__row-body {
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 14px;
  color: rgba(255,255,255,0.82);
}
.dir-c2 .c2-path__row-verbs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.dir-c2 .c2-path__row-verbs span {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.66);
  font-family: var(--font-mono);
}

/* ===== FOUNDER ===== */
.dir-c2 .c2-founder {
  background: #FFF;
  border-bottom: 1px solid var(--c2-rule);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 5vw, 80px);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(56px, 7vw, 96px) clamp(28px, 4vw, 56px);
  align-items: start;
}
.dir-c2 .c2-founder__photo {
  position: relative;
  background: var(--c2-paper);
  aspect-ratio: 4/5;
  overflow: hidden;
}
.dir-c2 .c2-founder__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.15) contrast(1.02);
}
.dir-c2 .c2-founder__photo-meta {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px 20px;
  background: rgba(10,10,10,0.85);
  color: #FFF;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}
.dir-c2 .c2-founder__photo-meta b {
  display: block;
  color: var(--c2-orange);
  font-size: 10px;
  margin-bottom: 4px;
  letter-spacing: 0.18em;
}
.dir-c2 .c2-founder__copy {
  padding-top: 12px;
}
.dir-c2 .c2-founder__name {
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 16px 0 8px;
}
.dir-c2 .c2-founder__role {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c2-teal);
  font-weight: 600;
  margin-bottom: 28px;
}
.dir-c2 .c2-founder__copy p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--c2-ink);
  margin: 0 0 14px;
  max-width: 60ch;
}
.dir-c2 .c2-founder__copy p strong { font-weight: 700; }
.dir-c2 .c2-founder__sig {
  margin-top: 24px;
  font-size: 22px;
  font-style: italic;
  font-weight: 500;
  color: var(--c2-ink);
}

/* ===== ROLES ===== */
.dir-c2 .c2-roles {
  background: var(--c2-paper);
  border-bottom: 1px solid var(--c2-rule);
}
.dir-c2 .c2-roles__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(56px, 7vw, 96px) clamp(28px, 4vw, 56px);
}
.dir-c2 .c2-roles__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: end;
  margin-bottom: 48px;
}
.dir-c2 .c2-roles__h {
  font-size: clamp(36px, 4.2vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 12px 0 0;
}
.dir-c2 .c2-roles__h em {
  font-style: italic;
  font-weight: 400;
  color: var(--c2-orange);
}
.dir-c2 .c2-roles__lede {
  font-size: 17px;
  line-height: 1.55;
  color: var(--c2-ink);
  margin: 0;
  max-width: 50ch;
}
.dir-c2 .c2-roles__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--c2-rule-strong);
  border-left: 1px solid var(--c2-rule-strong);
}
.dir-c2 .c2-role {
  display: block;
  text-decoration: none;
  color: var(--c2-ink);
  background: #FFF;
  padding: 32px 32px 28px;
  border-right: 1px solid var(--c2-rule-strong);
  border-bottom: 1px solid var(--c2-rule-strong);
  position: relative;
  transition: background 0.15s ease;
}
.dir-c2 .c2-role:hover { background: var(--c2-paper-warm); }
.dir-c2 .c2-role--equity {
  grid-column: 1 / -1;
  background: var(--c2-teal);
  color: #FFF;
}
.dir-c2 .c2-role--equity:hover { background: var(--c2-teal-deep); }
.dir-c2 .c2-role__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--c2-ink-mute);
}
.dir-c2 .c2-role--equity .c2-role__num { color: rgba(255,255,255,0.66); }
.dir-c2 .c2-role h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0 0 12px;
}
.dir-c2 .c2-role p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--c2-ink-mute);
  margin: 0 0 20px;
}
.dir-c2 .c2-role--equity p { color: rgba(255,255,255,0.85); }
.dir-c2 .c2-role__arrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c2-orange);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.dir-c2 .c2-role--equity .c2-role__arrow { color: var(--c2-orange-tint); }
.dir-c2 .c2-role__arrow span { font-size: 14px; }

/* ===== ASSESS BAND ===== */
.dir-c2 .c2-assess {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  background: var(--c2-orange);
  color: #FFF;
  border-bottom: 1px solid var(--c2-rule);
}
.dir-c2 .c2-assess__copy {
  padding: clamp(56px, 6vw, 80px) clamp(40px, 5vw, 64px);
}
.dir-c2 .c2-assess__copy .c2-eyebrow {
  color: rgba(255,255,255,0.78);
}
.dir-c2 .c2-assess__h {
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 16px 0 16px;
  max-width: 24ch;
}
.dir-c2 .c2-assess__h em {
  font-style: italic;
  font-weight: 500;
}
.dir-c2 .c2-assess__copy p {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  margin: 0 0 24px;
  max-width: 50ch;
}
.dir-c2 .c2-assess__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.dir-c2 .c2-chip {
  font-size: 12px;
  letter-spacing: 0.04em;
  font-weight: 600;
  padding: 8px 14px;
  background: rgba(255,255,255,0.18);
  border-radius: 999px;
  color: #FFF;
}
.dir-c2 .c2-assess .c2-btn {
  background: var(--c2-black);
  color: #FFF;
}
.dir-c2 .c2-assess .c2-btn:hover { background: var(--c2-teal-deep); }

.dir-c2 .c2-assess__viz {
  background: var(--c2-orange-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px;
}
.dir-c2 .c2-assess__big {
  font-size: clamp(140px, 18vw, 280px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.85;
  color: #FFF;
  font-feature-settings: "ss01", "cv11";
}
.dir-c2 .c2-assess__big-sub {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
  margin-top: 12px;
}

/* ===== TRACKS — destinations ===== */
.dir-c2 .c2-tracks {
  background: #FFF;
  border-bottom: 1px solid var(--c2-rule);
}
.dir-c2 .c2-tracks__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(56px, 7vw, 96px) clamp(28px, 4vw, 56px);
}
.dir-c2 .c2-tracks__head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: end;
  margin-bottom: 40px;
}
.dir-c2 .c2-tracks__h {
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 12px 0 0;
}
.dir-c2 .c2-tracks__h em {
  font-style: italic;
  font-weight: 500;
  color: var(--c2-teal);
}
.dir-c2 .c2-tracks__lede {
  font-size: 17px;
  line-height: 1.55;
  color: var(--c2-ink);
  margin: 0;
  max-width: 50ch;
}
.dir-c2 .c2-tracks__list {
  border-top: 1px solid var(--c2-rule-strong);
  margin-bottom: 56px;
}
.dir-c2 .c2-track {
  display: grid;
  grid-template-columns: 1.4fr 1.2fr 200px 60px;
  gap: 24px;
  padding: 28px 0;
  text-decoration: none;
  color: var(--c2-ink);
  border-bottom: 1px solid var(--c2-rule);
  align-items: center;
  transition: background 0.15s ease, padding 0.15s ease;
}
.dir-c2 .c2-track:hover {
  background: var(--c2-paper);
  padding-left: 16px;
  padding-right: 16px;
}
.dir-c2 .c2-track__cond {
  font-size: 13px;
  color: var(--c2-ink-mute);
  letter-spacing: 0.02em;
}
.dir-c2 .c2-track__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0;
}
.dir-c2 .c2-track__price {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 600;
  color: var(--c2-teal);
  text-align: right;
  font-feature-settings: "tnum";
}
.dir-c2 .c2-track__arrow {
  font-size: 22px;
  text-align: right;
  color: var(--c2-ink-mute);
  transition: transform 0.15s ease, color 0.15s ease;
}
.dir-c2 .c2-track:hover .c2-track__arrow {
  color: var(--c2-orange);
  transform: translateX(4px);
}

.dir-c2 .c2-other__title {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c2-ink-mute);
  font-weight: 600;
  margin-bottom: 24px;
}
.dir-c2 .c2-other__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.dir-c2 .c2-other-card {
  display: block;
  text-decoration: none;
  color: var(--c2-ink);
  background: var(--c2-paper);
  padding: 24px;
  border: 1px solid var(--c2-rule);
  transition: background 0.15s ease, border-color 0.15s ease;
}
.dir-c2 .c2-other-card:hover {
  background: var(--c2-paper-warm);
  border-color: var(--c2-orange);
}
.dir-c2 .c2-other-card__cond {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c2-ink-mute);
  margin-bottom: 16px;
}
.dir-c2 .c2-other-card h4 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  line-height: 1.2;
}
.dir-c2 .c2-other-card p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--c2-ink-mute);
  margin: 0 0 18px;
}
.dir-c2 .c2-other-card__price {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--c2-teal);
  font-feature-settings: "tnum";
}

/* ===== WORKSHOPS ===== */
.dir-c2 .c2-shops {
  background: var(--c2-black);
  color: #FFF;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.dir-c2 .c2-shops__head {
  grid-column: 1 / -1;
  padding: clamp(56px, 6vw, 80px) clamp(40px, 5vw, 64px) 32px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.dir-c2 .c2-shops__head h2 {
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 12px 0 16px;
  max-width: 24ch;
}
.dir-c2 .c2-shops__head h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--c2-orange);
}
.dir-c2 .c2-shops__head p {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  margin: 0;
  max-width: 64ch;
}
.dir-c2 .c2-shop {
  text-decoration: none;
  color: #FFF;
  padding: clamp(40px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.15s ease;
}
.dir-c2 .c2-shop--left {
  background: var(--c2-teal);
  border-right: 1px solid rgba(255,255,255,0.18);
}
.dir-c2 .c2-shop--left:hover { background: var(--c2-teal-deep); }
.dir-c2 .c2-shop--right { background: var(--c2-orange-deep); }
.dir-c2 .c2-shop--right:hover { background: #8C4F0E; }
.dir-c2 .c2-shop__live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
}
.dir-c2 .c2-shop__live::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #FFF;
  animation: c2-pulse 1.6s ease-in-out infinite;
}
@keyframes c2-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.25); }
}
.dir-c2 .c2-shop__topic {
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.dir-c2 .c2-shop h3 {
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  font-weight: 700;
  margin: 0;
  max-width: 24ch;
}
.dir-c2 .c2-shop p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  margin: 0;
  max-width: 50ch;
}
.dir-c2 .c2-shop__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding-top: 16px;
}
.dir-c2 .c2-shop__cta span { font-size: 16px; }

/* ===== MANIFESTO ===== */
.dir-c2 .c2-man {
  background: var(--c2-teal-deep);
  color: #FFF;
}
.dir-c2 .c2-man__inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: clamp(72px, 8vw, 120px) clamp(28px, 4vw, 56px);
}
.dir-c2 .c2-man h2 {
  font-size: clamp(40px, 4.6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 16px 0 32px;
}
.dir-c2 .c2-man h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--c2-orange);
}
.dir-c2 .c2-man p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin: 0 0 16px;
  max-width: 64ch;
}
.dir-c2 .c2-man__pull {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.18);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 500;
  font-style: italic;
}
.dir-c2 .c2-man__pull strong {
  font-weight: 700;
  font-style: normal;
  color: var(--c2-orange);
}

/* ===== FINAL CTA ===== */
.dir-c2 .c2-final {
  background: #FFF;
  border-bottom: 1px solid var(--c2-rule);
}
.dir-c2 .c2-final__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(56px, 6vw, 80px) clamp(28px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}
.dir-c2 .c2-final h2 {
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 0 0 16px;
}
.dir-c2 .c2-final h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--c2-orange);
}
.dir-c2 .c2-final p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--c2-ink-mute);
  margin: 0;
  max-width: 56ch;
}
.dir-c2 .c2-final__price {
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c2-ink-mute);
  font-weight: 600;
}

/* ===== FOOTER ===== */
.dir-c2 .c2-foot {
  background: var(--c2-black);
  color: rgba(255,255,255,0.78);
}
.dir-c2 .c2-foot__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(56px, 6vw, 80px) clamp(28px, 4vw, 56px) 32px;
}
.dir-c2 .c2-foot__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.dir-c2 .c2-foot__brand img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}
.dir-c2 .c2-foot__tagline {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.66);
  margin: 0;
  max-width: 38ch;
}
.dir-c2 .c2-foot h4 {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c2-orange);
  font-weight: 600;
  margin: 0 0 16px;
}
.dir-c2 .c2-foot ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.dir-c2 .c2-foot ul li a {
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  color: rgba(255,255,255,0.78);
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px dashed rgba(255,255,255,0.12);
  transition: color 0.15s ease;
}
.dir-c2 .c2-foot ul li a:hover { color: #FFF; }
.dir-c2 .c2-foot ul li a span:last-child {
  font-family: var(--font-mono);
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  font-feature-settings: "tnum";
}
.dir-c2 .c2-foot__bot {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  padding-top: 24px;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .dir-c2 .c2-hero,
  .dir-c2 .c2-split,
  .dir-c2 .c2-assess,
  .dir-c2 .c2-shops,
  .dir-c2 .c2-final__inner,
  .dir-c2 .c2-roles__head,
  .dir-c2 .c2-tracks__head,
  .dir-c2 .c2-dive__head,
  .dir-c2 .c2-stats__intro,
  .dir-c2 .c2-spine__inner,
  .dir-c2 .c2-founder {
    grid-template-columns: 1fr;
  }
  .dir-c2 .c2-hero::before { display: none; }
  .dir-c2 .c2-roles__grid,
  .dir-c2 .c2-stats__grid,
  .dir-c2 .c2-other__grid,
  .dir-c2 .c2-dive__compare {
    grid-template-columns: 1fr;
  }
  .dir-c2 .c2-stat { border-right: none; border-bottom: 1px solid var(--c2-rule); }
  .dir-c2 .c2-track { grid-template-columns: 1fr; gap: 8px; }
  .dir-c2 .c2-track__price, .dir-c2 .c2-track__arrow { text-align: left; }
  .dir-c2 .c2-path__row { grid-template-columns: 1fr; gap: 12px; }
  .dir-c2 .c2-foot__top { grid-template-columns: 1fr; }
  .dir-c2 .c2-bar__side { display: none; }
}
