@font-face {
  font-family: "Manrope";
  src: url("./fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --ink: #121213;
  --ink-2: #1b1b1d;
  --ink-3: #262629;
  --ivory: #f4f4f0;
  --paper: #fbfbf8;
  --white: #ffffff;
  --stone: #dbdbd4;
  --stone-2: #c7c7bf;
  --muted: #686862;
  --accent: #ba481f;
  --accent-2: #f27a4d;
  --line: rgba(18, 18, 19, 0.15);
  --dark-line: rgba(244, 244, 240, 0.15);
  --page: min(1240px, calc(100vw - 48px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  content: "";
  opacity: 0.022;
  background-image:
    linear-gradient(rgba(18, 18, 19, 0.62) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 18, 19, 0.62) 1px, transparent 1px);
  background-size: 4px 4px;
  mix-blend-mode: multiply;
}

::selection {
  color: var(--paper);
  background: var(--accent);
}

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

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

button {
  font: inherit;
}

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

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

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

p {
  text-wrap: pretty;
}

em {
  color: inherit;
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 16px;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.section-shell {
  width: var(--page);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
  padding: 12px max(24px, calc((100vw - 1240px) / 2));
  border-bottom: 1px solid rgba(18, 18, 19, 0.11);
  background: rgba(244, 244, 240, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 12px;
  width: max-content;
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition:
    color 250ms ease,
    background 250ms ease;
}

.brand:hover .brand-mark {
  color: var(--paper);
  background: var(--ink);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.brand-copy strong {
  font-size: 13px;
  font-weight: 800;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.3vw, 36px);
}

.desktop-nav a {
  position: relative;
  padding-block: 8px;
  color: #4f4b44;
  font-size: 12px;
  font-weight: 700;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms var(--ease);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 18px;
  padding: 12px 16px;
  border: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 800;
  transition:
    color 250ms ease,
    background 250ms ease;
}

.header-cta span {
  color: var(--accent);
  font-size: 15px;
}

.header-cta:hover {
  color: var(--paper);
  background: var(--ink);
}

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

.hero {
  width: var(--page);
  min-height: min(900px, 100svh);
  margin-inline: auto;
  padding: 142px 0 72px;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  align-items: center;
  gap: clamp(56px, 7vw, 112px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 22px;
  height: 1px;
  background: var(--accent);
}

.eyebrow--dark {
  color: #a6a6a0;
}

.hero h1 {
  max-width: 760px;
  margin-top: 24px;
  font-size: clamp(54px, 5.2vw, 82px);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero h1 em {
  display: inline;
  color: var(--accent);
  font-size: inherit;
  letter-spacing: inherit;
}

.hero-intro {
  max-width: 660px;
  margin-top: 30px;
  color: #5e5a52;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 14px 20px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  transition:
    transform 250ms var(--ease),
    color 250ms ease,
    border-color 250ms ease,
    background 250ms ease;
}

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

.button--primary {
  color: var(--paper);
  background: var(--ink);
}

.button--primary span {
  color: var(--accent);
  font-size: 16px;
}

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

.button--ivory {
  color: var(--ink);
  background: var(--paper);
}

.button--ivory span {
  color: var(--accent);
  font-size: 16px;
}

.button--ivory:hover {
  background: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-block: 8px;
  border-bottom: 1px solid rgba(23, 23, 20, 0.55);
  font-size: 12px;
  font-weight: 800;
}

.text-link span {
  color: var(--accent);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 42px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.hero-notes li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #625e56;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero-notes li::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  content: "";
  background: var(--accent);
}

.hero-system {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  border: 1px solid rgba(23, 23, 20, 0.24);
  border-radius: 2px;
  color: var(--paper);
  background: var(--ink);
  box-shadow: 30px 34px 0 rgba(18, 18, 19, 0.055);
}

.hero-system::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.19;
  background-image:
    linear-gradient(rgba(244, 240, 232, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 240, 232, 0.13) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
}

.browser-bar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 54px;
  padding-inline: 20px;
  border-bottom: 1px solid var(--dark-line);
  color: #9d968b;
  background: rgba(255, 255, 255, 0.025);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #6a655c;
}

.browser-dots i:first-child {
  background: var(--accent);
}

.browser-address {
  padding: 6px 14px;
  border: 1px solid rgba(244, 240, 232, 0.08);
  border-radius: 20px;
}

.browser-status {
  justify-self: end;
  color: var(--accent-2);
  text-transform: uppercase;
}

.browser-status::before {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 6px;
  border-radius: 50%;
  content: "";
  background: var(--accent-2);
  box-shadow: 0 0 0 4px rgba(185, 173, 243, 0.09);
}

.system-content {
  position: relative;
  z-index: 2;
  padding: clamp(28px, 3vw, 44px);
}

.system-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.system-heading div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.system-heading small {
  color: var(--accent-2);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.system-heading strong {
  max-width: 330px;
  font-size: clamp(23px, 2.2vw, 31px);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.system-index {
  color: #777268;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 15px;
  font-weight: 750;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.journey-list {
  display: grid;
  gap: 8px;
  margin-top: 42px;
}

.journey-item {
  display: grid;
  grid-template-columns: 38px minmax(82px, 0.8fr) minmax(120px, 1.2fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  padding: 12px 16px;
  border: 1px solid rgba(244, 240, 232, 0.1);
  background: rgba(255, 255, 255, 0.025);
  transition:
    border-color 250ms ease,
    transform 250ms var(--ease),
    background 250ms ease;
}

.journey-item:hover {
  border-color: rgba(139, 115, 241, 0.48);
  background: rgba(255, 255, 255, 0.045);
  transform: translateX(4px);
}

.journey-item > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid #5c574f;
  border-radius: 50%;
  color: #9d968b;
  font-size: 8px;
  font-weight: 800;
}

.journey-item strong {
  font-size: 13px;
}

.journey-item small {
  color: #8f897f;
  font-size: 9px;
}

.journey-item > i {
  color: #6f6a61;
  font-style: normal;
}

.journey-item.is-active {
  border-color: rgba(244, 244, 240, 0.34);
  color: var(--paper);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 3px 0 0 var(--accent);
}

.journey-item.is-active > span {
  border-color: var(--accent);
  color: var(--accent-2);
}

.journey-item.is-active small {
  color: #a7a79f;
}

.journey-item.is-active > i {
  color: var(--accent-2);
}

.system-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--dark-line);
  color: #aaa397;
  font-size: 9px;
  font-weight: 700;
}

.system-pulse {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--paper);
}

.system-pulse i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(104, 73, 232, 0.12);
}

.orbit {
  position: absolute;
  right: -130px;
  bottom: -130px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(244, 244, 240, 0.1);
  border-radius: 50%;
}

.orbit--two {
  right: -52px;
  bottom: -52px;
  width: 230px;
  height: 230px;
}

.hero-showcase {
  min-height: 610px;
  background:
    radial-gradient(circle at 84% 84%, rgba(186, 72, 31, 0.18), transparent 30%),
    var(--ink);
}

.showcase-content {
  position: relative;
  z-index: 2;
  padding: clamp(26px, 3vw, 42px);
}

.showcase-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}

.showcase-heading > div {
  display: grid;
  gap: 9px;
}

.showcase-heading small {
  color: var(--accent-2);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.showcase-heading strong {
  max-width: 400px;
  font-size: clamp(22px, 2.1vw, 30px);
  letter-spacing: -0.04em;
  line-height: 1.14;
}

.showcase-heading > span {
  color: #777268;
  font-size: 13px;
  font-weight: 750;
  font-variant-numeric: tabular-nums;
}

.showcase-stack {
  position: relative;
  min-height: 330px;
  margin-top: 34px;
}

.showcase-project {
  position: absolute;
  display: flex;
  width: 70%;
  min-height: 232px;
  flex-direction: column;
  padding: 20px;
  border: 1px solid rgba(244, 244, 240, 0.18);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
  transition:
    transform 300ms var(--ease),
    filter 300ms ease;
}

.showcase-project:hover {
  transform: translateY(-8px) rotate(0deg) !important;
  filter: saturate(1.08);
}

.showcase-project-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 14px;
  border-bottom: 1px solid currentColor;
  opacity: 0.58;
}

.showcase-project-nav b {
  margin-right: auto;
  font-size: 9px;
}

.showcase-project-nav i {
  width: 18px;
  height: 1px;
  background: currentColor;
}

.showcase-project > small {
  margin-top: 24px;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.showcase-project > strong {
  max-width: 300px;
  margin-top: 10px;
  font-size: 19px;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.showcase-project > span {
  margin-top: auto;
  padding-top: 18px;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showcase-project--architecture {
  top: 16px;
  left: 0;
  color: #272a1f;
  background: #d9ddbf;
  transform: rotate(-2.2deg);
}

.showcase-project--health {
  top: 58px;
  right: 0;
  color: #eff5ef;
  background: #21483e;
  transform: rotate(1.7deg);
}

.showcase-project--business {
  top: 102px;
  left: 13%;
  color: #171717;
  background: #f1eee6;
  transform: rotate(-0.8deg);
}

.showcase-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--dark-line);
  color: #aaa397;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showcase-footer > div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--paper);
}

.showcase-footer i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(186, 72, 31, 0.12);
}

.showcase-ruler {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  height: 13px;
  border-top: 1px solid var(--dark-line);
}

.showcase-ruler i {
  border-right: 1px solid var(--dark-line);
}

.principles-strip {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 4vw, 64px);
  overflow: hidden;
  border-block: 1px solid var(--line);
  color: #625e56;
  background: var(--paper);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.principles-strip i {
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--ink);
}

.starting-point {
  padding-block: clamp(100px, 11vw, 168px);
}

.section-heading h2,
.method-heading h2,
.faq-heading h2 {
  max-width: 780px;
  margin-top: 20px;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.section-heading > p:last-child,
.method-heading > p:last-child,
.faq-heading > p:last-child {
  max-width: 590px;
  margin-top: 24px;
  color: #69645c;
  font-size: 15px;
  line-height: 1.75;
}

.section-heading--wide {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 30px 72px;
}

.section-heading--wide .eyebrow {
  grid-column: 1 / -1;
}

.section-heading--wide h2,
.section-heading--wide > p:last-child {
  margin-top: 0;
}

.moment-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 18px;
  margin-top: 68px;
}

.moment-card {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid var(--line);
}

.moment-card::after {
  position: absolute;
  right: -95px;
  bottom: -95px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(18, 18, 19, 0.12);
  border-radius: 50%;
  content: "";
}

.moment-card--light {
  background: var(--paper);
}

.moment-card--dark {
  color: var(--paper);
  background: var(--ink);
}

.moment-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid currentColor;
  color: var(--muted);
}

.moment-topline span {
  color: var(--accent);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 18px;
  font-weight: 750;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
}

.moment-topline small {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.moment-card--dark .moment-topline {
  border-color: var(--dark-line);
  color: #aaa9a3;
}

.moment-card h3 {
  max-width: 480px;
  margin-top: 18px;
  font-size: clamp(34px, 3.2vw, 48px);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.moment-card > p {
  max-width: 500px;
  margin-top: 22px;
  color: #68635b;
  font-size: 14px;
  line-height: 1.75;
}

.moment-card--dark > p {
  color: #bcb5aa;
}

.moment-card > .moment-signal {
  display: inline-flex;
  max-width: 420px;
  margin-top: 34px;
  padding: 9px 12px;
  border: 1px solid rgba(18, 18, 19, 0.16);
  color: #5c574f;
  background: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.moment-card--dark > .moment-signal {
  border-color: var(--dark-line);
  color: #c8c2b8;
  background: rgba(255, 255, 255, 0.045);
}

.moment-card ul {
  display: grid;
  gap: 12px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.moment-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
}

.moment-card li::before {
  display: grid;
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--accent);
  border-radius: 50%;
  content: "✓";
  color: var(--accent);
  font-size: 9px;
}

.moment-link {
  position: absolute;
  right: clamp(24px, 4vw, 52px);
  bottom: 118px;
  left: clamp(24px, 4vw, 52px);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid var(--ink);
  color: var(--paper);
  background: var(--ink);
  font-size: 10px;
  font-weight: 800;
  transition:
    color 240ms ease,
    background 240ms ease,
    transform 240ms var(--ease);
}

.moment-link:hover {
  color: var(--ink);
  background: transparent;
  transform: translateY(-2px);
}

.moment-card--dark .moment-link {
  border-color: var(--paper);
  color: var(--ink);
  background: var(--paper);
}

.moment-card--dark .moment-link:hover {
  color: var(--paper);
  background: transparent;
}

.moment-link span {
  color: var(--accent);
  font-size: 14px;
}

.moment-diagram {
  position: absolute;
  right: clamp(24px, 4vw, 52px);
  bottom: clamp(20px, 2.5vw, 30px);
  left: clamp(24px, 4vw, 52px);
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(251, 248, 241, 0.84);
  backdrop-filter: blur(10px);
}

.moment-diagram span {
  padding: 10px 8px;
  border: 1px solid rgba(23, 23, 20, 0.14);
  color: #746f66;
  font-size: 9px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.moment-diagram i {
  color: var(--muted);
  font-style: normal;
}

.moment-diagram span.is-highlighted {
  border-color: var(--ink);
  color: var(--paper);
  background: var(--ink);
}

.moment-diagram--dark {
  border-color: var(--dark-line);
  background: rgba(23, 23, 20, 0.84);
}

.moment-diagram--dark span {
  border-color: rgba(244, 240, 232, 0.16);
  color: #aaa397;
}

.moment-diagram--dark span.is-highlighted {
  color: var(--ink);
  border-color: var(--paper);
  background: var(--paper);
}

.shared-goal {
  display: flex;
  max-width: 900px;
  align-items: flex-start;
  gap: 14px;
  margin: 38px auto 0;
  color: #58544d;
  font-size: clamp(15px, 1.5vw, 19px);
  line-height: 1.65;
  text-align: center;
}

.shared-goal span {
  flex: 0 0 auto;
  color: var(--accent);
}

.diagnostic {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.diagnostic::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(244, 240, 232, 0.17) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 240, 232, 0.17) 1px, transparent 1px);
  background-size: 32px 32px;
}

.diagnostic-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(56px, 8vw, 128px);
  padding-block: clamp(100px, 11vw, 164px);
}

.diagnostic-intro h2 {
  margin-top: 22px;
  font-size: clamp(44px, 4.8vw, 70px);
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.diagnostic-intro > p:not(.eyebrow) {
  max-width: 450px;
  margin-top: 26px;
  color: #aaa398;
  font-size: 14px;
  line-height: 1.75;
}

.ten-seconds {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 56px;
}

.ten-seconds > strong {
  color: var(--accent);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 88px;
  font-weight: 750;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.075em;
  line-height: 0.8;
}

.ten-seconds > span {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.ten-seconds small {
  margin-top: 6px;
  color: #817b71;
  font-size: 8px;
  letter-spacing: 0.09em;
}

.diagnostic-card {
  border: 1px solid rgba(244, 240, 232, 0.18);
  background: rgba(255, 255, 255, 0.025);
  box-shadow: 24px 24px 0 rgba(0, 0, 0, 0.15);
}

.diagnostic-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding-inline: 22px;
  border-bottom: 1px solid var(--dark-line);
  color: #8f897f;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.question-row {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 84px;
  padding: 15px 22px;
  border-bottom: 1px solid var(--dark-line);
}

.question-number {
  color: var(--accent-2);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 14px;
  font-weight: 750;
  font-variant-numeric: tabular-nums;
}

.question-row p {
  max-width: 460px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.answer-group {
  display: flex;
  gap: 6px;
}

.answer-group button {
  width: 45px;
  min-height: 34px;
  border: 1px solid #4c4942;
  border-radius: 20px;
  color: #8f897f;
  background: transparent;
  cursor: pointer;
  font-size: 8px;
  font-weight: 800;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.answer-group button:hover {
  border-color: var(--paper);
  color: var(--paper);
}

.answer-group button.is-selected {
  border-color: var(--paper);
  color: var(--ink);
  background: var(--paper);
}

.diagnostic-result {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 150px;
  padding: 24px;
  background: var(--paper);
  color: var(--ink);
}

.score-visual {
  display: flex;
  align-items: baseline;
  padding-right: 20px;
  border-right: 1px solid rgba(23, 23, 20, 0.25);
}

.score-visual span {
  min-width: 45px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 56px;
  font-weight: 750;
  font-variant-numeric: tabular-nums;
  line-height: 0.8;
  text-align: right;
  color: var(--accent);
}

.score-visual small {
  margin-left: 6px;
  font-size: 10px;
  font-weight: 800;
}

.result-copy {
  display: flex;
  flex-direction: column;
}

.result-copy > small {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.result-copy > strong {
  margin-top: 6px;
  font-size: 16px;
}

.result-copy p {
  max-width: 460px;
  margin-top: 6px;
  font-size: 10px;
  line-height: 1.5;
}

.reset-test {
  padding: 10px 12px;
  border: 1px solid rgba(23, 23, 20, 0.36);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.strategy {
  padding-block: clamp(100px, 11vw, 168px);
}

.strategy-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 70px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.strategy-card {
  position: relative;
  min-height: 390px;
  padding: 30px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 248, 241, 0.32);
  transition:
    color 300ms ease,
    background 300ms ease,
    transform 300ms var(--ease);
}

.strategy-card:hover {
  z-index: 2;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-8px);
}

.strategy-number {
  color: var(--accent);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  font-weight: 750;
  font-variant-numeric: tabular-nums;
}

.strategy-card h3 {
  margin-top: 56px;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.strategy-card > strong {
  display: block;
  margin-top: 22px;
  color: #4f4f4a;
  font-size: 11px;
}

.strategy-card > p {
  margin-top: 14px;
  color: #69645c;
  font-size: 12px;
  line-height: 1.7;
}

.strategy-card:hover > p {
  color: #aaa398;
}

.strategy-arrow {
  position: absolute;
  right: 24px;
  bottom: 22px;
  color: var(--accent);
  font-size: 18px;
}

.authority-position {
  color: var(--paper);
  background: var(--ink);
}

.authority-position-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(64px, 9vw, 140px);
  padding-block: clamp(88px, 10vw, 140px);
}

.authority-statement h2 {
  margin-top: 22px;
  font-size: clamp(44px, 5.4vw, 76px);
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 1.04;
}

.authority-copy {
  align-self: end;
}

.authority-copy > p {
  color: #bbb4a9;
  font-size: 14px;
  line-height: 1.8;
}

.authority-copy > p + p {
  margin-top: 18px;
}

.authority-proof {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1.4fr;
  align-items: stretch;
  margin-top: 38px;
  border: 1px solid var(--dark-line);
}

.authority-proof span,
.authority-proof strong,
.authority-proof i {
  display: grid;
  min-height: 64px;
  place-items: center;
  padding: 10px;
  border-right: 1px solid var(--dark-line);
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.authority-proof i {
  color: var(--accent);
}

.authority-proof strong {
  border-right: 0;
  color: var(--ink);
  background: var(--paper);
}

.method {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(64px, 9vw, 140px);
  padding-block: clamp(110px, 12vw, 180px);
}

.method-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

.method-heading h2 {
  font-size: clamp(42px, 4.6vw, 66px);
}

.method-list {
  border-top: 1px solid var(--line);
}

.method-step {
  display: grid;
  grid-template-columns: 58px 1fr 126px;
  gap: 24px;
  min-height: 210px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.method-number {
  color: var(--accent);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 17px;
  font-weight: 750;
  font-variant-numeric: tabular-nums;
}

.method-step h3 {
  font-size: clamp(26px, 2.5vw, 34px);
  letter-spacing: -0.04em;
}

.method-step p {
  max-width: 510px;
  margin-top: 18px;
  color: #69645c;
  font-size: 13px;
  line-height: 1.75;
}

.method-step > small {
  display: flex;
  align-self: end;
  flex-direction: column;
  color: #4f4b44;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.35;
}

.method-step > small span {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 7px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.projects > .section-shell {
  padding-block: clamp(105px, 11vw, 164px);
}

.section-heading--projects {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 72px;
}

.section-heading--projects h2 {
  color: var(--paper);
}

.section-heading--projects > p {
  color: #aaa398;
}

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

.project-card--featured {
  grid-column: 1 / -1;
}

.project-card--featured .project-visual {
  aspect-ratio: 2.25 / 1;
}

.project-card--featured .mini-page {
  padding: clamp(26px, 5vw, 64px);
}

.project-card--featured .mini-page h3 {
  max-width: 660px;
  font-size: clamp(42px, 5vw, 74px);
}

.project-card--featured .mini-composition {
  width: 43%;
}

.project-visual {
  position: relative;
  display: block;
  aspect-ratio: 1.34 / 1;
  overflow: hidden;
  border: 1px solid rgba(244, 240, 232, 0.15);
  background: #292822;
  filter: grayscale(0.88) saturate(0.35) contrast(1.03);
  transition: filter 420ms var(--ease);
}

.project-visual::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(140deg, transparent 55%, rgba(255, 255, 255, 0.08));
}

.project-browser {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 40px;
  padding-inline: 14px;
  border-bottom: 1px solid currentColor;
  color: currentColor;
  opacity: 0.62;
  font-size: 8px;
  font-weight: 700;
}

.project-browser-dots {
  display: flex;
  gap: 5px;
}

.project-browser-dots i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.project-external {
  justify-self: end;
  font-size: 13px;
  font-style: normal;
  opacity: 0;
  transform: translate(-5px, 5px);
  transition:
    opacity 240ms ease,
    transform 240ms var(--ease);
}

.project-visual:hover .project-external {
  opacity: 1;
  transform: translate(0);
}

.project-visual:hover {
  filter: grayscale(0.12) saturate(0.72) contrast(1);
}

.mini-page {
  position: relative;
  z-index: 2;
  height: calc(100% - 40px);
  padding: clamp(24px, 3.5vw, 44px);
}

.mini-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mini-nav strong {
  margin-right: auto;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 17px;
  font-weight: 750;
  letter-spacing: -0.04em;
}

.mini-nav span {
  width: 30px;
  height: 1px;
  background: currentColor;
  opacity: 0.35;
}

.mini-page > small {
  display: block;
  margin-top: clamp(30px, 5vw, 66px);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mini-page h3 {
  position: relative;
  z-index: 2;
  max-width: 430px;
  margin-top: 12px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(32px, 4.2vw, 54px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.mini-cta {
  display: inline-block;
  margin-top: 22px;
  padding: 8px 12px;
  border: 1px solid currentColor;
  font-size: 7px;
  font-weight: 800;
  text-transform: uppercase;
}

.mini-composition {
  position: absolute;
  right: 6%;
  bottom: 0;
  width: 45%;
  height: 82%;
}

.mini-composition span {
  position: absolute;
  display: block;
  border: 1px solid currentColor;
}

.mini-composition span:first-child {
  inset: 4% 8% 0 22%;
  border-radius: 50% 50% 0 0;
  opacity: 0.45;
}

.mini-composition span:nth-child(2) {
  right: 0;
  bottom: 0;
  width: 54%;
  height: 58%;
  background: currentColor;
  opacity: 0.18;
}

.mini-composition span:last-child {
  right: 26%;
  bottom: 17%;
  width: 44%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.12;
}

.project-visual--architecture {
  color: #f5eee2;
  background:
    linear-gradient(90deg, transparent 54%, rgba(36, 26, 19, 0.64) 54%),
    linear-gradient(135deg, #a78f77, #5c493d);
}

.project-visual--architecture .mini-composition span:first-child {
  border-radius: 0;
  background:
    linear-gradient(90deg, transparent 48%, currentColor 49% 50%, transparent 51%),
    linear-gradient(transparent 48%, currentColor 49% 50%, transparent 51%);
  background-size: 30px 30px;
}

.project-visual--luiza {
  color: #5c3f3b;
  background:
    radial-gradient(circle at 82% 60%, rgba(169, 109, 98, 0.4), transparent 26%),
    #eadbd4;
}

.project-visual--luiza .mini-composition span:last-child {
  background: #9b675f;
  opacity: 0.44;
}

.project-visual--accounting {
  color: #eef7f1;
  background:
    radial-gradient(circle at 86% 25%, rgba(37, 173, 128, 0.26), transparent 25%),
    #123b35;
}

.project-visual--accounting .mini-cta {
  color: #123b35;
  border-color: #93d0bd;
  background: #93d0bd;
}

.project-visual--essenza {
  color: #f4e9db;
  background:
    radial-gradient(circle at 82% 58%, rgba(197, 151, 96, 0.28), transparent 31%),
    #593932;
}

.project-visual--essenza .mini-composition span {
  border-color: #d2a66f;
}

.project-visual--nildson {
  color: #1f4941;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.35), transparent 50%),
    #cbded4;
}

.project-visual--nildson .mini-composition span:nth-child(2) {
  background: #2e7165;
  opacity: 0.34;
}

.project-visual--oris {
  color: #f5f0e8;
  background:
    linear-gradient(115deg, transparent 48%, rgba(177, 210, 190, 0.17) 49%),
    #1d2924;
}

.project-visual--oris .mini-cta {
  color: #1d2924;
  background: #bad3c3;
}

.project-info {
  padding-top: 24px;
}

.project-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.project-title > div {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.project-title span {
  color: var(--accent-2);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 13px;
  font-weight: 750;
  font-variant-numeric: tabular-nums;
}

.project-title h3 {
  font-size: clamp(22px, 2.2vw, 31px);
  letter-spacing: -0.04em;
}

.project-title > small {
  padding: 7px 9px;
  border: 1px solid rgba(244, 240, 232, 0.2);
  color: #aaa398;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-info > p {
  max-width: 670px;
  margin-top: 18px;
  color: #aaa398;
  font-size: 11px;
  line-height: 1.7;
}

.project-info > p strong {
  color: var(--paper);
}

.project-info > a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding-bottom: 4px;
  border-bottom: 1px solid #706a61;
  color: var(--paper);
  font-size: 10px;
  font-weight: 800;
}

.project-info > a span {
  color: var(--accent-2);
}

.project-visual--shot {
  background: #181819;
}

.project-shot {
  width: 100%;
  height: calc(100% - 40px);
  object-fit: cover;
  object-position: top center;
  transition: transform 650ms var(--ease);
}

.project-visual--shot:hover .project-shot {
  transform: scale(1.018);
}

.project-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 20px;
}

.project-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid #706a61;
  color: var(--paper);
  font-size: 10px;
  font-weight: 800;
}

.project-links a span {
  color: var(--accent-2);
}

.insights {
  padding-block: clamp(105px, 11vw, 164px);
}

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

.insight-card {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  transition:
    transform 300ms var(--ease),
    box-shadow 300ms ease;
}

.insight-card:hover {
  box-shadow: 14px 14px 0 rgba(23, 23, 20, 0.08);
  transform: translateY(-6px);
}

.insight-image {
  min-height: 360px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: #d8d2c8;
}

.insight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(0.9) saturate(0.28);
  transition:
    filter 500ms var(--ease),
    transform 500ms var(--ease);
}

.insight-card:hover .insight-image img {
  filter: grayscale(0.08) saturate(0.76);
  transform: scale(1.025);
}

.insight-card > div:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: clamp(24px, 3vw, 38px);
}

.insight-card small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.insight-card h3 {
  margin-top: 16px;
  font-size: clamp(23px, 2.3vw, 33px);
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.insight-card > div:last-child > span {
  margin-top: 34px;
  border-bottom: 1px solid #7d776e;
  font-size: 9px;
  font-weight: 800;
}

.insight-card--reverse .insight-image {
  background: var(--ink);
}

.faq {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(68px, 10vw, 156px);
  padding-bottom: clamp(115px, 12vw, 180px);
}

.faq-heading h2 {
  font-size: clamp(42px, 4.8vw, 66px);
}

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

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

.faq-list summary {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 94px;
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary > span {
  color: var(--accent);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 14px;
  font-weight: 750;
  font-variant-numeric: tabular-nums;
}

.faq-list summary strong {
  font-size: 14px;
}

.faq-list summary i {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent);
  font-style: normal;
  transition: transform 280ms var(--ease);
}

.faq-list details[open] summary i {
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 650px;
  padding: 0 50px 28px 60px;
  color: #69645c;
  font-size: 12px;
  line-height: 1.8;
}

.contact {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.contact::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.09;
  background-image:
    linear-gradient(rgba(244, 244, 240, 0.23) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 244, 240, 0.23) 1px, transparent 1px);
  background-size: 34px 34px;
}

.contact-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 740px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding-block: 100px;
  text-align: center;
}

.contact .eyebrow {
  color: #a6a6a0;
}

.contact h2 {
  max-width: 970px;
  margin-top: 26px;
  color: var(--paper);
  font-size: clamp(54px, 7.2vw, 104px);
  font-weight: 650;
  letter-spacing: -0.07em;
  line-height: 0.95;
}

.contact h2 em {
  color: var(--accent-2);
}

.contact-inner > p {
  max-width: 660px;
  margin-top: 30px;
  color: rgba(244, 244, 240, 0.66);
  font-size: 15px;
  line-height: 1.75;
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 40px;
}

.contact-secondary {
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(244, 244, 240, 0.48);
  color: var(--paper);
  font-size: 10px;
  font-weight: 800;
}

.contact-note {
  margin-top: 22px;
  color: rgba(244, 244, 240, 0.56);
  font-size: 9px;
  font-weight: 700;
}

.contact-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(244, 244, 240, 0.1);
  border-radius: 50%;
}

.contact-orbit--one {
  top: -240px;
  left: -180px;
  width: 600px;
  height: 600px;
}

.contact-orbit--two {
  right: -120px;
  bottom: -310px;
  width: 720px;
  height: 720px;
}

.site-footer {
  color: var(--paper);
  background: var(--ink);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 30px;
  min-height: 170px;
}

.brand--footer .brand-mark {
  border-color: var(--paper);
}

.brand--footer .brand-copy small {
  color: #8f897f;
}

.footer-inner > p {
  color: #8f897f;
  font-size: 10px;
}

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

.footer-links a {
  border-bottom: 1px solid #5e5951;
  font-size: 9px;
  font-weight: 800;
}

.footer-inner > small {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid var(--dark-line);
  color: #6f6a61;
  font-size: 8px;
}

@media (max-width: 1100px) {
  :root {
    --page: min(100% - 40px, 980px);
  }

  .site-header {
    padding-inline: 20px;
  }

  .section-grid {
    grid-template-columns: 1fr 0.95fr;
    gap: 48px;
  }

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

  .hero-system {
    min-height: 540px;
  }

  .journey-item {
    grid-template-columns: 34px 1fr auto;
  }

  .journey-item small {
    display: none;
  }

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

  .strategy-card {
    min-height: 330px;
  }

  .insight-card {
    grid-template-columns: 0.78fr 1.22fr;
  }
}

@media (max-width: 860px) {
  :root {
    --page: min(100% - 32px, 720px);
  }

  html {
    scroll-padding-top: 76px;
  }

  .site-header {
    z-index: 102;
    grid-template-columns: 1fr auto;
    min-height: 68px;
    transition:
      color 240ms ease,
      background 240ms ease,
      border-color 240ms ease;
  }

  .site-header.is-menu-open {
    border-bottom-color: var(--dark-line);
    color: var(--paper);
    background: var(--ink);
    backdrop-filter: none;
  }

  .site-header.is-menu-open .brand-mark {
    border-color: var(--paper);
  }

  .site-header.is-menu-open .brand-copy small {
    color: #aaa398;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 103;
    display: flex;
    width: 42px;
    height: 42px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    border: 0;
    color: var(--ink);
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 24px;
    height: 1px;
    background: currentColor;
    transition:
      transform 240ms var(--ease),
      width 240ms ease;
  }

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

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

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    width: 100%;
    height: 100dvh;
    min-height: 100svh;
    visibility: hidden;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    padding:
      calc(96px + env(safe-area-inset-top))
      28px
      calc(32px + env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    color: var(--paper);
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 240ms ease,
      transform 240ms var(--ease),
      visibility 240ms;
  }

  .mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu nav {
    width: 100%;
    border-top: 1px solid var(--dark-line);
  }

  .mobile-menu nav a {
    display: grid;
    grid-template-columns: 38px 1fr;
    align-items: center;
    min-height: 72px;
    border-bottom: 1px solid var(--dark-line);
    font-size: 25px;
    font-weight: 650;
    letter-spacing: -0.03em;
  }

  .mobile-menu nav span {
    color: var(--accent-2);
    font-family: "Manrope", Arial, sans-serif;
    font-size: 13px;
    font-weight: 750;
    font-variant-numeric: tabular-nums;
  }

  .mobile-menu .button {
    width: 100%;
    margin-top: 32px;
    color: var(--ink);
    background: var(--paper);
  }

  .section-grid,
  .section-heading--wide,
  .diagnostic-shell,
  .authority-position-grid,
  .method,
  .section-heading--projects,
  .faq {
    grid-template-columns: 1fr;
  }

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

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

  .hero h1 {
    font-size: clamp(50px, 10vw, 72px);
  }

  .hero-system {
    min-height: 530px;
  }

  .hero-showcase {
    min-height: 590px;
  }

  .principles-strip {
    justify-content: flex-start;
    padding-inline: 24px;
    overflow-x: auto;
  }

  .section-heading--wide .eyebrow {
    grid-column: auto;
  }

  .section-heading--wide > p:last-child {
    max-width: 620px;
  }

  .moment-grid,
  .projects-grid,
  .insights-grid {
    grid-template-columns: 1fr;
  }

  .moment-card {
    min-height: 660px;
  }

  .diagnostic-shell {
    gap: 62px;
  }

  .diagnostic-intro {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0 32px;
  }

  .diagnostic-intro .eyebrow,
  .diagnostic-intro h2,
  .diagnostic-intro > p {
    grid-column: 1;
  }

  .ten-seconds {
    grid-column: 2;
    grid-row: 1 / 4;
    align-self: end;
  }

  .authority-position-grid {
    gap: 52px;
  }

  .method {
    gap: 64px;
  }

  .method-heading {
    position: static;
  }

  .section-heading--projects {
    gap: 28px;
  }

  .project-card--featured {
    grid-column: auto;
  }

  .project-card--featured .project-visual {
    aspect-ratio: 1.34 / 1;
  }

  .project-card--featured .mini-page {
    padding: clamp(24px, 3.5vw, 44px);
  }

  .project-card--featured .mini-page h3 {
    max-width: 430px;
    font-size: clamp(32px, 6vw, 54px);
  }

  .project-card--featured .mini-composition {
    width: 45%;
  }

  .insight-card {
    min-height: 390px;
  }

  .faq {
    gap: 56px;
  }

  .contact-inner {
    min-height: 680px;
  }
}

@media (max-width: 620px) {
  :root {
    --page: calc(100% - 28px);
  }

  body {
    font-size: 15px;
  }

  .site-header {
    min-height: 64px;
    padding-inline: 14px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 9px;
  }

  .brand-copy strong {
    font-size: 11px;
  }

  .brand-copy small {
    font-size: 7px;
  }

  .hero {
    padding: 104px 0 58px;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: clamp(44px, 13.8vw, 62px);
    line-height: 0.95;
  }

  .hero-intro {
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.65;
  }

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

  .hero-actions .button {
    width: 100%;
    justify-content: space-between;
  }

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

  .hero-notes {
    gap: 8px 14px;
    margin-top: 30px;
    padding-top: 18px;
  }

  .hero-notes li {
    font-size: 8px;
  }

  .hero-system {
    min-height: 510px;
    box-shadow: 12px 14px 0 rgba(23, 23, 20, 0.06);
  }

  .hero-showcase {
    min-height: 560px;
  }

  .showcase-content {
    padding: 24px 16px;
  }

  .showcase-heading strong {
    font-size: 21px;
  }

  .showcase-heading > span {
    font-size: 10px;
  }

  .showcase-stack {
    min-height: 315px;
    margin-top: 24px;
  }

  .showcase-project {
    width: 78%;
    min-height: 212px;
    padding: 16px;
  }

  .showcase-project > strong {
    font-size: 16px;
  }

  .showcase-project--health {
    top: 48px;
  }

  .showcase-project--business {
    top: 88px;
    left: 8%;
  }

  .showcase-footer {
    font-size: 7px;
  }

  .browser-bar {
    min-height: 48px;
    padding-inline: 14px;
  }

  .system-content {
    padding: 26px 18px;
  }

  .system-heading strong {
    font-size: 23px;
  }

  .journey-list {
    margin-top: 30px;
  }

  .journey-item {
    grid-template-columns: 33px 1fr auto;
    min-height: 64px;
    padding-inline: 12px;
  }

  .system-footer {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 25px;
  }

  .principles-strip {
    gap: 22px;
    min-height: 52px;
    font-size: 8px;
  }

  .starting-point,
  .strategy,
  .insights {
    padding-block: 90px;
  }

  .section-heading h2,
  .method-heading h2,
  .faq-heading h2 {
    font-size: 42px;
    line-height: 1;
  }

  .section-heading > p:last-child,
  .method-heading > p:last-child,
  .faq-heading > p:last-child {
    font-size: 13px;
    line-height: 1.7;
  }

  .moment-grid {
    margin-top: 45px;
  }

  .moment-card {
    min-height: 660px;
    padding: 26px 22px;
  }

  .moment-card h3 {
    margin-top: 16px;
    font-size: 35px;
  }

  .moment-card > .moment-signal {
    margin-top: 26px;
    font-size: 8px;
  }

  .moment-card > p {
    font-size: 12px;
  }

  .moment-card li {
    font-size: 10px;
  }

  .moment-link {
    right: 18px;
    bottom: 105px;
    left: 18px;
    font-size: 9px;
  }

  .moment-diagram {
    right: 18px;
    bottom: 18px;
    left: 18px;
    gap: 5px;
    padding: 9px;
  }

  .moment-diagram span {
    padding: 9px 4px;
    font-size: 7px;
  }

  .shared-goal {
    margin-top: 28px;
    font-size: 13px;
    text-align: left;
  }

  .diagnostic-shell {
    gap: 48px;
    padding-block: 90px;
  }

  .diagnostic-intro {
    display: block;
  }

  .diagnostic-intro h2 {
    font-size: 43px;
  }

  .ten-seconds {
    margin-top: 34px;
  }

  .ten-seconds > strong {
    font-size: 78px;
  }

  .diagnostic-card {
    box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.15);
  }

  .question-row {
    grid-template-columns: 28px 1fr;
    gap: 10px;
    min-height: 118px;
    padding: 16px;
  }

  .question-row p {
    font-size: 11px;
  }

  .answer-group {
    grid-column: 2;
  }

  .answer-group button {
    width: 58px;
  }

  .diagnostic-result {
    grid-template-columns: auto 1fr;
    gap: 14px;
    padding: 20px 16px;
  }

  .score-visual {
    padding-right: 14px;
  }

  .score-visual span {
    min-width: 35px;
    font-size: 50px;
  }

  .result-copy > strong {
    font-size: 13px;
  }

  .result-copy p {
    font-size: 9px;
  }

  .reset-test {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .strategy-grid {
    grid-template-columns: 1fr;
    margin-top: 44px;
  }

  .strategy-card {
    min-height: 300px;
  }

  .strategy-card h3 {
    margin-top: 36px;
  }

  .authority-position-grid {
    padding-block: 88px;
  }

  .authority-statement h2 {
    font-size: 43px;
  }

  .authority-copy > p {
    font-size: 12px;
  }

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

  .authority-proof i:nth-of-type(2) {
    display: none;
  }

  .authority-proof strong {
    grid-column: 1 / -1;
    border-top: 1px solid var(--dark-line);
  }

  .method {
    gap: 54px;
    padding-block: 92px;
  }

  .method-step {
    grid-template-columns: 38px 1fr;
    min-height: 230px;
  }

  .method-step > small {
    grid-column: 2;
    align-self: start;
  }

  .projects > .section-shell {
    padding-block: 90px;
  }

  .projects-grid {
    gap: 56px;
    margin-top: 48px;
  }

  .project-visual,
  .project-card--featured .project-visual {
    aspect-ratio: 1 / 1.02;
  }

  .mini-page {
    padding: 22px;
  }

  .project-card--featured .mini-page {
    padding: 22px;
  }

  .mini-nav span {
    width: 18px;
  }

  .mini-page > small {
    margin-top: 36px;
  }

  .mini-page h3,
  .project-card--featured .mini-page h3 {
    max-width: 240px;
    font-size: 35px;
  }

  .mini-composition,
  .project-card--featured .mini-composition {
    width: 53%;
    opacity: 0.72;
  }

  .project-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .project-title > small {
    align-self: flex-start;
  }

  .insights-grid {
    margin-top: 46px;
  }

  .insight-card {
    grid-template-columns: 1fr;
  }

  .insight-image {
    min-height: 0;
    aspect-ratio: 1 / 1;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .insight-card > div:last-child {
    min-height: 250px;
  }

  .faq {
    gap: 44px;
    padding-bottom: 90px;
  }

  .faq-list summary {
    grid-template-columns: 30px 1fr auto;
    gap: 10px;
    min-height: 90px;
  }

  .faq-list summary strong {
    font-size: 12px;
  }

  .faq-list summary i {
    width: 28px;
    height: 28px;
  }

  .faq-list details > p {
    padding: 0 20px 24px 40px;
    font-size: 11px;
  }

  .contact-inner {
    min-height: 670px;
    padding-block: 84px;
  }

  .contact h2 {
    font-size: clamp(50px, 14.8vw, 67px);
  }

  .contact-inner > p {
    font-size: 13px;
  }

  .contact-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .contact-actions .button {
    width: 100%;
    justify-content: space-between;
  }

  .contact-secondary {
    align-self: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-block: 48px;
  }

  .footer-links {
    justify-content: space-between;
  }

  .footer-inner > small {
    grid-column: auto;
  }
}

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

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