:root {
  --paper: #f7f6f2;
  --surface: #ffffff;
  --soft: #efeee9;
  --ink: #151515;
  --ink-soft: #292927;
  --muted: #6d6c67;
  --line: #ddddd6;
  --line-dark: #333330;
  --orange: #fe6e00;
  --orange-dark: #da5800;
  --green: #27bc5b;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --container: 1240px;
  --header-height: 78px;
  --shadow: 0 18px 50px rgb(21 21 21 / 8%);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  border: 0;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
}

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

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

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: clamp(68px, 8vw, 116px);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  translate: 0 -160%;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--surface);
  font-size: 0.875rem;
  font-weight: 600;
  transition: translate 180ms ease;
}

.skip-link:focus {
  translate: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  border-color: rgb(21 21 21 / 8%);
  background: rgb(247 246 242 / 88%);
  backdrop-filter: blur(18px);
}

.nav {
  position: relative;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.brand img {
  width: 32px;
  height: 32px;
}

.nav-links,
.availability,
.nav-cta {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.availability {
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.79rem;
  white-space: nowrap;
}

.availability i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgb(39 188 91 / 12%);
}

.menu-toggle {
  display: grid;
  width: 48px;
  height: 48px;
  cursor: pointer;
  place-content: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 180ms ease;
}

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

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

.mobile-menu {
  position: fixed;
  inset: var(--header-height) 0 auto;
  display: grid;
  min-height: calc(100dvh - var(--header-height));
  align-content: start;
  padding: 22px 16px 36px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu a {
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-size: clamp(1.35rem, 6vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.mobile-menu a:last-child {
  margin-top: 24px;
  padding-inline: 20px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: var(--surface);
  font-size: 1rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-inline: 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  transition:
    transform 220ms var(--ease),
    background-color 220ms ease,
    border-color 220ms ease;
}

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

.button--dark {
  background: var(--ink);
  color: var(--surface);
}

.button--dark:hover {
  background: #000;
}

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

.button--orange:hover {
  background: #ff7d1a;
}

.button--light {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.button--light:hover {
  border-color: var(--ink);
}

.button--ghost {
  border-color: rgb(255 255 255 / 24%);
  background: transparent;
  color: var(--surface);
}

.button--ghost:hover {
  border-color: rgb(255 255 255 / 55%);
  background: rgb(255 255 255 / 6%);
}

.button--large {
  min-height: 58px;
  padding-inline: 26px;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid currentColor;
  font-size: 0.91rem;
  font-weight: 600;
}

.text-link span {
  color: var(--orange);
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(2px, 2px);
}

.hero {
  position: relative;
  min-height: min(900px, 100svh);
  padding-top: calc(var(--header-height) + clamp(54px, 7vw, 96px));
  padding-bottom: clamp(54px, 7vw, 90px);
}

.hero-inner {
  display: grid;
  gap: clamp(38px, 5vw, 72px);
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-meta span:last-child {
  text-align: right;
}

.hero h1 {
  max-width: 1140px;
  font-size: clamp(3.2rem, 12.6vw, 8.8rem);
  font-weight: 500;
  letter-spacing: -0.078em;
  line-height: 0.89;
}

.hero h1 > span {
  display: block;
}

.hero h1 em {
  display: inline-block;
  margin-inline: 0.06em;
  padding: 0.04em 0.2em 0.09em;
  transform: rotate(-3deg) translateY(-0.03em);
  border-radius: 999px;
  background: var(--orange);
  font-style: normal;
  line-height: 0.75;
}

.hero-bottom {
  display: grid;
  gap: 28px;
}

.hero-intro {
  max-width: 650px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.4vw, 1.26rem);
  line-height: 1.55;
}

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

.implementation-strip {
  position: relative;
  display: grid;
  gap: 24px;
  padding-block: 28px;
  border-block: 1px solid var(--line);
}

.implementation-step {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 1px 10px;
}

.implementation-step > span {
  grid-row: 1 / span 2;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
}

.implementation-step strong {
  font-size: 0.91rem;
  font-weight: 600;
}

.implementation-step small {
  color: var(--muted);
  font-size: 0.78rem;
}

.implementation-strip > i {
  display: none;
}

.implementation-mark {
  position: absolute;
  right: 0;
  bottom: 100%;
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
}

.implementation-mark img {
  width: 25px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-kicker::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.section-kicker--light {
  color: rgb(255 255 255 / 54%);
}

.point-of-view {
  background: var(--surface);
}

.point-grid {
  display: grid;
  gap: 42px;
}

.point-grid > div {
  display: grid;
  gap: 28px;
}

.point-grid h2 {
  max-width: 980px;
  font-size: clamp(2.6rem, 6.4vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.96;
}

.point-grid > div > p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.58;
}

.section-heading {
  display: grid;
  gap: 28px;
  margin-bottom: clamp(36px, 5vw, 58px);
}

.section-heading > div {
  display: grid;
  gap: 18px;
}

.section-heading h2 {
  max-width: 810px;
  font-size: clamp(2.35rem, 4.8vw, 4.6rem);
  font-weight: 500;
  letter-spacing: -0.067em;
  line-height: 0.98;
}

.section-heading > p {
  max-width: 540px;
  color: var(--muted);
  font-size: 1rem;
}

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

.services-grid {
  display: grid;
  gap: 16px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 370px;
  flex-direction: column;
  padding: clamp(24px, 3vw, 38px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  container-name: service;
  container-type: inline-size;
  transition:
    transform 240ms var(--ease),
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: #c9c8c0;
  box-shadow: var(--shadow);
}

.service-card--featured {
  min-height: 440px;
  background:
    radial-gradient(circle at 88% 15%, rgb(254 110 0 / 16%), transparent 25%),
    var(--surface);
}

.service-topline {
  display: flex;
  min-height: 42px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: auto;
}

.service-number {
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 600;
}

.service-badge {
  padding: 8px 12px;
  border: 1px solid rgb(254 110 0 / 34%);
  border-radius: 999px;
  background: rgb(254 110 0 / 8%);
  color: var(--orange-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-layout {
  display: grid;
  gap: 32px;
  margin-top: 48px;
}

.service-type {
  margin-bottom: 14px;
  color: var(--orange-dark);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-card h3 {
  max-width: 550px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4cqi, 3.65rem);
  font-weight: 500;
  letter-spacing: -0.057em;
  line-height: 1;
}

.service-summary {
  max-width: 590px;
  color: var(--muted);
  font-size: 0.95rem;
}

.service-deliverables {
  align-self: end;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.service-deliverables > p {
  margin-bottom: 14px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-deliverables ul {
  display: grid;
  gap: 10px;
  list-style: none;
}

.service-deliverables li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.service-deliverables li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 1px;
  background: var(--orange);
  content: "";
}

.card-link {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.83rem;
  font-weight: 600;
}

.card-link span {
  color: var(--orange);
}

.service-icon {
  position: relative;
  display: block;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.service-icon::before,
.service-icon::after {
  position: absolute;
  content: "";
}

.service-icon--flow::before {
  inset: 10px 8px;
  border-block: 1px solid var(--orange);
}

.service-icon--flow::after {
  top: 9px;
  left: 19px;
  width: 1px;
  height: 24px;
  background: var(--orange);
}

.service-icon--build::before {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border: 1px solid var(--orange);
  box-shadow: 15px 0 0 -1px var(--surface), 15px 0 0 0 var(--orange), 0 15px 0 -1px var(--surface), 0 15px 0 0 var(--orange), 15px 15px 0 -1px var(--surface), 15px 15px 0 0 var(--orange);
}

.service-outcome {
  margin-top: auto;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.84rem;
}

.service-outcome span {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

@container service (min-width: 680px) {
  .service-layout {
    grid-template-columns: minmax(0, 1.25fr) minmax(270px, 0.75fr);
    align-items: end;
  }
}

.approach {
  background: var(--surface);
}

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

.approach-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding-block: clamp(26px, 3.2vw, 40px);
  border-bottom: 1px solid var(--line);
}

.approach-number {
  padding-top: 7px;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 700;
}

.approach-list li > div {
  display: grid;
  gap: 12px;
}

.approach-list h3 {
  font-size: clamp(2rem, 4.7vw, 4.6rem);
  font-weight: 500;
  letter-spacing: -0.063em;
  line-height: 1;
}

.approach-list p {
  max-width: 580px;
  color: var(--muted);
}

.approach-list small {
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 600;
}

.possibilities {
  background: var(--soft);
}

.possibility-grid {
  display: grid;
  gap: 14px;
}

.possibility-card {
  display: flex;
  min-height: 440px;
  flex-direction: column;
  padding: 14px 14px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms ease;
}

.possibility-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.possibility-visual {
  position: relative;
  min-height: 220px;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: calc(var(--radius-md) - 7px);
  background: var(--paper);
}

.possibility-meta {
  display: flex;
  justify-content: space-between;
  margin: 0 10px 26px;
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.possibility-card h3,
.possibility-card > p {
  margin-inline: 10px;
}

.possibility-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 1.05;
}

.possibility-card > p {
  color: var(--muted);
  font-size: 0.88rem;
}

.possibility-visual--knowledge span {
  position: absolute;
  left: 12%;
  width: 44%;
  height: 22%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
}

.possibility-visual--knowledge span:first-child {
  top: 16%;
}

.possibility-visual--knowledge span:nth-child(2) {
  top: 39%;
  left: 22%;
}

.possibility-visual--knowledge span:nth-child(3) {
  top: 62%;
  left: 32%;
}

.possibility-visual--knowledge i {
  position: absolute;
  top: calc(50% - 24px);
  right: 11%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 14px rgb(254 110 0 / 11%);
}

.possibility-visual--documents span {
  position: absolute;
  top: 15%;
  left: 13%;
  width: 45%;
  height: 68%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 12px 12px 0 var(--soft);
}

.possibility-visual--documents span::before,
.possibility-visual--documents span::after {
  position: absolute;
  right: 14%;
  left: 14%;
  height: 1px;
  background: var(--line);
  content: "";
}

.possibility-visual--documents span::before {
  top: 34%;
  box-shadow: 0 18px 0 var(--line), 0 36px 0 var(--line);
}

.possibility-visual--documents span:nth-child(2) {
  top: 28%;
  left: 39%;
}

.possibility-visual--documents i {
  position: absolute;
  right: 12%;
  bottom: 14%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--ink);
}

.possibility-visual--documents i::before {
  position: absolute;
  top: 18px;
  left: 16px;
  width: 16px;
  height: 8px;
  transform: rotate(-45deg);
  border-bottom: 2px solid var(--orange);
  border-left: 2px solid var(--orange);
  content: "";
}

.possibility-visual--copilot::before,
.possibility-visual--copilot::after {
  position: absolute;
  top: 50%;
  height: 1px;
  background: var(--line);
  content: "";
}

.possibility-visual--copilot::before {
  right: 50%;
  left: 12%;
}

.possibility-visual--copilot::after {
  right: 12%;
  left: 50%;
}

.possibility-visual--copilot span {
  position: absolute;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
}

.possibility-visual--copilot span::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ink);
  content: "";
}

.possibility-visual--copilot span:first-child {
  top: calc(50% - 27px);
  left: 8%;
}

.possibility-visual--copilot span:nth-child(2) {
  top: calc(50% - 36px);
  left: calc(50% - 36px);
  width: 72px;
  height: 72px;
  border-color: var(--orange);
  background: var(--orange);
}

.possibility-visual--copilot span:nth-child(2)::before {
  width: 24px;
  height: 24px;
  background: url("logo-mark.svg") center / contain no-repeat;
}

.possibility-visual--copilot span:nth-child(3) {
  top: calc(50% - 27px);
  right: 8%;
}

.possibility-visual--copilot i {
  position: absolute;
  top: calc(50% - 4px);
  right: 9%;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  border-top: 1px solid var(--orange);
  border-right: 1px solid var(--orange);
}

.possibility-visual--product span:first-child {
  position: absolute;
  inset: 13% 10%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}

.possibility-visual--product span:first-child::before {
  position: absolute;
  top: 16px;
  right: 18px;
  left: 18px;
  height: 1px;
  background: var(--line);
  content: "";
}

.possibility-visual--product span:nth-child(2) {
  position: absolute;
  top: 37%;
  right: 20%;
  bottom: 24%;
  left: 20%;
  border-radius: 10px;
  background: var(--ink);
}

.possibility-visual--product i {
  position: absolute;
  top: 47%;
  left: calc(50% - 28px);
  width: 56px;
  height: 12px;
  border-block: 2px solid var(--orange);
}

.faq {
  background: var(--surface);
}

.faq-grid {
  display: grid;
  gap: 52px;
}

.faq-intro {
  align-self: start;
}

.faq-intro h2 {
  max-width: 560px;
  margin-top: 18px;
  font-size: clamp(2.5rem, 4.7vw, 4.4rem);
  font-weight: 500;
  letter-spacing: -0.067em;
  line-height: 0.98;
}

.faq-intro > p {
  max-width: 450px;
  margin-top: 22px;
  color: var(--muted);
}

.faq-intro .text-link {
  margin-top: 24px;
}

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

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

.faq-list summary {
  position: relative;
  min-height: 76px;
  padding: 25px 48px 25px 0;
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 600;
  list-style: none;
}

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

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 15px;
  height: 1px;
  background: var(--ink);
  content: "";
  transition: transform 180ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

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

.faq-list details p {
  max-width: 690px;
  padding: 0 48px 28px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact {
  padding-top: 0;
  background: var(--surface);
}

.contact-card {
  position: relative;
  display: grid;
  gap: 44px;
  padding: clamp(30px, 6vw, 74px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--surface);
}

.contact-card h2 {
  max-width: 790px;
  margin-top: 20px;
  font-size: clamp(2.6rem, 5.4vw, 5.2rem);
  font-weight: 500;
  letter-spacing: -0.071em;
  line-height: 0.95;
}

.contact-action {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  justify-items: start;
  gap: 28px;
}

.contact-action p {
  max-width: 520px;
  color: rgb(255 255 255 / 61%);
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-mark {
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: clamp(190px, 28vw, 390px);
  opacity: 0.055;
  filter: invert(1);
}

.site-footer {
  padding-top: 72px;
  padding-bottom: 28px;
  background: var(--paper);
}

.footer-main {
  display: grid;
  gap: 28px;
  padding-bottom: 54px;
}

.brand--footer {
  width: fit-content;
  font-size: 1.08rem;
}

.brand--footer img {
  width: 38px;
  height: 38px;
  transform-origin: center;
  animation: footer-mark-spin 32s linear infinite;
}

@keyframes footer-mark-spin {
  to {
    transform: rotate(-360deg);
  }
}

/* Legal pages (terms) */
.legal-main {
  background: var(--surface);
}

.legal-hero {
  padding-block: clamp(140px, 15vw, 200px) 0;
}

.legal {
  padding-top: clamp(24px, 3vw, 40px);
  padding-bottom: clamp(72px, 9vw, 130px);
}

.legal-grid {
  display: grid;
  gap: 44px;
}

.legal-aside {
  align-self: start;
}

.legal-aside h1 {
  margin-top: 16px;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1;
}

.legal-updated {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
}

.legal-toc {
  display: none;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.legal-toc a {
  display: block;
  padding: 7px 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
  transition: color 160ms ease;
}

.legal-toc a:hover {
  color: var(--ink);
}

.legal-doc {
  max-width: 720px;
}

.legal-intro {
  padding-bottom: clamp(28px, 4vw, 44px);
  margin-bottom: clamp(20px, 3vw, 32px);
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.62;
}

.legal-article + .legal-article {
  margin-top: clamp(34px, 4vw, 52px);
}

.legal-article h2 {
  display: flex;
  align-items: baseline;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.legal-article h2 span {
  margin-right: 12px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.legal-article p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.legal-article ul {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  list-style: none;
}

.legal-article li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.legal-article li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 9px;
  height: 1px;
  background: var(--orange);
  content: "";
}

.legal-article strong {
  color: var(--ink);
  font-weight: 600;
}

.legal-article a {
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.legal-article a:hover {
  border-color: var(--ink);
}

.legal-note {
  margin-top: clamp(40px, 5vw, 64px);
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.legal-note a {
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

@media (min-width: 60rem) {
  .legal-grid {
    grid-template-columns: minmax(0, 0.32fr) minmax(0, 0.68fr);
    gap: clamp(50px, 8vw, 120px);
  }

  .legal-aside {
    position: sticky;
    top: calc(var(--header-height) + 36px);
  }

  .legal-toc {
    display: grid;
  }
}

.footer-main > p {
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-size: 0.84rem;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--orange-dark);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.72rem;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 700ms var(--ease),
    transform 700ms var(--ease);
}

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

@media (min-width: 640px) {
  .container {
    width: min(calc(100% - 56px), var(--container));
  }

  .implementation-mark {
    right: 12px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }

  .footer-links {
    grid-column: 2;
    justify-content: flex-end;
  }
}

@media (min-width: 760px) {
  .hero-title-shift {
    padding-left: clamp(40px, 8vw, 130px);
  }

  .hero-bottom {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: end;
  }

  .hero-actions {
    justify-content: flex-end;
  }

  .implementation-strip {
    grid-template-columns: 1fr auto 1fr auto 1fr auto;
    align-items: center;
    gap: 22px;
  }

  .implementation-strip > i {
    display: block;
    width: clamp(18px, 3vw, 44px);
    height: 1px;
    background: var(--line);
  }

  .implementation-mark {
    position: static;
    margin: 0;
  }

  .point-grid {
    grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
  }

  .point-grid > div > p {
    margin-left: auto;
  }

  .section-heading {
    grid-template-columns: minmax(0, 1.35fr) minmax(270px, 0.65fr);
    align-items: end;
  }

  .section-heading > p {
    justify-self: end;
    padding-bottom: 4px;
  }

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

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

  .approach-list li {
    grid-template-columns: 80px 1fr;
  }

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

@media (min-width: 980px) {
  .nav-links {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.2vw, 34px);
    margin-left: auto;
  }

  .nav-links a {
    position: relative;
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 500;
  }

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

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

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

  .nav-cta {
    display: inline-flex;
  }

  .menu-toggle {
    display: none;
  }

  .approach-list li > div {
    grid-template-columns: minmax(320px, 0.85fr) minmax(260px, 0.75fr) minmax(170px, 0.4fr);
    align-items: start;
    gap: 24px;
  }

  .approach-list h3 {
    font-size: clamp(2.7rem, 4vw, 3.5rem);
  }

  .approach-list small {
    padding-top: 10px;
    text-align: right;
  }

  .faq-grid {
    grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.25fr);
    gap: clamp(70px, 10vw, 150px);
  }

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

  .contact-card {
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    align-items: end;
  }

  .contact-card > div:nth-child(2) {
    position: relative;
    z-index: 1;
  }
}

@media (min-width: 1160px) {
  .availability {
    display: inline-flex;
  }

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

  .possibility-card {
    min-height: 460px;
  }
}

@media (max-width: 430px) {
  .hero-meta span:last-child {
    display: none;
  }

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

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
    justify-content: center;
  }

  .implementation-step small {
    max-width: 210px;
  }

  .contact-action .button {
    width: 100%;
  }
}

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

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

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

/* Restored header and hero from the original STN Studio direction. */
:root {
  --paper: #fbfaf7;
  --white: #ffffff;
  --mist: #e7e5df;
  --mist-light: #f1efe9;
  --orange-soft: #fbe6de;
  --umber: #2a1605;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --shadow-soft: 0 1.5rem 4rem rgb(21 21 21 / 8%);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header {
  inset: 0 0 auto;
  z-index: 100;
  padding: 1rem;
  border: 0;
  background: transparent;
  pointer-events: none;
  backdrop-filter: none;
}

.site-header.is-scrolled {
  border-color: transparent;
  background: transparent;
  backdrop-filter: none;
}

.nav-shell {
  position: relative;
  display: flex;
  width: min(100%, 80rem);
  min-height: 4rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-inline: auto;
  padding: 0.5rem 0;
  border: 1px solid transparent;
  border-radius: 0;
  pointer-events: auto;
  transition:
    width 600ms var(--ease-out),
    padding 600ms var(--ease-out),
    border-radius 600ms var(--ease-out),
    background-color 600ms var(--ease-out),
    box-shadow 600ms var(--ease-out),
    border-color 600ms var(--ease-out);
}

.site-header.is-scrolled .nav-shell {
  width: min(100%, 57rem);
  padding: 0.5rem 0.6rem 0.5rem 0.85rem;
  border-color: rgb(21 21 21 / 7%);
  border-radius: 999px;
  background: rgb(255 255 255 / 82%);
  box-shadow: 0 1rem 3rem rgb(21 21 21 / 9%);
  backdrop-filter: blur(1.25rem) saturate(1.4);
}

.nav-shell .brand {
  display: inline-flex;
  min-height: 2.75rem;
  flex-shrink: 0;
  align-items: center;
  gap: 0.625rem;
  font-size: inherit;
}

.brand .brand-mark {
  width: 2.25rem;
  height: 2.25rem;
  transition: transform 800ms var(--ease-out);
}

.brand:hover .brand-mark,
.brand:focus-visible .brand-mark {
  transform: rotate(60deg);
}

.brand-name {
  display: inline-flex;
  align-items: baseline;
  gap: 0.36em;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-name .mark-strong {
  font-weight: 700;
  color: var(--ink);
}

.brand-name .mark-soft {
  font-weight: 500;
  color: var(--muted);
}

.brand--footer .brand-name {
  font-size: 1rem;
}

.nav-shell .nav-links {
  display: none;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  margin-left: 0;
  font-size: 0.84rem;
  font-weight: 500;
}

.nav-shell .nav-links a {
  min-height: auto;
  color: var(--muted);
  font-size: inherit;
}

.nav-shell .nav-links a::after {
  inset: auto 0 -0.25rem;
  transform: scaleX(0);
  transform-origin: right;
}

.nav-shell .nav-links a:hover {
  color: var(--ink);
}

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

.nav-shell .nav-actions {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 1.1vw, 1.15rem);
}

.nav-shell .availability {
  display: none;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 500;
  white-space: nowrap;
}

.nav-shell .availability i {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #22a447;
  box-shadow: 0 0 0 0.28rem rgb(34 164 71 / 12%);
}

.nav-shell .button {
  min-height: 2.75rem;
  padding-inline: 1.2rem;
  border: 0;
  font-size: 0.82rem;
  font-weight: 500;
}

.nav-shell .nav-cta {
  display: none;
}

.nav-shell .menu-toggle {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-content: center;
  gap: 0.35rem;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
}

.nav-shell .menu-toggle span {
  display: block;
  width: 1rem;
  height: 1px;
  background: currentColor;
}

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

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

.nav-shell .mobile-menu {
  position: absolute;
  inset: calc(100% + 0.65rem) 0 auto;
  display: grid;
  min-height: 0;
  align-content: normal;
  gap: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgb(21 21 21 / 7%);
  border-radius: 1.4rem;
  background: rgb(255 255 255 / 96%);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(1.25rem);
}

.nav-shell .mobile-menu[hidden] {
  display: none;
}

.nav-shell .mobile-menu a {
  min-height: 3.5rem;
  padding-inline: 1.25rem;
  border-bottom: 1px solid var(--mist-light);
  font-size: 1rem;
  font-weight: 500;
}

.nav-shell .mobile-menu a:last-child {
  min-height: 3.5rem;
  margin: 0;
  padding-inline: 1.25rem;
  border: 0;
  border-radius: 0;
  background: var(--ink);
  color: var(--white);
  font-size: 1rem;
}

.hero {
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: space-between;
  padding-block: clamp(7.5rem, 14vw, 10rem) 1.5rem;
  overflow: clip;
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
}

.eyebrow {
  display: flex;
  gap: 0.65rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.71rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow span + span::before {
  margin-inline-end: 0.65rem;
  color: var(--orange);
  content: "·";
}

.hero h1 {
  max-width: 9.25em;
  margin: clamp(1.5rem, 4vw, 2.5rem) 0 0;
  font-size: clamp(2.15rem, 10.8vw, 8.4rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.hero h1 > .title-row {
  display: flex;
  align-items: center;
  gap: 0.12em;
  white-space: nowrap;
}

.title-row--last {
  width: fit-content;
}

.title-row--last > span {
  display: block;
}

.title-window {
  position: relative;
  display: inline-block;
  width: 0.94em;
  height: 0.58em;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 999px;
  box-shadow: 0 0.1em 0.3em rgb(21 21 21 / 12%);
}

.title-window--orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.08em;
  vertical-align: 0.2em;
  background: var(--orange);
}

.title-window--orange i {
  width: 0.09em;
  height: 0.32em;
  transform: rotate(28deg);
  border-radius: 999px;
  background: rgb(255 255 255 / 88%);
}

.title-window--orange i:nth-child(2) {
  height: 0.48em;
}

.title-window--ink {
  width: 1.2em;
  background:
    radial-gradient(circle at 64% 35%, var(--orange) 0 6%, transparent 6.5%),
    linear-gradient(135deg, #353530, #0b0b0a);
}

.title-window--ink b {
  position: absolute;
  inset: 15% 22%;
  transform: rotate(-18deg);
  border: 1px solid rgb(255 255 255 / 55%);
  border-radius: 50%;
}

.hero .hero-intro {
  display: grid;
  max-width: 38rem;
  gap: 1.4rem;
  margin-top: clamp(2rem, 5vw, 3.5rem);
}

.hero .hero-intro p {
  max-width: 34rem;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

.hero .text-link {
  width: fit-content;
  min-height: 0;
  gap: 0.7rem;
  padding-block-end: 0.2rem;
  border-bottom: 1px solid rgb(21 21 21 / 25%);
  font-size: 0.9rem;
  font-weight: 500;
}

.orbit-stage {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  width: min(100%, 31rem);
  aspect-ratio: 1;
  justify-self: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgb(254 110 0 / 9%) 0 22%, transparent 22.5%),
    radial-gradient(circle at center, transparent 0 49.6%, rgb(21 21 21 / 8%) 50%, transparent 50.5%),
    radial-gradient(circle at center, transparent 0 72%, rgb(21 21 21 / 7%) 72.3%, transparent 72.7%);
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 700ms var(--ease-out);
}

.orbit {
  position: absolute;
  inset: 3%;
  border: 1px solid rgb(21 21 21 / 11%);
  border-radius: 50%;
}

.orbit--outer {
  animation: orbit-spin 35s linear infinite;
}

.orbit--outer::before,
.orbit--outer::after,
.orbit--middle::before {
  position: absolute;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.orbit--outer::before {
  inset: 14% auto auto 9%;
}

.orbit--outer::after {
  inset: auto 8% 18% auto;
  background: var(--ink);
}

.orbit--middle {
  inset: 19%;
  transform: rotate(28deg);
  border-style: dashed;
  animation: orbit-spin-reverse 24s linear infinite;
}

.orbit--middle::before {
  inset: 46% -0.28rem auto auto;
  border: 2px solid var(--orange);
  background: var(--paper);
}

.hero-mark-wrap {
  position: absolute;
  inset: 27%;
  display: grid;
  place-items: center;
  border: 1px solid rgb(21 21 21 / 8%);
  border-radius: 50%;
  background: rgb(255 255 255 / 65%);
  box-shadow: 0 2rem 5rem rgb(21 21 21 / 9%);
  backdrop-filter: blur(1rem);
}

.hero-mark {
  width: 68%;
  aspect-ratio: 1;
  animation: mark-breathe 7s ease-in-out infinite;
}

.orbit-label {
  position: absolute;
  padding: 0.35rem 0.65rem;
  border: 1px solid rgb(21 21 21 / 8%);
  border-radius: 999px;
  background: rgb(251 250 247 / 85%);
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(0.6rem);
}

.orbit-label--top {
  inset: 6% auto auto 50%;
  transform: translateX(-50%);
}

.orbit-label--right {
  inset: 50% -2% auto auto;
  transform: translateY(-50%);
}

.orbit-label--bottom {
  inset: auto auto 4% 24%;
}

.hero-foot {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: clamp(3rem, 8vw, 6rem);
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-foot-line {
  height: 1px;
  flex: 1;
  background: var(--mist);
}

@keyframes orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbit-spin-reverse {
  to {
    transform: rotate(-332deg);
  }
}

@keyframes mark-breathe {
  0%,
  100% {
    transform: scale(0.96) rotate(0deg);
  }

  50% {
    transform: scale(1.04) rotate(6deg);
  }
}

@media (min-width: 36rem) {
  .nav-shell .nav-cta {
    display: inline-flex;
  }

  .hero .hero-intro {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }
}

@media (min-width: 48rem) {
  .site-header {
    padding: 1.5rem var(--gutter);
  }

  .nav-shell .availability {
    display: inline-flex;
  }

  .orbit-stage {
    width: min(100%, 34rem);
  }
}

@media (min-width: 64rem) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.45fr) minmax(18rem, 0.55fr);
  }

  .nav-shell .nav-links {
    display: flex;
  }

  .nav-shell .menu-toggle {
    display: none;
  }
}

@media (max-width: 47.99rem) {
  .hero-copy {
    order: 1;
  }

  .orbit-stage {
    order: 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  .orbit--outer,
  .orbit--middle,
  .hero-mark {
    animation: none;
  }
}

/* About page */
.nav-shell .nav-links a[aria-current="page"] {
  color: var(--ink);
}

.nav-shell .nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-shell .mobile-menu a[aria-current="page"],
.footer-links a[aria-current="page"] {
  color: var(--orange-dark);
}

.about-main,
.about-hero,
.about-focus {
  background: var(--surface);
}

.about-hero {
  padding-block: clamp(144px, 15vw, 210px) clamp(72px, 8vw, 112px);
}

.about-shell {
  max-width: 980px;
}

.about-hero h1 {
  margin-top: 24px;
  font-size: clamp(4.2rem, 10vw, 8.8rem);
  font-weight: 500;
  letter-spacing: -0.078em;
  line-height: 0.84;
}

.about-lede {
  max-width: 790px;
  margin-top: clamp(30px, 4vw, 48px);
  color: var(--muted);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  line-height: 1.58;
}

.about-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
  margin-top: 34px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 500;
  list-style: none;
}

.about-meta li {
  display: inline-flex;
  align-items: center;
}

.about-meta li + li::before {
  margin-inline: 12px;
  color: var(--orange);
  content: "·";
}

.about-meta a {
  border-bottom: 1px solid currentColor;
  color: var(--ink);
}

.about-story {
  background: var(--paper);
}

.about-story-grid {
  display: grid;
  gap: 42px;
}

.about-prose {
  display: grid;
  max-width: 760px;
  gap: 22px;
}

.about-prose > p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.about-prose .about-prose-lead {
  color: var(--ink-soft);
  font-size: clamp(1.1rem, 1.6vw, 1.28rem);
}

.about-principle {
  display: grid;
  gap: 18px;
  margin-top: clamp(34px, 5vw, 64px);
  padding-top: clamp(32px, 4vw, 50px);
  border-top: 1px solid var(--line);
}

.about-section-label {
  color: var(--orange-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.about-principle h2 {
  max-width: 680px;
  font-size: clamp(2.5rem, 5.3vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.about-principle > p:last-child {
  max-width: 650px;
  color: var(--muted);
}

.about-focus-grid {
  display: grid;
  gap: 14px;
}

.about-focus-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.about-focus-card > span {
  margin-bottom: auto;
  color: var(--orange-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.about-focus-card h3 {
  max-width: 560px;
  margin-top: 54px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1;
}

.about-focus-card > p {
  max-width: 590px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.about-focus-card .text-link {
  margin-top: 26px;
}

.about-quote {
  background: var(--paper);
}

.about-quote-inner {
  display: grid;
  max-width: 1080px;
  justify-items: start;
}

.about-quote blockquote {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(2.8rem, 6.8vw, 6.4rem);
  font-weight: 500;
  letter-spacing: -0.071em;
  line-height: 0.98;
}

.about-quote-inner > p {
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.78rem;
}

.about-quote-inner .button {
  margin-top: 40px;
}

@media (min-width: 48rem) {
  .about-story-grid {
    grid-template-columns: minmax(150px, 0.3fr) minmax(0, 0.7fr);
    gap: clamp(50px, 8vw, 120px);
  }

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

@media (max-width: 35.99rem) {
  .about-hero h1 {
    font-size: clamp(4rem, 24vw, 6rem);
  }

  .about-meta {
    display: grid;
    gap: 8px;
  }

  .about-meta li + li::before {
    display: none;
  }

  .about-focus-card {
    min-height: 330px;
  }

  .about-quote-inner .button {
    width: 100%;
  }
}

/* Language switch and footer blog */
.language-switch {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgb(21 21 21 / 9%);
  border-radius: 999px;
  background: rgb(255 255 255 / 72%);
  font-size: 0.64rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  backdrop-filter: blur(10px);
}

.language-switch a,
.language-switch span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
}

.language-switch a {
  color: var(--muted);
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.language-switch a:hover {
  background: var(--mist-light);
  color: var(--ink);
}

.language-switch [aria-current="true"] {
  background: var(--ink);
  color: var(--white);
}

.footer-blog {
  display: grid;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.footer-blog > span {
  color: var(--orange-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-blog > a {
  display: grid;
  gap: 8px;
  max-width: 360px;
}

.footer-blog strong {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.footer-blog small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
}

.footer-blog a:hover small {
  color: var(--orange-dark);
}

@media (min-width: 640px) {
  .footer-main {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    align-items: start;
  }

  .footer-main > .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .footer-main > p {
    grid-column: 1;
    grid-row: 2;
  }

  .footer-links {
    grid-column: 2;
    grid-row: 1 / span 2;
    justify-content: flex-end;
  }

  .footer-blog {
    grid-column: 1 / -1;
    grid-row: 3;
  }
}

@media (min-width: 980px) {
  .footer-main {
    grid-template-columns: minmax(0, 0.9fr) minmax(180px, 0.55fr) minmax(300px, 1fr);
    gap: clamp(32px, 5vw, 72px);
  }

  .footer-links {
    display: grid;
    grid-column: 2;
    grid-row: 1 / span 2;
    align-content: start;
    justify-content: start;
    gap: 10px;
  }

  .footer-blog {
    grid-column: 3;
    grid-row: 1 / span 2;
    padding-top: 0;
    padding-left: clamp(24px, 3vw, 44px);
    border-top: 0;
    border-left: 1px solid var(--line);
  }
}

@media (max-width: 47.99rem) {
  .nav-shell .availability {
    display: none;
  }
}

/* Blog landing */
.blog-main,
.blog-hero {
  background: var(--surface);
}

.blog-hero {
  padding-block: clamp(150px, 15vw, 220px) clamp(76px, 9vw, 124px);
}

.blog-shell {
  max-width: 1080px;
}

.blog-hero h1 {
  max-width: 920px;
  margin-top: 24px;
  font-size: clamp(4rem, 9.5vw, 8.6rem);
  font-weight: 500;
  letter-spacing: -0.078em;
  line-height: 0.88;
}

.blog-lede {
  max-width: 720px;
  margin-top: clamp(30px, 4vw, 48px);
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.6;
}

.blog-index {
  background: var(--paper);
}

.blog-empty {
  display: grid;
  gap: clamp(44px, 7vw, 100px);
  padding: clamp(30px, 5vw, 64px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.blog-empty > div:first-child {
  display: grid;
  gap: 20px;
}

.blog-empty h2 {
  max-width: 700px;
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.068em;
  line-height: 0.98;
}

.blog-empty-copy {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 26px;
}

.blog-empty-copy > p {
  max-width: 560px;
  color: var(--muted);
}

.blog-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.blog-topics li {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 600;
}

.footer-blog a[aria-current="page"] strong {
  color: var(--orange-dark);
}

.about-band-link {
  margin-top: 20px;
}

@media (min-width: 48rem) {
  .blog-empty {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: start;
  }
}

@media (max-width: 35.99rem) {
  .blog-hero h1 {
    font-size: clamp(3.7rem, 19vw, 5.2rem);
  }

  .blog-empty {
    border-radius: var(--radius-md);
  }
}

/* Service tags on the non-featured service cards */
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  list-style: none;
}

.service-tags li {
  padding: 6px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 600;
}

/* Work section */
.work {
  background: var(--soft);
}

.work-grid {
  display: grid;
  gap: 16px;
}

.work-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 3vw, 34px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  transition:
    transform 240ms var(--ease),
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.work-card:hover {
  transform: translateY(-4px);
  border-color: #c9c8c0;
  box-shadow: var(--shadow);
}

.work-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
}

.work-meta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.work-meta::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.work-badge {
  flex-shrink: 0;
  padding: 6px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.work-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.work-card > p,
.work-body > p {
  max-width: 44rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.work-card .text-link {
  margin-top: 22px;
}

.work-visual {
  margin-top: 24px;
}

.work-card--case .work-visual {
  order: -1;
  margin-top: 0;
  margin-bottom: 24px;
}

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

.work-card--featured .work-visual {
  margin-top: 26px;
}

/* Shared canvas for the CSS mock-ups */
.work-canvas {
  position: relative;
  min-height: 200px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-md) - 6px);
  background: var(--paper);
}

/* Bronwijzer chat mock-up */
.chat-mock {
  display: grid;
  gap: 12px;
  padding: clamp(16px, 2vw, 22px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.chat-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.chat-head img {
  width: 26px;
  height: 26px;
}

.chat-head strong {
  font-size: 0.85rem;
  font-weight: 600;
}

.chat-head span {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
}

.chat-head span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgb(39 188 91 / 14%);
  content: "";
}

.chat-bubble {
  max-width: 86%;
  padding: 12px 15px;
  font-size: 0.87rem;
  line-height: 1.5;
}

.chat-bubble--user {
  margin-left: auto;
  border-radius: 16px 16px 5px 16px;
  background: var(--ink);
  color: var(--surface);
}

.chat-bubble--bot {
  border: 1px solid var(--line);
  border-radius: 16px 16px 16px 5px;
  background: var(--surface);
}

.chat-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.chat-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border: 1px solid rgb(254 110 0 / 30%);
  border-radius: 999px;
  background: rgb(254 110 0 / 7%);
  color: var(--orange-dark);
  font-size: 0.67rem;
  font-weight: 600;
}

.chat-source::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

/* Camino trail visual */
.camino-path {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.camino-km {
  position: absolute;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.camino-km--start {
  bottom: 12px;
  left: 12px;
}

.camino-km--end {
  top: 12px;
  right: 14px;
  color: var(--ink);
}

.camino-chip {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgb(255 255 255 / 82%);
  color: var(--ink-soft);
  font-size: 0.66rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.camino-chip::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

/* LLM dashboard visual */
.dash {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
}

.dash-head {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dash-bars {
  display: flex;
  flex: 1;
  align-items: flex-end;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.dash-bars span {
  flex: 1;
  height: var(--h);
  border-radius: 6px 6px 0 0;
  background: var(--ink);
}

.dash-bars span:nth-child(even) {
  background: #c9c8c0;
}

.dash-bars span:nth-child(3) {
  background: var(--orange);
}

.dash-legend {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.72rem;
}

.dash-legend strong {
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 600;
}

/* Compact "over mij" band on the homepage */
.about-band {
  background: var(--paper);
}

.about-band-inner {
  display: grid;
  gap: 26px;
}

.about-band h2 {
  max-width: 20ch;
  font-size: clamp(2.3rem, 4.6vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.062em;
  line-height: 1;
}

.about-band p {
  max-width: 46rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.62;
}

.about-band-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  list-style: none;
}

.about-band-meta li {
  display: inline-flex;
  align-items: center;
}

.about-band-meta li + li::before {
  margin-inline: 12px;
  color: var(--orange);
  content: "\00b7";
}

@media (min-width: 760px) {
  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 820px) {
  .work-card--featured {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
    align-items: center;
    gap: clamp(28px, 4vw, 56px);
  }

  .work-card--featured .work-visual {
    margin-top: 0;
  }

  .about-band-inner {
    grid-template-columns: minmax(0, 0.55fr) minmax(0, 0.45fr);
    align-items: end;
    gap: clamp(40px, 6vw, 90px);
  }

  .about-band h2 {
    grid-row: span 2;
  }
}

.work-card--reverse .work-visual {
  margin-top: 0;
  margin-bottom: 24px;
}

.work-card--featured .work-canvas {
  min-height: clamp(220px, 22vw, 300px);
}

@media (min-width: 820px) {
  .work-card--reverse {
    grid-template-columns: minmax(320px, 1.08fr) minmax(0, 0.92fr);
  }

  .work-card--reverse .work-visual {
    margin-bottom: 0;
  }
}
