@font-face { font-family: "DM Sans"; src: url("../fonts/dm-sans-latin.woff2") format("woff2"); font-style: normal; font-weight: 100 900; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("../fonts/manrope-variable.woff2") format("woff2"); font-style: normal; font-weight: 200 800; font-display: swap; }

:root {
  --ink: #0b1020;
  --ink-soft: #151b2d;
  --paper: #f4f2ed;
  --white: #ffffff;
  --muted: #aeb6c7;
  --text: #242b3b;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(11, 16, 32, 0.14);
  --violet: #8f66ff;
  --violet-soft: #c9b9ff;
  --cyan: #5dd8d0;
  --capture: #5dd8d0;
  --inspect: #8f66ff;
  --connect: #f1bc6b;
  --radius: 1.25rem;
  --shell: min(1180px, calc(100vw - 3rem));
  --shadow: 0 24px 70px rgba(6, 10, 24, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--text); font-family: "DM Sans", system-ui, sans-serif; font-size: 17px; line-height: 1.65; }
body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
button, input, select, textarea { font: inherit; }
h1, h2, h3 { margin: 0 0 0.7em; font-family: "Manrope", "DM Sans", sans-serif; letter-spacing: -0.035em; line-height: 1.08; }
h1 { max-width: 16ch; font-size: clamp(3rem, 7vw, 6.5rem); }
h2 { max-width: 19ch; font-size: clamp(2.1rem, 4.2vw, 4.25rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }
p { margin: 0 0 1.25rem; }
ul, ol { margin-top: 0; }
section { position: relative; padding: clamp(4.75rem, 9vw, 9rem) 0; }
.shell { width: var(--shell); margin-inline: auto; }
.narrow { max-width: 820px; }
.tone-dark { background: var(--ink); color: var(--white); }
.tone-light { background: #e9e7e1; }
.eyebrow { margin-bottom: 1.2rem; color: var(--violet-soft); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.tone-light .eyebrow, .service-family-section .eyebrow, .industry-hub .eyebrow { color: #6740cf; }
.lede { max-width: 720px; color: #d4d9e4; font-size: clamp(1.1rem, 2vw, 1.42rem); line-height: 1.55; }
.compact-hero .lede { max-width: 800px; }
.large-copy { font-size: clamp(1.2rem, 2.2vw, 1.65rem); line-height: 1.5; }
.skip-link { position: fixed; left: 1rem; top: -100px; z-index: 1000; padding: 0.75rem 1rem; background: var(--white); color: var(--ink); }
.skip-link:focus { top: 1rem; }

.site-header { position: absolute; inset: 0 0 auto; z-index: 50; border-bottom: 1px solid rgba(255,255,255,0.1); color: var(--white); transition: background-color 260ms ease, box-shadow 260ms ease, backdrop-filter 260ms ease; }
.site-header.is-sticky { position: fixed; background: rgba(11, 16, 32, 0.9); box-shadow: 0 12px 35px rgba(2,6,18,.18); backdrop-filter: blur(18px); }
.header-inner { display: grid; grid-template-columns: 180px 1fr auto; align-items: center; min-height: 92px; gap: 2rem; }
.brand { display: inline-flex; width: 168px; }
.brand img { display: block; width: 100%; height: auto; }
.primary-navigation { justify-self: center; }
.nav-list { display: flex; align-items: center; gap: 2rem; margin: 0; padding: 0; list-style: none; }
.nav-list a { position: relative; color: rgba(255,255,255,0.86); font-size: 0.93rem; font-weight: 600; text-decoration: none; }
.nav-list a::after { content: ""; position: absolute; right: 0; bottom: -.45rem; left: 0; height: 1px; background: var(--violet-soft); transform: scaleX(0); transform-origin: right; transition: transform 220ms ease; }
.nav-list a:hover::after, .nav-list .current-menu-item > a::after { transform: scaleX(1); transform-origin: left; }
.nav-list a:hover, .nav-list .current-menu-item > a { color: var(--white); }
.nav-toggle { display: none; border: 0; background: transparent; color: var(--white); }

.button-row { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0.75rem 1.25rem; border: 1px solid transparent; border-radius: 999px; font-size: 0.9rem; font-weight: 700; text-decoration: none; transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease; }
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0) scale(.98); }
.button-primary { background: var(--violet); color: var(--white); }
.button-primary:hover { background: #7b50f2; box-shadow: 0 12px 30px rgba(143,102,255,.28); }
.button-quiet { border-color: rgba(255,255,255,0.32); color: var(--white); }
.button-small { min-height: 42px; padding-inline: 1rem; }
.text-link { display: inline-flex; gap: 0.45rem; align-items: center; color: inherit; font-weight: 700; text-decoration: none; }
.text-link:hover { text-decoration: underline; }
.text-link span { transition: transform 180ms ease; }
.text-link:hover span { transform: translate(3px, -3px); }

.hero, .page-hero { overflow: hidden; background: var(--ink); color: var(--white); }
.hero-home { min-height: 880px; display: flex; align-items: center; padding-top: 10rem; }
.hero-home::before, .page-hero::before { content: ""; position: absolute; z-index: 0; inset: 0; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent); pointer-events: none; }
.hero-home::after { content: ""; position: absolute; z-index: 1; top: 3.25rem; right: -7rem; width: clamp(430px, 37vw, 620px); aspect-ratio: 1390 / 886; background: url("../images/site-media/drone-skydio-x10.png") center / contain no-repeat; opacity: .085; filter: grayscale(.65) brightness(1.25) drop-shadow(0 24px 52px rgba(0,0,0,.14)); transform: translate3d(var(--section-drone-x, 0px), var(--section-drone-y, 0px), 0) rotate(-7deg); transition: transform 120ms linear; pointer-events: none; }
.hero-home > .shell { position: relative; z-index: 2; }
.page-hero > .shell { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr); align-items: center; gap: clamp(3rem, 7vw, 7rem); }
.hero-copy { position: relative; z-index: 1; }
.hero-copy h1 { max-width: 12ch; }
.hero-visual-wrap { position: relative; }
.hero-visual-wrap::before { content: ""; position: absolute; z-index: -1; width: 75%; aspect-ratio: 1; right: -14%; top: -12%; border-radius: 50%; background: radial-gradient(circle, rgba(143,102,255,.24), rgba(93,216,208,.05) 48%, transparent 70%); filter: blur(8px); animation: ambient-drift 9s ease-in-out infinite alternate; }
.hero-sector-carousel { position: relative; }
.hero-sector-slides { position: relative; min-height: 520px; }
.hero-sector-slide.site-image { position: absolute; inset: 0; opacity: 0; pointer-events: none; transform: translate3d(12px,0,0) scale(.985); transition: opacity 720ms ease, transform 900ms cubic-bezier(.2,.7,.2,1); }
.hero-sector-slide.is-active { z-index: 1; opacity: 1; pointer-events: auto; transform: translate3d(0,0,0) scale(1); }
.hero-sector-controls { position: absolute; z-index: 4; right: 0; bottom: 0; left: 0; padding: 4rem .95rem .9rem; border-radius: 0 0 var(--radius) var(--radius); background: linear-gradient(180deg, transparent 0%, rgba(11,16,32,.24) 24%, rgba(11,16,32,.82) 68%, rgba(11,16,32,.94) 100%); }
.hero-sector-readout { min-width: 0; }
.hero-sector-readout strong { display: block; overflow: hidden; color: var(--white); font-family: "Manrope", "DM Sans", sans-serif; font-size: clamp(.86rem, 1.25vw, 1rem); line-height: 1.25; text-overflow: ellipsis; white-space: nowrap; transform: translateY(0); opacity: 1; transition: opacity 150ms ease, transform 180ms ease; }
.hero-sector-controls.is-changing .hero-sector-readout strong { opacity: 0; transform: translateY(4px); }
.hero-sector-nav { display: flex; flex-wrap: nowrap; gap: .32rem; margin-top: .55rem; padding-top: .55rem; border-top: 1px solid rgba(255,255,255,.13); }
.hero-sector-nav button { display: inline-flex; flex: 1 1 auto; min-width: 0; align-items: center; justify-content: center; gap: .35rem; min-height: 31px; border: 1px solid rgba(255,255,255,.26); border-radius: 999px; padding: .32rem .5rem; color: rgba(255,255,255,.76); background: rgba(11,16,32,.5); backdrop-filter: blur(10px); font: inherit; font-size: .64rem; font-weight: 700; white-space: nowrap; cursor: pointer; transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease; }
.hero-sector-nav button::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 0 rgba(93,216,208,.2); opacity: 0; transform: scale(.5); transition: opacity 220ms ease, transform 220ms ease, box-shadow 220ms ease; }
.hero-sector-nav button:hover { color: var(--white); border-color: rgba(255,255,255,.55); transform: translateY(-2px); }
.hero-sector-nav button[aria-pressed="true"] { color: var(--white); border-color: rgba(93,216,208,.72); background: rgba(93,216,208,.13); box-shadow: inset 0 0 0 1px rgba(93,216,208,.08); }
.hero-sector-nav button[aria-pressed="true"]::before { opacity: 1; transform: scale(1); box-shadow: 0 0 0 4px rgba(93,216,208,.1); }
.visual-label, .card-index, .step-number, .post-meta { font-size: 0.69rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.site-image { position: relative; min-height: 520px; margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius); background: #11182a; box-shadow: var(--shadow); isolation: isolate; }
.site-image::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(11,16,32,.02) 45%, rgba(11,16,32,.3)); pointer-events: none; }
.site-image img { --media-shift: 0px; position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; transform: translate3d(0, var(--media-shift), 0) scale(1.055); transition: transform 120ms linear; will-change: transform; }
.site-image--hero img { object-position: 60% center; }
.site-image--public-camera-digital-twin img { object-position: 70% center; }
.site-image--platform { background: #080d17; }
.site-image--platform::after, .site-image--inspection-platform::after, .site-image--property-inspection::after { background: linear-gradient(180deg, transparent 60%, rgba(11,16,32,.18)); }
.site-image--platform img { object-position: center; }
.spatial-visual { position: relative; min-height: 520px; overflow: hidden; border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius); background-color: #11182a; background-image: linear-gradient(rgba(143,102,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(143,102,255,.16) 1px, transparent 1px); background-size: 42px 42px; box-shadow: var(--shadow); }
.spatial-visual::before { content: ""; position: absolute; width: 68%; aspect-ratio: 1; left: 16%; top: 17%; border: 1px solid rgba(93,216,208,.55); border-radius: 50%; box-shadow: 0 0 0 40px rgba(93,216,208,.035), 0 0 0 82px rgba(143,102,255,.04); }
.spatial-visual::after { content: ""; position: absolute; width: 48%; height: 28%; left: 27%; top: 35%; border: 1px solid rgba(255,255,255,.34); transform: skewY(-13deg) rotate(-7deg); background: linear-gradient(135deg, rgba(93,216,208,.18), rgba(143,102,255,.2)); }
.visual-label { position: absolute; left: 1.25rem; right: 1.25rem; bottom: 1.25rem; z-index: 3; color: rgba(255,255,255,.74); }
.visual-node { position: absolute; z-index: 2; width: 13px; height: 13px; border: 2px solid var(--white); border-radius: 50%; background: var(--violet); box-shadow: 0 0 0 8px rgba(143,102,255,.13); }
.node-a { top: 27%; left: 28%; }.node-b { top: 44%; right: 22%; background: var(--cyan); }.node-c { bottom: 24%; left: 45%; background: var(--connect); }
.visual-layers::after { width: 58%; height: 38%; left: 21%; top: 28%; box-shadow: 0 24px 0 rgba(143,102,255,.12), 0 48px 0 rgba(93,216,208,.08); }
.visual-capture::before { border-radius: 8%; transform: rotate(18deg); }.visual-inspect::after { outline: 1px solid rgba(143,102,255,.65); outline-offset: 20px; }.visual-connect::before { border-color: rgba(241,188,107,.65); }

.page-hero { padding-top: 12rem; padding-bottom: clamp(5rem, 9vw, 8rem); }
.compact-hero h1 { max-width: 14ch; }
.breadcrumbs { margin-bottom: 3.5rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: .55rem; margin: 0; padding: 0; list-style: none; color: rgba(255,255,255,.62); font-size: .82rem; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: .55rem; }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs a:hover { color: var(--white); }

.section-heading { margin-bottom: clamp(2.5rem, 5vw, 5rem); }
.split-heading { display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 4rem; }
.split-heading > p { max-width: 600px; margin-bottom: .6rem; }
.two-column { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(3rem, 7vw, 7rem); }
.three-column { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.align-center { align-items: center; }
.topographic-section { overflow: hidden; isolation: isolate; }
.topographic-section::after { content: ""; position: absolute; z-index: 0; width: min(880px, 82vw); aspect-ratio: 1000 / 760; right: -14%; bottom: -18%; background: url("../images/topographic-contours.svg") center / contain no-repeat; opacity: .17; transform: rotate(-5deg); pointer-events: none; }
.topographic-section > .shell { position: relative; z-index: 2; }
.tone-dark.topographic-section::after { opacity: .24; filter: brightness(1.45); }

.journey-section { padding-top: 7rem; }
.journey-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; margin: 2.5rem 0 0; padding: 0; list-style: none; }
.journey-grid::before { content: ""; position: absolute; z-index: 0; top: -1.25rem; left: 1.5rem; width: calc(100% - 3rem); height: 2px; border-radius: 999px; background: linear-gradient(90deg, var(--cyan), var(--violet), var(--connect)); transform: scaleX(0); transform-origin: left; transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }
.journey-grid.is-flowing::before { transform: scaleX(1); }
.journey-grid li { min-height: 245px; padding: 1.5rem; border: 1px solid var(--line-dark); border-radius: 1rem 1rem 1rem .25rem; background: rgba(255,255,255,.58); box-shadow: 0 14px 35px rgba(11,16,32,.045); }
.journey-grid li:nth-child(even) { margin-top: 1.6rem; border-radius: 1rem .25rem 1rem 1rem; }
.journey-grid li:nth-child(2) { border-top-color: var(--inspect); }
.journey-grid li:nth-child(3) { border-bottom-color: var(--connect); }
.journey-grid li:nth-child(4) { border-top-color: var(--cyan); }
.journey-grid span { color: #7351d6; font-size: .72rem; font-weight: 700; }
.journey-grid h3 { margin-top: 3.8rem; margin-bottom: .3rem; font-size: 2rem; }
.journey-grid p { color: #656d7a; }

.problem-list article { display: grid; grid-template-columns: 55px 1fr; gap: 1rem; padding: 1.5rem 0; border-top: 1px solid var(--line-dark); }
.problem-list article > span { color: #7251ce; font-weight: 700; }
.problem-list h3 { margin-bottom: .3rem; }
.problem-list p { margin: 0; }

.assurance-section { background: #11182a; color: var(--white); }
.assurance-section .split-heading > p { color: #c6cddd; }
.assurance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 2rem; }
.assurance-grid article { min-height: 300px; padding: 1.7rem; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.045); }
.assurance-grid article > span { color: var(--cyan); font-size: .7rem; font-weight: 700; letter-spacing: .14em; }
.assurance-grid h3 { margin-top: 4.5rem; }
.assurance-grid p { color: #c6cddd; }

.family-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.services-preview { overflow: hidden; }
.services-preview::before, .service-family-section.family-capture::before { content: ""; position: absolute; z-index: 1; width: clamp(720px, 72vw, 1180px); aspect-ratio: 1800 / 1012; right: -18vw; bottom: -2%; background: url("../images/site-media/drone-mavic-3-pro.png") center / contain no-repeat; opacity: .08; filter: grayscale(1) contrast(1.1); transform: translate3d(var(--section-drone-x, 0px), var(--section-drone-y, 0px), 0) rotate(7deg); transition: transform 120ms linear; pointer-events: none; }
.services-preview > .shell, .service-family-section.family-capture > .shell { position: relative; z-index: 2; }
.family-card { min-height: 420px; display: flex; flex-direction: column; padding: 2rem; border: 1px solid var(--line-dark); border-radius: var(--radius); background: rgba(255,255,255,.42); }
.family-card > span { margin-bottom: 5rem; color: #5e6676; font-size: .7rem; font-weight: 700; letter-spacing: .14em; }
.family-card strong { display: block; margin-bottom: 1rem; }
.family-card .text-link { margin-top: auto; }
.family-card.family-capture { border-top: 4px solid var(--capture); }.family-card.family-inspect { border-top: 4px solid var(--inspect); }.family-card.family-connect { border-top: 4px solid var(--connect); }

.industry-link-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); }
.industry-link-grid a { display: flex; justify-content: space-between; padding: 1.4rem .4rem; border-bottom: 1px solid var(--line); color: var(--white); font-family: "Manrope", sans-serif; font-size: clamp(1.15rem, 2.2vw, 1.65rem); text-decoration: none; }
.industry-link-grid a:nth-child(odd) { margin-right: 2rem; }
.industry-link-grid a:hover { color: var(--violet-soft); }

.technology-preview .spatial-visual, .technology-principle .spatial-visual, .technology-preview .site-image, .technology-principle .site-image { min-height: 460px; }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.value-grid article { min-height: 280px; padding: 1.6rem; border: 1px solid var(--line-dark); border-radius: 1rem 1rem .25rem 1rem; background: rgba(255,255,255,.45); }
.value-grid article:nth-child(even) { margin-top: 1.2rem; border-radius: .25rem 1rem 1rem 1rem; }
.value-grid article > span { display: block; margin-bottom: 3.75rem; color: #6740cf; font-size: .7rem; font-weight: 700; letter-spacing: .14em; }
.value-grid article:nth-child(2) > span { color: #168c84; }
.value-grid article:nth-child(3) > span { color: #9b620f; }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.post-card { min-height: 290px; display: flex; flex-direction: column; padding: 1.6rem; border: 1px solid var(--line-dark); border-radius: var(--radius); background: rgba(255,255,255,.36); }
.post-card h2, .post-card h3 { font-size: 1.45rem; }
.post-card h2 a, .post-card h3 a { text-decoration: none; }
.post-card .text-link { margin-top: auto; }
.post-meta { color: #6c7482; }
.accordion-list details { border-top: 1px solid var(--line); }
.accordion-list summary { cursor: pointer; padding: 1.35rem 2rem 1.35rem 0; font-family: "Manrope", sans-serif; font-size: 1.2rem; font-weight: 600; }
.accordion-list details p { color: #c0c6d3; }
.cta-section { padding-block: 5rem; background: #dcd6ff; color: var(--ink); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 3rem; }
.cta-inner h2 { max-width: 17ch; font-size: clamp(2rem, 4vw, 3.6rem); }
.cta-inner .eyebrow { color: #6543c9; }

.family-heading { display: grid; grid-template-columns: .75fr 1.25fr; gap: 4rem; align-items: end; margin-bottom: 3.5rem; }
.family-heading strong { display: block; font-size: 1.3rem; margin-bottom: .7rem; }
.service-family-section { border-top: 1px solid var(--line-dark); }
.service-family-section.family-capture { overflow: hidden; }
.service-family-section.family-inspect { background: #e9e7e1; }
.service-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.service-card { min-height: 330px; display: flex; flex-direction: column; padding: 1.6rem; border: 1px solid var(--line-dark); border-radius: var(--radius); background: rgba(255,255,255,.48); }
.service-card h3 a { text-decoration: none; }
.service-card .text-link { margin-top: auto; }
.service-card.family-capture .card-index { color: #168c84; }.service-card.family-inspect .card-index { color: #6e43d6; }.service-card.family-connect .card-index { color: #9b620f; }

.workflow-section { background: #e9e7e1; }
.technology-boundary { padding: 2rem; border: 1px solid var(--line-dark); border-radius: var(--radius); background: rgba(255,255,255,.48); }
.technology-boundary strong { display: block; margin-bottom: .35rem; font-family: "Manrope", sans-serif; }
.technology-boundary p { margin-bottom: 1.6rem; }
.technology-boundary p:last-child { margin-bottom: 0; }

.service-hero .spatial-visual, .industry-hero .spatial-visual, .service-hero .site-image, .industry-hero .site-image { min-height: 480px; }
.detail-process article, .industry-flow article { min-height: 320px; padding: 1.6rem; border: 1px solid var(--line-dark); border-radius: var(--radius); }
.detail-process li { margin-bottom: .6rem; }
.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.capability-grid article { min-height: 300px; padding: 1.6rem; border: 1px solid var(--line); border-radius: var(--radius); }
.capability-grid article > span { color: var(--cyan); font-size: .72rem; font-weight: 700; letter-spacing: .14em; }
.capability-grid h3 { margin-top: 4.5rem; }
.capability-grid p { color: #c6cddd; }
.service-demo-section .button { margin-top: 1.25rem; }
.step-number { display: block; margin-bottom: 4rem; color: #6943cd; }
.outcome-list { margin: 0; padding: 0; list-style: none; counter-reset: outcomes; }
.outcome-list li { padding: 1.35rem 0; border-top: 1px solid var(--line); font-family: "Manrope", sans-serif; font-size: clamp(1.2rem, 2.2vw, 1.8rem); }
.outcome-list li::before { counter-increment: outcomes; content: "0" counter(outcomes); display: inline-block; width: 3rem; color: var(--violet-soft); font-size: .72rem; }
.chip-row { display: flex; flex-wrap: wrap; gap: .7rem; }
.chip-row a { padding: .65rem 1rem; border: 1px solid var(--line-dark); border-radius: 999px; text-decoration: none; }
.chip-row a:hover { border-color: var(--violet); }

.industry-card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.industry-card { min-height: 330px; padding: 2rem; border: 1px solid var(--line-dark); border-radius: var(--radius); }
.industry-card h2 { margin-top: 4rem; font-size: clamp(1.8rem, 3vw, 2.8rem); }
.industry-card h2 a { text-decoration: none; }
.architecture-flow { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; margin-top: 2.5rem; }
.architecture-flow::before { content: ""; position: absolute; z-index: 0; top: -1.25rem; left: 1.5rem; width: calc(100% - 3rem); height: 2px; border-radius: 999px; background: linear-gradient(90deg, var(--cyan), var(--violet), var(--connect)); transform: scaleX(0); transform-origin: left; transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }
.architecture-flow.is-flowing::before { transform: scaleX(1); }
.architecture-flow article { min-height: 390px; padding: 1.5rem; border: 1px solid var(--line-dark); border-radius: 1rem 1rem .25rem 1rem; background: rgba(255,255,255,.5); }
.architecture-flow article:nth-child(even) { margin-top: 1.6rem; border-radius: .25rem 1rem 1rem 1rem; }
.architecture-flow span { color: #6f4bd1; font-weight: 700; }
.architecture-flow h2 { margin-top: 7rem; font-size: 2rem; }

.motion-enabled .motion-reveal { opacity: 0; transform: translate3d(0, 26px, 0); transition: opacity 680ms ease, transform 760ms cubic-bezier(.2,.7,.2,1); transition-delay: calc(var(--reveal-order, 0) * 70ms); }
.motion-enabled .motion-reveal.is-visible { opacity: 1; transform: translate3d(0, 0, 0); }
.interactive-card { --tilt-x: 0deg; --tilt-y: 0deg; position: relative; overflow: hidden; cursor: pointer; transform-style: preserve-3d; transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease; }
.link-card::before { content: "↗"; position: absolute; z-index: 4; top: 1.2rem; right: 1.25rem; display: grid; place-items: center; width: 2.1rem; height: 2.1rem; border: 1px solid rgba(11,16,32,.16); border-radius: 50%; color: #6d49d2; background: rgba(255,255,255,.6); font-size: .9rem; transform: translate3d(0,0,20px) rotate(0); transition: color 220ms ease, background-color 220ms ease, transform 260ms ease; pointer-events: none; }
.link-card a:first-of-type::after { content: ""; position: absolute; z-index: 2; inset: 0; }
.link-card .text-link { z-index: 3; }
.interactive-card::after { content: ""; position: absolute; inset: 0; z-index: 0; background: radial-gradient(340px circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(143,102,255,.14), transparent 62%); opacity: 0; transition: opacity 260ms ease; pointer-events: none; }
.interactive-card > * { position: relative; z-index: 1; }
.interactive-card:hover { transform: perspective(900px) translate3d(0, -7px, 0) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)); border-color: rgba(143,102,255,.42); box-shadow: 0 25px 60px rgba(11,16,32,.13); }
.motion-enabled .motion-reveal.is-visible.interactive-card:hover { transform: perspective(900px) translate3d(0, -7px, 0) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)); }
.interactive-card:hover::after { opacity: 1; }
.link-card:hover::before { color: var(--white); background: var(--violet); transform: translate3d(3px,-3px,24px) rotate(8deg); }
.link-card:hover .card-index, .link-card:hover .post-meta { color: #6845ce; }

.sequence-item, .static-panel { --sequence-x: 50%; --sequence-y: 50%; position: relative; overflow: hidden; isolation: isolate; transition: border-color 240ms ease, background-color 240ms ease, background-image 240ms ease; }
.sequence-item::after { content: ""; position: absolute; z-index: 0; top: 12%; bottom: 12%; left: 0; width: 3px; border-radius: 0 999px 999px 0; background: linear-gradient(var(--cyan), var(--violet), var(--connect)); transform: scaleY(0); transform-origin: center; transition: transform 300ms cubic-bezier(.2,.7,.2,1); }
.sequence-item > *, .static-panel > * { position: relative; z-index: 1; }
.sequence-item > span, .sequence-item h2, .sequence-item h3, .static-panel h3 { transition: color 220ms ease, transform 260ms cubic-bezier(.2,.7,.2,1); }
.sequence-item:hover { border-color: rgba(143,102,255,.32); background-color: rgba(143,102,255,.045); background-image: radial-gradient(360px circle at var(--sequence-x) var(--sequence-y), rgba(143,102,255,.1), transparent 68%); }
.tone-dark .sequence-item:hover { background-color: rgba(255,255,255,.035); background-image: radial-gradient(360px circle at var(--sequence-x) var(--sequence-y), rgba(93,216,208,.09), transparent 68%); }
.sequence-item:hover::after { transform: scaleY(1); }
.sequence-item:hover > span { color: #704bd5; transform: translateX(5px); }
.tone-dark .sequence-item:hover > span { color: var(--cyan); }
.sequence-item:hover h2, .sequence-item:hover h3 { transform: translateX(5px); }
.static-panel::after { content: ""; position: absolute; z-index: 0; inset: 0; background: radial-gradient(320px circle at var(--sequence-x) var(--sequence-y), rgba(143,102,255,.12), transparent 65%); opacity: 0; transition: opacity 260ms ease; }
.static-panel:hover::after { opacity: 1; }
.static-panel:hover h3 { color: #6440c8; transform: translateX(4px); }

.link-row { position: relative; overflow: hidden; isolation: isolate; transition: color 220ms ease, padding 260ms ease; }
.link-row::before { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, rgba(143,102,255,.18), rgba(93,216,208,.06)); transform: scaleX(0); transform-origin: right; transition: transform 320ms cubic-bezier(.2,.7,.2,1); }
.link-row > span { transition: transform 240ms ease; }
.link-row:hover::before { transform: scaleX(1); transform-origin: left; }
.link-row:hover > span:first-child { transform: translateX(.7rem); }
.link-row:hover > span:last-child { transform: translate(.25rem,-.25rem) rotate(8deg); }

@keyframes ambient-drift {
  from { transform: translate3d(-3%, 1%, 0) scale(.96); opacity: .7; }
  to { transform: translate3d(4%, -3%, 0) scale(1.06); opacity: 1; }
}

.contact-hero { padding-bottom: 7rem; }
.form-panel { padding: 2rem; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.06); }
.contact-form { display: grid; gap: 1rem; }
.form-trap { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form label { display: grid; gap: .4rem; color: rgba(255,255,255,.82); font-size: .84rem; font-weight: 600; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.22); border-radius: .7rem; background: rgba(255,255,255,.08); color: var(--white); padding: .75rem .85rem; }
.contact-form select option { color: var(--ink); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: 2px solid var(--cyan); outline-offset: 2px; }
.form-privacy { color: var(--muted); font-size: .78rem; }
.form-privacy a { color: var(--white); text-decoration: underline; text-underline-offset: .16em; }
.form-notice { margin-bottom: 1rem; padding: 1rem; border: 1px solid var(--cyan); border-radius: .7rem; background: rgba(93,216,208,.1); }
.form-notice.is-error { border-color: #f0a4a4; background: rgba(201,75,75,.12); }
.form-notice a { color: var(--white); }
.contact-form button:disabled { cursor: wait; opacity: .68; transform: none; }
.contact-direct { display: grid; margin-top: 3rem; }
.contact-direct span { color: var(--muted); font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; }
.contact-direct a { font-size: 1.3rem; }

.insights-index { min-height: 70vh; }
.article-hero h1 { max-width: 18ch; font-size: clamp(2.7rem, 6vw, 5.25rem); }
.prose { padding-top: 4.5rem; padding-bottom: 7rem; }
.prose > * { max-width: 720px; }
.prose h2, .prose h3 { margin-top: 2.5rem; }
.prose h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
.prose img { border-radius: var(--radius); }
.prose a { color: #5d38c7; }
.standard-page .prose { min-height: 50vh; }

.site-footer { padding-top: 5rem; background: #070b16; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.5fr .75fr .75fr; gap: 4rem; padding-bottom: 4rem; }
.footer-intro p { max-width: 340px; color: var(--muted); }
.footer-grid h2 { font-size: .77rem; letter-spacing: .13em; text-transform: uppercase; }
.footer-grid ul { margin: 0; padding: 0; list-style: none; }
.footer-grid li { margin-bottom: .55rem; }
.footer-grid a { color: var(--muted); text-decoration: none; }
.footer-grid a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; padding-block: 1.5rem; border-top: 1px solid var(--line); color: #8e96a8; font-size: .78rem; }
.footer-bottom p { margin: 0; }

@media (max-width: 980px) {
  :root { --shell: min(100% - 2rem, 760px); }
  .header-inner { grid-template-columns: 150px 1fr auto; min-height: 78px; }
  .brand { width: 145px; }
  .nav-toggle { display: inline-flex; justify-self: end; align-items: center; gap: .6rem; cursor: pointer; }
  .nav-toggle-lines { width: 24px; height: 14px; border-top: 2px solid; border-bottom: 2px solid; }
  .primary-navigation { display: none; position: fixed; inset: 78px 0 0 0; width: 100%; justify-self: stretch; padding: 2rem; background: var(--ink); }
  .nav-open .primary-navigation { display: block; }
  .nav-list { align-items: stretch; flex-direction: column; gap: 0; }
  .nav-list a { display: block; padding: 1rem 0; border-bottom: 1px solid var(--line); font-size: 1.4rem; }
  .header-cta { display: none; }
  .nav-open .header-cta { display: inline-flex; position: fixed; z-index: 52; right: 2rem; bottom: max(2rem, env(safe-area-inset-bottom)); left: 2rem; }
  .hero-home { min-height: auto; }
  .hero-grid, .two-column, .split-heading, .family-heading { grid-template-columns: 1fr; }
  .hero-grid { gap: 4rem; }
  .spatial-visual, .site-image { min-height: 420px; }
  .hero-sector-slides { min-height: 420px; }
  .journey-grid, .architecture-flow { grid-template-columns: repeat(2, 1fr); }
  .journey-grid li:nth-child(even), .architecture-flow article:nth-child(even), .value-grid article:nth-child(even) { margin-top: 0; transform: none; }
  .family-grid, .service-card-grid, .post-grid, .assurance-grid, .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .three-column { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 1.4rem); }
  body { font-size: 16px; }
  section { padding-block: 4.5rem; }
  .site-header { border-bottom-color: rgba(255,255,255,.14); }
  .header-inner { grid-template-columns: 138px 1fr; }
  .hero-home, .page-hero { padding-top: 8.75rem; }
  .hero-home::after { top: 7.5rem; right: -58vw; width: 118vw; opacity: .05; }
  .services-preview::before, .service-family-section.family-capture::before { right: -105vw; width: 185vw; opacity: .05; }
  .journey-grid::before, .architecture-flow::before { display: none; }
  .hero-copy h1, .compact-hero h1 { font-size: clamp(2.65rem, 14vw, 4.25rem); }
  .spatial-visual, .site-image, .service-hero .spatial-visual, .industry-hero .spatial-visual, .service-hero .site-image, .industry-hero .site-image { min-height: 340px; }
  .hero-sector-slides { min-height: 340px; }
  .hero-sector-controls { padding: 3.5rem .72rem .72rem; }
  .hero-sector-nav { flex-wrap: nowrap; margin-top: .6rem; padding-top: .6rem; overflow-x: auto; scrollbar-width: none; }
  .hero-sector-nav::-webkit-scrollbar { display: none; }
  .hero-sector-nav button { flex: 0 0 auto; padding-inline: .35rem; }
  .journey-grid, .family-grid, .service-card-grid, .post-grid, .industry-card-grid, .industry-link-grid, .value-grid, .architecture-flow, .field-grid, .assurance-grid, .capability-grid { grid-template-columns: 1fr; }
  .journey-grid li, .architecture-flow article { min-height: 190px; }
  .journey-grid h3, .architecture-flow h2 { margin-top: 2.5rem; }
  .industry-link-grid a:nth-child(odd) { margin-right: 0; }
  .family-card { min-height: 350px; }
  .assurance-grid article { min-height: 250px; }
  .assurance-grid h3 { margin-top: 2.5rem; }
  .cta-inner, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-intro { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .hero-home::after, .services-preview::before, .service-family-section.family-capture::before { transform: rotate(-7deg); transition: none; }
  .services-preview::before, .service-family-section.family-capture::before { transform: rotate(7deg); }
  .motion-enabled .motion-reveal { opacity: 1; transform: none; }
  .site-image img { transform: none; }
  .hero-sector-slide.site-image { transform: none; transition: none; }
  .interactive-card:hover { transform: none; }
}
