@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Cormorant+Garamond:wght@500;600;700&display=swap");

:root {
  color-scheme: light;
  --ink: #0b241c;
  --muted: #5a675f;
  --paper: #f7f3ea;
  --panel: #fffdf8;
  --line: #d9d2c4;
  --field: #eee8dc;
  --leaf: #5f7f66;
  --leaf-dark: #0b241c;
  --forest-dark: #071f19;
  --gold: #b6760e;
  --clay: #d88a0d;
  --sky: #e9e4d8;
  --shadow: 0 24px 70px rgba(7, 31, 25, 0.14);
  --shadow-soft: 0 14px 42px rgba(31, 54, 38, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.86), rgba(247, 243, 234, 0.96) 420px),
    var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: clip;
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: block;
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid rgba(15, 46, 35, 0.1);
  backdrop-filter: blur(22px);
}

.header-trust {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 7px max(20px, calc((100vw - 1160px) / 2));
  color: rgba(255, 255, 255, 0.86);
  background: var(--forest-dark);
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.header-trust span,
.header-trust a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: inherit;
  white-space: nowrap;
}

.header-trust span::before,
.header-trust a::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 8px;
  background: var(--clay);
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(216, 138, 13, 0.16);
}

.header-phone {
  text-decoration: none;
}

.header-main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 13px max(20px, calc((100vw - 1160px) / 2));
}

.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(31, 54, 38, 0.07);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-icon {
  display: block;
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 46, 35, 0.14);
}

.brand-name {
  color: var(--ink);
  font-weight: 800;
  white-space: nowrap;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 720;
  line-height: 1.05;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--leaf-dark), var(--leaf));
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  font-size: 0.8rem;
  box-shadow: 0 12px 30px rgba(47, 125, 77, 0.22);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 9px 10px;
  border-radius: 8px;
  color: #364239;
  font-size: 0.88rem;
  font-weight: 650;
}

.site-nav a:hover {
  background: var(--field);
}

.site-nav .nav-phone {
  color: var(--leaf-dark);
  background: rgba(47, 125, 77, 0.08);
  font-weight: 760;
}

.site-nav .nav-phone:hover {
  background: rgba(47, 125, 77, 0.14);
}

.site-nav a[aria-current="page"] {
  color: var(--leaf-dark);
  background: var(--field);
}

.site-nav .nav-cta {
  margin-left: 8px;
  color: #fff;
  background: var(--leaf-dark);
}

.site-nav .nav-cta:hover {
  background: var(--leaf);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

  .header-quick-cta {
    display: inline-flex;
    align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  color: #fff;
  background: var(--leaf-dark);
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 820;
    white-space: nowrap;
  }

.header-quick-cta:hover {
  background: var(--leaf);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(390px, 0.78fr) minmax(560px, 1.08fr);
  gap: clamp(38px, 4.8vw, 72px);
  align-items: center;
  min-height: 0;
  padding: clamp(44px, 5vw, 72px) 0 clamp(46px, 5vw, 72px);
}

.hero.section-shell {
  width: min(1280px, calc(100% - 52px));
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 30px -7vw 42px auto;
  width: min(660px, 48vw);
  height: auto;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(15, 46, 35, 0.09) 1px, transparent 1px),
    linear-gradient(rgba(15, 46, 35, 0.09) 1px, transparent 1px);
  background-size: 28px 28px;
  clip-path: polygon(14% 0, 100% 8%, 82% 86%, 0 100%);
  opacity: 0.18;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.52fr);
  gap: clamp(32px, 6vw, 74px);
  align-items: center;
  min-height: 500px;
  padding: 56px 0;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 3.6vw, 3.65rem);
  line-height: 1.02;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--leaf-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.institutional-badge {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 640px;
  margin-bottom: 18px;
}

.institutional-badge span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  color: #2c3b32;
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid rgba(15, 46, 35, 0.12);
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 840;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 28px rgba(7, 31, 25, 0.04);
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 620px;
  margin-bottom: 20px;
  font-size: clamp(2.65rem, 3.55vw, 4.05rem);
  line-height: 0.98;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.75rem, 3vw, 3.05rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.hero-lede {
  max-width: 570px;
  color: #39473d;
  font-size: clamp(1.02rem, 1.35vw, 1.15rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
}

.button.primary {
  color: #fff;
  background: linear-gradient(180deg, #173a2d, var(--leaf-dark));
  box-shadow: 0 18px 32px rgba(7, 31, 25, 0.24);
}

.button.primary:hover {
  background: linear-gradient(180deg, #244b3b, #123025);
}

.button.secondary {
  color: var(--leaf-dark);
  background: #fffdf8;
  border-color: var(--line);
}

.button.secondary:hover {
  border-color: #b8cbb8;
}

.button.light {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.32);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  box-shadow: none;
}

.hero-assurance {
  max-width: 570px;
  padding: 13px 15px;
  margin-top: 16px;
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(7, 31, 25, 0.05);
}

.hero-assurance span,
.hero-assurance strong {
  display: block;
}

.hero-assurance span {
  margin-bottom: 3px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-assurance strong {
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.28;
}

.payment-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 590px;
  margin-top: 14px;
}

.payment-assurance span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 11px;
  color: #24362c;
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid rgba(15, 46, 35, 0.13);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 820;
  box-shadow: 0 10px 24px rgba(7, 31, 25, 0.045);
}

.payment-assurance span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  background: var(--clay);
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(216, 138, 13, 0.13);
}

.hero-price-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-width: 590px;
  margin-top: 14px;
}

.hero-price-strip a {
  display: grid;
  min-width: 0;
  min-height: 66px;
  align-content: center;
  padding: 10px 12px;
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid rgba(15, 46, 35, 0.14);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(7, 31, 25, 0.055);
}

.hero-price-strip strong {
  color: var(--leaf-dark);
  font-size: 1.34rem;
  line-height: 1;
}

.hero-price-strip span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 820;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 12px;
  max-width: 570px;
  overflow: hidden;
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(15, 46, 35, 0.12);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(7, 31, 25, 0.045);
}

.trust-strip span {
  display: block;
  min-height: 62px;
  padding: 11px 13px;
  color: #405044;
  border-right: 1px solid rgba(15, 46, 35, 0.1);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.18;
}

.trust-strip span:last-child {
  border-right: 0;
}

.trust-strip strong {
  display: block;
  margin-bottom: 3px;
  color: var(--leaf-dark);
  font-weight: 860;
  white-space: nowrap;
}

.hero-visual {
  position: relative;
  min-height: 0;
  border-radius: 10px;
  background:
    linear-gradient(120deg, rgba(7, 31, 25, 0.08), transparent 38%),
    radial-gradient(circle at 18% 18%, rgba(216, 155, 43, 0.24), transparent 24%),
    linear-gradient(145deg, #f2eee4, #e9e4d8 54%, #fbf8ef);
  border: 1px solid rgba(15, 46, 35, 0.12);
  box-shadow: 0 18px 52px rgba(7, 31, 25, 0.11);
  overflow: hidden;
}

.operation-preview {
  position: relative;
  display: block;
  min-height: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.operation-preview::before {
  opacity: 0.1;
}

.case-visual-lead {
  position: relative;
  z-index: 0;
  top: auto;
  right: auto;
  left: auto;
  min-height: 520px;
  height: clamp(520px, 38vw, 610px);
  overflow: hidden;
  background: var(--forest-dark);
  border: 1px solid rgba(15, 46, 35, 0.12);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(7, 31, 25, 0.18);
}

.case-visual-lead::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 31, 25, 0.08) 0%, rgba(7, 31, 25, 0.2) 42%, rgba(7, 31, 25, 0.84) 100%),
    linear-gradient(90deg, rgba(7, 31, 25, 0.66), rgba(7, 31, 25, 0.1) 56%, rgba(7, 31, 25, 0.46));
}

.case-visual-lead img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
}

.case-visual-caption {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 28px;
  left: 28px;
  z-index: 2;
  max-width: 230px;
  color: #fff;
}

.case-visual-caption span {
  display: block;
  margin-bottom: 5px;
  color: #f0c36a;
  font-size: 0.72rem;
  font-weight: 880;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-visual-caption strong {
  display: block;
  font-size: clamp(1.16rem, 1.65vw, 1.44rem);
  line-height: 1.05;
}

.hero-workflow-panel {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: auto;
  z-index: 3;
  display: block;
  width: min(390px, calc(100% - 44px));
  padding: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  box-shadow: 0 22px 44px rgba(7, 31, 25, 0.24);
  backdrop-filter: blur(12px);
}

.hero-workflow-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(15, 46, 35, 0.14);
}

.hero-workflow-header span,
.hero-workflow-header strong,
.hero-next-step span,
.hero-next-step strong {
  display: block;
}

.hero-workflow-header span,
.hero-next-step span {
  color: var(--leaf-dark);
  font-size: 0.72rem;
  font-weight: 870;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-workflow-header strong {
  max-width: 160px;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.12;
  text-align: right;
}

.hero-file-list {
  display: grid;
  gap: 8px;
  padding: 12px 0;
}

.hero-file-list p {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin: 0;
  padding: 9px 0;
  color: #536358;
  border-bottom: 1px solid rgba(15, 46, 35, 0.08);
  font-size: 0.88rem;
  line-height: 1.24;
}

.hero-file-list p:last-child {
  border-bottom: 0;
}

.hero-file-list b {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--leaf-dark);
  border-radius: 7px;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-next-step {
  padding: 13px;
  background: #f6f1e6;
  border: 1px solid rgba(15, 46, 35, 0.1);
  border-radius: 8px;
}

.hero-next-step span {
  margin-bottom: 5px;
  color: var(--gold);
}

.hero-next-step strong {
  font-size: 0.98rem;
  line-height: 1.2;
}

.case-visual-chip {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(7, 31, 25, 0.16);
  font-size: 0.76rem;
  font-weight: 840;
}

.case-visual-chip::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 7px;
  background: var(--clay);
  border-radius: 999px;
}

.case-visual-chip.chip-one {
  top: 18px;
  left: 18px;
}

.case-visual-chip.chip-two {
  top: 64px;
  right: 18px;
}

.ops-card {
  position: relative;
  z-index: 2;
  margin-top: 186px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 46, 35, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(7, 31, 25, 0.11);
}

.ops-card-header {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.ops-card-header h2 {
  margin: 10px 0 0;
  font-size: clamp(1.55rem, 2.2vw, 2.05rem);
}

.ops-card-header p {
  max-width: 420px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.ops-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 14px 0;
}

.ops-metrics article {
  padding: 11px 10px;
  background: #f8faf5;
  border: 1px solid #e1eadf;
  border-radius: 8px;
}

.ops-metrics strong,
.ops-metrics span {
  display: block;
}

.ops-metrics strong {
  color: var(--leaf-dark);
  font-size: 1.03rem;
  line-height: 1;
}

.ops-metrics span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.ops-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.ops-list article {
  display: block;
  padding: 11px;
  background: #f8faf5;
  border: 1px solid #e1eadf;
  border-radius: 8px;
}

.ops-list article > span {
  display: inline-grid;
  min-width: auto;
  height: 26px;
  margin-bottom: 8px;
  padding: 0 10px;
  place-items: center;
  color: #fff;
  background: var(--leaf-dark);
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ops-list strong,
.customer-needed strong {
  display: block;
  color: var(--ink);
}

.ops-list p,
.customer-needed p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero .ops-list p,
.hero .human-review-card,
.hero .customer-needed {
  display: none;
}

.hero .ops-list strong {
  font-size: 0.9rem;
  line-height: 1.16;
}

.customer-needed {
  padding: 15px;
  color: #fff;
  background: var(--leaf-dark);
  border-radius: 8px;
}

.human-review-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px;
  margin-bottom: 14px;
  background: #fffaf0;
  border: 1px solid #e5d8bc;
  border-radius: 8px;
}

.human-review-card img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
}

.customer-needed span {
  display: block;
  margin-bottom: 4px;
  color: #f3cf80;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.customer-needed strong {
  color: #fff;
  font-size: 1.22rem;
}

.customer-needed p {
  color: #dfe9df;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("./assets/orchard-grid-pattern.svg");
  background-size: 440px 440px;
  opacity: 0.18;
  mask-image: linear-gradient(120deg, rgba(0, 0, 0, 0.88), transparent 78%);
}

.hero-visual.operation-preview::before {
  opacity: 0.1;
}

.system-visual {
  position: relative;
  z-index: 1;
}

.system-visual::before {
  content: "";
  position: absolute;
  inset: -16px 26px 28px -18px;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(238, 232, 220, 0.78));
  border: 1px solid rgba(15, 46, 35, 0.11);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(7, 31, 25, 0.12);
}

.system-window {
  position: relative;
  min-height: 560px;
  padding: 24px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(5, 24, 19, 0.98), rgba(13, 43, 34, 0.95)),
    var(--forest-dark);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 36px 90px rgba(7, 31, 25, 0.3);
  overflow: hidden;
}

.system-window::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(140deg, rgba(0, 0, 0, 0.92), transparent 72%);
}

.system-window > * {
  position: relative;
  z-index: 1;
}

.system-titlebar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.system-titlebar span,
.system-titlebar strong,
.system-titlebar em {
  display: block;
}

.system-titlebar span,
.system-console span,
.system-workflow span,
.system-metrics span {
  color: #f4c86e;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.system-titlebar strong {
  margin-top: 4px;
  color: #fff;
  font-size: 1.15rem;
  line-height: 1.15;
}

.system-titlebar em {
  color: #d9e6dd;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 780;
}

.system-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 16px 0;
}

.system-metrics article {
  padding: 15px;
  background: rgba(255, 253, 248, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.system-metrics span {
  color: var(--gold);
}

.system-metrics strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1;
}

.system-workflow {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.system-workflow article {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
}

.system-workflow b {
  width: 13px;
  height: 13px;
  margin-top: 5px;
  background: rgba(255, 255, 255, 0.24);
  border-radius: 999px;
}

.system-workflow .complete b {
  background: var(--leaf);
}

.system-workflow .active b {
  background: var(--clay);
  box-shadow: 0 0 0 6px rgba(216, 138, 13, 0.18);
}

.system-workflow strong {
  display: block;
  margin-top: 4px;
  color: #eef5ef;
  font-size: 0.95rem;
  line-height: 1.24;
}

.system-console {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.5fr);
  gap: 16px;
  align-items: center;
  margin-top: 16px;
  padding: 16px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.2);
}

.system-console strong {
  display: block;
  margin-top: 5px;
  font-size: 1rem;
  line-height: 1.22;
}

.system-console p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 720;
}

.hero-system-mockup {
  position: relative;
  z-index: 1;
  padding: 18px;
  color: #eef6ef;
  background:
    linear-gradient(135deg, rgba(7, 31, 25, 0.98), rgba(13, 45, 35, 0.96)),
    var(--forest-dark);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 36px 90px rgba(7, 31, 25, 0.28);
  overflow: hidden;
}

.hero-system-mockup::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(140deg, rgba(0, 0, 0, 0.92), transparent 74%);
}

.hero-system-mockup > * {
  position: relative;
  z-index: 1;
}

.hero-visual-stack {
  display: grid;
  gap: 14px;
  align-self: center;
}

.hero-human-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin: 0;
  padding: 12px;
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(15, 46, 35, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(7, 31, 25, 0.1);
}

.hero-human-card img,
.control-stack-photo img,
.customer-context-photo img,
.affiliate-photo-grid img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.hero-human-card img {
  height: 112px;
  object-position: 58% 42%;
  border-radius: 8px;
}

.hero-human-card figcaption {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 720;
  line-height: 1.38;
}

.hero-human-card figcaption span {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-weight: 880;
}

.mockup-topbar,
.customer-os-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.mockup-topbar {
  padding: 15px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.mockup-topbar span,
.mockup-label,
.mockup-status-row span,
.customer-os-header span,
.customer-os-grid span,
.post-payment-grid span,
.control-stack-header span,
.control-stack-grid span,
.conversion-proof-grid span {
  display: block;
  color: #f4c86e;
  font-size: 0.7rem;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mockup-topbar strong,
.customer-os-header strong {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 1.12rem;
  line-height: 1.12;
}

.mockup-topbar em,
.customer-os-header em {
  color: #dbe8df;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 820;
}

.mockup-body {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.mockup-rail {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.mockup-rail span {
  display: block;
  padding: 10px;
  color: #dce8df;
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 780;
}

.mockup-rail span.active {
  color: var(--ink);
  background: #fffdf8;
}

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

.mockup-status-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mockup-status-row article {
  padding: 14px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.mockup-status-row span {
  color: var(--gold);
}

.mockup-status-row strong {
  display: block;
  margin-top: 7px;
  font-size: 1.02rem;
  line-height: 1.08;
}

.mockup-workboard {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 0.54fr);
  gap: 12px;
  margin-top: 12px;
}

.mockup-workboard section,
.mockup-workboard aside {
  min-width: 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
}

.mockup-workboard h2 {
  margin: 8px 0 16px;
  color: #fff;
  font-size: clamp(1.65rem, 2.8vw, 2.45rem);
  line-height: 0.98;
}

.mockup-timeline {
  display: grid;
  gap: 8px;
}

.mockup-timeline p {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin: 0;
  padding: 10px;
  color: #dce8df;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 720;
}

.mockup-timeline b {
  width: 10px;
  height: 10px;
  margin-top: 0.38em;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 999px;
}

.mockup-timeline .done b {
  background: var(--leaf);
}

.mockup-timeline .active b {
  background: var(--clay);
  box-shadow: 0 0 0 5px rgba(216, 138, 13, 0.16);
}

.mockup-workboard aside {
  color: var(--ink);
  background: #fffdf8;
  border-color: rgba(255, 255, 255, 0.6);
}

.mockup-workboard aside strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 1.06rem;
  line-height: 1.22;
}

.mockup-workboard aside p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 720;
}

.confidence-ledger {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: -20px;
  margin-bottom: 58px;
  overflow: hidden;
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid rgba(15, 46, 35, 0.12);
  border-radius: 8px;
  box-shadow: 0 22px 58px rgba(7, 31, 25, 0.08);
}

.confidence-ledger article {
  display: grid;
  align-content: start;
  min-height: 184px;
  padding: 20px;
  border-right: 1px solid rgba(15, 46, 35, 0.1);
}

.confidence-ledger article:last-child {
  border-right: 0;
}

.confidence-ledger span {
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 10px;
  color: var(--leaf-dark);
  background: var(--field);
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.confidence-ledger strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.16;
}

.confidence-ledger p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.48;
}

.post-payment {
  padding: 58px 0 72px;
}

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

.post-payment-grid article {
  position: relative;
  min-height: 224px;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.post-payment-grid article::after {
  content: "";
  position: absolute;
  top: 30px;
  right: -18px;
  z-index: 2;
  width: 34px;
  height: 1px;
  background: rgba(15, 46, 35, 0.24);
}

.post-payment-grid article:last-child::after {
  display: none;
}

.post-payment-grid span {
  color: var(--leaf-dark);
}

.post-payment-grid strong {
  display: block;
  margin: 24px 0 8px;
  color: var(--ink);
  font-size: 1.06rem;
  line-height: 1.16;
}

.post-payment-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.sample-review-section {
  padding: 58px 0 72px;
}

.sample-review-card {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 31, 25, 0.98), rgba(16, 54, 42, 0.96)),
    var(--forest-dark);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 30px 84px rgba(7, 31, 25, 0.18);
}

.sample-review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.sample-review-header span,
.sample-review-grid span,
.sample-review-next span {
  display: block;
  color: #f4c86e;
  font-size: 0.72rem;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sample-review-header strong {
  color: #fff;
  font-size: 1rem;
  line-height: 1.2;
}

.sample-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
}

.sample-review-grid article {
  min-height: 188px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
}

.sample-review-grid h3 {
  margin-top: 18px;
  color: #fff;
  font-size: 1.08rem;
}

.sample-review-grid p {
  margin: 0;
  color: #dce7df;
  font-size: 0.92rem;
  line-height: 1.5;
}

.sample-review-next {
  display: grid;
  gap: 8px;
  margin: 0 18px 18px;
  padding: 18px;
  color: var(--ink);
  background: #fffdf8;
  border-radius: 8px;
}

.sample-review-next strong {
  font-size: 1.04rem;
  line-height: 1.32;
}

.phone-card {
  position: absolute;
  top: 42px;
  right: 44px;
  width: min(360px, calc(100% - 72px));
  padding: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  box-shadow: 0 20px 54px rgba(31, 54, 38, 0.14);
  backdrop-filter: blur(16px);
}

.phone-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.status-pill {
  display: inline-flex;
  padding: 7px 10px;
  color: var(--leaf-dark);
  background: var(--field);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 800;
}

.status-pill.inline-status {
  width: fit-content;
  max-width: 100%;
  line-height: 1.35;
  white-space: normal;
}

.score {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1;
}

.score-meter {
  height: 12px;
  margin: 20px 0 22px;
  overflow: hidden;
  background: #e5e9e4;
  border-radius: 999px;
}

.score-meter span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--clay), var(--gold), var(--leaf));
  border-radius: inherit;
}

.issue-card {
  padding: 16px;
  margin-top: 12px;
  background: #f7faf5;
  border: 1px solid #e1eadf;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
}

.issue-card.high {
  border-left-color: var(--clay);
}

.issue-card.good {
  border-left-color: var(--leaf);
}

.issue-card span,
.issue-card small,
.insight-panel span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.issue-card strong {
  display: block;
  margin: 4px 0;
  font-size: 1.02rem;
}

.insight-panel {
  position: absolute;
  left: 36px;
  bottom: 42px;
  width: min(330px, calc(100% - 72px));
  padding: 22px;
  color: #fff;
  background: rgba(7, 31, 25, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(7, 31, 25, 0.22);
  backdrop-filter: blur(18px);
}

.insight-panel p {
  margin-bottom: 8px;
  color: #b7d5bf;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.insight-panel strong {
  display: block;
  margin-bottom: 16px;
  font-size: 1.28rem;
  line-height: 1.2;
}

.insight-panel span {
  color: #f1ce86;
}

.feature-panel,
.metric-panel,
.contact-form {
  padding: 26px;
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.visual-feature-panel,
.visual-metric-panel {
  overflow: hidden;
}

.visual-feature-panel img,
.visual-metric-panel > img {
  display: block;
  width: calc(100% + 52px);
  max-width: none;
  height: 248px;
  margin: -26px -26px 22px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.visual-feature-panel img {
  object-position: 52% 46%;
}

.visual-metric-panel > img {
  object-position: center 38%;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #344139;
  font-weight: 750;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.44em;
  left: 0;
  width: 14px;
  height: 14px;
  background: var(--leaf);
  border-radius: 4px;
  box-shadow: inset 0 0 0 4px #dcefe2;
}

.metric-panel {
  display: grid;
  gap: 12px;
}

.metric-panel article {
  padding: 20px;
  background: #f7faf5;
  border: 1px solid #e1eadf;
  border-radius: 8px;
}

.metric-panel strong {
  display: block;
  margin-bottom: 8px;
  color: var(--leaf-dark);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.metric-panel span {
  color: var(--muted);
  font-weight: 750;
}

.problem,
.conversion-band,
.buyer-journey,
.human-layer,
.people-system,
.paths,
.impact,
.final-cta,
.concierge,
.inclusion {
  margin: 24px 0;
}

.conversion-band {
  padding: 60px 0;
  color: #fff;
  background: #17211b;
}

.conversion-band .eyebrow {
  color: #f4c86e;
}

.conversion-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 40px;
  align-items: start;
}

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

.conversion-grid article {
  min-height: 230px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.conversion-grid strong {
  display: inline-flex;
  margin-bottom: 22px;
  color: #f4c86e;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.conversion-grid h3 {
  color: #fff;
}

.conversion-grid p,
.conversion-band .section-heading p:not(.eyebrow) {
  color: #dce7df;
}

.human-layer {
  padding: 70px 0;
  background: #f6f8f1;
  border-block: 1px solid rgba(15, 46, 35, 0.08);
}

.human-layer-inner {
  display: grid;
  grid-template-columns: minmax(360px, 0.7fr) minmax(0, 1fr);
  gap: 46px;
  align-items: center;
}

.human-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(15, 46, 35, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(7, 31, 25, 0.1);
}

.human-photo img {
  display: block;
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center center;
}

.human-photo figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 14px;
  color: #fff;
  background: rgba(7, 31, 25, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 750;
  backdrop-filter: blur(14px);
}

.control-stack {
  padding: 24px;
  color: #eef6ef;
  background:
    linear-gradient(135deg, rgba(7, 31, 25, 0.98), rgba(15, 46, 35, 0.9)),
    var(--forest-dark);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 24px 66px rgba(7, 31, 25, 0.2);
}

.control-stack-header {
  padding: 18px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
}

.control-stack-header strong {
  display: block;
  max-width: 420px;
  margin-top: 8px;
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1;
}

.control-stack-grid {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.control-stack-grid article {
  padding: 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.control-stack-grid strong {
  display: block;
  margin-top: 6px;
  color: #fff;
}

.control-stack-grid p {
  margin: 5px 0 0;
  color: #dce8df;
  font-size: 0.9rem;
}

.control-stack-photo {
  position: relative;
  min-height: 246px;
  margin: 14px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.control-stack-photo img {
  height: 246px;
  filter: saturate(0.72) contrast(1.05);
}

.control-stack-photo figcaption,
.customer-context-photo figcaption,
.affiliate-photo-grid figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 12px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(7, 31, 25, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 720;
  backdrop-filter: blur(14px);
}

.control-stack-photo figcaption span,
.customer-context-photo figcaption span,
.affiliate-photo-grid figcaption span {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 0.96rem;
  font-weight: 880;
}

.human-layer p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

.human-roles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.human-roles article {
  min-height: 160px;
  padding: 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.human-roles span,
.human-review-card span,
.care-team-list span,
.ops-human-panel span {
  display: block;
  margin-bottom: 8px;
  color: var(--leaf-dark);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.human-roles strong,
.human-review-card strong,
.care-team-list strong,
.ops-human-panel strong {
  display: block;
  color: var(--ink);
  line-height: 1.28;
}

.people-system {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 1fr);
  gap: 32px;
  align-items: end;
  padding: 76px 0;
}

.people-system-copy {
  max-width: 520px;
}

.people-system-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.02rem;
}

.people-system-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 12px;
}

.people-card {
  position: relative;
  min-height: 270px;
  margin: 0;
  overflow: hidden;
  background: #071f19;
  border: 1px solid rgba(15, 46, 35, 0.12);
  border-radius: 8px;
  box-shadow: 0 22px 62px rgba(7, 31, 25, 0.13);
}

.people-card.large {
  grid-row: span 2;
  min-height: 552px;
}

.people-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.02);
}

.people-card.large img {
  object-position: center 46%;
}

.people-card:not(.large) img {
  object-position: center 42%;
}

.people-card figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 14px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(7, 31, 25, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font-size: 0.88rem;
  backdrop-filter: blur(14px);
}

.people-card figcaption span {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-weight: 850;
}

.customer-os-preview {
  padding: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 84% 14%, rgba(244, 200, 110, 0.14), transparent 32%),
    linear-gradient(145deg, rgba(7, 31, 25, 0.98), rgba(15, 46, 35, 0.9)),
    var(--forest-dark);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(7, 31, 25, 0.18);
}

.customer-os-header {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.customer-os-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.customer-os-grid article {
  min-width: 0;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.customer-os-grid article.wide {
  grid-column: span 2;
}

.customer-os-grid strong {
  display: block;
  margin-top: 7px;
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.18;
}

.customer-os-grid p {
  margin: 7px 0 0;
  color: #dce8df;
  font-size: 0.9rem;
}

.customer-os-progress {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.customer-os-progress span {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  color: #dce8df;
  text-align: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 820;
}

.customer-os-progress span.done {
  color: var(--ink);
  background: #fffdf8;
}

.customer-os-progress span.active {
  color: #fff;
  background: rgba(216, 138, 13, 0.38);
  border-color: rgba(244, 200, 110, 0.4);
}

.customer-context-photo {
  position: relative;
  min-height: 238px;
  margin: 14px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.customer-context-photo img {
  height: 238px;
  object-position: center 42%;
  filter: saturate(0.86) contrast(1.02);
}

.buyer-journey {
  padding: 58px 0;
  background: #f3efe5;
  border-block: 1px solid rgba(15, 46, 35, 0.08);
}

.proof-system,
.offer-ladder {
  padding: 74px 0;
}

.trust-proof-section,
.plan-receipt-section,
.academy-roadmap-section {
  padding-block: 70px;
}

.proof-system-grid,
.offer-ladder-grid,
.trust-proof-grid,
.plan-receipt-grid,
.academy-roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.proof-system-grid article,
.offer-ladder-grid article,
.trust-proof-grid article,
.plan-receipt-grid article,
.academy-roadmap-grid article {
  min-height: 230px;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.proof-system-grid span,
.offer-ladder-grid span,
.trust-proof-grid span,
.plan-receipt-grid span,
.academy-roadmap-grid span {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 7px 10px;
  color: var(--leaf-dark);
  background: var(--field);
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-system-grid p,
.offer-ladder-grid p,
.trust-proof-grid p,
.plan-receipt-grid p,
.academy-roadmap-grid p,
.academy-roadmap-grid li {
  color: var(--muted);
}

.trust-proof-grid article:nth-child(2),
.plan-receipt-grid article:nth-child(2) {
  color: #fff;
  background:
    radial-gradient(circle at 88% 12%, rgba(244, 200, 110, 0.14), transparent 35%),
    linear-gradient(145deg, #071f19, #163b2d);
  border-color: rgba(255, 255, 255, 0.12);
}

.trust-proof-grid article:nth-child(2) span,
.plan-receipt-grid article:nth-child(2) span {
  color: #f4c86e;
  background: rgba(255, 255, 255, 0.08);
}

.trust-proof-grid article:nth-child(2) h3,
.trust-proof-grid article:nth-child(2) p,
.plan-receipt-grid article:nth-child(2) h3,
.plan-receipt-grid article:nth-child(2) p,
.plan-receipt-grid article:nth-child(2) strong {
  color: #fff;
}

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

.plan-receipt-grid strong {
  display: block;
  margin-top: auto;
  padding-top: 18px;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.35;
}

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

.academy-roadmap-grid article {
  min-height: 360px;
}

.academy-roadmap-grid ol {
  display: grid;
  gap: 12px;
  padding-left: 20px;
  margin: 18px 0 0;
}

.academy-roadmap-grid li {
  padding-left: 4px;
  line-height: 1.45;
}

.buyer-journey-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 42px;
  align-items: start;
}

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

.journey-grid article {
  min-height: 210px;
  padding: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 42px rgba(31, 54, 38, 0.05);
}

.journey-grid span {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 7px 10px;
  color: var(--leaf-dark);
  background: var(--field);
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journey-grid p {
  color: var(--muted);
}

.problem {
  padding: 56px 0;
  background: #17211b;
  color: #fff;
}

.problem .eyebrow,
.impact .eyebrow,
.final-cta .eyebrow {
  color: #f4c86e;
}

.problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 42px;
  align-items: center;
}

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

.stat-grid article {
  min-height: 170px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.stat-grid strong {
  display: block;
  margin-bottom: 18px;
  color: #f6cf7a;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1;
}

.stat-grid span {
  color: #d6e2da;
  font-weight: 650;
}

.split,
.trust,
.faq {
  padding: 72px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.compact {
  max-width: 650px;
}

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

.steps article,
.path-grid article,
.trust-grid article {
  padding: 24px;
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(15, 46, 35, 0.11);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.steps span {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 7px 10px;
  color: var(--leaf-dark);
  background: var(--field);
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.steps p,
.path-grid p,
.trust-grid p,
.faq p {
  color: var(--muted);
}

.paths {
  padding: 66px 0;
  background: #f3efe5;
}

.concierge {
  padding: 70px 0;
  color: #fff;
  background:
    linear-gradient(130deg, rgba(7, 31, 25, 0.98), rgba(15, 46, 35, 0.86) 54%, rgba(182, 118, 14, 0.32)),
    linear-gradient(135deg, #0f2e23, #071f19);
}

.concierge .eyebrow {
  color: #f4c86e;
}

.concierge p:not(.eyebrow) {
  color: #dfe8e1;
  font-size: 1.08rem;
}

.concierge-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 48px;
  align-items: center;
}

.automation-card {
  padding: 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 8px;
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.automation-card ul,
.pricing-grid ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.automation-card li {
  padding: 14px;
  background: rgba(247, 250, 245, 0.74);
  border: 1px solid rgba(15, 46, 35, 0.1);
  border-radius: 8px;
}

.automation-card strong,
.automation-card span {
  display: block;
}

.automation-card li > span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.pricing-grid.pricing-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pricing-grid article {
  display: flex;
  min-height: 440px;
  flex-direction: column;
  padding: 26px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.pricing-grid article.featured {
  background:
    linear-gradient(145deg, #071f19, #17211b 54%, #1d3e30);
  color: #fff;
  border-color: #17211b;
  box-shadow: var(--shadow);
}

.pricing-grid span {
  color: var(--leaf-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-grid .featured span {
  color: #f4c86e;
}

.plan-price {
  display: grid;
  gap: 3px;
  margin: 18px 0 14px;
}

.plan-price strong {
  color: var(--leaf-dark);
  font-size: clamp(2.5rem, 5vw, 4.1rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.plan-price small {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 780;
}

.pricing-grid .featured .plan-price strong,
.pricing-grid .featured .plan-price small {
  color: #fff;
}

.pricing-grid p,
.pricing-grid li {
  color: var(--muted);
}

.pricing-grid .featured p,
.pricing-grid .featured li {
  color: #dce7df;
}

.pricing-grid li {
  position: relative;
  padding-left: 20px;
}

.pricing-grid li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 999px;
}

.pricing-grid .button {
  width: 100%;
  margin-top: auto;
}

.pricing-disclaimer {
  max-width: 900px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

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

.addon-grid article {
  min-height: 210px;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 42px rgba(31, 54, 38, 0.055);
}

.addon-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  color: var(--leaf-dark);
  background: var(--field);
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.addon-grid p {
  color: var(--muted);
}

.platform-assessment,
.platform-pillars,
.issue-library,
.dashboard-walkthrough,
.business-roadmap,
.coach-academy,
.membership-ladder,
.resource-preview,
.plan-depth,
.resource-page-section {
  padding: 72px 0;
}

.scorecard-grid,
.issue-grid,
.pillar-grid,
.timeline-grid,
.dashboard-detail-grid,
.roadmap-stage-grid,
.match-grid,
.academy-grid,
.membership-grid,
.resource-preview-grid,
.plan-depth-grid,
.resource-guide-grid {
  display: grid;
  gap: 14px;
}

.scorecard-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: stretch;
}

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

.platform-system {
  position: relative;
}

.platform-system::before {
  content: "";
  position: absolute;
  inset: 26px 0 auto 0;
  z-index: -1;
  height: 320px;
  background:
    linear-gradient(90deg, transparent, rgba(15, 46, 35, 0.055), transparent);
}

.platform-system-head {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.56fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 18px;
}

.platform-score-panel {
  display: grid;
  gap: 14px;
  padding: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 8%, rgba(244, 200, 110, 0.18), transparent 36%),
    linear-gradient(145deg, #071f19, #15392c);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(7, 31, 25, 0.16);
}

.platform-score-panel div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: baseline;
}

.platform-score-panel span {
  color: #f4c86e;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.platform-score-panel strong {
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 0.9;
}

.platform-score-panel p {
  margin: 0;
  color: #dce8df;
}

.platform-score-bars {
  display: grid;
  gap: 9px;
}

.platform-score-bars span {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  color: #dce8df;
}

.platform-score-bars span::after {
  content: "";
  height: 8px;
  background:
    linear-gradient(90deg, #f4c86e var(--value), rgba(255, 255, 255, 0.15) var(--value));
  border-radius: 999px;
}

.platform-card-grid article {
  display: grid;
  min-height: 250px;
  align-content: start;
}

.platform-card-grid article:nth-child(1),
.platform-card-grid article:nth-child(6) {
  color: #fff;
  background:
    radial-gradient(circle at 86% 10%, rgba(244, 200, 110, 0.14), transparent 32%),
    linear-gradient(145deg, #071f19, #15392c);
  border-color: rgba(255, 255, 255, 0.12);
}

.platform-card-grid article:nth-child(1) h3,
.platform-card-grid article:nth-child(1) p,
.platform-card-grid article:nth-child(6) h3,
.platform-card-grid article:nth-child(6) p {
  color: #fff;
}

.platform-card-grid article:nth-child(1) span,
.platform-card-grid article:nth-child(6) span {
  color: #f4c86e;
  background: rgba(255, 255, 255, 0.08);
}

.platform-cta-card .button {
  width: fit-content;
  margin-top: auto;
}

.timeline-grid,
.dashboard-detail-grid,
.resource-preview-grid,
.plan-depth-grid {
  grid-template-columns: repeat(4, 1fr);
}

.roadmap-stage-grid,
.match-grid {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.academy-grid {
  grid-template-columns: repeat(2, 1fr);
}

.membership-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

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

.scorecard-panel,
.scorecard-actions article,
.issue-grid article,
.pillar-grid article,
.timeline-grid article,
.dashboard-detail-grid article,
.roadmap-stage-grid article,
.match-grid article,
.academy-grid article,
.membership-grid article,
.resource-preview-grid article,
.plan-depth-grid article,
.resource-guide-grid article {
  padding: 24px;
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid rgba(15, 46, 35, 0.11);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.scorecard-panel {
  display: grid;
  gap: 22px;
  align-content: start;
  color: #fff;
  background:
    linear-gradient(145deg, #071f19, #14372b);
  border-color: rgba(255, 255, 255, 0.12);
}

.scorecard-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.scorecard-header span,
.scorecard-actions span,
.pillar-grid span,
.roadmap-stage-grid span,
.match-grid span,
.academy-grid span,
.membership-grid span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 10px;
  color: var(--leaf-dark);
  background: var(--field);
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scorecard-header span {
  padding: 0;
  margin-bottom: 0;
  color: #f4c86e;
  background: transparent;
}

.scorecard-header strong {
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.9;
}

.score-bars {
  display: grid;
  gap: 13px;
}

.score-bars span {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  color: #dce8df;
  font-size: 0.9rem;
  font-weight: 780;
}

.score-bars span::after {
  content: "";
  grid-column: 1 / -1;
  width: 100%;
  height: 9px;
  background:
    linear-gradient(90deg, #f4c86e var(--value), rgba(255, 255, 255, 0.16) var(--value));
  border-radius: 999px;
}

.score-bars em {
  color: #fff;
  font-style: normal;
}

.scorecard-actions {
  display: grid;
  gap: 14px;
}

.scorecard-actions .button {
  width: 100%;
}

.marketplace-section {
  padding: 74px 0;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 31, 25, 0.98), rgba(15, 46, 35, 0.94)),
    #071f19;
}

.marketplace-section .eyebrow {
  color: #f4c86e;
}

.marketplace-section .section-heading p:not(.eyebrow),
.marketplace-section p {
  color: #dce8df;
}

.match-grid article {
  min-height: 230px;
  color: #fff;
  background: rgba(255, 255, 255, 0.065);
  border-color: rgba(255, 255, 255, 0.12);
}

.match-grid span {
  display: block;
  padding: 0;
  margin-bottom: 22px;
  color: #f4c86e;
  background: transparent;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1;
}

.match-grid h3 {
  color: #fff;
}

.coach-academy {
  display: grid;
  grid-template-columns: minmax(340px, 0.86fr) minmax(0, 1fr);
  gap: 34px;
  align-items: stretch;
}

.coach-panel {
  padding: 28px;
  color: #fff;
  background:
    linear-gradient(145deg, #071f19, #163b2d);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.coach-panel .eyebrow {
  color: #f4c86e;
}

.coach-panel h2 {
  color: #fff;
}

.coach-task-list {
  display: grid;
  gap: 10px;
}

.coach-task-list span {
  position: relative;
  padding: 13px 13px 13px 36px;
  color: #eaf2ed;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  font-weight: 760;
}

.coach-task-list span::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 14px;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 999px;
}

.dashboard-coach-list span {
  color: var(--ink);
  background: rgba(15, 46, 35, 0.045);
  border-color: rgba(15, 46, 35, 0.1);
}

.dashboard-card .match-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dashboard-card .match-grid.compact article {
  min-height: 0;
  padding: 18px;
  color: var(--ink);
  background: rgba(15, 46, 35, 0.045);
  border-color: rgba(15, 46, 35, 0.1);
}

.dashboard-card .match-grid.compact span {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 1.45rem;
}

.dashboard-card .match-grid.compact h3 {
  color: var(--ink);
}

.scorecard-output-card {
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.98), rgba(246, 248, 242, 0.9));
}

.scorecard-output-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.scorecard-output-grid article {
  min-width: 0;
  padding: 15px;
  background: rgba(15, 46, 35, 0.045);
  border: 1px solid rgba(15, 46, 35, 0.1);
  border-radius: 8px;
}

.scorecard-output-grid span {
  display: block;
  min-height: 32px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 840;
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-transform: uppercase;
}

.scorecard-output-grid strong {
  display: block;
  margin: 10px 0 6px;
  color: var(--ink);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 0.95;
}

.scorecard-output-grid p {
  min-height: 72px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.42;
}

.scorecard-output-grid b {
  display: block;
  height: 7px;
  overflow: hidden;
  background: rgba(15, 46, 35, 0.1);
  border-radius: 999px;
}

.scorecard-output-grid b::before {
  content: "";
  display: block;
  width: var(--value, 50%);
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--leaf));
  border-radius: inherit;
}

.scorecard-next-actions {
  display: grid;
  gap: 9px;
  margin-top: 16px;
}

.scorecard-next-actions span {
  position: relative;
  padding: 12px 13px 12px 34px;
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 770;
}

.scorecard-next-actions span::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 14px;
  width: 9px;
  height: 9px;
  background: var(--gold);
  border-radius: 999px;
}

.upgrade-path-card {
  color: #fff;
  background:
    radial-gradient(circle at 92% 10%, rgba(244, 200, 110, 0.16), transparent 36%),
    linear-gradient(145deg, #071f19, #163b2d);
  border-color: rgba(255, 255, 255, 0.12);
}

.upgrade-path-card h2,
.upgrade-path-card p {
  color: #fff;
}

.upgrade-path-card .eyebrow {
  color: #f4c86e;
}

.upgrade-path-card .status-pill {
  color: #f4c86e;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.upgrade-path-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.timeline-grid article {
  background: var(--panel);
}

.dashboard-detail-grid article {
  min-height: 220px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.96), rgba(246, 248, 242, 0.88));
}

.plan-depth-grid article,
.resource-guide-grid article {
  display: flex;
  min-height: 310px;
  flex-direction: column;
}

.roadmap-stage-grid article {
  min-height: 240px;
}

.roadmap-stage-grid article:nth-child(7) {
  background:
    linear-gradient(145deg, #071f19, #163b2d);
  color: #fff;
}

.roadmap-stage-grid article:nth-child(7) h3,
.roadmap-stage-grid article:nth-child(7) p {
  color: #fff;
}

.issue-grid span,
.timeline-grid span,
.dashboard-detail-grid span,
.resource-preview-grid span,
.plan-depth-grid span,
.resource-guide-grid span,
.membership-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  color: var(--leaf-dark);
  background: var(--field);
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.issue-grid p,
.timeline-grid p,
.dashboard-detail-grid p,
.resource-preview-grid p,
.plan-depth-grid p,
.resource-guide-grid p,
.pillar-grid p,
.roadmap-stage-grid p,
.academy-grid p,
.membership-grid p,
.plan-depth-grid li {
  color: var(--muted);
}

.plan-depth-grid ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.plan-depth-grid li {
  position: relative;
  padding-left: 18px;
  font-size: 0.96rem;
}

.plan-depth-grid li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 999px;
}

.resource-preview-grid a,
.resource-guide-grid a,
.membership-grid a {
  margin-top: auto;
  color: var(--leaf-dark);
  font-weight: 850;
}

.membership-grid article {
  display: flex;
  min-height: 300px;
  flex-direction: column;
}

.membership-grid article:nth-child(4),
.membership-grid article:nth-child(5) {
  color: #fff;
  background: linear-gradient(145deg, #071f19, #163b2d);
  border-color: rgba(255, 255, 255, 0.12);
}

.membership-grid article:nth-child(4) span,
.membership-grid article:nth-child(5) span {
  color: #f4c86e;
  background: rgba(255, 255, 255, 0.08);
}

.membership-grid article:nth-child(4) h3,
.membership-grid article:nth-child(5) h3,
.membership-grid article:nth-child(4) p,
.membership-grid article:nth-child(5) p,
.membership-grid article:nth-child(4) a,
.membership-grid article:nth-child(5) a {
  color: #fff;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.expectation-section {
  border-top: 1px solid rgba(15, 46, 35, 0.08);
  border-bottom: 1px solid rgba(15, 46, 35, 0.08);
}

.resource-page .page-hero {
  min-height: 430px;
}

.resource-page-section.alt {
  background: #f3efe5;
}

.resource-note {
  margin-top: 18px;
  padding: 18px;
  color: var(--muted);
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(15, 46, 35, 0.1);
  border-radius: 8px;
}

.academy-product-page .page-hero {
  min-height: 520px;
  align-items: stretch;
}

.academy-status-panel {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 10%, rgba(244, 200, 110, 0.18), transparent 38%),
    linear-gradient(145deg, #071f19, #163b2d);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(7, 31, 25, 0.16);
}

.academy-status-panel div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.academy-status-panel span,
.academy-progress-card span,
.academy-track-system span,
.academy-lesson-grid span,
.academy-toolkit-grid span {
  color: #f4c86e;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.academy-status-panel strong {
  color: #fff;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 0.88;
}

.academy-status-panel p {
  margin: 0;
  color: #dce8df;
}

.academy-status-bars {
  display: grid;
  gap: 12px;
}

.academy-status-bars span {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  color: #dce8df;
}

.academy-status-bars span::after {
  content: attr(data-progress);
  justify-self: end;
  color: #fff;
}

.academy-status-bars span::before {
  content: "";
  grid-column: 1 / -1;
  height: 9px;
  background:
    linear-gradient(90deg, #f4c86e var(--value), rgba(255, 255, 255, 0.16) var(--value));
  border-radius: 999px;
}

.academy-workspace,
.academy-lessons,
.academy-toolkit,
.academy-checkpoints {
  padding: 74px 0;
}

.academy-workspace-head,
.academy-checkpoints {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.5fr);
  gap: 24px;
  align-items: stretch;
}

.academy-progress-card,
.academy-checkpoint-panel {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(15, 46, 35, 0.11);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.academy-progress-card strong {
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1.14;
}

.academy-progress-card p,
.academy-checkpoint-panel p {
  margin: 0;
  color: var(--muted);
}

.academy-track-system,
.academy-lesson-grid,
.academy-toolkit-grid,
.dashboard-academy-grid {
  display: grid;
  gap: 14px;
}

.academy-track-system {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
}

.academy-track-system article,
.academy-lesson-grid article,
.academy-toolkit-grid article,
.dashboard-academy-grid article {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 22px;
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(15, 46, 35, 0.11);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.academy-track-system article {
  min-height: 270px;
}

.academy-track-system article:nth-child(1),
.academy-track-system article:nth-child(4) {
  color: #fff;
  background:
    radial-gradient(circle at 90% 8%, rgba(244, 200, 110, 0.16), transparent 34%),
    linear-gradient(145deg, #071f19, #163b2d);
  border-color: rgba(255, 255, 255, 0.12);
}

.academy-track-system article:nth-child(1) h3,
.academy-track-system article:nth-child(1) p,
.academy-track-system article:nth-child(1) a,
.academy-track-system article:nth-child(4) h3,
.academy-track-system article:nth-child(4) p,
.academy-track-system article:nth-child(4) a {
  color: #fff;
}

.academy-track-system p,
.academy-lesson-grid p,
.academy-toolkit-grid p,
.dashboard-academy-grid p {
  color: var(--muted);
}

.academy-track-system a,
.academy-toolkit-grid a,
.dashboard-academy-grid a {
  margin-top: auto;
  color: var(--leaf-dark);
  font-weight: 850;
}

.academy-track-system article:nth-child(1) a,
.academy-track-system article:nth-child(4) a {
  color: #f4c86e;
}

.academy-lesson-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.academy-lesson-grid article {
  min-height: 390px;
}

.academy-lesson-grid article > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
}

.academy-lesson-grid b {
  flex: 0 0 auto;
  padding: 6px 8px;
  color: var(--muted);
  background: #f6f8f1;
  border: 1px solid rgba(15, 46, 35, 0.1);
  border-radius: 8px;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 840;
}

.academy-lesson-grid ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 14px 0 18px;
  list-style: none;
}

.academy-lesson-grid li {
  position: relative;
  padding-left: 17px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.42;
}

.academy-lesson-grid li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 999px;
}

.academy-lesson-grid .button {
  width: 100%;
  margin-top: auto;
}

.academy-lesson-grid article.is-complete {
  border-color: rgba(15, 46, 35, 0.3);
  box-shadow: 0 18px 46px rgba(15, 46, 35, 0.09);
}

.academy-lesson-grid article.is-complete b {
  color: #fff;
  background: var(--leaf-dark);
}

.academy-toolkit {
  background:
    linear-gradient(180deg, rgba(243, 239, 229, 0.88), rgba(246, 248, 241, 0));
  border-block: 1px solid rgba(15, 46, 35, 0.08);
}

.academy-toolkit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.academy-toolkit-grid article {
  min-height: 260px;
}

.academy-checkpoint-grid {
  display: grid;
  gap: 10px;
}

.academy-checkpoint-grid label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  min-height: 58px;
  padding: 16px;
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid rgba(15, 46, 35, 0.12);
  border-radius: 8px;
  font-weight: 800;
}

.academy-checkpoint-grid input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--leaf-dark);
}

.dashboard-academy-card {
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.98), rgba(246, 248, 242, 0.9));
}

.dashboard-academy-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 16px;
}

.dashboard-academy-grid article {
  min-height: 190px;
  padding: 18px;
  background: rgba(15, 46, 35, 0.045);
  box-shadow: none;
}

.dashboard-academy-grid article.is-complete {
  background: rgba(15, 46, 35, 0.09);
}

.dashboard-academy-grid span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-academy-grid strong {
  display: block;
  margin: 12px 0 6px;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.2;
}

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

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

.path-grid article {
  display: flex;
  min-height: 260px;
  flex-direction: column;
}

.path-grid a {
  margin-top: auto;
  color: var(--leaf-dark);
  font-weight: 800;
}

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

.photo-story {
  padding: 76px 0;
}

.photo-story-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.65fr);
  gap: 32px;
  max-width: none;
  align-items: end;
}

.photo-story-heading .eyebrow,
.photo-story-heading h2 {
  grid-column: 1;
}

.photo-story-heading p:not(.eyebrow) {
  grid-column: 2;
  margin-bottom: 8px;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.9fr;
  gap: 12px;
}

.photo-grid figure {
  position: relative;
  min-height: 440px;
  margin: 0;
  overflow: hidden;
  background: #071f19;
  border: 1px solid rgba(15, 46, 35, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(7, 31, 25, 0.1);
}

.photo-grid img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.03);
  opacity: 0.88;
}

.photo-grid figure:nth-child(1) img {
  object-position: center 35%;
}

.photo-grid figure:nth-child(2) img {
  object-position: center 38%;
}

.photo-grid figure:nth-child(3) img {
  object-position: center 56%;
}

.photo-grid figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 16px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(7, 31, 25, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font-size: 0.9rem;
  backdrop-filter: blur(14px);
}

.photo-grid figcaption span {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 1.04rem;
  font-weight: 800;
}

.conversion-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.conversion-proof-grid article {
  min-height: 230px;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.conversion-proof-grid span {
  color: var(--leaf-dark);
}

.conversion-proof-grid strong {
  display: block;
  margin: 24px 0 8px;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.16;
}

.conversion-proof-grid p {
  margin: 0;
  color: var(--muted);
}

.affiliate-photo-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.91fr 0.91fr;
  gap: 12px;
  margin-top: 14px;
}

.affiliate-photo-grid figure {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  background: #071f19;
  border: 1px solid rgba(15, 46, 35, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(7, 31, 25, 0.1);
}

.affiliate-photo-grid img {
  height: 100%;
  min-height: 360px;
  filter: saturate(0.9) contrast(1.03);
}

.affiliate-photo-grid figure:nth-child(1) img {
  object-position: center 42%;
}

.affiliate-photo-grid figure:nth-child(2) img {
  object-position: center 45%;
}

.affiliate-photo-grid figure:nth-child(3) img {
  object-position: center 42%;
}

.inclusion {
  padding: 68px 0;
  background:
    linear-gradient(135deg, rgba(7, 31, 25, 0.97), rgba(15, 46, 35, 0.92)),
    #071f19;
  color: #fff;
}

.inclusion .eyebrow {
  color: #f4c86e;
}

.inclusion .section-heading p:not(.eyebrow) {
  color: #dce7df;
}

.inclusion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.inclusion-grid article {
  min-height: 250px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.055);
  border: 0;
}

.inclusion-grid span {
  display: inline-flex;
  margin-bottom: 26px;
  color: #f4c86e;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inclusion-grid h3 {
  color: #fff;
}

.inclusion-grid p {
  color: #dce7df;
}

.impact {
  padding: 68px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 31, 25, 0.94), rgba(15, 46, 35, 0.72)),
    linear-gradient(135deg, #6f8b69, #071f19);
}

.impact-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 54px;
  align-items: center;
}

.impact-inner p:not(.eyebrow) {
  color: #e0e9e2;
  font-size: 1.2rem;
}

.timeline {
  display: grid;
  gap: 14px;
  max-width: 900px;
}

.timeline article {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 42px rgba(31, 54, 38, 0.055);
}

.timeline span {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  color: var(--leaf-dark);
  background: var(--field);
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline p {
  color: var(--muted);
}

.proof-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 44px;
  align-items: center;
  padding: 74px 0;
}

.proof-band p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.12rem;
}

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

details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 800;
}

details p {
  padding: 0 22px 22px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 68px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(244, 200, 110, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(244, 200, 110, 0.07) 1px, transparent 1px),
    #0c2c22;
  background-size: 34px 34px;
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.5fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.final-cta-copy {
  max-width: 700px;
}

.final-cta-copy h2 {
  margin: 0;
  max-width: 640px;
  font-size: clamp(2.7rem, 5.2vw, 5.4rem);
  line-height: 0.95;
}

.final-cta p {
  max-width: 620px;
  color: #dcebe0;
}

.final-cta-panel {
  display: grid;
  gap: 16px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.final-cta-panel .status-pill {
  width: fit-content;
  color: #102e23;
  background: #f4c86e;
}

.final-cta-panel .hero-actions {
  margin: 4px 0 0;
}

.final-cta-panel .button {
  min-width: 0;
  flex: 1;
}

.route-list {
  display: grid;
  gap: 8px;
}

.route-list span {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 780;
}

.route-list span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 10px;
  background: #f4c86e;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(244, 200, 110, 0.14);
}

.contact-layout {
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.62fr);
}

.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.contact-cards a {
  padding: 12px 14px;
  color: var(--leaf-dark);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.contact-directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
  margin-top: 16px;
}

.contact-directory article {
  min-width: 0;
  padding: 12px 14px;
  background: rgba(255, 253, 248, 0.84);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(11, 36, 28, 0.06);
}

.contact-directory span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-directory a {
  color: var(--leaf-dark);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.routing-note {
  max-width: 640px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #334038;
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #fffef9;
  border: 1px solid #cfdbcf;
  border-radius: 8px;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.intake-hero {
  padding: 42px 0 30px;
  background: #f6f8f1;
}

.intake-hero-inner,
.dashboard-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.72fr);
  gap: 38px;
  align-items: center;
}

.intake-hero-inner > *,
.dashboard-hero > *,
.hero > * {
  min-width: 0;
}

.product-hero h1 {
  max-width: 680px;
  font-size: clamp(2.2rem, 3vw, 3.35rem);
  line-height: 1.02;
}

.product-hero .hero-lede {
  max-width: 620px;
  font-size: clamp(1rem, 1.35vw, 1.14rem);
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.proof-row span {
  padding: 8px 10px;
  color: #334238;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 800;
}

.selected-plan-card {
  display: grid;
  gap: 8px;
  max-width: 620px;
  margin-top: 18px;
  padding: 18px;
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(15, 46, 35, 0.12);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(31, 54, 38, 0.06);
}

.selected-plan-card[hidden] {
  display: none;
}

.selected-plan-card > span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.selected-plan-card strong {
  color: var(--leaf-dark);
  font-size: 1.18rem;
  line-height: 1.12;
}

.selected-plan-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.selected-plan-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 6px;
}

.selected-plan-includes span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 9px;
  color: var(--leaf-dark);
  background: #f2eee4;
  border: 1px solid rgba(15, 46, 35, 0.1);
  border-radius: 8px;
  font-size: 0.74rem;
  font-weight: 800;
}

.hero-media-card {
  position: relative;
}

.hero-media-card img {
  width: 100%;
  min-height: 340px;
  max-height: 440px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(31, 54, 38, 0.08);
}

.ops-summary {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(340px, calc(100% - 36px));
  padding: 18px;
  color: #fff;
  background: rgba(7, 31, 25, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(7, 31, 25, 0.18);
  backdrop-filter: blur(14px);
}

.ops-summary span {
  display: block;
  margin-bottom: 7px;
  color: #f3cf80;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ops-summary strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
  line-height: 1.18;
}

.ops-summary p {
  margin: 0;
  color: #dfe9df;
  font-size: 0.9rem;
}

.qualification-preview {
  padding: 22px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(7, 31, 25, 0.96), rgba(15, 46, 35, 0.88)),
    var(--forest-dark);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 22px 62px rgba(7, 31, 25, 0.18);
}

.qualification-preview-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.qualification-preview-header span,
.qualification-output span,
.qualification-score span {
  display: block;
  color: #f4c86e;
  font-size: 0.72rem;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.qualification-preview-header strong,
.qualification-output strong {
  display: block;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.16;
}

.qualification-bars {
  display: grid;
  gap: 14px;
  margin: 22px 0;
}

.qualification-bars span {
  display: grid;
  gap: 7px;
  color: #dfe8e1;
  font-size: 0.86rem;
  font-weight: 760;
}

.qualification-bars span::after {
  content: "";
  display: block;
  height: 10px;
  background:
    linear-gradient(90deg, var(--clay) 0 var(--value), rgba(255, 255, 255, 0.16) var(--value) 100%);
  border-radius: 999px;
}

.qualification-output {
  padding: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 8px;
}

.qualification-output span {
  color: var(--gold);
}

.qualification-output strong {
  margin-top: 6px;
  color: var(--ink);
}

.qualification-output p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.intake-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 24px;
  align-items: start;
  padding: 44px 0 76px;
}

.intake-form {
  display: grid;
  gap: 16px;
}

.form-section,
.recommendation-card,
.dashboard-card {
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(31, 54, 38, 0.05);
}

.form-section h2,
.recommendation-card h2,
.dashboard-card h2 {
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-grid label,
.intake-form label {
  display: grid;
  gap: 8px;
  color: #334038;
  font-size: 0.9rem;
  font-weight: 800;
}

.span-2 {
  grid-column: span 2;
}

.intake-form input,
.intake-form select,
.intake-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #fffef9;
  border: 1px solid #cfdbcf;
  border-radius: 8px;
  font: inherit;
}

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

.option-grid label,
.consent {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 10px;
  padding: 14px;
  background: #f8faf5;
  border: 1px solid #e1eadf;
  border-radius: 8px;
}

.option-grid input[type="checkbox"],
.option-grid input[type="radio"],
.consent input[type="checkbox"],
.consent input[type="radio"],
.intake-form .option-grid input[type="checkbox"],
.intake-form .option-grid input[type="radio"],
.intake-form label.consent input[type="checkbox"],
.intake-form label.consent input[type="radio"],
.contact-form label.consent input[type="checkbox"],
.contact-form label.consent input[type="radio"],
.dashboard-mini-form label.consent input[type="checkbox"],
.dashboard-mini-form label.consent input[type="radio"] {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  flex: 0 0 18px;
  padding: 0;
  margin: 0;
  accent-color: var(--leaf-dark);
}

.option-grid label,
.consent,
.option-grid label span,
.consent span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.form-grid .consent,
.intake-form label.consent,
.contact-form label.consent {
  display: flex;
}

.consent-section {
  display: grid;
  gap: 14px;
}

.sms-consent {
  align-items: flex-start;
  color: #2d3a32;
  font-size: 0.78rem;
  line-height: 1.45;
  font-weight: 700;
}

.sms-consent input {
  width: 18px;
  margin-top: 3px;
  flex: 0 0 auto;
}

.sms-consent a,
.sms-disclosure-card a {
  color: var(--leaf-dark);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sms-disclosure-card {
  max-width: 640px;
  margin-top: 16px;
  padding: 16px;
  color: #324039;
  background: #f8faf5;
  border: 1px solid #dfe7dc;
  border-radius: 8px;
}

.sms-disclosure-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--leaf-dark);
}

.sms-disclosure-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
}

.recommendation-card {
  position: sticky;
  top: 92px;
}

.qualification-score {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px;
  margin-top: 18px;
  background: #f6f8f1;
  border: 1px solid #e1eadf;
  border-radius: 8px;
}

.qualification-score strong {
  color: var(--leaf-dark);
  font-size: 1.55rem;
  line-height: 1;
}

.route-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.route-tags span {
  padding: 7px 9px;
  color: var(--leaf-dark);
  background: var(--field);
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 820;
}

.route-fine-print {
  color: var(--muted);
  font-size: 0.86rem;
}

.mini-flow {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.mini-flow span {
  padding: 12px;
  color: var(--leaf-dark);
  background: var(--field);
  border-radius: 8px;
  font-weight: 800;
}

.dashboard-page {
  background: #f6f8f1;
}

.dashboard-hero {
  padding: 42px 0 30px;
}

.dashboard-command-center {
  padding: 20px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 31, 25, 0.96), rgba(15, 46, 35, 0.88)),
    var(--forest-dark);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 22px 62px rgba(7, 31, 25, 0.18);
}

.dashboard-command-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.dashboard-command-header span,
.dashboard-command-grid span {
  display: block;
  color: #f4c86e;
  font-size: 0.72rem;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-command-header strong {
  display: block;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.14;
}

.dashboard-command-center > p {
  margin: 14px 0;
  color: #dfe8e1;
}

.dashboard-command-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}

.dashboard-command-grid article {
  padding: 13px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.dashboard-command-grid strong {
  display: block;
  margin-top: 7px;
  color: #fff;
  font-size: 1rem;
  line-height: 1.14;
}

.dashboard-signal-feed {
  display: grid;
  gap: 8px;
}

.dashboard-signal-feed p {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  padding: 11px;
  margin: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 720;
}

.dashboard-signal-feed span {
  width: 8px;
  height: 8px;
  background: var(--clay);
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(216, 138, 13, 0.14);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.35fr);
  gap: 18px;
  align-items: start;
  padding-bottom: 82px;
}

.dashboard-main,
.dashboard-side {
  display: grid;
  gap: 18px;
}

.dashboard-card-header,
.score-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.score-card h2 {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 0.9;
}

.score-ring {
  display: grid;
  width: 136px;
  height: 136px;
  flex: 0 0 auto;
  place-items: center;
  background:
    radial-gradient(circle at center, #fff 56%, transparent 57%),
    conic-gradient(var(--leaf) 0 63%, #e2e9df 63% 100%);
  border-radius: 999px;
}

.score-ring span {
  color: var(--leaf-dark);
  font-weight: 800;
}

.workstream {
  display: grid;
  gap: 0;
  margin-top: 12px;
}

.workstream article {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.workstream article > span {
  width: 16px;
  height: 16px;
  margin-top: 5px;
  background: #ccd8cd;
  border-radius: 999px;
}

.workstream .done > span {
  background: var(--leaf);
}

.workstream .active > span {
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(216, 155, 43, 0.18);
}

.workstream p,
.ai-note,
.next-actions li,
.upsell-card p,
.message-stack p {
  color: var(--muted);
}

.next-actions ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
}

.message-stack {
  display: grid;
  gap: 10px;
}

.dashboard-mini-form {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.dashboard-mini-form label {
  display: grid;
  gap: 8px;
  color: #334038;
  font-size: 0.88rem;
  font-weight: 800;
}

.dashboard-mini-form input,
.dashboard-mini-form textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  background: #fffef9;
  border: 1px solid #cfdbcf;
  border-radius: 8px;
  font: inherit;
}

.dashboard-mini-form .consent {
  display: flex;
  align-items: flex-start;
  padding: 12px;
  background: #f8faf5;
  border: 1px solid #e1eadf;
}

.dashboard-mini-form .consent input {
  width: auto;
  margin-top: 0.25em;
}

.dashboard-mini-form p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.compliance-packet {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding: 14px;
  color: #29382f;
  background: #fffaf0;
  border: 1px solid #ead8b6;
  border-radius: 8px;
}

.compliance-packet strong {
  color: var(--leaf-dark);
}

.compliance-packet ul {
  display: grid;
  gap: 6px;
  padding-left: 18px;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.compliance-packet details {
  padding-top: 8px;
  border-top: 1px solid #ead8b6;
}

.compliance-packet summary {
  cursor: pointer;
  color: var(--leaf-dark);
  font-size: 0.86rem;
  font-weight: 850;
}

.compliance-packet p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.compliance-packet-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.review-list {
  display: grid;
  gap: 10px;
}

.review-list article {
  display: grid;
  gap: 5px;
  padding: 14px;
  background: #f8faf5;
  border: 1px solid #e1eadf;
  border-radius: 8px;
}

.review-list strong {
  color: var(--ink);
}

.review-list span {
  color: var(--muted);
  font-size: 0.92rem;
}

.brain-card {
  border-color: rgba(15, 46, 35, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.98), rgba(248, 250, 245, 0.96)),
    var(--panel);
}

.brain-agent-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.brain-agent-list article {
  display: grid;
  gap: 5px;
  padding: 13px;
  background: #f8faf5;
  border: 1px solid #e1eadf;
  border-radius: 8px;
}

.brain-agent-list span {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brain-agent-list strong {
  color: var(--ink);
  font-size: 0.95rem;
}

.brain-agent-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.brain-agent-list.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.message-stack p {
  padding: 12px;
  margin: 0;
  background: #f8faf5;
  border: 1px solid #e1eadf;
  border-radius: 8px;
}

.care-team-card img {
  display: block;
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.care-team-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.care-team-list article {
  padding: 12px;
  background: #f8faf5;
  border: 1px solid #e1eadf;
  border-radius: 8px;
}

.ops-page {
  background: #f6f8f1;
}

.ops-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.48fr);
  gap: 40px;
  align-items: center;
  padding: 52px 0 34px;
}

.ops-token-card,
.ops-list-panel {
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(31, 54, 38, 0.05);
}

.ops-side-stack {
  display: grid;
  gap: 14px;
}

.ops-human-panel {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(31, 54, 38, 0.05);
}

.ops-human-panel img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.ops-human-panel div {
  padding: 18px;
}

.ops-token-card {
  display: grid;
  gap: 14px;
}

.ops-token-card label {
  display: grid;
  gap: 8px;
  color: #334038;
  font-size: 0.9rem;
  font-weight: 800;
}

.ops-token-card input {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #fffef9;
  border: 1px solid #cfdbcf;
  border-radius: 8px;
  font: inherit;
}

.ops-token-card p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.ops-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.42fr);
  gap: 18px;
  align-items: start;
  padding-bottom: 82px;
}

.ops-main {
  display: grid;
  gap: 18px;
}

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

.ops-metric-grid article {
  padding: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(31, 54, 38, 0.05);
}

.ops-metric-grid span,
.ops-detail-stack span {
  display: block;
  margin-bottom: 12px;
  color: var(--leaf-dark);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ops-metric-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.ops-metric-grid p,
.ops-case-list p,
.ops-case-list small,
.ops-detail-stack p {
  color: var(--muted);
}

.ops-control-plane {
  padding: 24px;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(31, 54, 38, 0.05);
}

.ops-launch-monitor {
  padding: 24px;
  background: linear-gradient(135deg, #102e23, #173f31);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 24px 56px rgba(15, 46, 35, 0.16);
}

.ops-launch-monitor .dashboard-card-header h2,
.ops-launch-monitor .dashboard-card-header .eyebrow {
  color: #fffef7;
}

.ops-launch-monitor .dashboard-card-header .eyebrow {
  color: var(--gold);
}

.ops-launch-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 18px 0;
}

.ops-launch-summary article,
.ops-launch-grid article,
.ops-launch-alerts article {
  min-width: 0;
  padding: 15px;
  color: #f9fbf6;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.ops-launch-summary span,
.ops-launch-grid span,
.ops-launch-alerts span {
  display: block;
  margin-bottom: 8px;
  color: #f2ca72;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ops-launch-summary strong,
.ops-launch-grid strong,
.ops-launch-alerts strong {
  display: block;
  color: #fffef7;
  line-height: 1.2;
}

.ops-launch-summary strong {
  font-size: 1.45rem;
}

.ops-launch-summary p,
.ops-launch-grid p,
.ops-launch-alerts p {
  margin: 6px 0 0;
  color: rgba(255, 254, 247, 0.78);
  font-size: 0.88rem;
}

.ops-launch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.ops-launch-grid section {
  min-width: 0;
}

.ops-launch-grid h3 {
  margin: 0 0 10px;
  color: #fffef7;
  font-size: 0.9rem;
}

.ops-launch-grid div,
.ops-launch-alerts {
  display: grid;
  gap: 8px;
}

.ops-launch-alerts {
  margin-top: 12px;
}

.ops-launch-monitor .is-pass {
  background: rgba(213, 238, 204, 0.12);
  border-color: rgba(182, 231, 169, 0.35);
}

.ops-launch-monitor .is-warn {
  background: rgba(255, 211, 113, 0.12);
  border-color: rgba(242, 202, 114, 0.42);
}

.ops-launch-monitor .is-fail {
  background: rgba(255, 113, 91, 0.12);
  border-color: rgba(255, 153, 128, 0.42);
}

.ops-control-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 18px 0;
}

.ops-control-summary article {
  padding: 15px;
  background: #f8faf5;
  border: 1px solid #e1eadf;
  border-radius: 8px;
}

.ops-control-summary span,
.ops-control-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--leaf-dark);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ops-control-summary strong {
  display: block;
  color: var(--ink);
  font-size: 1.65rem;
  line-height: 1;
}

.ops-control-summary p,
.ops-control-grid p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.ops-control-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.ops-control-grid section {
  min-width: 0;
}

.ops-control-grid h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 0.9rem;
}

.ops-control-grid div {
  display: grid;
  gap: 8px;
}

.ops-control-grid article,
.ops-control-grid button {
  width: 100%;
  min-width: 0;
  padding: 13px;
  color: inherit;
  text-align: left;
  background: #f8faf5;
  border: 1px solid #e1eadf;
  border-radius: 8px;
  font: inherit;
}

.ops-control-grid button {
  cursor: pointer;
}

.ops-control-grid button:hover {
  border-color: #b8cbb8;
}

.ops-control-grid strong {
  display: block;
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.25;
}

.ops-control-grid .is-fail {
  background: #fff6f0;
  border-color: #e7b69b;
}

.ops-control-grid .is-warn {
  background: #fffaf0;
  border-color: #ead49a;
}

.ops-control-grid .is-pass {
  background: #f5faf2;
}

.ops-case-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.ops-priority-board {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.ops-priority-board article {
  display: grid;
  gap: 5px;
  padding: 14px;
  background: linear-gradient(145deg, rgba(15, 46, 35, 0.06), rgba(255, 253, 248, 0.95));
  border: 1px solid rgba(15, 46, 35, 0.14);
  border-radius: 8px;
}

.ops-priority-board span {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ops-priority-board strong {
  color: var(--ink);
}

.ops-priority-board p {
  margin: 0;
  color: var(--muted);
}

.ops-case-list button,
.ops-case-list article {
  width: 100%;
  padding: 16px;
  color: inherit;
  text-align: left;
  background: #f8faf5;
  border: 1px solid #e1eadf;
  border-radius: 8px;
  font: inherit;
}

.ops-case-list button {
  cursor: pointer;
}

.ops-case-list button:hover {
  border-color: #b8cbb8;
}

.ops-case-list span {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 6px 8px;
  color: var(--leaf-dark);
  background: var(--field);
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ops-case-list strong,
.ops-case-list small {
  display: block;
}

.ops-detail {
  position: sticky;
  top: 92px;
}

.ops-detail > p:not(.eyebrow),
.ops-detail-stack p {
  color: var(--muted);
}

.ops-brain-panel {
  display: grid;
  gap: 8px;
  padding: 16px;
  margin-top: 16px;
  color: #eef8ef;
  background: linear-gradient(145deg, #0b241c, #123a2d);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(11, 36, 28, 0.16);
}

.ops-brain-panel > span {
  color: #f4c86e;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ops-brain-panel > strong {
  color: #fffdf8;
  font-size: 1.2rem;
}

.ops-brain-panel > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.ops-brain-panel .brain-agent-list article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.ops-brain-panel .brain-agent-list strong {
  color: #fffdf8;
}

.ops-detail-stack {
  display: grid;
  gap: 10px;
  margin: 20px 0;
}

.ops-detail-stack article {
  padding: 14px;
  background: #f8faf5;
  border: 1px solid #e1eadf;
  border-radius: 8px;
}

.ops-detail-stack strong {
  display: block;
  color: var(--ink);
}

.ops-action-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0;
}

.ops-action-row .button {
  width: 100%;
  min-height: 40px;
  padding: 0 12px;
  font-size: 0.82rem;
}

.legal-page {
  max-width: 860px;
  padding: 76px 0 96px;
}

.legal-page h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.legal-page h2 {
  margin-top: 34px;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.legal-page p {
  color: var(--muted);
  font-size: 1.05rem;
}

.legal-page a {
  color: var(--leaf-dark);
  font-weight: 800;
}

footer.site-footer,
.site-footer {
  padding: 0;
  color: #dce7df;
  background:
    radial-gradient(circle at 82% 0%, rgba(244, 200, 110, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(7, 31, 25, 0.99), rgba(15, 46, 35, 0.96)),
    #071f19;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.footer-upgrade {
  padding: 52px 0 32px;
}

.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.12), rgba(255, 255, 255, 0.045));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
}

.footer-cta .eyebrow,
.footer-compliance-grid span,
.footer-offer-ladder span {
  color: #f4c86e;
}

.footer-cta h2 {
  max-width: 760px;
  margin-bottom: 10px;
  color: #fff;
  font-size: clamp(1.75rem, 2.6vw, 2.65rem);
}

.footer-cta p:not(.eyebrow),
.footer-brand-block p,
.footer-compliance-grid p,
.footer-bottom p {
  color: #bdcac2;
}

.footer-cta p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
}

.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.footer-offer-ladder {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.footer-offer-ladder a {
  display: grid;
  gap: 4px;
  min-height: 112px;
  padding: 18px;
  background: rgba(255, 253, 248, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.footer-offer-ladder a:hover,
.footer-link-column a:hover,
.footer-contact-list a:hover {
  color: #fff;
  border-color: rgba(244, 200, 110, 0.42);
}

.footer-offer-ladder span,
.footer-compliance-grid span {
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-offer-ladder strong {
  color: #fff;
  font-size: 1.25rem;
}

.footer-offer-ladder small {
  color: #bdcac2;
  font-size: 0.88rem;
  font-weight: 650;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.35fr) repeat(5, minmax(128px, 0.58fr));
  gap: 28px;
  padding: 42px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-block .brand {
  width: fit-content;
  margin-bottom: 16px;
}

.site-footer .brand-name {
  color: #fff;
}

.site-footer .brand-subtitle {
  color: #bdcac2;
}

.footer-brand-block p {
  max-width: 360px;
  margin: 0;
}

.footer-contact-list {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.footer-contact-list a,
.footer-contact-list span {
  width: fit-content;
  color: #e8f0eb;
  font-size: 0.9rem;
  font-weight: 750;
}

.footer-link-column {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-link-column h3 {
  margin-bottom: 7px;
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-link-column a {
  color: #bdcac2;
  font-size: 0.92rem;
  font-weight: 700;
}

.footer-compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 24px 0;
}

.footer-compliance-grid article {
  padding: 16px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.footer-compliance-grid p {
  margin: 8px 0 0;
  font-size: 0.84rem;
  line-height: 1.55;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.84rem;
}

/* Footer guardrail: keeps the enterprise footer styled even if page-specific sections shift above it. */
body > footer.site-footer {
  display: block;
  width: 100%;
  margin: 0;
  color: #dce7df;
  background:
    radial-gradient(circle at 76% 0%, rgba(244, 200, 110, 0.13), transparent 34%),
    linear-gradient(135deg, #071f19, #12372a 56%, #071f19);
}

body > footer.site-footer .footer-cta,
body > footer.site-footer .footer-offer-ladder,
body > footer.site-footer .footer-main-grid,
body > footer.site-footer .footer-compliance-grid,
body > footer.site-footer .footer-bottom {
  display: grid;
}

body > footer.site-footer .footer-cta {
  grid-template-columns: minmax(0, 1fr) auto;
}

body > footer.site-footer .footer-offer-ladder {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body > footer.site-footer .footer-main-grid {
  grid-template-columns: minmax(300px, 1.35fr) repeat(5, minmax(128px, 0.58fr));
}

body > footer.site-footer .footer-bottom {
  display: flex;
}

@media (max-width: 980px) {
  .hero,
  .page-hero,
  .problem-grid,
  .conversion-inner,
  .human-layer-inner,
  .people-system,
  .buyer-journey-inner,
  .impact-inner,
  .final-cta-inner,
  .proof-band,
  .contact-layout,
  .concierge-inner,
  .intake-hero-inner,
  .dashboard-hero,
  .ops-hero,
  .intake-layout,
  .ops-layout,
  .dashboard-grid,
  .platform-system-head {
    grid-template-columns: 1fr;
  }

  .recommendation-card,
  .ops-detail {
    position: static;
  }

  .people-system-grid {
    grid-template-columns: 1fr;
  }

  .people-card.large {
    grid-row: auto;
    min-height: 420px;
  }

  .hero {
    min-height: 0;
    gap: 30px;
    padding-top: 32px;
  }

  .mockup-body,
  .mockup-workboard {
    grid-template-columns: 1fr;
  }

  .mockup-rail {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-visual.operation-preview {
    min-height: 0;
  }

  .operation-preview {
    min-height: 0;
  }

  .case-visual-lead {
    min-height: 0;
    height: 540px;
  }

  .case-visual-caption {
    top: auto;
    right: auto;
    bottom: 24px;
    left: 22px;
  }

  .hero-workflow-panel {
    right: 18px;
    bottom: 18px;
    left: auto;
  }

  .steps,
  .conversion-grid,
  .confidence-ledger,
  .human-roles,
  .journey-grid,
  .scorecard-grid,
  .path-grid,
  .path-grid.three,
  .trust-grid,
  .pricing-grid,
  .addon-grid,
  .proof-system-grid,
  .offer-ladder-grid,
  .ops-metric-grid,
  .ops-launch-summary,
  .ops-launch-grid,
  .ops-control-summary,
  .ops-control-grid,
  .option-grid,
  .system-metrics,
  .dashboard-command-grid,
  .photo-grid,
  .inclusion-grid,
  .post-payment-grid,
  .mockup-status-row,
  .customer-os-grid,
  .customer-os-progress,
  .conversion-proof-grid,
  .affiliate-photo-grid,
  .issue-grid,
  .pillar-grid,
  .timeline-grid,
  .dashboard-detail-grid,
  .roadmap-stage-grid,
  .match-grid,
  .coach-academy,
  .academy-grid,
  .membership-grid,
	  .resource-preview-grid,
	  .plan-depth-grid,
	  .resource-guide-grid,
	  .trust-proof-grid,
	  .plan-receipt-grid,
	  .academy-roadmap-grid,
	  .scorecard-output-grid {
	    grid-template-columns: repeat(2, 1fr);
	  }

  .customer-os-grid article.wide {
    grid-column: span 2;
  }

  .confidence-ledger {
    margin-top: 0;
  }

  .confidence-ledger article:nth-child(2n) {
    border-right: 0;
  }

  .confidence-ledger article {
    border-bottom: 1px solid rgba(15, 46, 35, 0.1);
  }

  .confidence-ledger article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

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

  body > footer.site-footer .footer-cta {
    grid-template-columns: 1fr;
  }

  .footer-cta-actions {
    justify-content: flex-start;
  }

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

  body > footer.site-footer .footer-main-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-brand-block {
    grid-column: 1 / -1;
  }

  .footer-compliance-grid,
  .footer-offer-ladder {
    grid-template-columns: 1fr;
  }

  body > footer.site-footer .footer-compliance-grid,
  body > footer.site-footer .footer-offer-ladder {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .header-trust {
    justify-content: flex-start;
    gap: 10px;
    padding: 7px 14px;
    overflow: hidden;
    scrollbar-width: none;
    font-size: 0.64rem;
  }

  .header-trust::-webkit-scrollbar {
    display: none;
  }

  .header-trust span:nth-of-type(n + 2) {
    display: none;
  }

  .header-trust .header-phone {
    margin-left: auto;
    font-size: 0.64rem;
  }

  .header-main {
    gap: 8px;
    padding: 11px 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand-copy {
    min-width: 0;
    max-width: 150px;
  }

  .brand-name,
  .brand-subtitle {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-quick-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0;
  }

  .header-quick-cta::after {
    content: "Start";
    font-size: 0.82rem;
  }

  .nav-toggle {
    display: block;
  }

  .header-actions {
    display: flex;
    flex: 0 0 auto;
    gap: 8px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 6px);
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav .nav-cta {
    margin-left: 0;
  }

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

  .intake-hero-inner,
  .intake-layout {
    width: min(calc(100vw - 28px), 1160px);
  }

  .brand-icon {
    width: 34px;
    height: 34px;
  }

  .hero::before {
    display: none;
  }

  .hero {
    gap: 18px;
    padding: 20px 0 30px;
  }

  .hero-copy,
  .hero-visual-stack,
  .page-hero > *,
  .section-heading,
  .hero-lede,
  h1,
  h2,
  h3,
  p {
    min-width: 0;
    max-width: 100%;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2rem, 8.6vw, 2.85rem);
    line-height: 1.02;
    overflow-wrap: normal;
  }

  .hero .hero-actions .button {
    width: 100%;
  }

  .payment-assurance {
    grid-template-columns: 1fr;
  }

  .hero-price-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 100%;
  }

  .hero-price-strip a:first-child {
    grid-column: 1 / -1;
  }

  .hero-system-mockup {
    padding: 12px;
  }

  .mockup-topbar,
  .customer-os-header {
    display: grid;
    gap: 8px;
  }

  .mockup-rail {
    display: none;
  }

  .mockup-body {
    margin-top: 10px;
  }

  .mockup-status-row {
    gap: 8px;
  }

  .mockup-status-row article {
    padding: 12px;
  }

  .mockup-workboard h2 {
    font-size: clamp(1.42rem, 7vw, 1.95rem);
  }

  .mockup-workboard section,
  .mockup-workboard aside {
    padding: 14px;
  }

  .mockup-timeline {
    gap: 7px;
  }

  .mockup-timeline p {
    padding: 9px;
    font-size: 0.82rem;
  }

  .mockup-timeline p:nth-child(n + 3) {
    display: none;
  }

  .photo-story-heading,
  .photo-story-heading .eyebrow,
  .photo-story-heading h2,
  .photo-story-heading p:not(.eyebrow) {
    display: block;
  }

  h1 {
    font-size: clamp(2.05rem, 8.4vw, 2.72rem);
  }

  .product-hero h1 {
    max-width: 100%;
    font-size: clamp(1.62rem, 6.1vw, 2.05rem);
    overflow-wrap: anywhere;
  }

  .product-hero .hero-lede {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .proof-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-row span {
    min-width: 0;
    text-align: center;
  }

  .hero-visual {
    min-height: 560px;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 8.2vw, 2.8rem);
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-visual.operation-preview {
    min-height: 0;
  }

  .operation-preview {
    padding: 0;
  }

  .case-visual-lead {
    height: 500px;
  }

  .case-visual-chip.chip-two {
    top: 58px;
    right: 14px;
  }

  .case-visual-caption {
    top: 86px;
    right: 18px;
    bottom: auto;
    left: 18px;
  }

  .hero-workflow-panel {
    right: 14px;
    bottom: 14px;
    left: auto;
    width: calc(100% - 28px);
    padding: 14px;
  }

  .hero-workflow-header {
    display: grid;
    gap: 5px;
  }

  .hero-workflow-header strong {
    max-width: none;
    text-align: left;
  }

  .hero-file-list p {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 10px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip span {
    min-height: 46px;
    border-right: 0;
    border-bottom: 1px solid rgba(15, 46, 35, 0.1);
  }

  .trust-strip span:last-child {
    border-bottom: 0;
  }

  .phone-card {
    right: 18px;
    left: 18px;
    width: auto;
  }

  .insight-panel {
    right: 18px;
    left: 18px;
    width: auto;
  }

  .stat-grid,
  .steps,
  .conversion-grid,
  .confidence-ledger,
  .human-roles,
  .journey-grid,
  .path-grid,
  .path-grid.three,
  .trust-grid,
  .pricing-grid,
  .addon-grid,
  .proof-system-grid,
  .offer-ladder-grid,
  .ops-metric-grid,
  .ops-launch-summary,
  .ops-launch-grid,
  .ops-control-summary,
  .ops-control-grid,
  .option-grid,
  .form-grid,
  .system-metrics,
  .system-console,
  .dashboard-command-grid,
  .photo-grid,
  .inclusion-grid,
  .post-payment-grid,
  .mockup-status-row,
  .customer-os-grid,
  .customer-os-progress,
  .conversion-proof-grid,
  .affiliate-photo-grid,
  .scorecard-grid,
  .issue-grid,
  .pillar-grid,
  .timeline-grid,
  .dashboard-detail-grid,
  .roadmap-stage-grid,
  .match-grid,
  .coach-academy,
  .academy-grid,
	  .membership-grid,
	  .resource-preview-grid,
	  .plan-depth-grid,
	  .resource-guide-grid,
	  .trust-proof-grid,
	  .plan-receipt-grid,
	  .academy-roadmap-grid,
	  .scorecard-output-grid,
	  .footer-main-grid,
  .footer-compliance-grid,
	  .footer-offer-ladder {
	    grid-template-columns: 1fr;
	  }

  body > footer.site-footer .footer-cta,
  body > footer.site-footer .footer-main-grid,
  body > footer.site-footer .footer-compliance-grid,
  body > footer.site-footer .footer-offer-ladder {
    grid-template-columns: 1fr;
  }

  .footer-upgrade {
    padding: 34px 0 24px;
  }

  .footer-cta,
  .footer-offer-ladder a,
  .footer-compliance-grid article {
    padding: 18px;
  }

  .footer-cta-actions,
  .footer-cta-actions .button {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
  }

  body > footer.site-footer .footer-bottom {
    flex-direction: column;
  }

  .post-payment-grid article::after {
    display: none;
  }

  .hero-human-card {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
  }

  .hero-human-card img {
    height: 86px;
    object-position: 68% 50%;
  }

  .hero-human-card figcaption {
    font-size: 0.84rem;
    line-height: 1.24;
  }

  .control-stack-photo,
  .customer-context-photo,
  .affiliate-photo-grid figure {
    min-height: 300px;
  }

  .control-stack-photo img,
  .customer-context-photo img,
  .affiliate-photo-grid img {
    height: 300px;
    min-height: 300px;
  }

  .customer-os-grid article.wide {
    grid-column: auto;
  }

  .institutional-badge {
    gap: 6px;
  }

  .institutional-badge span:nth-child(n + 3) {
    display: none;
  }

  .institutional-badge span {
    min-height: 28px;
    font-size: 0.64rem;
  }

  .confidence-ledger {
    margin-bottom: 42px;
  }

  .confidence-ledger article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(15, 46, 35, 0.1);
  }

  .confidence-ledger article:last-child {
    border-bottom: 0;
  }

  .system-window {
    min-height: 0;
    padding: 16px;
  }

  .system-titlebar,
  .qualification-preview-header,
  .dashboard-command-header {
    display: grid;
  }

  .qualification-preview {
    min-width: 0;
    padding: 18px;
    overflow: hidden;
  }

  .product-hero h1 {
    max-width: 100%;
    font-size: clamp(2rem, 8.7vw, 2.65rem);
    overflow-wrap: anywhere;
  }

  .product-hero .hero-lede {
    font-size: 0.98rem;
  }

  .selected-plan-card {
    overflow: hidden;
  }

  .span-2 {
    grid-column: auto;
  }

  .hero-media-card img {
    min-height: 280px;
  }

  .human-photo img {
    min-height: 320px;
  }

  .people-system {
    padding: 58px 0;
  }

  .people-card,
  .people-card.large {
    min-height: 340px;
  }

  .ops-summary {
    position: static;
    width: auto;
    margin-top: 10px;
  }

  .dashboard-card-header,
  .score-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero {
    min-height: 0;
    padding: 52px 0;
  }

  .contact-directory {
    grid-template-columns: 1fr;
  }

  .brain-agent-list.compact {
    grid-template-columns: 1fr;
  }

  .stat-grid article {
    min-height: 0;
  }

  .split,
  .trust,
  .faq {
    padding: 62px 0;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .path-router,
  .business-monetization,
  .pricing-preview {
    padding: 44px 0;
  }

  .steps article,
  .path-grid article,
  .trust-grid article,
  .pricing-grid article,
  .addon-grid article,
  .proof-system-grid article,
  .offer-ladder-grid article,
  .conversion-proof-grid article {
    min-height: 0;
    padding: 20px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 430px) {
  .intake-hero-inner,
  .intake-layout {
    width: calc(100vw - 28px);
    max-width: 362px;
    margin-right: auto;
    margin-left: auto;
  }

  .qualification-preview,
  .intake-form,
  .recommendation-card {
    max-width: 100%;
  }

  .header-quick-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0;
  }

  .header-quick-cta::after {
    content: "Start";
    font-size: 0.82rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .phone-card {
    padding: 18px;
  }

  .score {
    font-size: 2.8rem;
  }

  .case-visual-lead {
    height: 470px;
  }

  .case-visual-chip {
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.68rem;
  }

  .case-visual-chip.chip-two {
    display: none;
  }

  .case-visual-caption strong {
    font-size: 1.02rem;
  }

  .hero-next-step {
    padding: 11px;
  }
}

/* Homepage format pass: one guided buying path instead of stacked modules. */
.format-home {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(247, 243, 234, 0.98) 540px),
    var(--paper);
}

.format-home .proof-system,
.format-home .concierge,
.format-home .inclusion,
.format-home .impact {
  display: none;
}

.format-home .hero.section-shell {
  width: min(1180px, calc(100% - 48px));
}

.format-home .hero {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 54px);
  padding: 38px 0 30px;
}

.format-home .hero::before {
  inset: 24px -4vw 28px auto;
  width: min(560px, 44vw);
  opacity: 0.12;
}

.format-home .hero h1 {
  max-width: 680px;
  font-size: clamp(2.8rem, 4.35vw, 4.45rem);
  line-height: 0.98;
}

.format-home .hero-lede {
  max-width: 640px;
  font-size: clamp(1rem, 1.18vw, 1.1rem);
}

.format-home .hero-actions {
  margin-top: 26px;
}

.format-home .payment-assurance {
  max-width: 640px;
}

.format-home .trust-strip {
  max-width: 640px;
  margin-top: 14px;
}

.format-home .hero-visual-stack {
  align-self: center;
  gap: 12px;
}

.format-home .hero-system-mockup {
  padding: 14px;
}

.format-home .mockup-body {
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 10px;
}

.format-home .mockup-rail {
  gap: 6px;
  padding: 10px;
}

.format-home .mockup-status-row {
  gap: 8px;
}

.format-home .mockup-status-row article {
  padding: 12px;
}

.format-home .mockup-workboard {
  grid-template-columns: 1fr;
  margin-top: 10px;
}

.format-home .mockup-workboard aside {
  display: none;
}

.format-home .mockup-workboard section {
  padding: 16px;
}

.format-home .mockup-workboard h2 {
  max-width: 520px;
  font-size: clamp(1.35rem, 2.1vw, 1.82rem);
  line-height: 1.02;
}

.format-home .mockup-timeline {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.format-home .hero-human-card {
  grid-template-columns: 138px minmax(0, 1fr);
  padding: 10px;
}

.format-home .hero-human-card img {
  height: 104px;
}

.format-home .confidence-ledger {
  margin-top: 0;
  margin-bottom: 0;
  background: var(--panel);
  box-shadow: 0 18px 48px rgba(7, 31, 25, 0.07);
}

.format-home .confidence-ledger article {
  min-height: 0;
  padding: 18px;
}

.format-home .post-payment {
  width: min(1160px, calc(100% - 40px));
  padding: 56px 0;
  box-shadow: 0 0 0 100vmax #f0ebe1;
  clip-path: inset(0 -100vmax);
}

.format-home .platform-assessment,
.format-home .platform-pillars,
.format-home .business-roadmap,
.format-home .coach-academy,
.format-home .dashboard-walkthrough,
.format-home .resource-preview {
  padding-top: 56px;
  padding-bottom: 56px;
}

.format-home .platform-pillars,
.format-home .business-roadmap {
  border-top: 1px solid rgba(15, 46, 35, 0.08);
}

.format-home .pricing-preview .pricing-grid {
  grid-template-columns: repeat(4, 1fr);
}

.format-home .post-payment .section-heading {
  max-width: 760px;
  margin-bottom: 22px;
}

.format-home .post-payment-grid {
  gap: 10px;
}

.format-home .post-payment-grid article {
  min-height: 0;
  padding: 20px;
}

.format-home .sample-review-section {
  padding: 56px 0;
}

.format-home .human-layer {
  margin: 0;
  padding: 64px 0;
}

.format-home .human-layer-inner {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 36px;
}

.format-home .control-stack {
  padding: 18px;
}

.format-home .control-stack-header {
  padding: 16px;
}

.format-home .control-stack-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.format-home .control-stack-grid article {
  padding: 14px;
}

.format-home .control-stack-photo {
  min-height: 220px;
}

.format-home .control-stack-photo img {
  height: 220px;
}

.format-home .human-roles {
  grid-template-columns: 1fr;
}

.format-home .human-roles article {
  min-height: 0;
  padding: 16px 18px;
}

.format-home .people-system {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  margin: 0 auto;
  padding: 66px 0;
}

.format-home .people-system-copy {
  max-width: 500px;
}

.format-home .customer-os-preview {
  padding: 18px;
}

.format-home .customer-context-photo {
  min-height: 210px;
}

.format-home .customer-context-photo img {
  height: 210px;
}

.format-home .photo-story {
  padding: 64px 0;
}

.format-home .photo-story-heading {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.78fr);
  gap: 24px;
  margin-bottom: 22px;
}

.format-home .conversion-proof-grid {
  gap: 10px;
}

.format-home .conversion-proof-grid article {
  min-height: 0;
  padding: 20px;
}

.format-home .affiliate-photo-grid {
  grid-template-columns: 1.08fr 0.96fr 0.96fr;
  gap: 10px;
}

.format-home .affiliate-photo-grid figure,
.format-home .affiliate-photo-grid img {
  min-height: 320px;
}

.format-home .trust {
  padding: 64px 0;
}

.format-home .trust .section-heading {
  margin-bottom: 22px;
}

.format-home .final-cta {
  margin-top: 0;
}

@media (max-width: 980px) {
  .format-home .hero,
  .format-home .human-layer-inner,
  .format-home .people-system {
    grid-template-columns: 1fr;
  }

  .format-home .hero h1,
  .format-home .hero-lede,
  .format-home .payment-assurance,
  .format-home .trust-strip {
    max-width: none;
  }

  .format-home .mockup-body {
    grid-template-columns: 1fr;
  }

  .format-home .mockup-rail {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .format-home .control-stack-grid,
  .format-home .post-payment-grid,
  .format-home .sample-review-grid,
  .format-home .confidence-ledger,
  .format-home .pricing-preview .pricing-grid,
  .format-home .affiliate-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .format-home .photo-story-heading {
    display: block;
  }
}

@media (max-width: 760px) {
  .format-home .hero.section-shell,
  .format-home .post-payment {
    width: calc(100% - 28px);
    max-width: 1160px;
  }

  .format-home .hero {
    gap: 16px;
    padding: 20px 0 32px;
  }

  .format-home .institutional-badge {
    margin-bottom: 14px;
  }

  .format-home .hero h1 {
    font-size: clamp(2rem, 8.6vw, 2.85rem);
  }

  .format-home .hero-actions {
    margin-top: 20px;
  }

  .format-home .hero .hero-actions .button {
    width: 100%;
  }

  .format-home .payment-assurance,
  .format-home .mockup-status-row,
  .format-home .mockup-timeline,
  .format-home .confidence-ledger,
  .format-home .post-payment-grid,
  .format-home .sample-review-grid,
  .format-home .control-stack-grid,
  .format-home .customer-os-grid,
  .format-home .customer-os-progress,
  .format-home .conversion-proof-grid,
  .format-home .affiliate-photo-grid,
  .format-home .pricing-preview .pricing-grid,
  .format-home .trust-grid {
    grid-template-columns: 1fr;
  }

  .format-home .payment-assurance span:nth-child(n + 3) {
    display: none;
  }

  .format-home .mockup-status-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  .format-home .mockup-status-row article {
    min-height: 0;
    padding: 10px 8px;
  }

  .format-home .mockup-status-row span {
    font-size: 0.58rem;
    letter-spacing: 0.06em;
  }

  .format-home .mockup-status-row strong {
    margin-top: 5px;
    font-size: 0.82rem;
    line-height: 1.08;
  }

  .format-home .mockup-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .format-home .hero-human-card {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .format-home .hero-human-card img {
    height: 86px;
  }

  .format-home .post-payment,
  .format-home .platform-assessment,
  .format-home .platform-pillars,
  .format-home .business-roadmap,
  .format-home .coach-academy,
  .format-home .dashboard-walkthrough,
  .format-home .resource-preview,
  .format-home .sample-review-section,
  .format-home .human-layer,
  .format-home .people-system,
  .format-home .photo-story,
  .format-home .trust {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .format-home .customer-os-grid article.wide {
    grid-column: auto;
  }

  .format-home .affiliate-photo-grid figure,
  .format-home .affiliate-photo-grid img {
    min-height: 250px;
  }

  .hero-price-strip {
    gap: 7px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-price-strip a:first-child {
    grid-column: 1 / -1;
  }

  .hero-price-strip a {
    min-height: 58px;
    padding: 9px 8px;
  }

  .hero-price-strip strong {
    font-size: 1.12rem;
  }

  .hero-price-strip span {
    font-size: 0.62rem;
  }

  .sample-review-header {
    display: grid;
    padding: 18px;
  }

  .sample-review-grid,
  .sample-review-next {
    margin-inline: 0;
  }

  .sample-review-grid {
    padding: 12px;
  }

  .sample-review-next {
    margin: 0 12px 12px;
  }
}

@media (min-width: 961px) {
  .format-home .conversion-proof-grid,
  .format-home .affiliate-photo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .format-home .conversion-proof-grid article {
    min-height: 158px;
  }

  .format-home .affiliate-photo-grid {
    align-items: stretch;
  }

  .format-home .affiliate-photo-grid figure {
    min-height: 0;
    aspect-ratio: 1 / 1.33;
  }

  .format-home .affiliate-photo-grid img {
    height: 100%;
    min-height: 0;
  }

  .format-home .affiliate-photo-grid figcaption {
    min-height: 104px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .format-home .affiliate-photo-grid figure:nth-child(1) img {
    object-position: center 50%;
  }

  .format-home .affiliate-photo-grid figure:nth-child(2) img {
    object-position: center 50%;
  }

  .format-home .affiliate-photo-grid figure:nth-child(3) img {
    object-position: center 50%;
  }
}

@media (min-width: 761px) {
  .format-home .hero-human-card {
    grid-template-columns: minmax(220px, 0.44fr) minmax(0, 1fr);
    gap: 16px;
    align-items: stretch;
    padding: 14px;
    min-height: 178px;
  }

  .format-home .hero-human-card img {
    height: 150px;
    min-height: 150px;
    object-position: 70% 68%;
  }

  .format-home .hero-human-card figcaption {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 0.96rem;
  }
}

.mini-disclaimer {
  max-width: 620px;
  margin: 12px 0 0;
  color: #59665e;
  font-size: 0.82rem;
  font-weight: 640;
}

.path-router,
.business-monetization,
.pricing-preview {
  padding: 58px 0;
}

.credit-review-list article {
  min-height: 210px;
}

.path-grid article > span,
.pricing-grid article > span,
.offer-ladder-grid article > span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.affiliate-photo-grid.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.long-faq details {
  scroll-margin-top: 120px;
}

@media (max-width: 1180px) {
  .site-nav a {
    padding-inline: 8px;
    font-size: 0.82rem;
  }
}

@media (max-width: 760px) {
  .affiliate-photo-grid.two-up,
  .credit-review-list {
    grid-template-columns: 1fr;
  }

  .pricing-page .page-hero {
    gap: 18px;
    padding: 30px 0 24px;
  }

  .page-hero .hero-actions .button {
    width: 100%;
  }

  .pricing-page #plans {
    padding-top: 16px;
  }

  .pricing-page #plans .section-heading {
    display: none;
  }

  .pricing-page .feature-panel {
    display: none;
  }
}

@media (max-width: 430px) {
  .header-trust .header-phone {
    display: none;
  }

  .brand-copy {
    max-width: 132px;
  }

  .header-quick-cta {
    padding: 0 10px;
  }

  .hero-price-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-price-strip a:first-child {
    grid-column: 1 / -1;
  }

  .intake-hero {
    overflow: hidden;
  }

  .intake-hero-inner {
    display: block;
  }

  .product-hero h1 {
    max-width: calc(100vw - 42px);
    font-size: 1.9rem;
    line-height: 1.04;
  }

  .product-hero .hero-lede,
  .selected-plan-card {
    max-width: calc(100vw - 42px);
  }

  .product-hero .hero-lede {
    font-size: 0.95rem;
  }
}

/* Final mobile guardrails for the Credit Orchard 2.0 homepage. */
@media (max-width: 560px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header,
  main,
  footer {
    max-width: 100vw;
    overflow-x: clip;
  }

  .header-trust {
    display: grid;
    grid-template-columns: 1fr;
  }

  .header-trust .header-phone,
  .header-trust span:nth-of-type(n + 2) {
    display: none;
  }

  .header-main {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .brand-copy {
    max-width: 142px;
  }

  .section-shell,
  .format-home .hero.section-shell,
  .format-home .post-payment {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .format-home .hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .format-home .hero-copy,
  .format-home .hero-visual-stack,
  .format-home .hero-system-mockup,
  .format-home .mockup-main,
  .format-home .mockup-workboard section,
  .format-home .mockup-timeline p {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .format-home .eyebrow {
    max-width: 100%;
    font-size: 0.68rem;
    overflow-wrap: anywhere;
  }

  .format-home .hero h1 {
    max-width: calc(100vw - 28px);
    font-size: clamp(2.18rem, 11vw, 2.74rem);
    line-height: 1.01;
    overflow-wrap: normal;
    word-break: normal;
  }

  .format-home .hero-lede {
    max-width: calc(100vw - 28px);
    font-size: 0.98rem;
  }

  .button,
  .format-home .hero .hero-actions .button {
    width: 100%;
    min-height: 50px;
    height: auto;
    padding: 12px 14px;
    text-align: center;
    white-space: normal;
    line-height: 1.15;
  }

  .hero-price-strip {
    grid-template-columns: 1fr;
  }

  .hero-price-strip a,
  .hero-price-strip a:first-child {
    grid-column: auto;
  }

  .format-home .hero-system-mockup {
    padding: 12px;
    overflow: hidden;
  }

  .format-home .mockup-topbar,
  .format-home .mockup-status-row,
  .format-home .mockup-timeline {
    grid-template-columns: 1fr;
  }

  .format-home .mockup-status-row article,
  .format-home .mockup-workboard section {
    min-width: 0;
  }

  .format-home .mockup-workboard h2 {
    max-width: 100%;
    font-size: clamp(1.45rem, 7vw, 1.8rem);
    overflow-wrap: anywhere;
  }

  .format-home .mockup-timeline p:nth-child(n + 3) {
    display: flex;
  }

  .format-home .mockup-timeline p {
    align-items: center;
  }
}

/* ==========================================================================
   CREDIT ORCHARD — BRAND SYSTEM 2030
   Brand tokens (Cinzel display type + exact palette), motion choreography,
   and interaction polish layered over the base sheet. Last-defined wins, so
   this block intentionally lives at the end of the cascade.
   ========================================================================== */

:root {
  /* Exact brand palette (credit-orchard brand board) */
  --co-forest: #0f2e23;
  --co-forest-dark: #071f19;
  --co-sage: #6f8b69;
  --co-sage-light: #a8b89a;
  --co-orange: #d88a0d;
  --co-gold: #b6760e;
  --co-cream: #f6f2e8;
  --co-paper: #fbf8ef;
  --co-mist: #e9e4d8;
  --co-charcoal: #111111;

  /* Re-point shared tokens to brand-exact values (near-identical, safe) */
  --leaf: #6f8b69;

  /* Display type */
  --font-display: "Cinzel", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-serif-soft: "Cormorant Garamond", Georgia, serif;

  /* Motion system */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.4, 0.5, 1);
  --dur-fast: 160ms;
  --dur: 280ms;
  --dur-slow: 640ms;

  --co-ring: 0 0 0 3px rgba(216, 138, 13, 0.32);
  --co-lift: 0 30px 70px -28px rgba(7, 31, 25, 0.42);
}

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

::selection {
  background: rgba(216, 138, 13, 0.24);
  color: var(--co-forest-dark);
}

/* --------------------------------------------------------------------------
   1. DISPLAY TYPOGRAPHY — Cinzel for the wordmark and major headings
   -------------------------------------------------------------------------- */

h1,
h2,
.section-heading h2,
.page-hero h1,
.hero h1,
.final-cta-panel h2 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.012em;
}

.hero h1,
.page-hero h1 {
  font-weight: 600;
  letter-spacing: 0.008em;
  line-height: 1.04;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.98rem;
}

/* Eyebrow accent rule — scoped to display contexts so footers stay clean */
.section-heading > .eyebrow,
.hero-copy > .eyebrow,
.page-hero .eyebrow,
.final-cta-panel .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.section-heading > .eyebrow::before,
.hero-copy > .eyebrow::before,
.page-hero .eyebrow::before,
.final-cta-panel .eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--co-orange), var(--co-gold));
  border-radius: 2px;
  transform-origin: left center;
  animation: co-rule 0.9s var(--ease-out) both;
  animation-delay: 0.1s;
}

/* --------------------------------------------------------------------------
   2. FOCUS — accessible, on-brand focus ring sitewide
   -------------------------------------------------------------------------- */

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: none;
  box-shadow: var(--co-ring);
  border-radius: 9px;
}

/* --------------------------------------------------------------------------
   3. HEADER — smoother sticky transition + living trust dots
   -------------------------------------------------------------------------- */

.site-header {
  transition:
    box-shadow var(--dur) var(--ease-out),
    background var(--dur) var(--ease-out),
    backdrop-filter var(--dur) var(--ease-out);
}

.site-header.is-scrolled {
  background: rgba(251, 248, 239, 0.97);
}

.header-trust span::before,
.header-trust a::before {
  animation: co-pulse 3.4s var(--ease-in-out) infinite;
}

.brand {
  transition: transform var(--dur) var(--ease-out);
}

.brand:hover {
  transform: translateY(-1px);
}

.brand-icon {
  transition:
    transform var(--dur-slow) var(--ease-spring),
    box-shadow var(--dur) var(--ease-out);
}

.brand:hover .brand-icon {
  transform: rotate(-5deg) scale(1.06);
  box-shadow: 0 16px 34px rgba(15, 46, 35, 0.22);
}

/* --------------------------------------------------------------------------
   4. NAVIGATION — animated underline + lifting CTAs
   -------------------------------------------------------------------------- */

.site-nav a {
  position: relative;
  transition:
    color var(--dur) var(--ease-out),
    background var(--dur) var(--ease-out);
}

.site-nav a:not(.nav-cta):not(.nav-phone)::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--co-orange), var(--co-gold));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--dur) var(--ease-out);
}

.site-nav a:not(.nav-cta):not(.nav-phone):hover::after,
.site-nav a[aria-current="page"]:not(.nav-cta):not(.nav-phone)::after {
  transform: scaleX(1);
}

.nav-cta,
.header-quick-cta {
  transition:
    transform var(--dur) var(--ease-out),
    background var(--dur) var(--ease-out),
    box-shadow var(--dur) var(--ease-out);
}

.nav-cta:hover,
.header-quick-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(7, 31, 25, 0.2);
}

.nav-toggle span:not(.sr-only) {
  transition: transform var(--dur) var(--ease-out), opacity var(--dur) var(--ease-out);
}

/* --------------------------------------------------------------------------
   5. BUTTONS — lift, press, and a single brand sheen sweep
   -------------------------------------------------------------------------- */

.button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform var(--dur) var(--ease-out),
    box-shadow var(--dur) var(--ease-out),
    background var(--dur) var(--ease-out),
    border-color var(--dur) var(--ease-out);
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    115deg,
    transparent 32%,
    rgba(255, 255, 255, 0.34) 48%,
    rgba(255, 255, 255, 0.34) 52%,
    transparent 68%
  );
  transform: translateX(-130%);
  transition: transform 0.85s var(--ease-out);
  pointer-events: none;
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover::after {
  transform: translateX(130%);
}

.button:active {
  transform: translateY(0) scale(0.985);
  transition-duration: var(--dur-fast);
}

.button.primary:hover {
  box-shadow: 0 24px 46px rgba(7, 31, 25, 0.32);
}

.button.secondary:hover {
  border-color: var(--co-sage);
  box-shadow: 0 16px 34px rgba(31, 54, 38, 0.12);
}

.button.light:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* --------------------------------------------------------------------------
   6. CARDS & PANELS — cohesive hover elevation
   -------------------------------------------------------------------------- */

.feature-panel,
.visual-feature-panel,
.dashboard-card,
.metric-panel,
.visual-metric-panel,
.scorecard-panel,
.scorecard-output-card,
.platform-score-panel,
.platform-cta-card,
.platform-card-grid > article,
.selected-plan-card,
.upsell-card,
.upgrade-path-card,
.recommendation-card,
.sample-review-card,
.path-grid > article,
.trust-grid > article,
.pricing-grid > article,
.pricing-grid-four > article,
.match-grid > article,
.resource-guide-grid > article,
.resource-preview-grid > article {
  transition:
    transform var(--dur) var(--ease-out),
    box-shadow var(--dur) var(--ease-out),
    border-color var(--dur) var(--ease-out);
}

.feature-panel:hover,
.visual-feature-panel:hover,
.dashboard-card:hover,
.metric-panel:hover,
.visual-metric-panel:hover,
.scorecard-panel:hover,
.scorecard-output-card:hover,
.platform-score-panel:hover,
.platform-cta-card:hover,
.platform-card-grid > article:hover,
.selected-plan-card:hover,
.upsell-card:hover,
.upgrade-path-card:hover,
.recommendation-card:hover,
.sample-review-card:hover,
.path-grid > article:hover,
.trust-grid > article:hover,
.pricing-grid > article:hover,
.pricing-grid-four > article:hover,
.match-grid > article:hover,
.resource-guide-grid > article:hover,
.resource-preview-grid > article:hover {
  transform: translateY(-6px);
  box-shadow: var(--co-lift);
  border-color: rgba(111, 139, 105, 0.5);
}

/* Featured plan gets a warmer lift */
.pricing-grid > article.featured:hover,
.pricing-grid-four > article.featured:hover {
  border-color: rgba(216, 138, 13, 0.55);
  box-shadow: 0 34px 74px -28px rgba(182, 118, 14, 0.4);
}

/* --------------------------------------------------------------------------
   7. LINKS — footer + inline content hover warmth
   -------------------------------------------------------------------------- */

.footer-link-column a,
.footer-contact-list a,
.footer-bottom a {
  transition: color var(--dur) var(--ease-out);
}

.footer-link-column a:hover,
.footer-contact-list a:hover,
.footer-bottom a:hover {
  color: var(--co-orange);
}

/* --------------------------------------------------------------------------
   8. SCROLL REVEAL — applied only when JS is present (.co-js on <html>)
   -------------------------------------------------------------------------- */

html.co-js .co-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity var(--dur-slow) var(--ease-out),
    transform var(--dur-slow) var(--ease-out);
  transition-delay: calc(var(--reveal-i, 0) * 75ms);
  will-change: opacity, transform;
}

html.co-js .co-reveal.in-view {
  opacity: 1;
  transform: none;
}

/* --------------------------------------------------------------------------
   9. HERO LOAD-IN — staggered entrance, pure CSS (no JS dependency)
   -------------------------------------------------------------------------- */

.hero-copy > *,
.page-hero > * > .eyebrow,
.page-hero > * > h1,
.page-hero > * > p {
  animation: co-rise 0.85s var(--ease-out) both;
}

.hero-copy > *:nth-child(1) { animation-delay: 0.04s; }
.hero-copy > *:nth-child(2) { animation-delay: 0.12s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.2s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.28s; }
.hero-copy > *:nth-child(5) { animation-delay: 0.36s; }
.hero-copy > *:nth-child(6) { animation-delay: 0.44s; }
.hero-copy > *:nth-child(n + 7) { animation-delay: 0.5s; }

.hero > *:last-child:not(.hero-copy) {
  animation: co-fade-scale 1.1s var(--ease-out) 0.18s both;
}

/* --------------------------------------------------------------------------
   10. KEYFRAMES
   -------------------------------------------------------------------------- */

@keyframes co-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes co-fade-scale {
  from {
    opacity: 0;
    transform: scale(0.97) translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes co-rule {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes co-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(216, 138, 13, 0.16);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(216, 138, 13, 0.04);
  }
}

/* --------------------------------------------------------------------------
   11. SCORE BARS — fill-on-scroll choreography (registered custom property)
   -------------------------------------------------------------------------- */

@property --co-fill {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 0%;
}

/* Animated variant only engages once JS tags the container (.co-bars).
   The base rule keeps var(--value) so no-JS / reduced-motion render full. */
html.co-js .co-bars span::after {
  background: linear-gradient(
    90deg,
    #f4c86e var(--co-fill),
    rgba(255, 255, 255, 0.16) var(--co-fill)
  );
  --co-fill: 0%;
  transition: --co-fill 1.2s var(--ease-out);
}

html.co-js .co-bars.in-view span::after {
  --co-fill: var(--value);
}

html.co-js .co-bars.in-view span:nth-child(1)::after { transition-delay: 0.1s; }
html.co-js .co-bars.in-view span:nth-child(2)::after { transition-delay: 0.2s; }
html.co-js .co-bars.in-view span:nth-child(3)::after { transition-delay: 0.3s; }
html.co-js .co-bars.in-view span:nth-child(4)::after { transition-delay: 0.4s; }
html.co-js .co-bars.in-view span:nth-child(5)::after { transition-delay: 0.5s; }
html.co-js .co-bars.in-view span:nth-child(n + 6)::after { transition-delay: 0.6s; }

/* --------------------------------------------------------------------------
   12. AMBIENT DEPTH — soft brand glows behind key moments
   -------------------------------------------------------------------------- */

.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: -12vw;
  top: -8vh;
  width: min(620px, 46vw);
  height: min(620px, 46vw);
  background: radial-gradient(circle, rgba(111, 139, 105, 0.18), transparent 62%);
  pointer-events: none;
}

.final-cta-panel {
  position: relative;
  overflow: hidden;
}

.final-cta-panel::before {
  content: "";
  position: absolute;
  z-index: 0;
  right: -8%;
  top: -40%;
  width: min(560px, 52vw);
  height: min(560px, 52vw);
  background: radial-gradient(circle, rgba(216, 138, 13, 0.16), transparent 64%);
  pointer-events: none;
}

.final-cta-panel > * {
  position: relative;
  z-index: 1;
}

/* --------------------------------------------------------------------------
   13. SCROLL PROGRESS — thin brand indicator (injected by JS)
   -------------------------------------------------------------------------- */

.co-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 60;
  background: linear-gradient(90deg, var(--co-orange), var(--co-gold) 55%, var(--co-sage));
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   14. TABLET NAV — collapse the inline nav to the menu in the mid band
   (761–1024px) so the wide desktop nav never overflows the viewport, while
   keeping the full trust bar, wordmark, and desktop layout intact.
   -------------------------------------------------------------------------- */

@media (min-width: 761px) and (max-width: 1024px) {
  .nav-toggle {
    display: block;
  }

  .header-actions {
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: max(20px, calc((100vw - 1160px) / 2));
    left: auto;
    z-index: 30;
    display: none;
    width: min(340px, calc(100vw - 40px));
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 14px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
    animation: co-rise 0.32s var(--ease-out) both;
  }

  .site-nav a {
    padding: 11px 12px;
    font-size: 0.92rem;
  }

  .site-nav a:not(.nav-cta):not(.nav-phone)::after {
    display: none;
  }

  .site-nav .nav-cta {
    margin-top: 6px;
    margin-left: 0;
  }
}

/* --------------------------------------------------------------------------
   15. GRID BALANCE — fix card grids whose fixed column count fought their
   item count in the 981px+ band (dead columns / cramped 7-up rows). auto-fit
   adapts to the real item count and never leaves empty trailing tracks; the
   <=980 responsive rules below this width are intentionally left untouched.
   -------------------------------------------------------------------------- */

@media (min-width: 981px) {
  /* 4 items — was repeat(3) → 3+1 with dead space. Now a balanced 2x2. */
  .conversion-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  /* 5 items — was sharing repeat(7) with two empty columns. */
  .match-grid {
    grid-template-columns: repeat(auto-fit, minmax(184px, 1fr));
  }

  /* 3 items — was repeat(4) → one dead column. */
  .resource-preview-grid {
    grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
  }

  /* 7 stages — was repeat(7) (unreadable) then a horizontal scroll (read as
     a cut-off bug on wide screens). Now a balanced wrapped grid: 4 across,
     so every stage is visible at once as a clean 4 + 3 with no clipping. */
  .roadmap-stage-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }
}

/* --------------------------------------------------------------------------
   16. TIGHTER HOMEPAGE RHYTHM — the homepage carried 56-72px of vertical
   padding per section (top AND bottom), which read as sprawling. Pull the
   cadence in ~30% for a denser, more editorial flow. Horizontal padding and
   the bespoke hero spacing are left untouched. The [class] attribute bumps
   specificity above the per-section (0,2,0) rules so this wins cleanly.
   -------------------------------------------------------------------------- */

main.format-home > section[class]:not(.hero) {
  padding-top: clamp(34px, 3.4vw, 48px);
  padding-bottom: clamp(34px, 3.4vw, 48px);
}

main.format-home > section.conversion-band,
main.format-home > section.marketplace-section {
  margin-top: 16px;
  margin-bottom: 16px;
}

/* --------------------------------------------------------------------------
   17. SCORECARD READOUT — fill the dead green space at the bottom of the
   dark scorecard panel with a real interpretation of the score (readiness
   band + strongest/focus areas), pinned to the bottom so the panel reads as
   a complete, intentional unit instead of bars floating at the top.
   -------------------------------------------------------------------------- */

.scorecard-panel {
  display: flex;
  flex-direction: column;
}

/* Let the bars breathe into the available height so the panel fills evenly
   instead of leaving a void between the bars and the readout. */
.scorecard-panel .score-bars {
  flex: 1 1 auto;
  align-content: space-between;
  row-gap: 18px;
}

.scorecard-readout {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  gap: 15px;
}

.readout-band {
  display: inline-flex;
  align-self: start;
  align-items: center;
  gap: 8px;
  padding: 6px 13px;
  color: #f4c86e;
  background: rgba(216, 138, 13, 0.16);
  border: 1px solid rgba(216, 138, 13, 0.42);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.readout-band::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f4c86e;
  box-shadow: 0 0 0 4px rgba(244, 200, 110, 0.18);
}

.readout-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.readout-pair > div {
  display: grid;
  gap: 4px;
}

.readout-pair span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.readout-pair strong {
  color: #fff;
  font-size: 0.98rem;
  font-weight: 700;
}

.readout-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   18. PRICING SYMMETRY — plan titles wrap to 1 or 2 lines, which staggered
   the big prices ($0/$99/$149/$249) across the four cards. Reserve a uniform
   two-line title height so the prices, descriptions, and CTAs all line up.
   -------------------------------------------------------------------------- */

.pricing-grid-four article h3 {
  line-height: 1.25;
  min-height: 2.5em;
  margin-bottom: 14px;
}

.pricing-grid-four article .plan-price {
  margin-top: 0;
}

@media (max-width: 980px) {
  .academy-product-page .page-hero,
  .academy-workspace-head,
  .academy-checkpoints {
    grid-template-columns: 1fr;
  }

  .academy-track-system,
  .academy-lesson-grid,
  .academy-toolkit-grid,
  .dashboard-academy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  html.co-js .co-reveal {
    opacity: 1;
    transform: none;
  }

  .academy-product-page .page-hero {
    min-height: 0;
    padding-top: 28px;
  }

  .academy-status-panel,
  .academy-progress-card,
  .academy-checkpoint-panel,
  .academy-track-system article,
  .academy-lesson-grid article,
  .academy-toolkit-grid article,
  .dashboard-academy-grid article {
    padding: 18px;
  }

  .academy-workspace,
  .academy-lessons,
  .academy-toolkit,
  .academy-checkpoints {
    padding: 48px 0;
  }

  .academy-track-system,
  .academy-lesson-grid,
  .academy-toolkit-grid,
  .dashboard-academy-grid {
    grid-template-columns: 1fr;
  }

  .academy-track-system article,
  .academy-lesson-grid article,
  .academy-toolkit-grid article,
  .dashboard-academy-grid article {
    min-height: 0;
  }

  .academy-status-panel div:first-child,
  .academy-lesson-grid article > div:first-child {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* --------------------------------------------------------------------------
   19. REDUCED MOTION — respect the user's preference fully
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  html.co-js .co-reveal {
    opacity: 1;
    transform: none;
  }
}
