/* ============================================================
   Нейросборка landings — sections & components
   Depends on tokens.css (brand v3, D2 Cold Technical · TS1 Geist)
   ============================================================ */

html { scroll-padding-top: 72px; }

/* ---------- Skip link & focus ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 100;
  padding: 8px 12px;
  background: var(--teal);
  color: var(--bg-1);
  border-radius: var(--r-md);
  font-weight: var(--fw-semibold);
}
.skip-link:focus { left: 16px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgb(10, 15, 13, 0.78);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--border-1);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.brand {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--fg-1);
}
.brand__dot { color: var(--teal); }

.site-header__nav {
  display: flex;
  gap: var(--sp-6);
  align-items: center;
}

.site-header__nav a {
  color: var(--fg-2);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
}
.site-header__nav a:hover { color: var(--fg-1); }

/* ---------- Mobile drawer (≤720px) ---------- */
.nav-drawer { display: none; }

.nav-drawer > summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  border: 1px solid var(--border-1);
  background: var(--bg-2);
  color: var(--fg-1);
}
.nav-drawer > summary::-webkit-details-marker { display: none; }

.nav-drawer > summary::before {
  content: "";
  width: 18px;
  height: 12px;
  background-image: linear-gradient(currentcolor, currentcolor),
                    linear-gradient(currentcolor, currentcolor),
                    linear-gradient(currentcolor, currentcolor);
  background-size: 100% 1.5px;
  background-position: 0 0, 0 50%, 0 100%;
  background-repeat: no-repeat;
}

.nav-drawer[open] > summary::before {
  background-image: linear-gradient(currentcolor, currentcolor),
                    linear-gradient(currentcolor, currentcolor);
  background-size: 100% 1.5px;
  background-position: 0 50%, 0 50%;
  transform: rotate(45deg);
  filter: none;
}

.nav-drawer__panel {
  position: absolute;
  top: 56px;
  left: 0;
  right: 0;
  background: rgb(10, 15, 13, 0.96);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--border-1);
  padding: var(--sp-4) var(--sp-5) var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.nav-drawer__panel a {
  color: var(--fg-1);
  font-size: var(--text-md);
  font-weight: var(--fw-medium);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--border-1);
}
.nav-drawer__panel a:last-child { border-bottom: 0; }
.nav-drawer__panel .btn { margin-top: var(--sp-3); }

@media (width <= 720px) {
  .site-header__nav { display: none; }
  .nav-drawer { display: inline-block; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 12px 20px;
  border-radius: var(--r-lg);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--tracking-normal);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--dur-1) var(--ease),
              color var(--dur-1) var(--ease),
              border-color var(--dur-1) var(--ease),
              transform var(--dur-1) var(--ease),
              box-shadow var(--dur-1) var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal);
  color: #000;
  box-shadow: var(--teal-glow);
}

.btn-primary:hover {
  background: var(--teal-hover);
  color: #000;
  transform: translateY(-1px);
}
.btn-primary:active { background: var(--teal-pressed); transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--fg-1);
  border-color: var(--border-3);
}
.btn-ghost:hover { background: var(--bg-3); border-color: var(--border-3); }
.btn-lg { padding: 16px 28px; font-size: var(--text-md); }
.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 120px 0 96px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-glow);
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: var(--grid-size) var(--grid-size);
  -webkit-mask-image: radial-gradient(ellipse 60% 70% at 50% 30%, #000 30%, transparent 80%);
          mask-image: radial-gradient(ellipse 60% 70% at 50% 30%, #000 30%, transparent 80%);
  z-index: -1;
}
.hero__inner { max-width: 880px; }
.hero__eyebrow { margin-bottom: var(--sp-4); }

.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--sp-6);
}

.hero__lead {
  font-size: var(--text-md);
  color: var(--fg-2);
  line-height: 1.55;
  margin-bottom: var(--sp-8);
  max-width: 720px;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: var(--sp-3); }

/* ---------- Section base ---------- */
.section { padding: 96px 0; }
.section-lg { padding: 120px 0; }
.section-tight { padding: 64px 0; }

.section h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--sp-3);
}
.section__eyebrow { margin-bottom: var(--sp-3); }

.section__lead {
  font-size: var(--text-md);
  color: var(--fg-2);
  max-width: 720px;
  margin-bottom: var(--sp-10);
}

/* ---------- 3-up grid (что внутри / форматы) ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--grid-gap);
}

.feature-card {
  padding: var(--sp-6);
  background: var(--bg-2);
  border: 1px solid var(--border-1);
  border-radius: var(--r-2xl);
  transition: border-color var(--dur-1) var(--ease), transform var(--dur-2) var(--ease);
}
.feature-card:hover { border-color: var(--border-3); transform: translateY(-2px); }

.feature-card__title {
  font-size: var(--text-xl);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--tracking-snug);
  margin-bottom: var(--sp-3);
}
.feature-card__body { color: var(--fg-2); line-height: 1.55; }

.feature-card__num {
  display: inline-flex;
  width: 28px; height: 28px;
  align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--teal);
  background: var(--teal-tint);
  border-radius: var(--r-md);
  margin-bottom: var(--sp-3);
}

/* ---------- Cadence list (A.3 / B.4) ---------- */
.cadence-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  list-style: none;
  padding: 0;
  margin: 0;
}

.cadence-list li {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--sp-6);
  padding: var(--sp-5) 0;
  border-bottom: 1px solid var(--border-1);
}
.cadence-list li:last-child { border-bottom: 0; }

.cadence-list .when {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--teal);
  letter-spacing: var(--tracking-mono);
}
.cadence-list .what { color: var(--fg-1); line-height: 1.55; }

@media (width <= 640px) {
  .cadence-list li { grid-template-columns: 1fr; gap: var(--sp-2); }
}

/* ---------- Audience grid (A.4 / B.5) ---------- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

@media (width <= 980px) {
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (width <= 640px) {
  .audience-grid { grid-template-columns: 1fr; }
}

.audience-card {
  padding: var(--sp-5) var(--sp-6);
  background: var(--bg-2);
  border-left: 2px solid var(--teal);
  border-radius: var(--r-md);
  color: var(--fg-2);
  line-height: 1.55;
}
.audience-card strong { color: var(--fg-1); display: block; margin-bottom: var(--sp-1); font-weight: var(--fw-semibold); }

/* ---------- Stats card (A.5) ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--grid-gap);
  padding: var(--sp-8);
  background: var(--bg-2);
  border: 1px solid var(--border-1);
  border-radius: var(--r-2xl);
  margin-top: var(--sp-8);
}

.stat__num {
  font-size: var(--text-3xl);
  font-weight: var(--fw-bold);
  color: var(--teal);
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-tight);
  font-feature-settings: 'tnum';
}
.stat__label { color: var(--fg-2); font-size: var(--text-sm); margin-top: var(--sp-2); line-height: 1.45; }

.stats__note {
  grid-column: 1 / -1;
  margin-top: var(--sp-4);
  color: var(--fg-3);
  font-size: var(--text-xs);
  font-style: italic;
}

/* ---------- Stub-wall (A.5) ---------- */

/* Hidden до получения ассетов от Кати ([LEA-674]). Снимаем display:none — раскомментируем grid. */
.stub-wall { display: none; }

.stub-wall--enabled {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}

.stub-wall__plate {
  aspect-ratio: 1 / 1;
  background:
    linear-gradient(135deg, rgb(255,255,255,0.04), rgb(255,255,255,0.02)),
    var(--bg-3);
  border: 1px solid var(--border-1);
  border-radius: var(--r-lg);
}

.stub-wall__label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--fg-3);
  margin-bottom: var(--sp-3);
}

@media (width <= 720px) {
  .stub-wall--enabled { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Upsell card (A.6) ---------- */
.upsell {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--sp-10);
  padding: var(--sp-10);
  background:
    radial-gradient(60% 80% at 30% 0%, rgb(0, 229, 199, 0.10) 0%, transparent 60%),
    var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--r-3xl);
}
.upsell h3 { font-size: var(--text-2xl); margin-bottom: var(--sp-4); }
.upsell__body { color: var(--fg-2); line-height: 1.6; margin-bottom: var(--sp-6); }

.upsell__price {
  font-family: var(--font-sans);
  font-size: var(--text-3xl);
  font-weight: var(--fw-bold);
  color: var(--fg-1);
  letter-spacing: var(--tracking-tight);
  line-height: var(--lh-tight);
}
.upsell__price-meta { color: var(--fg-3); font-size: var(--text-sm); margin-top: var(--sp-2); margin-bottom: var(--sp-6); }
.upsell__side { display: flex; flex-direction: column; align-items: stretch; justify-content: center; }

@media (width <= 880px) {
  .upsell { grid-template-columns: 1fr; gap: var(--sp-6); padding: var(--sp-6); }
}

/* ---------- Final CTA (A.7 / B.11) ---------- */
.final-cta {
  text-align: center;
  padding: var(--sp-16) var(--sp-6);
  background:
    radial-gradient(50% 80% at 50% 0%, rgb(0, 229, 199, 0.12) 0%, transparent 70%),
    var(--bg-2);
  border-top: 1px solid var(--border-1);
  border-bottom: 1px solid var(--border-1);
}
.final-cta h2 { margin-bottom: var(--sp-4); }
.final-cta p { color: var(--fg-2); max-width: 640px; margin: 0 auto var(--sp-8); line-height: 1.6; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }

.faq details {
  border-bottom: 1px solid var(--border-1);
  padding: var(--sp-5) 0;
}
.faq details[open] summary { color: var(--teal); }

.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  font-size: var(--text-md);
  font-weight: var(--fw-semibold);
  color: var(--fg-1);
  letter-spacing: var(--tracking-normal);
  transition: color var(--dur-1) var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: var(--fw-medium);
  color: var(--fg-3);
  transition: transform var(--dur-2) var(--ease);
  flex-shrink: 0;
}
.faq details[open] summary::after { content: "−"; color: var(--teal); }
.faq__answer { color: var(--fg-2); line-height: 1.65; padding-top: var(--sp-3); }
.faq__answer p + p { margin-top: var(--sp-3); }

/* ---------- PRO compare table (B.2) ---------- */
.compare {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--bg-2);
  border: 1px solid var(--border-1);
  border-radius: var(--r-2xl);
  overflow: hidden;
  font-size: var(--text-sm);
}

.compare th, .compare td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-1);
  color: var(--fg-2);
  vertical-align: top;
}

.compare thead th {
  background: var(--bg-3);
  color: var(--fg-1);
  font-weight: var(--fw-semibold);
  font-size: var(--text-sm);
  letter-spacing: var(--tracking-normal);
  text-transform: none;
}

@media (width >= 641px) {
  .compare thead th { position: sticky; top: 56px; z-index: 10; }
}
.compare tbody td:first-child { color: var(--fg-1); font-weight: var(--fw-medium); }
.compare td.cell-yes { color: var(--teal); font-weight: var(--fw-semibold); }
.compare td.cell-no { color: var(--fg-4); }
.compare tr:last-child td { border-bottom: 0; }

/* PRO column highlight (desktop) */
.compare thead th:last-child {
  background: var(--teal-tint);
  color: var(--teal);
}

.compare tbody td:last-child {
  background: rgb(0, 229, 199, 0.03);
}

/* Price row accent */
.compare tbody tr:last-child td {
  border-top: 1px solid var(--border-2);
  background: var(--bg-3);
  font-weight: var(--fw-semibold);
}

/* Restore PRO highlight on price cell (override tr:last-child td) */
.compare tbody tr:last-child td:last-child {
  background:
    linear-gradient(rgb(0, 229, 199, 0.10), rgb(0, 229, 199, 0.10)),
    var(--bg-3);
}
.cell-price-pro { color: var(--teal); }
.cell-price-free { color: var(--fg-3); }
.compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 0 calc(-1 * var(--sp-3)); padding: 0 var(--sp-3); }

@media (width <= 640px) {
  .compare-wrap { overflow-x: unset; margin: 0; padding: 0; }
  .compare { display: block; background: transparent; border: none; border-radius: 0; }
  .compare thead { display: none; }
  .compare tbody { display: flex; flex-direction: column; gap: var(--sp-2); }

  .compare tbody tr {
    display: grid;
    grid-template-columns: 1fr 52px 52px;
    align-items: center;
    gap: var(--sp-3);
    padding: var(--sp-3) var(--sp-4);
    background: var(--bg-2);
    border: 1px solid var(--border-1);
    border-radius: var(--r-xl);
  }
  .compare tbody td { padding: 0; border: none; font-size: var(--text-sm); line-height: 1.4; }
  .compare tbody td:first-child { color: var(--fg-1); font-weight: var(--fw-medium); }

  .compare tbody td:nth-child(2),
  .compare tbody td:nth-child(3) {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    background: transparent;
  }

  /* FREE/PRO labels: show only on the first feature row (acts as sticky-like header) */
  .compare tbody td:nth-child(2)::before,
  .compare tbody td:nth-child(3)::before {
    content: none;
  }

  .compare tbody tr:first-child td:nth-child(2)::before {
    content: "Free";
    font-family: var(--font-mono);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--fg-4);
  }

  .compare tbody tr:first-child td:nth-child(3)::before {
    content: "PRO";
    font-family: var(--font-mono);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--teal);
  }

  /* PRO-only feature rows: teal border-left for visual hierarchy of "what I get on PRO" */
  .compare tbody tr:has(td.cell-no + td.cell-yes) {
    border-left: 2px solid var(--teal);
  }

  /* Price row: full-width layout — long text doesn't fit the 52px columns */
  .compare tbody tr:last-child {
    grid-template-columns: 1fr;
    gap: var(--sp-2);
    background: var(--bg-3);
    border-color: var(--border-2);
  }

  .compare tbody tr:last-child td:first-child {
    font-size: var(--text-base);
    margin-bottom: var(--sp-1);
  }

  .compare tbody tr:last-child td:nth-child(2) {
    display: none;
  }

  .compare tbody tr:last-child td:nth-child(3) {
    text-align: left;
    align-items: flex-start;
    font-size: var(--text-md);
    font-weight: var(--fw-semibold);
  }

  .compare tbody tr:last-child td:nth-child(3)::before {
    content: none;
  }
}

/* ---------- B.3 numbered benefits ---------- */
.benefits {
  display: grid;
  gap: var(--sp-6);
}

.benefit {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: var(--sp-5);
  padding: var(--sp-6);
  background: var(--bg-2);
  border: 1px solid var(--border-1);
  border-radius: var(--r-2xl);
}

.benefit__num {
  font-family: var(--font-mono);
  font-size: var(--text-2xl);
  color: var(--teal);
  font-weight: var(--fw-medium);
  letter-spacing: var(--tracking-mono);
  line-height: 1;
}

.benefit h3 {
  font-size: var(--text-lg);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--tracking-snug);
  line-height: 1.3;
  margin-bottom: var(--sp-2);
}

.benefit__meta {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--fg-3);
  letter-spacing: var(--tracking-mono);
  margin-bottom: var(--sp-3);
}
.benefit__body { color: var(--fg-2); line-height: 1.6; }

.benefit__bonus {
  margin-top: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  background: var(--teal-tint);
  border: 1px solid rgb(0, 229, 199, 0.22);
  border-radius: var(--r-xl);
  color: var(--fg-1);
  line-height: 1.6;
}
.benefit__bonus strong { color: var(--teal); }

@media (width <= 640px) {
  .benefit { grid-template-columns: 1fr; gap: var(--sp-3); padding: var(--sp-5); }
}

/* ---------- 30-day program (B.6) ---------- */
.program {
  display: grid;
  gap: var(--sp-4);
  counter-reset: week;
}

.program__step {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: var(--sp-6);
  padding: var(--sp-5) 0;
  border-bottom: 1px solid var(--border-1);
}

.program__when {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--teal);
  font-weight: var(--fw-medium);
  letter-spacing: var(--tracking-mono);
}
.program__what h4 { font-size: var(--text-md); font-weight: var(--fw-semibold); margin-bottom: var(--sp-2); }
.program__what p { color: var(--fg-2); line-height: 1.6; margin-bottom: var(--sp-2); }

.program__artifact {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-2);
  padding: 4px 10px;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--teal);
  background: var(--teal-tint);
  border-radius: var(--r-md);
  letter-spacing: var(--tracking-mono);
}

.program__summary {
  margin-top: var(--sp-6);
  padding: var(--sp-6);
  background: var(--bg-3);
  border-left: 2px solid var(--teal);
  border-radius: var(--r-md);
  color: var(--fg-1);
  line-height: 1.6;
}

@media (width <= 640px) {
  .program__step { grid-template-columns: 1fr; gap: var(--sp-2); }
}

/* ---------- Founder voice (B.7) ---------- */
.founder-video {
  max-width: 760px;
  margin: 0 auto var(--sp-8);
  display: block;
}

.founder-video video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-3xl);
  border: 1px solid var(--border-2);
  background: var(--bg-2);
}

.founder-video--placeholder {
  background: linear-gradient(140deg, rgb(0, 229, 199, 0.10) 0%, rgb(0, 229, 199, 0.02) 60%, transparent 100%), var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--r-3xl);
  overflow: hidden;
  margin-bottom: var(--sp-6);
}

.founder-video__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 50%, rgb(0, 229, 199, 0.18) 0%, transparent 55%),
    repeating-linear-gradient(45deg, rgb(255,255,255,0.018) 0 2px, transparent 2px 8px);
  border-bottom: 1px solid var(--border-2);
}

.founder-video__play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: var(--r-full);
  background: rgb(0, 229, 199, 0.14);
  border: 1px solid rgb(0, 229, 199, 0.45);
  color: var(--teal);
  box-shadow: var(--teal-glow);
}

.founder-video__caption {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  padding: var(--sp-5) var(--sp-6);
}

.founder-video__eyebrow {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  letter-spacing: var(--tracking-mono);
  color: var(--teal);
  text-transform: uppercase;
}

.founder-video__title {
  color: var(--fg-1);
  font-weight: var(--fw-semibold);
}

@media (width <= 640px) {
  .founder-video__caption { padding: var(--sp-4) var(--sp-5); }
  .founder-video__play { width: 56px; height: 56px; }
}

.founder {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--sp-10);
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--r-3xl);
  position: relative;
}

.founder::before {
  content: "“";
  position: absolute;
  top: -24px; left: 32px;
  font-size: 96px;
  font-weight: var(--fw-bold);
  color: var(--teal);
  line-height: 1;
  font-family: Georgia, serif;
}

.founder p {
  font-size: var(--text-md);
  color: var(--fg-1);
  line-height: 1.7;
  margin-bottom: var(--sp-4);
  font-style: italic;
}
.founder p:last-of-type { margin-bottom: 0; }

.founder__sig {
  margin-top: var(--sp-6);
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--teal);
  letter-spacing: var(--tracking-mono);
  font-style: normal;
}

/* ---------- Cases (B.8) ---------- */
.cases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--grid-gap);
}

.case {
  padding: var(--sp-6);
  background: var(--bg-2);
  border: 1px solid var(--border-1);
  border-radius: var(--r-2xl);
}

.case__role {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--fg-3);
  margin-bottom: var(--sp-3);
}

.case__metric {
  font-size: var(--text-2xl);
  font-weight: var(--fw-bold);
  color: var(--teal);
  letter-spacing: var(--tracking-tight);
  line-height: var(--lh-tight);
  margin-bottom: var(--sp-3);
  font-feature-settings: 'tnum';
}
.case__body { color: var(--fg-2); line-height: 1.55; }
.cases__note { margin-top: var(--sp-6); color: var(--fg-3); font-size: var(--text-sm); font-style: italic; max-width: 720px; }

/* ---------- Pricing (B.9) ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--grid-gap);
  max-width: 880px;
  margin: 0 auto;
}

.price-card {
  padding: var(--sp-8);
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--r-2xl);
  text-align: left;
}

.price-card__region {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--fg-3);
  margin-bottom: var(--sp-3);
}

.price-card__amount {
  font-size: 56px;
  font-weight: var(--fw-bold);
  color: var(--fg-1);
  letter-spacing: var(--tracking-tight);
  line-height: var(--lh-tight);
}
.price-card__per { color: var(--fg-3); font-size: var(--text-md); margin-left: 6px; font-weight: var(--fw-regular); }
.price-card__annual { color: var(--fg-2); font-size: var(--text-sm); margin-top: var(--sp-2); }
.price-card__cta { margin-top: var(--sp-6); }
.price-card__cta .btn + .btn { margin-top: var(--sp-2); }
.pricing__note { max-width: 880px; margin: var(--sp-6) auto 0; color: var(--fg-3); font-size: var(--text-sm); }

/* ---------- Refund (B.12) ---------- */
.refund {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: var(--sp-8);
  background: var(--bg-2);
  border: 1px dashed var(--border-3);
  border-radius: var(--r-2xl);
}
.refund h3 { font-size: var(--text-xl); margin-bottom: var(--sp-3); }
.refund p { color: var(--fg-2); line-height: 1.6; }

/* ---------- Footer ---------- */
.site-footer {
  padding: var(--sp-12) 0 var(--sp-8);
  border-top: 1px solid var(--border-1);
  background: var(--bg-0);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--sp-8);
  margin-bottom: var(--sp-8);
}

.site-footer h4 {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--fg-3);
  font-weight: var(--fw-medium);
  margin-bottom: var(--sp-4);
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--sp-3); }
.site-footer a { color: var(--fg-2); font-size: var(--text-sm); }
.site-footer a:hover { color: var(--teal); }

.site-footer__meta {
  padding-top: var(--sp-6);
  border-top: 1px solid var(--border-1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
  color: var(--fg-3);
  font-size: var(--text-xs);
}

@media (width <= 720px) {
  .site-footer__grid { grid-template-columns: 1fr; gap: var(--sp-6); }
}

/* ---------- Hub (root community.leadup.guru/) ---------- */
.hub {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: var(--sp-10) var(--sp-6);
  position: relative;
  isolation: isolate;
}
.hub::before { content: ""; position: absolute; inset: 0; background: var(--grad-glow); z-index: -2; }

.hub::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: var(--grid-size) var(--grid-size);
  -webkit-mask-image: radial-gradient(ellipse 60% 80% at 50% 40%, #000 30%, transparent 80%);
          mask-image: radial-gradient(ellipse 60% 80% at 50% 40%, #000 30%, transparent 80%);
  z-index: -1;
}
.hub__inner { max-width: 720px; text-align: center; }

.hub h1 {
  font-size: clamp(40px, 6vw, 64px);
  margin-bottom: var(--sp-5);
  letter-spacing: var(--tracking-tight);
}
.hub__lead { font-size: var(--text-md); color: var(--fg-2); margin-bottom: var(--sp-10); line-height: 1.6; }

.hub__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--grid-gap);
  text-align: left;
}

.hub__card {
  display: block;
  padding: var(--sp-6);
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--r-2xl);
  color: inherit;
  transition: border-color var(--dur-1) var(--ease), transform var(--dur-2) var(--ease);
}
.hub__card:hover { border-color: var(--teal); transform: translateY(-2px); color: inherit; }

.hub__card-eyebrow {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--teal);
  margin-bottom: var(--sp-3);
}
.hub__card h3 { font-size: var(--text-xl); margin-bottom: var(--sp-2); }
.hub__card p { color: var(--fg-2); font-size: var(--text-sm); line-height: 1.55; }

.hub__card-cta {
  display: inline-flex;
  margin-top: var(--sp-4);
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--teal);
  letter-spacing: var(--tracking-mono);
}

/* ---------- Banner (pending pass / soft warnings) ---------- */
.notice-bar {
  display: none;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-align: center;
  padding: 8px 16px;
  background: var(--warning-tint);
  color: var(--warning);
  border-bottom: 1px solid var(--border-1);
  letter-spacing: var(--tracking-mono);
}
[data-pending-founder-pass="true"] .notice-bar { display: block; }
