:root {
  color-scheme: light;
  --background: #ffffff;
  --surface: #ffffff;
  --surface-muted: #f4f6f8;
  --surface-blue: #edf3ff;
  --foreground: #15171a;
  --muted-foreground: #626b78;
  --graphite: #11151b;
  --graphite-soft: #1c222b;
  --border: #dce1e8;
  --border-strong: #bfc7d1;
  --brand: #3868c0;
  --brand-hover: #2d56a0;
  --brand-foreground: #ffffff;
  --brand-soft: #edf2fc;
  --error: #a33a2b;
  --success: #334155;
  --radius: 8px;
  --max: 1240px;
  --shadow: 0 18px 55px rgba(21, 23, 26, 0.1);
  --font: Manrope, Inter, "Segoe UI Variable", "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font);
  color: var(--foreground);
  background: var(--background);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

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

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

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

.skip-link {
  position: fixed;
  left: 18px;
  top: -60px;
  z-index: 100;
  padding: 10px 15px;
  border-radius: var(--radius);
  background: var(--brand);
  color: var(--brand-foreground);
  font-weight: 800;
}

.skip-link:focus {
  top: 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 76px;
  padding: 12px max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(220, 225, 232, 0.88);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 174px;
  height: 46px;
  overflow: visible;
  background: transparent;
  flex: 0 0 auto;
}

.brand-logo {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  object-fit: contain;
  object-position: center;
  background: transparent;
  transform: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #464e59;
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav a:not(.nav-cta) {
  position: relative;
  padding: 10px 0;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 2px;
  background: var(--brand);
  transition: right 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--foreground);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  right: 0;
}

.nav-toggle {
  display: none;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-cta,
.button-primary {
  color: var(--brand-foreground);
  background: var(--brand);
}

.nav-cta:hover,
.button-primary:hover {
  color: var(--brand-foreground);
  background: var(--brand-hover);
  transform: translateY(-1px);
}

.button-secondary {
  color: var(--foreground);
  border-color: var(--border-strong);
  background: transparent;
}

.button-secondary:hover {
  color: var(--brand-hover);
  border-color: var(--brand);
  background: var(--brand-soft);
}

.button-light {
  color: var(--graphite);
  background: #ffffff;
}

.button-light:hover {
  color: var(--brand-hover);
  background: var(--brand-soft);
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.eyebrow,
.card-kicker {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  color: inherit;
  font-weight: 750;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: 68px;
  line-height: 1.02;
}

h2 {
  margin-bottom: 20px;
  font-size: 44px;
  line-height: 1.12;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  line-height: 1.35;
}

p {
  color: var(--muted-foreground);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.84fr);
  align-items: center;
  gap: 72px;
  max-width: var(--max);
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  padding: 62px 24px 0;
}

.hero-copy {
  padding: 40px 0 68px;
}

.hero-text {
  max-width: 660px;
  margin-bottom: 0;
  font-size: 1.18rem;
  line-height: 1.75;
}

.hero-local {
  display: grid;
  gap: 5px;
  margin-top: 38px;
  padding-left: 16px;
  border-left: 3px solid var(--brand);
  color: var(--muted-foreground);
  font-size: 0.9rem;
}

.hero-local strong {
  color: var(--foreground);
  font-size: 0.96rem;
}

.hero-media {
  position: relative;
  align-self: stretch;
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  border-radius: 0 0 var(--radius) var(--radius);
  background: var(--graphite);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center 58%;
}

.hero-media figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 2px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  color: #ffffff;
  background: rgba(17, 21, 27, 0.8);
  backdrop-filter: blur(12px);
}

.hero-media figcaption span {
  color: #cdd3dc;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-media figcaption strong {
  font-size: 0.95rem;
}

.trust-bar {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-bar span {
  padding: 19px 14px;
  border-right: 1px solid var(--border);
  color: #464e59;
  font-size: 0.84rem;
  font-weight: 750;
  text-align: center;
}

.trust-bar span:last-child {
  border-right: 0;
}

.section,
.final-cta,
.page-hero {
  padding: 104px max(24px, calc((100vw - var(--max)) / 2));
}

.section-muted {
  background: var(--surface-muted);
}

.section-heading {
  width: min(100%, 850px);
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  font-size: 1.06rem;
}

.section-heading-left {
  width: min(100%, var(--max));
  text-align: left;
}

.section-heading-left p:not(.eyebrow) {
  margin-left: 0;
}

.section-copy p {
  max-width: 650px;
  font-size: 1.04rem;
}

.project-start {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 70px;
  align-items: start;
}

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

.project-paths {
  border-top: 1px solid var(--border-strong);
}

.project-paths a {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr 36px;
  gap: 4px 16px;
  align-items: center;
  padding: 24px 4px;
  border-bottom: 1px solid var(--border);
  transition: color 180ms ease, padding-left 180ms ease;
}

.project-paths a:hover {
  padding-left: 10px;
  color: var(--brand-hover);
}

.project-paths a > span {
  grid-row: 1 / 3;
  align-self: start;
  color: var(--brand);
  font-size: 0.74rem;
  font-weight: 800;
}

.project-paths strong {
  color: var(--foreground);
  font-size: 1.03rem;
}

.project-paths p {
  grid-column: 2;
  margin-bottom: 0;
  font-size: 0.9rem;
}

.project-paths b {
  grid-column: 3;
  grid-row: 1 / 3;
  color: var(--brand);
  font-size: 1.2rem;
  text-align: right;
}

.service-grid,
.product-grid,
.portfolio-grid {
  display: grid;
  width: min(100%, var(--max));
  margin: 0 auto;
  gap: 18px;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 290px;
  padding: 28px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--foreground);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  border-top-color: var(--brand);
  transform: translateY(-3px);
  box-shadow: 0 16px 42px rgba(21, 23, 26, 0.08);
}

.service-number {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--brand);
  font-size: 0.74rem;
  font-weight: 850;
}

.service-card h3 {
  font-size: 1.28rem;
}

.service-card p {
  margin-bottom: 26px;
  font-size: 0.94rem;
}

.mini-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--brand-hover);
  font-size: 0.9rem;
  font-weight: 800;
}

.mini-cta span {
  transition: transform 180ms ease;
}

.mini-cta:hover span {
  transform: translateX(4px);
}

.section-action {
  width: min(100%, var(--max));
  margin: 34px auto 0;
  text-align: center;
}

.hybrid-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(370px, 0.8fr);
  gap: 76px;
  align-items: center;
  color: #ffffff;
  background: var(--graphite);
}

.hybrid-copy {
  max-width: 650px;
}

.hybrid-copy h2 {
  font-size: 50px;
}

.hybrid-copy p {
  color: #b8c0cb;
  font-size: 1.05rem;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: #e8ebef;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 10px;
  height: 2px;
  background: var(--brand);
}

.hybrid-image {
  height: 610px;
  margin: 0;
  overflow: hidden;
  border: 1px solid #343b45;
  border-radius: var(--radius);
}

.hybrid-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
}

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

.product-card,
.portfolio-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover,
.portfolio-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  box-shadow: 0 16px 42px rgba(21, 23, 26, 0.09);
}

.project-image {
  width: 100%;
  height: 330px;
  object-fit: cover;
  background: var(--graphite);
}

.product-card-body,
.portfolio-card-body {
  display: flex;
  flex-direction: column;
  min-height: 205px;
  padding: 22px;
}

.portfolio-card-body {
  min-height: 385px;
}

.product-card-body h3,
.portfolio-card-body h3 {
  font-size: 1.08rem;
}

.product-card-body p:not(.card-kicker),
.portfolio-card-body p:not(.card-kicker) {
  font-size: 0.9rem;
}

.portfolio-need {
  min-height: 72px;
}

.portfolio-details {
  display: grid;
  gap: 8px;
  margin: 8px 0 18px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.portfolio-details div {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 10px;
}

.portfolio-details dt {
  color: #7a838f;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.portfolio-details dd {
  margin: 0;
  color: #48515d;
  font-size: 0.78rem;
  font-weight: 700;
}

.portfolio-result {
  margin-bottom: 20px;
}

.portfolio-result strong {
  color: var(--foreground);
}

.card-kicker {
  margin-bottom: 8px;
  font-size: 0.68rem;
}

.business-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 76px;
  align-items: center;
}

.business-image {
  height: 660px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--graphite);
}

.business-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.application-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
  margin: 30px 0 34px;
  border-top: 1px solid var(--border);
}

.application-list span {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: #3e4651;
  font-size: 0.9rem;
  font-weight: 700;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, var(--max));
  margin: 0 auto;
  border-top: 1px solid var(--border-strong);
}

.timeline article {
  min-height: 220px;
  padding: 30px 28px 20px 0;
  border-right: 1px solid var(--border);
}

.timeline article + article {
  padding-left: 28px;
}

.timeline article:last-child {
  border-right: 0;
}

.timeline span {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--brand);
  font-size: 0.74rem;
  font-weight: 850;
}

.timeline h3 {
  font-size: 1.2rem;
}

.timeline p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.technology-section {
  color: #ffffff;
  background: var(--graphite);
}

.technology-heading {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 70px;
  width: min(100%, var(--max));
  margin: 0 auto 52px;
  align-items: end;
}

.technology-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -48px;
}

.technology-heading h2 {
  max-width: 680px;
  margin-bottom: 0;
}

.technology-heading p:not(.eyebrow) {
  margin-bottom: 0;
  color: #aeb7c3;
}

.equipment-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  border-top: 1px solid #37404b;
}

.equipment-row {
  display: grid;
  grid-template-columns: 48px minmax(250px, 0.75fr) minmax(0, 1.25fr);
  gap: 30px;
  align-items: start;
  padding: 26px 0;
  border-bottom: 1px solid #303844;
}

.equipment-row > span {
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 850;
}

.equipment-row h3 {
  margin-bottom: 4px;
  color: #ffffff;
}

.equipment-row strong {
  color: #aeb7c3;
  font-size: 0.83rem;
}

.equipment-row p {
  margin-bottom: 0;
  color: #c2c8d0;
  font-size: 0.9rem;
}

.filter-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: min(100%, var(--max));
  gap: 8px;
  margin: 0 auto 28px;
}

.filter-button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: #49515c;
  background: #ffffff;
  font-size: 0.84rem;
  font-weight: 750;
  cursor: pointer;
}

.filter-button:hover {
  border-color: var(--brand);
  color: var(--brand-hover);
}

.filter-button.is-active {
  border-color: var(--graphite);
  color: #ffffff;
  background: var(--graphite);
}

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

.portfolio-card .project-image {
  height: 390px;
}

.instagram-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 72px;
  align-items: center;
}

.instagram-copy {
  max-width: 500px;
}

.instagram-copy p:not(.eyebrow) {
  font-size: 1.03rem;
}

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

.social-gallery img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  border-radius: 6px;
}

.social-gallery img:nth-child(1) {
  object-position: center 48%;
}

.social-gallery img:nth-child(2) {
  object-position: center 58%;
}

.social-gallery img:nth-child(3) {
  object-position: center 60%;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(540px, 1.32fr);
  gap: 70px;
  align-items: start;
  background: var(--surface-muted);
}

.quote-intro {
  position: sticky;
  top: 112px;
}

.quote-intro p:not(.eyebrow) {
  font-size: 1.02rem;
}

.quote-assurance {
  display: grid;
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid var(--border);
}

.quote-assurance span {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: #454e5a;
  font-size: 0.88rem;
  font-weight: 700;
}

.next-steps {
  margin-top: 34px;
}

.next-steps h3 {
  font-size: 1rem;
}

.next-steps ol {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 22px;
  color: var(--muted-foreground);
  font-size: 0.86rem;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
  width: 100%;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 16px 45px rgba(21, 23, 26, 0.07);
}

.form-progress {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 6px;
}

.form-progress span {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 11px;
  border-bottom: 2px solid var(--border);
  color: #7a838f;
  font-size: 0.78rem;
  font-weight: 750;
}

.form-progress span.is-active {
  border-color: var(--brand);
  color: var(--foreground);
}

.form-progress b {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.7rem;
}

.form-step {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
}

.form-step[hidden] {
  display: none;
}

.form-step .form-note,
.form-step-actions,
.consent-field {
  grid-column: 1 / -1;
}

.form-step-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 4px;
}

.form-step-actions-split {
  justify-content: space-between;
}

.field {
  display: grid;
  gap: 7px;
  align-content: start;
}

.field.full,
.form-note,
.success-message,
.submit-error {
  grid-column: 1 / -1;
}

label {
  color: #353c46;
  font-size: 0.84rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid #cbd2dc;
  border-radius: 6px;
  color: var(--foreground);
  background: #ffffff;
}

input::placeholder,
textarea::placeholder {
  color: #858d98;
}

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

input[type="file"] {
  padding: 9px 10px;
  color: var(--muted-foreground);
}

input[type="checkbox"] {
  width: 19px;
  min-height: 19px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--brand);
}

.consent-field {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  color: #555e6a;
  font-size: 0.79rem;
  font-weight: 600;
}

.consent-field a {
  color: var(--brand-hover);
  font-weight: 800;
  text-decoration: underline;
}

input[type="file"]::file-selector-button {
  min-height: 32px;
  margin-right: 12px;
  padding: 0 12px;
  border: 1px solid var(--border-strong);
  border-radius: 5px;
  color: var(--foreground);
  background: var(--surface-muted);
  font-weight: 750;
  cursor: pointer;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(56, 104, 192, 0.32);
  outline-offset: 2px;
}

.error {
  min-height: 18px;
  color: var(--error);
  font-size: 0.78rem;
}

.field-help {
  color: #737c88;
  font-size: 0.76rem;
}

.form-note {
  margin: 4px 0 0;
  padding: 15px;
  border-left: 3px solid var(--brand);
  color: var(--muted-foreground);
  background: var(--brand-soft);
  font-size: 0.84rem;
}

.form-note strong {
  color: var(--foreground);
}

.quote-form > .button {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 4px;
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.success-message,
.submit-error {
  display: none;
  padding: 16px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 750;
}

.success-message {
  color: #273140;
  background: #eef1f5;
}

.submit-error {
  color: #842b1e;
  background: #fff0ed;
}

.quote-form.is-success .success-message,
.quote-form.has-submit-error .submit-error {
  display: block;
}

.quote-form.is-success .form-progress,
.quote-form.is-success .form-step {
  display: none;
}

.quote-form button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.faq-list {
  display: grid;
  width: min(100%, 900px);
  margin: 0 auto;
  border-top: 1px solid var(--border-strong);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: 100%;
  min-height: 70px;
  padding: 14px 4px;
  border: 0;
  color: var(--foreground);
  background: transparent;
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}

.faq-question span:last-child {
  color: var(--brand);
  font-size: 1.35rem;
  font-weight: 500;
  transition: transform 180ms ease;
}

.faq-item.is-open .faq-question span:last-child {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-answer p {
  overflow: hidden;
  margin-bottom: 0;
  padding: 0 42px 0 4px;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 22px;
}

.about-preview {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 76px;
  align-items: center;
}

.about-principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--border-strong);
}

.about-principles span {
  min-height: 105px;
  padding: 22px 18px 18px 0;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: #3f4752;
  font-weight: 750;
}

.about-principles span:nth-child(even) {
  padding-left: 18px;
  border-right: 0;
}

.final-cta {
  text-align: center;
  background: var(--surface-blue);
}

.final-cta > div {
  width: min(100%, 820px);
  margin: 0 auto;
}

.final-cta h2 {
  font-size: 54px;
}

.final-cta p:not(.eyebrow) {
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
  font-size: 1.05rem;
}

.final-cta .action-row {
  justify-content: center;
}

.site-footer {
  padding: 70px max(24px, calc((100vw - var(--max)) / 2)) 32px;
  border-top: 1px solid var(--border);
  color: var(--foreground);
  background: #ffffff;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 0.8fr;
  gap: 44px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.footer-brand p {
  max-width: 410px;
  margin-top: 18px;
  font-size: 0.9rem;
}

.footer-brand .footer-location {
  color: #404954;
  font-size: 0.83rem;
  font-weight: 650;
}

.footer-email {
  color: var(--brand-hover);
  font-size: 0.84rem;
  font-weight: 800;
}

.footer-links {
  display: grid;
  gap: 9px;
  align-content: start;
  font-size: 0.86rem;
}

.footer-links strong {
  margin-bottom: 7px;
  color: var(--foreground);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.footer-links a {
  color: var(--muted-foreground);
}

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

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 20px;
  align-items: center;
  width: min(100%, var(--max));
  margin: 48px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: #747d89;
  font-size: 0.78rem;
}

.footer-bottom > span:last-child {
  text-align: right;
}

.filament-loader {
  position: relative;
  z-index: 2;
  width: 154px;
  height: 58px;
  justify-self: end;
}

.filament-loader-stage {
  position: relative;
  width: 100%;
  height: 100%;
}

.filament-spool,
.printer-filament-input {
  position: absolute;
  margin: 0;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  -webkit-tap-highlight-color: transparent;
}

.filament-spool {
  z-index: 4;
  top: 5px;
  left: 2px;
  width: 48px;
  height: 48px;
  cursor: grab;
  touch-action: pan-y;
  transform-origin: center;
  will-change: transform;
}

.filament-spool:active,
.filament-loader.is-dragging .filament-spool {
  cursor: grabbing;
}

.filament-spool svg,
.printer-filament-input svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.spool-rim {
  fill: #f7f8fa;
  stroke: #38414c;
  stroke-width: 3;
}

.spool-core {
  fill: #ffffff;
  stroke: #5d6672;
  stroke-width: 2.4;
}

.spool-filament {
  fill: none;
  stroke: var(--brand);
  stroke-linecap: round;
  stroke-width: 6;
}

.spool-window {
  fill: #ffffff;
  stroke: #c5cad1;
  stroke-width: 1.4;
}

.filament-rest {
  position: absolute;
  right: 67px;
  bottom: 6px;
  left: 0;
  height: 7px;
  border: 1px solid #cfd4da;
  border-top: 0;
  border-radius: 0 0 6px 6px;
}

.printer-filament-input {
  right: 0;
  bottom: 4px;
  width: 68px;
  height: 48px;
  border-radius: 6px;
  cursor: default;
}

.printer-shell {
  fill: #f4f5f7;
  stroke: #7a838f;
  stroke-linejoin: round;
  stroke-width: 2;
}

.printer-slot {
  fill: none;
  stroke: #a3aab4;
  stroke-linecap: round;
  stroke-width: 2;
}

.printer-port {
  fill: #ffffff;
  stroke: #5c6570;
  stroke-width: 2.5;
  transition: fill 160ms ease, stroke 160ms ease;
}

.printer-nozzle {
  fill: #59626e;
  transition: fill 160ms ease;
}

.filament-spool:focus-visible,
.printer-filament-input:focus-visible {
  outline: 3px solid rgba(56, 104, 192, 0.36);
  outline-offset: 3px;
}

.filament-tether {
  position: fixed;
  z-index: 108;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  opacity: 0;
  overflow: visible;
  transition: opacity 120ms ease;
}

.filament-tether line {
  stroke: var(--brand);
  stroke-linecap: round;
  stroke-width: 2.5;
  vector-effect: non-scaling-stroke;
}

.filament-loader.is-dragging .filament-spool {
  z-index: 110;
  filter: drop-shadow(0 12px 12px rgba(21, 23, 26, 0.2));
  touch-action: none;
}

.filament-loader.is-dragging .filament-tether {
  opacity: 0.78;
}

.filament-loader.is-target-active .printer-port {
  fill: var(--brand);
  stroke: var(--brand-hover);
}

.filament-loader.is-target-active .printer-nozzle {
  fill: var(--brand);
}

.filament-loader.is-target-active .printer-filament-input {
  filter: drop-shadow(0 6px 10px rgba(56, 104, 192, 0.2));
}

.filament-loader.is-returning .filament-spool,
.filament-loader.is-unlocking .filament-spool {
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), filter 180ms ease;
}

.filament-loader.is-keyboard-dragging .filament-spool {
  filter: drop-shadow(0 8px 10px rgba(21, 23, 26, 0.16));
  transform: translateY(-3px);
}

.filament-loading-overlay {
  position: fixed;
  z-index: 140;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(18, 22, 28, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.filament-loading-overlay[hidden] {
  display: none;
}

.filament-loading-overlay.is-visible {
  opacity: 1;
}

.filament-loading-panel {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  width: min(100%, 290px);
  min-height: 72px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: #ffffff;
  background: rgba(26, 31, 38, 0.94);
  box-shadow: 0 18px 48px rgba(13, 17, 22, 0.22);
}

.filament-loading-panel p {
  margin: 0;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 800;
}

.filament-loading-mark {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255, 255, 255, 0.32);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: filament-loading-spin 720ms linear infinite;
}

body.filament-is-dragging {
  overflow: hidden;
  user-select: none;
}

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

@media (prefers-reduced-motion: reduce) {
  .filament-spool,
  .printer-port,
  .printer-nozzle,
  .filament-tether,
  .filament-loading-overlay {
    transition: none !important;
  }

  .filament-loading-mark {
    animation: none;
    border-color: #ffffff;
  }
}

.mobile-quote {
  display: none;
  position: fixed;
  right: 16px;
  bottom: 14px;
  left: 16px;
  z-index: 45;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: var(--brand-foreground);
  background: var(--brand);
  box-shadow: var(--shadow);
  font-weight: 850;
}

.page-hero {
  min-height: 420px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-muted);
}

.page-hero > * {
  width: min(100%, var(--max));
  margin-right: auto;
  margin-left: auto;
}

.page-hero h1 {
  max-width: 960px;
  font-size: 58px;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  font-size: 1.08rem;
}

.service-intro,
.page-intro-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.detail-grid {
  display: grid;
  width: min(100%, var(--max));
  margin: 0 auto;
  gap: 28px;
}

.service-detail {
  padding: 36px 0;
  border-top: 1px solid var(--border-strong);
}

.service-detail-heading {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 18px;
}

.service-detail-heading .service-number {
  margin-top: 9px;
}

.service-detail-heading h2 {
  font-size: 34px;
}

.service-detail-heading p {
  max-width: 760px;
}

.service-detail-body {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 70px;
  margin-top: 22px;
  padding-left: 74px;
}

.service-detail-body ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-detail-body li {
  position: relative;
  padding: 10px 0 10px 20px;
  border-bottom: 1px solid var(--border);
  color: #4e5763;
  font-size: 0.9rem;
}

.service-detail-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.45em;
  width: 8px;
  height: 2px;
  background: var(--brand);
}

.service-fit {
  padding-left: 24px;
  border-left: 2px solid var(--brand);
}

.service-fit strong {
  color: var(--brand-hover);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.service-fit p {
  font-size: 0.9rem;
}

.service-fit .button {
  margin-top: 8px;
}

.info-card,
.contact-card {
  width: min(100%, var(--max));
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
}

.legal-content {
  width: min(100%, 820px);
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 48px;
  font-size: 28px;
}

.legal-content p {
  font-size: 0.98rem;
}

.legal-content a {
  color: var(--brand-hover);
  font-weight: 800;
}

.legal-updated {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  color: #717a86;
  font-size: 0.82rem !important;
  font-weight: 700;
}

.info-card h2,
.contact-card h2 {
  font-size: 30px;
}

.maker-panel,
.capability-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--border-strong);
}

.maker-panel span,
.capability-panel span {
  min-height: 92px;
  padding: 20px 16px 16px 0;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: #3f4752;
  font-size: 0.9rem;
  font-weight: 750;
}

.maker-panel span:nth-child(even),
.capability-panel span:nth-child(even) {
  padding-left: 16px;
  border-right: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1.28fr);
  gap: 32px;
  align-items: start;
}

.contact-card {
  width: 100%;
}

.contact-card .text-link {
  color: var(--brand-hover);
  font-weight: 800;
}

.contact-card .contact-rule {
  margin: 24px 0;
  border: 0;
  border-top: 1px solid var(--border);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (max-width: 1100px) {
  .site-nav {
    gap: 17px;
    font-size: 0.84rem;
  }

  .hero {
    gap: 44px;
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 40px;
  }

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

  .project-image {
    height: 440px;
  }

  .instagram-section,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .quote-intro {
    position: static;
    max-width: 720px;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 74px;
  }

  .site-header {
    min-height: 70px;
  }

  .site-nav {
    position: fixed;
    top: 70px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a:not(.nav-cta) {
    padding: 11px 8px;
  }

  .site-nav a:not(.nav-cta)::after {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 0;
    border-radius: 6px;
    background: transparent;
    cursor: pointer;
  }

  .nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--foreground);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 26px;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-media {
    min-height: 590px;
    border-radius: var(--radius);
  }

  .hero-media img {
    min-height: 590px;
  }

  .project-start,
  .business-section,
  .hybrid-band,
  .technology-heading,
  .about-preview,
  .service-intro,
  .page-intro-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .hybrid-image,
  .business-image {
    height: 560px;
  }

  .technology-heading .eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }

  .equipment-row {
    grid-template-columns: 40px minmax(210px, 0.8fr) minmax(0, 1.2fr);
    gap: 20px;
  }

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

  .timeline article:nth-child(2) {
    border-right: 0;
  }

  .timeline article:nth-child(n + 3) {
    border-top: 1px solid var(--border);
  }

  .social-gallery img {
    height: 350px;
  }

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

@media (max-width: 620px) {
  body {
    padding-bottom: 72px;
  }

  .site-header {
    padding-right: 16px;
    padding-left: 16px;
  }

  .brand {
    width: 150px;
    height: 40px;
  }

  h1 {
    font-size: 43px;
    line-height: 1.06;
  }

  h2 {
    font-size: 34px;
  }

  .section,
  .final-cta,
  .page-hero,
  .hybrid-band,
  .technology-section {
    padding: 76px 16px;
  }

  .hero {
    gap: 36px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero-copy {
    padding-top: 24px;
  }

  .hero-text {
    font-size: 1rem;
  }

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

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

  .hero-media,
  .hero-media img {
    min-height: 500px;
  }

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

  .trust-bar span:nth-child(2) {
    border-right: 0;
  }

  .trust-bar span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .section-heading {
    margin-bottom: 38px;
    text-align: left;
  }

  .section-heading p:not(.eyebrow) {
    margin-left: 0;
  }

  .project-start {
    gap: 40px;
  }

  .project-paths a {
    grid-template-columns: 32px 1fr 24px;
  }

  .service-grid,
  .product-grid,
  .portfolio-grid,
  .quote-form,
  .timeline,
  .application-list,
  .about-principles,
  .maker-panel,
  .capability-panel,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 255px;
  }

  .hybrid-copy h2,
  .final-cta h2 {
    font-size: 38px;
  }

  .hybrid-image,
  .business-image {
    height: 500px;
  }

  .project-image,
  .portfolio-card .project-image {
    height: 430px;
  }

  .timeline article,
  .timeline article + article {
    min-height: auto;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .timeline article:nth-child(n + 3) {
    border-top: 0;
  }

  .timeline span {
    margin-bottom: 22px;
  }

  .equipment-row {
    grid-template-columns: 32px 1fr;
  }

  .equipment-row p {
    grid-column: 2;
  }

  .filter-row {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .filter-button {
    flex: 0 1 auto;
  }

  .social-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .social-gallery img {
    height: 300px;
  }

  .social-gallery img:last-child {
    grid-column: 1 / -1;
    height: 420px;
  }

  .quote-form {
    padding: 20px;
  }

  .form-step {
    grid-template-columns: 1fr;
  }

  .form-step-actions,
  .form-step-actions-split {
    display: grid;
    grid-template-columns: 1fr;
  }

  .form-step-actions .button {
    width: 100%;
  }

  .about-principles span,
  .about-principles span:nth-child(even),
  .maker-panel span,
  .maker-panel span:nth-child(even),
  .capability-panel span,
  .capability-panel span:nth-child(even) {
    min-height: 76px;
    padding: 17px 0;
    border-right: 0;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-bottom > span:last-child {
    text-align: left;
  }

  .filament-loader {
    justify-self: end;
  }

  .page-hero {
    min-height: 350px;
  }

  .page-hero h1 {
    font-size: 43px;
  }

  .service-detail {
    padding: 30px 0;
  }

  .service-detail-heading {
    grid-template-columns: 36px 1fr;
    gap: 8px;
  }

  .service-detail-heading h2 {
    font-size: 28px;
  }

  .service-detail-body {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-left: 44px;
  }

  .service-fit {
    padding-left: 18px;
  }

  .mobile-quote.is-visible {
    display: flex;
  }
}

/* Simplified homepage and progressive-disclosure service architecture */
.hero.hero-simple {
  position: relative;
  display: block;
  max-width: none;
  min-height: min(720px, calc(100svh - 118px));
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: var(--surface-muted);
}

.hero-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.97) 40%, rgba(255, 255, 255, 0.78) 57%, rgba(255, 255, 255, 0.12) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100%, var(--max));
  min-height: min(720px, calc(100svh - 118px));
  margin: 0 auto;
  padding: 72px 24px 58px;
}

.hero-content h1,
.hero-content .hero-text,
.hero-content .action-row,
.hero-content .trust-indicators {
  width: min(100%, 680px);
}

.hero-content h1 {
  margin-bottom: 22px;
}

.hero-content .hero-text {
  font-size: 1.18rem;
  line-height: 1.65;
}

.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 38px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--border-strong);
  list-style: none;
}

.trust-indicators li {
  padding: 0 20px;
  border-right: 1px solid var(--border-strong);
  color: #464e59;
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.35;
}

.trust-indicators li:first-child {
  padding-left: 0;
}

.trust-indicators li:last-child {
  border-right: 0;
}

.solutions-section,
.selected-work-section,
.simple-process,
.why-section {
  padding-top: 96px;
  padding-bottom: 96px;
}

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

.solution-card,
.work-card {
  min-width: 0;
}

.solution-card > a,
.work-card > a {
  display: block;
  height: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  transition: border-color 180ms ease, transform 180ms ease;
}

.solution-card > a:hover,
.solution-card > a:focus-visible,
.work-card > a:hover,
.work-card > a:focus-visible {
  border-color: var(--brand);
  transform: translateY(-3px);
  outline: none;
}

.solution-card img,
.work-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.solution-card:nth-child(1) img {
  object-position: center 58%;
}

.solution-card:nth-child(2) img {
  object-position: center 66%;
}

.solution-card:nth-child(3) img {
  object-position: center 58%;
}

.solution-card a > div,
.work-card a > div {
  padding: 26px;
}

.solution-number {
  display: block;
  margin-bottom: 18px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
}

.solution-card h3,
.work-card h3 {
  font-size: 1.28rem;
}

.solution-card p {
  min-height: 54px;
  margin-bottom: 22px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--brand-hover);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 800;
}

.text-link b,
.text-link i {
  font-style: normal;
  transition: transform 180ms ease;
}

a:hover .text-link b,
a:focus-visible .text-link b,
a:hover .text-link i,
a:focus-visible .text-link i,
.text-link:hover b,
.text-link:focus-visible b {
  transform: translateX(4px);
}

.work-card .card-kicker {
  margin-bottom: 8px;
}

.work-card h3 {
  margin-bottom: 8px;
}

.work-card a > div > span:not(.text-link) {
  display: block;
  min-height: 44px;
  margin-bottom: 22px;
  color: var(--muted-foreground);
  font-size: 0.88rem;
}

.section-action-left {
  justify-content: flex-start;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 225px;
  padding: 28px 28px 30px 0;
  border-right: 1px solid var(--border);
}

.process-list li + li {
  padding-left: 28px;
}

.process-list li:last-child {
  border-right: 0;
}

.process-list li > span {
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
}

.process-list li > div {
  align-self: end;
}

.process-list h3 {
  margin-bottom: 8px;
}

.process-list p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.simple-process .section-action {
  margin-top: 28px;
}

.why-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 84px;
}

.why-intro p:not(.eyebrow) {
  max-width: 520px;
}

.why-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--border-strong);
}

.why-list article {
  min-height: 155px;
  padding: 26px 28px 24px 0;
  border-bottom: 1px solid var(--border);
}

.why-list article:nth-child(even) {
  padding-right: 0;
  padding-left: 28px;
  border-left: 1px solid var(--border);
}

.why-list p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.final-cta.final-cta-simple {
  background: #ffffff;
}

.final-cta-simple > div {
  max-width: var(--max);
  padding: 72px 0;
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border);
  color: var(--foreground);
  text-align: left;
}

.final-cta-simple h2 {
  max-width: 760px;
}

.final-cta-simple p:not(.eyebrow) {
  max-width: 580px;
  margin: 0;
  color: var(--muted-foreground);
}

.final-cta-simple .action-row {
  justify-content: flex-start;
}

.page-hero-focused {
  min-height: 430px;
  background: var(--surface-muted);
}

.page-hero-focused p:not(.eyebrow) {
  max-width: 680px;
}

.service-pathway-list {
  border-top: 1px solid var(--border-strong);
}

.service-pathway-list > a {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 18px;
  min-height: 112px;
  padding: 20px 4px;
  border-bottom: 1px solid var(--border);
  transition: color 180ms ease, padding 180ms ease;
}

.service-pathway-list > a:hover,
.service-pathway-list > a:focus-visible {
  padding-right: 12px;
  padding-left: 12px;
  color: var(--brand-hover);
  outline: none;
}

.service-pathway-list > a > span {
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
}

.service-pathway-list h3,
.service-pathway-list p {
  margin-bottom: 3px;
}

.service-pathway-list p {
  font-size: 0.92rem;
}

.service-pathway-list b,
.method-links b {
  font-size: 1.1rem;
}

.method-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border);
}

.method-links > a {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 235px;
  padding: 28px;
  border-right: 1px solid var(--border);
  transition: color 180ms ease, background-color 180ms ease;
}

.method-links > a:first-child {
  padding-left: 0;
}

.method-links > a:last-child {
  padding-right: 0;
  border-right: 0;
}

.method-links > a:hover,
.method-links > a:focus-visible {
  color: var(--brand-hover);
  background: rgba(255, 255, 255, 0.55);
  outline: none;
}

.method-links > a > span {
  margin-bottom: 38px;
  color: var(--brand);
  font-size: 0.74rem;
  font-weight: 800;
}

.method-links h3 {
  margin-bottom: 8px;
}

.method-links p {
  margin-bottom: 22px;
  font-size: 0.92rem;
}

.service-combination,
.service-overview,
.process-prep-section,
.service-fit-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 84px;
}

.service-combination-image,
.service-overview-image {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-muted);
}

.service-combination-image img,
.service-overview-image img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}

.service-combination-image img {
  object-position: center 58%;
}

.service-overview-image img {
  object-position: center 58%;
}

.process-detail-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border-strong);
  list-style: none;
}

.process-detail-list li {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 28px;
  padding: 42px 0;
  border-bottom: 1px solid var(--border);
}

.process-detail-list li > span {
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
}

.process-detail-list h2 {
  margin-bottom: 10px;
  font-size: 30px;
}

.process-detail-list p {
  max-width: 720px;
  margin-bottom: 0;
}

.plain-detail-list,
.capability-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.plain-detail-list {
  border-top: 1px solid var(--border-strong);
}

.plain-detail-list li {
  padding: 17px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted-foreground);
}

.decision-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border);
}

.decision-row span {
  padding: 24px 12px;
  border-right: 1px solid var(--border);
  color: #464e59;
  font-size: 0.84rem;
  font-weight: 750;
  text-align: center;
}

.decision-row span:last-child {
  border-right: 0;
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--border-strong);
}

.capability-list li {
  min-height: 88px;
  padding: 25px 28px 24px 0;
  border-bottom: 1px solid var(--border);
  color: #464e59;
  font-weight: 700;
}

.capability-list li:nth-child(even) {
  padding-right: 0;
  padding-left: 28px;
  border-left: 1px solid var(--border);
}

.service-process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border);
  list-style: none;
}

.service-process-list li {
  min-height: 210px;
  padding: 28px;
  border-right: 1px solid var(--border);
}

.service-process-list li:first-child {
  padding-left: 0;
}

.service-process-list li:last-child {
  padding-right: 0;
  border-right: 0;
}

.service-process-list li > span {
  display: block;
  margin-bottom: 52px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
}

.service-process-list p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.service-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 84px;
}

.service-spec h2 {
  font-size: 30px;
}

.service-fit-copy p:not(.eyebrow) {
  max-width: 690px;
}

.service-fit-action {
  justify-self: end;
  display: grid;
  justify-items: start;
  gap: 18px;
  width: min(100%, 390px);
  padding: 30px 0 30px 38px;
  border-left: 1px solid var(--border-strong);
}

.service-fit-action p {
  margin: 0;
  font-weight: 700;
}

@media (max-width: 900px) {
  .hero.hero-simple,
  .hero-content {
    min-height: 650px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.96) 56%, rgba(255, 255, 255, 0.58) 82%, rgba(255, 255, 255, 0.2) 100%);
  }

  .solution-grid,
  .work-grid,
  .method-links {
    grid-template-columns: 1fr;
  }

  .solution-card > a,
  .work-card > a {
    display: grid;
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  }

  .solution-card img,
  .work-card img {
    height: 100%;
    aspect-ratio: auto;
  }

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

  .process-list li:nth-child(2),
  .service-process-list li:nth-child(2) {
    border-right: 0;
  }

  .process-list li:nth-child(n + 3),
  .service-process-list li:nth-child(n + 3) {
    border-top: 1px solid var(--border);
  }

  .why-section,
  .service-combination,
  .service-overview,
  .process-prep-section,
  .service-fit-section,
  .service-specs {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .method-links > a,
  .method-links > a:first-child,
  .method-links > a:last-child {
    min-height: 0;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .method-links > a:last-child {
    border-bottom: 0;
  }

  .method-links > a > span {
    margin-bottom: 20px;
  }

  .service-fit-action {
    justify-self: start;
    padding: 28px 0 0;
    border-top: 1px solid var(--border-strong);
    border-left: 0;
  }
}

@media (max-width: 620px) {
  .hero.hero-simple,
  .hero-content {
    min-height: 640px;
  }

  .hero-background {
    object-position: 58% 78%;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.97) 52%, rgba(255, 255, 255, 0.9) 76%, rgba(255, 255, 255, 0.68) 100%);
  }

  .hero-content {
    justify-content: flex-start;
    padding: 54px 16px 36px;
    overflow: hidden;
  }

  .hero-content .eyebrow {
    max-width: 100%;
    font-size: 0.68rem;
    line-height: 1.55;
    white-space: normal;
  }

  .hero-content h1 {
    max-width: 100%;
    font-size: 2.65rem;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .hero-content .hero-text {
    max-width: 100%;
    font-size: 1rem;
  }

  .hero-content .action-row {
    grid-template-columns: 1fr;
    width: min(100%, 330px);
  }

  .hero-content .button {
    min-height: 48px;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 0.84rem;
  }

  .trust-indicators {
    display: grid;
    gap: 8px;
    margin-top: 24px;
    padding-top: 14px;
  }

  .trust-indicators li,
  .trust-indicators li:first-child {
    padding: 0;
    border-right: 0;
  }

  .solutions-section,
  .selected-work-section,
  .simple-process,
  .why-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .solution-card > a,
  .work-card > a {
    display: block;
  }

  .solution-card img,
  .work-card img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .solution-card a > div,
  .work-card a > div {
    padding: 22px;
  }

  .solution-card p,
  .work-card a > div > span:not(.text-link) {
    min-height: 0;
  }

  .process-list,
  .service-process-list,
  .why-list,
  .capability-list,
  .decision-row {
    grid-template-columns: 1fr;
  }

  .process-list li,
  .process-list li + li,
  .service-process-list li,
  .service-process-list li:first-child,
  .service-process-list li:last-child {
    min-height: 0;
    padding: 24px 0;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .process-list li > span,
  .service-process-list li > span {
    margin-bottom: 26px;
  }

  .why-section {
    gap: 42px;
  }

  .why-list article,
  .why-list article:nth-child(even),
  .capability-list li,
  .capability-list li:nth-child(even) {
    min-height: 0;
    padding: 22px 0;
    border-left: 0;
  }

  .final-cta-simple > div {
    padding: 56px 0;
  }

  .service-pathway-list > a {
    grid-template-columns: 36px minmax(0, 1fr) 18px;
    gap: 10px;
    min-height: 105px;
  }

  .service-pathway-list p {
    line-height: 1.45;
  }

  .service-combination-image img,
  .service-overview-image img {
    height: 430px;
  }

  .process-detail-list li {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding: 30px 0;
  }

  .process-detail-list h2,
  .service-spec h2 {
    font-size: 26px;
  }

  .decision-row span {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
    text-align: left;
  }
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin: 0 0 28px;
  color: var(--muted-foreground);
  font-size: 0.82rem;
  font-weight: 700;
}

.breadcrumbs a {
  color: var(--brand);
}

.breadcrumbs a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.related-service-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--border-strong);
}

.related-service-links a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 18px;
  min-width: 0;
  padding: 24px 22px 24px 0;
  border-bottom: 1px solid var(--border-strong);
}

.related-service-links a + a {
  padding-left: 22px;
  border-left: 1px solid var(--border-strong);
}

.related-service-links span,
.related-service-links strong {
  min-width: 0;
}

.related-service-links span {
  color: var(--muted-foreground);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.related-service-links strong {
  font-size: 1rem;
  line-height: 1.4;
}

.related-service-links b {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  color: var(--brand);
}

.related-service-links a:hover strong {
  color: var(--brand);
}

@media (max-width: 900px) {
  .related-service-links {
    grid-template-columns: 1fr;
  }

  .related-service-links a,
  .related-service-links a + a {
    padding-right: 0;
    padding-left: 0;
    border-left: 0;
  }
}

@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;
  }
}
