@font-face {
  font-family: Inter;
  src: url("/assets/fonts/inter-greek.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  unicode-range: U+0370-03FF;
}
@font-face {
  font-family: Inter;
  src: url("/assets/fonts/inter-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
:root {
  --bg: #0b0b0d;
  --surface: #141416;
  --ink: #f5f5f5;
  --muted: #b2b2b7;
  --line: #303034;
  --red: #ce1728;
  --red-hover: #e02738;
  --paper: #ececeb;
  --dark: #18181b;
  --max: 1280px;
  --gutter: 40px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  color-scheme: dark;
}
* {
  box-sizing: border-box;
  letter-spacing: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font:
    400 16px/1.65 Inter,
    "Segoe UI",
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
textarea,
select,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: wait;
  opacity: 0.6;
}
button,
a,
summary,
input,
textarea,
select {
  outline-offset: 5px;
}
:focus-visible {
  outline: 2px solid #ef4c5b;
}
::selection {
  background: var(--red);
  color: white;
}
h1,
h2,
h3,
h4,
p,
figure,
dl {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 600;
  line-height: 1.16;
  text-wrap: balance;
}
h1 {
  font-size: 56px;
}
h2 {
  font-size: 42px;
}
h3 {
  font-size: 23px;
}
p {
  color: var(--muted);
}
section {
  scroll-margin-top: 110px;
}
.icon {
  width: 20px;
  height: 20px;
  flex: none;
  filter: invert(1);
  display: inline-block;
  vertical-align: middle;
}
.svc-main,
.svc-footer,
.svc-form-wrap {
  width: min(var(--max), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  left: 20px;
  top: -70px;
  z-index: 1000;
  padding: 12px 20px;
  background: white;
  color: black;
}
.skip-link:focus {
  top: 12px;
}
.svc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 88px;
  padding: 18px max(var(--gutter), calc((100% - var(--max)) / 2));
  position: sticky;
  top: 0;
  z-index: 100;
  background: #0b0b0df2;
  border-bottom: 1px solid #ffffff12;
  backdrop-filter: blur(16px);
  transition: box-shadow 0.3s;
}
.svc-header.is-scrolled {
  box-shadow: 0 10px 30px #0003;
}
.svc-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: none;
  line-height: 1;
}
.svc-brand > img {
  width: 40px;
  height: 40px;
  border-radius: 0;
}
.svc-brand > span {
  display: grid;
  gap: 6px;
}
.svc-brand strong {
  font-size: 17px;
  font-weight: 800;
}
.svc-brand small {
  font-size: 9px;
  font-weight: 500;
  color: #b4b4b8;
}
.svc-nav {
  display: flex;
  gap: 23px;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
}
.svc-nav a {
  position: relative;
  white-space: nowrap;
  padding-block: 11px;
  color: #c8c8cc;
  transition: color 0.2s;
}
.svc-nav a::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.svc-nav a:hover,
.svc-nav a.active {
  color: #fff;
}
.svc-nav a:hover::after,
.svc-nav a.active::after {
  transform: scaleX(1);
}
.svc-header-cta,
.svc-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid transparent;
  border-radius: 3px;
  min-height: 52px;
  padding: 13px 22px;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.4;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.3s var(--ease);
  text-align: left;
}
.svc-header-cta {
  font-size: 12px;
  min-height: 44px;
  padding: 10px 16px;
  gap: 12px;
  white-space: nowrap;
}
.svc-header-cta,
.svc-button-primary {
  background: var(--red);
  color: #fff;
}
.svc-header-cta:hover,
.svc-button-primary:hover {
  background: var(--red-hover);
}
.svc-button .icon,
.svc-header-cta .icon,
.svc-text-link .icon {
  transition: transform 0.3s var(--ease);
}
.svc-button:hover .icon,
.svc-header-cta:hover .icon,
.svc-text-link:hover .icon {
  transform: translate(3px, -3px);
}
.svc-button-secondary {
  border-color: #ffffff55;
  background: #11111470;
  color: white;
}
.svc-button-secondary:hover {
  background: #29292d;
  border-color: #777;
}
.svc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.svc-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 3px;
}
.svc-kicker,
.offer-label,
.service-area {
  display: block;
  font-size: 11px;
  line-height: 1.5;
  font-weight: 600;
  text-transform: uppercase;
  color: #e65865;
}
.svc-kicker {
  margin-bottom: 22px;
}
.svc-text-link {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  font-size: 13px;
  font-weight: 600;
  padding-block: 12px;
  border-bottom: 1px solid #888;
  line-height: 1.5;
}
.svc-text-link:hover {
  border-color: var(--red);
}
.connection-dot::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 9px;
  background: var(--red);
  border-radius: 50%;
  vertical-align: middle;
}

/* The hero uses a single image plane, with the vehicle exposed on the right. */
.brand-hero {
  position: relative;
  isolation: isolate;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 670px;
  display: flex;
  align-items: center;
  padding: 56px max(var(--gutter), calc((100vw - var(--max)) / 2)) 64px;
  overflow: hidden;
}
.brand-hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: hero-settle 1.6s var(--ease) both;
}
.brand-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, #0b0b0de8, #0b0b0d66 50%, transparent 80%),
    linear-gradient(0deg, #0b0b0d66, transparent 35%);
}
.brand-hero-content {
  width: 100%;
  max-width: 650px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #d3d3d6;
  font-size: 10px;
  margin-bottom: 32px;
  text-transform: uppercase;
}
.hero-eyebrow span:first-child {
  color: white;
  font-weight: 600;
}
.brand-hero h1 {
  font-size: 64px;
  font-weight: 500;
  line-height: 1.04;
  text-align: left;
  text-wrap: initial;
}
.brand-hero h1 > span {
  color: #a2a2a7;
}
.hero-description {
  font-size: 16px;
  line-height: 1.6;
  margin-top: 24px;
  color: #dedee1;
}
.brand-hero .svc-actions {
  margin-top: 26px;
}
.hero-caption {
  position: absolute;
  bottom: 30px;
  right: max(var(--gutter), calc((100vw - var(--max)) / 2));
  display: grid;
  gap: 4px;
  text-align: right;
  font:
    10px/1.7 Consolas,
    monospace;
  color: #c5c5c9;
}
.hero-caption span:last-child {
  font:
    10px/1.7 Inter,
    sans-serif;
  color: #a5a5aa;
}
.service-ribbon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 88px;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  color: #b7b7bc;
}
.service-ribbon span:first-child {
  color: #fff;
}
.service-ribbon span::before {
  content: "+";
  margin-right: 15px;
  color: var(--red);
}
.service-ribbon > a {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  border-radius: 50%;
  transform: rotate(90deg);
}
.editorial-section {
  padding-block: 104px;
}
.section-intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  margin-bottom: 48px;
}
.section-intro .svc-kicker {
  margin-top: 9px;
}
.section-intro h2 > span,
.founder-copy h2 > span,
.territory-section h2 > span,
.service-index-hero h1 > span {
  color: #88888f;
}
.section-intro p:not(.svc-kicker) {
  max-width: 640px;
  font-size: 15px;
  margin-top: 22px;
}
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.service-image-card {
  min-width: 0;
  display: block;
}
.service-image {
  position: relative;
  aspect-ratio: 1.18;
  overflow: hidden;
  background: var(--surface);
}
.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #000a, transparent 45%);
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.8s var(--ease),
    filter 0.5s;
  filter: saturate(0.8);
}
.service-image-card:hover .service-image img {
  transform: scale(1.045);
  filter: saturate(1);
}
.service-image > span {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 16px;
  bottom: 20px;
  color: #fff;
  font-size: 11px;
}
.service-card-copy {
  padding: 24px 0 18px;
  border-bottom: 1px solid var(--line);
}
.service-card-copy h3 {
  display: flex;
  gap: 20px;
  align-items: start;
  justify-content: space-between;
  font-size: 22px;
  min-height: 54px;
  margin: 12px 0 15px;
  text-wrap: initial;
}
.service-card-copy h3 .icon {
  margin-top: 2px;
  transition: transform 0.3s;
}
.service-image-card:hover h3 .icon {
  transform: translate(3px, -3px);
}
.service-card-copy p {
  font-size: 14px;
  max-width: 37ch;
}
.service-area {
  color: #a0a0a6;
  font-size: 10px;
}

.method-band {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: var(--paper);
  color: var(--dark);
  padding: 96px max(var(--gutter), calc((100vw - var(--max)) / 2));
}
.method-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.method-heading .svc-kicker {
  color: #a71321;
}
.method-heading h2 {
  font-size: 43px;
  font-weight: 500;
}
.method-heading h2 em {
  color: #ad1423;
  font-style: normal;
}
.method-heading > p:not(.svc-kicker) {
  color: #5b5b62;
  font-size: 15px;
  max-width: 43ch;
  margin: 25px 0;
}
.method-heading .svc-text-link .icon {
  filter: none;
}
.diagnostic-demo {
  color: #f4f4f6;
  background: #111114;
  border-radius: 5px;
  box-shadow: 0 20px 40px #0002;
  overflow: hidden;
  min-width: 0;
}
.demo-top,
.demo-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  font:
    10px/1.5 Consolas,
    monospace;
  padding: 17px 24px;
  border-bottom: 1px solid #303034;
  color: #b8b8c0;
}
.demo-top span:first-child {
  color: #e9e9ec;
}
.demo-label {
  padding: 24px 24px 20px;
}
.demo-label h3 {
  font-size: 19px;
  font-weight: 500;
}
.demo-label p {
  font-size: 10px;
  margin-top: 7px;
  color: #a0a0a8;
}
.demo-tabs {
  display: flex;
  gap: 6px;
  margin: 0 24px;
  border-bottom: 1px solid #37373d;
}
.demo-tabs button {
  flex: 1;
  border: 0;
  border-bottom: 2px solid transparent;
  background: none;
  color: #b7b7bf;
  padding: 12px 8px;
  font:
    11px Consolas,
    monospace;
  transition:
    background 0.2s,
    color 0.2s;
}
.demo-tabs button[aria-selected="true"] {
  border-bottom-color: #ef3345;
  color: white;
  background: #ffffff07;
}
.demo-fault {
  padding: 22px 24px 0;
  display: grid;
  gap: 5px;
}
.demo-fault > span {
  font-size: 10px;
  color: #b4b4bc;
}
.demo-fault strong {
  font:
    500 30px/1.4 Consolas,
    monospace;
  color: #ef5664;
}
.demo-graph {
  display: block;
  width: calc(100% - 48px);
  height: 94px;
  margin: 10px 24px;
  color: #e83c4c;
}
.signal-line {
  stroke-dasharray: 900;
  stroke-dashoffset: 0;
  animation: signal-draw 2.5s ease-out;
}
.demo-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 10px 24px 22px;
  gap: 14px;
}
.demo-metrics > div {
  border-left: 1px solid #33333a;
  padding-left: 12px;
}
.demo-metrics dt {
  font-size: 10px;
  color: #a6a6ae;
}
.demo-metrics dd {
  margin: 5px 0 0;
  font:
    24px/1.3 Consolas,
    monospace;
}
.demo-metrics small {
  font-size: 12px;
  color: #b4b4bc;
}
.demo-bottom {
  border-top: 1px solid #303034;
  border-bottom: 0;
  font:
    10px Inter,
    sans-serif;
}
.demo-bottom > span:last-child {
  display: flex;
  align-items: center;
  gap: 12px;
}
.demo-bottom .icon {
  width: 14px;
  height: 14px;
}
.process-sequence {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  border-top: 1px solid #bfbfc1;
  padding-top: 28px;
}
.process-sequence article {
  min-width: 0;
}
.process-sequence article > span {
  font:
    11px Consolas,
    monospace;
  color: #aa1725;
}
.process-sequence h3 {
  font-size: 19px;
  margin: 17px 0 10px;
}
.process-sequence p {
  font-size: 13px;
  color: #5e5e65;
  max-width: 28ch;
}

.founder-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
  padding-block: 110px;
}
.founder-art {
  position: relative;
  aspect-ratio: 0.93;
  overflow: hidden;
}
.founder-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}
.founder-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #09090bee, transparent 65%);
}
.founder-art > span {
  position: absolute;
  z-index: 1;
  bottom: 36px;
  left: 32px;
  font-size: 40px;
  line-height: 1.12;
  font-weight: 600;
}
.founder-art b {
  color: #e23748;
  font-weight: 600;
}
.founder-copy h2 {
  font-size: 35px;
  margin-bottom: 24px;
}
.founder-copy > p:not(.svc-kicker) {
  font-size: 14px;
  margin-bottom: 18px;
}
.founder-copy .svc-text-link {
  margin-top: 8px;
}
.signature {
  font-size: 18px;
  margin-top: 40px;
  font-weight: 500;
}
.signature span {
  display: block;
  font:
    9px Consolas,
    monospace;
  color: #8e8e95;
  margin-top: 6px;
}
.territory-section {
  padding: 60px 0 80px;
  border-block: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
}
.territory-section h2 {
  font-size: 34px;
}
.territory-rows > div {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px 18px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.territory-rows > div:first-child {
  padding-top: 0;
}
.territory-rows h3 {
  font-size: 18px;
}
.territory-rows p {
  grid-column: 2;
  font-size: 13px;
}
.territory-rows .icon {
  width: 20px;
  height: 20px;
}
.faq-section {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 90px;
  padding-block: 100px;
}
.faq-section h2 {
  font-size: 32px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
.faq-list summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px 0;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary .icon {
  transition: transform 0.3s;
}
.faq-list details[open] summary .icon {
  transform: rotate(45deg);
}
.faq-list details p {
  font-size: 14px;
  padding: 0 44px 24px 0;
}
.closing-cta {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 90px max(var(--gutter), calc((100vw - var(--max)) / 2));
  background: #19191c;
  border-top: 1px solid #333337;
}
.closing-cta h2 {
  font-size: 58px;
  font-weight: 500;
}
.closing-cta h2 > span {
  color: #86868e;
}
.closing-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 40px;
}
.closing-bottom p {
  font-size: 14px;
}
.closing-bottom .svc-actions {
  margin: 0;
}
.svc-footer {
  padding: 70px 0 36px;
}
.footer-wordmark {
  font-size: 155px;
  line-height: 0.9;
  font-weight: 700;
  color: #2b2b2f;
  border-bottom: 1px solid var(--line);
  padding-bottom: 40px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  user-select: none;
}
.footer-wordmark > span {
  font-size: 15px;
  line-height: 1.4;
  color: #626269;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 100px;
  padding: 48px 0;
}
.footer-grid .svc-brand {
  margin-bottom: 24px;
}
.footer-grid p {
  font-size: 12px;
  max-width: 46ch;
  margin-top: 5px;
}
.footer-phone {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  font-size: 20px;
  margin-top: 20px;
}
.footer-grid nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
  align-content: start;
  font-size: 13px;
  color: #c7c7cc;
}
.footer-grid nav a:hover {
  color: white;
}
.footer-base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 26px;
  font-size: 10px;
  color: #93939a;
}
.footer-base a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-base .icon {
  width: 14px;
  height: 14px;
}
.svc-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  min-height: 48px;
  background: #1a1a1e;
  border: 1px solid #59595f;
  border-radius: 3px;
  box-shadow: 0 8px 24px #0005;
  font-size: 12px;
  transition:
    opacity 0.25s,
    transform 0.25s;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}
.show-whatsapp .svc-whatsapp {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.svc-whatsapp:focus {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

/* Service pages share a concise index and detailed, independently linkable views. */
.service-index-hero {
  padding: 84px 0 54px;
}
.service-index-hero h1 {
  font-size: 62px;
  font-weight: 500;
}
.service-index-hero > div {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 50px;
  margin-top: 32px;
}
.service-index-hero p:not(.svc-kicker) {
  font-size: 15px;
  max-width: 57ch;
}
.service-index-hero > div > span {
  font-size: 11px;
  color: #a2a2a9;
}
.service-jump {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}
.service-jump a {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 24px 20px;
  font-size: 13px;
  transition: background 0.2s;
}
.service-jump a + a {
  border-left: 1px solid var(--line);
}
.service-jump a:hover {
  background: #19191d;
}
.service-jump a > span {
  font:
    11px Consolas,
    monospace;
  color: #e05260;
}
.service-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 76px;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.service-feature-image {
  position: sticky;
  top: 120px;
  aspect-ratio: 0.85;
  background: #161619;
  overflow: hidden;
}
.service-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-feature-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #0009, transparent 55%);
}
.service-feature-image > span {
  position: absolute;
  z-index: 1;
  bottom: 24px;
  left: 30px;
  font:
    100px/1 Inter,
    sans-serif;
  color: #ffffffb0;
  font-weight: 500;
}
.service-feature-content h2 {
  font-size: 36px;
}
.service-feature-content > p:not(.svc-kicker) {
  margin: 22px 0;
  font-size: 14px;
  max-width: 49ch;
}
.service-feature-content > .svc-text-link {
  margin-bottom: 32px;
}
.price-offer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.price-title {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  margin: 12px 0 14px;
}
.price-title h3 {
  font-size: 21px;
  font-weight: 500;
  max-width: 25ch;
}
.price-title strong {
  white-space: nowrap;
  font-size: 23px;
  line-height: 1.3;
  font-weight: 500;
}
.price-offer p {
  font-size: 13px;
  margin-bottom: 22px;
}
.price-offer .svc-button {
  font-size: 12px;
  min-height: 46px;
}
.offer-label {
  font-size: 9px;
  color: #9b9ba2;
}
.price-offer.featured {
  padding: 28px;
  background: #19191d;
  border-top: 2px solid var(--red);
}
.price-offer.featured .offer-label {
  color: #e75b69;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 50px;
}
.scope-note {
  color: #b0b0b7;
  border-left: 2px solid #6e6e75;
  padding: 4px 0 4px 20px;
  font-size: 12px;
  margin: 35px 0;
  max-width: 95ch;
}
.detail-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  position: relative;
  isolation: isolate;
  min-height: 580px;
  display: flex;
  align-items: center;
  padding: 60px max(var(--gutter), calc((100vw - var(--max)) / 2));
  overflow: hidden;
}
.detail-hero > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}
.detail-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, #0a0a0cee, #0a0a0c8c 48%, #0a0a0c15);
}
.detail-hero > div {
  max-width: 660px;
}
.detail-hero h1 {
  font-size: 64px;
  font-weight: 500;
}
.detail-hero p:not(.svc-kicker) {
  max-width: 43ch;
  color: #d1d1d7;
  font-size: 16px;
  margin: 26px 0;
}
.detail-image-label {
  position: absolute;
  bottom: 22px;
  right: 40px;
  font-size: 10px;
  color: #b7b7bd;
}
.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.capability-grid article {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.capability-grid article > span {
  font:
    11px Consolas,
    monospace;
  color: #d34957;
}
.capability-grid h3 {
  font-size: 18px;
  margin: 24px 0 12px;
}
.capability-grid p {
  font-size: 13px;
}
.listing-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  border-top: 1px solid var(--line);
  padding: 70px 0;
}
.listing-section h2 {
  font-size: 42px;
}
.listing-section p {
  font-size: 14px;
  margin-top: 22px;
}
.listing-shortcut {
  background: #18181c;
  padding: 36px;
  border-radius: 4px;
  align-self: center;
}
.listing-shortcut label {
  display: block;
  font-size: 12px;
  margin-bottom: 12px;
}
.listing-shortcut input {
  width: 100%;
  margin-bottom: 18px;
}
.listing-shortcut p {
  font-size: 11px;
}
.consult-documents {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}
.consult-documents li {
  display: flex;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
  font-size: 15px;
}
.consult-documents li:first-child {
  border-top: 1px solid var(--line);
}
.consulting-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.consulting-detail p:not(.svc-kicker) {
  margin: 26px 0;
  font-size: 15px;
}

/* Existing article, about, contact and policy routes use the same typography. */
.svc-page-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: end;
  gap: 80px;
  padding: 85px 0 64px;
  border-bottom: 1px solid var(--line);
}
.svc-page-hero h1 {
  font-size: 54px;
  font-weight: 500;
}
.svc-page-hero > p {
  font-size: 15px;
  max-width: 53ch;
}
.svc-page-hero .svc-kicker {
  font-size: 11px;
}
.svc-section {
  padding: 80px 0;
}
.svc-section-heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 35px;
  margin-bottom: 35px;
}
.svc-section-heading h2 {
  font-size: 36px;
}
.svc-section-heading > p:last-child:not(.svc-kicker) {
  grid-column: 2;
}
.svc-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 85px;
  align-items: center;
  margin-top: 70px;
}
.svc-copy-panel h2 {
  font-size: 35px;
  margin-bottom: 26px;
}
.svc-copy-panel p {
  font-size: 15px;
  margin-bottom: 20px;
}
.svc-copy-panel strong {
  color: #d9d9df;
  font-weight: 500;
}
.svc-media-panel {
  position: relative;
  margin: 0;
  aspect-ratio: 1;
  overflow: hidden;
}
.svc-media-panel > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.svc-media-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #09090bee, transparent 70%);
}
.svc-media-panel figcaption {
  position: absolute;
  z-index: 1;
  bottom: 28px;
  left: 28px;
  right: 28px;
}
.svc-media-panel figcaption > span {
  font-size: 9px;
  color: #ccc;
}
.svc-media-panel figcaption > strong {
  display: block;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 500;
  margin: 12px 0;
}
.svc-media-panel figcaption p {
  font-size: 12px;
}
.svc-service-triad {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
.svc-service-triad.svc-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.svc-card {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.svc-card > span {
  font:
    12px Consolas,
    monospace;
  color: #d24453;
}
.svc-card h3 {
  font-size: 20px;
  margin: 24px 0 16px;
}
.svc-card p {
  font-size: 13px;
}
.svc-contact-card {
  padding: 0 0 0 38px;
  border-left: 1px solid var(--line);
}
.svc-contact-card h2 {
  font-size: 18px;
  margin-bottom: 18px;
}
.svc-contact-card p {
  font-size: 14px;
  margin-top: 10px;
}
.svc-contact-card a {
  color: #eee;
}
.svc-contact-card a:hover {
  text-decoration: underline;
}
.svc-contact-card a[href^="tel:"] {
  display: inline-block;
  font-size: 25px;
  margin-top: 12px;
}
.svc-article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  padding: 60px 0 80px;
}
.svc-article-card {
  display: flex;
  flex-direction: column;
  align-items: start;
  min-width: 0;
}
.svc-article-image {
  width: 100%;
  height: 245px;
  object-fit: cover;
  margin-bottom: 24px;
}
.svc-article-card > span {
  font-size: 10px;
  color: #e15766;
  margin-bottom: 12px;
}
.svc-article-card h2 {
  font-size: 23px;
  line-height: 1.3;
}
.svc-article-card p {
  font-size: 13px;
  margin: 20px 0 25px;
}
.svc-article-card .svc-text-link {
  margin-top: auto;
}
.svc-article-visual {
  margin: 48px 0 60px;
}
.svc-article-visual img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}
.svc-article-visual figcaption {
  font-size: 10px;
  color: #97979f;
  margin-top: 10px;
}
.svc-article > section,
.svc-legal > section {
  width: min(780px, 100%);
  margin: 38px auto 0;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}
.svc-article > section h2,
.svc-legal > section h2 {
  font-size: 27px;
  margin-bottom: 20px;
}
.svc-article > section p,
.svc-legal > section p {
  font-size: 16px;
  line-height: 1.8;
}
.svc-article-footer {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  width: min(780px, 100%);
  margin: 50px auto 80px;
}
.svc-legal {
  padding-bottom: 80px;
}
.svc-process-section {
  padding: 70px 0;
}
.svc-process-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 35px;
  border-top: 1px solid var(--line);
}
.svc-process-step {
  padding-top: 25px;
}
.svc-process-step > span {
  font:
    12px Consolas,
    monospace;
  color: #d44855;
}
.svc-process-step h3 {
  font-size: 20px;
  margin: 25px 0 16px;
}
.svc-process-step p {
  font-size: 14px;
}

/* Forms are usable without scripting; step navigation is progressive enhancement. */
.svc-form-wrap {
  padding: 50px 0 90px;
}
.svc-form {
  max-width: 920px;
  margin-inline: auto;
}
.svc-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}
.svc-form label > span,
.checkbox-group > span {
  display: block;
  font-size: 12px;
  margin-bottom: 10px;
  color: #dddde2;
}
input:not([type="checkbox"]):not([type="radio"]),
textarea,
select {
  display: block;
  background: #18181c;
  border: 1px solid #404046;
  color: #f4f4f6;
  padding: 14px 16px;
  border-radius: 3px;
  min-height: 50px;
  width: 100%;
  transition: border-color 0.2s;
}
input::placeholder,
textarea::placeholder {
  color: #8d8d95;
  opacity: 1;
}
input:hover,
textarea:hover,
select:hover {
  border-color: #686870;
}
input:focus,
textarea:focus,
select:focus {
  border-color: #ce3343;
}
textarea {
  min-height: 145px;
  resize: vertical;
}
input[type="checkbox"],
input[type="radio"] {
  accent-color: var(--red);
  width: 18px;
  height: 18px;
  flex: none;
}
.full-span,
.checkbox-group,
.privacy-consent {
  grid-column: 1/-1;
}
.checkbox-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}
.checkbox-options label {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  padding: 14px;
  font-size: 12px;
  border-radius: 3px;
  cursor: pointer;
}
.checkbox-options label:has(input:checked) {
  background: #ce172818;
  border-color: #a63642;
}
.privacy-consent {
  display: flex;
  align-items: start;
  gap: 12px;
}
.privacy-consent input {
  margin: 2px 0 0;
}
.privacy-consent span {
  font-size: 12px !important;
  color: #b8b8c0 !important;
}
.privacy-consent a {
  text-decoration: underline;
}
.svc-form-actions {
  display: flex;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.form-status:empty {
  display: none;
}
.form-status {
  padding: 22px;
  margin-top: 24px;
  border-left: 2px solid #888;
  background: #19191e;
  font-size: 14px;
}
.form-status strong,
.form-status span {
  display: block;
}
.form-status span {
  margin-top: 8px;
}
.form-status[data-state="error"] {
  border-color: #e74f60;
  color: #ffccd2;
}
.form-status[data-state="success"] {
  border-color: #ccc;
  color: #fff;
}
.booking-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 90px;
  padding: 64px 0 90px;
}
.booking-aside {
  align-self: start;
  position: sticky;
  top: 125px;
}
.booking-aside h2 {
  font-size: 27px;
  margin-bottom: 20px;
}
.booking-aside p {
  font-size: 13px;
}
.booking-aside > a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  font-size: 18px;
}
.booking-summary {
  padding: 22px 0;
  margin-top: 30px;
  border-block: 1px solid var(--line);
}
.booking-summary span {
  font-size: 10px;
  color: #aaaab2;
}
.booking-summary strong {
  display: block;
  font-size: 15px;
  font-weight: 500;
  margin-top: 8px;
}
.booking-progress {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0 0 35px;
  border-bottom: 1px solid var(--line);
}
.booking-progress li {
  padding-bottom: 14px;
  position: relative;
  color: #85858f;
  font-size: 11px;
}
.booking-progress li[aria-current="step"] {
  color: #fff;
}
.booking-progress li[aria-current="step"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--red);
}
.booking-step {
  border: 0;
  padding: 0;
  margin: 0 0 32px;
  min-width: 0;
}
[hidden] {
  display: none !important;
}
.booking-form {
  scroll-margin-top: 110px;
}
.booking-step legend {
  font-size: 25px;
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 28px;
  padding: 0;
}
.booking-step .svc-form-grid {
  gap: 22px;
}
.wizard-ready .booking-step[hidden] {
  display: none;
}
.wizard-controls {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
}
.wizard-ready .wizard-controls {
  display: flex;
}
.wizard-ready .booking-step {
  margin-bottom: 0;
}
.wizard-back {
  background: none;
  border: 0;
  color: #bfbfc6;
  font-size: 13px;
  padding: 12px 0;
}
.wizard-back:disabled {
  visibility: hidden;
}
.file-note {
  font-size: 11px;
  color: #93939c;
  margin-top: 9px;
}
.attachment-list {
  font-size: 12px;
  overflow-wrap: anywhere;
  color: #d6d6dc;
  margin-top: 10px;
}

.in-view-animate {
  transition:
    opacity 0.65s var(--ease),
    transform 0.65s var(--ease);
}
.motion-ready .in-view-animate:not(.is-visible) {
  opacity: 0;
  transform: translateY(22px);
}
@keyframes hero-settle {
  from {
    transform: scale(1.035);
    opacity: 0.65;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes signal-draw {
  from {
    stroke-dashoffset: 900;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@media (min-width: 1600px) {
  .brand-hero {
    min-height: 720px;
  }
  .brand-hero h1 {
    font-size: 72px;
  }
  .brand-hero-content {
    max-width: 710px;
  }
}
@media (max-width: 1250px) {
  .svc-header {
    gap: 18px;
  }
  .svc-nav {
    gap: 14px;
    font-size: 11px;
  }
  .svc-brand strong {
    font-size: 15px;
  }
  .svc-brand > img {
    width: 34px;
    height: 34px;
  }
  .svc-header-cta {
    padding: 10px 12px;
  }
  .brand-hero h1 {
    font-size: 58px;
  }
  .footer-wordmark {
    font-size: 130px;
  }
  .method-inner {
    gap: 38px;
  }
  .service-feature {
    gap: 45px;
  }
  .founder-section {
    gap: 50px;
  }
  .founder-art > span {
    font-size: 34px;
  }
}
@media (max-width: 1080px) {
  :root {
    --gutter: 30px;
  }
  .svc-header {
    flex-wrap: wrap;
    min-height: 76px;
    padding-block: 14px;
  }
  .svc-brand strong {
    font-size: 17px;
  }
  .svc-brand > img {
    width: 38px;
    height: 38px;
  }
  .svc-menu-toggle {
    display: block;
    margin-left: auto;
    order: 2;
  }
  .svc-header-cta {
    margin-left: auto;
    order: 1;
  }
  .svc-nav {
    display: none;
    order: 3;
    flex: 1 0 100%;
    padding: 14px 0;
    gap: 2px;
  }
  .svc-nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .svc-nav a {
    padding: 14px;
    font-size: 14px;
  }
  .svc-nav a::after {
    display: none;
  }
  .svc-nav a.active {
    border-left: 2px solid var(--red);
    background: #ffffff05;
  }
  .brand-hero {
    min-height: 650px;
  }
  .brand-hero h1 {
    font-size: 55px;
  }
  .hero-eyebrow {
    flex-wrap: wrap;
    gap: 10px 20px;
  }
  .hero-caption {
    display: grid;
    top: 18px;
    bottom: auto;
  }
  .hero-caption span:first-child {
    display: none;
  }
  .section-intro {
    grid-template-columns: 1fr 2fr;
    gap: 25px;
  }
  .method-heading h2 {
    font-size: 34px;
  }
  .founder-copy h2 {
    font-size: 30px;
  }
  .territory-section {
    gap: 40px;
  }
  .territory-section h2 {
    font-size: 30px;
  }
  .faq-section {
    gap: 40px;
  }
  .closing-cta h2 {
    font-size: 47px;
  }
  .footer-wordmark {
    font-size: 110px;
  }
  .footer-wordmark > span {
    font-size: 12px;
  }
  .svc-page-hero {
    gap: 45px;
  }
  .svc-page-hero h1 {
    font-size: 42px;
  }
  .svc-service-triad.svc-four {
    grid-template-columns: repeat(2, 1fr);
  }
  .price-title {
    flex-direction: column;
    gap: 10px;
  }
  .service-feature-image {
    aspect-ratio: 0.65;
  }
  .booking-layout {
    grid-template-columns: 240px 1fr;
    gap: 40px;
  }
  .service-index-hero h1 {
    font-size: 50px;
  }
  .service-jump a {
    padding: 20px 12px;
    font-size: 11px;
    gap: 10px;
  }
  .service-jump .icon {
    width: 16px;
  }
  .capability-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .detail-hero h1 {
    font-size: 56px;
  }
  .listing-section,
  .consulting-detail {
    gap: 45px;
  }
  .svc-article-image {
    height: 200px;
  }
}
@media (max-width: 800px) {
  h2 {
    font-size: 34px;
  }
  .brand-hero {
    min-height: 620px;
  }
  .brand-hero-image {
    object-position: 65% center;
  }
  .brand-hero::before {
    background: linear-gradient(90deg, #09090ce8, #09090c88 60%, #09090c33);
  }
  .brand-hero h1 {
    font-size: 50px;
  }
  .brand-hero-content {
    max-width: 520px;
  }
  .service-ribbon {
    font-size: 12px;
    gap: 10px;
  }
  .service-ribbon span::before {
    margin-right: 7px;
  }
  .section-intro {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .section-intro .svc-kicker {
    margin: 0 0 18px;
  }
  .service-cards {
    gap: 16px;
  }
  .service-card-copy h3 {
    font-size: 18px;
  }
  .service-image {
    aspect-ratio: 0.9;
  }
  .service-image > span {
    font-size: 9px;
    left: 12px;
    bottom: 12px;
  }
  .service-card-copy p {
    font-size: 12px;
  }
  .method-inner {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .method-heading {
    max-width: 620px;
  }
  .method-heading > p:not(.svc-kicker) {
    max-width: 60ch;
  }
  .diagnostic-demo {
    width: 100%;
    max-width: 620px;
  }
  .process-sequence {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .founder-section {
    gap: 35px;
  }
  .founder-art > span {
    font-size: 27px;
    left: 22px;
    bottom: 22px;
  }
  .founder-copy h2 {
    font-size: 26px;
  }
  .founder-copy > p:not(.svc-kicker) {
    font-size: 13px;
  }
  .territory-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .territory-rows {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  .territory-rows > div {
    padding: 20px 0;
  }
  .territory-rows > div:first-child {
    padding-top: 20px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .closing-bottom {
    flex-direction: column;
    align-items: start;
    gap: 25px;
  }
  .footer-wordmark {
    font-size: 85px;
  }
  .footer-grid {
    gap: 40px;
  }
  .svc-page-hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 60px 0 44px;
  }
  .svc-about-grid {
    gap: 35px;
  }
  .svc-contact-card {
    padding: 22px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .svc-article-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-index-hero > div {
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }
  .service-index-hero h1 {
    font-size: 45px;
  }
  .service-jump {
    grid-template-columns: 1fr;
  }
  .service-jump a {
    padding: 17px 0;
    font-size: 13px;
    justify-content: start;
  }
  .service-jump a .icon {
    margin-left: auto;
  }
  .service-jump a + a {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .service-feature {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .service-feature-image {
    position: relative;
    top: auto;
    aspect-ratio: 1.8;
  }
  .service-feature-image > span {
    font-size: 70px;
  }
  .service-feature-content {
    max-width: 650px;
  }
  .price-title {
    flex-direction: row;
  }
  .price-grid {
    gap: 28px;
  }
  .booking-layout {
    grid-template-columns: 1fr;
  }
  .booking-aside {
    position: static;
    display: none;
  }
  .listing-section,
  .consulting-detail {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .detail-hero {
    min-height: 510px;
  }
  .detail-hero h1 {
    font-size: 49px;
  }
  .svc-section-heading {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .svc-section-heading h2 {
    font-size: 32px;
  }
  .svc-process-line {
    grid-template-columns: repeat(2, 1fr);
  }
  .svc-article-visual img {
    height: 340px;
  }
}
@media (max-width: 540px) {
  :root {
    --gutter: 20px;
  }
  body {
    font-size: 15px;
  }
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 30px;
  }
  h3 {
    font-size: 21px;
  }
  .svc-header {
    min-height: 70px;
    padding-block: 12px;
    gap: 12px;
  }
  .svc-brand {
    gap: 9px;
  }
  .svc-brand strong {
    font-size: 15px;
  }
  .svc-brand small {
    font-size: 8px;
  }
  .svc-brand > img {
    width: 34px;
    height: 34px;
  }
  .svc-header-cta {
    display: none;
  }
  .svc-menu-toggle {
    width: 42px;
    height: 42px;
    padding: 10px;
  }
  .svc-nav {
    max-height: calc(100dvh - 100px);
    overflow-y: auto;
  }
  .brand-hero {
    padding: 235px var(--gutter) 34px;
    min-height: 0;
    align-items: end;
  }
  .brand-hero-image {
    height: 460px;
    object-position: 74% top;
  }
  .brand-hero::before {
    background: linear-gradient(
      0deg,
      #0b0b0d 10%,
      #0b0b0dee 31%,
      #0b0b0d66 65%,
      #0b0b0d08
    );
  }
  .hero-eyebrow {
    font-size: 8px;
    gap: 7px 12px;
    margin-bottom: 20px;
  }
  .brand-hero h1 {
    font-size: 40px;
    line-height: 1.04;
  }
  .brand-hero h1 > br:nth-child(2) {
    display: none;
  }
  .hero-description {
    font-size: 13px;
    margin-top: 20px;
  }
  .brand-hero .svc-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 24px;
  }
  .svc-button {
    padding: 13px 16px;
    font-size: 12px;
    min-height: 50px;
    gap: 15px;
  }
  .brand-hero .svc-button {
    font-size: 10px;
    gap: 8px;
    padding: 12px;
  }
  .brand-hero .svc-button .icon {
    width: 16px;
    height: 16px;
  }
  .service-ribbon {
    min-height: 65px;
    flex-wrap: wrap;
    gap: 6px 10px;
    padding: 15px 0;
    font-size: 10px;
  }
  .service-ribbon span::before {
    margin-right: 6px;
  }
  .service-ribbon > a {
    display: none;
  }
  .editorial-section {
    padding: 60px 0;
  }
  .section-intro {
    margin-bottom: 28px;
  }
  .section-intro h2 {
    font-size: 31px;
  }
  .section-intro p:not(.svc-kicker) {
    font-size: 13px;
    margin-top: 18px;
  }
  .svc-kicker {
    font-size: 9px;
    margin-bottom: 18px;
  }
  .service-cards {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .service-image {
    aspect-ratio: 1.45;
  }
  .service-image > span {
    font-size: 10px;
    left: 18px;
    bottom: 16px;
  }
  .service-card-copy {
    padding: 20px 0;
  }
  .service-card-copy h3 {
    font-size: 24px;
    min-height: 0;
    margin: 10px 0 12px;
  }
  .service-card-copy p {
    font-size: 13px;
    max-width: 45ch;
  }
  .method-band {
    padding: 58px var(--gutter);
  }
  .method-heading h2 {
    font-size: 32px;
  }
  .method-heading > p:not(.svc-kicker) {
    font-size: 13px;
  }
  .method-heading .svc-text-link {
    font-size: 12px;
  }
  .method-inner {
    gap: 32px;
  }
  .demo-label {
    padding: 22px 18px 16px;
  }
  .demo-label h3 {
    font-size: 17px;
  }
  .demo-label p {
    font-size: 9px;
  }
  .demo-top,
  .demo-bottom {
    padding: 14px 18px;
    font-size: 9px;
  }
  .demo-top {
    font-family: Consolas, monospace;
  }
  .demo-tabs {
    margin: 0 18px;
  }
  .demo-fault {
    padding: 20px 18px 0;
  }
  .demo-graph {
    width: calc(100% - 36px);
    margin-inline: 18px;
    height: 82px;
  }
  .demo-metrics {
    padding: 6px 18px 20px;
    gap: 10px;
  }
  .demo-metrics dd {
    font-size: 21px;
  }
  .demo-metrics dt {
    font-size: 9px;
  }
  .demo-bottom > span:last-child {
    gap: 8px;
  }
  .demo-bottom .icon {
    width: 12px;
  }
  .process-sequence {
    gap: 28px 22px;
  }
  .process-sequence h3 {
    font-size: 18px;
    margin-top: 12px;
  }
  .process-sequence p {
    font-size: 12px;
  }
  .founder-section {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 60px 0;
  }
  .founder-art {
    aspect-ratio: 1.15;
  }
  .founder-art > span {
    font-size: 34px;
  }
  .founder-copy h2 {
    font-size: 31px;
  }
  .founder-copy > p:not(.svc-kicker) {
    font-size: 13px;
  }
  .signature {
    margin-top: 28px;
  }
  .territory-section {
    padding: 45px 0;
  }
  .territory-section h2 {
    font-size: 28px;
  }
  .territory-rows {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .territory-rows h3 {
    font-size: 17px;
  }
  .territory-rows p {
    font-size: 12px;
  }
  .faq-section {
    padding: 60px 0;
  }
  .faq-section h2 {
    font-size: 29px;
  }
  .faq-list summary {
    font-size: 13px;
    padding: 21px 0;
    gap: 20px;
  }
  .faq-list details p {
    font-size: 13px;
    padding-right: 15px;
  }
  .closing-cta {
    padding: 55px var(--gutter);
  }
  .closing-cta h2 {
    font-size: 34px;
  }
  .closing-bottom {
    margin-top: 25px;
    gap: 24px;
  }
  .closing-bottom p {
    font-size: 13px;
  }
  .closing-bottom .svc-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .closing-bottom .svc-button {
    gap: 10px;
    font-size: 11px;
    padding: 12px;
  }
  .svc-footer {
    padding: 42px 0 88px;
  }
  .footer-wordmark {
    font-size: 52px;
    line-height: 1;
    padding-bottom: 24px;
    display: block;
  }
  .footer-wordmark > span {
    display: block;
    font-size: 10px;
    margin-top: 10px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 30px 0;
  }
  .footer-grid .svc-brand {
    display: none;
  }
  .footer-grid p {
    font-size: 11px;
  }
  .footer-phone {
    font-size: 21px;
  }
  .footer-grid nav {
    font-size: 12px;
    gap: 14px 24px;
  }
  .footer-base {
    flex-wrap: wrap;
    gap: 15px;
    font-size: 9px;
  }
  .footer-base > span:nth-child(2) {
    display: none;
  }
  .svc-whatsapp {
    right: 16px;
    bottom: 16px;
    padding: 12px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    justify-content: center;
  }
  .svc-whatsapp span {
    display: none;
  }
  .service-index-hero {
    padding: 50px 0 35px;
  }
  .service-index-hero h1 {
    font-size: 36px;
  }
  .service-index-hero > div {
    margin-top: 24px;
  }
  .service-index-hero p:not(.svc-kicker) {
    font-size: 13px;
  }
  .service-feature {
    gap: 26px;
  }
  .service-feature-content h2 {
    font-size: 31px;
  }
  .service-feature-image {
    aspect-ratio: 1.2;
  }
  .service-feature-image > span {
    font-size: 68px;
    left: 20px;
    bottom: 20px;
  }
  .service-feature-content > p:not(.svc-kicker) {
    font-size: 13px;
  }
  .price-title {
    gap: 20px;
  }
  .price-title h3 {
    font-size: 19px;
  }
  .price-title strong {
    font-size: 21px;
  }
  .price-offer.featured {
    padding: 24px 20px;
  }
  .price-offer p {
    font-size: 12px;
  }
  .offer-label {
    font-size: 8px;
  }
  .price-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .scope-note {
    font-size: 11px;
    margin: 25px 0;
    padding-left: 16px;
  }
  .detail-hero {
    padding: 230px var(--gutter) 44px;
    min-height: 0;
    align-items: end;
  }
  .detail-hero > img {
    height: 360px;
    object-position: 65% top;
  }
  .detail-hero::after {
    background: linear-gradient(
      0deg,
      #0b0b0d 5%,
      #0b0b0dee 28%,
      #0b0b0d6b 68%,
      transparent
    );
  }
  .detail-hero h1 {
    font-size: 39px;
  }
  .detail-hero p:not(.svc-kicker) {
    font-size: 14px;
    margin: 20px 0;
  }
  .detail-image-label {
    top: 18px;
    bottom: auto;
    right: 20px;
    font-size: 9px;
  }
  .capability-grid article {
    padding: 22px 16px;
  }
  .capability-grid h3 {
    font-size: 16px;
    margin-top: 18px;
  }
  .capability-grid p {
    font-size: 12px;
  }
  .listing-section {
    padding: 45px 0;
  }
  .listing-section h2 {
    font-size: 31px;
  }
  .listing-shortcut {
    padding: 24px 20px;
  }
  .listing-shortcut .svc-button {
    width: 100%;
  }
  .consulting-detail h2 {
    font-size: 30px;
  }
  .consult-documents li {
    font-size: 13px;
    padding: 22px 0;
  }
  .svc-page-hero {
    padding: 48px 0 35px;
    gap: 24px;
  }
  .svc-page-hero h1 {
    font-size: 35px;
  }
  .svc-page-hero > p {
    font-size: 13px;
  }
  .svc-about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 45px;
  }
  .svc-copy-panel h2 {
    font-size: 29px;
  }
  .svc-copy-panel p {
    font-size: 13px;
  }
  .svc-section {
    padding: 50px 0;
  }
  .svc-section-heading h2 {
    font-size: 29px;
  }
  .svc-service-triad,
  .svc-service-triad.svc-four {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
  .svc-card h3 {
    font-size: 18px;
    margin-top: 18px;
  }
  .svc-card p {
    font-size: 12px;
  }
  .svc-contact-card a[href^="tel:"] {
    font-size: 24px;
  }
  .svc-contact-card p {
    font-size: 13px;
  }
  .svc-article-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 35px 0 55px;
  }
  .svc-article-image {
    height: 230px;
    margin-bottom: 18px;
  }
  .svc-article-card h2 {
    font-size: 24px;
  }
  .svc-article-visual {
    margin: 30px 0 40px;
  }
  .svc-article-visual img {
    height: 270px;
  }
  .svc-article > section h2,
  .svc-legal > section h2 {
    font-size: 24px;
  }
  .svc-article > section p,
  .svc-legal > section p {
    font-size: 14px;
  }
  .svc-article-footer {
    display: grid;
    margin-bottom: 50px;
  }
  .svc-process-line {
    gap: 28px;
  }
  .svc-process-step h3 {
    font-size: 18px;
    margin-top: 18px;
  }
  .svc-process-step p {
    font-size: 12px;
  }
  .svc-form-wrap {
    padding: 35px 0 65px;
  }
  .svc-form-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .svc-form label > span {
    font-size: 12px;
  }
  .checkbox-options {
    grid-template-columns: 1fr;
  }
  .checkbox-options label {
    font-size: 12px;
  }
  .booking-layout {
    padding: 35px 0 60px;
    gap: 0;
  }
  .booking-progress {
    gap: 14px;
    margin-bottom: 28px;
  }
  .booking-progress li {
    font-size: 10px;
  }
  .booking-step legend {
    font-size: 23px;
  }
  .booking-step .svc-form-grid {
    gap: 22px;
  }
  .svc-form-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 24px;
  }
  .wizard-controls {
    margin-top: 25px;
  }
  .svc-form .svc-button {
    font-size: 12px;
  }
  input:not([type="checkbox"]):not([type="radio"]),
  textarea,
  select {
    font-size: 16px;
  }
  input[type="file"] {
    font-size: 12px !important;
  }
}
@media (max-width: 360px) {
  :root {
    --gutter: 16px;
  }
  .brand-hero {
    padding-top: 190px;
  }
  .brand-hero h1 {
    font-size: 35px;
  }
  .hero-eyebrow {
    font-size: 8px;
  }
  .brand-hero .svc-button {
    font-size: 9px;
    padding: 10px;
  }
  .brand-hero .svc-button .icon {
    width: 14px;
  }
  .footer-wordmark {
    font-size: 45px;
  }
  .detail-hero h1 {
    font-size: 35px;
  }
  .price-title {
    flex-direction: column;
    gap: 10px;
  }
  .demo-bottom {
    font-size: 8px;
  }
  .demo-bottom .icon {
    display: none;
  }
  .demo-tabs button {
    font-size: 10px;
    padding-inline: 5px;
  }
  .closing-cta h2 {
    font-size: 30px;
  }
  .service-ribbon {
    font-size: 9px;
  }
  .service-ribbon span::before {
    margin-right: 4px;
  }
}
@media (max-width: 540px) {
  .brand-hero h1 > br:nth-child(2) {
    display: initial;
  }
  .booking-form .checkbox-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .booking-form .checkbox-options label {
    min-height: 62px;
    padding: 10px;
    font-size: 11px;
    line-height: 1.45;
    gap: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .motion-ready .in-view-animate:not(.is-visible) {
    opacity: 1;
    transform: none;
  }
}
