:root {
  --ink-deep: oklch(0.297 0 0);
  --ink: oklch(0.225 0.008 88);
  --ink-soft: oklch(0.31 0.008 88);
  --paper: oklch(0.972 0.012 88);
  --paper-deep: oklch(0.935 0.018 88);
  --paper-muted: oklch(0.895 0.018 88);
  --gold: oklch(0.755 0.155 92);
  --gold-strong: oklch(0.69 0.158 89);
  --gold-soft: oklch(0.86 0.105 92);
  --line-dark: oklch(0.38 0.012 88 / 0.48);
  --line-light: oklch(0.7 0.018 88 / 0.42);
  --text-on-dark: oklch(0.94 0.012 88);
  --text-muted-dark: oklch(0.76 0.014 88);
  --text-muted-light: oklch(0.45 0.012 88);
  --danger: oklch(0.64 0.18 32);
  --success: oklch(0.72 0.12 145);
  --font: "Onest", "Segoe UI", sans-serif;
  --shell: min(1240px, calc(100% - 48px));
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --header-height: 84px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

::selection {
  background: var(--gold);
  color: var(--ink-deep);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--gold);
  color: var(--ink-deep);
  font-weight: 700;
  transition: transform 180ms var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell,
.hero-shell,
.header-shell,
.footer-shell,
.footer-bottom {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: var(--ink-deep);
  color: var(--text-on-dark);
  transition:
    border-color 240ms ease,
    background-color 240ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line-dark);
  background: oklch(0.297 0 0 / 0.97);
}

.header-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 100%;
  gap: 36px;
}

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

.brand-crop {
  position: relative;
  display: block;
  width: 146px;
  height: 52px;
  overflow: hidden;
  flex: 0 0 auto;
}

.brand-crop img {
  position: absolute;
  width: 196px;
  max-width: none;
  height: 196px;
  top: -76px;
  left: -28px;
}

.brand-name {
  display: none;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 2.6vw, 38px);
}

.main-nav a {
  position: relative;
  padding-block: 12px;
  color: var(--text-muted-dark);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  transition: transform 240ms var(--ease-out);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--text-on-dark);
}

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  gap: 12px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  cursor: pointer;
  transition:
    transform 200ms var(--ease-out),
    background-color 200ms ease,
    color 200ms ease,
    border-color 200ms ease;
}

.header-cta {
  min-height: 44px;
  padding: 11px 16px;
  background: var(--gold);
  color: var(--ink-deep);
}

.header-cta svg,
.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 200ms var(--ease-out);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.header-cta:hover svg,
.button:hover svg {
  transform: translateX(4px);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: var(--header-height);
  background:
    radial-gradient(circle at 78% 36%, oklch(0.755 0.155 92 / 0.09), transparent 27%),
    var(--ink-deep);
  color: var(--text-on-dark);
}

.hero-grid,
.contact-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.33;
  background-image:
    linear-gradient(to right, oklch(0.65 0.02 88 / 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, oklch(0.65 0.02 88 / 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 72%, transparent);
}

.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.82fr);
  align-items: center;
  gap: clamp(56px, 7vw, 112px);
  min-height: min(820px, calc(100svh - var(--header-height)));
  padding-block: clamp(50px, 6vw, 84px);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
}

.eyebrow-dark {
  color: var(--gold-strong);
}

.hero h1 {
  max-width: 740px;
  margin-bottom: 30px;
  color: var(--text-on-dark);
  font-size: clamp(3.15rem, 6.1vw, 6.4rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero h1 strong {
  color: var(--gold);
  font-weight: 800;
}

.hero h1 span {
  display: block;
  margin-top: 12px;
  color: var(--text-on-dark);
  font-size: 0.58em;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: var(--text-muted-dark);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.button-gold {
  background: var(--gold);
  color: var(--ink-deep);
}

.button-gold:hover {
  background: var(--gold-soft);
}

.button-ink {
  flex: 0 0 auto;
  background: var(--ink-deep);
  color: var(--text-on-dark);
}

.button-ink:hover {
  background: var(--ink-soft);
}

.text-link {
  position: relative;
  color: var(--text-on-dark);
  font-size: 14px;
  font-weight: 650;
}

.text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: var(--text-muted-dark);
  transition: background-color 180ms ease;
}

.text-link:hover::after {
  background: var(--gold);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 40px;
  color: var(--text-muted-dark);
  font-size: 12px;
  font-weight: 600;
}

.hero-proof span {
  display: flex;
  align-items: center;
}

.hero-proof span:not(:last-child)::after {
  content: "";
  width: 4px;
  height: 4px;
  margin-inline: 13px;
  background: var(--gold);
}

.diagnosis-board {
  position: relative;
  padding: clamp(26px, 3vw, 42px);
  border: 1px solid var(--line-dark);
  background: var(--ink);
  box-shadow: 24px 32px 80px oklch(0.08 0.01 88 / 0.28);
}

.diagnosis-board::before,
.diagnosis-board::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 72px;
  height: 72px;
  border-color: var(--gold);
  opacity: 0.8;
}

.diagnosis-board::before {
  top: -14px;
  right: -14px;
  border-top: 2px solid;
  border-right: 2px solid;
}

.diagnosis-board::after {
  bottom: -14px;
  left: -14px;
  border-bottom: 2px solid;
  border-left: 2px solid;
}

.board-topline,
.panel-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 19px;
  border-bottom: 1px solid var(--line-dark);
  color: var(--text-muted-dark);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.board-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-soft);
}

.board-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px oklch(0.755 0.155 92 / 0.1);
  animation: signal 2.4s ease-in-out infinite;
}

.board-copy {
  padding-block: 28px 18px;
}

.board-copy p {
  margin-bottom: 7px;
  color: var(--text-muted-dark);
  font-size: 13px;
}

.board-copy h2 {
  margin-bottom: 0;
  color: var(--text-on-dark);
  font-size: clamp(1.6rem, 2.4vw, 2.25rem);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.14;
}

.growth-path {
  margin: 0;
  padding: 0;
  list-style: none;
}

.growth-path li {
  position: relative;
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  min-height: 54px;
  gap: 12px;
  border-bottom: 1px solid var(--line-dark);
  color: var(--text-muted-dark);
  font-size: 12px;
}

.growth-path li::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -12px;
  width: 3px;
  transform: scaleY(0);
  background: var(--gold);
  transition: transform 260ms var(--ease-out);
}

.growth-path li.is-bottleneck {
  color: var(--text-on-dark);
}

.growth-path li.is-bottleneck::before {
  transform: scaleY(0.65);
}

.path-index {
  color: var(--text-muted-dark);
  font-variant-numeric: tabular-nums;
}

.path-name {
  font-weight: 650;
}

.path-signal {
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.path-signal-ok {
  color: var(--success);
}

.board-insight {
  margin-top: 28px;
  padding: 18px 20px;
  background: oklch(0.755 0.155 92 / 0.09);
}

.board-insight span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.board-insight p {
  margin: 5px 0 0;
  color: var(--text-on-dark);
  font-size: 13px;
  line-height: 1.55;
}

.principles-strip {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  background: var(--ink);
  color: var(--text-muted-dark);
}

.strip-track {
  display: flex;
  align-items: center;
  width: max-content;
  min-width: 100%;
  min-height: 58px;
  animation: marquee 26s linear infinite;
}

.strip-track span {
  padding-inline: 26px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.strip-track i {
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  background: var(--gold);
}

.section-light {
  background: var(--paper);
  color: var(--ink);
}

.section-dark {
  background: var(--ink-deep);
  color: var(--text-on-dark);
}

.problem {
  padding-block: clamp(96px, 12vw, 180px);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(210px, 0.48fr) minmax(0, 1.52fr);
  align-items: start;
  gap: clamp(32px, 6vw, 100px);
  margin-bottom: clamp(72px, 9vw, 124px);
}

.section-intro .eyebrow {
  margin-top: 12px;
}

.section-intro h2,
.difference-lead h2,
.method-heading h2,
.local-copy h2,
.faq-heading h2,
.contact-copy h2 {
  margin-bottom: 0;
  font-size: clamp(2.45rem, 5.2vw, 5.35rem);
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.problem-layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(48px, 8vw, 132px);
}

.problem-statement {
  position: sticky;
  top: calc(var(--header-height) + 40px);
  max-width: 430px;
}

.problem-statement > p {
  margin-bottom: 42px;
  color: var(--text-muted-light);
  font-size: 17px;
  line-height: 1.78;
}

.problem-statement blockquote {
  margin-bottom: 0;
  padding: 26px 0 4px;
  border-top: 1px solid var(--ink);
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.45;
}

.problem-statement blockquote span {
  display: block;
  color: var(--gold-strong);
}

.symptom-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.symptom-list li {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  min-height: 124px;
  gap: 28px;
  border-bottom: 1px solid var(--line-light);
  transition:
    color 220ms ease,
    padding-left 220ms var(--ease-out);
}

.symptom-list li:hover {
  padding-left: 10px;
  color: var(--gold-strong);
}

.symptom-list p {
  max-width: 650px;
  margin-bottom: 0;
  color: inherit;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 550;
  letter-spacing: -0.025em;
  line-height: 1.4;
}

.symptom-number {
  color: var(--gold-strong);
  font-size: 11px;
  font-weight: 750;
}

.symptom-list svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.3;
}

.method {
  padding-block: clamp(96px, 12vw, 170px);
}

.method-heading {
  display: grid;
  grid-template-columns: minmax(210px, 0.46fr) minmax(0, 1.06fr) minmax(260px, 0.48fr);
  align-items: end;
  gap: clamp(28px, 4vw, 60px);
  margin-bottom: clamp(64px, 8vw, 112px);
}

.method-heading .eyebrow {
  margin-bottom: 10px;
}

.method-heading h2 {
  color: var(--text-on-dark);
}

.method-heading > p:last-child {
  margin-bottom: 8px;
  color: var(--text-muted-dark);
  line-height: 1.72;
}

.method-workspace {
  --method-duration: 5200ms;
  display: grid;
  grid-template-columns: minmax(330px, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.method-steps {
  border-right: 1px solid var(--line-dark);
}

.method-step {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  width: 100%;
  min-height: 118px;
  padding: 26px 34px 24px 4px;
  gap: 4px 18px;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  background: transparent;
  color: var(--text-muted-dark);
  text-align: left;
  cursor: pointer;
  transition:
    color 220ms ease,
    padding-left 240ms var(--ease-out),
    background-color 220ms ease;
}

.method-step:last-child {
  border-bottom: 0;
}

.method-step:hover,
.method-step.is-active {
  padding-left: 18px;
  background: oklch(0.755 0.155 92 / 0.045);
  color: var(--text-on-dark);
}

.method-step.is-active {
  box-shadow: inset 0 0 0 1px oklch(0.755 0.155 92 / 0.72);
}

.method-step > span:first-child {
  grid-row: span 2;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
}

.step-progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  overflow: hidden;
  background: oklch(0.755 0.155 92 / 0.08);
}

.step-progress::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
}

.method-step.is-active .step-progress::after {
  animation: method-progress var(--method-duration) linear forwards;
}

.method-workspace.is-paused .method-step.is-active .step-progress::after {
  animation-play-state: paused;
}

.method-step strong {
  font-size: clamp(1.02rem, 1.5vw, 1.25rem);
  font-weight: 650;
  letter-spacing: -0.02em;
}

.method-step small {
  color: var(--text-muted-dark);
  font-size: 12px;
  line-height: 1.5;
}

.method-panel {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  padding: clamp(38px, 5vw, 74px);
  background: var(--ink);
}

.method-panel::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: -20%;
  width: 42%;
  pointer-events: none;
  opacity: 0;
  transform: skewX(-12deg);
  background: linear-gradient(
    90deg,
    transparent,
    oklch(0.755 0.155 92 / 0.08),
    transparent
  );
}

.method-panel.is-changing::before {
  animation: panel-sweep 760ms var(--ease-out);
}

.method-panel .panel-kicker {
  position: relative;
  z-index: 2;
  margin-bottom: 56px;
}

.panel-tag {
  color: var(--gold);
}

.panel-meta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.method-playback {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 0 5px 14px;
  border: 0;
  border-left: 1px solid var(--line-dark);
  background: transparent;
  color: var(--text-muted-dark);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease;
}

.method-playback:hover,
.method-playback:focus-visible {
  color: var(--gold);
}

.method-playback [data-play-icon] {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: -0.16em;
}

.method-panel h3 {
  position: relative;
  z-index: 2;
  max-width: 540px;
  margin-bottom: 22px;
  color: var(--text-on-dark);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.method-panel > p {
  position: relative;
  z-index: 2;
  max-width: 550px;
  margin-bottom: 42px;
  color: var(--text-muted-dark);
  font-size: 15px;
  line-height: 1.75;
}

.panel-output {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  max-width: 470px;
  padding-top: 17px;
  border-top: 1px solid var(--line-dark);
}

.panel-output span {
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.panel-output strong {
  color: var(--text-on-dark);
  font-size: 14px;
  font-weight: 600;
}

.panel-radar {
  position: absolute;
  right: clamp(12px, 2.8vw, 44px);
  bottom: -20px;
  width: min(280px, 36%);
  height: auto;
  opacity: 0.34;
  fill: none;
  stroke: var(--line-dark);
  stroke-width: 1;
}

.panel-radar .radar-shape {
  transform-origin: 130px 130px;
  fill: oklch(0.755 0.155 92 / 0.14);
  stroke: var(--gold);
  stroke-width: 2;
}

.panel-radar .radar-point {
  fill: var(--gold);
  stroke: none;
}

.founder {
  position: relative;
  overflow: hidden;
  padding-block: clamp(96px, 11vw, 160px);
  border-bottom: 1px solid var(--line-light);
}

.founder::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 32vw;
  height: 32vw;
  max-width: 520px;
  max-height: 520px;
  border: 1px solid oklch(0.69 0.158 89 / 0.14);
  border-radius: 50%;
  transform: translate(36%, -46%);
}

.founder-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(390px, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(62px, 9vw, 146px);
}

.founder-portrait {
  margin: 0;
}

.portrait-frame {
  position: relative;
  min-height: clamp(610px, 62vw, 780px);
  overflow: hidden;
  background: var(--ink);
}

.portrait-frame::before,
.portrait-frame::after {
  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.portrait-frame::before {
  right: 24px;
  bottom: 24px;
  width: 70px;
  height: 70px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

.portrait-frame::after {
  inset: 0;
  background: linear-gradient(to top, oklch(0.15 0.01 88 / 0.22), transparent 34%);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 50% 18%;
  transition: transform 900ms var(--ease-out);
}

.founder-portrait:hover .portrait-frame img {
  transform: scale(1.025);
}

.portrait-coordinate {
  position: absolute;
  z-index: 3;
  color: var(--text-on-dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.portrait-coordinate-top {
  top: 24px;
  left: 24px;
}

.portrait-coordinate-bottom {
  right: 24px;
  bottom: 24px;
}

.founder-portrait figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 2px 0;
  color: var(--ink);
}

.founder-portrait figcaption strong {
  font-size: 15px;
  font-weight: 750;
}

.founder-portrait figcaption span {
  color: var(--text-muted-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.founder-copy {
  position: relative;
  z-index: 2;
  max-width: 690px;
}

.founder-copy h2 {
  margin-bottom: 34px;
  color: var(--ink);
  font-size: clamp(2.7rem, 5.2vw, 5.4rem);
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 1.01;
}

.founder-lead {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(1.22rem, 2vw, 1.65rem);
  font-weight: 580;
  letter-spacing: -0.025em;
  line-height: 1.5;
}

.founder-copy > p:not(.eyebrow):not(.founder-lead) {
  max-width: 66ch;
  margin-bottom: 38px;
  color: var(--text-muted-light);
  line-height: 1.78;
}

.founder-path {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 36px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.founder-path > div {
  min-height: 132px;
  padding: 20px 20px 18px 0;
}

.founder-path > div:not(:last-child) {
  border-right: 1px solid var(--line-light);
  margin-right: 20px;
}

.founder-path span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold-strong);
  font-size: 9px;
  font-weight: 800;
}

.founder-path strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 15px;
}

.founder-path small {
  display: block;
  color: var(--text-muted-light);
  font-size: 11px;
  line-height: 1.5;
}

.founder-copy blockquote {
  margin-bottom: 32px;
  padding: 20px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line-light);
  color: var(--ink);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 630;
  letter-spacing: -0.025em;
  line-height: 1.45;
}

.difference {
  padding-block: clamp(96px, 12vw, 170px);
}

.difference-lead {
  display: grid;
  grid-template-columns: minmax(210px, 0.48fr) minmax(0, 1.52fr);
  gap: clamp(32px, 6vw, 100px);
  margin-bottom: clamp(64px, 9vw, 116px);
}

.difference-lead .eyebrow {
  margin-top: 12px;
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-left: max(0px, 20%);
  border-top: 1px solid var(--ink);
}

.comparison-head {
  padding: 14px 22px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.comparison-head.comparison-before {
  color: var(--text-muted-light);
}

.comparison-head.comparison-after {
  background: var(--ink);
  color: var(--gold);
}

.comparison-item {
  min-height: 105px;
  padding: 26px 22px;
  border-top: 1px solid var(--line-light);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  font-weight: 560;
  line-height: 1.45;
}

.comparison-item.comparison-before {
  padding-right: clamp(24px, 5vw, 74px);
  color: var(--text-muted-light);
}

.comparison-item.comparison-after {
  position: relative;
  padding-left: 54px;
  background: var(--ink);
  color: var(--text-on-dark);
}

.comparison-item.comparison-after::before {
  content: "✓";
  position: absolute;
  top: 25px;
  left: 22px;
  color: var(--gold);
  font-weight: 800;
}

.manifesto {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(26px, 4vw, 56px);
  margin-top: clamp(80px, 10vw, 138px);
  padding: clamp(30px, 4vw, 52px);
  background: var(--gold);
  color: var(--ink-deep);
}

.manifesto-mark {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 1px solid oklch(0.3 0.03 88 / 0.35);
  font-family: Georgia, serif;
  font-size: 42px;
  font-weight: 700;
}

.manifesto p {
  margin-bottom: 6px;
  color: oklch(0.27 0.018 88 / 0.76);
  font-size: 13px;
}

.manifesto h3 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(1.45rem, 2.6vw, 2.45rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.local-business {
  position: relative;
  overflow: hidden;
  padding-block: clamp(96px, 11vw, 164px);
  background: var(--ink);
  color: var(--text-on-dark);
}

.local-business::before {
  content: "";
  position: absolute;
  width: 680px;
  height: 680px;
  top: 50%;
  right: -280px;
  transform: translateY(-50%);
  border: 1px solid var(--line-dark);
  border-radius: 50%;
}

.local-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  align-items: center;
  gap: clamp(64px, 8vw, 128px);
}

.local-copy {
  max-width: 640px;
}

.local-copy h2 {
  margin-bottom: 30px;
  color: var(--text-on-dark);
}

.local-copy > p:last-child {
  max-width: 580px;
  margin-bottom: 0;
  color: var(--text-muted-dark);
  font-size: 17px;
  line-height: 1.75;
}

.business-orbit {
  --orbit-cycle: 12s;
  position: relative;
  isolation: isolate;
  min-height: 540px;
}

.business-orbit::before,
.business-orbit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.business-orbit::before {
  width: 420px;
  height: 420px;
}

.business-orbit::after {
  width: 280px;
  height: 280px;
}

.business-orbit.is-visible::before,
.business-orbit.is-visible::after {
  animation: orbit-breathe 4.8s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.business-orbit.is-visible::after {
  animation-delay: -2.4s;
}

.orbit-scanner {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  pointer-events: none;
}

.orbit-scanner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 1px;
  transform: translateY(-50%);
  transform-origin: left center;
  background: linear-gradient(
    90deg,
    oklch(0.79 0.16 88 / 0.02),
    oklch(0.79 0.16 88 / 0.52)
  );
}

.orbit-scanner::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -4px;
  width: 9px;
  height: 9px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  transform: translateY(-50%);
  background: var(--gold);
  box-shadow:
    0 0 0 5px oklch(0.79 0.16 88 / 0.1),
    0 0 24px oklch(0.79 0.16 88 / 0.42);
}

.business-orbit.is-visible .orbit-scanner {
  animation: orbit-scan var(--orbit-cycle) linear infinite;
}

.orbit-center {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  display: flex;
  width: 178px;
  height: 178px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: var(--gold);
  color: var(--ink-deep);
  text-align: center;
}

.orbit-center::before {
  content: "";
  position: absolute;
  inset: -15px;
  border: 1px solid oklch(0.79 0.16 88 / 0.3);
  border-radius: 50%;
  pointer-events: none;
}

.business-orbit.is-visible .orbit-center::before {
  animation: center-signal 2.4s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.orbit-center span {
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.orbit-center strong {
  font-size: 24px;
  letter-spacing: -0.04em;
}

.orbit-center small {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 17px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.orbit-center small i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ink-deep);
}

.orbit-item {
  position: absolute;
  z-index: 3;
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  padding: 9px 14px 9px 10px;
  border: 1px solid var(--line-dark);
  background: var(--ink);
  color: var(--text-muted-dark);
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
  transition:
    color 420ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 420ms cubic-bezier(0.16, 1, 0.3, 1),
    background-color 420ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 420ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.orbit-item i {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  color: var(--gold);
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition:
    color 420ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 420ms cubic-bezier(0.16, 1, 0.3, 1),
    background-color 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.business-orbit.is-visible .orbit-item {
  animation: orbit-focus var(--orbit-cycle) cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.orbit-a {
  top: 10%;
  left: 44%;
}

.orbit-b {
  top: 34%;
  right: 2%;
}

.orbit-c {
  right: 13%;
  bottom: 15%;
}

.orbit-d {
  bottom: 7%;
  left: 20%;
}

.orbit-e {
  top: 38%;
  left: 0;
}

.business-orbit.is-visible .orbit-a {
  animation-delay: 0s;
}

.business-orbit.is-visible .orbit-b {
  animation-delay: 2.4s;
}

.business-orbit.is-visible .orbit-c {
  animation-delay: 4.8s;
}

.business-orbit.is-visible .orbit-d {
  animation-delay: 7.2s;
}

.business-orbit.is-visible .orbit-e {
  animation-delay: 9.6s;
}

@keyframes orbit-scan {
  from {
    transform: translate(-50%, -50%) rotate(-90deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(270deg);
  }
}

@keyframes orbit-breathe {
  0%,
  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.025);
  }
}

@keyframes center-signal {
  0% {
    opacity: 0.7;
    transform: scale(0.92);
  }

  72%,
  100% {
    opacity: 0;
    transform: scale(1.13);
  }
}

@keyframes orbit-focus {
  0%,
  17% {
    border-color: oklch(0.79 0.16 88 / 0.62);
    background: oklch(0.22 0.025 88);
    color: var(--text-on-dark);
    box-shadow:
      0 0 0 1px oklch(0.79 0.16 88 / 0.1) inset,
      0 14px 34px oklch(0.09 0.012 88 / 0.24);
    transform: translateY(-4px);
  }

  22%,
  100% {
    border-color: var(--line-dark);
    background: var(--ink);
    color: var(--text-muted-dark);
    box-shadow: none;
    transform: translateY(0);
  }
}

.business-orbit.is-visible .orbit-item i {
  animation: orbit-index var(--orbit-cycle) cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.business-orbit.is-visible .orbit-a i {
  animation-delay: 0s;
}

.business-orbit.is-visible .orbit-b i {
  animation-delay: 2.4s;
}

.business-orbit.is-visible .orbit-c i {
  animation-delay: 4.8s;
}

.business-orbit.is-visible .orbit-d i {
  animation-delay: 7.2s;
}

.business-orbit.is-visible .orbit-e i {
  animation-delay: 9.6s;
}

@keyframes orbit-index {
  0%,
  17% {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--ink-deep);
  }

  22%,
  100% {
    border-color: var(--line-dark);
    background: transparent;
    color: var(--gold);
  }
}

.faq {
  padding-block: clamp(96px, 12vw, 168px);
}

.faq-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: clamp(60px, 9vw, 150px);
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-height) + 48px);
}

.faq-heading h2 {
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 4.5vw, 4.7rem);
}

.faq-heading > p:last-child {
  max-width: 430px;
  margin-bottom: 0;
  color: var(--text-muted-light);
  line-height: 1.75;
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--line-light);
}

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  gap: 24px;
  padding: 22px 4px;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  font-weight: 620;
  letter-spacing: -0.02em;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.faq-list summary span::before,
.faq-list summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 220ms var(--ease-out);
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details[open] summary {
  color: var(--gold-strong);
}

.faq-list details > p {
  max-width: 700px;
  margin-bottom: 0;
  padding: 0 52px 32px 4px;
  color: var(--text-muted-light);
  line-height: 1.75;
}

.contact {
  position: relative;
  overflow: hidden;
  padding-block: clamp(96px, 11vw, 156px);
  background:
    radial-gradient(circle at 16% 72%, oklch(0.755 0.155 92 / 0.08), transparent 28%),
    var(--ink-deep);
  color: var(--text-on-dark);
}

.contact-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(390px, 0.9fr);
  align-items: center;
  gap: clamp(64px, 9vw, 150px);
}

.contact-copy h2 {
  max-width: 720px;
  margin-bottom: 28px;
  color: var(--text-on-dark);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 610px;
  color: var(--text-muted-dark);
  font-size: 17px;
  line-height: 1.75;
}

.contact-signature {
  position: relative;
  width: 220px;
  height: 92px;
  margin-top: 42px;
  overflow: hidden;
}

.contact-signature img {
  position: absolute;
  width: 310px;
  max-width: none;
  height: 310px;
  top: -111px;
  left: -45px;
}

.lead-form {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line-dark);
  background: var(--ink);
  box-shadow: 24px 32px 90px oklch(0.08 0.01 88 / 0.26);
}

.form-heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
  padding-bottom: 23px;
  border-bottom: 1px solid var(--line-dark);
}

.form-heading span {
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.form-heading strong {
  color: var(--text-on-dark);
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  font-weight: 650;
  letter-spacing: -0.03em;
}

.lead-form label {
  display: block;
  margin-bottom: 22px;
  color: var(--text-muted-dark);
  font-size: 11px;
  font-weight: 650;
}

.lead-form input,
.lead-form select {
  width: 100%;
  height: 54px;
  margin-top: 8px;
  padding: 0 15px;
  border: 1px solid var(--line-dark);
  border-radius: 0;
  outline: none;
  background: var(--ink-deep);
  color: var(--text-on-dark);
  font-size: 14px;
  transition: border-color 180ms ease;
}

.lead-form input::placeholder {
  color: oklch(0.61 0.012 88);
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--gold);
}

.lead-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--text-muted-dark) 50%),
    linear-gradient(135deg, var(--text-muted-dark) 50%, transparent 50%);
  background-position:
    calc(100% - 19px) 24px,
    calc(100% - 14px) 24px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.lead-form option {
  background: var(--ink);
  color: var(--text-on-dark);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  margin: 14px 0 0;
  color: oklch(0.65 0.012 88);
  font-size: 10px;
  line-height: 1.55;
  text-align: center;
}

.form-note.is-warning {
  color: var(--gold-soft);
}

.site-footer {
  padding-top: 56px;
  background: var(--ink-deep);
  color: var(--text-muted-dark);
}

.footer-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  padding-bottom: 52px;
}

.footer-shell > p {
  margin-bottom: 0;
  font-size: 13px;
  text-align: center;
}

.footer-shell > a:last-child {
  color: var(--text-on-dark);
  font-size: 12px;
  font-weight: 650;
}

.footer-shell > a:last-child span {
  margin-left: 8px;
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  border-top: 1px solid var(--line-dark);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mobile-cta {
  display: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 760ms var(--ease-out),
    transform 760ms var(--ease-out);
}

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

.no-js [data-reveal] {
  opacity: 1;
  transform: none;
}

@keyframes signal {
  0%,
  100% {
    box-shadow: 0 0 0 5px oklch(0.755 0.155 92 / 0.08);
  }
  50% {
    box-shadow: 0 0 0 10px oklch(0.755 0.155 92 / 0.02);
  }
}

@keyframes marquee {
  to {
    transform: translateX(-25%);
  }
}

@keyframes method-progress {
  to {
    transform: scaleX(1);
  }
}

@keyframes panel-sweep {
  0% {
    left: -32%;
    opacity: 0;
  }
  24% {
    opacity: 1;
  }
  100% {
    left: 108%;
    opacity: 0;
  }
}

@media (max-width: 1080px) {
  :root {
    --shell: min(100% - 40px, 940px);
  }

  .main-nav {
    gap: 18px;
  }

  .main-nav a {
    font-size: 12px;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
    gap: 42px;
  }

  .method-heading {
    grid-template-columns: 0.45fr 1fr;
  }

  .method-heading > p:last-child {
    grid-column: 2;
  }

  .manifesto {
    grid-template-columns: auto 1fr;
  }

  .manifesto .button {
    grid-column: 2;
    justify-self: start;
  }

  .contact-shell {
    gap: 60px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 74px;
  }

  .header-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-header .brand {
    position: relative;
    z-index: 102;
  }

  .brand-crop {
    width: 132px;
    height: 46px;
  }

  .brand-crop img {
    width: 178px;
    height: 178px;
    top: -68px;
    left: -26px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 46px;
    height: 46px;
    gap: 7px;
    padding: 10px;
    border: 0;
    background: transparent;
    color: var(--text-on-dark);
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 25px;
    height: 1px;
    background: currentColor;
    transition: transform 240ms var(--ease-out);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 90px 28px 40px;
    gap: 6px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    background: var(--ink-deep);
    transition:
      opacity 240ms ease,
      transform 300ms var(--ease-out),
      visibility 0s linear 300ms;
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .main-nav a {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid var(--line-dark);
    color: var(--text-on-dark);
    font-size: clamp(1.5rem, 7vw, 2.25rem);
    font-weight: 600;
    letter-spacing: -0.04em;
  }

  .main-nav a::after {
    display: none;
  }

  .hero-shell,
  .problem-layout,
  .method-workspace,
  .founder-shell,
  .local-shell,
  .faq-shell,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    min-height: auto;
    padding-block: 80px 92px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .diagnosis-board {
    max-width: 620px;
    margin-left: auto;
  }

  .section-intro,
  .difference-lead {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .section-intro .eyebrow,
  .difference-lead .eyebrow {
    margin-top: 0;
  }

  .problem-statement,
  .faq-heading {
    position: static;
    max-width: 680px;
  }

  .method-heading {
    grid-template-columns: 1fr;
  }

  .method-heading > p:last-child {
    grid-column: auto;
    max-width: 640px;
  }

  .method-steps {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .method-step {
    padding-left: 16px;
  }

  .founder-shell {
    max-width: 760px;
    gap: 64px;
  }

  .portrait-frame {
    min-height: min(820px, 108vw);
  }

  .founder-copy {
    max-width: 720px;
  }

  .comparison {
    margin-left: 0;
  }

  .local-shell {
    gap: 36px;
  }

  .business-orbit {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .faq-shell,
  .contact-shell {
    gap: 68px;
  }

  .lead-form {
    max-width: 640px;
    width: 100%;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 32px);
  }

  body {
    padding-bottom: 64px;
  }

  .brand-name {
    display: none;
  }

  .hero {
    background:
      radial-gradient(circle at 78% 24%, oklch(0.755 0.155 92 / 0.08), transparent 34%),
      var(--ink-deep);
  }

  .hero-grid,
  .contact-grid {
    background-size: 48px 48px;
  }

  .hero-shell {
    gap: 62px;
    padding-block: 60px 74px;
  }

  .eyebrow {
    margin-bottom: 20px;
    font-size: 10px;
  }

  .hero h1 {
    margin-bottom: 24px;
    font-size: clamp(2.82rem, 15.8vw, 4.5rem);
  }

  .hero h1 span {
    margin-top: 13px;
    font-size: 0.54em;
    line-height: 1.12;
  }

  .hero-lead {
    margin-bottom: 28px;
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

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

  .text-link {
    align-self: flex-start;
  }

  .hero-proof {
    display: grid;
    gap: 5px;
    margin-top: 30px;
  }

  .hero-proof span:not(:last-child)::after {
    display: none;
  }

  .diagnosis-board {
    padding: 24px 20px;
  }

  .diagnosis-board::before,
  .diagnosis-board::after {
    width: 48px;
    height: 48px;
  }

  .growth-path li {
    grid-template-columns: 26px 1fr auto;
    gap: 8px;
  }

  .strip-track {
    animation-duration: 20s;
  }

  .problem,
  .method,
  .founder,
  .difference,
  .local-business,
  .faq,
  .contact {
    padding-block: 88px;
  }

  .section-intro,
  .difference-lead,
  .method-heading {
    margin-bottom: 56px;
  }

  .section-intro h2,
  .difference-lead h2,
  .method-heading h2,
  .founder-copy h2,
  .local-copy h2,
  .faq-heading h2,
  .contact-copy h2 {
    font-size: clamp(2.45rem, 12.5vw, 4rem);
  }

  .problem-layout {
    gap: 56px;
  }

  .problem-statement > p {
    font-size: 15px;
  }

  .symptom-list li {
    grid-template-columns: 30px 1fr;
    min-height: 112px;
    gap: 16px;
  }

  .symptom-list svg {
    display: none;
  }

  .symptom-list p {
    font-size: 1.06rem;
  }

  .method-step {
    min-height: 110px;
    padding: 23px 16px;
  }

  .method-step:hover,
  .method-step.is-active {
    padding-left: 22px;
  }

  .method-panel {
    min-height: 510px;
    padding: 34px 24px;
  }

  .method-panel .panel-kicker {
    margin-bottom: 44px;
  }

  .panel-meta {
    gap: 10px;
  }

  .method-playback {
    padding-left: 10px;
  }

  .method-panel h3 {
    font-size: 2.35rem;
  }

  .panel-radar {
    width: 250px;
    opacity: 0.22;
  }

  .founder-shell {
    gap: 48px;
  }

  .portrait-frame {
    min-height: 520px;
  }

  .founder-portrait figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .founder-copy h2 {
    margin-bottom: 26px;
  }

  .founder-lead {
    font-size: 1.15rem;
  }

  .founder-path {
    grid-template-columns: 1fr;
  }

  .founder-path > div {
    min-height: auto;
    padding: 18px 0;
  }

  .founder-path > div:not(:last-child) {
    margin-right: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .founder-path span {
    margin-bottom: 8px;
  }

  .comparison {
    grid-template-columns: 1fr;
    border-top: 0;
  }

  .comparison-head {
    display: none;
  }

  .comparison-item {
    min-height: auto;
  }

  .comparison-item.comparison-before {
    padding: 22px 16px 12px;
    border-top: 1px solid var(--line-light);
    font-size: 0.92rem;
  }

  .comparison-item.comparison-before::before {
    content: "Antes";
    display: block;
    margin-bottom: 7px;
    color: var(--text-muted-light);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
  }

  .comparison-item.comparison-after {
    padding: 18px 16px 24px 48px;
    font-size: 1.02rem;
  }

  .comparison-item.comparison-after::before {
    top: 17px;
    left: 17px;
  }

  .manifesto {
    grid-template-columns: 1fr;
    margin-top: 68px;
    padding: 30px 24px;
  }

  .manifesto-mark {
    width: 56px;
    height: 56px;
    font-size: 32px;
  }

  .manifesto .button {
    grid-column: auto;
    width: 100%;
  }

  .business-orbit {
    min-height: 390px;
    transform: scale(0.92);
  }

  .business-orbit::before {
    width: 310px;
    height: 310px;
  }

  .business-orbit::after {
    width: 220px;
    height: 220px;
  }

  .orbit-scanner {
    width: 310px;
    height: 310px;
  }

  .orbit-center {
    width: 142px;
    height: 142px;
  }

  .orbit-center strong {
    font-size: 20px;
  }

  .orbit-center small {
    margin-top: 12px;
    font-size: 7px;
  }

  .orbit-item {
    min-height: 38px;
    gap: 7px;
    padding: 7px 10px 7px 7px;
    font-size: 11px;
  }

  .orbit-item i {
    width: 21px;
    height: 21px;
    font-size: 7px;
  }

  .orbit-a {
    top: 5%;
  }

  .orbit-b {
    right: -4%;
  }

  .orbit-c {
    right: 4%;
    bottom: 12%;
  }

  .orbit-d {
    bottom: 4%;
    left: 10%;
  }

  .orbit-e {
    left: -4%;
  }

  .faq-list summary {
    min-height: 88px;
    padding-block: 20px;
    font-size: 1rem;
  }

  .faq-list details > p {
    padding-right: 34px;
    font-size: 14px;
  }

  .contact-signature {
    margin-top: 26px;
  }

  .lead-form {
    padding: 26px 20px;
  }

  .site-footer {
    padding-top: 46px;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 18px;
  }

  .footer-shell > p {
    text-align: left;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 90;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    border: 1px solid oklch(0.92 0.03 88 / 0.3);
    border-radius: 4px;
    background: var(--gold);
    color: var(--ink-deep);
    box-shadow: 0 14px 34px oklch(0.1 0.01 88 / 0.26);
    font-size: 13px;
    font-weight: 800;
    transition:
      opacity 220ms ease,
      transform 260ms var(--ease-out);
  }

  .mobile-cta.is-hidden {
    pointer-events: none;
    opacity: 0;
    transform: translateY(130%);
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
