:root {
  color-scheme: light;
  --paper: #f7f4ed;
  --ink: #171713;
  --muted: #6f6a60;
  --animation-gray: #a09890;
  --faint: rgba(23, 23, 19, 0.1);
  --line: rgba(23, 23, 19, 0.22);
  --accent: #0e9090;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@property --trace-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  overscroll-behavior: none;
  background: var(--paper);
  color: var(--ink);
}

body {
  font-size: 16px;
}

button,
a,
input,
select,
textarea {
  font: inherit;
}

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

button {
  color: inherit;
}

.experience {
  position: relative;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  background: var(--paper);
}

.intro {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 100svh;
  padding: 40px;
  overflow: hidden;
  background: var(--paper);
  will-change: transform;
  transition:
    transform 880ms cubic-bezier(0.76, 0, 0.24, 1);
}

.is-open .intro {
  transform: translateY(-100%);
  pointer-events: none;
}

.skip-intro .intro {
  display: none;
}

.intro-inner {
  width: min(640px, 100%);
  text-align: center;
}

.intro-brand {
  position: absolute;
  top: 34px;
  left: 42px;
}

.intro-brand .brand-mark {
  width: 42px;
  height: 42px;
}

h1,
h2,
h3,
p,
a,
button,
summary,
li,
input,
select,
textarea {
  overflow-wrap: anywhere;
}

h1 {
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.2em;
  margin: 0 auto;
  font-size: 56px;
  font-weight: 520;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.intro-name {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(14, 144, 144, 0.12);
  color: var(--accent);
  padding: 0.05em 0.26em 0.1em;
}

.word-rotator {
  position: relative;
  display: inline-grid;
  height: 1.08em;
  min-width: 3.9em;
  overflow: hidden;
  text-align: left;
  vertical-align: bottom;
  white-space: nowrap;
}

.word-rotator span {
  grid-area: 1 / 1;
  transform: translateY(110%);
  opacity: 0;
  animation: rotateWelcomeWord 13.5s cubic-bezier(0.76, 0, 0.24, 1) infinite;
}

.word-rotator span:nth-child(2) {
  animation-delay: 1.5s;
}

.word-rotator span:nth-child(3) {
  animation-delay: 3s;
}

.word-rotator span:nth-child(4) {
  animation-delay: 4.5s;
}

.word-rotator span:nth-child(5) {
  animation-delay: 6s;
}

.word-rotator span:nth-child(6) {
  animation-delay: 7.5s;
}

.word-rotator span:nth-child(7) {
  animation-delay: 9s;
}

.word-rotator span:nth-child(8) {
  animation-delay: 10.5s;
}

.word-rotator span:nth-child(9) {
  animation-delay: 12s;
}

.start-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 194px;
  min-height: 50px;
  margin-top: 32px;
  padding: 0 28px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  transition:
    background 160ms ease,
    transform 160ms ease;
}

.start-button::before {
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(23, 23, 19, 0.26);
  content: "";
  pointer-events: none;
}

.start-button::after {
  position: absolute;
  inset: -7px;
  padding: 1px;
  background: conic-gradient(
    from var(--trace-angle),
    transparent 0deg,
    transparent 282deg,
    var(--ink) 318deg,
    transparent 360deg
  );
  content: "";
  pointer-events: none;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  animation: traceButton 2.6s linear infinite;
}

.start-button span {
  position: relative;
  z-index: 1;
  display: block;
}

.start-button:hover,
.start-button:focus-visible {
  background: rgba(255, 255, 255, 0.3);
  outline: none;
  transform: translateY(-1px);
}

.start-button.is-loading {
  pointer-events: none;
}

.start-button.is-loading::after {
  animation-duration: 850ms;
}

.start-button.is-loading span {
  opacity: 0.58;
}

.site-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  height: 100svh;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: none;
  opacity: 1;
  transform: translateY(100%);
  visibility: hidden;
  pointer-events: none;
  scroll-behavior: smooth;
  --route-progress: 0%;
  transition:
    transform 880ms cubic-bezier(0.76, 0, 0.24, 1);
}

.site-content.is-live {
  transform: none;
  visibility: visible;
  pointer-events: auto;
  transition: none;
}

.is-open .site-content {
  transform: none;
  visibility: visible;
  pointer-events: auto;
}

.skip-intro .site-content {
  transform: none;
  visibility: visible;
  pointer-events: auto;
  transition: none;
}

.site-content:focus {
  outline: none;
}

.site-content.is-loading-customizer {
  overscroll-behavior: contain;
}

.site-content.is-guided-scrolling {
  scroll-behavior: auto;
}

.site-content.is-offer-gate-locked {
  overflow: auto;
}

.customizer-overlay {
  position: absolute;
  inset: 0;
  z-index: 18;
  display: grid;
  place-items: center;
  background: rgba(247, 244, 237, 0.94);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 150ms ease;
}

.customizer-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.customizer-panel {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  justify-items: center;
  align-items: center;
  gap: clamp(22px, 4vw, 34px);
  width: min(720px, calc(100vw - 48px));
  min-height: min(656px, calc(100svh - 96px));
  max-width: calc(100vw - 48px);
  padding: clamp(36px, 6vw, 56px) clamp(30px, 7vw, 64px) clamp(32px, 5vw, 48px);
  border: 1px solid rgba(23, 23, 19, 0.12);
  background: rgba(247, 244, 237, 0.86);
  box-shadow: 0 18px 42px rgba(23, 23, 19, 0.06);
  text-align: center;
}

.customizer-visual {
  position: relative;
  align-self: center;
  justify-self: center;
  width: min(580px, 100%);
  aspect-ratio: 700 / 480;
}

.customizer-visual canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.customizer-ring,
.customizer-track {
  position: absolute;
  border: 1px solid rgba(23, 23, 19, 0.14);
}

.customizer-ring {
  inset: 12%;
  border-radius: 50%;
}

.customizer-ring.inner-ring {
  inset: 30%;
}

.customizer-track {
  top: 50%;
  left: 14%;
  right: 14%;
  height: 1px;
  transform: translateY(-50%);
}

.customizer-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  background: var(--paper);
}

.customizer-dot.dot-a {
  top: 14%;
  left: 50%;
  animation: loaderOrbit 1.8s linear infinite;
  transform-origin: 0 60px;
}

.customizer-dot.dot-b {
  right: 18%;
  bottom: 24%;
  animation: slowFloat 2.8s ease-in-out infinite;
}

.customizer-dot.dot-c {
  left: 16%;
  top: 52%;
  animation: loaderPulse 1.6s ease-in-out infinite;
}

.customizer-copy {
  justify-self: center;
  max-width: 100%;
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 740;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 220ms ease, opacity 180ms ease, transform 220ms ease;
}

.customizer-copy.is-complete {
  color: var(--accent);
  transform: translateY(-2px);
}

.customizer-copy.is-hidden {
  opacity: 0;
  transform: translateY(-4px);
}

.route-rail {
  position: fixed;
  top: 112px;
  left: 28px;
  translate: 0 0;
  z-index: 8;
  display: grid;
  gap: 8px;
  width: 82px;
  padding: 8px 0 8px 14px;
  color: rgba(23, 23, 19, 0.48);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  background: transparent;
  backdrop-filter: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.route-rail.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.route-line {
  position: absolute;
  top: 9px;
  left: 0;
  width: 1px;
  height: calc(100% - 18px);
  background: rgba(23, 23, 19, 0.12);
}

.route-line span {
  display: block;
  width: 1px;
  height: var(--route-progress);
  background: currentColor;
  transition: height 120ms linear;
}

.route-rail a {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  line-height: 1;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.route-rail a.on-dark {
  color: rgba(255, 255, 255, 0.68);
}

.route-rail a.is-active {
  color: var(--ink);
  transform: translateX(4px);
}

.route-rail a.is-active.on-dark {
  color: #ffffff;
}

.site-header {
  position: relative;
  top: auto;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 48px));
  min-height: 74px;
  margin: 0 auto;
  border-bottom: 1px solid var(--faint);
  background: rgba(247, 244, 237, 0.86);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 44px;
  font-weight: 750;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--accent);
  border-radius: 9px;
  transition:
    transform 180ms ease;
}

.brand-mark svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.brand-mark .signal-tile {
  fill: currentColor;
}

.brand-mark .signal-pulse {
  fill: none;
  stroke: #ffffff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.5;
}

.brand-name {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}

.brand-name strong {
  font-size: 15px;
  font-weight: 780;
}

.brand small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

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

.brand:focus-visible {
  outline: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
}

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

.section-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

@media (min-width: 941px) {
  .section-inner {
    width: min(1180px, calc(100% - 176px));
    margin-left: max(132px, calc((100% - 1180px) / 2 + 24px));
    margin-right: 44px;
  }

  .site-header {
    width: calc(100% - 84px);
    margin-left: 42px;
    margin-right: 42px;
  }
}

.terrain-intro {
  position: relative;
  min-height: 100svh;
  padding: 120px 0 82px;
  overflow: hidden;
  border-bottom: 1px solid var(--faint);
  background: var(--paper);
}

.terrain-intro-canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.terrain-intro-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: start;
  justify-items: center;
  min-height: calc(100svh - 202px);
}

.terrain-copy {
  max-width: 660px;
  position: relative;
  z-index: 2;
  padding-top: 34px;
  text-align: center;
}

.terrain-title {
  display: block;
  margin: 0;
  color: #161512;
  font-size: clamp(34px, 4.3vw, 62px);
  font-weight: 360;
  line-height: 1.12;
  letter-spacing: -0.03em;
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
  text-shadow: 0 1px 0 rgba(247, 244, 237, 0.4);
}

.terrain-title em {
  display: inline;
  color: var(--accent);
  font-style: normal;
  font-weight: 460;
}


.terrain-scroll-cue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-top: 30px;
  color: rgba(23, 23, 19, 0.68);
  transition:
    color 160ms ease,
    transform 160ms ease;
  animation: terrainScrollCueFloat 4.6s ease-in-out infinite;
}

.terrain-scroll-cue svg {
  width: 28px;
  height: 44px;
  overflow: visible;
}

.terrain-scroll-cue path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.terrain-scroll-cue:hover,
.terrain-scroll-cue:focus-visible {
  color: var(--accent);
  outline: none;
  transform: translateY(-1px);
}

.hero-section {
  position: relative;
  display: grid;
  align-items: end;
  min-height: calc(100svh - 74px);
  padding: 96px 0 78px;
  overflow: hidden;
}

.hero-grid,
.split,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(280px, 0.72fr);
  gap: min(9vw, 112px);
  align-items: start;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-size: 56px;
  font-weight: 560;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-title {
  max-width: 720px;
  font-size: clamp(52px, 5.3vw, 68px);
  line-height: 1.02;
  text-wrap: balance;
}

.hero-accent {
  color: var(--accent);
  font-weight: 600;
}

h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.2;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.hero-copy p,
.large-copy {
  font-size: 19px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  margin-top: 88px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  border: 1px solid var(--ink);
  color: var(--ink);
  padding: 13px 18px;
  font-size: 14px;
  font-weight: 720;
  line-height: 1;
  text-decoration: none;
  transition:
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.hero-cta::after {
  width: 24px;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero-cta:hover,
.hero-cta:focus-visible {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--paper);
  outline: none;
  transform: translateY(-1px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  font-weight: 750;
}

.text-link::after {
  width: 42px;
  height: 1px;
  background: currentColor;
  content: "";
  transform-origin: left;
  transition: transform 160ms ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1.35);
}

.section {
  position: relative;
  padding: 110px 0;
  border-top: 1px solid var(--faint);
}

.section[data-route-tone="dark"] {
  border-top-color: var(--faint);
}

.chapter {
  min-height: min(920px, 86svh);
  display: grid;
  align-items: center;
}

.chapter > .section-inner,
.hero-section > .section-inner {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms ease,
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.chapter.is-visible > .section-inner,
.hero-section.is-visible > .section-inner,
.is-open .hero-section > .section-inner {
  opacity: 1;
  transform: translateY(0);
}

.ambient-system {
  position: absolute;
  top: 10%;
  right: max(34px, calc((100vw - 1180px) / 2));
  width: min(430px, 38vw);
  aspect-ratio: 1;
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 760ms ease 360ms,
    transform 760ms ease 360ms;
}

.is-open .ambient-system {
  opacity: 1;
  transform: translateY(0);
}

.ambient-system canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.orbit-ring {
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(23, 23, 19, 0.16);
  border-radius: 50%;
}

.orbit-ring::before,
.orbit-ring::after {
  position: absolute;
  inset: 24%;
  border: 1px solid rgba(23, 23, 19, 0.1);
  border-radius: 50%;
  content: "";
}

.orbit-ring::after {
  inset: 48%;
}

.orbit-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
}

.dot-one {
  top: 21%;
  left: 50%;
  animation: slowOrbit 12s linear infinite;
  transform-origin: 0 138px;
}

.dot-two {
  right: 26%;
  bottom: 30%;
  animation: slowFloat 6s ease-in-out infinite;
}

.mini-chart,
.floating-chart {
  display: flex;
  align-items: end;
  gap: 9px;
  min-height: 84px;
}

.mini-chart {
  position: absolute;
  right: 4%;
  bottom: 16%;
  width: 128px;
  padding: 14px;
  border: 1px solid rgba(23, 23, 19, 0.18);
}

.mini-chart span,
.floating-chart span {
  width: 1px;
  height: var(--bar);
  background: var(--ink);
  transform-origin: bottom;
  animation: chartBreathe 4.8s ease-in-out infinite;
}

.mini-chart span:nth-child(2),
.floating-chart span:nth-child(2) {
  animation-delay: -1s;
}

.mini-chart span:nth-child(3),
.floating-chart span:nth-child(3) {
  animation-delay: -2s;
}

.mini-chart span:nth-child(4),
.floating-chart span:nth-child(4) {
  animation-delay: -3s;
}

.signal-map {
  position: absolute;
  left: 0;
  bottom: 6%;
  width: 74%;
  overflow: visible;
}

.signal-map path {
  fill: none;
  stroke: rgba(23, 23, 19, 0.62);
  stroke-width: 1.2;
  stroke-dasharray: 620;
  stroke-dashoffset: 620;
}

.is-open .signal-map path {
  animation: drawMap 1.9s cubic-bezier(0.65, 0, 0.35, 1) 520ms forwards;
}

.signal-map circle {
  fill: var(--paper);
  stroke: var(--ink);
  stroke-width: 1.2;
}

.line-lab {
  display: grid;
  grid-template-columns: 1fr 0.6fr 0.9fr;
  gap: 16px;
  width: min(560px, 100%);
  margin-top: 48px;
}

.line-control {
  position: relative;
  min-height: 48px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0 0 22px;
  text-align: left;
}

.line-track {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 1px;
  background: rgba(23, 23, 19, 0.34);
  transform: scaleX(0);
  transform-origin: left;
  transition:
    background 180ms ease,
    height 180ms ease,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.line-runner {
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 160ms ease;
}

.line-word {
  position: absolute;
  left: 0;
  bottom: 30px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 750;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.is-visible .line-track {
  animation: lineGrow 900ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.is-visible .line-control:nth-child(2) .line-track {
  animation-delay: 120ms;
}

.is-visible .line-control:nth-child(3) .line-track {
  animation-delay: 240ms;
}

.line-control:hover .line-track,
.line-control:focus-visible .line-track,
.line-control.is-active .line-track {
  height: 2px;
  background: var(--ink);
}

.line-control:focus-visible {
  outline: none;
}

.line-control:hover .line-word,
.line-control:focus-visible .line-word,
.line-control.is-active .line-word {
  opacity: 1;
  transform: translateY(0);
}

.line-control.is-active .line-runner {
  opacity: 1;
  animation: lineRunner 2.4s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.line-note {
  width: min(360px, 100%);
  min-height: 26px;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.statement-section.is-visible .line-note {
  opacity: 1;
  transform: translateY(0);
}

.floating-chart {
  width: min(260px, 100%);
  margin-top: 38px;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
}

.choice-surface,
.question-card,
.step-lab,
.scope-builder,
.team-switcher,
.price-picker {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  transition:
    padding-left 220ms ease,
    border-color 220ms ease;
}

.choice-surface > :not(.visual-system),
.question-card > :not(.visual-system),
.step-lab > :not(.visual-system),
.scope-builder > :not(.visual-system),
.team-switcher > :not(.visual-system),
.price-picker > :not(.visual-system) {
  position: relative;
  z-index: 2;
}

.choice-buttons,
.step-lab [hidden].step-buttons,
.step-lab .step-buttons[hidden] {
  display: none !important;
}

.step-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 28px auto 0;
  position: relative;
  z-index: 2;
}

.step-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(19, 24, 21, 0.18);
  background: transparent;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  color: #131815;
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
  flex-shrink: 0;
}

.step-arrow svg {
  width: 18px;
  height: 18px;
  display: block;
}

.step-arrow:hover,
.step-arrow:focus-visible {
  border-color: rgba(19, 24, 21, 0.45);
  background: rgba(19, 24, 21, 0.04);
  transform: translateY(-1px);
}

.step-lab[data-step-flashcard] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.step-flashcard {
  width: 100% !important;
  max-width: 520px;
  margin: 0 auto !important;
  padding: 32px 32px 36px;
  background: #f1ede3;
  border: 1px solid rgba(19, 24, 21, 0.08);
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(19, 24, 21, 0.04);
  transition: opacity 220ms ease, transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.step-flashcard > span[data-step-number] {
  color: var(--accent);
  font-size: 13px;
  font-weight: 720;
  letter-spacing: 0.16em;
}

.step-flashcard h3 {
  font-size: 28px;
  font-weight: 720;
  margin: 10px 0 12px;
}

.step-flashcard p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

.step-flashcard.is-fading {
  opacity: 0;
  transform: translateY(6px);
}

.step-buttons,
.scope-toggles,
.team-buttons,
.price-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.offer-choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

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

.site-content:not(.is-offer-unlocked) #offers {
  min-height: 100svh;
}

.site-content:not(.is-offer-unlocked) #process,
.site-content:not(.is-offer-unlocked) #scope,
.site-content:not(.is-offer-unlocked) #teams,
.site-content:not(.is-offer-unlocked) #pricing,
.site-content:not(.is-offer-unlocked) #faq,
.site-content:not(.is-offer-unlocked) #contact,
.site-content:not(.is-offer-unlocked) .site-footer {
  display: none;
}

.offer-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 480px);
  align-items: center;
  gap: min(4.5vw, 56px);
  max-width: none;
}

.offer-heading-copy {
  max-width: 620px;
}

.offer-layout .offer-choice-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.choice-buttons button,
.question-options button,
.step-buttons button,
.scope-toggles button,
.team-buttons button,
.price-buttons button {
  min-height: 44px;
  border: 1px solid rgba(23, 23, 19, 0.2);
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  padding: 0 14px;
  transition:
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease,
    background 160ms ease;
}

.offer-choice-grid button {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 128px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 0 0 rgba(23, 23, 19, 0);
  overflow: hidden;
  will-change: transform;
}

.offer-choice-grid button > * {
  position: relative;
  z-index: 1;
}

.offer-choice-grid button::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(30, 125, 109, 0.18), transparent 50%),
    rgba(30, 125, 109, 0.075);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: scale(0.985);
}

.site-content:not(.is-offer-unlocked) .offer-choice-grid button:not(.is-loading):not(.is-active):not(:hover):not(:focus-visible)::before {
  animation: offerChoiceHint 6.4s ease-in-out infinite;
}

.site-content:not(.is-offer-unlocked) .offer-choice-grid button:not(.is-loading):not(.is-active):not(:hover):not(:focus-visible) {
  animation: offerChoiceBorderHint 6.4s ease-in-out infinite;
}

.site-content:not(.is-offer-unlocked) .offer-choice-grid button:nth-child(2)::before {
  animation-delay: 1.45s;
}

.site-content:not(.is-offer-unlocked) .offer-choice-grid button:nth-child(2) {
  animation-delay: 1.45s;
}

.site-content:not(.is-offer-unlocked) .offer-choice-grid button:nth-child(3)::before {
  animation-delay: 2.9s;
}

.site-content:not(.is-offer-unlocked) .offer-choice-grid button:nth-child(3) {
  animation-delay: 2.9s;
}

.offer-choice-grid button:hover,
.offer-choice-grid button:focus-visible {
  border-color: var(--accent);
  background: rgba(23, 23, 19, 0.025);
  color: var(--ink);
  outline: none;
  transform: translateY(-3px);
  box-shadow:
    inset 0 0 0 1px var(--accent),
    0 16px 30px rgba(23, 23, 19, 0.07);
}

.offer-choice-title {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 620;
  line-height: 1.08;
}

.offer-choice-title span {
  color: var(--accent);
  opacity: 0.72;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.offer-choice-grid button:hover .offer-choice-title span,
.offer-choice-grid button:focus-visible .offer-choice-title span,
.offer-choice-grid button.is-active .offer-choice-title span {
  opacity: 1;
  transform: translateX(3px);
}

.offer-choice-copy {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.offer-choice-grid button:disabled {
  cursor: wait;
  opacity: 0.66;
}

.offer-choice-grid button.is-loading {
  border-color: var(--accent);
  background: rgba(14, 144, 144, 0.035);
  color: var(--accent);
}

.choice-buttons button:hover,
.choice-buttons button:focus-visible,
.question-options button:hover,
.question-options button:focus-visible,
.step-buttons button:hover,
.step-buttons button:focus-visible,
.scope-toggles button:hover,
.scope-toggles button:focus-visible,
.team-buttons button:hover,
.team-buttons button:focus-visible,
.price-buttons button:hover,
.price-buttons button:focus-visible {
  border-color: var(--ink);
  color: var(--ink);
  outline: none;
}

.choice-buttons button.is-active,
.question-options button.is-active,
.step-buttons button.is-active,
.scope-toggles button.is-active,
.team-buttons button.is-active,
.price-buttons button.is-active {
  border-color: var(--ink);
  background: rgba(255, 255, 255, 0.28);
  color: var(--ink);
  transform: translateY(-2px);
}

.choice-buttons.offer-choice-grid button:hover,
.choice-buttons.offer-choice-grid button:focus-visible {
  border-color: var(--accent);
  background: rgba(23, 23, 19, 0.025);
  transform: translateY(-3px);
  box-shadow:
    inset 0 0 0 1px var(--accent),
    0 16px 30px rgba(23, 23, 19, 0.07);
}

.choice-buttons.offer-choice-grid button.is-active {
  border-color: var(--accent);
}

.answer-panel,
.fit-answer,
.step-answer,
.team-answer,
.price-answer {
  position: relative;
  z-index: 2;
  width: min(300px, 48%);
  margin-top: 54px;
}

.offer-surface {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: auto;
}

.offer-choice-note {
  justify-self: center;
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 720;
  line-height: 1.45;
  text-align: center;
}

.offer-choice-note span {
  position: relative;
  display: inline-block;
  color: #435364;
  animation: none;
}

.offer-choice-note span::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: rgba(67, 83, 100, 0.42);
  content: "";
  opacity: 1;
  transform: scaleX(1);
  transform-origin: center;
  animation: none;
}

.offer-status {
  display: none;
  min-height: 24px;
  margin: 4px 0 0;
  padding-left: 14px;
  border-left: 2px solid var(--accent);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.offer-status.is-visible {
  display: block;
}

.answer-panel > span,
.step-answer > span {
  display: block;
  margin-bottom: 22px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 750;
}

.answer-panel p,
.fit-answer p,
.step-answer p,
.team-answer p,
.price-answer p:not(.price) {
  margin-top: 14px;
  font-size: 18px;
}

.answer-panel ul {
  max-width: 360px;
}

.choice-drawing,
.step-visual {
  display: none;
}

.choice-drawing path,
.step-visual path {
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.2;
  stroke-dasharray: 620;
  stroke-dashoffset: 620;
}

.is-visible .choice-drawing path,
.is-visible .step-visual path {
  animation: drawMap 1.6s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.choice-drawing circle,
.step-visual circle {
  fill: var(--paper);
  stroke: var(--ink);
  stroke-width: 1.2;
}

.question-card {
  min-height: 360px;
}

.question-card .fit-answer {
  width: min(620px, 100%);
  max-width: 100%;
}

#fit {
  --fit-canvas-bg: #f7f4ed;
  --fit-canvas-accent: #0e9090;
  --fit-canvas-line: rgba(14, 144, 144, 0.42);
  background-color: var(--paper);
  border-top-color: rgba(14, 144, 144, 0.2);
  color: var(--ink);
}

#fit .section-heading h2,
#fit .fit-answer h3 {
  color: var(--ink);
}

#fit .question-card {
  border-top-color: rgba(14, 144, 144, 0.2);
  border-bottom-color: rgba(14, 144, 144, 0.2);
}

#fit .question-options button {
  border-color: rgba(14, 144, 144, 0.26);
  background: rgba(14, 144, 144, 0.03);
  color: rgba(23, 23, 19, 0.62);
}

#fit .question-options button:hover,
#fit .question-options button:focus-visible {
  border-color: rgba(14, 144, 144, 0.72);
  background: rgba(14, 144, 144, 0.06);
  color: var(--ink);
}

#fit .question-options button.is-active {
  border-color: rgba(14, 144, 144, 0.92);
  background: rgba(14, 144, 144, 0.08);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(14, 144, 144, 0.12);
}

#fit .fit-answer p,
#fit .answer-tags span {
  color: rgba(23, 23, 19, 0.72);
}

#fit .answer-tags span {
  border-bottom-color: rgba(14, 144, 144, 0.18);
}

#fit .section-heading .visual-button {
  background: transparent;
}

#fit .section-heading .visual-button:focus-visible {
  outline-color: rgba(14, 144, 144, 0.52);
}

#fit .canvas-visual {
  border-top-color: rgba(14, 144, 144, 0.2);
  background: transparent;
  opacity: 1;
  box-shadow: none;
}

#fit .canvas-visual canvas {
  background: transparent;
}

.step-lab .step-answer,
.price-picker .price-answer {
  width: min(620px, 100%);
  max-width: 100%;
}

.price-cta {
  margin-top: 28px;
}

.answer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.question-card .answer-tags {
  max-width: 620px;
}

.answer-tags span {
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  padding-bottom: 5px;
  font-size: 13px;
  font-weight: 700;
}

.choice-orbit {
  display: none;
}

.choice-orbit::before {
  position: absolute;
  inset: 31%;
  border: 1px solid rgba(23, 23, 19, 0.1);
  border-radius: 50%;
  content: "";
}

.choice-orbit span {
  position: absolute;
  width: 7px;
  height: 7px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
}

.choice-orbit span:first-child {
  top: 12px;
  left: 50%;
  animation: slowOrbit 9s linear infinite;
  transform-origin: 0 78px;
}

.choice-orbit span:last-child {
  right: 22px;
  bottom: 38px;
  animation: slowFloat 5s ease-in-out infinite;
}

.step-buttons button {
  width: 54px;
  min-width: 54px;
  border-radius: 50%;
  padding: 0;
}

.scope-toggles button.is-active::before {
  content: "+ ";
}

.scope-list {
  margin-top: 42px;
  width: min(300px, 48%);
}

.scope-math-field {
  position: relative;
  width: min(640px, 100%);
  height: 270px;
  margin-top: 74px;
  overflow: visible;
  color: var(--ink);
  opacity: 0.5;
  pointer-events: none;
}

.scope-math-field svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.scope-math-field path,
.scope-math-field rect,
.scope-math-field circle {
  vector-effect: non-scaling-stroke;
}

.math-axis,
.math-grid-line,
.math-cell {
  fill: none;
  stroke: rgba(23, 23, 19, 0.2);
  stroke-width: 1;
}

.math-grid-line {
  stroke: rgba(23, 23, 19, 0.08);
}

.math-curve {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.2;
  stroke-dasharray: 760;
  stroke-dashoffset: 760;
}

.primary-math {
  stroke: rgba(23, 23, 19, 0.74);
}

.secondary-math {
  stroke: rgba(28, 123, 111, 0.64);
  animation: dashTravel 10s linear infinite;
}

.is-visible .primary-math,
.is-visible .secondary-math {
  animation: drawComplex 1.9s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.math-node,
.math-traveler {
  fill: var(--paper);
  stroke: var(--ink);
  stroke-width: 1.2;
}

.math-node {
  opacity: 0;
}

.is-visible .math-node {
  animation: nodeAppear 420ms ease forwards;
}

.is-visible .node-a {
  animation-delay: 520ms;
}

.is-visible .node-b {
  animation-delay: 720ms;
}

.is-visible .node-c {
  animation-delay: 920ms;
}

.math-cell {
  animation: cellBlink 4.8s ease-in-out infinite;
}

.cell-b {
  animation-delay: -1.2s;
}

.cell-c {
  animation-delay: -2.4s;
}

.cell-d {
  animation-delay: -3.6s;
}

.scope-math-field text {
  fill: rgba(23, 23, 19, 0.46);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 12px;
  letter-spacing: 0;
}

.team-switcher {
  min-height: 560px;
}

#teams {
  min-height: auto;
  padding-top: 86px;
  padding-bottom: 86px;
}

#teams .split {
  align-items: center;
}

#teams .team-switcher {
  min-height: 430px;
}

#teams .fit-orbit-field {
  height: clamp(250px, 24vw, 300px);
  margin-top: 34px;
}

.team-controls {
  display: grid;
  gap: 14px;
}

.niche-finder {
  max-width: 100%;
}

.niche-finder label {
  display: grid;
  gap: 10px;
}

.niche-finder label > span:first-child {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.niche-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.niche-row input {
  min-height: 44px;
  width: 100%;
  border: 1px solid rgba(23, 23, 19, 0.18);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  padding: 0 12px;
}

.niche-row input:focus {
  border-color: var(--ink);
  outline: none;
}

.niche-row button {
  min-height: 44px;
  border: 1px solid rgba(23, 23, 19, 0.2);
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  padding: 0 12px;
  transition:
    border-color 160ms ease,
    color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.niche-row button:hover,
.niche-row button:focus-visible {
  border-color: var(--ink);
  color: var(--ink);
  outline: none;
}

.team-switcher .team-answer {
  width: min(420px, 100%);
  margin-top: 24px;
}

.team-dial {
  display: none;
}

.team-dial::before,
.team-dial::after {
  position: absolute;
  border: 1px solid rgba(23, 23, 19, 0.08);
  border-radius: 50%;
  content: "";
}

.team-dial::before {
  inset: 22%;
}

.team-dial::after {
  inset: 44%;
}

.team-dial span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  animation: dialSweep 8s ease-in-out infinite;
  transform-origin: 0 0;
}

.price-picker {
  --price-meter: 42%;
  min-height: 440px;
}

.price-buttons button {
  min-width: 88px;
}

.price-buttons button.preferred-price {
  border-color: rgba(28, 123, 111, 0.48);
}

.price-buttons button.is-active {
  border-color: var(--accent);
  background: rgba(28, 123, 111, 0.12);
  color: var(--accent);
}

.price-answer {
  margin-top: 62px;
}

.price-picker[data-selected-price] .price-answer {
  border-left: 0;
  padding-left: 0;
}

.price-picker[data-selected-price] .price {
  color: var(--accent);
}

body[data-site-mode="brief"] #offers .choice-surface,
body[data-site-mode="training"] #process .step-lab,
body[data-site-mode="pilot"] #pricing .price-picker {
  border-left: 2px solid rgba(28, 123, 111, 0.2);
  padding-left: 22px;
}

@media (min-width: 941px) {
  body[data-site-mode="training"] #process .section-heading {
    order: 2;
  }

  body[data-site-mode="training"] #process .step-lab {
    order: 1;
  }

  body[data-site-mode="pilot"] #pricing .section-heading {
    order: 2;
  }

  body[data-site-mode="pilot"] #pricing .price-picker {
    order: 1;
  }
}

#pricing[data-selected-price="workshop"] .price-system {
  opacity: 0.68;
}

#pricing[data-selected-price="workshop"] .price-system .primary-path,
#pricing[data-selected-price="workshop"] .price-system .travel-dot {
  stroke: var(--accent);
}

#pricing[data-selected-price="workshop"] .price-system rect:nth-of-type(2) {
  stroke: var(--accent);
  stroke-width: 1.8;
}

.price-meter {
  position: relative;
  width: min(360px, 55%);
  height: 1px;
  margin-top: 52px;
  margin-left: auto;
  background: rgba(23, 23, 19, 0.15);
}

.price-meter span {
  display: block;
  width: var(--price-meter, 18%);
  height: 1px;
  background: var(--accent);
  transition: width 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

.visual-system {
  position: absolute;
  right: -4px;
  bottom: 24px;
  z-index: 1;
  width: min(240px, 46%);
  max-height: 260px;
  overflow: visible;
  color: var(--ink);
  opacity: 0.42;
  pointer-events: none;
}

.visual-button {
  display: block;
  width: min(620px, 100%);
  height: 260px;
  margin-top: 64px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.visual-button.compact-visual-button {
  height: 190px;
  margin-top: 28px;
}

.canvas-visual {
  width: min(660px, 100%);
  border-top: 1px solid rgba(23, 23, 19, 0.12);
  opacity: 0.82;
  overflow: hidden;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.canvas-visual canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.offer-curve-field {
  height: clamp(260px, 28vw, 320px);
  margin-top: 0;
  border-top: 0;
  opacity: 1;
}

.offer-side-visual {
  --offer-visual-x: clamp(104px, 11.2vw, 220px);

  width: 100%;
  cursor: default;
  justify-self: end;
  pointer-events: none;
  transform: translateX(var(--offer-visual-x));
}

.offer-side-visual:hover,
.offer-side-visual.is-activated {
  transform: translateX(var(--offer-visual-x));
}

.bottleneck-field {
  height: 300px;
  margin-top: 56px;
}

.value-curve-field {
  height: 320px;
  margin-top: 62px;
}

.process-blueprint-field {
  height: 320px;
  margin-top: 56px;
}

.app-orbit-field {
  width: min(540px, 100%);
  height: 360px;
  margin-top: 54px;
}

.fit-orbit-field {
  width: min(620px, 100%);
  height: 360px;
  margin-top: 54px;
}

.visual-button:focus-visible,
.ambient-system:focus-visible {
  outline: 1px solid rgba(23, 23, 19, 0.58);
  outline-offset: 8px;
}

.section-heading .heading-visual,
.section-heading .metric-field.heading-visual {
  position: relative;
  inset: auto;
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  margin-top: 0;
  opacity: 0.46;
}

.section-heading .compact-heading-visual {
  height: 190px;
  margin-top: 0;
  opacity: 0.34;
}

.section-heading .metric-field.heading-visual {
  min-height: 230px;
  height: 230px;
  margin-top: 64px;
  border-top: 1px solid rgba(23, 23, 19, 0.16);
}

.visual-button:hover .heading-visual,
.visual-button.is-activated .heading-visual,
.canvas-visual:hover,
.canvas-visual.is-activated,
.ambient-system:hover,
.ambient-system.is-activated {
  opacity: 0.68;
}

.canvas-visual:hover,
.canvas-visual.is-activated {
  opacity: 0.96;
  transform: translateY(-2px);
}

.canvas-visual.offer-side-visual:hover,
.canvas-visual.offer-side-visual.is-activated {
  transform: translateX(var(--offer-visual-x));
}

.visual-button:hover .primary-path,
.visual-button.is-activated .primary-path,
.ambient-system:hover .signal-map path,
.ambient-system.is-activated .signal-map path {
  stroke: var(--accent);
}

.visual-button.is-activated .secondary-path,
.visual-button:hover .secondary-path {
  stroke: rgba(28, 123, 111, 0.72);
  animation-duration: 4.4s;
}

.visual-button.is-activated .travel-dot,
.visual-button:hover .travel-dot,
.ambient-system.is-activated .orbit-dot,
.ambient-system:hover .orbit-dot {
  stroke: var(--accent);
}

.fit-system,
.team-system {
  right: -6px;
  bottom: 8px;
  width: min(230px, 44%);
}

.scope-system {
  bottom: 12px;
  width: min(230px, 44%);
}

.price-system {
  bottom: 18px;
  width: min(230px, 44%);
}

.visual-system path,
.visual-system rect,
.visual-system circle {
  vector-effect: non-scaling-stroke;
}

.visual-system rect,
.visual-system > circle,
.fit-system > circle,
.team-system > circle {
  fill: none;
  stroke: rgba(23, 23, 19, 0.24);
  stroke-width: 1;
}

.visual-system circle:not(.travel-dot):not(.pulse-node) {
  fill: var(--paper);
  stroke: rgba(23, 23, 19, 0.72);
  stroke-width: 1.2;
}

.system-path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.2;
}

.primary-path {
  stroke: rgba(23, 23, 19, 0.72);
  stroke-dasharray: 760;
  stroke-dashoffset: 760;
}

.secondary-path {
  stroke: rgba(23, 23, 19, 0.28);
  stroke-dasharray: 8 12;
  animation: dashTravel 9s linear infinite;
}

.ghost-path {
  stroke: rgba(23, 23, 19, 0.14);
}

.is-visible .primary-path {
  animation: drawComplex 1.9s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.travel-dot {
  fill: var(--paper);
  stroke: var(--ink);
  stroke-width: 1.2;
}

.pulse-node {
  fill: none;
  stroke: rgba(23, 23, 19, 0.32);
  stroke-width: 1;
  transform-origin: center;
  animation: nodePulse 3.4s ease-in-out infinite;
}

.metric-field {
  position: relative;
  width: min(420px, 100%);
  min-height: 210px;
  margin-top: 44px;
  border-top: 1px solid rgba(23, 23, 19, 0.16);
  pointer-events: none;
}

.metric-field > span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 8px;
  height: 8px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  animation: slowFloat 5.8s ease-in-out infinite;
}

.metric-field > span:nth-child(2) {
  animation-delay: -1.2s;
}

.metric-field > span:nth-child(3) {
  animation-delay: -2.4s;
}

.metric-field > span:nth-child(4) {
  animation-delay: -3.6s;
}

.metric-field svg {
  position: absolute;
  inset: 24px 0 0;
  width: 100%;
  height: 180px;
  overflow: visible;
  opacity: 0.48;
}

.metric-field path {
  fill: none;
  stroke: rgba(23, 23, 19, 0.5);
  stroke-width: 1.1;
  stroke-dasharray: 620;
  stroke-dashoffset: 620;
}

.is-visible .metric-field path {
  animation: drawComplex 2s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.statement-section {
  padding: 132px 0;
}

.statement-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(280px, 0.72fr);
  gap: min(8vw, 92px);
  align-items: end;
}

.statement-main h2 {
  max-width: 720px;
}

.statement-accent {
  position: relative;
  display: inline-block;
  color: var(--accent);
}

.statement-accent::after {
  content: "";
  position: absolute;
  right: 0.04em;
  bottom: 0.02em;
  left: 0.04em;
  height: 0.055em;
  background: currentColor;
  opacity: 0.9;
}

.proof-panel {
  width: 100%;
  max-width: 360px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0 20px;
}

.proof-panel .eyebrow {
  margin-bottom: 24px;
}

.proof-stat {
  display: grid;
  grid-template-columns: 72px 1fr;
  column-gap: 18px;
  row-gap: 12px;
  align-items: baseline;
  padding: 18px 0;
  border-top: 1px solid rgba(23, 23, 19, 0.1);
}

.proof-stat:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.proof-stat strong {
  color: var(--ink);
  font-size: 34px;
  font-weight: 650;
  line-height: 1;
}

.proof-stat span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

.proof-stat i {
  position: relative;
  grid-column: 1 / -1;
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(23, 23, 19, 0.12);
  overflow: visible;
}

.proof-stat i::before {
  display: block;
  width: var(--proof);
  height: 2px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
}

.proof-stat i::after {
  position: absolute;
  top: 50%;
  left: var(--proof);
  width: 8px;
  height: 8px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: var(--paper);
  content: "";
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.62);
}

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

.proof-stat:not(.accent-stat) {
  color: rgba(23, 23, 19, 0.42);
}

.statement-section.is-visible .proof-stat i::before {
  animation:
    lineGrow 920ms cubic-bezier(0.22, 1, 0.36, 1) forwards,
    proofBarBreathe 3.2s ease-in-out 1020ms infinite;
}

.statement-section.is-visible .proof-stat i::after {
  animation:
    proofKnobIn 680ms cubic-bezier(0.22, 1, 0.36, 1) 620ms forwards,
    proofKnobPulse 2.8s ease-in-out 1300ms infinite;
}

.statement-section.is-visible .proof-stat:nth-of-type(2) i::before {
  animation-delay: 120ms, 1140ms;
}

.statement-section.is-visible .proof-stat:nth-of-type(2) i::after {
  animation-delay: 740ms, 1420ms;
}

.statement-section.is-visible .proof-stat:nth-of-type(3) i::before {
  animation-delay: 240ms, 1260ms;
}

.statement-section.is-visible .proof-stat:nth-of-type(3) i::after {
  animation-delay: 860ms, 1540ms;
}

.proof-source {
  display: inline-flex;
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.proof-source:hover,
.proof-source:focus-visible {
  color: var(--accent);
  outline: none;
}

.section-heading {
  display: grid;
  gap: 0;
  max-width: 830px;
  margin-bottom: 42px;
}

.section-heading.align-start {
  margin-bottom: 0;
}

.section-heading p:not(.eyebrow) {
  margin-top: 18px;
  font-size: 18px;
}

.card-grid {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

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

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

.line-card,
.pricing-grid article,
.quiet-list article,
.process-list article,
details,
.contact-form {
  background: var(--paper);
}

.line-card {
  min-height: 330px;
  padding: 30px;
}

.line-card.compact {
  min-height: 260px;
}

.line-card span,
.process-list span {
  display: block;
  margin-bottom: 28px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 750;
}

.line-card p {
  margin-top: 16px;
}

ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

li::before {
  color: var(--ink);
  content: "— ";
}

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

.quiet-list article {
  display: grid;
  gap: 8px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.process-list article {
  min-height: 260px;
  padding: 30px;
}

.process-list p {
  margin-top: 14px;
}

.scope-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.scope-list li {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  font-size: 20px;
  font-weight: 620;
}

.scope-list li::before {
  color: var(--accent);
}

.scope-list[hidden],
.scope-detail-panel[hidden] {
  display: none;
}

.scope-builder.is-detail {
  min-height: 520px;
  padding: 32px 0;
}

.scope-detail-panel {
  display: grid;
  gap: 42px;
  min-width: 0;
}

.scope-detail-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.scope-detail-tabs button {
  min-height: 44px;
  border: 1px solid rgba(23, 23, 19, 0.2);
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  flex: 0 1 auto;
  padding: 0 16px;
  font: inherit;
  font-size: 14px;
  white-space: nowrap;
  transition:
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease,
    background 160ms ease;
}

.scope-detail-tabs button:hover,
.scope-detail-tabs button:focus-visible,
.scope-detail-tabs button.is-active {
  border-color: var(--ink);
  color: var(--ink);
  outline: none;
}

.scope-detail-tabs button.is-active {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

.scope-detail-answer {
  position: relative;
  width: min(660px, 100%);
  max-width: 100%;
  min-width: 0;
}

.scope-detail-answer::before {
  position: absolute;
  top: 10px;
  left: -36px;
  width: 28px;
  height: 2px;
  background: var(--accent);
  content: "";
}

.scope-detail-answer h3 {
  max-width: 560px;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 0.98;
}

.scope-detail-answer p {
  max-width: 620px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.5;
}

.scope-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  max-width: 640px;
  margin-top: 28px;
}

.scope-detail-tags span {
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  padding-bottom: 5px;
  font-size: 13px;
  font-weight: 740;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.pricing-grid article {
  min-height: 310px;
  padding: 30px;
}

.pricing-tier-card {
  display: grid;
  align-content: start;
  gap: 10px;
}

.pricing-tier-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 720;
  line-height: 1.02;
}

.pricing-tier-card > p:not(.eyebrow):not(.price) {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
}

.pricing-tier-card ul {
  margin-top: 10px;
}

.pricing-tier-card li {
  font-size: 15px;
  line-height: 1.55;
}

.price {
  margin: 24px 0 18px;
  color: var(--ink);
  font-size: 34px;
  font-weight: 560;
  line-height: 1;
}

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

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

summary {
  cursor: pointer;
  padding: 22px 0;
  font-weight: 650;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  padding: 0 0 24px;
}

.contact-section {
  padding-bottom: 92px;
}

.contact-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 24px;
}

.contact-center h2 {
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
}

.contact-center h2 em {
  font-style: normal;
  color: var(--accent);
}

.contact-lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 36px;
  max-width: 620px;
}

.contact-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 28px;
}

.contact-cta-primary,
.contact-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.contact-cta-primary {
  background: #131815;
  color: #f6f3eb;
}

.contact-cta-primary:hover {
  transform: translateY(-1px);
  background: #1f2622;
}

.contact-cta-secondary {
  background: transparent;
  color: #131815;
  border: 1px solid rgba(19, 24, 21, 0.22);
}

.contact-cta-secondary:hover {
  transform: translateY(-1px);
  border-color: rgba(19, 24, 21, 0.5);
}

.contact-footnote {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.contact-footnote a {
  color: #131815;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-grid > div > p:not(.eyebrow) {
  margin-top: 22px;
  font-size: 18px;
}

.contact-stack {
  display: grid;
  gap: 26px;
  max-width: 560px;
}

.contact-sidecard {
  display: grid;
  gap: 12px;
  max-width: 420px;
  padding: 22px 24px;
  border: 1px solid var(--line);
}

.contact-sidecard > span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
}

.contact-sidecard p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-weight: 700;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease;
}

.secondary-link::after {
  width: 22px;
  height: 1px;
  background: currentColor;
  content: "";
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 0;
}

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

.contact-form label > span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  padding: 13px 14px;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--ink);
  outline: none;
}

.submit-button {
  min-height: 50px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
}

.site-footer {
  padding: 54px 0 26px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-inner {
  width: calc(100% - 96px);
  max-width: none;
  margin: 0 auto;
}

.footer-directory {
  display: grid;
  grid-template-columns: minmax(220px, 1.15fr) repeat(4, minmax(140px, 0.75fr));
  gap: clamp(28px, 4vw, 72px);
  align-items: start;
  padding-bottom: 54px;
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 10px;
  max-width: 340px;
}

.footer-brand strong {
  color: var(--ink);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1;
}

.footer-brand span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

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

.footer-column h2 {
  margin: 0 0 2px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 740;
  line-height: 1;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-inner a {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.2;
  text-decoration: none;
  transition: color 160ms ease;
}

.footer-inner a:hover,
.footer-inner a:focus-visible {
  color: var(--accent);
}

.footer-hiring-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.footer-hiring-link::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.footer-legal {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.blog-page .experience {
  min-height: 100svh;
}

.blog-page .site-content {
  position: relative;
  height: 100svh;
}

.blog-page .site-content:not(.is-offer-unlocked) .site-footer {
  display: block;
}

.simple-blog-header {
  position: relative;
  top: auto;
  justify-content: space-between;
}

.blog-home-brand {
  gap: 11px;
}

/* Reset section-inner asymmetry for the about page */
.about-page .section-inner {
  width: min(1100px, calc(100% - 48px)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.about-page {
  background: #f6f3eb;
}

.about-hero {
  padding: 96px 0 56px;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(30, 125, 109, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.about-hero-inner {
  max-width: 880px !important;
  text-align: center;
  position: relative;
  z-index: 1;
}

.about-hero-inner .eyebrow {
  color: var(--accent);
  letter-spacing: 0.18em;
  font-size: 13px;
  margin: 0 0 18px;
}

.about-hero-inner h1 {
  font-size: clamp(36px, 4.8vw, 58px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.about-hero-lead {
  font-size: clamp(20px, 2.1vw, 26px);
  line-height: 1.5;
  color: #2a312d;
  font-weight: 500;
  max-width: 760px;
  margin: 18px auto 0;
}

.about-band {
  padding: 56px 0;
}

.about-band + .about-band {
  padding-top: 24px;
}

.about-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 980px;
  margin: 0 auto;
}

.about-col {
  background: #f1ede3;
  border: 1px solid rgba(19, 24, 21, 0.08);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 6px 20px rgba(19, 24, 21, 0.03);
}

.about-col .eyebrow {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 720;
  margin: 0 0 12px;
}

.about-col h2 {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 14px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.about-col p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

.about-section-head {
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
}

.about-section-head .eyebrow {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 720;
  margin: 0 0 10px;
}

.about-section-head h2 {
  font-size: clamp(28px, 3.6vw, 38px);
  font-weight: 700;
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  max-width: 980px;
  margin: 0 auto;
  background: rgba(19, 24, 21, 0.08);
  border: 1px solid rgba(19, 24, 21, 0.08);
  border-radius: 18px;
  overflow: hidden;
}

.value-card {
  background: #f1ede3;
  padding: 32px 28px 34px;
  transition: background-color 200ms ease;
}

.value-card:hover {
  background: #ebe6da;
}

.value-index {
  color: var(--accent);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.22em;
  display: block;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.value-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

.about-story {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  max-width: 980px;
  margin: 0 auto;
  background: #f1ede3;
  border: 1px solid rgba(19, 24, 21, 0.08);
  border-radius: 20px;
  padding: 48px 48px;
  box-shadow: 0 8px 28px rgba(19, 24, 21, 0.04);
}

.about-story-head .eyebrow {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 720;
  margin: 0 0 10px;
}

.about-story-head h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.about-story-body p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin: 0 0 18px;
}

.about-story-body p:last-child {
  margin-bottom: 0;
}

.about-story-body p:last-child {
  color: var(--accent);
  font-weight: 600;
}

.about-cta-section {
  padding: 64px 0 112px;
  background: linear-gradient(180deg, transparent 0%, rgba(30, 125, 109, 0.04) 100%);
}

.about-cta {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.about-cta h2 {
  font-size: clamp(28px, 3.6vw, 38px);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}

.about-cta p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 32px;
}

@media (max-width: 760px) {
  .about-two-col,
  .about-story {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 24px;
  }
  .about-values-grid {
    grid-template-columns: 1fr;
  }
  .about-hero {
    padding: 64px 0 32px;
  }
}

.about-quote {
  display: flex;
  justify-content: center;
  padding: 32px 0 16px;
}

.about-pullquote {
  max-width: 760px;
  margin: 0;
  padding: 36px 40px;
  border-left: 3px solid var(--accent);
  background: rgba(30, 125, 109, 0.04);
  border-radius: 4px;
}

.about-pullquote p {
  font-size: 26px;
  line-height: 1.4;
  font-weight: 600;
  margin: 0 0 16px;
  color: var(--ink, #1c2825);
}

.about-pullquote footer {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-home-brand .brand-mark {
  width: 34px;
  height: 34px;
}

.blog-hero {
  padding: 38px 0 48px;
}

.blog-hero .section-inner,
.blog-band .section-inner,
.article-page .section-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.blog-intro {
  display: grid;
  gap: 18px;
  align-items: center;
}

.blog-hero-title {
  justify-self: center;
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 4.3vw, 54px);
  font-weight: 560;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}

.blog-hero-visual {
  justify-self: center;
  width: min(700px, 100%);
  height: clamp(170px, 22vw, 260px);
  overflow: hidden;
}

.blog-hero-visual canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.blog-band {
  padding: 64px 0;
  border-top: 1px solid var(--faint);
}

.featured-heading {
  margin-bottom: 24px;
}

.featured-heading h2 {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 760;
  line-height: 1;
  letter-spacing: 0;
}

.featured-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(12px, 1.8vw, 20px);
}

.featured-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 1.15fr) minmax(280px, 0.85fr);
  column-gap: clamp(24px, 4vw, 56px);
  align-content: center;
  align-items: end;
  width: min(900px, 100%);
  min-height: clamp(142px, 10vw, 154px);
  overflow: hidden;
  border: 1px solid var(--line);
  padding: clamp(22px, 2.4vw, 32px) clamp(28px, 4vw, 54px);
  background:
    linear-gradient(90deg, rgba(14, 144, 144, 0.06), transparent 48%),
    rgba(23, 23, 19, 0.018);
  color: var(--ink);
  text-decoration: none;
}

.featured-row:nth-child(1),
.featured-row:nth-child(3) {
  justify-self: start;
}

.featured-row:nth-child(2) {
  justify-self: end;
  width: min(930px, 100%);
}

.featured-row:nth-child(3) {
  width: min(920px, 100%);
}

.featured-row canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.78;
  pointer-events: none;
}

.featured-title {
  position: relative;
  z-index: 1;
  max-width: 650px;
  color: var(--ink);
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 720;
  line-height: 1;
}

.featured-row p {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.38;
}

.featured-row:focus-visible {
  box-shadow: 0 0 0 2px rgba(14, 144, 144, 0.22);
  outline: none;
}

.article-meta span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

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

.article-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid rgba(19, 24, 21, 0.08);
  border-radius: 16px;
  padding: 28px 28px 26px;
  background: #f1ede3;
  color: var(--ink);
  text-decoration: none;
  transition:
    transform 200ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 200ms ease,
    box-shadow 200ms ease,
    background-color 200ms ease;
}

.article-tile:hover,
.article-tile:focus-visible {
  outline: none;
  transform: translateY(-3px);
  border-color: rgba(14, 144, 144, 0.28);
  background: #ebe6da;
  box-shadow: 0 14px 32px rgba(19, 24, 21, 0.06);
}

.article-tile time {
  color: var(--accent);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.article-tile-title {
  max-width: 94%;
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #131815;
  margin: 4px 0 0;
}

.article-tile p {
  max-width: 94%;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
}

.article-tile-cta {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.02em;
  margin-top: 6px;
  transition: transform 180ms ease;
}

.article-tile:hover .article-tile-cta {
  transform: translateX(4px);
}

.case-hero .blog-copy {
  display: grid;
  gap: 20px;
  max-width: none;
}

.case-hero .blog-intro {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 4vw, 80px);
  align-items: center;
}

.case-hero-title {
  display: block;
  max-width: 13.5ch;
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 5.6vw, 78px);
  font-weight: 720;
  line-height: 0.94;
  letter-spacing: 0;
  white-space: normal;
}

.case-hero-visual {
  justify-self: stretch;
  align-self: center;
  width: 100%;
  height: clamp(280px, 34vw, 470px);
  background: transparent;
}

.case-study-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.case-study-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  align-content: start;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 100%;
  padding: 30px 28px 32px;
  background:
    linear-gradient(180deg, rgba(14, 144, 144, 0.055), transparent 34%),
    rgba(23, 23, 19, 0.018);
  color: inherit;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.case-study-card::after {
  position: absolute;
  top: auto;
  right: -18%;
  bottom: -18%;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(196, 187, 178, 0.35);
  border-radius: 50%;
  content: "";
  opacity: 0.42;
}

.case-study-card:hover,
.case-study-card:focus-visible {
  border-color: rgba(14, 144, 144, 0.28);
  box-shadow: 0 18px 36px rgba(23, 23, 19, 0.06);
  transform: translateY(-2px);
}

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

.case-study-company {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 14px;
}

.case-study-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(14, 144, 144, 0.22);
  border-radius: 999px;
  background: rgba(14, 144, 144, 0.08);
  color: var(--accent);
  font-size: 14px;
  font-weight: 780;
  line-height: 1;
  letter-spacing: 0.04em;
}

.case-study-logo-image {
  overflow: hidden;
  padding: 0;
  background: linear-gradient(160deg, rgba(20, 43, 112, 0.12), rgba(23, 214, 209, 0.08));
}

.case-study-logo-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-study-copy h2 {
  max-width: 12ch;
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 1.8vw, 32px);
  line-height: 1.08;
  letter-spacing: 0;
}

.case-study-copy p:not(.eyebrow) {
  max-width: 100%;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.08vw, 18px);
  line-height: 1.5;
}

.case-study-toggle-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 760;
  line-height: 1;
  text-transform: uppercase;
}

.case-study-toggle-label::after {
  content: none;
}

.case-study-card:focus-visible {
  outline: none;
}

.case-study-page .article-shell {
  padding-top: 48px;
}

.case-study-page .section-inner {
  width: calc(100% - 84px);
  max-width: none;
  margin: 0 auto;
}

.case-study-page .article-layout {
  grid-template-columns: minmax(0, 1fr);
  gap: 54px;
}

.case-study-page .article-prose {
  max-width: none;
}

.case-study-page .article-meta {
  position: static;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  padding-top: 0;
  border-top: 0;
  max-width: 320px;
}

.case-study-page .article-meta > * {
  margin: 0;
}

.case-study-page .article-meta span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  line-height: 1;
  text-transform: uppercase;
}

.case-study-page .article-meta strong,
.case-study-page .article-meta a {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.45;
}

.case-study-page .article-visual {
  height: clamp(96px, 10vw, 138px);
  margin-bottom: 18px;
  background: transparent;
}

.case-study-page .article-visual canvas {
  width: 100%;
}

.case-study-hero {
  display: grid;
  gap: 22px;
  max-width: 100%;
  justify-items: center;
  text-align: center;
}

.case-study-hero-company {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.case-study-hero-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(14, 144, 144, 0.22);
  border-radius: 999px;
  background: rgba(14, 144, 144, 0.08);
  color: var(--accent);
  font-size: 20px;
  font-weight: 780;
  line-height: 1;
  letter-spacing: 0.04em;
}

.case-study-hero-logo-image {
  overflow: hidden;
  padding: 0;
  background: linear-gradient(160deg, rgba(20, 43, 112, 0.14), rgba(23, 214, 209, 0.1));
}

.case-study-hero-logo-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-study-hero h1 {
  justify-content: center;
  margin: 0;
  color: var(--ink);
  font-size: clamp(44px, 5.4vw, 76px);
  font-weight: 720;
  line-height: 0.96;
  white-space: normal;
}

.case-study-hero p {
  max-width: 980px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.55;
}

.case-study-sections {
  display: grid;
  gap: 44px;
}

.case-study-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.56fr) minmax(0, 1fr);
  gap: min(10vw, 150px);
  align-items: start;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.case-study-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 58px);
  font-weight: 520;
  line-height: 1;
  text-transform: uppercase;
}

.case-study-section-copy {
  display: grid;
  gap: 18px;
  max-width: none;
}

.case-study-section-copy p,
.case-study-section-copy li {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.case-study-section-copy ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.case-study-section-copy li::before {
  content: "• ";
  color: var(--accent);
}

.history-heading {
  display: grid;
  gap: 18px;
  max-width: 900px;
  margin: 0 auto 34px;
}

.history-heading .eyebrow {
  justify-self: center;
  text-align: center;
}

.history-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(40px, 6.5vw, 68px);
  font-weight: 760;
  line-height: 1;
  letter-spacing: 0;
}

.history-heading h2 em {
  color: var(--accent);
  font-style: normal;
}

.history-page .blog-hero {
  padding: 0;
}

.history-intro {
  position: relative;
  min-height: clamp(280px, 34vw, 380px);
  justify-items: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.history-intro .blog-copy {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  padding: 0 40px;
}

.history-intro .blog-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(22px, 2.15vw, 32px);
  line-height: 1.34;
}

.history-hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.history-timeline-section {
  padding-top: 40px;
}

.history-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  align-items: center;
  min-height: 148px;
  border-top: 1px solid rgba(196, 187, 178, 0.35);
  padding: 0;
}

.timeline-item:last-child {
  border-bottom: 1px solid rgba(196, 187, 178, 0.35);
}

.ev-node {
  display: flex;
  align-items: stretch;
  align-self: stretch;
  justify-content: center;
}

.ev-node::before {
  width: 1px;
  background: rgba(196, 187, 178, 0.5);
  content: "";
}

.ev-info {
  padding: 28px 0;
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.ev-info--left {
  border-right: 2px solid transparent;
  padding-right: 44px;
  text-align: right;
}

.ev-info--right {
  border-left: 2px solid transparent;
  padding-left: 44px;
  text-align: left;
}

.timeline-item:hover .ev-info--left {
  border-right-color: var(--accent);
  background: rgba(14, 144, 144, 0.025);
}

.timeline-item:hover .ev-info--right {
  border-left-color: var(--accent);
  background: rgba(14, 144, 144, 0.025);
}

.timeline-item h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(22px, 2.1vw, 31px);
  font-weight: 740;
  line-height: 1.12;
  letter-spacing: 0;
}

.timeline-item p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.5;
}

.ev-info--left p {
  margin-left: auto;
}

.ev-info--right p {
  margin-right: auto;
}

.ev-deco {
  color: var(--ink);
  font-size: clamp(80px, 13vw, 148px);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1;
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
  transition: opacity 180ms ease;
}

.timeline-item:hover .ev-deco {
  opacity: 0.12;
}

.ev-deco--left {
  padding-right: 44px;
  text-align: right;
}

.ev-deco--right {
  padding-left: 44px;
  text-align: left;
}

.ev-deco--now {
  font-style: italic;
}

.timeline-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  border: 1px solid var(--ink);
  color: var(--ink);
  padding: 13px 18px;
  font-size: 14px;
  font-weight: 720;
  line-height: 1;
  text-decoration: none;
  transition:
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.timeline-cta::after {
  width: 24px;
  height: 1px;
  background: currentColor;
  content: "";
}

.timeline-cta:hover,
.timeline-cta:focus-visible {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--paper);
  outline: none;
}

.article-page .site-content {
  position: relative;
  height: 100svh;
}

.article-shell {
  padding-top: 74px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(240px, 0.46fr);
  gap: min(8vw, 92px);
  align-items: start;
}

.article-visual {
  grid-column: 1 / -1;
  display: grid;
  place-items: center;
  height: clamp(142px, 18vw, 204px);
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--paper);
}

.article-visual canvas {
  display: block;
  width: min(100%, 700px);
  height: 100%;
}

.article-meta {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.article-prose {
  display: grid;
  gap: 24px;
  max-width: 760px;
}

.article-prose > p,
.article-prose li {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.article-prose h2 {
  margin: 18px 0 0;
  font-size: 34px;
}

.article-prose ul,
.article-prose ol {
  margin: 0;
  padding-left: 0;
}

.article-prose blockquote {
  margin: 0;
  padding: 20px 24px;
  border-left: 2px solid var(--accent);
  color: var(--ink);
  background: rgba(23, 23, 19, 0.03);
}

.blog-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
}

.blog-cta p {
  margin: 0;
  color: var(--muted);
}

.blog-cta .secondary-link:hover,
.blog-cta .secondary-link:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 0 3px rgba(14, 144, 144, 0.16);
  outline: none;
}

.resources-intro {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}

.resources-intro .blog-copy {
  min-width: 0;
}

.resources-hero-title {
  display: block;
  max-width: min(11ch, 100%);
  width: 100%;
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 4.8vw, 72px);
  font-weight: 720;
  line-height: 0.96;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  white-space: normal;
}

.resources-hero-copy {
  max-width: 20ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.36;
}

.resource-pack-card {
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  padding: clamp(22px, 2.2vw, 30px);
  background:
    linear-gradient(180deg, rgba(14, 144, 144, 0.045), transparent 40%),
    rgba(23, 23, 19, 0.018);
}

.resource-pack-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.04;
}

.resource-pack-card > p:not(.eyebrow):not(.resource-pack-note) {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

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

.resource-capture-form label {
  display: grid;
  gap: 10px;
}

.resource-capture-form label > span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
  line-height: 1;
  text-transform: uppercase;
}

.resource-capture-form input,
.resource-capture-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 16px 18px;
  background: rgba(240, 236, 230, 0.88);
  color: var(--ink);
  font: inherit;
}

.resource-capture-form textarea {
  min-height: 112px;
  resize: vertical;
}

.resource-pack-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.pricing-hero-copy {
  max-width: 36ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.9vw, 26px);
  line-height: 1.48;
}

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

.resource-card {
  display: grid;
  gap: 18px;
  align-content: start;
  min-height: 100%;
  border: 1px solid var(--line);
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(14, 144, 144, 0.055), transparent 34%),
    rgba(23, 23, 19, 0.018);
}

.resource-card h2 {
  max-width: 12ch;
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.05;
}

.resource-card > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.resource-preview-list,
.resource-checklist,
.resource-question-list,
.resource-prompt-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 0;
}

.resource-preview-list li,
.resource-checklist li,
.resource-question-list li {
  position: relative;
  list-style: none;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.52;
}

.resource-preview-list li,
.resource-checklist li {
  padding-left: 18px;
}

.resource-preview-list li::before,
.resource-checklist li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.resource-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: auto;
}

.resource-actions .secondary-link {
  border-color: var(--ink);
  color: var(--ink);
}

.resource-actions .secondary-link:hover,
.resource-actions .secondary-link:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}

.resource-doc-header {
  display: grid;
  gap: 18px;
}

.resource-doc-header--centered {
  justify-items: center;
  text-align: center;
  margin-bottom: 30px;
}

.resource-doc-header h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(36px, 4.3vw, 64px);
  line-height: 0.98;
}

.resource-doc-header > p {
  max-width: 50ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.5;
}

.resource-doc-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.resource-print-button {
  cursor: pointer;
  background: transparent;
}

.resource-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.resource-question-list li {
  display: grid;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.resource-question-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.resource-question-list h3,
.resource-prompt h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.12;
}

.resource-question-list p,
.resource-prompt p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
}

.resource-prompt-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.resource-prompt {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 16px;
  border: 1px solid var(--line);
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(14, 144, 144, 0.045), transparent 45%),
    rgba(23, 23, 19, 0.018);
  min-height: 420px;
  height: 100%;
  overflow: hidden;
  transition:
    border-color 220ms ease,
    background 220ms ease;
}

.resource-prompt:focus-within {
  border-color: rgba(14, 144, 144, 0.38);
  background:
    linear-gradient(180deg, rgba(14, 144, 144, 0.095), transparent 48%),
    rgba(23, 23, 19, 0.026);
}

.prompt-controls {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.prompt-control {
  border: 1px solid rgba(23, 23, 19, 0.22);
  padding: 8px 12px;
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
  font-weight: 720;
  line-height: 1;
  cursor: pointer;
  transition:
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.prompt-control:hover,
.prompt-control:focus-visible {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--paper);
  outline: none;
}

.prompt-control--ghost {
  background: transparent;
  color: var(--ink);
}

.resource-prompt pre {
  margin: 0;
  border: 1px solid rgba(196, 187, 178, 0.48);
  padding: 18px;
  background: rgba(240, 236, 230, 0.92);
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 14px;
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-word;
  height: 100%;
  max-height: 190px;
  overflow: auto;
  background: rgba(244, 241, 235, 0.98);
  scrollbar-width: thin;
}

.prompt-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 28px;
}

.prompt-modal[hidden] {
  display: none;
}

.prompt-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 23, 19, 0.42);
}

.prompt-modal__panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  width: min(760px, calc(100vw - 40px));
  max-height: calc(100vh - 40px);
  overflow: auto;
  border: 1px solid var(--line);
  padding: 26px;
  background: var(--paper);
  box-shadow: 0 24px 72px rgba(23, 23, 19, 0.18);
}

.prompt-modal__topbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.prompt-modal__topbar h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1;
}

.prompt-modal p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.prompt-modal pre {
  margin: 0;
  border: 1px solid rgba(196, 187, 178, 0.48);
  padding: 20px;
  background: rgba(244, 241, 235, 0.98);
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 14px;
  line-height: 1.7;
  white-space: pre-wrap;
  word-break: break-word;
}

body.is-prompt-modal-open {
  overflow: hidden;
}

@keyframes traceButton {
  to {
    --trace-angle: 360deg;
  }
}

@keyframes rotateWelcomeWord {
  0% {
    opacity: 0;
    transform: translateY(110%);
  }
  4%,
  8% {
    opacity: 1;
    transform: translateY(0);
  }
  12%,
  100% {
    opacity: 0;
    transform: translateY(-110%);
  }
}

@keyframes slowOrbit {
  to {
    rotate: 360deg;
  }
}

@keyframes loaderOrbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes loaderPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.22);
    opacity: 1;
  }
}

@keyframes slowFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -14px, 0);
  }
}

@keyframes chartBreathe {
  0%,
  100% {
    transform: scaleY(0.78);
    opacity: 0.52;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes drawMap {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes lineGrow {
  to {
    transform: scaleX(1);
  }
}

@keyframes lineRunner {
  0% {
    left: 0;
    opacity: 0;
  }
  12%,
  82% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

@keyframes proofKnobIn {
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes proofKnobPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(14, 144, 144, 0);
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(14, 144, 144, 0.08);
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@keyframes proofBarBreathe {
  0%,
  100% {
    opacity: 0.78;
  }
  50% {
    opacity: 1;
  }
}

@keyframes drawComplex {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes dashTravel {
  to {
    stroke-dashoffset: -160;
  }
}

@keyframes nodePulse {
  0%,
  100% {
    opacity: 0.18;
    transform: scale(0.78);
  }
  50% {
    opacity: 0.52;
    transform: scale(1.42);
  }
}

@keyframes nodeAppear {
  from {
    opacity: 0;
    transform: scale(0.68);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes offerNoteSettle {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

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

@keyframes offerNoteBreathe {
  0%,
  100% {
    color: var(--muted);
  }

  45%,
  55% {
    color: var(--accent);
  }
}

@keyframes statementAccentPulse {
  0%,
  100% {
    color: var(--accent);
    opacity: 0.76;
    transform: translateY(0);
  }

  42%,
  58% {
    color: var(--accent);
    opacity: 1;
    transform: translateY(-1px);
  }
}

@keyframes statementAccentUnderline {
  0%,
  22%,
  100% {
    opacity: 0;
    transform: scaleX(0);
  }

  40%,
  64% {
    opacity: 0.9;
    transform: scaleX(1);
  }
}

@keyframes offerNoteTrace {
  0%,
  22% {
    opacity: 0;
    transform: scaleX(0);
  }

  38%,
  72% {
    opacity: 0.62;
    transform: scaleX(1);
  }

  100% {
    opacity: 0;
    transform: scaleX(0);
  }
}

@keyframes offerChoiceHint {
  0%,
  12%,
  100% {
    opacity: 0;
    transform: scale(0.985);
  }

  38%,
  58% {
    opacity: 1;
    transform: scale(1);
  }

  78% {
    opacity: 0;
    transform: scale(1.004);
  }
}

@keyframes offerChoiceBorderHint {
  0%,
  14%,
  100% {
    border-color: rgba(23, 23, 19, 0.2);
    box-shadow: 0 0 0 rgba(30, 125, 109, 0);
  }

  42%,
  58% {
    border-color: rgba(30, 125, 109, 0.48);
    box-shadow: inset 0 0 0 1px rgba(30, 125, 109, 0.22);
  }

  78% {
    border-color: rgba(23, 23, 19, 0.2);
    box-shadow: 0 0 0 rgba(30, 125, 109, 0);
  }
}

@keyframes terrainScrollCueFloat {
  0%,
  100% {
    opacity: 0.72;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(10px);
  }
}

@keyframes cellBlink {
  0%,
  100% {
    opacity: 0.28;
  }
  50% {
    opacity: 0.72;
  }
}

@keyframes dialSweep {
  0%,
  100% {
    transform: rotate(18deg) translateX(78px);
  }
  50% {
    transform: rotate(236deg) translateX(78px);
  }
}

@media (max-width: 940px) {
  .route-rail {
    top: 82px;
    left: 16px;
    right: 16px;
    display: flex;
    width: auto;
    gap: 6px;
    overflow-x: auto;
    padding: 8px 0;
    font-size: 10px;
  }

  .route-rail a {
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
  }

  .route-line {
    display: none;
  }

  .ambient-system {
    top: 8%;
    right: 24px;
    width: 240px;
    opacity: 0.36;
  }

  .hero-grid,
  .split,
  .contact-grid,
  .statement-layout,
  .offer-header,
  .terrain-intro-grid,
  .blog-intro,
  .case-study-card,
  .article-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-copy {
    margin-top: 28px;
  }

  .statement-layout {
    align-items: start;
  }

  .proof-panel {
    max-width: 560px;
  }

  h2 {
    font-size: 42px;
  }

  .card-grid.three,
  .card-grid.four,
  .process-list,
  .pricing-grid,
  .article-list,
  .resource-grid,
  .offer-layout .offer-choice-grid,
  .resource-prompt-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .history-timeline {
    max-width: none;
  }

  .featured-list {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .case-study-page .article-meta {
    max-width: none;
  }

  .case-study-section {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .featured-row {
    grid-template-columns: minmax(0, 1fr);
    align-content: end;
    align-items: end;
    gap: 12px;
    width: 100%;
    min-height: 178px;
  }

  .featured-row:nth-child(1),
  .featured-row:nth-child(2),
  .featured-row:nth-child(3) {
    justify-self: stretch;
    width: 100%;
  }

  .case-study-index {
    font-size: 13px;
  }

  .offer-side-visual,
  .offer-side-visual:hover,
  .offer-side-visual.is-activated {
    transform: none;
  }

  #teams {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  #teams .team-switcher {
    min-height: auto;
  }

  .choice-drawing,
  .step-visual {
    width: min(360px, 58%);
    opacity: 0.46;
  }

  .visual-system {
    width: min(320px, 52%);
    opacity: 0.28;
  }

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

  .terrain-intro {
    padding-top: 132px;
  }
}

@media (max-width: 680px) {
  .intro {
    padding: 24px;
  }

  .intro-brand {
    top: 22px;
    left: 22px;
  }

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

  h1 {
    font-size: clamp(24px, 7.2vw, 34px);
    flex-wrap: wrap;
    max-width: 11.8em;
    white-space: normal;
    line-height: 1.08;
    row-gap: 0.1em;
  }

  .word-rotator {
    min-width: 4.25em;
  }

  .start-button {
    min-width: 194px;
    min-height: 48px;
    margin-top: 26px;
  }

  .site-header {
    width: calc(100% - 32px);
  }

  .nav {
    gap: 12px;
    font-size: 12px;
  }

  .nav a {
    min-width: 44px;
    min-height: 44px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .brand-mark svg {
    width: 100%;
    height: 100%;
  }

  .brand-name {
    display: grid;
    gap: 0;
  }

  .brand-name strong {
    font-size: 13px;
  }

  .brand small {
    font-size: 10px;
  }

  .section-inner {
    width: calc(100% - 32px);
  }

  .hero-section {
    padding: 112px 0 60px;
  }

  .terrain-intro {
    min-height: auto;
    padding: 104px 0 74px;
  }

  .terrain-title {
    font-size: clamp(30px, 8vw, 46px);
    line-height: 1.08;
    text-wrap: pretty;
  }

  .terrain-copy {
    padding-top: 18px;
  }

  .terrain-actions {
    flex-direction: column;
    align-items: start;
    gap: 18px;
    margin-top: 24px;
  }

  .ambient-system {
    top: 86px;
    right: 14px;
    width: 190px;
  }

  .route-rail {
    display: none;
  }

  .mini-chart {
    display: none;
  }

  .choice-surface,
  .question-card,
  .step-lab,
  .scope-builder,
  .team-switcher,
  .price-picker {
    min-height: auto;
  }

  .choice-drawing,
  .step-visual,
  .choice-orbit,
  .team-dial,
  .price-meter,
  .visual-system {
    position: relative;
    right: auto;
    bottom: auto;
    top: auto;
    width: min(260px, 100%);
    margin-top: 34px;
  }

  .visual-system {
    display: block;
    opacity: 0.34;
  }

  .choice-orbit,
  .team-dial {
    margin-left: auto;
    margin-right: auto;
  }

  .section {
    padding: 74px 0;
  }

  .blog-hero {
    padding: 34px 0 40px;
  }

  .chapter {
    min-height: auto;
  }

  .statement-section {
    padding: 86px 0;
  }

  .proof-stat {
    grid-template-columns: 62px 1fr;
  }

  .proof-stat strong {
    font-size: 28px;
  }

  .niche-row {
    grid-template-columns: 1fr;
  }

  h2 {
    font-size: 32px;
  }

  .hero-title {
    max-width: 100%;
    font-size: 37px;
  }

  .case-hero-title {
    font-size: clamp(40px, 13vw, 58px);
  }

  .hero-copy p,
  .large-copy,
  .section-heading p:not(.eyebrow),
  .contact-grid > div > p:not(.eyebrow) {
    font-size: 16px;
  }

  .card-grid.three,
  .card-grid.four,
  .process-list,
  .pricing-grid,
  .article-list,
  .resource-grid,
  .resource-prompt-list {
    grid-template-columns: 1fr;
  }

  .resource-prompt {
    min-height: auto;
  }

  .resource-prompt pre {
    max-height: none;
  }

  .prompt-modal {
    padding: 18px;
  }

  .prompt-modal__topbar {
    flex-direction: column;
    align-items: stretch;
  }

  .featured-list {
    gap: 14px;
  }

  .case-study-list {
    grid-template-columns: 1fr;
  }

  .case-study-page .article-shell {
    padding-top: 34px;
  }

  .case-study-page .section-inner {
    width: calc(100% - 32px);
  }

  .case-study-hero-company {
    justify-content: center;
    align-items: center;
  }

  .case-study-hero-logo {
    width: 52px;
    height: 52px;
    font-size: 16px;
  }

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

  .case-study-section h2 {
    font-size: clamp(22px, 8vw, 34px);
  }

  .featured-row {
    min-height: 210px;
    padding: 24px;
  }

  .featured-title {
    font-size: clamp(28px, 9vw, 40px);
  }

  .featured-row p {
    max-width: 100%;
    font-size: 16px;
  }

  .case-study-card {
    padding: 24px;
  }

  .case-study-copy h2 {
    font-size: clamp(28px, 9vw, 40px);
  }

  .history-timeline::before {
    display: none;
  }

  .timeline-item {
    grid-template-columns: 12px minmax(0, 1fr);
    min-height: auto;
    gap: 0;
  }

  .ev-node {
    grid-column: 1;
    grid-row: 1;
  }

  .ev-node::before {
    background: rgba(196, 187, 178, 0.45);
  }

  .ev-deco {
    display: none;
  }

  .ev-info,
  .ev-info--left,
  .ev-info--right {
    grid-column: 2;
    grid-row: 1;
    border-right: none;
    border-left: 2px solid transparent;
    padding: 26px 0 26px 20px;
    text-align: left;
  }

  .timeline-item p {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .offer-layout .offer-choice-grid {
    grid-template-columns: 1fr;
  }

  .offer-header {
    padding-top: 58px;
  }

  .blog-cta {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .article-meta {
    position: static;
  }

  .article-shell {
    padding-top: 54px;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-visual {
    height: 132px;
    margin-bottom: 4px;
  }

  .line-card,
  .line-card.compact,
  .process-list article,
  .pricing-grid article {
    min-height: auto;
    padding: 24px;
  }

  .answer-panel,
  .fit-answer,
  .step-answer,
  .team-answer,
  .price-answer {
    width: 100%;
    margin-top: 38px;
  }

  .scope-list {
    width: 100%;
  }

  .scope-builder.is-detail {
    min-height: auto;
  }

  .scope-detail-panel {
    gap: 34px;
  }

  .scope-detail-tabs {
    gap: 8px;
  }

  .scope-detail-tabs button {
    flex: 1 1 calc(50% - 8px);
    white-space: normal;
  }

  .scope-detail-answer::before {
    display: none;
  }

  .scope-detail-answer h3 {
    font-size: 30px;
  }

  .scope-detail-answer p {
    font-size: 17px;
  }

  .team-dial {
    display: none;
  }

  .scope-math-field {
    height: 210px;
    margin-top: 42px;
    opacity: 0.4;
  }

  .scope-math-field text {
    display: none;
  }

  .canvas-visual {
    width: 100%;
    margin-top: 42px;
  }

  .value-curve-field {
    height: 250px;
  }

  .offer-curve-field {
    height: 260px;
  }

  .customizer-panel {
    min-height: min(520px, calc(100svh - 48px));
  }

  .customizer-visual {
    width: min(260px, 100%);
  }

  .bottleneck-field {
    height: 230px;
  }

  .app-orbit-field {
    height: 280px;
  }

  .fit-orbit-field {
    height: 280px;
  }

  #teams {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  #teams .fit-orbit-field {
    height: 240px;
    margin-top: 28px;
  }

  .footer-inner {
    width: calc(100% - 32px);
  }

  .footer-directory {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-bottom: 34px;
  }

  .footer-bottom {
    padding-top: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
