:root {
  --ink: #101820;
  --ink-soft: #40505c;
  --paper: #f7f8f6;
  --paper-strong: #edf1ed;
  --white: #ffffff;
  --line: #d9ded8;
  --teal: #0e6f68;
  --teal-deep: #0a4945;
  --clay: #a85d3b;
  --gold: #c79a4b;
  --sand: #e7dcc8;
  --shadow: 0 24px 72px rgba(16, 24, 32, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto auto auto auto;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 6vw, 96px);
  background: rgba(247, 248, 246, 0.88);
  border-bottom: 1px solid rgba(16, 24, 32, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-weight: 850;
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 5px;
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 26px rgba(16, 24, 32, 0.1);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 7px;
  border: 1px solid rgba(16, 24, 32, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
}

.nav a {
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 750;
  transition:
    color 180ms ease,
    background-color 180ms ease;
}

.nav a:hover {
  color: var(--ink);
  background: var(--white);
}

.nav a[aria-current="page"] {
  color: var(--ink);
  background: var(--white);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
}

.language-button {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  min-height: 34px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  color: var(--ink-soft);
  background: transparent;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 850;
  cursor: pointer;
}

.language-button.is-active {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 8px 18px rgba(14, 111, 104, 0.18);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.menu-toggle {
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(16, 24, 32, 0.12);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 840;
  cursor: pointer;
}

.mobile-nav {
  position: absolute;
  top: calc(100% + 1px);
  left: 12px;
  right: 12px;
  z-index: 30;
  padding: 12px;
  border: 1px solid rgba(16, 24, 32, 0.12);
  border-radius: 8px;
  background: rgba(247, 248, 246, 0.98);
  box-shadow: 0 20px 54px rgba(16, 24, 32, 0.18);
  backdrop-filter: blur(18px);
}

.mobile-nav.is-open {
  display: grid;
  gap: 4px;
}

.mobile-nav a {
  padding: 12px;
  border-radius: 6px;
  color: var(--ink-soft);
  font-weight: 780;
}

.mobile-nav a:hover,
.mobile-nav a[aria-current="page"] {
  color: var(--ink);
  background: var(--white);
}

.mobile-language-switch {
  display: flex;
  gap: 6px;
  padding-top: 8px;
  margin-top: 6px;
  border-top: 1px solid var(--line);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 820;
  font-size: 0.92rem;
  cursor: pointer;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.nav-cta,
.button.primary {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 16px 34px rgba(16, 24, 32, 0.17);
}

.button.primary:hover,
.nav-cta:hover {
  background: var(--teal-deep);
  transform: translateY(-1px);
}

.button.secondary {
  color: var(--ink);
  background: var(--white);
  border-color: rgba(16, 24, 32, 0.2);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 0.86fr);
  gap: clamp(36px, 6vw, 104px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: clamp(64px, 8vw, 118px) clamp(18px, 6vw, 96px) clamp(62px, 7vw, 100px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(247, 248, 246, 1)),
    var(--paper);
}

.hero-copy-block {
  max-width: 740px;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 920;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-kicker span {
  color: var(--teal);
  font-weight: 950;
}

.section-kicker::after {
  content: "";
  display: block;
  width: 38px;
  height: 1px;
  background: var(--teal);
  opacity: 0.8;
}

.hero h1,
.section h2 {
  margin: 0;
  max-width: 1100px;
  color: var(--ink);
  font-size: clamp(3.55rem, 7.6vw, 7.9rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero h1 em,
.section h2 em {
  color: var(--teal);
  font-style: italic;
  font-weight: 430;
}

.hero-copy {
  max-width: 660px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.8vw, 1.36rem);
  line-height: 1.6;
}

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

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.hero-trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #5f707b;
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
  font-weight: 760;
}

.hero-visual {
  position: relative;
  min-height: clamp(430px, 52vw, 620px);
  border: 1px solid rgba(16, 24, 32, 0.08);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(16, 24, 32, 0.16)),
    linear-gradient(90deg, rgba(16, 24, 32, 0.02), rgba(16, 24, 32, 0.28));
  pointer-events: none;
}

.visual-panel {
  position: absolute;
  z-index: 2;
  width: min(306px, calc(100% - 40px));
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 44px rgba(16, 24, 32, 0.17);
}

.visual-panel span,
.visual-panel small {
  display: block;
  color: #60717c;
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.visual-panel strong {
  display: block;
  margin: 8px 0 6px;
  font-size: 1.52rem;
  line-height: 1.05;
}

.panel-top {
  top: 28px;
  right: 28px;
}

.panel-bottom {
  left: 28px;
  bottom: 28px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.proof-strip div {
  min-height: 150px;
  padding: 28px clamp(20px, 4vw, 54px);
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip span,
.insight-card span,
.problem-feature span,
.system-card span,
.engagement-grid span,
.case-flow span,
.insight-list span {
  display: block;
  color: var(--teal);
  font-size: 0.77rem;
  font-weight: 920;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.proof-strip strong {
  display: block;
  margin-top: 12px;
  font-size: 1.15rem;
}

.proof-strip p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.section {
  padding: clamp(78px, 9vw, 132px) clamp(18px, 6vw, 96px);
}

.section-heading {
  max-width: 1120px;
}

.problem-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.74fr);
  gap: 16px;
  margin-top: 54px;
}

.problem-feature,
.insight-card,
.system-card,
.service-card,
.engagement-grid article,
.case-shell,
.insight-list article,
.founder-card,
.readiness-intro,
.readiness-form,
.brief-output,
.growth-preview-card,
.growth-check-sidebar,
.tally-shell {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(16, 24, 32, 0.04);
}

.problem-feature {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(30px, 4vw, 52px);
  background:
    linear-gradient(135deg, rgba(16, 24, 32, 0.92), rgba(14, 111, 104, 0.72)),
    var(--ink);
  color: var(--white);
}

.problem-feature span {
  color: var(--gold);
}

.problem-feature h3 {
  max-width: 780px;
  margin: 22px 0 18px;
  color: var(--white);
  font-size: clamp(2.1rem, 4vw, 4.6rem);
  line-height: 0.98;
}

.problem-feature p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.68;
}

.problem-stack {
  display: grid;
  gap: 16px;
}

.insight-card {
  min-height: 162px;
  padding: 26px;
}

.insight-card h3,
.system-card h3,
.service-card h3,
.engagement-grid h3,
.case-flow h3,
.insight-list h3,
.steps h3,
.brief-output h3 {
  margin: 20px 0 12px;
  color: var(--ink);
  font-size: clamp(1.24rem, 1.55vw, 1.62rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.insight-card p,
.system-card p,
.service-card p,
.engagement-grid p,
.case-flow p,
.insight-list p,
.steps p,
.split-heading > p,
.engagement-heading p,
.readiness-intro p,
.brief-output p,
.founder-card p {
  color: var(--ink-soft);
  line-height: 1.68;
}

.system-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(460px, 1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
  background: var(--paper-strong);
}

.system-intro {
  position: sticky;
  top: 110px;
}

.system-intro h2,
.services h2,
.method h2,
.engagement h2,
.proof-case h2,
.insights h2,
.about h2,
.readiness h2 {
  font-size: clamp(2.55rem, 5vw, 5.75rem);
}

.system-intro p {
  max-width: 620px;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.7;
}

.image-panel {
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: clamp(250px, 28vw, 390px);
  object-fit: cover;
}

.system-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.system-card {
  min-height: 290px;
  padding: 30px;
}

.system-card.dark {
  color: var(--white);
  background: #17242b;
  border-color: #17242b;
}

.system-card.dark h3,
.system-card.dark p {
  color: var(--white);
}

.services {
  background: var(--paper);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
}

.split-heading > p {
  margin: 0 0 8px;
  font-size: 1.04rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
  margin-top: 54px;
}

.service-card {
  grid-column: span 4;
  min-height: 388px;
  padding: 30px;
}

.service-card.service-wide {
  grid-column: span 7;
  min-height: 430px;
}

.service-card.featured {
  grid-column: span 5;
  min-height: 430px;
  color: var(--white);
  background: #17242b;
  border-color: #17242b;
  box-shadow: var(--shadow);
}

.service-card.compact {
  grid-column: span 4;
  min-height: 388px;
  background: #fbfaf7;
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured li {
  color: var(--white);
}

.service-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 34px;
  color: var(--teal);
  background: #e0eeee;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 920;
}

.service-card.featured .service-number {
  color: var(--ink);
  background: var(--gold);
}

.service-card ul {
  display: grid;
  gap: 11px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li,
.readiness-points li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.service-card li::before,
.readiness-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
}

.service-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-cta p {
  max-width: 680px;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.subpage-main {
  background: var(--paper);
}

.subpage-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.48fr);
  gap: clamp(30px, 5vw, 78px);
  align-items: stretch;
  min-height: 620px;
  padding: clamp(70px, 8vw, 122px) clamp(18px, 6vw, 96px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(237, 241, 237, 0.96)),
    var(--paper-strong);
}

.subpage-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1040px;
  animation: pageEnter 420ms ease both;
}

.subpage-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(3.1rem, 7vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.subpage-hero-copy > p:not(.section-kicker) {
  max-width: 760px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.06rem, 1.7vw, 1.3rem);
  line-height: 1.65;
}

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

.subpage-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 460px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(16, 24, 32, 0.96), rgba(14, 111, 104, 0.84)),
    #17242b;
  box-shadow: var(--shadow);
  animation: pageEnter 420ms 80ms ease both;
}

.subpage-panel > span,
.service-detail-side span,
.path-card span,
.selection-grid span {
  display: block;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 920;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.subpage-panel h2 {
  margin: 18px 0 0;
  color: var(--white);
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  line-height: 0.98;
}

.subpage-panel-grid {
  display: grid;
  gap: 1px;
  margin-top: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.18);
}

.subpage-panel-grid div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.subpage-panel-grid strong {
  color: var(--gold);
  font-size: 0.9rem;
}

.subpage-panel-grid p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.page-path {
  background: var(--white);
}

.path-grid,
.selection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 52px;
  border: 1px solid var(--line);
  background: var(--line);
}

.growth-check-after .path-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@keyframes pageEnter {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.path-card,
.selection-grid article {
  min-height: 248px;
  padding: 28px;
  background: var(--white);
}

.path-card span,
.selection-grid span {
  color: var(--teal);
}

.path-card h3,
.selection-grid h3,
.service-detail h3 {
  margin: 18px 0 12px;
  color: var(--ink);
  font-size: clamp(1.34rem, 1.8vw, 1.85rem);
  line-height: 1.08;
}

.path-card p,
.selection-grid p,
.service-detail-content p,
.detail-intro p,
.subpage-cta-panel p {
  color: var(--ink-soft);
  line-height: 1.68;
}

.service-details {
  background: var(--paper);
}

.detail-intro {
  max-width: 1120px;
}

.detail-intro h2,
.subpage-cta-panel h2 {
  font-size: clamp(2.55rem, 5vw, 5.75rem);
}

.detail-intro p {
  max-width: 740px;
  font-size: 1.06rem;
}

.service-detail-list {
  display: grid;
  gap: 16px;
  margin-top: 52px;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(250px, 0.34fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 54px);
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(16, 24, 32, 0.04);
}

.service-detail.featured-detail {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(231, 220, 200, 0.5)),
    var(--white);
}

.service-detail-number {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 36px;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--teal);
  background: #e0eeee;
}

.service-detail-content > p {
  max-width: 860px;
  margin: 0;
  font-size: 1.08rem;
}

.service-detail-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 30px;
  border: 1px solid var(--line);
  background: var(--line);
}

.service-detail-meta div {
  min-height: 180px;
  padding: 22px;
  background: #fbfcfb;
}

.service-detail-meta span {
  display: block;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 920;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-detail-meta p {
  margin: 14px 0 0;
}

.selection-band {
  color: var(--white);
  background: #132027;
}

.selection-band h2,
.selection-band .section-kicker {
  color: var(--white);
}

.selection-band .section-kicker span,
.selection-band .section-kicker::after {
  color: var(--gold);
}

.selection-band .section-kicker::after {
  background: var(--gold);
}

.selection-band .split-heading > p {
  color: rgba(255, 255, 255, 0.72);
}

.selection-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.18);
}

.selection-grid article {
  background: rgba(255, 255, 255, 0.08);
}

.selection-grid h3 {
  color: var(--white);
}

.selection-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.selection-grid span {
  color: var(--gold);
}

.growth-check-main {
  background: var(--paper);
}

.growth-check-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.48fr);
  gap: clamp(30px, 5vw, 78px);
  align-items: stretch;
  min-height: 650px;
  padding: clamp(70px, 8vw, 122px) clamp(18px, 6vw, 96px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(237, 241, 237, 0.96)),
    var(--paper-strong);
}

.growth-check-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1040px;
}

.growth-check-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(3.1rem, 7vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.growth-check-copy > p:not(.section-kicker) {
  max-width: 760px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.06rem, 1.7vw, 1.3rem);
  line-height: 1.65;
}

.growth-check-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 460px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(16, 24, 32, 0.96), rgba(14, 111, 104, 0.84)),
    #17242b;
  box-shadow: var(--shadow);
}

.growth-check-panel > span,
.growth-check-sidebar > span,
.tally-shell-header span,
.growth-preview-card > span {
  display: block;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 920;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.growth-check-panel h2 {
  margin: 18px 0 0;
  color: var(--white);
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  line-height: 0.98;
}

.growth-check-panel-grid {
  display: grid;
  gap: 1px;
  margin-top: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.18);
}

.growth-check-panel-grid div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.growth-check-panel-grid strong {
  color: var(--gold);
  font-size: 0.9rem;
}

.growth-check-panel-grid p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.growth-check-form-section {
  background: var(--paper);
}

.growth-check-form-intro {
  max-width: 1080px;
}

.growth-check-form-intro h2 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(2.55rem, 5vw, 5.75rem);
  line-height: 0.95;
}

.growth-check-form-intro p:not(.section-kicker) {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.68;
}

.growth-check-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.38fr) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  margin-top: 46px;
}

.growth-check-sidebar {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 24px;
  padding: 30px;
}

.growth-check-sidebar h3,
.growth-preview-card h3,
.tally-shell-header h3 {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 2vw, 2.1rem);
  line-height: 1.08;
}

.growth-check-sidebar .button {
  justify-self: start;
}

.tally-shell {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 248, 246, 0.96)),
    var(--white);
  box-shadow: var(--shadow);
}

.tally-shell-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 30px;
  border-bottom: 1px solid var(--line);
}

.tally-shell-header p {
  max-width: 330px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.5;
  text-align: right;
}

.tally-embed {
  display: block;
  width: 100%;
  min-height: 1260px;
  border: 0;
  background: transparent;
}

.growth-check-after {
  background: var(--white);
}

.subpage-cta-section {
  background: var(--paper-strong);
}

.subpage-cta-panel {
  padding: clamp(30px, 5vw, 60px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.subpage-cta-panel p:not(.section-kicker) {
  max-width: 760px;
  font-size: 1.08rem;
}

.proof-case {
  background: var(--white);
}

.case-shell {
  padding: clamp(30px, 5vw, 60px);
  background:
    linear-gradient(135deg, rgba(247, 248, 246, 0.98), rgba(231, 220, 200, 0.5)),
    var(--white);
}

.case-heading {
  max-width: 1050px;
}

.case-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  border: 1px solid var(--line);
  background: var(--line);
}

.case-flow article {
  min-height: 220px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.86);
}

.case-flow p {
  margin: 20px 0 0;
}

.engagement {
  background: var(--paper);
}

.engagement-heading {
  max-width: 980px;
}

.engagement-heading p {
  max-width: 680px;
  font-size: 1.06rem;
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 46px;
}

.engagement-grid article {
  min-height: 260px;
  padding: 30px;
}

.method {
  background: var(--paper-strong);
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 52px;
  border: 1px solid var(--line);
  background: var(--line);
}

.steps article {
  min-height: 245px;
  padding: 26px;
  background: var(--white);
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--white);
  background: var(--clay);
  border-radius: 50%;
  font-weight: 900;
}

.insights {
  background: var(--white);
}

.insight-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 52px;
}

.insight-list article {
  min-height: 292px;
  padding: 30px;
}

.about {
  color: var(--white);
  background: #132027;
}

.about .section-kicker,
.about h2 {
  color: var(--white);
}

.about .section-kicker span {
  color: var(--gold);
}

.about .section-kicker::after {
  background: var(--gold);
}

.about-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.92fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.founder-card {
  padding: 32px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
}

.founder-mark {
  display: grid;
  place-items: center;
  width: 98px;
  height: 98px;
  margin-bottom: 28px;
  padding: 12px;
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(231, 220, 200, 0.38)),
    #fbfaf7;
  box-shadow: 0 16px 38px rgba(16, 24, 32, 0.12);
}

.founder-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.founder-card p {
  margin: 0;
  font-size: 1.08rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 10px 13px;
  border: 1px solid rgba(16, 24, 32, 0.14);
  border-radius: 8px;
  color: var(--ink-soft);
  background: #fbfcfb;
}

.readiness {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(380px, 0.86fr) minmax(300px, 0.58fr);
  gap: 16px;
  align-items: stretch;
  background: var(--paper);
}

.readiness-teaser {
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.58fr);
}

.readiness-intro,
.readiness-form,
.brief-output,
.growth-preview-card {
  padding: 30px;
}

.readiness-points {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.readiness-live-cta {
  display: grid;
  justify-items: start;
  gap: 14px;
  margin-top: 28px;
}

.readiness-live-cta p {
  max-width: 430px;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.readiness-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.readiness-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.readiness-form .full,
.form-button {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd5cf;
  border-radius: 8px;
  padding: 13px 12px;
  font: inherit;
  color: var(--ink);
  background: #fbfcfb;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(14, 111, 104, 0.18);
  border-color: var(--teal);
}

textarea {
  resize: vertical;
}

.brief-output {
  color: var(--white);
  background: #17242b;
  border-color: #17242b;
}

.brief-output h3 {
  margin-top: 0;
  color: var(--white);
}

.brief-output p,
.brief-output li {
  color: rgba(255, 255, 255, 0.78);
}

.brief-output ul {
  padding-left: 18px;
}

.growth-preview-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(16, 24, 32, 0.96), rgba(14, 111, 104, 0.82)),
    #17242b;
  border-color: #17242b;
}

.growth-preview-card h3 {
  max-width: 540px;
  color: var(--white);
}

.preview-list {
  display: grid;
  gap: 1px;
  margin-top: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.18);
}

.preview-list p {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  margin: 0;
  padding: 18px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  line-height: 1.5;
}

.preview-list strong {
  color: var(--gold);
  font-size: 0.88rem;
}

.scope-note {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.88fr);
  gap: clamp(20px, 5vw, 72px);
  align-items: start;
  padding: 34px clamp(18px, 6vw, 96px);
  color: var(--ink);
  background: var(--paper-strong);
  border-top: 1px solid rgba(16, 24, 32, 0.08);
}

.scope-note strong {
  max-width: 430px;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.12;
}

.scope-note p {
  max-width: 840px;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.48fr);
  align-items: start;
  gap: 18px;
  padding: 30px clamp(18px, 6vw, 96px);
  color: rgba(255, 255, 255, 0.76);
  background: var(--ink);
}

.footer-main {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 860;
}

.footer-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9px;
  background: var(--paper);
}

.footer-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer p {
  margin: 0;
}

.footer-note {
  max-width: 410px;
  justify-self: end;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.82rem;
  line-height: 1.5;
  text-align: right;
}

@media (max-width: 1180px) {
  .hero,
  .growth-check-hero,
  .growth-check-layout,
  .problem-layout,
  .system-section,
  .split-heading,
  .about-panel,
  .subpage-hero,
  .service-detail {
    grid-template-columns: 1fr;
  }

  .system-intro {
    position: static;
  }

  .service-card,
  .service-card.service-wide,
  .service-card.featured,
  .service-card.compact {
    grid-column: span 6;
  }

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

  .readiness-teaser {
    grid-template-columns: 1fr;
  }

  .readiness-intro {
    grid-column: 1 / -1;
  }

  .readiness-teaser .readiness-intro {
    grid-column: auto;
  }

  .growth-check-sidebar {
    position: static;
  }

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

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 10px;
  }

  .nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-header > .language-switch {
    display: none;
  }

  .proof-strip,
  .system-grid,
  .case-flow,
  .engagement-grid,
  .insight-list,
  .growth-check-layout,
  .readiness {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card.service-wide,
  .service-card.featured,
  .service-card.compact {
    grid-column: 1 / -1;
  }

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

  .service-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .path-grid,
  .selection-grid,
  .service-detail-meta,
  .scope-note {
    grid-template-columns: 1fr;
  }

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

  .footer-note {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 620px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    min-height: 68px;
    padding: 10px 12px;
    gap: 8px;
  }

  .brand {
    font-size: 0.86rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    padding: 4px;
  }

  .language-button {
    min-width: 33px;
    min-height: 30px;
    padding: 0 7px;
    font-size: 0.76rem;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 10px;
    font-size: 0.78rem;
  }

  .menu-toggle {
    min-height: 40px;
    padding: 0 10px;
    font-size: 0.76rem;
  }

  .hero {
    min-height: auto;
    padding-top: 52px;
  }

  .hero,
  .growth-check-hero,
  .growth-check-copy,
  .growth-check-panel,
  .growth-check-layout,
  .growth-check-layout > *,
  .growth-check-sidebar,
  .tally-shell,
  .growth-preview-card,
  .hero-copy-block,
  .problem-layout,
  .problem-feature,
  .problem-stack,
  .insight-card,
  .system-section,
  .system-intro,
  .system-grid,
  .split-heading,
  .split-heading > *,
  .about-panel,
  .about-panel > *,
  .founder-card,
  .subpage-hero,
  .subpage-hero-copy,
  .subpage-panel,
  .subpage-actions,
  .service-detail,
  .service-detail > *,
  .readiness,
  .readiness > *,
  .scope-note,
  .footer,
  .footer-main {
    min-width: 0;
    max-width: 100%;
  }

  .hero h1,
  .growth-check-hero h1,
  .growth-check-panel h2,
  .growth-check-form-intro h2,
  .section h2,
  .subpage-hero h1,
  .subpage-panel h2,
  .problem-feature h3 {
    font-size: clamp(2.35rem, 11vw, 3.6rem);
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  h1,
  h2,
  h3,
  p,
  li,
  a,
  strong,
  span {
    overflow-wrap: break-word;
  }

  .hero-actions,
  .button,
  .subpage-actions {
    width: 100%;
  }

  .button,
  .nav-cta {
    white-space: normal;
    text-align: center;
  }

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

  .visual-panel {
    width: calc(100% - 30px);
    padding: 16px;
  }

  .panel-top {
    top: 15px;
    right: 15px;
  }

  .panel-bottom {
    left: 15px;
    bottom: 15px;
  }

  .visual-panel strong {
    font-size: 1.22rem;
  }

  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .problem-feature,
  .insight-card,
  .system-card,
  .service-card,
  .engagement-grid article,
  .case-shell,
  .case-flow article,
  .insight-list article,
  .founder-card,
  .readiness-intro,
  .readiness-form,
  .brief-output,
  .growth-preview-card,
  .growth-check-panel,
  .growth-check-sidebar,
  .tally-shell-header,
  .subpage-panel,
  .path-card,
  .selection-grid article,
  .service-detail,
  .subpage-cta-panel {
    padding: 24px;
  }

  .problem-feature {
    min-height: 430px;
  }

  .readiness-form,
  .steps {
    grid-template-columns: 1fr;
  }

  .tally-shell-header {
    align-items: start;
    flex-direction: column;
  }

  .tally-shell-header p {
    max-width: none;
    text-align: left;
  }

  .tally-embed {
    min-height: 1380px;
  }

  .footer {
    gap: 14px;
  }
}

@media (max-width: 380px) {
  .brand > span:last-child {
    display: none;
  }
}

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

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