@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  src: url("fonts/cormorant-garamond-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src: url("fonts/cormorant-garamond-latin-600-normal.woff2") format("woff2");
}

:root {
  --ink: #011015;
  --ink-2: #121617;
  --ink-3: #1b1e1f;
  --panel: rgba(16, 22, 24, .72);
  --paper: #ffffff;
  --paper-ink: #011015;
  --paper-muted: #5e6466;
  --text: #ffffff;
  --muted: #a2a6a6;
  --line: rgba(255, 255, 255, .17);
  --line-bright: rgba(255, 255, 255, .34);
  --accent: #242527;
  --accent-contrast: #ffffff;
  --focus-ring: #ffffff;
  --green: #a8e66b;
  --header-height: 76px;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "General Sans", system-ui, sans-serif;
  --shell: min(1280px, calc(100% - 96px));
  color: var(--text);
  background: var(--ink);
  font-family: var(--sans);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; background: var(--ink); }
body { margin: 0; min-width: 320px; overflow-x: clip; background: var(--ink); color: var(--text); font-size: 16px; line-height: 1.55; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.page-transition { animation: page-settle .8s var(--ease-out) both; }

@keyframes page-settle {
  from { opacity: .74; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.site-header { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid rgba(255, 255, 255, .16); background: linear-gradient(180deg, rgba(1, 16, 21, .86), rgba(1, 16, 21, .74)); backdrop-filter: blur(24px) saturate(120%); -webkit-backdrop-filter: blur(24px) saturate(120%); box-shadow: 0 12px 34px rgba(1, 16, 21, .16), inset 0 -1px 0 rgba(255, 255, 255, .04); }
.header-inner { min-height: 76px; display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 10px; width: fit-content; letter-spacing: .11em; font-size: 12px; font-weight: 600; }
.brand img { width: 30px; height: 30px; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; gap: 28px; font-size: 12px; color: var(--muted); }
.desktop-nav > a, .nav-disclosure > summary { position: relative; padding: 29px 0; cursor: pointer; list-style: none; transition: color .2s ease; }
.desktop-nav > a:hover, .desktop-nav > a.active, .nav-disclosure > summary:hover { color: var(--text); }
.desktop-nav > a.active::after { content: ""; position: absolute; right: 0; bottom: 18px; left: 0; height: 2px; background: var(--accent-contrast); }
.nav-disclosure { position: relative; }
.nav-disclosure summary { display: inline-flex; align-items: center; gap: 6px; font-family: var(--sans); }
.nav-disclosure summary svg { width: 13px; transition: transform .2s ease; }
.nav-disclosure[open] summary svg { transform: rotate(180deg); }
.nav-disclosure summary::-webkit-details-marker { display: none; }
.nav-menu { position: absolute; top: calc(100% + 10px); left: 50%; z-index: 70; display: grid; min-width: 230px; padding: 12px; border: 1px solid rgba(255, 255, 255, .2); border-radius: 16px; background: linear-gradient(135deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .012) 42%, rgba(1, 16, 21, .22)), rgba(1, 16, 21, .54); backdrop-filter: blur(24px) saturate(120%); -webkit-backdrop-filter: blur(24px) saturate(120%); box-shadow: 0 24px 64px rgba(0, 0, 0, .42), inset 0 1px 0 rgba(255, 255, 255, .11); transform: translateX(-50%); animation: nav-glass-in .22s var(--ease-out) both; }
@keyframes nav-glass-in { from { opacity: 0; transform: translateX(-50%) translateY(-7px) scale(.98); } to { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); } }
.nav-menu a { border-radius: 10px; padding: 12px; color: var(--muted); font-family: var(--sans); transition: color .2s ease, background .2s ease; }
.nav-menu a:hover { color: var(--text); background: rgba(255, 255, 255, .1); }
.menu-button { display: none; width: 44px; height: 44px; border: 1px solid var(--line-bright); background: transparent; color: var(--text); cursor: pointer; }
.menu-button:hover, .menu-button:focus, .menu-button:active { border-color: var(--line-bright); background: transparent; color: var(--text); }
.menu-button svg { width: 21px; height: 21px; }
.mobile-nav { display: none; }

.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 14px; border: 1px solid transparent; padding: 0 22px; font-size: 12px; font-weight: 600; letter-spacing: .015em; white-space: nowrap; transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease; }
.button svg { width: 17px; height: 17px; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible { outline: 2px solid var(--focus-ring); outline-offset: 4px; }
.button-primary { background: var(--accent-contrast); color: var(--ink); }
.button-primary:hover, .button-primary:focus, .button-primary:active { background: #d9d9d6; color: var(--ink); }
.button-secondary { border-color: var(--line-bright); color: var(--text); }
.button-secondary:hover, .button-secondary:focus, .button-secondary:active { border-color: var(--accent-contrast); background: transparent; color: var(--accent-contrast); }
.button-light { border-color: rgba(255, 255, 255, .52); color: var(--text); }
.button-light:hover { background: var(--text); border-color: var(--text); color: var(--ink); }
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }

/* Short surfaces pin below the header; long content keeps normal document flow. */
main > :is(.hero, .section, .page-intro, .product-hero, .product-band, .final-cta) {
  position: relative;
  z-index: var(--section-z, 1);
  isolation: isolate;
  scroll-margin-top: var(--header-height);
}

main.stack-ready > .is-stack-section {
  position: sticky;
  top: var(--stack-top, var(--header-height));
}

main > :is(.hero, .section, .page-intro, .product-hero, .product-band, .final-cta) ~ :is(.hero, .section, .page-intro, .product-hero, .product-band, .final-cta) {
  margin-top: -22px;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -12px 24px rgba(1, 16, 21, .14);
}

.eyebrow { margin: 0 0 22px; color: var(--accent-contrast); font-size: 10px; font-weight: 600; letter-spacing: .2em; line-height: 1.3; text-transform: uppercase; }
.hero, .section, .page-intro, .product-hero { position: relative; overflow: hidden; }
.hero-home { min-height: 690px; display: flex; align-items: center; background: radial-gradient(circle at 75% 38%, rgba(255, 255, 255, .08), transparent 33%), linear-gradient(120deg, var(--ink) 0%, var(--ink-2) 58%, var(--ink) 100%); }
.hero-home::before { content: ""; position: absolute; inset: 0; opacity: .24; background: linear-gradient(90deg, transparent 49.95%, rgba(255, 255, 255, .08) 50%, transparent 50.05%), linear-gradient(0deg, transparent 49.95%, rgba(255, 255, 255, .06) 50%, transparent 50.05%); background-size: 120px 120px; mask-image: linear-gradient(to right, transparent, #000 42%, transparent 92%); pointer-events: none; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .95fr) minmax(500px, 1.05fr); align-items: center; gap: 60px; }
.hero-copy { padding: 76px 0 92px; }
.hero-copy > .eyebrow { animation: hero-copy-arrive .65s var(--ease-out) both; }
.hero-copy > h1 { animation: hero-copy-arrive .75s .08s var(--ease-out) both; }
.hero-copy > .hero-kicker { animation: hero-copy-arrive .75s .15s var(--ease-out) both; }
.hero-copy > .hero-lede { animation: hero-copy-arrive .75s .21s var(--ease-out) both; }
.hero-copy > .button-row { animation: hero-copy-arrive .75s .29s var(--ease-out) both; }
@keyframes hero-copy-arrive {
  from { opacity: .26; transform: translateY(18px); filter: blur(6px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
.hero-copy h1, .page-intro h1, .inner-hero h1, .product-hero h1 { max-width: 780px; margin: 0; font-family: var(--serif); font-size: clamp(68px, 8vw, 122px); font-weight: 500; letter-spacing: -.055em; line-height: .82; }
.hero-copy h1 { font-size: clamp(68px, 7.2vw, 108px); }
.hero-copy h1 em, .page-intro h1 em, .inner-hero h1 em, .product-hero h1 em, .section-title h2 em, .bridge-copy h2 em { color: var(--accent-contrast); font-style: normal; }
.hero-kicker { max-width: 500px; margin: 38px 0 14px; color: var(--text); font-size: 19px; line-height: 1.35; }
.hero-lede { max-width: 505px; margin: 0 0 34px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.hero-stage { position: relative; min-height: 520px; display: flex; align-items: center; justify-content: center; }
.hero-browser { position: relative; z-index: 2; width: min(100%, 650px); border: 1px solid rgba(255, 255, 255, .28); background: #101415; box-shadow: 0 30px 80px rgba(0, 0, 0, .3), 0 0 42px rgba(255, 255, 255, .1); transform: rotate(-2.6deg); }
.hero-browser { animation: hero-browser-arrive .9s .12s var(--ease-out) both; }
@keyframes hero-browser-arrive {
  from { opacity: .35; transform: translate3d(34px, 20px, 0) rotate(-5deg) scale(.975); filter: blur(5px); }
  to { opacity: 1; transform: translate3d(0, 0, 0) rotate(-2.6deg) scale(1); filter: blur(0); }
}
.browser-top { height: 38px; display: flex; align-items: center; gap: 7px; padding: 0 14px; border-bottom: 1px solid var(--line); background: #161a1b; }
.browser-top span { width: 8px; height: 8px; border-radius: 50%; background: #8d9291; }
.browser-top span:nth-child(2) { background: #5e6665; }
.browser-top span:nth-child(3) { background: var(--accent-contrast); }
.browser-top small { margin-left: 12px; color: var(--muted); font-size: 10px; letter-spacing: .05em; }
.browser-body { position: relative; min-height: 330px; overflow: hidden; background: #171c1d; }
.browser-nav { position: relative; z-index: 1; display: flex; align-items: center; gap: 18px; padding: 16px 21px; color: #e2e2df; font-size: 9px; }
.browser-nav strong { margin-right: auto; font-size: 12px; }
.browser-nav b { padding: 8px 12px; border: 1px solid var(--accent-contrast); color: var(--accent-contrast); font-weight: 500; }
.browser-copy { position: absolute; z-index: 2; top: 94px; left: 28px; width: 240px; display: grid; gap: 10px; }
.browser-copy p { margin: 0; color: var(--accent-contrast); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.browser-copy strong { font-family: var(--serif); font-size: 38px; font-weight: 500; line-height: .9; }
.browser-copy span { color: rgba(244, 247, 250, .72); font-size: 11px; line-height: 1.45; }
.browser-body > img { width: 100%; height: 330px; object-fit: cover; opacity: .55; filter: saturate(.75) brightness(.72); }
.hero-route-line { position: absolute; z-index: 3; width: 72%; height: 180px; border-right: 1px solid var(--accent-contrast); border-bottom: 1px solid var(--accent-contrast); border-radius: 0 0 40px 0; transform: translate(8%, 20%) rotate(1deg); filter: drop-shadow(0 0 7px rgba(255, 255, 255, .3)); clip-path: inset(0 100% 0 0); animation: route-draw .85s .58s var(--ease-out) forwards; }
@keyframes route-draw { to { clip-path: inset(0 0 0 0); } }
.hero-route-label { position: absolute; right: 7%; bottom: 48px; z-index: 4; display: flex; align-items: center; gap: 9px; color: var(--accent-contrast); font-size: 10px; letter-spacing: .13em; text-transform: uppercase; animation: label-arrive .6s .82s var(--ease-out) both; }
@keyframes label-arrive { from { opacity: .2; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.hero-route-label svg { width: 14px; }
.scroll-cue { position: absolute; right: 6%; bottom: 28px; z-index: 2; display: inline-flex; align-items: center; gap: 9px; color: var(--muted); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.scroll-cue svg { width: 16px; color: var(--accent-contrast); }

.section { padding: 140px 0; border-top: 1px solid var(--line); }
.section-title { max-width: 720px; }
.section-title h2 { margin: 0; font-family: var(--serif); font-size: clamp(48px, 6vw, 86px); font-weight: 500; letter-spacing: -.05em; line-height: .9; }
.section-title > p { max-width: 560px; margin: 28px 0 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.section-title-center { margin-inline: auto; text-align: center; }
.section-title-center > p { margin-inline: auto; }
.problems { background: var(--paper); color: var(--paper-ink); }
.problems .eyebrow { color: var(--accent); }
.problems .problem-statement p { color: var(--paper-ink); }
.problems .problem-statement p + p { color: var(--accent); }
.problems .problem-field, .problems .problem-field > div { border-color: rgba(36, 37, 39, .18); }
.problems .problem-field svg { color: var(--accent); }
.problems .problem-field span { color: var(--paper-ink); }
.problem-statement { display: grid; grid-template-columns: repeat(2, 1fr); gap: 60px; max-width: 780px; margin: 90px 0 55px auto; }
.problem-statement p { margin: 0; color: var(--text); font-family: var(--sans); font-size: clamp(25px, 2.4vw, 36px); font-weight: 500; letter-spacing: -.03em; line-height: 1.05; }
.problem-statement p + p { color: var(--accent-contrast); }
.problem-field { display: grid; grid-template-columns: repeat(6, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.problem-field > div { min-height: 155px; display: flex; flex-direction: column; justify-content: space-between; gap: 30px; padding: 25px 18px 22px 0; border-right: 1px solid var(--line); }
.problem-field > div + div { padding-left: 18px; }
.problem-field > div:last-child { border-right: 0; }
.problem-field svg { width: 24px; height: 24px; color: var(--accent-contrast); }
.problem-field span { max-width: 110px; font-size: 13px; line-height: 1.25; }

.work-section { background: var(--ink); }
.project-list { margin-top: 96px; }
.project-feature { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(280px, .75fr); align-items: center; gap: 72px; padding: 70px 0; border-top: 1px solid var(--line); }
.project-feature:last-child { border-bottom: 1px solid var(--line); }
.project-feature-reverse { grid-template-columns: minmax(280px, .75fr) minmax(0, 1.45fr); }
.project-feature-reverse .project-visual { order: 2; }
.project-feature-reverse .project-copy { order: 1; }
.project-visual { position: relative; overflow: hidden; min-height: 390px; border: 1px solid var(--line-bright); background: #16191a; }
.project-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(130deg, transparent 35%, rgba(255, 255, 255, .12)); pointer-events: none; }
.project-visual img { width: 100%; height: 390px; object-fit: cover; transition: transform .45s ease; }
.project-feature:hover .project-visual img { transform: scale(1.035); }
.project-index { position: absolute; top: 20px; left: 22px; z-index: 2; color: var(--accent-contrast); font-size: 11px; letter-spacing: .15em; }
.project-copy { max-width: 400px; }
.project-meta, .project-service, .capability-category, .process-label { margin: 0; color: var(--accent-contrast); font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.project-copy h3 { margin: 18px 0 10px; font-family: var(--serif); font-size: clamp(34px, 4vw, 56px); font-weight: 500; line-height: .9; letter-spacing: -.04em; }
.project-copy .project-service { color: var(--muted); }
.project-copy h4 { margin: 55px 0 14px; font-size: 18px; line-height: 1.25; }
.project-copy > p:not(.project-meta):not(.project-service) { color: var(--muted); font-size: 14px; line-height: 1.7; }
.text-link, .product-link { display: inline-flex; align-items: center; gap: 9px; margin-top: 28px; color: var(--accent-contrast); font-size: 12px; font-weight: 600; }
.text-link svg, .product-link svg { width: 16px; transition: transform .2s ease; }
.text-link:hover svg, .product-link:hover svg { transform: translate(3px, -3px); }
.section-end-link { display: flex; justify-content: flex-end; }

.process-section { background: #15191a; }
.process-list { margin-top: 90px; }
.process-row { display: grid; grid-template-columns: 90px 88px minmax(0, 1fr); align-items: start; gap: 38px; padding: 42px 0; border-top: 1px solid var(--line); }
.process-row:last-child { border-bottom: 1px solid var(--line); }
.process-number { color: var(--accent-contrast); font-size: 14px; letter-spacing: .14em; }
.process-icon { display: grid; width: 60px; height: 60px; place-items: center; border: 1px solid var(--line-bright); color: var(--accent-contrast); }
.process-icon svg { width: 27px; height: 27px; }
.process-row h3 { margin: 11px 0 12px; font-family: var(--serif); font-size: clamp(32px, 4vw, 56px); font-weight: 500; line-height: .92; letter-spacing: -.04em; }
.process-row > div:last-child > p:last-child { max-width: 600px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }

.capabilities { background: var(--ink); }
.capability-list { margin-top: 90px; border-top: 1px solid var(--line); }
.capability-list article { display: grid; grid-template-columns: 68px 38px 1fr; gap: 22px; align-items: start; padding: 34px 0; border-bottom: 1px solid var(--line); }
.capability-list article > svg { width: 27px; height: 27px; color: var(--accent-contrast); }
.capability-number { color: var(--muted); font-size: 12px; letter-spacing: .11em; }
.capability-list h3 { margin: 8px 0 11px; font-family: var(--serif); font-size: 41px; font-weight: 500; line-height: .95; letter-spacing: -.04em; }
.capability-list p { max-width: 540px; margin: 0; color: var(--muted); font-size: 14px; }
.capability-list ul { display: flex; flex-wrap: wrap; gap: 7px 22px; max-width: 720px; margin: 22px 0 0; padding: 0; list-style: none; color: var(--text); font-size: 13px; }
.capability-list li::before { content: "—"; margin-right: 8px; color: var(--accent-contrast); }

.impact { background: #15191a; }
.impact-intro { max-width: 440px; margin: 40px 0 60px auto; color: var(--muted); font-size: 15px; }
.comparison { border-top: 1px solid var(--line); }
.comparison-head, .comparison-row { display: grid; grid-template-columns: 1fr 1.1fr 1.1fr; gap: 20px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--line); }
.comparison-head { color: var(--accent-contrast); font-size: 10px; letter-spacing: .15em; text-transform: uppercase; }
.comparison-row { min-height: 76px; font-size: 14px; }
.comparison-row > span:first-child { color: var(--muted); text-transform: uppercase; font-size: 10px; letter-spacing: .14em; }
.comparison-row strong { font-weight: 500; }
.comparison-row strong::before { content: "✓"; margin-right: 9px; color: var(--accent-contrast); }
.comparison-row > span:last-child { color: var(--muted); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 76px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.proof-grid > div { min-height: 205px; padding: 24px 24px 24px 0; border-right: 1px solid var(--line); }
.proof-grid > div + div { padding-left: 24px; }
.proof-grid > div:last-child { border-right: 0; }
.proof-grid svg { width: 26px; height: 26px; color: var(--accent-contrast); }
.proof-grid h3 { margin: 28px 0 9px; font-size: 15px; }
.proof-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }

.bridge-section { background: radial-gradient(circle at 78% 50%, rgba(255, 255, 255, .08), transparent 35%), var(--ink-2); }
.bridge-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 84px; align-items: center; }
.bridge-copy h2 { margin: 0; font-family: var(--serif); font-size: clamp(43px, 5.5vw, 78px); font-weight: 500; letter-spacing: -.05em; line-height: .9; }
.bridge-copy > p { max-width: 460px; margin: 30px 0 34px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.bridge-visual { position: relative; padding: 42px 0 36px; }
.bridge-visual::before { content: ""; position: absolute; top: 0; bottom: 0; left: 10px; border-left: 1px solid rgba(255, 255, 255, .24); }
.workflow-route { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.workflow-step { position: relative; display: flex; min-height: 145px; flex-direction: column; align-items: flex-start; gap: 20px; padding: 20px 12px 18px; border: 1px solid var(--line-bright); background: rgba(12, 18, 19, .68); }
.workflow-node { display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid var(--accent-contrast); color: var(--accent-contrast); border-radius: 50%; }
.workflow-node svg { width: 20px; height: 20px; }
.workflow-step strong { display: block; font-size: 13px; text-transform: capitalize; }
.workflow-step small { display: block; margin-top: 5px; color: var(--muted); font-size: 11px; line-height: 1.35; }
.workflow-arrow { position: absolute; top: 38px; right: -19px; z-index: 2; display: grid; width: 28px; height: 28px; place-items: center; color: var(--accent-contrast); background: var(--ink-2); }
.workflow-arrow svg { width: 16px; }
.workflow-route-compact { grid-template-columns: 1fr; gap: 9px; padding: 25px; }
.workflow-route-compact .workflow-step { min-height: auto; flex-direction: row; align-items: center; padding: 13px; gap: 12px; }
.workflow-route-compact .workflow-node { width: 32px; height: 32px; }
.workflow-route-compact .workflow-node svg { width: 15px; }
.workflow-route-compact .workflow-arrow { top: auto; right: auto; bottom: -19px; left: 25px; transform: rotate(90deg); }

.product-band { overflow: hidden; background: radial-gradient(circle at 75% 15%, rgba(255, 255, 255, .1), transparent 28%), linear-gradient(120deg, #171719, #1b1d1e 55%, #1d2020); }
.product-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 70px; min-height: 560px; }
.product-copy h2 { margin: 0; font-family: var(--serif); font-size: clamp(58px, 7vw, 100px); font-weight: 500; letter-spacing: -.06em; line-height: .82; }
.product-copy .product-subtitle { margin: 25px 0 12px; color: var(--green); font-size: 19px; }
.product-copy > p:not(.eyebrow):not(.product-subtitle) { max-width: 470px; margin: 0; color: #d1d1cf; font-size: 15px; line-height: 1.7; }
.product-link { color: var(--green); }
.product-visual { position: relative; min-height: 500px; display: flex; align-items: center; justify-content: center; }
.product-visual > img { width: 260px; max-height: 520px; object-fit: contain; filter: drop-shadow(0 25px 35px rgba(0, 0, 0, .34)); transform: rotate(4deg); }
.product-route { position: absolute; right: 2%; bottom: 65px; display: flex; align-items: center; gap: 10px; color: var(--green); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.product-route svg { width: 15px; color: var(--accent-contrast); }

.insights { background: var(--ink); }
.insight-list { margin-top: 76px; border-top: 1px solid var(--line); }
.insight-row { display: grid; grid-template-columns: 70px 1fr 28px; align-items: center; gap: 22px; padding: 30px 0; border-bottom: 1px solid var(--line); transition: padding .25s ease, color .25s ease; }
.insight-row:hover { padding-left: 12px; color: var(--accent-contrast); }
.insight-row > span { color: var(--accent-contrast); font-size: 12px; letter-spacing: .12em; }
.insight-row p { margin: 0 0 9px; color: var(--muted); font-size: 10px; letter-spacing: .15em; text-transform: uppercase; }
.insight-row h3 { max-width: 720px; margin: 0; font-family: var(--serif); font-size: 35px; font-weight: 500; line-height: .95; letter-spacing: -.03em; }
.insight-row small { display: block; max-width: 600px; margin-top: 11px; color: var(--muted); font-size: 13px; }
.insight-row > svg { width: 22px; color: var(--accent-contrast); }
.faq-section { background: #15191a; }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 120px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-row { border-bottom: 1px solid var(--line); }
.faq-row button { width: 100%; display: grid; grid-template-columns: 50px 1fr 22px; gap: 15px; align-items: center; padding: 24px 0; border: 0; background: transparent; text-align: left; cursor: pointer; }
.faq-row button > span { color: var(--accent-contrast); font-size: 11px; letter-spacing: .12em; }
.faq-row button strong { font-size: 15px; font-weight: 500; }
.faq-row button svg { width: 19px; color: var(--accent-contrast); }
.faq-row > p { max-width: 650px; margin: -3px 0 25px 65px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.final-cta { --focus-ring: var(--ink); padding: 120px 0; background: var(--accent-contrast); color: var(--ink); }
.final-cta-inner { display: flex; align-items: flex-end; justify-content: space-between; gap: 65px; }
.final-cta .eyebrow { color: var(--ink); opacity: .7; }
.final-cta h2 { max-width: 730px; margin: 0; font-family: var(--serif); font-size: clamp(53px, 6.7vw, 94px); font-weight: 500; letter-spacing: -.06em; line-height: .84; }
.final-cta p { max-width: 500px; margin: 26px 0 0; font-size: 15px; line-height: 1.65; }
.final-cta .button-primary { background: var(--ink); color: var(--text); }
.final-cta .button-primary:hover { background: #242527; }
.final-cta .button-secondary { border-color: rgba(36, 37, 39, .5); color: var(--ink); }
.final-cta .button-secondary:hover { border-color: var(--ink); }

.inner-hero { min-height: 620px; display: flex; align-items: center; padding-bottom: 32px; background: radial-gradient(circle at 80% 50%, rgba(255, 255, 255, .08), transparent 35%), var(--ink); }
.inner-hero-grid { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 80px; }
.inner-hero h1 { max-width: 650px; font-size: clamp(55px, 6.5vw, 100px); }
.inner-hero p { max-width: 500px; margin: 34px 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.inner-hero-art { min-height: 420px; display: grid; place-items: center; }
.art-window { width: min(100%, 620px); border: 1px solid var(--line-bright); background: var(--ink-2); box-shadow: 0 30px 70px rgba(0, 0, 0, .3); transform: rotate(2deg); }
.art-window > img { width: 100%; height: 380px; object-fit: cover; opacity: .7; }
.automation-art .art-window { transform: rotate(-2deg); }
.automation-art .workflow-route { padding: 27px; }
.page-intro { padding: 150px 0 130px; background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, .08), transparent 28%), var(--ink); }
.page-intro h1 { max-width: 900px; font-size: clamp(66px, 9vw, 132px); }
.page-intro p { max-width: 550px; margin: 34px 0 0; color: var(--muted); font-size: 18px; line-height: 1.65; }
.page-intro + .work-section { border-top: 0; }
.service-intro { background: #15191a; }
.split-heading { display: grid; grid-template-columns: 1fr .8fr; gap: 90px; align-items: end; }
.split-heading > p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.service-feature-grid, .estate-feature-list { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 95px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-feature-grid { width: var(--shell); margin-right: auto; margin-left: auto; }
.service-feature-grid article, .estate-feature-list article { min-height: 290px; padding: 25px 22px 30px 0; border-right: 1px solid var(--line); }
.service-feature-grid article + article, .estate-feature-list article + article { padding-left: 22px; }
.service-feature-grid article:last-child, .estate-feature-list article:last-child { border-right: 0; }
.service-feature-grid article > span, .estate-feature-list article > span { color: var(--accent-contrast); font-size: 11px; letter-spacing: .12em; }
.service-feature-grid article > svg, .estate-feature-list article > svg { display: block; width: 27px; height: 27px; margin: 45px 0 24px; color: var(--accent-contrast); }
.service-feature-grid h3, .estate-feature-list h3 { margin: 0 0 12px; font-family: var(--serif); font-size: 31px; font-weight: 500; line-height: .95; }
.service-feature-grid p, .estate-feature-list p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.service-bridge { background: var(--ink); }
.service-bridge .workflow-route { margin-top: 76px; }
.product-hero { background: radial-gradient(circle at 80% 40%, rgba(255, 255, 255, .11), transparent 35%), linear-gradient(120deg, #171719, #1d2021); }
.product-hero-grid { min-height: 620px; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 70px; }
.product-hero h1 { max-width: 680px; font-size: clamp(58px, 7.2vw, 105px); }
.product-hero p { max-width: 530px; margin: 34px 0; color: #d1d1cf; font-size: 16px; line-height: 1.7; }
.product-hero-grid > div:last-child { height: 100%; display: flex; align-items: flex-end; justify-content: center; }
.product-hero-grid img { width: 330px; max-height: 610px; object-fit: contain; filter: drop-shadow(0 30px 35px rgba(0, 0, 0, .34)); transform: rotate(4deg); }
.estate-feature-list { grid-template-columns: repeat(3, 1fr); }
.estate-workflow { background: #151719; }
.estate-workflow .workflow-route { margin-top: 76px; }
.project-detail { background: #15191a; }
.project-detail-grid { display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 90px; }
.project-detail-grid > img { width: 100%; min-height: 480px; object-fit: cover; border: 1px solid var(--line-bright); }
.project-detail-grid h2 { margin: 18px 0; font-family: var(--serif); font-size: 58px; font-weight: 500; letter-spacing: -.05em; line-height: .9; }
.project-detail-grid p:not(.project-service) { color: var(--muted); line-height: 1.7; }
.insight-page-list { max-width: 940px; }
.insights-index {
  --text: var(--paper-ink);
  --muted: var(--paper-muted);
  --line: rgba(36, 37, 39, .16);
  --line-bright: rgba(36, 37, 39, .28);
  --focus-ring: var(--accent);
  background: var(--paper);
  color: var(--paper-ink);
}
.insight-page-row { display: grid; grid-template-columns: 70px 1fr 25px; gap: 22px; align-items: center; padding: 38px 0; border-top: 1px solid var(--line); }
.insight-page-row:last-child { border-bottom: 1px solid var(--line); }
.insight-page-row > span { color: var(--accent); font-size: 12px; }
.insight-page-row > div > p:first-child { color: var(--accent); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.insight-page-row h2 { margin: 10px 0; font-family: var(--serif); font-size: 45px; font-weight: 500; line-height: .95; letter-spacing: -.04em; }
.insight-page-row > div > p:last-child { margin: 0; color: var(--paper-muted); font-size: 14px; }
.insight-page-row > svg { color: var(--accent); }
.insight-page-row:hover { padding-left: 12px; color: var(--paper-ink); background: rgba(36, 37, 39, .035); }
.article-intro { padding-bottom: 90px; }
.article-body { background: #15191a; }
.article-column { max-width: 720px; margin-inline: auto; }
.article-column .article-lead { color: var(--text); font-family: var(--sans); font-size: 24px; font-weight: 500; letter-spacing: -.025em; line-height: 1.3; }
.article-column h2 { margin: 60px 0 16px; font-family: var(--serif); font-size: 48px; font-weight: 500; line-height: .95; }
.article-column p:not(.article-lead) { color: var(--muted); font-size: 16px; line-height: 1.8; }
.about-story { background: #15191a; }
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: center; }
.about-grid > img { width: 100%; height: 480px; object-fit: cover; border: 1px solid var(--line-bright); }
.about-grid > div > p { max-width: 590px; color: var(--muted); font-size: 16px; line-height: 1.75; }
.about-principles { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 50px; border-top: 1px solid var(--line); }
.about-principles > div { display: grid; gap: 12px; padding: 22px 20px 0 0; border-right: 1px solid var(--line); }
.about-principles > div + div { padding-left: 20px; }
.about-principles > div:last-child { border: 0; }
.about-principles svg { width: 25px; height: 25px; color: var(--accent-contrast); }
.about-principles strong { font-size: 14px; }
.about-principles span { color: var(--muted); font-size: 12px; line-height: 1.45; }
.about-services { background: var(--ink); }
.approach-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 84px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.approach-grid > div { min-height: 220px; padding: 26px 25px 26px 0; border-right: 1px solid var(--line); }
.approach-grid > div + div { padding-left: 25px; }
.approach-grid > div:last-child { border: 0; }
.approach-grid span { color: var(--accent-contrast); font-size: 12px; }
.approach-grid h3 { margin: 45px 0 10px; font-family: var(--serif); font-size: 35px; font-weight: 500; line-height: .95; }
.approach-grid p { margin: 0; color: var(--muted); font-size: 14px; }
.contact-section { background: #15191a; }
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 90px; }
.contact-grid form { padding: 52px; border: 1px solid var(--line-bright); background: rgba(12, 18, 19, .68); }
.contact-grid form .section-title h2 { font-size: 56px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin: 54px 0 30px; }
.form-grid label { display: grid; gap: 8px; color: rgba(255, 255, 255, .84); font-size: 12px; font-weight: 500; letter-spacing: .01em; }
.field-label { display: block; }
.required-mark { color: var(--accent-contrast); }
.form-hint { margin: 32px 0 -28px; color: rgba(255, 255, 255, .68); font-size: 12px; }
.field-error { color: var(--accent-contrast); font-size: 12px; font-weight: 500; }
.form-grid input, .form-grid select, .form-grid textarea { width: 100%; border: 1px solid var(--line-bright); border-radius: 0; outline: 0; padding: 14px; background: rgba(1, 16, 21, .72); color: var(--text); }
.form-grid textarea.resize-none { resize: none; min-height: 160px; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--accent-contrast); box-shadow: 0 0 0 3px rgba(255, 255, 255, .12); }
.form-grid input[aria-invalid="true"], .form-grid select[aria-invalid="true"], .form-grid textarea[aria-invalid="true"] { border-color: var(--accent-contrast); }
.form-wide { grid-column: 1 / -1; }
.form-status { display: flex; gap: 8px; align-items: center; margin: 24px 0 0; color: var(--accent-contrast); font-size: 13px; }
.form-status svg { width: 19px; }
.contact-aside { display: grid; align-content: center; gap: 1px; }
.contact-aside > div { padding: 27px 0; border-top: 1px solid var(--line); }
.contact-aside > div:last-child { border-bottom: 1px solid var(--line); }
.contact-aside svg { width: 26px; height: 26px; color: var(--accent-contrast); }
.contact-aside h3 { margin: 20px 0 7px; font-family: var(--serif); font-size: 34px; font-weight: 500; line-height: .95; }
.contact-aside p { max-width: 320px; margin: 0; color: var(--muted); font-size: 14px; }
.not-found { min-height: 70vh; display: grid; place-content: center; justify-items: center; gap: 28px; text-align: center; }
.not-found h1 { margin: 0; font-family: var(--serif); font-size: clamp(55px, 9vw, 110px); font-weight: 500; line-height: .86; }

.site-footer { padding: 78px 0 0; background: #030708; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 50px; }
.footer-brand p { max-width: 210px; margin: 22px 0 0; color: var(--muted); font-size: 13px; }
.footer-grid h3 { margin: 0 0 18px; color: var(--text); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; }
.footer-grid > div:not(.footer-brand) > a, .footer-grid > div:not(.footer-brand) > span { display: block; margin: 0 0 10px; color: var(--muted); font-size: 13px; }
.footer-grid > div:not(.footer-brand) > a:hover { color: var(--accent-contrast); }
.site-footer .footer-contact-link,
.site-footer .button { display: inline-flex; width: fit-content; min-height: 36px; align-items: center; gap: 8px; margin-top: 6px; margin-bottom: 0; padding: 0; color: var(--text); font-size: 12px; font-weight: 600; line-height: 1.2; }
.site-footer .footer-contact-link:hover,
.site-footer .button:hover { color: var(--accent-contrast); }
.site-footer .footer-contact-link svg,
.site-footer .button svg { width: 14px; height: 14px; }
.social-links { display: flex; gap: 12px; margin-top: 18px; }
.social-links a { display: grid; width: 30px; height: 30px; place-items: center; border: 1px solid var(--line-bright); color: var(--muted); }
.social-links a:hover { color: var(--accent-contrast); border-color: var(--accent-contrast); }
.social-links svg { width: 16px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 65px; padding: 22px 0; border-top: 1px solid var(--line); color: #777c7d; font-size: 11px; }

@media (max-width: 1050px) {
  :root { --shell: min(100% - 52px, 920px); }
  .desktop-nav { gap: 17px; }
  .desktop-nav > a, .nav-disclosure > summary { font-size: 11px; }
  .hero-grid, .inner-hero-grid, .product-hero-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
  .hero-copy h1 { font-size: clamp(62px, 8vw, 92px); }
  .hero-stage { min-height: 430px; }
  .hero-browser { width: 115%; }
  .problem-field { grid-template-columns: repeat(3, 1fr); }
  .problem-field > div:nth-child(3) { border-right: 0; }
  .problem-field > div:nth-child(4) { border-top: 1px solid var(--line); }
  .problem-field > div:nth-child(5) { border-top: 1px solid var(--line); }
  .problem-field > div:nth-child(6) { border-top: 1px solid var(--line); }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid > div:nth-child(2) { border-right: 0; }
  .proof-grid > div:nth-child(3), .proof-grid > div:nth-child(4) { border-top: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  :root { --shell: calc(100% - 40px); --header-height: 68px; }
  .site-header { min-height: 68px; background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; }
  .site-header::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; background: linear-gradient(180deg, rgba(1, 16, 21, .86), rgba(1, 16, 21, .74)); backdrop-filter: blur(18px) saturate(110%); -webkit-backdrop-filter: blur(18px) saturate(110%); }
  .header-inner { position: relative; z-index: 1; min-height: 68px; display: flex; justify-content: space-between; gap: 14px; }
  .desktop-nav, .header-inner > .button { display: none; }
  .menu-button { display: grid; place-items: center; }
  .mobile-nav { position: fixed; top: 69px; right: 0; bottom: auto; left: 0; z-index: 48; display: flex; width: 100%; height: calc(100vh - 69px); height: calc(100dvh - 69px); max-height: calc(100vh - 69px); max-height: calc(100dvh - 69px); visibility: hidden; pointer-events: none; flex-direction: column; gap: 0; padding: 28px 20px max(30px, env(safe-area-inset-bottom)); overflow-y: auto; overscroll-behavior: contain; border-top: 1px solid rgba(255, 255, 255, .12); background: linear-gradient(135deg, rgba(255, 255, 255, .05), transparent 44%), rgba(1, 16, 21, .6); backdrop-filter: blur(18px) saturate(110%); -webkit-backdrop-filter: blur(18px) saturate(110%); box-shadow: 0 24px 60px rgba(0, 0, 0, .34); transform: translateX(100%); transition: transform .28s ease, visibility 0s linear .28s; }
  .mobile-nav.open { visibility: visible; pointer-events: auto; transform: translateX(0); transition-delay: 0s; }
  .mobile-nav > a { display: flex; align-items: baseline; gap: 18px; padding: 19px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 42px; line-height: .85; }
  .mobile-nav > a span { color: var(--accent-contrast); font-family: var(--sans); font-size: 10px; letter-spacing: .1em; }
  .mobile-service-links { display: grid; gap: 12px; margin-top: 28px; padding: 23px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .mobile-service-links > span { color: var(--accent-contrast); font-size: 10px; letter-spacing: .18em; }
  .mobile-service-links a { display: flex; justify-content: space-between; color: var(--muted); font-size: 14px; }
  .mobile-service-links, .mobile-service-links a { font-family: var(--sans); }
  .mobile-service-links a svg { width: 16px; }
  .mobile-nav > .button { margin-top: 28px; }
  .hero-home { min-height: auto; }
  .hero-grid, .inner-hero-grid, .product-hero-grid, .product-grid, .bridge-grid, .project-detail-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 45px; }
  .hero-grid > *, .inner-hero-grid > *, .product-hero-grid > *, .product-grid > *, .bridge-grid > *, .project-detail-grid > *, .about-grid > *, .contact-grid > *, .split-heading > * { min-width: 0; }
  .hero-copy { padding: 82px 0 25px; }
  .hero-copy h1, .page-intro h1, .inner-hero h1, .product-hero h1 { font-size: clamp(59px, 15vw, 105px); }
  .hero-kicker { margin-top: 31px; font-size: 17px; }
  .hero-lede { font-size: 14px; }
  .hero-stage { min-height: 380px; margin-bottom: 52px; }
  .hero-browser { width: 100%; }
  .browser-body { min-height: 255px; }
  .browser-body > img { height: 255px; }
  .browser-copy { top: 72px; left: 20px; width: 190px; }
  .browser-copy strong { font-size: 31px; }
  .browser-nav { gap: 8px; padding: 13px; font-size: 7px; }
  .browser-nav strong { font-size: 9px; }
  .browser-nav b { padding: 6px 7px; }
  .hero-route-label { right: 0; bottom: 14px; font-size: 8px; }
  .scroll-cue { display: none; }
  .section { padding: 88px 0; }
  main > :is(.hero, .section, .page-intro, .product-hero, .product-band, .final-cta) ~ :is(.hero, .section, .page-intro, .product-hero, .product-band, .final-cta) { margin-top: -18px; border-radius: 18px 18px 0 0; }
  .section-title h2 { font-size: clamp(49px, 12vw, 76px); }
  .problem-statement { grid-template-columns: 1fr; gap: 18px; margin: 60px 0 44px; }
  .problem-statement p { font-size: 31px; }
  .problem-field { grid-template-columns: repeat(2, 1fr); }
  .problem-field > div, .problem-field > div + div { padding: 20px 14px 20px 0; border-top: 1px solid var(--line); }
  .problem-field > div:nth-child(odd) { border-right: 1px solid var(--line); }
  .problem-field > div:nth-child(even) { padding-left: 14px; border-right: 0; }
  .project-list { margin-top: 58px; }
  .project-feature, .project-feature-reverse { grid-template-columns: 1fr; gap: 28px; padding: 48px 0; }
  .project-feature-reverse .project-visual, .project-feature-reverse .project-copy { order: initial; }
  .project-visual, .project-visual img { min-height: 260px; height: 260px; }
  .project-copy h3 { font-size: 46px; }
  .project-copy h4 { margin-top: 30px; }
  .process-list, .capability-list { margin-top: 58px; }
  .process-row { grid-template-columns: 46px 54px 1fr; gap: 16px; padding: 30px 0; }
  .process-icon { width: 48px; height: 48px; }
  .process-icon svg { width: 21px; }
  .process-row h3 { font-size: 35px; }
  .process-row > div:last-child > p:last-child { font-size: 14px; }
  .capability-list article { grid-template-columns: 42px 28px 1fr; gap: 14px; padding: 27px 0; }
  .capability-list h3 { font-size: 35px; }
  .capability-list ul { display: grid; gap: 6px; }
  .impact-intro { margin: 35px 0 45px; }
  .comparison-head, .comparison-row { grid-template-columns: .75fr 1fr 1fr; gap: 12px; font-size: 12px; }
  .comparison-row { min-height: 89px; }
  .comparison-row > span:first-child, .comparison-head { font-size: 8px; }
  .proof-grid { margin-top: 55px; }
  .bridge-grid { gap: 20px; }
  .bridge-copy h2 { font-size: clamp(47px, 12vw, 75px); }
  .bridge-visual { padding: 25px 0 0; }
  .workflow-route { grid-template-columns: 1fr 1fr; gap: 10px; }
  .workflow-step { min-height: 134px; }
  .workflow-arrow { right: -18px; }
  .workflow-step:nth-child(2) .workflow-arrow { right: auto; bottom: -18px; left: 42%; top: auto; transform: rotate(90deg); }
  .workflow-step:nth-child(3) .workflow-arrow { right: -18px; }
  .workflow-step:nth-child(4) { margin-top: 18px; }
  .product-grid { min-height: 0; padding-block: 88px; gap: 0; }
  .product-visual { min-height: 390px; }
  .product-visual > img { width: 215px; max-height: 410px; }
  .product-route { right: 0; bottom: 21px; font-size: 8px; }
  .insight-list { margin-top: 56px; }
  .insight-row { grid-template-columns: 44px 1fr 20px; gap: 10px; padding: 25px 0; }
  .insight-row h3 { font-size: 29px; }
  .faq-grid { grid-template-columns: minmax(0, 1fr); gap: 42px; }
  .faq-grid > *, .faq-list, .faq-row, .faq-row button { min-width: 0; max-width: 100%; }
  .final-cta { padding: 90px 0; }
  .final-cta-inner { display: grid; gap: 35px; }
  .final-cta h2 { font-size: clamp(53px, 13vw, 80px); }
  .page-intro { padding: 100px 0 90px; }
  .page-intro p { font-size: 16px; }
  .inner-hero, .product-hero { padding: 80px 0; }
  .inner-hero-grid, .product-hero-grid { min-height: 0; }
  .inner-hero-art { min-height: 310px; }
  .art-window > img { height: 260px; }
  .service-feature-grid, .estate-feature-list { grid-template-columns: repeat(2, 1fr); margin-top: 60px; }
  .service-feature-grid article, .estate-feature-list article, .service-feature-grid article + article, .estate-feature-list article + article { min-height: 230px; padding: 20px 15px; }
  .service-feature-grid article:nth-child(2n) { border-right: 0; }
  .service-feature-grid article:nth-child(n + 3) { border-top: 1px solid var(--line); }
  .service-feature-grid article > svg, .estate-feature-list article > svg { margin: 30px 0 18px; }
  .product-hero-grid img { width: 260px; max-height: 430px; }
  .product-hero-grid > div:last-child { min-height: 420px; }
  .estate-feature-list { grid-template-columns: repeat(2, 1fr); }
  .estate-feature-list article:nth-child(2n) { border-right: 0; }
  .estate-feature-list article:nth-child(n + 3) { border-top: 1px solid var(--line); }
  .project-detail-grid > img { min-height: 300px; height: 300px; }
  .project-detail-grid h2 { font-size: 47px; }
  .insight-page-row { grid-template-columns: 44px 1fr 20px; gap: 10px; }
  .insight-page-row h2 { font-size: 34px; }
  .article-column .article-lead { font-size: 28px; }
  .about-grid > img { height: 300px; }
  .about-principles { grid-template-columns: 1fr; }
  .about-principles > div, .about-principles > div + div { padding: 18px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .approach-grid { grid-template-columns: 1fr; margin-top: 55px; }
  .approach-grid > div, .approach-grid > div + div { min-height: 0; padding: 22px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .approach-grid h3 { margin: 25px 0 8px; }
  .contact-grid form { min-width: 0; padding: 30px 22px; }
  .contact-grid form .section-title h2 { font-size: 44px; }
  .form-grid { grid-template-columns: 1fr; margin-top: 40px; }
  .form-wide { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 25px; }
  .footer-brand, .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { display: grid; margin-top: 45px; }
}

@media (max-width: 520px) {
  :root { --shell: calc(100% - 32px); }
  .brand { font-size: 10px; }
  .brand img { width: 27px; height: 27px; }
  .mobile-nav > a { font-size: 36px; }
  .hero-copy h1, .page-intro h1, .inner-hero h1, .product-hero h1 { font-size: clamp(53px, 16vw, 79px); }
  .hero-stage { min-height: 320px; }
  .browser-body { min-height: 215px; }
  .browser-body > img { height: 215px; }
  .browser-nav span { display: none; }
  .browser-copy { top: 60px; width: 165px; }
  .browser-copy strong { font-size: 26px; }
  .hero-route-label { position: relative; right: auto; bottom: auto; justify-content: center; margin-top: 27px; }
  .problem-field > div { min-height: 125px; }
  .problem-field span { font-size: 12px; }
  .project-copy h3 { font-size: 41px; }
  .process-row { grid-template-columns: 35px 42px 1fr; gap: 11px; }
  .process-number { font-size: 10px; }
  .process-icon { width: 40px; height: 40px; }
  .process-icon svg { width: 18px; }
  .process-row h3 { font-size: 28px; }
  .process-row > div:last-child > p:last-child { font-size: 13px; }
  .capability-list article { grid-template-columns: 31px 23px 1fr; gap: 10px; }
  .capability-list h3 { font-size: 29px; }
  .comparison-head, .comparison-row { grid-template-columns: .65fr 1.1fr 1fr; gap: 8px; }
  .comparison-row strong, .comparison-row > span:last-child { font-size: 11px; line-height: 1.35; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-grid > div, .proof-grid > div:nth-child(3), .proof-grid > div:nth-child(4), .proof-grid > div + div { min-height: 0; padding: 22px 0; border-right: 0; border-top: 1px solid var(--line); }
  .proof-grid > div:first-child { border-top: 0; }
  .workflow-route { grid-template-columns: 1fr; }
  .workflow-step, .workflow-step:nth-child(4) { min-height: 0; margin-top: 0; flex-direction: row; align-items: center; padding: 15px; }
  .workflow-arrow, .workflow-step:nth-child(2) .workflow-arrow, .workflow-step:nth-child(3) .workflow-arrow { top: auto; right: auto; bottom: -19px; left: 24px; transform: rotate(90deg); }
  .workflow-node { width: 39px; height: 39px; flex: 0 0 39px; }
  .workflow-step small { font-size: 10px; }
  .product-route { position: relative; right: auto; bottom: auto; justify-content: center; flex-wrap: wrap; margin-top: 24px; text-align: center; }
  .insight-row h3 { font-size: 25px; }
  .faq-row button { grid-template-columns: 36px 1fr 18px; gap: 8px; }
  .faq-row button strong { font-size: 14px; }
  .faq-row > p { margin-left: 44px; font-size: 13px; }
  .service-feature-grid, .estate-feature-list { grid-template-columns: 1fr; }
  .service-feature-grid article, .estate-feature-list article, .service-feature-grid article + article, .estate-feature-list article + article { min-height: 0; padding: 22px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-feature-grid article:nth-child(n + 3), .estate-feature-list article:nth-child(n + 3) { border-top: 0; }
  .service-feature-grid article:last-child, .estate-feature-list article:last-child { border-bottom: 0; }
  .project-detail-grid > img { height: 240px; min-height: 240px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-grid > div:last-child { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .001ms !important; animation: none !important; }
  .page-transition, .hero-copy > *, .hero-browser, .hero-route-line, .hero-route-label { opacity: 1; transform: none; filter: none; clip-path: none; }
  .site-header, .nav-menu, .mobile-nav { backdrop-filter: none; -webkit-backdrop-filter: none; }
  main.stack-ready > .is-stack-section { position: relative; top: auto; }
  main > :is(.hero, .section, .page-intro, .product-hero, .product-band, .final-cta) { box-shadow: none; }
  main > :is(.hero, .section, .page-intro, .product-hero, .product-band, .final-cta) ~ :is(.hero, .section, .page-intro, .product-hero, .product-band, .final-cta) { margin-top: 0; border-radius: 0; }
}

/* Paper-white diagnostic surfaces: the light layer repeats across routes as a shared system. */
:is(.problems, .process-section, .impact, .service-intro, .project-detail, .article-body, .about-story, .contact-section, .faq-section) {
  --text: var(--paper-ink);
  --muted: var(--paper-muted);
  --line: rgba(36, 37, 39, .16);
  --line-bright: rgba(36, 37, 39, .28);
  --focus-ring: var(--accent);
  background: var(--paper);
  color: var(--paper-ink);
}

:is(.problems, .process-section, .impact, .service-intro, .project-detail, .article-body, .about-story, .contact-section, .faq-section) .eyebrow,
:is(.problems, .process-section, .impact, .service-intro, .project-detail, .article-body, .about-story, .contact-section, .faq-section) .process-number,
:is(.problems, .process-section, .impact, .service-intro, .project-detail, .article-body, .about-story, .contact-section, .faq-section) .process-label,
:is(.problems, .process-section, .impact, .service-intro, .project-detail, .article-body, .about-story, .contact-section, .faq-section) .project-service,
:is(.problems, .process-section, .impact, .service-intro, .project-detail, .article-body, .about-story, .contact-section, .faq-section) .comparison-head,
:is(.problems, .process-section, .impact, .service-intro, .project-detail, .article-body, .about-story, .contact-section, .faq-section) .capability-category,
:is(.problems, .process-section, .impact, .service-intro, .project-detail, .article-body, .about-story, .contact-section, .faq-section) .service-feature-grid article > span,
:is(.problems, .process-section, .impact, .service-intro, .project-detail, .article-body, .about-story, .contact-section, .faq-section) .proof-grid svg,
:is(.problems, .process-section, .impact, .service-intro, .project-detail, .article-body, .about-story, .contact-section, .faq-section) .about-principles svg,
:is(.problems, .process-section, .impact, .service-intro, .project-detail, .article-body, .about-story, .contact-section, .faq-section) .contact-aside svg,
:is(.problems, .process-section, .impact, .service-intro, .project-detail, .article-body, .about-story, .contact-section, .faq-section) .faq-row button > span { color: var(--accent); }

:is(.problems, .process-section, .impact, .service-intro, .project-detail, .article-body, .about-story, .contact-section, .faq-section) .process-icon,
:is(.problems, .process-section, .impact, .service-intro, .project-detail, .article-body, .about-story, .contact-section, .faq-section) .text-link,
:is(.problems, .process-section, .impact, .service-intro, .project-detail, .article-body, .about-story, .contact-section, .faq-section) .product-link { color: var(--accent); }

.contact-section form { --text: #ffffff; --muted: #a2a6a6; --line: rgba(255, 255, 255, .17); --line-bright: rgba(255, 255, 255, .34); --focus-ring: var(--accent-contrast); color: var(--text); }
.contact-section form .section-title h2 { color: var(--text); }

/* Keep supplied imagery inside the charcoal / white system. */
.browser-body > img,
.project-visual img,
.art-window > img,
.project-detail-grid > img,
.about-grid > img,
.product-visual > img,
.product-hero-grid img { filter: grayscale(1) saturate(.18); }

.browser-body > img { filter: grayscale(1) saturate(.18) brightness(.72); }
.product-visual > img,
.product-hero-grid img { filter: grayscale(1) saturate(.18) drop-shadow(0 25px 35px rgba(0, 0, 0, .34)); }

/* WordPress and Elementor canvas normalization. The approved Site CSS is prepended at build time. */
html:has(body.hh-site-page) { margin-top: 0 !important; }
body.hh-site-page { margin: 0; overflow-x: clip; background: var(--ink); }
body.hh-site-page #wpadminbar { position: fixed; }
body.hh-site-page .elementor,
body.hh-site-page .elementor-section-wrap,
body.hh-site-page .elementor-section,
body.hh-site-page .elementor-container,
body.hh-site-page .elementor-column,
body.hh-site-page .elementor-widget-wrap,
body.hh-site-page .elementor-element,
body.hh-site-page .elementor-widget,
body.hh-site-page .elementor-widget-container {
  width: 100%;
  max-width: none;
  min-height: 0;
  margin: 0;
  padding: 0;
  overflow: visible;
}
body.hh-site-page .elementor-column-gap-default > .elementor-column > .elementor-element-populated,
body.hh-site-page .elementor-column-gap-narrow > .elementor-column > .elementor-element-populated,
body.hh-site-page .elementor-column-gap-extended > .elementor-column > .elementor-element-populated,
body.hh-site-page .elementor-column-gap-wide > .elementor-column > .elementor-element-populated,
body.hh-site-page .elementor-column-gap-wider > .elementor-column > .elementor-element-populated { padding: 0; }
body.hh-site-page .elementor-widget:not(:last-child) { margin-bottom: 0; }
body.hh-site-page .elementor-section.elementor-section-boxed > .elementor-container { max-width: none; }
body.hh-site-page #page,
body.hh-site-page #content,
body.hh-site-page .site-content,
body.hh-site-page .hh-global-template,
body.hh-site-page .hh-global-template > .elementor,
body.hh-site-page .hh-global-template .elementor-section-wrap,
body.hh-site-page .hh-global-template .elementor-section,
body.hh-site-page .hh-global-template .elementor-container,
body.hh-site-page .hh-global-template .elementor-column,
body.hh-site-page .hh-global-template .elementor-widget-wrap,
body.hh-site-page .hh-global-template .elementor-element,
body.hh-site-page .hh-global-template .elementor-widget,
body.hh-site-page .hh-global-template .elementor-widget-container {
  width: 100% !important;
  max-width: none !important;
}
body.hh-site-page .hh-global-template {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-right: calc(50% - 50vw) !important;
  margin-left: calc(50% - 50vw) !important;
}
body.hh-site-page .hh-global-template > .elementor,
body.hh-site-page .hh-global-template .elementor-section-wrap { display: contents; }
body.hh-site-page .hh-global-template .site-header,
body.hh-site-page .hh-global-template .site-footer { width: 100% !important; max-width: none !important; }
body.hh-site-page .hh-global-header { position: sticky; top: 0; z-index: 80; }
body.hh-site-page .hh-global-header .site-header { position: relative; top: auto; }
body.hh-site-page.admin-bar .hh-global-header { top: 32px; }
body.hh-site-page .hh-page-main { display: block; animation: page-settle .8s var(--ease-out) both; }
body.hh-site-page .hh-editor-note { padding: 12px 18px; background: #fff7d8; color: #242527; font: 600 13px/1.4 var(--sans); }
body.hh-site-page .hh-contact-status { margin: 22px 0 0; color: var(--text); font-size: 14px; }
body.hh-site-page .hh-contact-status.is-error { color: var(--accent-contrast); }
body.hh-site-page .faq-row > p[hidden] { display: none; }
body.hh-site-page .faq-row button svg { transition: transform .2s ease; }
body.hh-site-page .faq-row button[aria-expanded="true"] svg { transform: rotate(45deg); }
body.hh-site-page .menu-button,
body.hh-site-page .menu-button:hover,
body.hh-site-page .menu-button:focus,
body.hh-site-page .menu-button:active { background: transparent !important; border-color: var(--line-bright) !important; color: var(--text) !important; }
body.hh-site-page .faq-row button,
body.hh-site-page .faq-row button:hover,
body.hh-site-page .faq-row button:focus,
body.hh-site-page .faq-row button:active { background: transparent !important; color: inherit !important; }
body.hh-site-page button.button-primary:hover,
body.hh-site-page button.button-primary:focus,
body.hh-site-page button.button-primary:active { background: #d9d9d6 !important; color: var(--ink) !important; }
body.hh-site-page button.button-secondary:hover,
body.hh-site-page button.button-secondary:focus,
body.hh-site-page button.button-secondary:active { background: transparent !important; border-color: var(--accent-contrast) !important; color: var(--accent-contrast) !important; }
body.hh-site-page .form-grid input:focus,
body.hh-site-page .form-grid select:focus,
body.hh-site-page .form-grid textarea:focus { background: rgba(1, 16, 21, .72) !important; border-color: var(--accent-contrast) !important; color: var(--text) !important; }
body.hh-site-page .menu-button .hh-menu-close { display: none; }
body.hh-site-page.menu-open .menu-button .hh-menu-open { display: none; }
body.hh-site-page.menu-open .menu-button .hh-menu-close { display: block; }

@media (max-width: 820px) {
  body.hh-site-page.admin-bar .mobile-nav {
    top: 101px;
    height: calc(100vh - 101px);
    height: calc(100dvh - 101px);
    max-height: calc(100vh - 101px);
    max-height: calc(100dvh - 101px);
  }
}

@media (max-width: 782px) {
  body.hh-site-page.admin-bar .hh-global-header { top: 46px; }
  body.hh-site-page.admin-bar .mobile-nav {
    top: 115px;
    height: calc(100vh - 115px);
    height: calc(100dvh - 115px);
    max-height: calc(100vh - 115px);
    max-height: calc(100dvh - 115px);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.hh-site-page .hh-page-main { animation: none; }
}

