:root {
  --southgrove-blue: #2f3c48;
  --southgrove-green: #2ca189;
  --southgrove-teal: #35b7a1;
  --southgrove-soft: #f7f6f4;
  --southgrove-white: #ffffff;
  --ink: var(--southgrove-blue);
  --muted: rgba(47, 60, 72, 0.68);
  --line: rgba(47, 60, 72, 0.14);
  --shadow: 0 24px 70px rgba(31, 42, 51, 0.14);
  --radius: 8px;
  --header-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Poppins", Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--southgrove-soft);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 1000;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  padding: 12px 18px;
  background: var(--southgrove-white);
  color: var(--southgrove-blue);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(47, 60, 72, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.nav-shell,
.section-inner {
  width: calc(100% - 40px);
  max-width: 1160px;
  margin: 0 auto;
}

.nav-shell {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 178px;
  height: auto;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 3px;
  transform: rotate(0deg);
}

.brand-mark span {
  background: var(--southgrove-teal);
  border-radius: 3px;
}

.brand-mark span:nth-child(2) {
  background: var(--southgrove-green);
  grid-column: 2;
  grid-row: 1 / 3;
}

.brand-mark span:nth-child(3) {
  grid-column: 3;
  grid-row: 2;
}

.brand-mark span:nth-child(4) {
  background: var(--southgrove-blue);
  border: 1px solid rgba(53, 183, 161, 0.7);
  grid-column: 1 / 3;
  grid-row: 3;
}

.brand-mark span:nth-child(5) {
  grid-column: 3;
  grid-row: 3;
}

.site-header .brand-mark span:nth-child(4),
.site-footer .brand-mark span:nth-child(4) {
  background: rgba(255, 255, 255, 0.08);
}

.brand-text {
  display: grid;
  gap: 0;
  color: var(--southgrove-white);
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.05;
  font-weight: 700;
}

.brand-text span:last-child {
  color: var(--southgrove-teal);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-links a:not(.btn) {
  position: relative;
  transition: color 180ms ease;
}

.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--southgrove-teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--southgrove-white);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--southgrove-white);
  padding: 10px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.93rem;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  border: 1px solid transparent;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--southgrove-white);
  background: var(--southgrove-green);
  box-shadow: 0 16px 34px rgba(44, 161, 137, 0.26);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--southgrove-teal);
}

.btn-secondary {
  color: var(--southgrove-white);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.07);
}

.btn-small {
  min-height: 40px;
  padding: 10px 15px;
  font-size: 0.84rem;
}

.section,
.hero,
.final-cta {
  position: relative;
  overflow: hidden;
}

.section {
  padding: 96px 0;
}

.hero {
  padding: 154px 0 98px;
}

.dark-section {
  color: var(--southgrove-white);
  background: var(--southgrove-blue);
}

.light-section {
  background: var(--southgrove-white);
}

.soft-section {
  background: var(--southgrove-soft);
}

.data-grid {
  position: absolute;
  inset: 0;
  opacity: 0.36;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 72% 30%, #000 0, transparent 62%);
}

.node-network {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background:
    radial-gradient(circle at 16% 22%, rgba(53, 183, 161, 0.72) 0 3px, transparent 4px),
    radial-gradient(circle at 36% 60%, rgba(255, 255, 255, 0.72) 0 2px, transparent 3px),
    radial-gradient(circle at 74% 24%, rgba(53, 183, 161, 0.72) 0 3px, transparent 4px),
    radial-gradient(circle at 88% 68%, rgba(255, 255, 255, 0.62) 0 2px, transparent 3px),
    linear-gradient(118deg, transparent 0 18%, rgba(255, 255, 255, 0.12) 18.1% 18.3%, transparent 18.4% 100%),
    linear-gradient(32deg, transparent 0 48%, rgba(53, 183, 161, 0.18) 48.1% 48.3%, transparent 48.4% 100%);
}

.pixel-grove {
  position: absolute;
  width: 220px;
  height: 180px;
  opacity: 0.28;
  background:
    linear-gradient(var(--southgrove-teal), var(--southgrove-teal)) 20px 40px / 18px 18px no-repeat,
    linear-gradient(var(--southgrove-green), var(--southgrove-green)) 48px 66px / 24px 24px no-repeat,
    linear-gradient(var(--southgrove-teal), var(--southgrove-teal)) 86px 26px / 18px 18px no-repeat,
    linear-gradient(var(--southgrove-green), var(--southgrove-green)) 112px 54px / 30px 30px no-repeat,
    linear-gradient(var(--southgrove-teal), var(--southgrove-teal)) 150px 92px / 20px 20px no-repeat,
    linear-gradient(var(--southgrove-green), var(--southgrove-green)) 70px 118px / 44px 16px no-repeat;
}

.hero-pixels {
  right: 2%;
  top: 130px;
}

.final-pixels {
  right: 10%;
  bottom: 22px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: 64px;
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--southgrove-teal);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 6.2vw, 5.45rem);
  line-height: 0.99;
  letter-spacing: 0;
  font-weight: 700;
  max-width: 820px;
  overflow-wrap: normal;
}

h2 {
  margin-bottom: 18px;
  color: var(--southgrove-blue);
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 600;
}

.dark-section h2,
.final-cta h2 {
  color: var(--southgrove-white);
}

h3 {
  color: var(--southgrove-blue);
  font-size: 1.08rem;
  line-height: 1.3;
  font-weight: 600;
}

.dark-section h3 {
  color: var(--southgrove-white);
}

p {
  color: var(--muted);
  font-size: 1rem;
}

.dark-section p {
  color: rgba(255, 255, 255, 0.76);
}

.hero-subhead {
  max-width: 740px;
  color: rgba(255, 255, 255, 0.87);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.55;
}

.hero-support {
  max-width: 710px;
  margin: 30px 0 0;
  padding-left: 22px;
  border-left: 2px solid rgba(53, 183, 161, 0.62);
}

.hero-support p:last-child {
  margin-bottom: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-visual {
  min-width: 0;
  max-width: 100%;
}

.hero-visual svg {
  filter: drop-shadow(0 28px 70px rgba(0, 0, 0, 0.26));
}

.program-map {
  filter: drop-shadow(0 28px 70px rgba(0, 0, 0, 0.26));
}

.program-frame {
  fill: rgba(247, 246, 244, 0.055);
  stroke: rgba(255, 255, 255, 0.16);
}

.program-grid path {
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1;
}

.program-corridor path {
  fill: none;
  stroke: url(#programGreen);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-opacity: 0.72;
}

.program-corridor path:last-child {
  stroke: rgba(255, 255, 255, 0.28);
  stroke-width: 2;
}

.governance-gates rect,
.executive-output rect,
.reporting-cadence rect {
  fill: rgba(255, 255, 255, 0.08);
  stroke: rgba(255, 255, 255, 0.22);
}

.governance-gates path,
.executive-output path,
.reporting-cadence path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.68);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reporting-cadence path:last-child {
  stroke: var(--southgrove-teal);
}

.milestone-nodes circle,
.governance-gates circle,
.executive-output circle,
.reporting-cadence circle {
  fill: var(--southgrove-teal);
}

.governance-gates circle {
  stroke: rgba(255, 255, 255, 0.84);
  stroke-width: 2;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 46px;
}

.section-heading p,
.split-section p,
.sample-grid p {
  font-size: 1.05rem;
}

.section-heading.narrow {
  max-width: 720px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.symptom-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.symptom-list li {
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--southgrove-soft);
  color: var(--southgrove-blue);
  font-size: 0.93rem;
  font-weight: 500;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.deliverables-grid {
  grid-template-columns: repeat(3, 1fr);
}

.insight-card,
.process-card,
.scope-panel,
.contrast-panel,
.approach-graphic,
.mid-cta,
.faq-item {
  border-radius: var(--radius);
}

.insight-card {
  min-height: 238px;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--southgrove-white);
  box-shadow: 0 14px 40px rgba(47, 60, 72, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.insight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(44, 161, 137, 0.38);
  box-shadow: var(--shadow);
}

.insight-card p {
  margin-bottom: 0;
}

.icon-shell {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: var(--radius);
  background-color: rgba(53, 183, 161, 0.1);
  border: 1px solid rgba(53, 183, 161, 0.24);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 42px 42px;
}

.icon-fragility {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%232F3C48' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 25l-5 5a9 9 0 0013 13l5-5'/%3E%3Cpath d='M42 39l5-5A9 9 0 0034 21l-5 5'/%3E%3Cpath d='M27 37l10-10' stroke='%232CA189'/%3E%3Cpath d='M22 14l4 8M42 50l-4-8'/%3E%3C/svg%3E");
}

.icon-visibility {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%232F3C48' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 32s10-16 26-16 26 16 26 16-10 16-26 16S6 32 6 32z'/%3E%3Ccircle cx='32' cy='32' r='8'/%3E%3Cpath d='M28 29h8M28 35h5' stroke='%232CA189'/%3E%3Ccircle cx='46' cy='24' r='3' fill='%2335B7A1' stroke='%2335B7A1'/%3E%3C/svg%3E");
}

.icon-burden {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%232F3C48' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 14h22l8 8v28H18z'/%3E%3Cpath d='M40 14v9h8M24 31h15M24 39h12'/%3E%3Ccircle cx='22' cy='45' r='10' fill='%23F7F6F4'/%3E%3Cpath d='M22 39v7l5 3' stroke='%232CA189'/%3E%3C/svg%3E");
}

.icon-dashboard {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%232F3C48' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='10' y='14' width='44' height='36' rx='5'/%3E%3Cpath d='M10 24h44M18 34h10M18 42h16M38 43l4-7 4 3 4-9' stroke='%232CA189'/%3E%3C/svg%3E");
}

.icon-governance {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%232F3C48' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M32 8l18 7v13c0 13-8 22-18 28-10-6-18-15-18-28V15z'/%3E%3Cpath d='M24 32l5 5 11-13' stroke='%232CA189'/%3E%3Cpath d='M24 45h16'/%3E%3C/svg%3E");
}

.icon-cadence {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%232F3C48' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='12' y='14' width='40' height='38' rx='5'/%3E%3Cpath d='M20 10v8M44 10v8M12 25h40M24 37l5 5 11-12' stroke='%232CA189'/%3E%3Cpath d='M48 42a16 16 0 01-28 7'/%3E%3C/svg%3E");
}

.icon-pack {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%232F3C48' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 14h28v36H18zM24 22h16M24 31h12M24 40h16'/%3E%3Cpath d='M12 20h6M46 20h6M12 44h6M46 44h6' stroke='%232CA189'/%3E%3C/svg%3E");
}

.icon-design {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%232F3C48' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='10' y='12' width='16' height='16' rx='3'/%3E%3Crect x='38' y='12' width='16' height='16' rx='3'/%3E%3Crect x='24' y='38' width='16' height='16' rx='3'/%3E%3Cpath d='M26 20h12M46 28l-8 10M18 28l8 10'/%3E%3Cpath d='M14 48h10M40 48h10' stroke='%232CA189'/%3E%3C/svg%3E");
}

.icon-continuity {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%232F3C48' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 24a12 12 0 0120-4l4 4M42 40a12 12 0 01-20 4l-4-4'/%3E%3Cpath d='M46 24h-9M18 40h9'/%3E%3Ccircle cx='32' cy='32' r='5' stroke='%232CA189'/%3E%3C/svg%3E");
}

.icon-diagnostic {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%232F3C48' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='27' cy='27' r='14'/%3E%3Cpath d='M38 38l12 12M20 27h14M27 20v14'/%3E%3Cpath d='M18 48h14l4-6 4 10 4-8h6' stroke='%232CA189'/%3E%3C/svg%3E");
}

.icon-pilot {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%232F3C48' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='12' y='14' width='40' height='34' rx='4'/%3E%3Cpath d='M12 24h40M22 34h9M22 40h16M39 34h5'/%3E%3Cpath d='M18 54h28M32 48v6' stroke='%232CA189'/%3E%3C/svg%3E");
}

.icon-managed {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%232F3C48' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='14' y='15' width='36' height='34' rx='5'/%3E%3Cpath d='M22 25h20M22 34h11M22 43h16'/%3E%3Cpath d='M48 27a13 13 0 01-20 15M16 37a13 13 0 0120-15' stroke='%232CA189'/%3E%3C/svg%3E");
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 52px;
  align-items: start;
}

.contrast-panel {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
}

.panel-label {
  margin-bottom: 14px;
  color: var(--southgrove-teal) !important;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem !important;
}

.contrast-panel li {
  position: relative;
  padding: 13px 0 13px 24px;
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contrast-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 23px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--southgrove-teal);
}

.panel-close {
  margin: 22px 0 0;
  color: var(--southgrove-white) !important;
  font-weight: 600;
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  top: 68px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--southgrove-green), transparent);
}

.process-card {
  position: relative;
  min-height: 430px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--southgrove-white);
  box-shadow: 0 14px 36px rgba(47, 60, 72, 0.08);
}

.step-number {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--southgrove-green);
  font-weight: 700;
  font-size: 0.86rem;
}

.process-card ul,
.scope-panel ul {
  display: grid;
  gap: 8px;
}

.process-card li,
.scope-panel li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.93rem;
}

.process-card li::before,
.scope-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--southgrove-green);
}

.goal-line {
  margin-top: 22px;
  color: var(--southgrove-blue);
  font-weight: 600;
}

.mid-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 22px;
  padding: 24px;
  background: var(--southgrove-blue);
  color: var(--southgrove-white);
}

.mid-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.sample-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: 54px;
  align-items: start;
}

.approach-graphic {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  min-height: 380px;
  padding: 18px;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(47, 60, 72, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 60, 72, 0.04) 1px, transparent 1px),
    var(--southgrove-soft);
  background-size: 32px 32px;
}

.approach-graphic::before,
.approach-graphic::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 28px;
  height: 2px;
  background: var(--southgrove-green);
}

.approach-graphic::before {
  left: 32%;
}

.approach-graphic::after {
  right: 32%;
}

.approach-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--southgrove-white);
  border-radius: var(--radius);
  z-index: 1;
}

.approach-column.featured {
  color: var(--southgrove-white);
  background: var(--southgrove-blue);
  border-color: rgba(47, 60, 72, 0.5);
}

.approach-column span {
  color: var(--southgrove-green);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.approach-column strong {
  color: var(--southgrove-blue);
  font-size: 0.94rem;
  font-weight: 600;
}

.approach-column.featured strong {
  color: var(--southgrove-white);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.proof-card {
  min-height: 338px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--southgrove-white);
  box-shadow: 0 14px 36px rgba(47, 60, 72, 0.08);
}

.proof-card > span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--southgrove-green);
  font-size: 0.82rem;
  font-weight: 700;
}

.proof-card h3 {
  min-height: 54px;
}

.proof-card p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.pack-visual,
.kpi-visual,
.milestone-visual,
.cadence-visual {
  position: relative;
  height: 92px;
  margin: 18px 0;
  border: 1px solid rgba(47, 60, 72, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(47, 60, 72, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 60, 72, 0.045) 1px, transparent 1px),
    var(--southgrove-soft);
  background-size: 22px 22px;
  overflow: hidden;
}

.pack-visual i,
.kpi-visual i,
.milestone-visual i,
.cadence-visual i {
  position: absolute;
  display: block;
  border-radius: 4px;
  background: var(--southgrove-white);
  border: 1px solid rgba(47, 60, 72, 0.14);
}

.pack-visual i:nth-child(1) {
  left: 16px;
  top: 16px;
  width: 62px;
  height: 18px;
  background: rgba(53, 183, 161, 0.18);
}

.pack-visual i:nth-child(2) {
  left: 16px;
  top: 44px;
  width: 104px;
  height: 10px;
}

.pack-visual i:nth-child(3) {
  left: 16px;
  top: 62px;
  width: 74px;
  height: 10px;
}

.pack-visual i:nth-child(4) {
  right: 14px;
  top: 18px;
  width: 42px;
  height: 56px;
  background: rgba(47, 60, 72, 0.1);
}

.kpi-visual i {
  left: 18px;
  width: calc(100% - 36px);
  height: 12px;
}

.kpi-visual i:nth-child(1) {
  top: 22px;
}

.kpi-visual i:nth-child(2) {
  top: 42px;
}

.kpi-visual i:nth-child(3) {
  top: 62px;
  background: rgba(53, 183, 161, 0.18);
}

.milestone-visual::before,
.cadence-visual::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 46px;
  height: 2px;
  background: rgba(47, 60, 72, 0.24);
}

.milestone-visual i {
  top: 36px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--southgrove-white);
}

.milestone-visual i:nth-child(1) {
  left: 22px;
}

.milestone-visual i:nth-child(2) {
  left: 34%;
  border-color: rgba(53, 183, 161, 0.7);
}

.milestone-visual i:nth-child(3) {
  left: 62%;
}

.milestone-visual i:nth-child(4) {
  right: 22px;
  background: rgba(53, 183, 161, 0.2);
}

.cadence-visual i {
  top: 28px;
  width: 34px;
  height: 34px;
}

.cadence-visual i:nth-child(1) {
  left: 16px;
}

.cadence-visual i:nth-child(2) {
  left: 33%;
}

.cadence-visual i:nth-child(3) {
  left: 58%;
}

.cadence-visual i:nth-child(4) {
  right: 16px;
  background: rgba(53, 183, 161, 0.18);
}

.compact-dark {
  padding: 82px 0;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.trust-badges span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
}

.trust-badges span::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--southgrove-teal);
}

.credibility-note {
  margin: 24px auto 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.72) !important;
}

.boundaries-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(520px, 1fr);
  gap: 48px;
  align-items: start;
}

.scope-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--southgrove-soft);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: 52px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  background: var(--southgrove-white);
}

.faq-item summary {
  position: relative;
  cursor: pointer;
  padding: 22px 58px 22px 22px;
  color: var(--southgrove-blue);
  font-weight: 600;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 20px;
  color: var(--southgrove-green);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: -8px 22px 22px;
  max-width: 720px;
}

.final-cta {
  padding: 96px 0;
  text-align: center;
}

.final-cta .section-inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
}

.final-cta h2 {
  font-size: clamp(2rem, 4.8vw, 4rem);
}

.final-cta p {
  max-width: 680px;
  margin: 0 auto 30px;
  font-size: 1.08rem;
}

.site-footer {
  padding: 30px 0;
  color: rgba(255, 255, 255, 0.76);
  background: var(--southgrove-blue);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
}

.footer-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-grid > a:last-child {
  color: var(--southgrove-teal);
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.hero .reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1020px) {
  .hero-grid,
  .split-section,
  .sample-grid,
  .boundaries-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 132px;
  }

  .hero-visual {
    max-width: 680px;
  }

  .symptom-list,
  .card-grid,
  .deliverables-grid,
  .process-timeline,
  .proof-grid,
  .trust-badges {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-timeline::before {
    display: none;
  }

  .process-card {
    min-height: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }

  .nav-shell,
  .section-inner {
    width: calc(100% - 28px);
    max-width: 1160px;
  }

  .brand-text {
    font-size: 0.88rem;
  }

  .brand-logo {
    width: 158px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(47, 60, 72, 0.98);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
  }

  body.nav-open .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 14px 12px;
  }

  .nav-links .btn {
    margin-top: 8px;
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    padding: 118px 0 72px;
  }

  h1 {
    font-size: clamp(2.15rem, 10.8vw, 3.25rem);
    line-height: 1.05;
    overflow-wrap: break-word;
  }

  h2 {
    font-size: clamp(1.82rem, 9vw, 2.7rem);
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-support {
    padding-left: 16px;
  }

  .hero-copy,
  .hero-subhead,
  .hero-support {
    max-width: 100%;
  }

  .cta-row,
  .mid-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
    min-height: 52px;
  }

  .symptom-list,
  .card-grid,
  .deliverables-grid,
  .process-timeline,
  .proof-grid,
  .trust-badges,
  .scope-panel,
  .approach-graphic {
    grid-template-columns: 1fr;
  }

  .approach-graphic::before,
  .approach-graphic::after {
    display: none;
  }

  .symptom-list li {
    min-height: auto;
  }

  .insight-card {
    min-height: auto;
  }

  .sample-grid {
    gap: 32px;
  }

  .approach-graphic {
    min-height: auto;
  }

  .proof-card {
    min-height: auto;
  }

  .faq-grid {
    gap: 22px;
  }

  .final-cta {
    padding: 76px 0;
  }
}

@media (max-width: 430px) {
  .nav-shell,
  .section-inner {
    width: calc(100% - 24px);
    max-width: 1160px;
  }

  .brand-logo {
    width: 142px;
  }

  .hero-visual {
    overflow: hidden;
  }

  .program-map {
    min-width: 0;
    width: 100%;
  }

  .insight-card,
  .process-card,
  .proof-card,
  .scope-panel,
  .contrast-panel {
    padding: 22px;
  }
}
