:root {
  color-scheme: dark;
  --ink: #071827;
  --ink-2: #0b2438;
  --blue: #238fc9;
  --blue-bright: #73d2ff;
  --paper: #f3f7fa;
  --mist: #b9cad6;
  --muted: #7f9aab;
  --line: rgba(147, 194, 220, 0.22);
  --max: 1480px;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  color: var(--paper);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
.skip-link { position: fixed; left: 1rem; top: -4rem; z-index: 100; background: white; color: #071827; padding: .75rem 1rem; }
.skip-link:focus { top: 1rem; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 88px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 0 max(3.5vw, 24px);
  border-bottom: 1px solid rgba(255,255,255,.09);
  background: rgba(7, 24, 39, .82);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: .8rem; width: fit-content; }
.brand-mark { width: 42px; height: 42px; overflow: hidden; border-radius: 4px; background: transparent; }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.brand-name { font-size: 1.32rem; font-weight: 700; letter-spacing: -.03em; }
.primary-nav { display: flex; gap: 2rem; color: #c2d2dc; font-size: .9rem; }
.primary-nav a { transition: color .2s ease; }
.primary-nav a:hover, .primary-nav a:focus-visible { color: white; }
.site-header > .button { justify-self: end; }
.site-header.is-scrolled { height: 74px; background: rgba(5, 20, 32, .94); box-shadow: 0 14px 40px rgba(0, 0, 0, .16); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 1.35rem;
  background: var(--blue);
  color: white;
  border: 1px solid var(--blue);
  border-radius: 2px;
  font-weight: 650;
  font-size: .91rem;
  letter-spacing: .01em;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover, .button:focus-visible { background: #31a6e3; border-color: #31a6e3; transform: translateY(-2px); }
.button-small { min-height: 42px; padding-inline: 1.05rem; font-size: .83rem; }

.hero {
  position: relative;
  min-height: min(940px, 100svh);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(440px, .96fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 8rem);
  padding: 150px max(5vw, 32px) 80px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 44%, rgba(34,143,201,.13), transparent 33%),
    linear-gradient(135deg, #071827 0%, #081c2d 56%, #06131f 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .34;
  background-image: linear-gradient(rgba(126,174,199,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(126,174,199,.09) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.7), transparent 68%);
}
.hero::before {
  content: "";
  position: absolute;
  width: 42vw;
  aspect-ratio: 1;
  left: -24vw;
  bottom: -31vw;
  border: 1px solid rgba(113, 208, 255, .24);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(113, 208, 255, .025), 0 0 0 180px rgba(113, 208, 255, .02);
}
.hero-copy, .hero-visual { position: relative; z-index: 1; }
.hero-copy { max-width: 760px; }
.eyebrow {
  margin: 0 0 1.7rem;
  color: var(--blue-bright);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(4.2rem, 7.2vw, 7.8rem);
  line-height: .91;
  letter-spacing: -.066em;
  font-weight: 650;
}
h1 span { color: transparent; -webkit-text-stroke: 1px rgba(151, 217, 250, .72); }
.hero-lede { max-width: 650px; margin: 2rem 0 0; color: #c6d5de; font-size: clamp(1.08rem, 1.35vw, 1.34rem); line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 2rem; margin-top: 2.5rem; }
.text-link { padding: .8rem 0; color: #dbe9f1; border-bottom: 1px solid rgba(219,233,241,.35); font-size: .92rem; }
.text-link span { margin-left: .55rem; color: var(--blue-bright); }
.trust-line { display: flex; flex-wrap: wrap; gap: .8rem 1.6rem; margin-top: 4.2rem; color: var(--muted); font-size: .77rem; letter-spacing: .055em; text-transform: uppercase; }
.trust-line span { position: relative; }
.trust-line span:not(:last-child)::after { content: "/"; position: absolute; right: -.95rem; color: #335a72; }

.hero-visual {
  width: min(100%, 680px);
  aspect-ratio: 1;
  justify-self: center;
  border: 1px solid var(--line);
  background: rgba(7,24,39,.42);
  box-shadow: 0 40px 100px rgba(0,0,0,.25), inset 0 0 80px rgba(57,158,211,.04);
}
.hero-visual::before, .hero-visual::after { content: ""; position: absolute; pointer-events: none; }
.hero-visual::before { inset: 16px; border: 1px solid rgba(255,255,255,.045); }
.hero-visual::after { inset: 50% -22px auto; border-top: 1px solid rgba(118,204,247,.16); }
.hero-visual svg { width: 100%; height: 100%; padding: 7%; }
.rings circle { stroke-dasharray: 3 8; }
.network-lines path { stroke-width: 1.25; }
.nodes circle { fill: #0e3851; stroke: #82dcff; stroke-width: 2; }
.nodes .core { fill: #77d4ff; stroke: rgba(255,255,255,.9); filter: drop-shadow(0 0 20px rgba(82,193,242,.75)); }
.visual-label { position: absolute; inset: 22px 24px auto; display: flex; justify-content: space-between; gap: 1rem; font-size: .69rem; letter-spacing: .13em; text-transform: uppercase; color: #7fa7bd; }
.visual-label strong { color: #9ddfff; font-weight: 650; }
.signal-card { position: absolute; display: flex; align-items: baseline; gap: .48rem; padding: .55rem .7rem; border: 1px solid rgba(128,205,243,.22); background: rgba(5,22,35,.86); box-shadow: 0 10px 25px rgba(0,0,0,.18); font-size: .72rem; }
.signal-card span { color: #5dbce9; font-size: .6rem; }
.signal-card strong { font-weight: 560; }
.signal-a { top: 19%; left: 5%; }.signal-b { top: 12%; right: 6%; }.signal-c { bottom: 17%; left: 7%; }.signal-d { bottom: 10%; right: 8%; }
.visual-status { position: absolute; inset: auto 24px 22px; color: #84a2b4; font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; }
.visual-status i { display: inline-block; width: 7px; height: 7px; margin-right: .45rem; border-radius: 50%; background: #4ec1f5; box-shadow: 0 0 10px #4ec1f5; }

.client-strip { display: grid; grid-template-columns: .9fr 2fr; gap: 3rem; align-items: center; padding: 2rem max(5vw, 32px); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #061521; }
.client-strip > span { color: var(--blue-bright); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }
.client-strip div { display: flex; justify-content: space-between; gap: 1.5rem; color: #afc2ce; }
.client-strip strong { font-size: .82rem; font-weight: 520; }

.section { padding: clamp(6.5rem, 10vw, 10.5rem) max(5vw, 32px); }
.section-light { background: #f1f5f7; color: #0b2233; }
.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; column-gap: 7vw; align-items: end; max-width: var(--max); margin: 0 auto 5rem; }
.section-heading .eyebrow { grid-column: 1 / -1; }
.section-heading h2, .intelligence-top h2, .global-copy h2, .process-heading h2, .about-statement h2, .contact-copy h2 {
  margin: 0;
  font-size: clamp(3rem, 5.1vw, 5.8rem);
  line-height: 1.01;
  letter-spacing: -.052em;
  font-weight: 620;
}
.section-heading > p:last-child { margin: 0 0 .55rem; max-width: 540px; color: #536a78; font-size: 1.03rem; line-height: 1.75; }
.eyebrow-dark { color: #167eb5; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); max-width: var(--max); margin: 0 auto; border-top: 1px solid #c5d2d9; border-bottom: 1px solid #c5d2d9; }
.service-card { min-height: 460px; padding: 2.15rem clamp(1.6rem, 2.8vw, 3rem) 2.5rem; border-left: 1px solid #c5d2d9; background: transparent; }
.service-card:last-child { border-right: 1px solid #c5d2d9; }
.service-card-accent { background: #0b2a40; color: white; border-color: #0b2a40; transform: translateY(-18px); box-shadow: 0 26px 70px rgba(18, 54, 78, .18); }
.card-index { margin-bottom: 4.2rem; color: #1887c1; font-size: .72rem; letter-spacing: .12em; }
.service-card-accent .card-index { color: #72d5ff; }
.service-card h3 { margin: 0 0 1.15rem; font-size: clamp(1.55rem, 2vw, 2.15rem); line-height: 1.12; letter-spacing: -.034em; }
.service-card p { min-height: 116px; margin: 0; color: #5a6f7b; line-height: 1.7; }
.service-card-accent p { color: #bdcdd6; }
.service-card ul { list-style: none; padding: 1.6rem 0 0; margin: 1.6rem 0 0; border-top: 1px solid #d1dbe0; color: #354e5d; font-size: .88rem; }
.service-card-accent ul { border-color: rgba(255,255,255,.14); color: #d3e2e9; }
.service-card li { margin: .65rem 0; padding-left: 1rem; position: relative; }
.service-card li::before { content: ""; position: absolute; left: 0; top: .63em; width: 4px; height: 4px; background: #228fc8; }

.expertise-section { display: grid; grid-template-columns: .78fr 1.22fr; gap: 8vw; max-width: calc(var(--max) + 10vw); margin: 0 auto; background: #071827; }
.expertise-intro { position: sticky; top: 130px; align-self: start; }
.expertise-intro h2 { margin: 0; max-width: 620px; font-size: clamp(2.9rem, 4.4vw, 5rem); line-height: 1.05; letter-spacing: -.05em; font-weight: 620; }
.expertise-intro > p:last-child { max-width: 530px; margin-top: 2rem; color: #9db2bf; font-size: 1.02rem; line-height: 1.75; }
.expertise-list { border-top: 1px solid var(--line); }
.expertise-row { display: grid; grid-template-columns: 54px .82fr 1.18fr; gap: 1.5rem; align-items: start; padding: 2.2rem 0; border-bottom: 1px solid var(--line); }
.expertise-row > span { color: #54b7e8; font-size: .7rem; letter-spacing: .1em; }
.expertise-row h3 { margin: -.2rem 0 0; font-size: clamp(1.35rem, 1.8vw, 1.85rem); line-height: 1.18; letter-spacing: -.025em; }
.expertise-row p { margin: 0; color: #94aab7; font-size: .93rem; line-height: 1.65; }

.intelligence-section { background: #eaf1f5; color: #0b2233; overflow: hidden; }
.intelligence-top { display: grid; grid-template-columns: 1.15fr .7fr; gap: 10vw; max-width: var(--max); margin: 0 auto 5.2rem; align-items: end; }
.intelligence-top > p { max-width: 550px; margin: 0 0 .55rem; color: #4f6877; font-size: 1.04rem; line-height: 1.75; }
.intelligence-stage { display: grid; grid-template-columns: minmax(380px, .88fr) minmax(480px, 1.12fr); gap: 5vw; max-width: var(--max); margin: 0 auto; align-items: stretch; }
.profile-universe { position: relative; min-height: 580px; overflow: hidden; background: #071d2d; color: white; box-shadow: 0 30px 90px rgba(16, 51, 72, .16); }
.profile-universe::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 62% 48%, rgba(53,173,229,.22), transparent 27%), linear-gradient(rgba(116,187,221,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(116,187,221,.08) 1px, transparent 1px); background-size: auto, 42px 42px, 42px 42px; }
.profile-universe::after { content: ""; position: absolute; width: 390px; height: 390px; top: 50%; left: 62%; transform: translate(-50%,-50%); border: 1px solid rgba(111,204,246,.18); border-radius: 50%; box-shadow: 0 0 0 74px rgba(92,189,235,.035), 0 0 0 148px rgba(92,189,235,.025); }
.universe-head { position: relative; z-index: 3; display: flex; justify-content: space-between; gap: 1rem; padding: 1.3rem 1.5rem; color: #7ea1b4; border-bottom: 1px solid rgba(255,255,255,.1); font-size: .66rem; letter-spacing: .11em; text-transform: uppercase; }
.universe-head strong { color: #8edcff; font-weight: 600; }
.profile-cloud { position: absolute; inset: 70px 22px 50px; z-index: 2; }
.profile-cloud span { position: absolute; left: var(--x); top: var(--y); width: calc(17px * var(--s)); height: calc(17px * var(--s)); transform: translate(-50%,-50%); border: 1px solid #64c8f5; border-radius: 50%; background: #0f405d; box-shadow: 0 0 0 5px rgba(82,191,240,.04), 0 0 18px rgba(47,161,216,.18); }
.profile-cloud span::after { content: ""; position: absolute; width: 84px; left: 50%; top: 50%; border-top: 1px solid rgba(112,201,241,.13); transform: rotate(calc((var(--x) - var(--y)) * 1deg)); transform-origin: left; }
.profile-cloud .profile-focus { background: #81dcff; border-color: white; box-shadow: 0 0 0 9px rgba(87,199,247,.1), 0 0 44px rgba(69,187,237,.58); }
.universe-foot { position: absolute; z-index: 3; inset: auto 1.5rem 1.2rem; color: #7798aa; font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; }
.universe-foot i { display: inline-block; width: 7px; height: 7px; margin-right: .5rem; background: #58c6f4; border-radius: 50%; box-shadow: 0 0 11px #58c6f4; }
.intelligence-copy { border-top: 1px solid #bccbd3; }
.intel-item { display: grid; grid-template-columns: 52px 1fr; gap: 1rem; padding: 1.6rem 0 1.75rem; border-bottom: 1px solid #bccbd3; }
.intel-item > span { color: #1684bc; font-size: .7rem; letter-spacing: .1em; }
.intel-item h3 { margin: -.2rem 0 .45rem; font-size: clamp(1.35rem, 1.75vw, 1.78rem); letter-spacing: -.025em; }
.intel-item p { margin: 0; max-width: 670px; color: #526b79; line-height: 1.68; }
.workflow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr; align-items: center; gap: 1.2rem; max-width: var(--max); margin: 5rem auto 0; padding: 1.4rem 0; border-top: 1px solid #b7c8d1; border-bottom: 1px solid #b7c8d1; }
.workflow div { display: flex; align-items: center; gap: .75rem; }
.workflow span { color: #1785bd; font-size: .62rem; }
.workflow strong { font-size: .76rem; letter-spacing: .04em; text-transform: uppercase; white-space: nowrap; }
.workflow > i { color: #77939f; font-style: normal; }

.global-section { display: grid; grid-template-columns: 1fr 1fr; gap: 9vw; align-items: center; max-width: calc(var(--max) + 10vw); margin: 0 auto; background: #071827; }
.global-copy > p:nth-of-type(2) { max-width: 650px; margin: 2rem 0 0; color: #a9bcc7; font-size: 1.04rem; line-height: 1.75; }
.region-list { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2.5rem; }
.region-list span { padding: .62rem .8rem; border: 1px solid rgba(128,195,228,.24); color: #a9c2d0; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; }
.case-panel { position: relative; min-height: 560px; display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(2rem, 4vw, 4.5rem); overflow: hidden; border: 1px solid var(--line); background: #0b273b; }
.case-panel::before { content: "US"; position: absolute; top: -5%; right: -3%; color: transparent; -webkit-text-stroke: 1px rgba(121,208,249,.13); font-size: 18rem; line-height: 1; letter-spacing: -.1em; font-weight: 700; }
.case-panel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, transparent 30%, rgba(52,160,210,.09)); pointer-events: none; }
.case-panel > * { position: relative; z-index: 1; }
.case-label { margin: 0 0 1.5rem; color: #79d2fa; font-size: .7rem; letter-spacing: .13em; text-transform: uppercase; }
.case-panel h3 { margin: 0; max-width: 650px; font-size: clamp(2.25rem, 3.55vw, 4.35rem); line-height: 1.04; letter-spacing: -.045em; }
.case-panel > p:nth-of-type(2) { max-width: 660px; margin: 1.6rem 0 0; color: #b8cbd5; line-height: 1.7; }
.case-steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; margin-top: 2.5rem; border-top: 1px solid rgba(255,255,255,.13); border-left: 1px solid rgba(255,255,255,.13); }
.case-steps span { padding: .9rem 1rem; border-right: 1px solid rgba(255,255,255,.13); border-bottom: 1px solid rgba(255,255,255,.13); color: #9bb4c2; font-size: .74rem; }

.process-section { background: #f3f6f8; color: #0b2233; }
.process-heading { display: grid; grid-template-columns: 1fr 1.25fr; gap: 8vw; align-items: end; max-width: var(--max); margin: 0 auto 5rem; }
.process-heading .eyebrow { align-self: start; }
.process-list { list-style: none; display: grid; grid-template-columns: repeat(5, 1fr); max-width: var(--max); margin: 0 auto; padding: 0; border-top: 1px solid #c1cfd6; border-left: 1px solid #c1cfd6; }
.process-list li { min-height: 270px; padding: 1.5rem; border-right: 1px solid #c1cfd6; border-bottom: 1px solid #c1cfd6; }
.process-list li > span { display: block; margin-bottom: 4rem; color: #1886bd; font-size: .68rem; letter-spacing: .1em; }
.process-list h3 { margin: 0 0 .65rem; font-size: 1.55rem; letter-spacing: -.02em; }
.process-list p { margin: 0; color: #5d727e; font-size: .88rem; line-height: 1.65; }

.about-section { display: grid; grid-template-columns: 1fr 1fr; gap: 10vw; align-items: start; max-width: calc(var(--max) + 10vw); margin: 0 auto; background: #081b2a; }
.about-detail > p { max-width: 720px; margin: .3rem 0 0; color: #b6c7d0; font-size: clamp(1.1rem, 1.4vw, 1.32rem); line-height: 1.8; }
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 4rem; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.facts div { min-height: 132px; padding: 1.3rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.facts strong, .facts span { display: block; }
.facts strong { font-size: clamp(1.35rem, 2.1vw, 2.25rem); letter-spacing: -.035em; }
.facts span { margin-top: .7rem; color: #7897aa; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }

.contact-section { display: grid; grid-template-columns: 1.06fr .94fr; gap: 8vw; padding: clamp(7rem, 12vw, 12rem) max(5vw, 32px); color: #0b2233; background: #63c7f3; }
.contact-copy .eyebrow { color: #0b4868; }
.contact-copy > p:last-child { max-width: 690px; margin: 2rem 0 0; color: #174863; font-size: 1.02rem; line-height: 1.72; }
.contact-actions { display: flex; flex-direction: column; justify-content: center; }
.contact-actions a { position: relative; display: flex; flex-direction: column; padding: 1.6rem 3.5rem 1.6rem 1.7rem; border: 1px solid rgba(7,33,49,.26); transition: background .2s ease, color .2s ease, transform .2s ease; }
.contact-actions a + a { border-top: 0; }
.contact-actions span { margin-bottom: .75rem; font-size: .7rem; letter-spacing: .11em; text-transform: uppercase; }
.contact-actions strong { font-size: clamp(1.08rem, 1.75vw, 1.7rem); letter-spacing: -.025em; }
.contact-actions i { position: absolute; top: 50%; right: 1.4rem; transform: translateY(-50%); font-size: 1.5rem; font-style: normal; }
.contact-primary { background: #092033; color: white; }
.contact-primary span { color: #73cbf2; }
.contact-secondary { color: #0b2233; }
.contact-actions a:hover, .contact-actions a:focus-visible { transform: translateX(6px); }
.contact-secondary:hover, .contact-secondary:focus-visible { background: rgba(255,255,255,.25); }

.site-footer { display: flex; justify-content: space-between; align-items: center; gap: 2rem; padding: 2.1rem max(5vw, 32px); border-top: 1px solid var(--line); background: #061520; }
.footer-brand { display: flex; align-items: center; gap: .9rem; }
.footer-brand > div span, .footer-brand > div strong { display: block; }
.footer-brand > div strong { font-size: 1rem; }
.footer-brand > div span { color: #728e9f; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-meta { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 1.5rem; color: #7994a5; font-size: .72rem; }
.footer-meta a:hover, .footer-meta a:focus-visible { color: white; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .site-header { grid-template-columns: 1fr auto; }
  .primary-nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 170px; }
  .hero-copy { max-width: 840px; }
  .hero-visual { width: min(86vw, 660px); }
  .client-strip { grid-template-columns: 1fr; }
  .section-heading, .intelligence-top, .process-heading { grid-template-columns: 1fr; gap: 1.5rem; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; border-right: 1px solid #c5d2d9; border-bottom: 1px solid #c5d2d9; }
  .service-card-accent { transform: none; }
  .service-card p { min-height: 0; }
  .card-index { margin-bottom: 2rem; }
  .expertise-section, .global-section, .about-section, .contact-section { grid-template-columns: 1fr; }
  .expertise-intro { position: static; }
  .intelligence-stage { grid-template-columns: 1fr; }
  .profile-universe { min-height: min(70vw, 600px); }
  .workflow { grid-template-columns: 1fr; gap: .6rem; }
  .workflow > i { transform: rotate(90deg); width: fit-content; margin-left: 1.1rem; }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .about-detail { max-width: 760px; }
}

@media (max-width: 640px) {
  .site-header { height: 72px; padding-inline: 18px; }
  .brand-mark { width: 36px; height: 36px; }
  .brand-name { font-size: 1.08rem; }
  .site-header > .button { min-height: 38px; padding-inline: .78rem; font-size: .74rem; }
  .hero { min-height: auto; padding: 126px 20px 58px; gap: 3.2rem; }
  h1 { font-size: clamp(3.55rem, 18vw, 5.2rem); }
  .hero-lede { font-size: 1rem; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: .9rem; }
  .text-link { width: fit-content; }
  .trust-line { margin-top: 2.8rem; flex-direction: column; gap: .55rem; }
  .trust-line span::after { display: none; }
  .hero-visual { width: 100%; }
  .signal-card { font-size: .61rem; padding: .38rem .45rem; }
  .visual-label { inset: 14px 15px auto; font-size: .56rem; }
  .visual-status { inset: auto 15px 14px; font-size: .55rem; }
  .client-strip { padding: 2rem 20px; gap: 1.3rem; }
  .client-strip div { display: grid; grid-template-columns: 1fr 1fr; }
  .section { padding: 5.5rem 20px; }
  .section-heading { margin-bottom: 3.2rem; }
  .section-heading h2, .intelligence-top h2, .global-copy h2, .process-heading h2, .about-statement h2, .contact-copy h2 { font-size: clamp(2.65rem, 13vw, 4.1rem); }
  .service-card { padding: 1.6rem; }
  .expertise-row { grid-template-columns: 38px 1fr; gap: .8rem; }
  .expertise-row p { grid-column: 2; }
  .intelligence-top { margin-bottom: 3.2rem; }
  .intelligence-stage { grid-template-columns: minmax(0,1fr); }
  .profile-universe { min-height: 480px; }
  .intel-item { grid-template-columns: 38px 1fr; }
  .workflow { margin-top: 3rem; }
  .case-panel { min-height: 520px; padding: 1.6rem; }
  .case-panel::before { font-size: 11rem; }
  .case-steps { grid-template-columns: 1fr; }
  .process-heading { margin-bottom: 3rem; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li { min-height: 0; }
  .process-list li > span { margin-bottom: 2rem; }
  .facts { grid-template-columns: 1fr; }
  .facts div { min-height: 100px; }
  .contact-section { padding: 6rem 20px; }
  .contact-actions a { padding-left: 1.2rem; }
  .site-footer { align-items: flex-start; flex-direction: column; padding-inline: 20px; }
  .footer-meta { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
