:root {
  --bg: #f4f6f4;
  --surface: #ffffff;
  --surface-soft: #edf3ee;
  --surface-deep: #112218;
  --line: rgba(17, 34, 24, 0.12);
  --ink: #111619;
  --muted: #55645c;
  --brand: #205434;
  --brand-strong: #173d29;
  --brand-soft: rgba(32, 84, 52, 0.1);
  --teal-soft: #d8ece4;
  --rose-soft: #f2dad4;
  --gold-soft: #f3e4b8;
  --dark-soft: rgba(17, 34, 24, 0.76);
  --shadow: 0 24px 80px rgba(17, 34, 24, 0.12);
  --radius: 8px;
  --gutter: clamp(18px, 3vw, 40px);
  --content: min(1200px, calc(100vw - (var(--gutter) * 2)));
  --content-wide: min(1360px, calc(100vw - (var(--gutter) * 2)));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", "Segoe UI", sans-serif;
}

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

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

button,
a.button {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(216, 236, 228, 0.78), transparent 24%),
    radial-gradient(circle at 90% 12%, rgba(242, 218, 212, 0.72), transparent 18%),
    linear-gradient(180deg, #f7f8f6 0%, #f4f6f4 100%);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  width: var(--content-wide);
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(244, 246, 244, 0.88);
  backdrop-filter: blur(18px);
}

.brand-link {
  flex: 0 0 auto;
}

.menu-toggle {
  display: none !important;
  visibility: hidden;
  pointer-events: none;
  width: 0;
  height: 0;
  margin: 0;
  border: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.brand-wordmark,
.footer-wordmark {
  width: 168px;
  height: auto;
}

.topbar-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  flex-wrap: wrap;
}

.topbar-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.topbar-nav a.button--primary {
  color: #f7faf7;
}

.topbar-nav a.button--ghost {
  color: var(--ink);
}

.topbar-nav a:hover,
.topbar-nav a:focus-visible {
  color: var(--ink);
}

.nav-login {
  padding: 9px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(32, 84, 52, 0.24);
  border-radius: var(--radius);
  background: rgba(216, 236, 228, 0.46);
  color: var(--brand-strong) !important;
  font-weight: 800;
  line-height: 1;
}

.nav-login::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--brand);
  flex: 0 0 auto;
}

.nav-login:hover,
.nav-login:focus-visible {
  border-color: rgba(32, 84, 52, 0.42);
  background: rgba(216, 236, 228, 0.72);
  color: var(--brand-strong) !important;
}

.button {
  min-height: 46px;
  padding: 11px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  background: var(--brand);
  color: #f7faf7;
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--brand-strong);
}

.button--ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: rgba(17, 34, 24, 0.24);
  background: rgba(255, 255, 255, 0.92);
}

.hero {
  position: relative;
  overflow: clip;
  padding: 32px 0 36px;
}

.hero-inner,
.section-inner,
.site-footer {
  width: var(--content);
  margin: 0 auto;
}

.hero-rail {
  width: var(--content-wide);
  margin: 0 auto;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 56px 0 18px;
}

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

.hero h1,
.client-hero-copy h1,
.section-heading h2,
.proof-copy h3,
.cta-block h2 {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  line-height: 1.03;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(2.7rem, 7vw, 6rem);
}

.client-hero-copy h1 {
  max-width: 16ch;
  font-size: clamp(2.3rem, 5.8vw, 4.8rem);
  line-height: 1.02;
}

.hero h1 span {
  display: block;
  color: var(--brand);
}

.hero-copy,
.section-heading p,
.scenario-item p,
.flow-item p,
.step-item p,
.proof-copy p,
.cta-block p,
.site-footer p {
  color: var(--muted);
  line-height: 1.68;
}

.hero-copy {
  max-width: 650px;
  margin: 26px 0 0;
  font-size: 1.08rem;
}

.hero-signal {
  margin: 14px 0 0;
  color: var(--brand-strong);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.hero-signal--soft {
  max-width: 700px;
  color: var(--muted);
  font-weight: 600;
}

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

.hero-client-link {
  align-self: center;
  color: var(--brand-strong);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-client-link:hover,
.hero-client-link:focus-visible {
  color: var(--brand);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  min-height: 38px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(17, 34, 24, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-rail {
  position: relative;
  z-index: 1;
  margin-top: 42px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 0.9fr;
  gap: 18px;
}

.product-scene {
  min-height: 360px;
  border: 1px solid rgba(17, 34, 24, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.product-scene--partner {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(237, 243, 238, 0.98));
}

.product-scene--client {
  background: linear-gradient(180deg, #1a2a21, #152219);
  color: #eef4ef;
}

.product-scene--followup {
  background: linear-gradient(180deg, rgba(242, 218, 212, 0.82), rgba(255, 255, 255, 0.96));
}

.scene-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(17, 34, 24, 0.08);
  font-size: 0.86rem;
}

.scene-bar span {
  color: var(--muted);
  font-weight: 600;
}

.product-scene--client .scene-bar {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.product-scene--client .scene-bar span {
  color: rgba(238, 244, 239, 0.74);
}

.scene-body {
  display: grid;
  gap: 14px;
  padding: 16px;
}

.scene-body--spaced {
  align-content: start;
}

.scene-row,
.scene-note,
.scene-list__item,
.timeline-step {
  border: 1px solid rgba(17, 34, 24, 0.08);
  border-radius: var(--radius);
}

.scene-row {
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(255, 255, 255, 0.72);
}

.scene-row span {
  color: var(--muted);
}

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

.scene-list__item {
  padding: 14px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  background: rgba(255, 255, 255, 0.78);
}

.scene-list__item strong,
.scene-note strong,
.timeline-step strong,
.care-highlight strong {
  display: block;
  line-height: 1.3;
}

.scene-list__item span,
.timeline-step span,
.care-highlight p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.scene-list__item b {
  font-size: 0.84rem;
  color: var(--brand);
}

.care-highlight {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.scene-note {
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.scene-note span {
  display: block;
  margin-bottom: 8px;
  color: rgba(238, 244, 239, 0.72);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.scene-note--soft {
  background: rgba(216, 236, 228, 0.14);
}

.timeline-step {
  padding: 14px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.78);
}

.timeline-step small,
.step-item small,
.flow-item small {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--brand);
  color: #f7faf7;
  font-size: 0.8rem;
  font-weight: 800;
}

.section {
  padding: 110px 0;
}

.section--light {
  background: transparent;
}

.section--warm {
  background: linear-gradient(180deg, rgba(216, 236, 228, 0.42), rgba(243, 228, 184, 0.3));
}

.section--dark {
  background: #132218;
  color: #f3f7f3;
}

.section--client {
  padding-top: 36px;
}

.section--cta {
  padding-top: 48px;
}

.section-heading {
  display: grid;
  gap: 18px;
}

.section-heading h2,
.proof-copy h3,
.cta-block h2 {
  font-size: clamp(2rem, 4.6vw, 3.2rem);
}

.section-heading p {
  max-width: 620px;
  margin: 0;
  line-height: 1.68;
}

.section-heading--light .eyebrow,
.section-heading--light p,
.section-heading--light h2 {
  color: inherit;
}

.section-heading--light p,
.consequence-closing {
  color: rgba(243, 247, 243, 0.82);
}

.consequence-note {
  max-width: 720px;
  margin: -8px 0 0;
  color: #f3f7f3;
  font-weight: 700;
  line-height: 1.55;
}

.scenario-grid,
.steps-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.scenario-item,
.step-item {
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.scenario-item span,
.step-item small,
.value-pill,
.client-benefits span {
  font-weight: 700;
}

.scenario-item span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--brand);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.scenario-item h3,
.step-item h3,
.flow-item h3 {
  margin: 0 0 12px;
  font-size: 1.16rem;
  line-height: 1.28;
}

.consequence-layout {
  display: grid;
  gap: 34px;
}

.consequence-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.consequence-strip div {
  min-height: 152px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  display: grid;
  align-content: space-between;
  gap: 18px;
}

.consequence-strip span {
  color: rgba(243, 247, 243, 0.68);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.consequence-strip strong {
  font-size: 1.15rem;
  line-height: 1.25;
}

.consequence-closing {
  max-width: 720px;
  margin: 0;
  font-size: 1rem;
}

.split-flow,
.value-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.flow-list {
  display: grid;
  gap: 18px;
}

.flow-item {
  padding: 22px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
}

.value-list {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.value-pill,
.client-benefits span {
  min-height: 40px;
  padding: 9px 14px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.partner-proof {
  margin-top: 34px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(216, 236, 228, 0.42), rgba(242, 218, 212, 0.32)),
    rgba(255, 255, 255, 0.9);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
}

.proof-copy {
  display: grid;
  gap: 12px;
}

.proof-copy h3 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.proof-metrics {
  display: grid;
  gap: 10px;
}

.proof-metrics div {
  min-width: 200px;
  padding: 14px;
  border: 1px solid rgba(17, 34, 24, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
}

.proof-metrics span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.84rem;
}

.client-band {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
}

.real-case-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  display: grid;
  gap: 18px;
}

.real-case-card h3 {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  line-height: 1.08;
}

.real-case-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.real-case-step {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  display: grid;
  gap: 8px;
}

.real-case-step span {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}

.real-case-step p {
  margin: 0;
  line-height: 1.62;
  color: var(--muted);
}

.real-case-step--adjust {
  background: rgba(216, 236, 228, 0.22);
  border-color: rgba(32, 84, 52, 0.12);
}

.real-case-step--result {
  background: linear-gradient(145deg, #1f5a38, #18492f);
  border: 2px solid rgba(14, 36, 24, 0.58);
  box-shadow: 0 18px 36px rgba(23, 61, 41, 0.26);
}

.real-case-step--result span {
  color: #d9efe4;
}

.real-case-step--result p {
  color: #f2faf4;
  font-weight: 700;
}

.real-case-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.section--client-entry {
  padding-top: 26px;
}

.client-entry-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
}

.client-entry-copy h2 {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  line-height: 1.05;
}

.client-entry-copy p {
  margin: 12px 0 0;
  max-width: 660px;
  color: var(--muted);
  line-height: 1.58;
}

.zy-guide {
  margin-top: 28px;
  padding: 20px 22px;
  display: grid;
  grid-template-columns: minmax(120px, 170px) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  border: 1px solid rgba(17, 34, 24, 0.08);
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(216, 236, 228, 0.54), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(237, 243, 238, 0.7));
  box-shadow: 0 18px 48px rgba(17, 34, 24, 0.08);
  backdrop-filter: blur(12px);
}

.zy-guide--hero {
  max-width: 540px;
}

.zy-guide--compact {
  max-width: 560px;
}

.zy-guide--right {
  grid-template-columns: minmax(0, 1fr) minmax(120px, 170px);
}

.zy-guide--right .zy-guide__visual {
  order: 2;
}

.zy-guide__visual {
  align-self: end;
  justify-self: center;
}

.zy-guide__visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 240px;
  filter: drop-shadow(0 16px 24px rgba(17, 34, 24, 0.12));
  transition: transform 220ms ease;
}

.zy-guide:hover .zy-guide__visual img,
.zy-guide:focus-within .zy-guide__visual img {
  transform: translateY(-3px);
}

.zy-guide__copy {
  display: grid;
  gap: 8px;
}

.zy-guide__label {
  color: var(--brand);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.zy-guide__copy p {
  margin: 0;
  max-width: 34ch;
  color: var(--ink);
  font-size: 1.04rem;
  font-weight: 600;
  line-height: 1.55;
}

.zy-guide__copy small {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.client-hero .zy-guide {
  margin-top: 26px;
  grid-template-columns: minmax(132px, 180px) minmax(0, 1fr);
  align-items: center;
}

.client-hero .zy-guide__visual img {
  max-height: 220px;
}

.client-benefits {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.client-hero {
  padding-top: 58px;
  padding-bottom: 84px;
}

.client-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 34px;
  align-items: start;
}

.client-hero-copy p {
  margin: 22px 0 0;
  max-width: 620px;
  color: var(--muted);
  line-height: 1.72;
}

.client-hero-copy .hero-actions {
  margin-top: 34px;
}

.client-hero-mockups {
  display: grid;
  gap: 14px;
  margin-top: 8px;
}

.client-mockup-card {
  border: 1px solid rgba(17, 34, 24, 0.1);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #1a2a21, #132218);
  color: #eef4ef;
  box-shadow: var(--shadow);
}

.client-mockup-card--light {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(237, 243, 238, 0.98));
  color: var(--ink);
}

.mockup-head {
  padding: 14px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  display: grid;
  gap: 6px;
}

.client-mockup-card--light .mockup-head {
  border-bottom-color: rgba(17, 34, 24, 0.08);
}

.mockup-head span {
  color: rgba(238, 244, 239, 0.75);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mockup-head strong {
  display: block;
  line-height: 1.3;
}

.client-mockup-card--light .mockup-head span {
  color: var(--muted);
}

.mockup-body {
  padding: 14px 15px 16px;
  display: grid;
  gap: 10px;
}

.mockup-bubble {
  margin: 0;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(238, 244, 239, 0.9);
  line-height: 1.5;
}

.mockup-action {
  margin: 0;
  padding: 9px 12px;
  border-radius: var(--radius);
  background: rgba(216, 236, 228, 0.22);
  color: #eef4ef;
  font-weight: 700;
  font-size: 0.93rem;
}

.mockup-checkin-list {
  padding: 14px 15px 16px;
  display: grid;
  gap: 10px;
}

.mockup-checkin-list span {
  padding: 10px 12px;
  border: 1px solid rgba(17, 34, 24, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.4;
}

.client-value-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

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

.client-benefit-notes {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.client-visual-cards {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.client-visual-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
  display: grid;
  gap: 10px;
}

.client-visual-card span {
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.client-visual-card h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.28;
}

.client-visual-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.client-objections {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.client-objection-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  display: grid;
  gap: 12px;
}

.client-objection-item h3 {
  margin: 0;
  font-size: 1.06rem;
}

.client-objection-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.client-strategic-block {
  background:
    radial-gradient(circle at 100% 0, rgba(216, 236, 228, 0.58), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(243, 228, 184, 0.34));
}

.client-strategic-note {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.section--client-final-cta {
  padding-top: 24px;
}

.cta-block {
  position: relative;
  overflow: clip;
  padding: 38px;
  border: 1px solid rgba(17, 34, 24, 0.08);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0, rgba(216, 236, 228, 0.52), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(237, 243, 238, 0.92));
  box-shadow: var(--shadow);
}

.cta-mark {
  position: absolute;
  right: -18px;
  bottom: -22px;
  width: 144px;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.cta-block > :not(.cta-mark) {
  position: relative;
  z-index: 1;
}

.cta-block p {
  max-width: 720px;
  margin-top: 16px;
}

.cta-prelude {
  margin: 0 0 10px;
  color: var(--brand-strong);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.site-footer {
  padding: 30px 0 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

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

.footer-links a,
.site-footer p {
  color: var(--muted);
  font-size: 0.92rem;
}

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

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

@media (max-width: 1120px) {
  :root {
    --content: min(1120px, calc(100vw - (var(--gutter) * 2)));
    --content-wide: var(--content);
  }

  .hero-rail,
  .scenario-grid,
  .steps-grid,
  .consequence-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-flow,
  .value-layout,
  .partner-proof {
    grid-template-columns: 1fr;
  }

  .client-hero-grid,
  .client-value-grid,
  .client-benefit-notes,
  .client-visual-cards,
  .client-objections,
  .real-case-flow {
    grid-template-columns: 1fr;
  }

  .proof-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    display: grid;
  }

  .proof-metrics div {
    min-width: 0;
  }
}

@media (max-width: 760px) {
  .topbar {
    padding: 14px 0;
    align-items: center;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex !important;
    visibility: visible;
    pointer-events: auto;
    width: 44px;
    height: 44px;
    margin: 0 0 0 auto;
    border: 1px solid var(--line);
    padding: 0;
  }

  .topbar-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 40px rgba(17, 34, 24, 0.08);
  }

  .topbar[data-menu-open="true"] .topbar-nav {
    display: flex;
  }

  .topbar[data-menu-open="true"] .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .topbar[data-menu-open="true"] .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .topbar[data-menu-open="true"] .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .topbar-nav a {
    width: 100%;
    padding: 14px 4px;
  }

  .topbar-nav a:not(.button):not(.nav-login) {
    border-bottom: 1px solid rgba(17, 34, 24, 0.08);
  }

  .topbar-nav .nav-login {
    margin-top: 10px;
    justify-content: center;
  }

  .topbar-nav .button {
    width: 100%;
    margin-top: 10px;
  }

  .brand-wordmark,
  .footer-wordmark {
    width: 148px;
  }

  .hero {
    padding-top: 22px;
  }

  .hero-inner {
    padding-top: 40px;
  }

  .hero-rail {
    margin-top: 30px;
    gap: 14px;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(2.2rem, 11.2vw, 3.8rem);
  }

  .client-hero-copy h1 {
    font-size: clamp(2.1rem, 10vw, 3.4rem);
  }

  .hero-copy {
    font-size: 1.04rem;
    margin-top: 20px;
    line-height: 1.7;
  }

  .hero-rail,
  .scenario-grid,
  .steps-grid,
  .consequence-strip,
  .proof-metrics {
    grid-template-columns: 1fr;
  }

  .client-benefit-notes,
  .client-visual-cards,
  .client-objections,
  .real-case-flow {
    grid-template-columns: 1fr;
  }

  .product-scene {
    min-height: auto;
  }

  .section {
    padding: 76px 0;
  }

  .section--client {
    padding-top: 28px;
  }

  .section-heading h2,
  .proof-copy h3,
  .cta-block h2 {
    font-size: clamp(1.9rem, 8.4vw, 3rem);
    line-height: 1.06;
  }

  .hero-points,
  .hero-actions,
  .value-list,
  .client-benefits,
  .cta-actions {
    gap: 12px;
  }

  .hero-points li,
  .value-pill,
  .client-benefits span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-client-link {
    width: 100%;
    text-align: center;
  }

  .cta-block,
  .client-band,
  .client-entry-card,
  .real-case-card {
    padding: 28px 20px;
  }

  .cta-mark {
    display: none;
  }

  .client-entry-card {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .client-entry-card .button {
    width: 100%;
  }

  .client-hero {
    padding-top: 44px;
    padding-bottom: 62px;
  }

  .client-hero-grid {
    gap: 24px;
  }

  .zy-guide,
  .zy-guide--right {
    grid-template-columns: 1fr;
  }

  .zy-guide {
    padding: 16px;
    gap: 12px;
    border-radius: 18px;
  }

  .zy-guide--hero,
  .zy-guide--compact {
    max-width: none;
  }

  .zy-guide--right .zy-guide__visual {
    order: 0;
  }

  .zy-guide__visual {
    max-width: 150px;
  }

  .zy-guide__copy p {
    max-width: none;
    font-size: 1rem;
  }

  .zy-guide__visual img {
    max-height: 180px;
  }

  .client-hero .zy-guide {
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 14px 15px;
  }

  .client-hero .zy-guide__visual {
    max-width: none;
    width: 100%;
  }

  .client-hero .zy-guide__visual img {
    max-height: 150px;
  }

  .client-hero .zy-guide__copy {
    gap: 6px;
  }

  .client-hero .zy-guide__label {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .client-hero .zy-guide__copy p {
    font-size: 0.97rem;
    line-height: 1.45;
  }

  .client-hero-copy p {
    margin-top: 18px;
    line-height: 1.66;
  }

  .client-hero-copy .hero-actions {
    margin-top: 26px;
  }

  .client-value-grid,
  .client-benefit-notes,
  .client-visual-cards,
  .client-objections {
    margin-top: 28px;
    gap: 14px;
  }

  .client-visual-card,
  .client-objection-item {
    padding: 18px;
  }

  .site-footer {
    align-items: flex-start;
    padding-top: 20px;
  }
}

.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(216, 236, 228, 0.78), transparent 24%),
    radial-gradient(circle at 90% 12%, rgba(242, 218, 212, 0.72), transparent 18%),
    linear-gradient(180deg, #f7f8f6 0%, #f4f6f4 100%);
}

.legal-shell {
  width: min(860px, calc(100vw - (var(--gutter) * 2)));
  margin: 0 auto;
  padding: 28px 0 72px;
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 18px 0 24px;
}

.legal-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.legal-card {
  display: grid;
  gap: 18px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 80px rgba(17, 34, 24, 0.08);
}

.legal-card h1 {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 0.98;
  text-align: center;
}

.legal-updated {
  margin: -6px 0 0;
  color: var(--muted);
  line-height: 1.6;
  text-align: center;
}

.legal-card .eyebrow {
  text-align: center;
}

.legal-sections {
  display: grid;
  gap: 14px;
}

.legal-section {
  display: grid;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 34, 24, 0.08);
}

.legal-section h2 {
  margin: 0;
  font-size: 1.05rem;
}

.legal-section p,
.legal-section li {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.legal-list {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 8px;
}

.legal-card__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.legal-footer {
  width: min(860px, calc(100vw - (var(--gutter) * 2)));
  margin: 0 auto;
  padding: 0 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--muted);
  text-align: center;
}

.legal-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 760px) {
  .legal-shell {
    padding-top: 18px;
    padding-bottom: 48px;
  }

  .legal-header,
  .legal-footer {
    flex-direction: column;
    align-items: center;
  }

  .legal-header__actions,
  .legal-card__actions,
  .legal-footer__links {
    width: 100%;
  }

  .legal-header__actions .button,
  .legal-card__actions .button {
    width: 100%;
  }

  .legal-card {
    padding: 24px 18px;
  }

  .legal-card__actions .button {
    width: 100%;
  }
}
