/* ==========================================================================
   V2 — Dashboard-as-Hero
   ========================================================================== */
.v2 {}

.v2-hero {
  padding: 140px 24px 80px;
  max-width: var(--container);
  margin: 0 auto;
}
.v2-hero__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 48px;
}
.v2-hero__eyebrow-row {
  display: flex; gap: 8px; flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--fg-mute);
  margin-bottom: 24px;
}
.v2-hero__chip {
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
}
.v2-hero__chip--accent {
  background: rgba(121, 255, 140, 0.1);
  border-color: rgba(121, 255, 140, 0.3);
  color: var(--accent);
}
.v2-hero__title {
  font-size: clamp(48px, 6.5vw, 92px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 500;
  margin-bottom: 24px;
  text-wrap: balance;
}
.v2-hero__title em {
  font-family: var(--font-display);
  font-style: italic; font-weight: 400;
  color: var(--accent);
}
.v2-hero__sub {
  color: var(--fg-dim);
  font-size: 18px;
  line-height: 1.55;
  margin-bottom: 32px;
  max-width: 460px;
}
.v2-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Dashboard mock */
.v2-dash {
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  font-size: 13px;
}
.v2-dash__head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px;
}
.v2-dash__dots { display: flex; gap: 6px; }
.v2-dash__dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--line-2);
}
.v2-dash__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--fg-mute);
}
.v2-dash__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}
.v2-dash__metric {
  padding: 12px;
  border-radius: 10px;
  background: var(--bg-2);
  border: 1px solid var(--line);
}
.v2-dash__ml {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-mute);
  margin-bottom: 6px;
}
.v2-dash__mv {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.v2-dash__mv--accent { color: var(--accent); }
.v2-dash__delta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
}
.v2-dash__chart {
  height: 160px;
  position: relative;
  padding: 10px 0;
}
.v2-dash__flows {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.v2-dash__flow {
  display: grid;
  grid-template-columns: 16px 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  background: var(--bg-2);
  border-radius: 8px;
  border: 1px solid var(--line);
  font-size: 12px;
}
.v2-dash__flow__dot {
  width: 8px; height: 8px; border-radius: 2px;
  background: var(--accent);
}
.v2-dash__flow__dot--off { background: var(--line-2); }
.v2-dash__flow__name { font-weight: 500; }
.v2-dash__flow__val { font-family: var(--font-mono); color: var(--fg-dim); }
.v2-dash__flow__bar {
  width: 80px; height: 4px;
  background: var(--line-2);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.v2-dash__flow__bar::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: var(--accent);
  width: var(--pct, 50%);
}

@media (max-width: 900px) {
  .v2-hero__top { grid-template-columns: 1fr; gap: 40px; }
}

/* V2 sections — lean more on horizontal rhythm */
.v2-section {
  padding: 120px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.v2-section__head {
  margin-bottom: 64px;
  max-width: 880px;
}
.v2-section__eyebrow {
  margin-bottom: 16px;
}
.v2-section__title {
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 500;
  margin-bottom: 16px;
  text-wrap: balance;
}
.v2-section__title em {
  font-family: var(--font-display);
  font-style: italic; font-weight: 400;
  color: var(--accent);
}
.v2-section__sub {
  color: var(--fg-dim);
  font-size: 18px;
  max-width: 640px;
  line-height: 1.55;
}

/* Problem as strikethrough list */
.v2-problem__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.v2-problem__row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.v2-problem__row:last-child { border-bottom: 1px solid var(--line); }
.v2-problem__marker {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.08em;
}
.v2-problem__body { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: baseline; }
.v2-problem__t { font-size: 26px; font-weight: 500; letter-spacing: -0.01em; }
.v2-problem__d { color: var(--fg-dim); font-size: 16px; line-height: 1.6; }
.v2-problem__kicker {
  margin-top: 80px;
  padding: 40px;
  border: 1px solid var(--accent);
  border-radius: 16px;
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: -0.02em;
  text-wrap: balance;
  background: linear-gradient(180deg, rgba(121,255,140,0.05), transparent);
}
@media (max-width: 820px) {
  .v2-problem__body { grid-template-columns: 1fr; gap: 12px; }
  .v2-problem__row { grid-template-columns: 1fr; gap: 12px; }
}

/* Services as sticky feature rows */
.v2-services {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.v2-serv {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.v2-serv__n {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.v2-serv__t {
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.v2-serv__d {
  color: var(--fg-dim);
  font-size: 16px;
  line-height: 1.65;
}
@media (max-width: 820px) {
  .v2-serv { grid-template-columns: 1fr; gap: 10px; }
}

/* Klaviyo as pill row + bar chart */
.v2-klav__pills {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 48px;
}
.v2-klav__pill {
  padding: 10px 16px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 13px;
  color: var(--fg-dim);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
}
.v2-klav__pill::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.v2-klav__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.v2-klav__cell {
  background: var(--bg);
  padding: 40px 32px;
}
.v2-klav__cell h4 { font-size: 22px; font-weight: 500; letter-spacing: -0.01em; margin-bottom: 10px; }
.v2-klav__cell p { color: var(--fg-dim); font-size: 15px; line-height: 1.6; }
@media (max-width: 700px) { .v2-klav__grid { grid-template-columns: 1fr; } }

/* V2 founder */
.v2-founder-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}
.v2-founder-card {
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: 20px;
  overflow: hidden;
}
.v2-founder-card__photo {
  aspect-ratio: 4/3;
  background: repeating-linear-gradient(135deg, var(--bg-3) 0 18px, var(--card-2) 18px 36px);
  display: flex; align-items: center; justify-content: center;
  color: var(--fg-mute);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
}
.v2-founder-card__body { padding: 28px; }
.v2-founder-card__name { font-size: 22px; font-weight: 500; }
.v2-founder-card__role { color: var(--accent); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; }
.v2-founder-card__bio { color: var(--fg-dim); line-height: 1.6; margin-bottom: 16px; font-size: 15px; }

.v2-diff__list { display: flex; flex-direction: column; gap: 0; }
.v2-diff__row {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
}
.v2-diff__row:last-child { border-bottom: 1px solid var(--line); }
.v2-diff__n { color: var(--accent); font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.08em; }
.v2-diff__t { font-size: 20px; font-weight: 500; letter-spacing: -0.01em; margin-bottom: 6px; }
.v2-diff__d { color: var(--fg-dim); font-size: 15px; line-height: 1.6; }
@media (max-width: 900px) { .v2-founder-wrap { grid-template-columns: 1fr; gap: 40px; } }

/* V2 Process — horizontal rail */
.v2-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.v2-rail::before {
  content: '';
  position: absolute;
  top: 18px; left: 10%; right: 10%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--line-2) 0 6px, transparent 6px 12px);
}
.v2-rail__step { position: relative; }
.v2-rail__dot {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 13px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.v2-rail__t { font-size: 22px; font-weight: 500; letter-spacing: -0.01em; margin-bottom: 8px; }
.v2-rail__d { color: var(--fg-dim); font-size: 15px; line-height: 1.6; }
@media (max-width: 820px) {
  .v2-rail { grid-template-columns: 1fr; }
  .v2-rail::before { display: none; }
}

.v2-final {
  padding: 140px 24px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.v2-final h2 {
  font-size: clamp(44px, 6.5vw, 96px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 500;
  margin: 24px auto;
  text-wrap: balance;
}
.v2-final h2 em { font-family: var(--font-display); font-style: italic; color: var(--accent); font-weight: 400; }
.v2-final p { color: var(--fg-dim); font-size: 18px; max-width: 560px; margin: 0 auto 36px; line-height: 1.6; }

/* ==========================================================================
   V3 — Index / Manifesto
   ========================================================================== */
.v3 {}
.v3-wrap {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 24px 80px;
}
.v3-sidebar {
  position: sticky;
  top: 120px;
  align-self: start;
}
.v3-sidebar__label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-mute);
  margin-bottom: 18px;
}
.v3-sidebar__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
}
.v3-sidebar__list a {
  display: flex;
  justify-content: space-between;
  color: var(--fg-dim);
  padding: 6px 0;
  border-top: 1px solid var(--line);
}
.v3-sidebar__list a:hover { color: var(--accent); }
.v3-sidebar__list a.active { color: var(--accent); }
.v3-sidebar__list a span:first-child { color: var(--fg-mute); letter-spacing: 0.08em; }

.v3-main { min-width: 0; }

.v3-hero {
  padding-bottom: 80px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 80px;
}
.v3-hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-mute);
  margin-bottom: 32px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.v3-hero__eyebrow::before {
  content: '§01';
  padding: 3px 8px;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: 3px;
  font-size: 10px;
  letter-spacing: 0.08em;
}
.v3-hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 6.2vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
  text-wrap: balance;
}
.v3-hero__title em {
  font-style: italic;
  color: var(--accent);
}
.v3-hero__lede {
  font-size: 22px;
  color: var(--fg);
  line-height: 1.5;
  margin-bottom: 40px;
  max-width: 620px;
}
.v3-hero__rot {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-mute);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.v3-hero__rot span { color: var(--accent); padding: 0 6px; }
.v3-hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* V3 Section */
.v3-section { padding: 60px 0; scroll-margin-top: 100px; }
.v3-section__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 14px;
}
.v3-section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  text-wrap: balance;
  max-width: 720px;
}
.v3-section__sub {
  color: var(--fg-dim);
  font-size: 17px;
  line-height: 1.6;
  max-width: 620px;
  margin-bottom: 40px;
}

/* Numbered prose items */
.v3-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.v3-item {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
}
.v3-item:last-child { border-bottom: 1px solid var(--line); }
.v3-item__n {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-mute);
  letter-spacing: 0.1em;
}
.v3-item__t { font-size: 20px; font-weight: 500; letter-spacing: -0.01em; margin-bottom: 8px; }
.v3-item__d { color: var(--fg-dim); font-size: 15px; line-height: 1.65; max-width: 640px; }

/* V3 logos — list */
.v3-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin: 48px 0;
}
.v3-logo {
  background: var(--bg);
  padding: 24px;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--fg-dim);
}
@media (max-width: 600px) { .v3-logos { grid-template-columns: 1fr 1fr; } }

/* V3 founder */
.v3-founder {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 40px;
}
.v3-founder__photo {
  aspect-ratio: 1;
  background: repeating-linear-gradient(135deg, var(--bg-3) 0 16px, var(--card-2) 16px 32px);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: var(--fg-mute);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 12px;
}
.v3-founder__name { font-family: var(--font-display); font-size: 28px; letter-spacing: -0.01em; }
.v3-founder__role { color: var(--accent); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; }
.v3-founder__bio { color: var(--fg-dim); font-size: 15px; line-height: 1.65; margin-bottom: 16px; max-width: 520px; }
@media (max-width: 700px) {
  .v3-founder { grid-template-columns: 1fr; }
  .v3-founder__photo { max-width: 160px; }
}

.v3-final {
  padding: 100px 0 40px;
  border-top: 1px solid var(--line);
  margin-top: 60px;
  text-align: left;
}
.v3-final h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 20px 0;
  text-wrap: balance;
  max-width: 760px;
}
.v3-final h2 em { font-style: italic; color: var(--accent); }
.v3-final p { color: var(--fg-dim); font-size: 18px; max-width: 560px; margin-bottom: 32px; line-height: 1.6; }

@media (max-width: 900px) {
  .v3-wrap { grid-template-columns: 1fr; gap: 40px; }
  .v3-sidebar { position: static; }
}
