:root {
  color-scheme: light;
  --bg: #f3f3ee;
  --surface: #fbfbf8;
  --surface-2: #e9ebe4;
  --text: #141814;
  --muted: #626a63;
  --faint: #8a928b;
  --line: rgba(20, 24, 20, .12);
  --accent: #1e5eff;
  --accent-strong: #0d46d7;
  --accent-wash: rgba(30, 94, 255, .09);
  --header: rgba(243, 243, 238, .82);
  --shadow: 0 28px 80px rgba(26, 35, 28, .09);
  --radius: 30px;
  --radius-sm: 16px;
  --display: "Bricolage Grotesque", sans-serif;
  --body: "DM Sans", sans-serif;
}

[data-theme="dark"] {
  color-scheme: dark;
  --bg: #101310;
  --surface: #171b17;
  --surface-2: #1d221d;
  --text: #f3f5ed;
  --muted: #aab2aa;
  --faint: #7f887f;
  --line: rgba(243, 245, 237, .12);
  --accent: #78a0ff;
  --accent-strong: #9bb8ff;
  --accent-wash: rgba(120, 160, 255, .12);
  --header: rgba(16, 19, 16, .8);
  --shadow: 0 28px 80px rgba(0, 0, 0, .28);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  font-family: var(--body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  transition: color .35s ease, background .35s ease;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
::selection { color: #fff; background: #1e5eff; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
.container { width: min(1180px, calc(100% - 56px)); margin-inline: auto; }

.skip-link { position: fixed; z-index: 1000; top: -70px; left: 20px; padding: 11px 17px; color: #fff; background: #1e5eff; border-radius: 12px; }
.skip-link:focus { top: 14px; }

.site-header { position: sticky; z-index: 100; top: 0; border-bottom: 1px solid transparent; background: var(--header); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); transition: border-color .25s ease, box-shadow .25s ease; }
.site-header.scrolled { border-color: var(--line); box-shadow: 0 10px 40px rgba(20, 24, 20, .05); }
.nav-shell { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; font-family: var(--display); font-weight: 800; letter-spacing: -.045em; }
.brand img { width: 40px; height: 40px; border-radius: 12px; box-shadow: 0 9px 24px rgba(30, 94, 255, .16); }
.brand span { font-size: 1.08rem; }
.desktop-nav { display: flex; align-items: center; gap: 30px; }
.desktop-nav a { position: relative; padding-block: 8px; color: var(--muted); font-size: .9rem; font-weight: 600; transition: color .2s ease; }
.desktop-nav a::after { content: ""; position: absolute; right: 0; bottom: 2px; left: 0; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.desktop-nav a:hover, .desktop-nav a.active { color: var(--text); }
.desktop-nav a:hover::after, .desktop-nav a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-tools { display: flex; align-items: center; gap: 10px; }
.icon-button { width: 42px; height: 42px; padding: 0; display: inline-flex; align-items: center; justify-content: center; background: var(--surface); border: 1px solid var(--line); border-radius: 50%; cursor: pointer; transition: transform .2s ease, background .2s ease; }
.icon-button:hover { transform: translateY(-2px); background: var(--surface-2); }
.theme-toggle svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
[data-theme="light"] .moon-icon, [data-theme="dark"] .sun-icon { display: none; }
.menu-toggle { display: none; flex-direction: column; gap: 4px; }
.menu-toggle span { width: 17px; height: 2px; background: currentColor; border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-6px) rotate(-45deg); }

.button { min-height: 52px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; color: #fff; background: #1e5eff; border: 1px solid #1e5eff; border-radius: 999px; font-weight: 700; line-height: 1; box-shadow: 0 14px 34px rgba(30, 94, 255, .2); transition: transform .25s ease, background .25s ease, box-shadow .25s ease; }
.button:hover { transform: translateY(-3px); background: #0d46d7; box-shadow: 0 19px 40px rgba(30, 94, 255, .28); }
.button-small { min-height: 42px; padding-inline: 17px; font-size: .87rem; }
.button-quiet { color: var(--text); background: transparent; border-color: var(--line); box-shadow: none; }
.button-quiet:hover { color: var(--text); background: var(--surface); box-shadow: none; }
.button-white { color: #143a8d; background: #fff; border-color: #fff; box-shadow: 0 15px 36px rgba(2, 23, 67, .18); }
.button-white:hover { color: #143a8d; background: #f4f7ff; }
.text-link { display: inline-flex; align-items: center; gap: 5px; color: var(--accent); font-weight: 700; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.menu-backdrop { position: fixed; z-index: 140; inset: 0; pointer-events: none; opacity: 0; background: rgba(5, 8, 5, .55); backdrop-filter: blur(4px); transition: opacity .3s ease; }
.menu-backdrop.open { pointer-events: auto; opacity: 1; }
.mobile-menu { position: fixed; z-index: 150; top: 0; right: 0; width: min(400px, 92vw); height: 100dvh; padding: 25px; display: flex; flex-direction: column; visibility: hidden; background: var(--surface); box-shadow: -30px 0 80px rgba(0, 0, 0, .25); transform: translateX(105%); transition: transform .35s cubic-bezier(.22,1,.36,1), visibility .35s; }
.mobile-menu.open { visibility: visible; transform: translateX(0); }
.mobile-menu-head { margin-bottom: 48px; display: flex; align-items: center; justify-content: space-between; color: var(--faint); font-size: .73rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.menu-close { width: 42px; height: 42px; padding: 0; color: var(--text); background: var(--surface-2); border: 0; border-radius: 50%; font-size: 1.6rem; line-height: 1; cursor: pointer; }
.mobile-menu > a:not(.button) { padding: 18px 2px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); font-family: var(--display); font-size: clamp(1.45rem, 7vw, 2rem); font-weight: 700; letter-spacing: -.05em; }
.mobile-menu > a:not(.button) span { color: var(--faint); font-family: var(--body); font-size: .68rem; letter-spacing: .12em; }
.mobile-menu > a.active { color: var(--accent); }
.mobile-cta { width: 100%; margin-top: auto; }

.eyebrow, .kicker { margin: 0; color: var(--accent); font-size: .73rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow > span { width: 7px; height: 7px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 0 6px var(--accent-wash); }
h1, h2, h3 { margin-top: 0; font-family: var(--display); letter-spacing: -.06em; line-height: .98; }
.lead { max-width: 610px; margin: 0; color: var(--muted); font-size: clamp(1.05rem, 1.8vw, 1.24rem); line-height: 1.58; }
.button-row { margin-top: 31px; display: flex; flex-wrap: wrap; gap: 11px; }

.hero { position: relative; min-height: calc(100svh - 78px); display: flex; align-items: center; overflow: hidden; }
.hero::after { content: ""; position: absolute; width: 38vw; height: 38vw; min-width: 420px; min-height: 420px; right: -12vw; bottom: -20vw; background: radial-gradient(circle, rgba(30,94,255,.17), transparent 68%); pointer-events: none; }
.hero-pattern { position: absolute; inset: 0; opacity: .55; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(to bottom, #000, transparent 90%); }
.hero-layout { position: relative; z-index: 1; padding-block: 78px; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: clamp(45px, 8vw, 110px); }
.hero h1 { max-width: 10ch; margin: 21px 0 23px; font-size: clamp(4rem, 7.5vw, 7.2rem); }
.hero-art { position: relative; min-height: 500px; display: grid; place-items: center; }
.logo-card { position: relative; z-index: 2; width: min(350px, 78%); padding: 14px; background: color-mix(in srgb, var(--surface) 82%, transparent); border: 1px solid var(--line); border-radius: 34px; box-shadow: var(--shadow); transform: rotate(3deg); backdrop-filter: blur(18px); animation: float 7s ease-in-out infinite; }
.logo-card img { width: 100%; border-radius: 23px; }
.logo-dark { display: none; }
[data-theme="dark"] .logo-light { display: none; }
[data-theme="dark"] .logo-dark { display: block; }
.art-orbit { position: absolute; border: 1px solid color-mix(in srgb, var(--accent) 28%, transparent); border-radius: 50%; }
.orbit-one { width: 400px; height: 400px; }
.orbit-two { width: 510px; height: 510px; border-style: dashed; animation: rotate 38s linear infinite; }
.art-label { position: absolute; z-index: 3; padding: 9px 14px; color: var(--text); background: var(--surface); border: 1px solid var(--line); border-radius: 999px; box-shadow: var(--shadow); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.label-top { top: 16%; right: 1%; }
.label-bottom { bottom: 15%; left: 2%; }
@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes float { 50% { transform: rotate(1deg) translateY(-12px); } }

.section { padding: clamp(86px, 10vw, 132px) 0; }
.soft-section { background: var(--surface-2); }
.section-intro { margin-bottom: 42px; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 22px; }
.section-intro .kicker { grid-column: 1 / -1; }
.section-intro h2, .cta-card h2, .contact-copy h2 { max-width: 12ch; margin: 0; font-size: clamp(2.5rem, 5vw, 4.8rem); }

.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.product-card { position: relative; min-height: 430px; padding: clamp(28px, 4vw, 44px); display: flex; flex-direction: column; overflow: hidden; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 1px 0 rgba(255,255,255,.5) inset; transition: transform .35s cubic-bezier(.22,1,.36,1), border-color .35s ease, box-shadow .35s ease; }
.product-card:hover { transform: translateY(-7px); border-color: color-mix(in srgb, var(--accent) 35%, var(--line)); box-shadow: var(--shadow); }
.product-card-accent { color: #fff; background: linear-gradient(145deg, #12378d, #1e5eff 68%, #4b81ff); border-color: rgba(255,255,255,.16); }
.product-card-accent::before { content: ""; position: absolute; width: 290px; height: 290px; top: -150px; right: -110px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; }
.product-card-accent .product-type, .product-card-accent p, .product-card-accent .product-badge { color: rgba(255,255,255,.72); }
.product-card-accent .mini-tags span { color: #fff; background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.18); }
.product-card-accent .text-link { color: #fff; }
.product-badge { position: absolute; top: 27px; right: 28px; color: var(--faint); font-size: .7rem; font-weight: 700; letter-spacing: .12em; }
.product-type { margin: 0 0 38px; color: var(--accent); font-size: .72rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.product-card h2, .product-card h3 { max-width: 13ch; margin: 0 0 16px; font-size: clamp(2.15rem, 4vw, 3.65rem); }
.product-card p { max-width: 38ch; margin: 0; color: var(--muted); font-size: 1.03rem; }
.mini-tags { margin-top: 25px; display: flex; flex-wrap: wrap; gap: 7px; }
.mini-tags span { padding: 7px 11px; color: var(--muted); background: var(--surface-2); border: 1px solid var(--line); border-radius: 999px; font-size: .73rem; font-weight: 600; }
.product-actions { margin-top: auto; padding-top: 34px; display: flex; flex-wrap: wrap; align-items: center; gap: 14px 22px; }
.product-detail { min-height: 520px; }

.service-list { border-top: 1px solid var(--line); }
.service-list a { min-height: 112px; display: grid; grid-template-columns: 52px 1.25fr 1fr 28px; align-items: center; gap: 22px; border-bottom: 1px solid var(--line); transition: padding .25s ease, color .25s ease; }
.service-list a:hover { padding-inline: 13px; color: var(--accent); }
.service-list a > span { color: var(--faint); font-size: .72rem; font-weight: 700; letter-spacing: .1em; }
.service-list h3 { margin: 0; font-size: clamp(1.45rem, 2.8vw, 2.15rem); }
.service-list p { margin: 0; color: var(--muted); }
.service-list b { font-size: 1.15rem; font-weight: 400; }

.page-hero { min-height: 510px; padding: clamp(90px, 12vw, 155px) 0 clamp(70px, 9vw, 110px); display: flex; align-items: center; background: radial-gradient(circle at 82% 28%, var(--accent-wash), transparent 30%); }
.page-hero h1 { max-width: 11ch; margin: 20px 0; font-size: clamp(3.7rem, 7vw, 6.8rem); }

.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.service-detail { position: relative; min-height: 330px; padding: clamp(27px, 4vw, 42px); display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); transition: transform .3s ease, border-color .3s ease; scroll-margin-top: 110px; }
.service-detail:hover { transform: translateY(-5px); border-color: color-mix(in srgb, var(--accent) 35%, var(--line)); }
.service-detail .number { position: absolute; top: 28px; right: 30px; color: var(--faint); font-size: .7rem; font-weight: 700; letter-spacing: .12em; }
.detail-icon { width: 52px; height: 52px; display: grid; place-items: center; color: var(--accent); background: var(--accent-wash); border-radius: 50%; }
.detail-icon svg { width: 23px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service-detail h2 { margin: auto 0 10px; font-size: clamp(2rem, 3.5vw, 3rem); }
.service-detail p { max-width: 34ch; margin: 0; color: var(--muted); }

.scope-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.scope-card { min-height: 400px; padding: clamp(28px, 4vw, 44px); display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); transition: transform .35s cubic-bezier(.22,1,.36,1), border-color .35s ease, box-shadow .35s ease; }
.scope-card:hover { transform: translateY(-7px); border-color: color-mix(in srgb, var(--accent) 35%, var(--line)); box-shadow: var(--shadow); }
.scope-card h3 { max-width: 11ch; margin: 0; font-size: clamp(2.25rem, 4vw, 3.7rem); }
.scope-list { margin: auto 0 0; padding: 30px 0 0; list-style: none; border-top: 1px solid var(--line); }
.scope-list li { min-height: 44px; padding: 10px 0 10px 20px; display: flex; align-items: center; position: relative; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .92rem; }
.scope-list li::before { content: ""; position: absolute; left: 1px; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }
.scope-card-accent { color: #fff; background: linear-gradient(145deg, #12378d, #1e5eff 68%, #4b81ff); border-color: rgba(255,255,255,.16); }
.scope-card-accent .product-type, .scope-card-accent .scope-list li { color: rgba(255,255,255,.76); }
.scope-card-accent .scope-list, .scope-card-accent .scope-list li { border-color: rgba(255,255,255,.16); }
.scope-card-accent .scope-list li::before { background: #fff; }

.product-hero { padding: 28px 0 clamp(82px, 10vw, 130px); overflow: hidden; background: radial-gradient(circle at 82% 42%, var(--accent-wash), transparent 32%); }
.breadcrumbs { margin-bottom: clamp(58px, 8vw, 92px); display: flex; flex-wrap: wrap; gap: 9px; color: var(--faint); font-size: .78rem; font-weight: 600; }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--accent); }
.product-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(48px, 8vw, 105px); }
.product-hero h1 { max-width: 11ch; margin: 20px 0; font-size: clamp(3.7rem, 6.5vw, 6.5rem); }
.local-note { margin: 18px 0 0; color: var(--faint); font-size: .84rem; font-weight: 600; }
.product-console { position: relative; min-height: 390px; padding: 22px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; color: #fff; background: linear-gradient(145deg, #121923, #164bbd 62%, #2c6eff); border: 1px solid rgba(255,255,255,.15); border-radius: 34px; box-shadow: var(--shadow); transform: rotate(1.5deg); }
.healthcare-console { background: linear-gradient(145deg, #10211f, #086b78 62%, #11a1b2); }
.product-console::before { content: ""; position: absolute; inset: 0; opacity: .28; background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 44px 44px; mask-image: linear-gradient(145deg, #000, transparent 78%); }
.console-head, .console-grid, .product-console > p { position: relative; z-index: 1; }
.console-head { display: flex; align-items: center; justify-content: space-between; font-size: .7rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.console-head i { width: 9px; height: 9px; background: #8effbe; border-radius: 50%; box-shadow: 0 0 0 6px rgba(142,255,190,.13); }
.console-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.console-grid span { min-height: 94px; padding: 16px; display: flex; flex-direction: column; justify-content: space-between; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.14); border-radius: 18px; font-family: var(--display); font-weight: 700; backdrop-filter: blur(9px); }
.console-grid b { color: rgba(255,255,255,.58); font-family: var(--body); font-size: .65rem; letter-spacing: .13em; }
.product-console > p { margin: 18px 3px 2px; color: rgba(255,255,255,.68); font-size: .85rem; }
.product-summary { display: grid; grid-template-columns: .85fr 1.15fr; align-items: start; gap: clamp(48px, 9vw, 120px); }
.summary-copy h2 { max-width: 10ch; margin: 13px 0 18px; font-size: clamp(2.5rem, 5vw, 4.6rem); }
.summary-copy > p:last-child { max-width: 37ch; margin: 0; color: var(--muted); font-size: 1.04rem; }
.module-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.module-grid span { min-height: 130px; padding: 20px; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); font-family: var(--display); font-size: 1.08rem; font-weight: 700; letter-spacing: -.025em; }
.module-grid b { color: var(--accent); font-family: var(--body); font-size: .67rem; letter-spacing: .12em; }

.contact-section { min-height: 560px; display: flex; align-items: center; }
.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; align-items: start; gap: clamp(50px, 9vw, 120px); }
.contact-copy .kicker { margin-bottom: 14px; }
.contact-copy > p:last-child { max-width: 34ch; color: var(--muted); }
.contact-options { border-top: 1px solid var(--line); }
.contact-options a { min-height: 96px; padding: 20px 3px; display: grid; grid-template-columns: 85px 1fr 24px; align-items: center; gap: 18px; border-bottom: 1px solid var(--line); transition: padding .25s ease, color .25s ease; }
.contact-options a:hover { padding-inline: 12px; color: var(--accent); }
.contact-options span { color: var(--muted); font-size: .76rem; }
.contact-options strong { font-family: var(--display); font-size: clamp(1.05rem, 2vw, 1.35rem); letter-spacing: -.025em; }
.contact-options b { font-weight: 400; }
.contact-options .contact-primary strong { color: var(--accent); }

.cta-section { padding-block: clamp(58px, 7vw, 88px); }
.cta-card { position: relative; padding: clamp(34px, 6vw, 68px); display: flex; align-items: center; justify-content: space-between; gap: 35px; overflow: hidden; color: #fff; background: linear-gradient(135deg, #102d72, #1e5eff); border-radius: 34px; box-shadow: 0 30px 70px rgba(30, 94, 255, .22); }
.cta-card::after { content: ""; position: absolute; width: 280px; height: 280px; right: -110px; bottom: -170px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; }
.cta-card > * { position: relative; z-index: 1; }
.cta-card .kicker { margin-bottom: 10px; color: #c5d5ff; }

.site-footer { padding: 32px 0; background: var(--surface); border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; }
.footer-brand img { width: 38px; height: 38px; }
.footer-social { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 20px; }
.footer-social a { color: var(--muted); font-size: .84rem; font-weight: 600; transition: color .2s ease; }
.footer-social a:hover { color: var(--accent); }
.footer-grid p { margin: 0; color: var(--muted); font-size: .84rem; }
.footer-grid p:last-child { justify-self: end; }

.reveal { opacity: 0; filter: blur(8px); transform: translateY(26px); transition: opacity .8s cubic-bezier(.22,1,.36,1), filter .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1); transition-delay: var(--delay, 0ms); }
.reveal.visible { opacity: 1; filter: none; transform: none; }
.product-grid > .reveal:nth-child(2), .services-grid > .reveal:nth-child(2) { --delay: 90ms; }
.services-grid > .reveal:nth-child(3) { --delay: 140ms; }
.services-grid > .reveal:nth-child(4) { --delay: 190ms; }

@media (max-width: 960px) {
  .desktop-nav, .desktop-cta { display: none; }
  .menu-toggle { display: inline-flex; }
  .hero { min-height: auto; }
  .hero-layout { grid-template-columns: 1fr; padding-block: 78px 60px; }
  .hero-copy { position: relative; z-index: 2; }
  .hero-art { min-height: 420px; }
  .product-grid, .services-grid, .scope-grid, .product-hero-grid, .product-summary, .contact-layout { grid-template-columns: 1fr; }
  .product-console { width: min(100%, 620px); min-height: 350px; transform: none; }
  .product-summary, .contact-layout { gap: 52px; }
  .service-detail { min-height: 290px; }
}

@media (max-width: 640px) {
  html { scroll-padding-top: 80px; }
  .container { width: min(100% - 30px, 1180px); }
  .nav-shell { min-height: 72px; }
  .brand img { width: 38px; height: 38px; }
  .brand span { font-size: 1rem; }
  .icon-button { width: 40px; height: 40px; }
  .hero-layout { padding-block: 64px 42px; gap: 30px; }
  .hero h1, .page-hero h1, .product-hero h1 { margin-block: 18px; font-size: clamp(3.1rem, 14.5vw, 4.5rem); }
  .lead { font-size: 1.02rem; }
  .button-row { margin-top: 27px; flex-direction: column; }
  .button-row .button { width: 100%; }
  .hero-art { display: none; }
  .logo-card { width: 72%; padding: 10px; border-radius: 25px; }
  .logo-card img { border-radius: 17px; }
  .orbit-one { width: 270px; height: 270px; }
  .orbit-two { width: 335px; height: 335px; }
  .art-label { padding: 8px 11px; font-size: .63rem; }
  .label-top { right: 0; }.label-bottom { left: 0; }
  .section { padding-block: 76px; }
  .section-intro { grid-template-columns: 1fr; gap: 13px; margin-bottom: 28px; }
  .section-intro .kicker { grid-column: auto; }
  .section-intro h2, .cta-card h2, .contact-copy h2 { font-size: 2.65rem; }
  .product-card { min-height: 390px; padding: 25px; border-radius: 24px; }
  .product-detail { min-height: 450px; }
  .product-type { margin-bottom: 32px; }
  .product-actions { align-items: flex-start; flex-direction: column; }
  .product-actions .button { width: 100%; }
  .service-list a { min-height: 96px; grid-template-columns: 34px 1fr 20px; gap: 12px; }
  .service-list a p { display: none; }
  .service-list h3 { font-size: 1.4rem; }
  .page-hero { min-height: 440px; padding-block: 76px 62px; }
  .service-detail { min-height: 245px; padding: 24px; border-radius: 24px; }
  .service-detail h2 { font-size: 2.25rem; }
  .scope-card { min-height: 360px; padding: 25px; border-radius: 24px; }
  .scope-card h3 { font-size: 2.55rem; }
  .product-hero { padding-top: 22px; }
  .breadcrumbs { margin-bottom: 50px; }
  .product-console { min-height: 310px; padding: 17px; border-radius: 25px; }
  .console-grid span { min-height: 78px; padding: 13px; }
  .module-grid { grid-template-columns: 1fr; }
  .module-grid span { min-height: 102px; }
  .contact-section { min-height: auto; }
  .contact-options a { grid-template-columns: 70px 1fr 18px; gap: 10px; }
  .contact-options strong { overflow-wrap: anywhere; }
  .cta-card { align-items: flex-start; flex-direction: column; border-radius: 26px; }
  .cta-card .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; justify-items: start; gap: 11px; }
  .footer-social { justify-content: flex-start; }
  .footer-grid p:last-child { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; filter: none; transform: none; }
}
