:root {
  --paper: #f3efe6;
  --paper-deep: #e7dfd2;
  --ink: #171715;
  --muted: #68645d;
  --line: rgba(23, 23, 21, .18);
  --blue: #315fdb;
  --blue-pale: #dbe5ff;
  --coral: #f35c3f;
  --white: #fffdf8;
  --sans: Arial, "Helvetica Neue", Helvetica, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  background: var(--paper);
  opacity: 0;
  transition: opacity 180ms ease;
}
body.is-leaving::before { opacity: 1; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}
img { display: block; max-width: 100%; }
.shell { width: min(1180px, calc(100% - 64px)); margin-inline: auto; }
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1100;
  padding: 10px 14px;
  color: white;
  background: var(--ink);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark { display: inline-flex; align-items: center; gap: 12px; }
.wordmark > span {
  width: 40px;
  height: 40px;
  padding: 2px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 3px 3px 0 var(--blue);
}
.wordmark img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 14%;
}
.wordmark strong { font-size: 15px; letter-spacing: -.01em; }
nav { display: flex; align-items: center; gap: 28px; }
nav a, nav button {
  position: relative;
  padding: 8px 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  font: 700 13px/1 var(--sans);
  cursor: pointer;
}
nav a::after, .text-link::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: currentColor;
  transition: right 240ms var(--ease);
}
nav a:hover::after, nav a:focus-visible::after,
.text-link:hover::after, .text-link:focus-visible::after { right: 0; }
nav button {
  min-width: 42px;
  padding: 9px 10px;
  border: 1px solid var(--ink);
}

.hero {
  min-height: calc(100vh - 76px);
  padding-block: clamp(60px, 8vh, 105px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: clamp(70px, 9vw, 130px);
  align-items: center;
}
.hero-copy { min-width: 0; }
.eyebrow {
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  max-width: 840px;
  font-size: clamp(58px, 7.1vw, 101px);
  line-height: .91;
  letter-spacing: -.064em;
  font-weight: 800;
}
.hero h1 span, .hero h1 em { display: block; }
.hero h1 em {
  margin-top: .14em;
  color: var(--blue);
  font-family: var(--serif);
  font-size: .86em;
  font-weight: 400;
  letter-spacing: -.055em;
}
.hero-intro {
  max-width: 730px;
  margin: 34px 0 0;
  color: #44413b;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.5;
  letter-spacing: -.014em;
}
.hero-actions, .contact-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}
.button {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 800;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease);
}
.button-primary {
  color: var(--white);
  background: var(--ink);
  box-shadow: 5px 5px 0 var(--coral);
}
.button-secondary { background: transparent; }
.button:hover, .button:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--coral);
}
.text-link {
  position: relative;
  padding-block: 5px;
  font-size: 14px;
  font-weight: 800;
}

.proof-panel {
  margin: 0;
  border-top: 1px solid var(--ink);
}
.proof-panel > div {
  display: grid;
  grid-template-columns: 115px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}
.proof-panel strong {
  color: var(--blue);
  font-size: 31px;
  line-height: 1;
  letter-spacing: -.05em;
}
.proof-panel > div:nth-child(2) strong,
.proof-panel > div:nth-child(3) strong {
  font-size: 19px;
  letter-spacing: -.025em;
}
.proof-panel span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}
.proof-panel .language-proof strong { font-size: 21px; letter-spacing: -.035em; }

.experience-section {
  padding-block: clamp(105px, 12vw, 170px);
  background: var(--white);
}
.section-intro {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  margin-bottom: 70px;
}
.section-number {
  margin: 3px 0 0;
  color: var(--coral);
  font: 800 12px/1 var(--sans);
  letter-spacing: .12em;
}
.section-intro h2, .journey-copy h2, .product-heading h2, .credentials-grid h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(42px, 5.8vw, 78px);
  line-height: .98;
  letter-spacing: -.058em;
}
.experience-projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--line);
}
.experience-projects article {
  min-height: 590px;
  padding: clamp(30px, 3.6vw, 48px);
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.project-evidence-top {
  min-height: 58px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.project-evidence-top > span {
  flex: 0 0 auto;
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
}
.project-evidence-top p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.project-evidence-copy { margin-top: 44px; }
.project-type {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.project-evidence-copy h3 {
  margin: 0;
  font-size: clamp(29px, 3vw, 42px);
  line-height: 1;
  letter-spacing: -.05em;
}
.project-evidence-copy > p:last-child {
  margin: 23px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.project-kpi {
  margin-top: auto;
  padding-top: 35px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 17px;
  align-items: end;
  border-top: 1px solid var(--line);
}
.project-kpi strong {
  color: var(--blue);
  font-size: clamp(48px, 5vw, 68px);
  line-height: .77;
  letter-spacing: -.07em;
}
.project-kpi span {
  max-width: 150px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.journey-section {
  padding-block: clamp(82px, 9vw, 125px);
  color: var(--white);
  background: var(--ink);
}
.journey-grid {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: clamp(40px, 7vw, 95px);
}
.journey-section .eyebrow { color: #91aaf2; }
.journey-copy {
  display: grid;
  grid-template-columns: minmax(220px, .45fr) minmax(0, 1.55fr);
  gap: clamp(36px, 6vw, 85px);
  align-items: start;
}
.journey-copy > p:last-child {
  max-width: 880px;
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: clamp(18px, 2vw, 22px);
}
.current-build {
  margin-top: clamp(58px, 7vw, 88px);
  padding-top: clamp(58px, 7vw, 88px);
  border-top: 1px solid rgba(255,255,255,.24);
  scroll-margin-top: 92px;
}
.product-heading {
  margin-bottom: 58px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: clamp(55px, 9vw, 130px);
  align-items: end;
}
.product-heading > p {
  margin: 0 0 5px;
  color: rgba(255,255,255,.68);
  font-size: 16px;
}
.product-card {
  min-height: 690px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--white);
}
.product-copy {
  padding: clamp(42px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  color: var(--ink);
}
.product-question {
  margin: 0 0 28px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.product-copy h3 {
  margin: 0;
  font-size: clamp(37px, 4.3vw, 61px);
  line-height: .98;
  letter-spacing: -.055em;
}
.product-copy ul {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  color: #4e4b47;
  font-size: 15px;
  line-height: 1.42;
}
.product-copy li::before {
  content: "•";
  margin-right: 11px;
  color: var(--blue);
}
.product-link {
  margin-top: clamp(36px, 4vw, 52px);
  align-self: flex-start;
}
.product-card:hover .product-link,
.product-card:focus-visible .product-link {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--coral);
}

.workflow-visual {
  position: relative;
  padding: clamp(35px, 5vw, 70px);
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue);
}
.home-flow {
  width: min(100%, 620px);
  display: grid;
  grid-template-columns: 1fr 44px 1fr;
  grid-template-rows: 1fr 36px 1fr;
  align-items: stretch;
}
.home-flow * {
  animation-play-state: paused !important;
}
.workflow-visual.is-active .home-flow * {
  animation-play-state: running !important;
}
.home-n8n-proof {
  width: 100%;
  margin: 34px 0 0;
  padding: clamp(28px, 4vw, 52px);
  display: grid;
  grid-template-columns: minmax(220px, .42fr) minmax(0, 1.58fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--ink);
  box-shadow: 7px 7px 0 rgba(15,15,15,.74);
}
.home-n8n-proof figcaption { align-self: start; }
.home-n8n-proof h3 {
  margin: 0;
  font-size: clamp(29px, 3.3vw, 45px);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.home-n8n-proof span {
  display: block;
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
}
.home-n8n-proof img {
  width: 100%;
  border: 1px solid var(--line);
}
.home-flow-card {
  min-height: 195px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.75);
  background: rgba(12,34,93,.32);
  box-shadow: 6px 6px 0 rgba(20,20,20,.62);
  animation: home-card-cycle 12s infinite;
  animation-delay: calc(var(--step) * 3s);
}
@keyframes home-card-cycle {
  0%, 21% {
    border-color: white;
    background: rgba(255,255,255,.19);
    box-shadow: 9px 9px 0 rgba(15,15,15,.82);
    transform: translate(-2px, -2px);
  }
  26%, 100% {
    border-color: rgba(255,255,255,.48);
    background: rgba(12,34,93,.3);
    box-shadow: 5px 5px 0 rgba(20,20,20,.52);
    transform: none;
  }
}
.home-intake { grid-column: 1; grid-row: 1; }
.home-assess { grid-column: 3; grid-row: 1; }
.home-gate { grid-column: 3; grid-row: 3; }
.home-brief {
  grid-column: 1;
  grid-row: 3;
  color: var(--ink);
  background: var(--white);
  animation-name: home-brief-card-cycle;
}
@keyframes home-brief-card-cycle {
  0%, 21% {
    border-color: white;
    background: white;
    box-shadow: 9px 9px 0 rgba(15,15,15,.82);
    transform: translate(-2px, -2px);
  }
  26%, 100% {
    border-color: rgba(23,23,21,.24);
    background: var(--white);
    box-shadow: 5px 5px 0 rgba(20,20,20,.52);
    transform: none;
  }
}
.home-flow-title { display: flex; align-items: center; gap: 9px; }
.home-flow-title small {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 50%;
  color: #d6dfff;
  font-size: 8px;
  font-weight: 800;
}
.home-flow-title strong { font-size: 12px; line-height: 1.2; }
.home-brief .home-flow-title small { border-color: var(--line); color: var(--blue); }

.home-intake-fields {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}
.home-intake-fields span {
  min-height: 50px;
  padding: 9px;
  display: grid;
  grid-template-columns: 23px 1fr;
  align-items: center;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.07);
}
.home-intake-fields i {
  color: #d4deff;
  font-size: 10px;
  font-style: normal;
}
.home-intake-fields b { font-size: 8px; }
.home-intake-fields span {
  animation: home-field-cycle 12s infinite both;
}
.home-intake-fields span:nth-child(2) { animation-delay: 120ms; }
.home-intake-fields span:nth-child(3) { animation-delay: 240ms; }
.home-intake-fields span:nth-child(4) { animation-delay: 360ms; }
@keyframes home-field-cycle {
  0% { opacity: .2; transform: translateY(7px); }
  7%, 25% { opacity: 1; transform: none; }
  30%, 100% { opacity: .72; transform: none; }
}

.home-dimensions {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}
.home-dimensions span {
  height: 42px;
  padding: 8px;
  display: grid;
  grid-template-columns: 25px 1fr;
  grid-template-rows: 1fr 4px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.07);
}
.home-dimensions i {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: white;
  font-size: 6px;
  font-style: normal;
  font-weight: 800;
}
.home-dimensions b {
  grid-column: 1 / -1;
  width: var(--level);
  height: 3px;
  border-radius: 3px;
  background: #d6dfff;
  transform-origin: left;
  animation: home-dimension-cycle 12s 3s infinite both;
}
@keyframes home-dimension-cycle {
  0% { transform: scaleX(0); }
  8%, 25% { transform: scaleX(1); }
  30%, 100% { transform: scaleX(1); }
}

.home-gate-body {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 13px;
  align-items: center;
}
.home-score {
  width: 68px;
  height: 68px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, #274db5 54%, transparent 55%),
    conic-gradient(#57d0b0 0 68%, rgba(255,255,255,.17) 68% 100%);
  text-align: center;
  animation: home-score-cycle 12s 6s infinite both;
}
.home-score strong { font-size: 24px; line-height: 1; letter-spacing: -.06em; }
.home-score small { color: #d7e0ff; font-size: 7px; }
@keyframes home-score-cycle {
  0% { opacity: .35; transform: rotate(-35deg) scale(.78); }
  9%, 25% { opacity: 1; transform: none; }
  30%, 100% { opacity: .8; transform: none; }
}
.home-checks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.home-checks span {
  height: 25px;
  display: grid;
  place-items: center;
  color: #126b4f;
  background: #dff4ea;
  font-size: 9px;
  font-weight: 800;
  animation: home-check-cycle 12s 6s infinite both;
}
.home-checks span:nth-child(2), .home-checks span:nth-child(5) { animation-delay: 6.12s; }
.home-checks span:nth-child(3), .home-checks span:nth-child(6) { animation-delay: 6.24s; }
@keyframes home-check-cycle {
  0% { opacity: 0; transform: scale(.65); }
  8%, 25% { opacity: 1; transform: none; }
  30%, 100% { opacity: .9; transform: none; }
}
.home-gate-body p {
  margin: 7px 0 0;
  padding: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #5b3900;
  background: #ffedc9;
  font-size: 7px;
  font-weight: 800;
}
.home-gate-body p i {
  width: 15px;
  height: 15px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: #df8a12;
  font-style: normal;
}

.home-brief-body { margin-top: 17px; }
.home-recommendation {
  padding: 9px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  background: #0e1d3c;
  font-size: 8px;
  font-weight: 800;
}
.home-recommendation i {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #0f7154;
  background: #dff4ea;
  font-style: normal;
}
.home-brief-body > b {
  display: block;
  width: 88%;
  height: 5px;
  margin-top: 9px;
  border-radius: 4px;
  background: #dce1eb;
  transform-origin: left;
  animation: home-brief-cycle 12s 9s infinite both;
}
.home-brief-body > b:nth-of-type(2) { width: 72%; animation-delay: 9.12s; }
.home-brief-body > b:nth-of-type(3) { width: 80%; animation-delay: 9.24s; }
@keyframes home-brief-cycle {
  0% { transform: scaleX(0); }
  8%, 25% { transform: scaleX(1); }
  30%, 100% { transform: scaleX(1); }
}
.home-actions {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}
.home-actions span {
  padding: 6px;
  border: 1px solid var(--line);
  color: var(--blue);
  font-size: 7px;
  font-weight: 800;
  text-align: center;
}

.home-flow-link {
  position: relative;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.78);
}
.home-flow-link::before {
  content: "";
  position: absolute;
  background: rgba(255,255,255,.45);
}
.home-flow-link i {
  position: absolute;
  z-index: 2;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255,255,255,.16);
}
.home-flow-link span { position: relative; z-index: 3; font-size: 13px; }
.link-one { grid-column: 2; grid-row: 1; }
.link-two { grid-column: 3; grid-row: 2; }
.link-three { grid-column: 2; grid-row: 3; }
.link-one::before, .link-three::before { right: 0; left: 0; height: 1px; }
.link-two::before { top: 0; bottom: 0; width: 1px; }
.link-one i { animation: home-dot-right 12s ease infinite; }
.link-two i { animation: home-dot-down 12s 3s ease infinite; }
.link-three i { animation: home-dot-left 12s 6s ease infinite; }
@keyframes home-dot-right {
  0% { left: 0; opacity: 0; }
  5%, 20% { opacity: 1; }
  25% { left: calc(100% - 8px); opacity: 0; }
  26%, 100% { left: 0; opacity: 0; }
}
@keyframes home-dot-down {
  0% { top: 0; opacity: 0; }
  5%, 20% { opacity: 1; }
  25% { top: calc(100% - 8px); opacity: 0; }
  26%, 100% { top: 0; opacity: 0; }
}
@keyframes home-dot-left {
  0% { right: 0; opacity: 0; }
  5%, 20% { opacity: 1; }
  25% { right: calc(100% - 8px); opacity: 0; }
  26%, 100% { right: 0; opacity: 0; }
}
.workflow-visual > p {
  position: absolute;
  right: 28px;
  bottom: 20px;
  left: 28px;
  margin: 0;
  color: rgba(255,255,255,.6);
  font-size: 10px;
  text-align: center;
}

.contact-section { padding-block: clamp(110px, 14vw, 190px); }
.contact-section h2 {
  max-width: 930px;
  margin: 0;
  font-size: clamp(54px, 8vw, 112px);
  line-height: .9;
  letter-spacing: -.066em;
}
.site-footer { border-top: 1px solid var(--line); }
.site-footer .shell {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.legal-links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.legal-links a {
  color: inherit;
  text-decoration: none;
}
.legal-links a:hover,
.legal-links a:focus-visible {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.js [data-hero] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 560ms var(--ease), transform 560ms var(--ease);
  transition-delay: calc(var(--delay, 0) * 85ms);
}
.js body.is-ready [data-hero] { opacity: 1; transform: none; }
.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 620ms var(--ease), transform 620ms var(--ease);
}
.js [data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1020px) {
  .shell { width: min(100% - 40px, 800px); }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { max-width: 780px; }
  .proof-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-left: 1px solid var(--line);
  }
  .proof-panel > div { padding-inline: 22px; border-right: 1px solid var(--line); }
  .experience-projects { grid-template-columns: 1fr; }
  .experience-projects article { min-height: 520px; }
  .project-evidence-copy h3 { max-width: 620px; }
  .journey-grid { grid-template-columns: 60px 1fr; }
  .journey-copy { grid-template-columns: 1fr; gap: 18px; }
  .product-heading { grid-template-columns: 1fr; gap: 28px; }
  .product-heading > p { max-width: 700px; }
  .product-card { grid-template-columns: 1fr; }
  .home-n8n-proof { grid-template-columns: 1fr; }
  .product-copy { min-height: 570px; }
  .workflow-visual { min-height: 600px; }
}

@media (max-width: 700px) {
  .shell { width: min(100% - 32px, 560px); }
  .site-header { position: relative; }
  .header-inner { min-height: 68px; }
  .wordmark strong { display: none; }
  nav { gap: 16px; }
  nav a { display: none; }
  .hero { padding-top: 54px; gap: 70px; }
  .hero h1 { font-size: clamp(49px, 14.2vw, 72px); }
  .hero-intro { font-size: 17px; }
  .hero-actions, .contact-links { align-items: flex-start; flex-direction: column; gap: 20px; }
  .proof-panel { grid-template-columns: 1fr; }
  .proof-panel > div { grid-template-columns: 118px 1fr; }
  .section-intro { grid-template-columns: 45px 1fr; margin-bottom: 48px; }
  .section-intro h2, .journey-copy h2, .product-heading h2 { font-size: clamp(39px, 11vw, 54px); }
  .experience-projects article { min-height: 560px; padding: 32px 25px; }
  .project-evidence-copy h3 { font-size: clamp(34px, 10vw, 48px); }
  .journey-grid { grid-template-columns: 1fr; gap: 28px; }
  .product-copy { min-height: 610px; padding: 34px 25px; }
  .product-copy h3 { font-size: clamp(37px, 11vw, 52px); }
  .workflow-visual { min-height: 980px; padding: 40px 24px 75px; }
  .home-flow {
    width: 100%;
    grid-template-columns: 1fr;
    grid-template-rows: auto 36px auto 36px auto 36px auto;
  }
  .home-flow-card { min-height: 190px; }
  .home-intake { grid-column: 1; grid-row: 1; }
  .link-one { grid-column: 1; grid-row: 2; }
  .home-assess { grid-column: 1; grid-row: 3; }
  .link-two { grid-column: 1; grid-row: 4; }
  .home-gate { grid-column: 1; grid-row: 5; }
  .link-three { grid-column: 1; grid-row: 6; }
  .home-brief { grid-column: 1; grid-row: 7; }
  .home-flow-link::before { top: 0; bottom: 0; left: 50%; width: 1px; height: auto; }
  .home-flow-link span { font-size: 0; }
  .home-flow-link span::after { content: "↓"; font-size: 13px; }
  .home-flow-link i { display: none; }
  .site-footer .shell { min-height: 110px; align-items: flex-start; flex-direction: column; justify-content: center; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js [data-hero], .js [data-reveal] { opacity: 1; transform: none; }
}
