:root {
  --obsidian: #111318;
  --obsidian-md: #2D3340;
  --obsidian-lt: #636978;
  --obsidian-xlt: #9EA4B0;
  --parchment: #EAE3D2;
  --linen: #DDD5C0;
  --linen-2: #CFC6AE;
  --prussian: #1A3356;
  --prussian-lt: #253F6A;
  --ember: #7A2614;
  --ember-lt: #9A3A20;
  --blueprint: #C4D4E8;
  --chalk: #F5F2EC;
  --red-clay: #9B3D28;
  --red-clay-lt: #C4522E;
  --red-clay-pale: #F0DDD7;
  --prairie: #B89840;
  --territory: #1A0E08;
  --grid-parch: rgba(155,61,40,0.04);
  --grid-dark: rgba(255,255,255,0.035);
  --f-serif: 'Cormorant Garamond', Georgia, serif;
  --f-sans: 'IBM Plex Sans', sans-serif;
  --f-mono: 'IBM Plex Mono', monospace;
  --f-marker: 'Caveat', cursive;
  --f-caps: 'Big Shoulders Display', sans-serif;
  --section-pad: 120px;
  --inner-max: 1120px;
  --nav-height: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  background: var(--parchment);
  color: var(--obsidian);
  font-family: var(--f-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(var(--grid-parch) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-parch) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  z-index: 0;
}

.inner {
  max-width: var(--inner-max);
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 1;
}

section { position: relative; z-index: 1; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 48px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(26,14,8,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(155,61,40,0.15);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-brand-text {
  font-family: var(--f-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--parchment);
  letter-spacing: -0.02em;
}

.nav-brand-text em {
  font-style: italic;
  font-weight: 600;
}

.nav-brand-sub {
  font-family: var(--f-caps);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember-lt);
  opacity: 0.8;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(234,227,210,0.5);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--parchment); }

.nav-cta {
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--red-clay);
  color: var(--parchment);
  padding: 10px 24px;
  border-radius: 2px;
  transition: all 0.2s;
}

.nav-cta:hover { background: var(--red-clay-lt); }

/* ── Mobile Nav ── */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--red-clay-lt);
  margin: 5px 0;
  transition: all 0.3s;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 100px;
  padding-top: calc(var(--nav-height) + 60px);
  position: relative;
  overflow: hidden;
  background: var(--territory);
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--grid-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-dark) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

/* ── Hero Map Background ── */
.hero-map {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.12;
  filter: grayscale(20%) sepia(40%) contrast(1.1) brightness(0.8) hue-rotate(-10deg);
  mix-blend-mode: lighten;
}

.hero-map::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26,14,8,0.3) 0%,
    rgba(26,14,8,0.05) 25%,
    rgba(26,14,8,0.05) 55%,
    rgba(26,14,8,0.9) 100%
  );
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(155,61,40,0.2) 0%, transparent 65%);
  top: -150px; right: -150px;
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(184,152,64,0.12) 0%, transparent 65%);
  bottom: -100px; left: -100px;
  pointer-events: none;
}

.hero-body {
  position: relative; z-index: 2;
  max-width: var(--inner-max);
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red-clay-lt);
  margin-bottom: 24px;
  opacity: 0.8;
}

.hero-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--red-clay-lt);
}

.hero h1 {
  font-family: var(--f-serif);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--parchment);
  margin-bottom: 28px;
  max-width: 860px;
}

.hero h1 em {
  font-style: italic;
  font-weight: 600;
  color: var(--red-clay-lt);
}

.hero-sub {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(234,227,210,0.6);
  max-width: 560px;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-marker {
  font-family: var(--f-marker);
  font-size: 18px;
  color: var(--ember);
  opacity: 0.6;
  margin-top: 40px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--red-clay);
  color: var(--parchment);
}
.btn-primary:hover { background: var(--red-clay-lt); }

.btn-ember {
  background: var(--ember);
  color: var(--parchment);
}
.btn-ember:hover { background: #5e1d0f; }

.btn-outline-light {
  background: transparent;
  border: 1.5px solid rgba(234,227,210,0.3);
  color: var(--parchment);
}
.btn-outline-light:hover { background: rgba(234,227,210,0.08); border-color: var(--parchment); }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--obsidian);
  color: var(--obsidian);
}
.btn-outline:hover { background: var(--obsidian); color: var(--parchment); }

.btn-prussian {
  background: var(--red-clay);
  color: var(--parchment);
}
.btn-prussian:hover { background: var(--red-clay-lt); }

/* ── Horizon Line ── */
.horizon {
  height: 3px;
  background: linear-gradient(90deg, var(--territory), var(--red-clay), var(--territory));
  position: relative;
  z-index: 1;
}

/* ── Proof Bar ── */
.proof-bar {
  background: var(--territory);
  padding: 36px 48px;
  position: relative;
  z-index: 1;
}

.proof-bar-inner {
  max-width: var(--inner-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.pb-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex: 1;
  min-width: 140px;
}

.pb-num {
  font-family: var(--f-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--parchment);
}

.pb-label {
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-clay-lt);
}

.pb-source {
  font-size: 10px;
  color: rgba(234,227,210,0.3);
}

/* ── Section Backgrounds ── */
.sect-parchment { background: var(--parchment); }
.sect-linen { background: var(--linen); }
.sect-obsidian { background: var(--territory); }
.sect-chalk { background: var(--chalk); }
.sect-prussian { background: var(--territory); }
.sect-pad { padding: var(--section-pad) 0; }

.sect-obsidian::before,
.sect-prussian::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--grid-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-dark) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

/* ── Typography ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--obsidian-lt);
  margin-bottom: 20px;
}

.eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--red-clay);
}

.eyebrow-prussian { color: var(--red-clay); }
.eyebrow-prussian::before { background: var(--red-clay); }

.eyebrow-ember { color: var(--ember); }
.eyebrow-ember::before { background: var(--ember); }

.eyebrow-light { color: var(--red-clay-lt); }
.eyebrow-light::before { background: var(--red-clay-lt); }

.section-heading {
  font-family: var(--f-serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--obsidian);
}

.section-heading em {
  font-style: italic;
  font-weight: 600;
  color: var(--red-clay);
}

.section-heading-light { color: var(--parchment); }
.section-heading-light em { color: var(--red-clay-lt); }

.lead {
  font-family: var(--f-sans);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--obsidian-lt);
  max-width: 560px;
  margin-top: 20px;
}

.lead-light { color: rgba(234,227,210,0.55); }

.marker-text {
  font-family: var(--f-marker);
  color: var(--ember);
  font-weight: 700;
}

/* ── Grid Layouts ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── Cards ── */
.card {
  background: var(--chalk);
  border: 1px solid var(--linen);
  border-radius: 4px;
  padding: 40px;
  position: relative;
}

.card-dark {
  background: #2A1508;
  border-color: rgba(155,61,40,0.2);
}

.card-dark h3, .card-dark h4 {
  font-family: var(--f-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--parchment);
  margin-bottom: 12px;
}

.card-dark p {
  font-size: 15px;
  color: rgba(234,227,210,0.55);
  line-height: 1.7;
}

/* ── Pain Points ── */
.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.pain-marker {
  font-family: var(--f-marker);
  font-size: 32px;
  font-weight: 700;
  color: var(--ember);
  flex-shrink: 0;
  width: 36px;
  text-align: center;
  line-height: 1;
  margin-top: 4px;
}

.pain-text h4 {
  font-family: var(--f-caps);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--obsidian);
}

.pain-text p {
  font-size: 15px;
  color: var(--obsidian-lt);
  line-height: 1.65;
}

/* ── Process Steps ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 22px; left: 0; right: 0;
  height: 1px;
  background: var(--linen);
}

.step { position: relative; z-index: 1; }

.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--parchment);
  border: 1.5px solid var(--red-clay);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--red-clay);
  margin-bottom: 20px;
}

.step h4 {
  font-family: var(--f-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--obsidian);
  margin-bottom: 8px;
}

.step p {
  font-size: 14px;
  color: var(--obsidian-lt);
  line-height: 1.7;
}

/* ── Checklist ── */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--obsidian-lt);
  line-height: 1.6;
}

.check-item::before {
  content: '\2713';
  color: var(--red-clay);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.check-item-light { color: rgba(234,227,210,0.55); }
.check-item-light::before { color: var(--red-clay-lt); }

/* ── Profile Cards ── */
.profile-card {
  background: var(--chalk);
  border: 1px solid var(--linen);
  border-radius: 4px;
  padding: 40px;
}

.profile-card h4 {
  font-family: var(--f-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--obsidian);
  margin-bottom: 12px;
}

.profile-card p {
  font-size: 15px;
  color: var(--obsidian-lt);
  line-height: 1.7;
}

/* ── Outcome Cards ── */
.outcome-card {
  background: var(--chalk);
  border: 1px solid var(--linen);
  border-radius: 4px;
  padding: 32px;
  text-align: center;
}

.outcome-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.outcome-card h4 {
  font-family: var(--f-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--obsidian);
  margin-bottom: 8px;
}

.outcome-card p {
  font-size: 14px;
  color: var(--obsidian-lt);
  line-height: 1.65;
}

/* ── CTA Section ── */
.cta-sect {
  padding: 120px 0;
  text-align: center;
}

.cta-sect .section-heading {
  max-width: 700px;
  margin: 0 auto;
}

.cta-lead {
  font-size: 17px;
  font-weight: 300;
  max-width: 480px;
  margin: 20px auto 40px;
  line-height: 1.75;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Before/After ── */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin: 32px 0;
}

.ba-col { padding: 32px; }
.ba-before { background: var(--linen); border-radius: 4px 0 0 4px; }
.ba-after { background: var(--chalk); border-radius: 0 4px 4px 0; }

.ba-label {
  font-family: var(--f-caps);
  font-size: 14px;
  letter-spacing: 0.14em;
  margin-bottom: 20px;
}

.ba-before .ba-label { color: var(--obsidian-lt); }
.ba-after .ba-label { color: var(--red-clay); }

.ba-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
  color: var(--obsidian-lt);
}

.ba-item::before {
  content: '\2192';
  flex-shrink: 0;
  color: var(--ember);
  font-weight: 600;
}

/* ── Footer ── */
.site-footer {
  background: var(--territory);
  border-top: 1px solid rgba(155,61,40,0.15);
  padding: 48px;
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: var(--inner-max);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-brand-text {
  font-family: var(--f-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--parchment);
  margin-bottom: 8px;
}

.footer-brand-text em { font-style: italic; font-weight: 600; }

.footer-tagline {
  font-family: var(--f-marker);
  font-size: 15px;
  color: var(--ember);
  opacity: 0.6;
  margin-bottom: 12px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(234,227,210,0.3);
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(234,227,210,0.35);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--red-clay-lt); }

.footer-verse {
  font-family: var(--f-serif);
  font-size: 14px;
  font-style: italic;
  color: rgba(234,227,210,0.2);
  max-width: 280px;
  line-height: 1.6;
}

/* ── Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Nav Dropdowns ── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(234,227,210,0.5);
  transition: color 0.2s;
}

.nav-dropdown-trigger:hover { color: var(--parchment); }

.nav-dropdown-trigger svg {
  width: 10px;
  height: 10px;
  transition: transform 0.2s;
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: -16px;
  background: var(--territory);
  border: 1px solid rgba(234,227,210,0.08);
  border-radius: 4px;
  padding: 8px 0;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  z-index: 1001;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(234,227,210,0.55) !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  transition: all 0.15s;
}

.nav-dropdown-menu a:hover {
  background: rgba(155,61,40,0.08);
  color: var(--parchment) !important;
}

/* ── Page Header (inner pages) ── */
.page-header {
  padding: calc(var(--nav-height) + 80px) 0 80px;
  position: relative;
  z-index: 1;
  background: var(--territory);
}

.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--grid-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-dark) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.page-header .inner {
  position: relative;
  z-index: 2;
}

.page-header-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(155,61,40,0.15) 0%, transparent 65%);
  top: -150px; right: -100px;
  pointer-events: none;
}

/* ── Start Here CTA button ── */
.nav-cta-highlight {
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--red-clay);
  color: var(--parchment);
  padding: 10px 24px;
  border-radius: 2px;
  transition: all 0.2s;
}

.nav-cta-highlight:hover { background: var(--red-clay-lt); }

/* ── Events Box ── */
.events-box {
  background: #2A1508;
  border: 1px solid rgba(234,227,210,0.08);
  border-radius: 4px;
  padding: 48px;
  text-align: center;
}

/* ── Service Boxes ── */
.service-box {
  display: block;
  background: var(--chalk);
  border: 1px solid var(--linen);
  border-radius: 4px;
  padding: 36px;
  transition: all 0.25s ease;
  text-decoration: none;
  color: inherit;
}
.service-box:hover {
  border-color: var(--red-clay);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.service-box-icon { font-size: 28px; color: var(--red-clay); margin-bottom: 16px; }
.service-box h4 { font-family: var(--f-serif); font-size: 22px; font-weight: 700; color: var(--obsidian); margin-bottom: 10px; }
.service-box p { font-size: 14px; color: var(--obsidian-lt); line-height: 1.7; margin-bottom: 16px; }
.service-box-link { font-family: var(--f-sans); font-size: 13px; font-weight: 600; color: var(--red-clay); letter-spacing: 0.04em; }
.service-box:hover .service-box-link { color: var(--red-clay-lt); }
.service-box-highlight { background: var(--territory); border-color: rgba(155,61,40,0.3); }
.service-box-highlight h4 { color: var(--parchment); }
.service-box-highlight p { color: rgba(234,227,210,0.55); }
.service-box-highlight .service-box-icon { color: var(--prairie); }
.service-box-highlight .service-box-link { color: var(--red-clay-lt); }
.service-box-highlight:hover { border-color: var(--prairie); }

/* ── Network Pricing ── */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 820px; margin: 0 auto; }
.pricing-card { background: #2A1508; border: 1px solid rgba(155,61,40,0.2); border-radius: 4px; padding: 48px 40px; position: relative; }
.pricing-card-featured { border-color: var(--prairie); }
.pricing-badge { position: absolute; top: -12px; right: 24px; background: var(--prairie); color: var(--territory); font-family: var(--f-sans); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 14px; border-radius: 20px; }
.pricing-tier { font-family: var(--f-sans); font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--obsidian-xlt); margin-bottom: 8px; }
.pricing-name { font-family: var(--f-serif); font-size: 28px; font-weight: 700; color: var(--parchment); margin-bottom: 4px; }
.pricing-tagline { font-size: 14px; color: var(--obsidian-lt); margin-bottom: 28px; }
.pricing-amount { font-family: var(--f-serif); font-size: 52px; font-weight: 700; color: var(--parchment); line-height: 1; }
.pricing-period { font-size: 16px; color: var(--obsidian-lt); margin-left: 4px; }
.pricing-founding { font-size: 13px; color: var(--obsidian-lt); margin-top: 8px; margin-bottom: 28px; }
.pricing-summary { background: rgba(184,152,64,0.1); border-radius: 8px; padding: 12px 16px; font-size: 13px; font-weight: 600; color: var(--prairie); }

/* ── Feature Table ── */
.feature-table { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 4px; overflow: hidden; max-width: 820px; margin: 48px auto 0; }
.feature-table-header { display: grid; grid-template-columns: 1fr 120px 120px; padding: 16px 28px; background: rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.08); }
.feature-table-header span { font-family: var(--f-sans); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.feature-category { padding: 14px 28px 6px; border-top: 1px solid rgba(255,255,255,0.05); font-family: var(--f-sans); font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--prairie); }
.feature-row { display: grid; grid-template-columns: 1fr 120px 120px; padding: 12px 28px; border-bottom: 1px solid rgba(255,255,255,0.03); transition: background 0.15s; }
.feature-row:hover { background: rgba(255,255,255,0.03); }
.feature-row span { font-size: 14px; color: rgba(234,227,210,0.7); }
.feature-check { display: flex; justify-content: center; align-items: center; color: #16a34a; }
.feature-dash { display: flex; justify-content: center; align-items: center; color: var(--obsidian-lt); }

/* ── Horizon Line ── */
.horizon-line { height: 3px; background: linear-gradient(90deg, var(--territory), var(--red-clay), var(--territory)); position: relative; z-index: 1; }

/* ── Pain Cards ── */
.pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.pain-card { background: var(--parchment); border: 1px solid rgba(26,51,86,0.08); border-radius: 4px; padding: 32px; }
.pain-card h4 { font-family: var(--f-sans); font-size: 14px; font-weight: 600; color: var(--obsidian); margin-bottom: 8px; }
.pain-card p { font-size: 14px; color: var(--obsidian-lt); line-height: 1.7; }

/* ── Tool Cards (on dark bg) ── */
.tools-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.tool-card {
  background: rgba(234,227,210,0.04); border: 1px solid rgba(234,227,210,0.1);
  border-radius: 4px; padding: 40px; transition: all 0.3s; text-decoration: none; display: flex; flex-direction: column; gap: 12px;
}
.tool-card:hover { border-color: var(--red-clay-lt); background: rgba(234,227,210,0.08); transform: translateY(-4px); }
.tool-eyebrow { font-family: var(--f-sans); font-size: 10px; font-weight: 500; letter-spacing: 0.22em; color: var(--prairie); }
.tool-card h3 { font-family: var(--f-serif); font-size: 24px; font-weight: 700; color: var(--parchment); }
.tool-card-desc { font-size: 14px; color: rgba(234,227,210,0.7); line-height: 1.7; }
.tool-features { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.tool-feat { font-size: 13px; color: rgba(234,227,210,0.6); line-height: 1.6; padding-left: 16px; position: relative; }
.tool-feat::before { content: '—'; position: absolute; left: 0; color: var(--prairie); opacity: 0.6; }
.tool-trigger { font-family: var(--f-mono); font-size: 11px; color: var(--prairie); margin-top: 8px; }

/* ── How It Works (numbered steps) ── */
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 56px; }
.how-step { text-align: center; }
.how-num {
  width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid var(--obsidian);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-serif); font-size: 18px; font-weight: 700; color: var(--obsidian);
  margin: 0 auto 20px;
}
.how-step h4 { font-family: var(--f-sans); font-size: 15px; font-weight: 600; color: var(--obsidian); margin-bottom: 8px; }
.how-step p { font-size: 14px; color: var(--obsidian-lt); line-height: 1.7; max-width: 280px; margin: 0 auto; }

/* ── Who Cards ── */
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.who-card { background: var(--chalk); border: 1px solid rgba(26,51,86,0.06); border-radius: 4px; padding: 28px 32px; }
.who-card h4 { font-family: var(--f-sans); font-size: 14px; font-weight: 600; color: var(--obsidian); margin-bottom: 6px; }
.who-card p { font-size: 14px; color: var(--obsidian-lt); line-height: 1.7; }

/* ── Before / After ── */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 48px; }
.ba-col { padding: 32px; }
.ba-before { background: rgba(26,51,86,0.04); border-radius: 4px 0 0 4px; }
.ba-after { background: var(--chalk); border-radius: 0 4px 4px 0; }
.ba-label { font-family: var(--f-sans); font-size: 10px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 20px; }
.ba-before .ba-label { color: var(--obsidian-xlt); }
.ba-after .ba-label { color: var(--obsidian); }
.ba-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; line-height: 1.65; margin-bottom: 10px; color: var(--obsidian-lt); }
.ba-before .ba-item::before { content: '—'; flex-shrink: 0; color: var(--obsidian-xlt); }
.ba-after .ba-item::before { content: '→'; flex-shrink: 0; color: var(--red-clay); font-weight: 600; }

/* ── FAQ ── */
.faq-list { max-width: 700px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid rgba(234,227,210,0.1); padding: 24px 0; }
.faq-item:first-child { border-top: 1px solid rgba(234,227,210,0.1); }
.faq-q {
  font-family: var(--f-sans); font-size: 15px; font-weight: 500; color: var(--parchment);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q::after { content: '+'; font-family: var(--f-mono); font-size: 18px; color: var(--prairie); flex-shrink: 0; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  font-size: 14px; font-weight: 300; color: rgba(234,227,210,0.7); line-height: 1.8;
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; padding-top: 0;
}
.faq-item.open .faq-a { max-height: 300px; padding-top: 14px; }

/* ── Guarantee ── */
.guarantee-box {
  background: var(--parchment); border: 1px solid rgba(26,51,86,0.08); border-radius: 4px;
  padding: 48px; text-align: center; max-width: 660px; margin: 0 auto;
}
.guarantee-box h3 { font-family: var(--f-serif); font-size: 28px; font-weight: 700; color: var(--obsidian); margin-bottom: 14px; }
.guarantee-box p { font-size: 15px; color: var(--obsidian-lt); line-height: 1.8; max-width: 480px; margin: 0 auto; }

/* ── Vertical Cards (Who We Serve) ── */
.vertical-card { background: var(--chalk); border: 1px solid var(--linen); border-radius: 4px; padding: 56px 48px; scroll-margin-top: calc(var(--nav-height) + 40px); }
.vertical-card + .vertical-card { margin-top: 32px; }
.vertical-card h3 { font-family: var(--f-serif); font-size: clamp(28px, 3.5vw, 36px); font-weight: 700; color: var(--obsidian); margin-bottom: 16px; line-height: 1.15; }
.vertical-card h3 em { font-style: italic; font-weight: 600; color: var(--red-clay); }
.vertical-card .lead { max-width: 100%; }

/* ── Responsive ── */
@media (max-width: 900px) {
  :root { --section-pad: 80px; }
  .inner { padding: 0 24px; }
  .nav { padding: 0 24px; }
  .hero-body { padding: 0 24px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .tools-grid, .pain-grid, .who-grid, .ba-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; gap: 40px; }
  .ba-before { border-radius: 4px 4px 0 0; }
  .ba-after { border-radius: 0 0 4px 4px; }
  .footer-inner { flex-direction: column; }
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .hero h1 { font-size: clamp(32px, 8vw, 56px); }
  .hero-map img { opacity: 0.08; }
  .pricing-grid { grid-template-columns: 1fr; }
  .feature-table-header, .feature-row { grid-template-columns: 1fr 80px 80px; }
  .site-footer { padding: 32px 24px; }
  .proof-bar { padding: 36px 24px; }
  .proof-bar-inner { justify-content: center; }
}

@media (max-width: 600px) {
  .process-steps { grid-template-columns: 1fr; }
  .pb-stat { min-width: 100px; }
}
