/* ═══════════════════════════════════════
   OPENRIDGE AI — Staging Stylesheet
   ═══════════════════════════════════════ */

:root {
  /* Fonts — CLAUDE.md brand spec */
  --ff-head: 'Playfair Display', Georgia, serif;
  --ff-body: 'IBM Plex Mono', monospace;
  --ff-disp: 'Barlow', sans-serif;

  /* Backgrounds */
  --cream: #F0EDE4;
  --cream-dark: #e8e4db;
  --white: #ffffff;

  /* Dark accents */
  --navy: #0f2034;
  --navy-mid: #1a3a56;
  --forest: #2d5a3d;
  --forest-light: #3d7a52;

  /* Brand accents */
  --gold: #C9A84C;
  --gold-lt: #E2C06A;
  --teal: #22A895;

  /* Text */
  --text: #1a2a38;
  --text-mid: #2e4456;
  --text-muted: #45606f;

  /* Borders */
  --border: rgba(15, 32, 52, 0.1);
  --border-dark: rgba(255, 255, 255, 0.1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* ── LAYOUT ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 48px; }
section { padding: 84px 0; }

/* ── TYPOGRAPHY ── */
h1 {
  font-family: var(--ff-head);
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.12;
  color: var(--navy);
  font-weight: 900;
  margin-bottom: 22px;
}
h1 em { font-style: italic; color: var(--forest); }

h2 {
  font-family: var(--ff-head);
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.18;
  color: var(--navy);
  font-weight: 900;
  margin-bottom: 18px;
}
h2 em { font-style: italic; color: var(--forest); }

h3 {
  font-family: var(--ff-head);
  font-size: 22px;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
}

.section-label {
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 14px;
  display: block;
}

.section-sub {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 52px;
  font-weight: 300;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--navy);
  color: white;
  padding: 14px 28px;
  border-radius: 3px;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary:hover { background: var(--navy-mid); }

.btn-secondary {
  color: var(--text-mid);
  font-family: var(--ff-body);
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
  letter-spacing: 0.04em;
}
.btn-secondary:hover { color: var(--navy); }

.btn-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  display: flex;
  align-items: center;
  height: 64px;
  gap: 28px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
}
.logo img {
  height: 56px;
  width: auto;
}
.logo-text {
  font-family: var(--ff-disp);
  font-weight: 900;
  font-size: 16px;
  color: var(--navy);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--ff-body);
  font-size: 12px;
  color: var(--text-mid);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
  padding-bottom: 2px;
  border-bottom: 1.5px solid transparent;
}
.nav-links a:hover { color: var(--navy); }
.nav-mobile-only { display: none; }
.nav-links a.active {
  color: var(--navy);
  font-weight: 500;
  border-bottom-color: var(--navy);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-linkedin {
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-linkedin:hover { color: var(--navy); }

.nav-cta {
  background: var(--navy);
  color: white;
  border: none;
  padding: 9px 20px;
  border-radius: 3px;
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--navy-mid); }

.nav-login {
  background: var(--forest);
  color: white;
  border: none;
  padding: 9px 20px;
  border-radius: 3px;
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-login:hover { background: var(--forest-light); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  margin: 4px 0;
  transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  background: var(--cream);
  padding: 56px 0 48px;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 14px 5px 9px;
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--forest-light);
  flex-shrink: 0;
}
.hero-sub {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 28px;
  font-weight: 300;
}

/* Mountain visual — v1 framed illustration */
.mountain-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 4;
  background: var(--cream-dark);
  border: 1px solid var(--border);
  overflow: hidden;
}
.mv-frame {
  position: absolute;
  inset: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: linear-gradient(180deg, #E9E4D6 0%, #DDD7C7 55%, #D3CCBB 100%);
}
.mv-sun {
  position: absolute;
  width: 120px;
  height: 120px;
  right: 14%;
  top: 18%;
  background: radial-gradient(circle, rgba(201,168,76,0.55) 0%, rgba(201,168,76,0.18) 40%, rgba(201,168,76,0) 72%);
  border-radius: 50%;
  animation: mv-drift 14s ease-in-out infinite alternate;
}
@keyframes mv-drift {
  0% { transform: translate(0, 0); opacity: 0.7; }
  100% { transform: translate(-12px, -8px); opacity: 0.95; }
}
.mv-mountain {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.mv-m1 { height: 62%; fill: var(--navy); opacity: 0.16; }
.mv-m2 { height: 52%; fill: var(--navy); opacity: 0.34; }
.mv-m3 { height: 42%; fill: var(--navy); opacity: 0.66; }
.mv-m4 { height: 32%; fill: var(--navy); opacity: 1; }
.mv-pixels {
  position: absolute;
  top: 0;
  right: 0;
  width: 58%;
  height: 72%;
  display: grid;
  grid-template-columns: repeat(16, 1fr);
  grid-template-rows: repeat(16, 1fr);
  gap: 2px;
  pointer-events: none;
  mask-image: linear-gradient(225deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 45%, rgba(0,0,0,0) 75%);
  -webkit-mask-image: linear-gradient(225deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 45%, rgba(0,0,0,0) 75%);
}
.mv-pixels span {
  background: var(--navy);
  opacity: 0;
  animation: mv-pix 6s ease-in-out infinite;
}
@keyframes mv-pix {
  0%, 100% { opacity: 0; }
  50% { opacity: 0.5; }
}
.mv-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(15,32,52,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15,32,52,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.mv-label {
  position: absolute;
  bottom: 22px;
  left: 24px;
  right: 24px;
  font-family: var(--ff-body);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  z-index: 2;
}

/* ── PAGE HERO (sub-pages) ── */
.page-hero {
  background: var(--cream);
  padding: 100px 0 60px;
}
.page-hero h1 { margin-bottom: 22px; }
.page-hero p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 38px;
  font-weight: 300;
}

/* ── PILLAR CARDS (Home two-column) ── */
.pillar-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
  cursor: pointer;
  transition: box-shadow 0.25s;
  text-decoration: none;
}
.pillar-row:hover {
  box-shadow: 0 8px 36px rgba(15, 32, 52, 0.09);
}
.pillar-content {
  padding: 48px;
}
.pillar-num {
  font-family: var(--ff-disp);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.pillar-title {
  font-family: var(--ff-head);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
}
.pillar-body {
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 28px;
}
.pillar-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.pillar-tag {
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 11px;
}
.pillar-link {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

/* Navy pillar (Biz Ops) */
.pillar-navy { background: var(--navy); }
.pillar-navy .pillar-num { color: rgba(255, 255, 255, 0.4); }
.pillar-navy .pillar-title { color: white; }
.pillar-navy .pillar-body { color: rgba(255, 255, 255, 0.6); }
.pillar-navy .pillar-tag {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
}
.pillar-navy .pillar-link { color: rgba(255, 255, 255, 0.75); }

/* Forest pillar (Sales Ops) */
.pillar-forest { background: var(--forest); }
.pillar-forest .pillar-num { color: rgba(255, 255, 255, 0.4); }
.pillar-forest .pillar-title { color: white; }
.pillar-forest .pillar-body { color: rgba(255, 255, 255, 0.65); }
.pillar-forest .pillar-tag {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.65);
}
.pillar-forest .pillar-link { color: rgba(255, 255, 255, 0.8); }

/* Pillar info panel (cream side) */
.pillar-info {
  padding: 48px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pillar-info-label {
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.pillar-info-text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
}
.pillar-info-list {
  list-style: none;
  margin-top: 16px;
}
.pillar-info-list li {
  font-size: 13px;
  color: var(--text-mid);
  padding: 8px 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.5;
}
.check { color: var(--forest); font-size: 12px; flex-shrink: 0; margin-top: 2px; }

/* ── PROBLEM CARDS ── */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}
.problem-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 26px;
}
.problem-card-accent {
  border-left: 3px solid;
  border-radius: 0 12px 12px 0;
}
.problem-num {
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.problem-title {
  font-family: var(--ff-head);
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 11px;
  font-weight: 700;
  line-height: 1.35;
}
.problem-body {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── WINDOW TRACK ── */
.window-track {
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 32px;
  margin-top: 28px;
}
.track-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
}
.track-title {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}
.track-note {
  font-size: 11px;
  color: var(--text-muted);
}
.track-bar {
  height: 8px;
  background: rgba(15, 32, 52, 0.1);
  border-radius: 4px;
  position: relative;
  margin-top: 32px;
}
.track-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--forest) 0%, var(--gold) 55%, #c0392b 100%);
  width: 33%;
}
.track-needle {
  position: absolute;
  top: -5px;
  left: 33%;
  width: 2px;
  height: 18px;
  background: var(--navy);
  border-radius: 1px;
}
.track-now-label {
  position: absolute;
  top: -26px;
  left: 26%;
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 600;
  color: var(--navy);
  background: var(--cream-dark);
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid var(--border);
  white-space: nowrap;
}
.track-steps {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
}
.track-step {
  font-family: var(--ff-body);
  font-size: 10px;
  color: var(--text-muted);
}

/* ── PROCESS STEPS ── */
.process-section { background: white; }
.process-steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  margin-top: 52px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.process-step {
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.step-num {
  font-family: var(--ff-disp);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.step-title {
  font-family: var(--ff-head);
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 9px;
  font-weight: 700;
}
.step-body {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── SERVICE CARDS (sub-pages) ── */
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 0;
}
.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}
.service-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 14px;
}
.service-icon-navy { background: rgba(15, 32, 52, 0.08); color: var(--navy); }
.service-icon-forest { background: rgba(45, 90, 61, 0.1); color: var(--forest); }
.service-icon-gold { background: rgba(201, 168, 76, 0.1); color: var(--gold); }
.service-card-title {
  font-family: var(--ff-head);
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 11px;
  font-weight: 700;
  line-height: 1.35;
}
.service-card-body {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── GEO SECTION (Sales Ops) ── */
.geo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ── APPLICATIONS SECTION ── */
.applications-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 36px;
}
.app-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 36px 36px 40px;
  border-left: 4px solid;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
}
.app-card-forest { border-left-color: var(--forest); }
.app-card-navy { border-left-color: var(--navy); }
.app-card-gold { border-left-color: var(--gold); }
.app-label {
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.app-label-forest { color: var(--forest); }
.app-label-navy { color: var(--navy); }
.app-label-gold { color: var(--gold); }
.app-title {
  font-family: var(--ff-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
}
.app-subtitle {
  font-family: var(--ff-head);
  font-size: 15px;
  font-style: italic;
  color: var(--text-mid);
  margin-bottom: 14px;
}
.app-body {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.75;
}
.app-tag {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--ff-body);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  white-space: nowrap;
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--forest);
  padding: 80px 0;
}
.cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.cta-band h2 {
  color: white;
  margin-bottom: 18px;
}
.cta-band h2 em {
  color: rgba(210, 255, 210, 0.8);
}
.cta-band p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cta-btn-primary {
  background: white;
  color: var(--forest);
  padding: 15px 28px;
  border-radius: 4px;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: block;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
}
.cta-btn-primary:hover { opacity: 0.9; }
.cta-btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.82);
  padding: 14px 28px;
  border-radius: 4px;
  font-family: var(--ff-body);
  font-size: 14px;
  text-decoration: none;
  display: block;
  text-align: center;
  cursor: pointer;
  background: none;
  transition: border-color 0.2s;
}
.cta-btn-secondary:hover { border-color: rgba(255, 255, 255, 0.55); }

/* ── SOLUTIONS PAGE — TWO-PILLAR LAYOUT ── */
.solutions-hero {
  background: var(--cream);
  padding: 100px 0 60px;
}
.solutions-hero h1 { margin-bottom: 18px; }
.solutions-hero p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 640px;
  font-weight: 300;
}

.solutions-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.solutions-pillar {
  padding: 64px 48px;
}
.solutions-pillar:first-child {
  border-right: 1px solid var(--border);
}

.pillar-label {
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}
.pillar-label-navy { color: var(--navy); }
.pillar-label-forest { color: var(--forest); }

.pillar-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 36px;
  font-weight: 300;
}

.pillar-service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.pillar-service-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
}
.pillar-service-item h4 {
  font-family: var(--ff-head);
  font-size: 16px;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
.pillar-service-item p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
}

.pillar-process {
  margin-bottom: 32px;
}
.pillar-process-label {
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.pillar-process-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
}
.pillar-process-step:last-child {
  border-bottom: 1px solid var(--border);
}
.pillar-step-num {
  font-family: var(--ff-disp);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
  width: 24px;
}
.pillar-step-text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}
.pillar-step-text strong {
  color: var(--navy);
  font-weight: 600;
}

/* ── SOLUTIONS REDESIGN ── */
.sol-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}
.sol-pillar { padding: 0 40px; }
.sol-pillar:first-child { padding-left: 0; border-right: 1px solid var(--border); }
.sol-pillar:last-child { padding-right: 0; }
.sol-pillar-header { margin-bottom: 36px; }

.sol-feature-group { margin-bottom: 24px; }
.sol-feature-group:last-of-type { margin-bottom: 32px; }
.sol-feature-title {
  font-family: var(--ff-head);
  font-size: 16px;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}
.sol-feature-list { display: flex; flex-direction: column; gap: 8px; }
.sol-feature-item {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 14px 16px;
}
.sol-feature-item strong {
  display: block;
  font-family: var(--ff-body);
  font-size: 13px;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 3px;
}
.sol-feature-item p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
  font-weight: 300;
}

/* Tiers */
.sol-tiers {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}
.sol-tier {
  background: white;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px 24px;
  border-top: 3px solid;
  display: flex;
  flex-direction: column;
}
.sol-tier-navy { border-top-color: var(--navy); }
.sol-tier-forest { border-top-color: var(--forest); }
.sol-tier-gold { border-top-color: var(--gold); }
.sol-tier-badge {
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.sol-tier-name {
  font-family: var(--ff-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.2;
}
.sol-tier-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin-bottom: 24px;
}
.sol-tier-item {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.55;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-weight: 300;
}
.sol-tier-tag {
  font-family: var(--ff-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 3px;
  flex-shrink: 0;
  margin-top: 1px;
}
.sol-tier-tag-ops { background: rgba(15, 32, 52, 0.08); color: var(--navy); }
.sol-tier-tag-vis { background: rgba(45, 90, 61, 0.08); color: var(--forest); }
.sol-tier-price-label {
  font-family: var(--ff-body);
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.sol-tier-price {
  font-family: var(--ff-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.2;
}
.sol-tier-price-note {
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
}
.sol-tier-timeline {
  font-family: var(--ff-body);
  font-size: 11px;
  color: var(--text-muted);
}

/* Verticals */
.sol-verticals {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}
.sol-vertical {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.sol-vertical-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sol-vertical-icon-navy { background: rgba(15, 32, 52, 0.08); color: var(--navy); }
.sol-vertical-icon-forest { background: rgba(45, 90, 61, 0.08); color: var(--forest); }
.sol-vertical-icon-gold { background: rgba(201, 168, 76, 0.12); color: var(--gold); }
.sol-vertical-text { flex: 1; }
.sol-vertical-name {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 4px;
}
.sol-vertical-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.55;
  font-weight: 300;
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 56px 0 36px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 36px;
}
.footer-brand-name {
  font-family: var(--ff-disp);
  font-size: 16px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.38);
}
.footer-col h4 {
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  margin-bottom: 10px;
  cursor: pointer;
  transition: color 0.2s;
}
.footer-col a:hover { color: rgba(255, 255, 255, 0.8); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  font-family: var(--ff-body);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.24);
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.24);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom a:hover { color: rgba(255, 255, 255, 0.6); }
.footer-bottom-contact {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-bottom-contact span {
  color: rgba(255, 255, 255, 0.16);
}

/* ── HERO TRUST LINE ── */
.hero-trust {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 22px;
  font-weight: 300;
}

/* ── NAV PHONE ── */
.nav-phone {
  font-family: var(--ff-body);
  font-size: 11px;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-phone:hover { color: var(--navy); }

/* ── SOCIAL PROOF ── */
.social-proof {
  background: var(--navy);
  padding: 40px 0;
}
.proof-heading {
  color: white;
  margin-bottom: 24px;
}
.proof-heading em { color: var(--gold-lt); }
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
}
.proof-card {
  background: var(--navy);
  padding: 36px 32px;
}
.proof-stat {
  font-family: var(--ff-head);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}
.proof-stat-teal { color: var(--teal); }
.proof-stat-muted { color: rgba(255, 255, 255, 0.55); }
.proof-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  margin-bottom: 14px;
}
.proof-source {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.06em;
}

/* ── PILLAR AUDIT CTA ── */
.pillar-audit-cta {
  text-align: center;
  padding: 32px 0 40px;
}
.pillar-audit-cta p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 18px;
  font-weight: 300;
}

/* ── BRIDGE ── */
.bridge {
  background: var(--cream);
  border-left: 3px solid var(--forest);
  border-radius: 0 4px 4px 0;
  padding: 36px 40px;
  margin: 40px 0;
}
.bridge h2 {
  font-size: clamp(22px, 2.5vw, 28px);
  margin-bottom: 14px;
}
.bridge p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.85;
  max-width: 640px;
  font-weight: 300;
}

/* ── FOUNDERS ── */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 36px;
  margin-bottom: 40px;
}
.founder-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px;
}
.founder-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(100%);
  margin-bottom: 18px;
  border: 1px solid var(--border);
}
.founder-name {
  font-family: var(--ff-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.founder-role {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.founder-bio {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 16px;
}
.founder-lead {
  font-size: 13px;
  color: var(--text);
  line-height: 1.75;
  font-weight: 400;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.founders-closing {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 720px;
  font-weight: 300;
  font-style: italic;
}

/* ── FAQ ── */
.faq-item {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}
.faq-item-last {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  font-family: var(--ff-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.faq-answer {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.75;
}

/* FAQ Tier 2 */
.faq-tier-2-label {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.faq-item-small {
  border-top: 1px solid var(--border);
  padding: 18px 0;
}
.faq-item-small-last {
  border-bottom: 1px solid var(--border);
}
.faq-question-small {
  font-family: var(--ff-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.faq-answer-small {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── CTA PHONE ── */
.cta-phone {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin-top: 4px;
}
.cta-phone a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.cta-phone a:hover { color: white; }

/* ── PRACTICE CARDS (Stitch-style side-by-side) ── */
.practices-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  margin-bottom: 48px;
}
.practices-header-sub {
  font-size: 14px;
  color: var(--text-mid);
  max-width: 380px;
  line-height: 1.75;
  font-weight: 300;
  margin: 0;
}
.practices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.practice-card {
  padding: 48px;
  text-decoration: none;
  color: inherit;
  transition: all 0.35s;
  display: flex;
  flex-direction: column;
}
.practice-card:hover { opacity: 0.95; }
.practice-card-light {
  background: var(--cream);
  border: 1px solid var(--border);
  border-right: none;
}
.practice-card-dark {
  background: var(--navy);
}
.practice-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}
.practice-num {
  font-family: var(--ff-body);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.practice-card-light .practice-num { color: var(--text-muted); }
.practice-card-dark .practice-num { color: rgba(255, 255, 255, 0.35); }
.practice-title {
  font-family: var(--ff-head);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.2;
}
.practice-card-light .practice-title { color: var(--navy); }
.practice-card-dark .practice-title { color: white; }
.practice-body {
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 28px;
  font-weight: 300;
}
.practice-card-light .practice-body { color: var(--text-mid); }
.practice-card-dark .practice-body { color: rgba(255, 255, 255, 0.72); }
.practice-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  flex: 1;
}
.practice-list li {
  font-family: var(--ff-body);
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.practice-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  flex-shrink: 0;
}
.practice-card-light .practice-list li { color: var(--text); border-top: 1px solid var(--border); }
.practice-card-light .practice-list li::before { background: var(--forest); }
.practice-card-dark .practice-list li { color: rgba(255, 255, 255, 0.8); border-top: 1px solid rgba(255, 255, 255, 0.1); }
.practice-card-dark .practice-list li::before { background: var(--gold); }
.practice-link {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
}
.practice-card-light .practice-link { color: var(--forest); }
.practice-card-dark .practice-link { color: var(--gold); }

/* ── EDITORIAL TIMELINE (Stitch-style protocol) ── */
.protocol-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
}
.protocol-sticky {
  position: sticky;
  top: 96px;
}
.protocol-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 24px;
}
.editorial-rule {
  height: 1px;
  background: linear-gradient(to right, var(--navy) 0%, transparent 100%);
}
.protocol-right {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.protocol-step {
  position: relative;
}
.protocol-step-num {
  font-family: var(--ff-disp);
  font-size: 32px;
  font-weight: 300;
  color: rgba(15, 32, 52, 0.2);
  display: block;
  margin-bottom: 12px;
}
.protocol-step-title {
  font-family: var(--ff-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.protocol-step-body {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
}

/* ── CORNERSTONE GRID ── */
.cornerstone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 36px;
}

/* ── ABOUT PAGE ── */
.about-hero {
  position: relative;
  background: #0A0A12;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 48px 80px;
  text-shadow: 0 2px 20px rgba(10, 10, 18, 0.7), 0 0 60px rgba(10, 10, 18, 0.5);
}
.about-hero-eyebrow {
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 24px;
}
.about-hero-headline {
  font-family: var(--ff-head);
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.15;
  color: #F0EDE4;
  font-weight: 900;
  max-width: 720px;
}
.about-hero-headline em {
  font-style: italic;
  color: var(--gold-lt);
}
.about-hero-cta {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.about-hero-btn {
  background: var(--gold);
  color: #0A0A12;
  padding: 18px 44px;
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.2s;
  border-radius: 3px;
}
.about-hero-btn:hover { opacity: 0.88; }
.about-hero-cta-links {
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-hero-cta-secondary {
  color: rgba(240, 237, 228, 0.65);
  font-family: var(--ff-body);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s;
}
.about-hero-cta-secondary:hover { color: #F0EDE4; }
.about-hero-cta-divider {
  color: rgba(240, 237, 228, 0.25);
  font-size: 14px;
}
.about-hero canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.about-firm {
  background: var(--cream);
  padding: 84px 0;
}
.about-firm-lead {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 0;
  font-weight: 300;
}
.about-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.about-duo-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.25s;
}
.about-duo-card:hover {
  box-shadow: 0 8px 36px rgba(15, 32, 52, 0.09);
}
.about-duo-num {
  font-family: var(--ff-disp);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.about-duo-kicker {
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 14px;
}
.about-duo-title {
  font-family: var(--ff-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 10px;
}
.about-duo-title em {
  font-style: italic;
  color: var(--forest);
}
.about-duo-body {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.75;
  margin: 0 0 20px;
}
.about-duo-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.about-duo-list li {
  font-size: 12px;
  color: var(--text-mid);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.02em;
}
.about-duo-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--forest);
  flex-shrink: 0;
}
.about-duo-card-dark {
  background: var(--navy);
  border-color: rgba(255, 255, 255, 0.08);
}
.about-duo-card-dark .about-duo-num { color: rgba(255, 255, 255, 0.3); }
.about-duo-card-dark .about-duo-kicker { color: var(--gold); }
.about-duo-card-dark .about-duo-title { color: white; }
.about-duo-card-dark .about-duo-title em { color: var(--gold-lt); }
.about-duo-card-dark .about-duo-body { color: rgba(255, 255, 255, 0.6); }
.about-duo-card-dark .about-duo-list { border-top-color: rgba(255, 255, 255, 0.1); }
.about-duo-card-dark .about-duo-list li { color: rgba(255, 255, 255, 0.55); }
.about-duo-card-dark .about-duo-list li::before { background: var(--gold); }
.about-founders {
  background: var(--cream);
  padding: 0 0 84px;
}
.about-founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}
.about-founder-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px;
}
.about-founder-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(100%);
  margin-bottom: 18px;
  border: 1px solid var(--border);
}
.about-founder-name {
  font-family: var(--ff-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.about-founder-role {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.about-founder-cred {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
  font-weight: 300;
}
.about-founder-bio {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-founder-lead {
  font-size: 13px;
  color: var(--text);
  line-height: 1.75;
  font-weight: 400;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.about-cta {
  background: var(--navy);
  padding: 96px 0;
  text-align: center;
}
.about-cta-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 48px;
}
.about-cta-eyebrow {
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
}
.about-cta-headline {
  font-family: var(--ff-head);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 900;
  color: #F0EDE4;
  margin-bottom: 36px;
}
.about-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.about-cta-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 16px 36px;
  border-radius: 3px;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.2s;
  letter-spacing: 0.04em;
}
.about-cta-primary:hover { opacity: 0.9; }
.about-cta-secondary {
  color: rgba(240, 237, 228, 0.7);
  font-family: var(--ff-body);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}
.about-cta-secondary:hover { color: #F0EDE4; }
.about-cta-phone {
  font-size: 12px;
  color: rgba(240, 237, 228, 0.4);
  margin-top: 8px;
}
.about-cta-phone a {
  color: rgba(240, 237, 228, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.about-cta-phone a:hover { color: #F0EDE4; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  /* Layout */
  .container { padding: 0 24px; }
  section { padding: 48px 0; }

  /* Nav */
  nav { padding: 0 16px; }
  .logo img { height: 44px; }
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-login { display: none; }
  .nav-toggle { display: block; margin-left: auto; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 24px;
    gap: 20px;
    z-index: 99;
  }
  .nav-mobile-only { display: block; }
  .nav-right { gap: 10px; }
  .nav-cta { padding: 8px 14px; font-size: 10px; }

  /* Hero */
  .hero { padding: 36px 0 28px; }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 28px;
  }
  .hero-sub { margin-bottom: 24px; }
  .mountain-visual { aspect-ratio: 4 / 3; }
  .page-hero { padding: 80px 0 48px; }

  /* Social proof */
  .social-proof { padding: 32px 0; }
  .proof-heading { font-size: 24px; margin-bottom: 18px; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-card { padding: 24px; }
  .proof-stat { font-size: 36px; }

  /* Pillars */
  .pillar-row { grid-template-columns: 1fr; }
  .pillar-content { padding: 32px 24px; }
  .pillar-info { padding: 28px 24px; }
  .pillar-title { font-size: 20px; }
  .pillar-audit-cta { padding: 24px 0 32px; }

  /* Practice cards */
  .practices-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .practices-grid { grid-template-columns: 1fr; }
  .practice-card { padding: 32px 24px; }
  .practice-card-light { border-right: 1px solid var(--border); border-bottom: none; }
  .practice-title { font-size: 24px; }

  /* Protocol timeline */
  .protocol-grid { grid-template-columns: 1fr; gap: 36px; }
  .protocol-sticky { position: static; }

  /* Bridge */
  .bridge { padding: 24px 20px; margin: 28px 0; }
  .bridge h2 { font-size: 20px; }

  /* Process steps */
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .process-steps::before { display: none; }
  .process-step { padding: 0; }

  /* Cornerstone Economy */
  .cornerstone-grid { grid-template-columns: 1fr; gap: 28px; }

  /* Founders */
  .founder-grid { grid-template-columns: 1fr; }
  .founder-card { padding: 24px; }

  /* Why Now */
  .problem-grid { grid-template-columns: 1fr; }
  .track-steps { flex-wrap: wrap; gap: 8px; }

  /* Applications */
  .app-card { grid-template-columns: 1fr; }

  /* FAQ */
  .faq-question { font-size: 15px; }

  /* CTA band */
  .cta-band { padding: 48px 0; }
  .cta-inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 28px;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    padding: 0 24px;
    gap: 28px;
  }
  .footer-bottom {
    padding: 20px 24px 0;
    flex-direction: column;
    gap: 8px;
  }
  .footer-bottom-contact { flex-direction: column; gap: 4px; }
  .footer-bottom-contact span { display: none; }

  /* Sub-page grids */
  .service-grid { grid-template-columns: 1fr; }
  .geo-grid { grid-template-columns: 1fr; }
  .solutions-pillars { grid-template-columns: 1fr; }
  .solutions-pillar:first-child { border-right: none; border-bottom: 1px solid var(--border); }
  .solutions-pillar { padding: 48px 24px; }
  .sol-features { grid-template-columns: 1fr; padding: 0 24px; }
  .sol-pillar { padding: 0; }
  .sol-pillar:first-child { border-right: none; border-bottom: 1px solid var(--border); padding: 0 0 40px; }
  .sol-pillar:last-child { padding: 40px 0 0; }
  .sol-tiers { grid-template-columns: 1fr; padding: 0 24px; }
  .sol-verticals { grid-template-columns: 1fr 1fr; padding: 0 24px; }

  /* About page */
  .about-hero { min-height: 400px; }
  .about-hero-content { padding: 80px 24px 60px; }
  .about-duo { grid-template-columns: 1fr; }
  .about-founder-grid { grid-template-columns: 1fr; }
  .about-cta { padding: 64px 0; }
  .about-cta-inner { padding: 0 24px; }
}

/* Small mobile */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  nav { padding: 0 12px; }

  .hero { padding: 28px 0 20px; }
  .hero-inner { padding: 0 16px; gap: 20px; }
  h1 { font-size: 32px; }
  .mountain-visual { aspect-ratio: 4 / 3; }
  .mv-frame { inset: 10px; }

  .social-proof { padding: 24px 0; }
  .proof-heading { font-size: 22px; }
  .proof-card { padding: 20px 16px; }
  .proof-stat { font-size: 32px; }

  .pillar-content { padding: 24px 20px; }
  .pillar-info { padding: 24px 20px; }

  .bridge { padding: 20px 16px; }

  .founder-card { padding: 20px; }
  .founder-photo { width: 64px; height: 64px; }

  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { padding: 16px 16px 0; }

  .sol-verticals { grid-template-columns: 1fr; padding: 0 16px; }

  /* About page */
  .about-hero { min-height: 360px; }
  .about-hero-content { padding: 72px 16px 48px; }
  .about-firm { padding: 48px 0; }
  .about-founders { padding: 0 0 48px; }
  .about-cta { padding: 48px 0; }
  .about-cta-inner { padding: 0 16px; }
}
