:root {
  --ink: #10233b;
  --ink-deep: #071a2d;
  --muted: #5d6d7d;
  --blue: #1679d2;
  --blue-dark: #075daf;
  --blue-soft: #dceeff;
  --sky: #edf7ff;
  --mint: #dff5e9;
  --lilac: #ece7fb;
  --sand: #f4ead4;
  --warm: #f7f5ef;
  --white: #fff;
  --line: rgba(16, 35, 59, .12);
  --shadow: 0 24px 70px rgba(23, 50, 77, .12);
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --shell: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--warm); font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; -webkit-font-smoothing: antialiased; }
body, button, input { font: inherit; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin-top: 0; }
.page-shell { width: min(calc(100% - 56px), var(--shell)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; left: 20px; top: 16px; padding: 12px 18px; border-radius: 999px; color: #fff; background: var(--ink); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: fixed; inset: 0 0 auto; z-index: 50; padding: 18px 0; transition: padding .25s ease; }
.site-header__inner { min-height: 68px; padding: 8px 10px 8px 18px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border: 1px solid rgba(255,255,255,.8); border-radius: 999px; background: rgba(255,255,255,.86); box-shadow: 0 8px 35px rgba(32,61,87,.09); backdrop-filter: blur(18px); }
.site-header.is-scrolled { padding-top: 9px; }
.site-header.is-scrolled .site-header__inner { box-shadow: 0 12px 40px rgba(32,61,87,.15); }
.brand { display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.brand img { width: 40px; height: 40px; object-fit: contain; }
.brand span { display: flex; flex-direction: column; line-height: 1; }
.brand strong { font-size: 18px; letter-spacing: -.02em; }
.brand small { margin-top: 5px; color: #5b7590; font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 8px; }
.site-nav a { padding: 12px 14px; color: #40556a; border-radius: 999px; font-size: 14px; font-weight: 650; transition: color .2s, background .2s, transform .2s; }
.site-nav a:hover { color: var(--blue-dark); background: var(--sky); }
.site-nav .login-link { margin-left: 6px; padding-inline: 20px; color: #fff; background: var(--ink); }
.site-nav .login-link:hover { color: #fff; background: var(--blue-dark); transform: translateY(-1px); }
.nav-toggle { display: none; width: 46px; height: 46px; border: 0; border-radius: 50%; background: var(--sky); cursor: pointer; }
.nav-toggle > span:not(.sr-only) { display: block; width: 18px; height: 2px; margin: 4px auto; background: var(--ink); }

.hero { position: relative; overflow: hidden; padding: 148px 0 70px; background: linear-gradient(180deg, #f4f9fc 0%, var(--warm) 94%); }
.hero__wash { position: absolute; width: 720px; height: 720px; right: -180px; top: -230px; border-radius: 50%; background: radial-gradient(circle, rgba(48,158,240,.22), rgba(255,255,255,0) 68%); pointer-events: none; }
.hero__grid { position: relative; display: grid; grid-template-columns: .86fr 1.14fr; align-items: center; gap: clamp(38px, 5vw, 82px); }
.hero__copy { padding-left: clamp(0px, 2vw, 28px); }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; color: var(--blue-dark); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow > span { width: 9px; height: 9px; border: 3px solid var(--blue); border-radius: 50%; box-shadow: 0 0 0 5px rgba(22,121,210,.1); }
.eyebrow--ink { color: #47627c; }
.eyebrow--light { color: #9cd6ff; }
.hero h1 { max-width: 700px; margin-bottom: 28px; font-size: clamp(48px, 5.25vw, 78px); line-height: .99; letter-spacing: -.055em; }
.hero h1 em, .section h2 em { color: var(--blue); font-style: normal; }
.hero__lead { max-width: 625px; margin-bottom: 32px; color: #4d6479; font-size: clamp(17px, 1.35vw, 21px); line-height: 1.65; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button { min-height: 52px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center; gap: 14px; border-radius: 999px; font-size: 14px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button--primary { color: #fff; background: var(--blue); box-shadow: 0 12px 28px rgba(22,121,210,.25); }
.button--primary:hover { background: var(--blue-dark); box-shadow: 0 16px 34px rgba(22,121,210,.34); }
.button--quiet { color: var(--ink); background: rgba(255,255,255,.75); border: 1px solid var(--line); }
.button--quiet:hover { background: #fff; }
.button--light { color: var(--ink); background: #fff; }
.hero__photo { position: relative; min-height: 620px; margin: 0; overflow: hidden; border: 9px solid rgba(255,255,255,.82); border-radius: 50px 50px 50px 12px; box-shadow: var(--shadow); }
.hero__photo > img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; object-position: 52% center; }
.live-note { position: absolute; left: 24px; right: 24px; bottom: 24px; min-height: 84px; padding: 15px 16px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; color: var(--ink); border: 1px solid rgba(255,255,255,.9); border-radius: 22px; background: rgba(255,255,255,.89); box-shadow: 0 16px 40px rgba(4,22,39,.16); backdrop-filter: blur(18px); }
.live-note__check { width: 46px; height: 46px; display: grid; place-items: center; color: #fff; border-radius: 50%; background: #1ca46f; font-weight: 900; }
.live-note span:nth-child(2) { display: flex; flex-direction: column; gap: 4px; }
.live-note small { color: #65788b; font-size: 11px; }
.live-note strong { font-size: 14px; }
.live-note b { padding: 8px 10px; color: #08744c; border-radius: 999px; background: #dff7ed; font-size: 10px; letter-spacing: .1em; }
.outcome-ribbon { position: relative; margin-top: 34px; padding: 20px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; border: 1px solid rgba(255,255,255,.85); border-radius: 30px; background: rgba(255,255,255,.65); box-shadow: 0 12px 38px rgba(31,62,89,.07); }
.outcome-ribbon article { padding: 12px 18px; display: flex; align-items: center; gap: 16px; border-right: 1px solid var(--line); }
.outcome-ribbon article:last-child { border-right: 0; }
.outcome-ribbon article > span { color: var(--blue); font-size: 12px; font-weight: 900; }
.outcome-ribbon div { display: flex; flex-direction: column; gap: 5px; }
.outcome-ribbon strong { font-size: 15px; }
.outcome-ribbon small { color: var(--muted); line-height: 1.45; }

.section { padding: 112px 0; }
.section-heading { max-width: 840px; margin-bottom: 50px; }
.section-heading--centred { margin-inline: auto; text-align: center; }
.section-heading--centred .eyebrow { justify-content: center; }
.section-heading--split { max-width: none; display: grid; grid-template-columns: 1.1fr .75fr; align-items: end; gap: 80px; }
.section h2 { margin-bottom: 24px; font-size: clamp(38px, 4vw, 62px); line-height: 1.05; letter-spacing: -.045em; }
.section-heading > p, .section-heading--split > p, .story-copy > p, .people-copy > p, .responsible-copy > p { color: var(--muted); font-size: 18px; line-height: 1.7; }
.section--story { background: #fff; }
.story-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(60px, 9vw, 145px); align-items: center; }
.story-copy h2 { font-size: clamp(40px, 4.3vw, 66px); }
.text-link { display: inline-flex; gap: 12px; margin-top: 12px; color: var(--blue-dark); font-weight: 800; }
.journey { position: relative; padding: 12px 0; }
.journey::before { content: ""; position: absolute; left: 30px; top: 50px; bottom: 50px; width: 2px; background: linear-gradient(var(--blue-soft), var(--blue), var(--mint)); }
.journey article { position: relative; padding: 25px 28px; display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: start; border-bottom: 1px solid var(--line); }
.journey article:last-child { border-bottom: 0; }
.journey__number { position: relative; z-index: 1; width: 61px; height: 61px; display: grid; place-items: center; color: var(--blue-dark); border: 7px solid #fff; border-radius: 50%; background: var(--blue-soft); font-size: 13px; font-weight: 900; }
.journey article:nth-child(2) .journey__number { background: var(--sand); color: #8d5c04; }
.journey article:nth-child(3) .journey__number { background: var(--mint); color: #19734e; }
.journey small { color: var(--blue-dark); font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.journey h3 { margin: 6px 0 7px; font-size: 20px; letter-spacing: -.02em; }
.journey p { margin: 0; color: var(--muted); line-height: 1.6; }

.product-stage { overflow: hidden; border: 1px solid rgba(34,87,131,.16); border-radius: 34px; background: #f9fcff; box-shadow: var(--shadow); }
.product-stage__top { min-height: 72px; padding: 12px 18px; display: grid; grid-template-columns: 1fr 1.55fr 1fr; align-items: center; gap: 20px; border-bottom: 1px solid var(--line); background: #fff; }
.product-brand { display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 800; }
.product-brand img { width: 32px; height: 32px; object-fit: contain; }
.product-search { padding: 12px 16px; color: #778796; border: 1px solid #d2dce5; border-radius: 12px; background: #f6f9fb; font-size: 13px; }
.product-live { justify-self: end; color: #63778a; font-size: 12px; }
.product-live i { width: 8px; height: 8px; margin-right: 6px; display: inline-block; border-radius: 50%; background: #20a46e; box-shadow: 0 0 0 4px #dff5eb; }
.product-tabs { display: grid; grid-template-columns: 1fr 1fr; background: #eff7fd; }
.product-tab { min-height: 76px; padding: 16px 25px; display: grid; grid-template-columns: auto 1fr; grid-template-rows: 1fr 1fr; column-gap: 13px; color: #5b7184; border-bottom: 3px solid transparent; }
.product-tab > span { grid-row: 1 / 3; align-self: center; width: 38px; height: 38px; display: grid; place-items: center; color: var(--blue); border-radius: 12px; background: #fff; }
.product-tab strong { align-self: end; color: var(--ink); font-size: 14px; }
.product-tab small { font-size: 11px; }
.product-tab--active { border-color: var(--blue); background: #fff; }
.product-body { min-height: 395px; padding: 28px; display: grid; grid-template-columns: .72fr 1.28fr; gap: 22px; background: linear-gradient(145deg, #eef6fb, #f9fbfd); }
.alert-card, .evidence-card { padding: 24px; border: 1px solid rgba(25,79,121,.13); border-radius: 22px; background: #fff; box-shadow: 0 10px 30px rgba(29,65,94,.07); }
.alert-card { border-top: 4px solid #df4b42; }
.alert-card__head { display: flex; align-items: center; justify-content: space-between; }
.alert-card__head span, .evidence-card small { color: #ca312b; font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.alert-card__head b { padding: 6px 9px; color: #b42723; border-radius: 999px; background: #ffebe9; font-size: 9px; letter-spacing: .08em; }
.plate { width: max-content; margin: 24px 0 18px; padding: 9px 14px; color: #15191d; border: 2px solid #18222b; border-radius: 5px; background: #fffbe9; font-family: "Courier New", monospace; font-size: 22px; font-weight: 900; letter-spacing: .08em; }
.alert-card h3 { margin-bottom: 10px; font-size: 21px; }
.alert-card p { min-height: 72px; color: var(--muted); line-height: 1.6; }
.alert-card__meta { padding-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; border-top: 1px solid var(--line); }
.alert-card__meta span { padding: 6px 9px; color: #52687b; border-radius: 999px; background: #eef5f9; font-size: 10px; font-weight: 700; }
.evidence-card { display: flex; flex-direction: column; }
.evidence-card__heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.evidence-card__heading small { color: var(--blue-dark); }
.evidence-card h3 { margin: 5px 0 0; font-size: 21px; }
.evidence-card__heading > span { color: #637589; font-size: 11px; }
.route-map { position: relative; flex: 1 1 auto; min-height: 210px; margin: 22px 0 16px; overflow: hidden; border-radius: 17px; background: #e8f0f2; }
.road { position: absolute; height: 7px; border-radius: 99px; background: rgba(255,255,255,.8); transform-origin: left center; }
.road--one { width: 115%; left: -5%; top: 32%; transform: rotate(8deg); }
.road--two { width: 105%; left: 5%; top: 78%; transform: rotate(-22deg); }
.road--three { width: 90%; left: 46%; top: -12%; transform: rotate(70deg); }
.route-line { position: absolute; left: 18%; right: 18%; top: 48%; height: 5px; border-radius: 99px; background: var(--blue); transform: rotate(-7deg); box-shadow: 0 0 0 3px rgba(22,121,210,.1); }
.point { position: absolute; z-index: 2; width: 14px; height: 14px; border: 4px solid #fff; border-radius: 50%; background: var(--blue); box-shadow: 0 3px 10px rgba(0,75,140,.3); }
.point--one { left: 17%; top: 54%; }.point--two { left: 38%; top: 45%; }.point--three { left: 61%; top: 38%; }.point--four { right: 16%; top: 29%; }
.evidence-card__footer { display: flex; flex-wrap: wrap; gap: 8px; }
.evidence-card__footer span { padding: 7px 11px; color: var(--blue-dark); border-radius: 999px; background: var(--sky); font-size: 10px; font-weight: 800; }
.capability-row { margin-top: 24px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.capability { min-height: 240px; padding: 30px; border-radius: 26px; }
.capability--blue { background: var(--blue-soft); }.capability--mint { background: var(--mint); }.capability--lilac { background: var(--lilac); }
.capability > span { width: 38px; height: 38px; margin-bottom: 34px; display: grid; place-items: center; color: #fff; border-radius: 50%; background: var(--ink); font-size: 11px; font-weight: 900; }
.capability h3 { margin-bottom: 10px; font-size: 22px; }
.capability p { margin: 0; color: #425c73; line-height: 1.6; }

.section--outcome { padding: 42px 0; }
.recovery-card { position: relative; min-height: 680px; overflow: hidden; border-radius: 42px; box-shadow: var(--shadow); }
.recovery-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.recovery-card__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,24,38,.84) 0%, rgba(6,24,38,.55) 42%, rgba(6,24,38,.02) 72%); }
.recovery-card__copy { position: absolute; z-index: 1; left: clamp(30px, 6vw, 90px); top: 50%; width: min(570px, 80%); color: #fff; transform: translateY(-50%); }
.recovery-card__copy h2 { max-width: 520px; }
.recovery-card__copy > p:not(.eyebrow) { margin-bottom: 30px; color: rgba(255,255,255,.83); font-size: 19px; line-height: 1.7; }

.section--cases { background: #fff; }
.case-cloud { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.case-card { position: relative; min-height: 265px; padding: 31px; overflow: hidden; border-radius: 29px; background: var(--sky); }
.case-card::after { content: ""; position: absolute; width: 170px; height: 170px; right: -70px; top: -70px; border: 1px solid rgba(22,121,210,.17); border-radius: 50%; }
.case-card--large { grid-column: span 3; grid-row: span 2; min-height: 548px; padding: 42px; display: flex; flex-direction: column; justify-content: flex-end; }
.case-card:not(.case-card--large):not(.case-card--wide) { grid-column: span 3; }
.case-card--wide { grid-column: span 6; min-height: 235px; padding-right: 32%; }
.case-card--sand { background: var(--sand); }.case-card--blue { background: var(--blue-soft); }.case-card--mint { background: var(--mint); }.case-card--lilac { background: var(--lilac); }.case-card--ink { color: #fff; background: var(--ink-deep); }
.case-card > span { color: #45637e; font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.case-card--ink > span { color: #8fcfff; }
.case-card h3 { max-width: 680px; margin: 20px 0 12px; font-size: clamp(23px, 2.1vw, 34px); line-height: 1.18; letter-spacing: -.025em; }
.case-card--large h3 { font-size: clamp(30px, 3.2vw, 48px); }
.case-card p { max-width: 650px; color: #506a7e; line-height: 1.65; }
.case-card--ink p { color: #b9c9d6; }
.case-card b { position: absolute; right: 24px; bottom: 24px; padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,.58); font-size: 10px; }
.case-card--ink b { background: rgba(255,255,255,.1); }

.section--people { background: linear-gradient(180deg, var(--warm), #eff7fb); }
.people-grid { display: grid; grid-template-columns: .76fr 1.24fr; align-items: center; gap: clamp(50px, 7vw, 110px); }
.people-copy h2 { font-size: clamp(40px, 4.4vw, 66px); }
.soft-list { margin: 30px 0 0; padding: 0; list-style: none; }
.soft-list li { padding: 13px 0; display: flex; align-items: center; gap: 12px; color: #405972; border-bottom: 1px solid var(--line); line-height: 1.45; }
.soft-list li span { width: 27px; height: 27px; flex: 0 0 auto; display: grid; place-items: center; color: #12704c; border-radius: 50%; background: var(--mint); font-size: 12px; font-weight: 900; }
.people-photo { position: relative; min-height: 590px; margin: 0; overflow: hidden; border: 8px solid rgba(255,255,255,.75); border-radius: 12px 44px 44px 44px; box-shadow: var(--shadow); }
.people-photo img { width: 100%; height: 100%; min-height: 590px; object-fit: cover; }
.people-photo figcaption { position: absolute; left: 24px; right: 24px; bottom: 24px; padding: 18px 20px; display: flex; flex-direction: column; gap: 5px; border-radius: 19px; background: rgba(255,255,255,.9); backdrop-filter: blur(16px); }
.people-photo figcaption small { color: var(--blue-dark); font-size: 9px; font-weight: 900; letter-spacing: .13em; }
.people-photo figcaption strong { font-size: 16px; }

.section--connect { background: #eff7fb; }
.connect-card { min-height: 520px; padding: clamp(42px, 6vw, 84px); display: grid; grid-template-columns: 1fr .9fr; gap: 60px; align-items: center; overflow: hidden; color: #fff; border-radius: 42px; background: linear-gradient(135deg, #126fc2, #074e92 62%, #083b6c); box-shadow: 0 30px 80px rgba(6,73,132,.25); }
.connect-card__copy h2 { font-size: clamp(42px, 4.5vw, 68px); }
.connect-card__copy > p:not(.eyebrow) { color: #d0e6f8; font-size: 18px; line-height: 1.7; }
.integration-pills { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 9px; }
.integration-pills span { padding: 10px 14px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; background: rgba(255,255,255,.09); font-size: 12px; font-weight: 700; }
.network-picture { position: relative; min-height: 350px; }
.network-picture::before, .network-picture::after { content: ""; position: absolute; inset: 12% 10%; border: 1px solid rgba(139,213,255,.32); border-radius: 50%; }
.network-picture::after { inset: 25%; }
.network-core { position: absolute; z-index: 2; left: 50%; top: 50%; width: 112px; height: 112px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.55); border-radius: 32px; background: #fff; box-shadow: 0 18px 50px rgba(1,25,47,.25); transform: translate(-50%,-50%) rotate(4deg); }
.network-core img { width: 68px; height: 68px; object-fit: contain; transform: rotate(-4deg); }
.network-node { position: absolute; z-index: 2; padding: 10px 13px; border: 1px solid rgba(255,255,255,.3); border-radius: 999px; background: rgba(2,42,78,.52); box-shadow: 0 10px 25px rgba(0,30,55,.18); backdrop-filter: blur(9px); font-size: 11px; font-weight: 800; }
.network-node i { width: 7px; height: 7px; margin-left: 8px; display: inline-block; border-radius: 50%; background: #56e0a8; }
.network-node--one { left: 4%; top: 16%; }.network-node--two { right: 2%; top: 10%; }.network-node--three { right: 7%; bottom: 13%; }.network-node--four { left: 6%; bottom: 8%; }

.section--responsible { background: #fff; }
.responsible-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(60px, 9vw, 145px); }
.responsible-copy { position: sticky; top: 130px; align-self: start; }
.responsible-copy h2 { font-size: clamp(38px, 4vw, 59px); }
.responsible-list article { padding: 30px 0; display: grid; grid-template-columns: auto 1fr; gap: 22px; border-bottom: 1px solid var(--line); }
.responsible-list article:first-child { padding-top: 0; }
.responsible-list article > span { width: 45px; height: 45px; display: grid; place-items: center; color: var(--blue-dark); border-radius: 50%; background: var(--sky); font-size: 11px; font-weight: 900; }
.responsible-list h3 { margin: 1px 0 7px; font-size: 21px; }
.responsible-list p { margin: 0; color: var(--muted); line-height: 1.65; }

.section--contact { padding-bottom: 70px; background: #fff; }
.contact-card { position: relative; min-height: 430px; padding: clamp(42px, 6vw, 86px); display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 70px; overflow: hidden; color: #fff; border-radius: 42px; background: var(--ink-deep); }
.contact-card__orb { position: absolute; width: 500px; height: 500px; right: -180px; top: -250px; border: 1px solid rgba(75,178,255,.28); border-radius: 50%; box-shadow: 0 0 0 75px rgba(75,178,255,.04), 0 0 0 150px rgba(75,178,255,.025); }
.contact-card > div { position: relative; z-index: 1; }
.contact-card h2 { max-width: 850px; margin-bottom: 16px; font-size: clamp(42px, 4.8vw, 70px); }
.contact-card p:not(.eyebrow) { max-width: 710px; margin-bottom: 0; color: #b9cbda; font-size: 18px; line-height: 1.7; }
.contact-card__actions { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.contact-login { color: #b9d7ee; font-size: 12px; text-decoration: underline; text-underline-offset: 4px; }

.site-footer { padding: 52px 0; color: #6f8293; background: #fff; }
.site-footer__inner { display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 40px; }
.brand--footer img { width: 34px; height: 34px; }
.site-footer p { margin: 0; font-size: 13px; }
.site-footer__inner > div { display: flex; gap: 18px; font-size: 12px; }
.site-footer__inner > div a:hover { color: var(--blue-dark); }
.site-footer__inner > small { font-size: 10px; }

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

@media (max-width: 1100px) {
  .site-nav a:not(.login-link) { display: none; }
  .hero__grid { grid-template-columns: 1fr 1fr; gap: 35px; }
  .hero__photo, .hero__photo > img { min-height: 545px; }
  .hero h1 { font-size: clamp(45px, 5.5vw, 64px); }
  .story-grid, .people-grid, .responsible-grid { gap: 55px; }
  .product-body { grid-template-columns: .85fr 1.15fr; }
  .contact-card { grid-template-columns: 1fr; align-items: start; }
  .contact-card__actions { align-items: flex-start; }
}

@media (max-width: 820px) {
  .page-shell { width: min(calc(100% - 30px), var(--shell)); }
  .site-header { padding-top: 10px; }
  .site-header__inner { min-height: 60px; padding-left: 13px; }
  .brand img { width: 34px; height: 34px; }
  .brand strong { font-size: 16px; }
  .nav-toggle { display: block; }
  .site-nav { position: absolute; left: 15px; right: 15px; top: calc(100% + 8px); padding: 12px; display: none; flex-direction: column; align-items: stretch; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.97); box-shadow: var(--shadow); }
  .site-nav.is-open { display: flex; }
  .site-nav a:not(.login-link) { display: block; }
  .site-nav .login-link { margin-left: 0; text-align: center; }
  .hero { padding-top: 116px; }
  .hero__grid, .story-grid, .people-grid, .responsible-grid, .connect-card, .section-heading--split { grid-template-columns: 1fr; }
  .hero__copy { padding: 30px 5px 8px; }
  .hero__photo, .hero__photo > img { min-height: 500px; }
  .hero__photo { border-radius: 34px 34px 34px 10px; }
  .outcome-ribbon { grid-template-columns: 1fr; }
  .outcome-ribbon article { border-right: 0; border-bottom: 1px solid var(--line); }
  .outcome-ribbon article:last-child { border-bottom: 0; }
  .section { padding: 82px 0; }
  .section-heading--split { gap: 12px; }
  .product-stage__top { grid-template-columns: 1fr auto; }
  .product-search { grid-row: 2; grid-column: 1 / 3; }
  .product-body { grid-template-columns: 1fr; }
  .capability-row { grid-template-columns: 1fr; }
  .capability { min-height: 190px; }
  .capability > span { margin-bottom: 20px; }
  .recovery-card { min-height: 620px; }
  .recovery-card > img { object-position: 58% center; }
  .recovery-card__shade { background: linear-gradient(0deg, rgba(6,24,38,.86), rgba(6,24,38,.05) 75%); }
  .recovery-card__copy { left: 30px; right: 30px; top: auto; bottom: 36px; width: auto; transform: none; }
  .case-card--large, .case-card:not(.case-card--large):not(.case-card--wide), .case-card--wide { grid-column: span 6; min-height: 300px; }
  .case-card--large { min-height: 420px; }
  .case-card--wide { padding-right: 31px; }
  .people-photo, .people-photo img { min-height: 500px; }
  .connect-card { gap: 25px; }
  .responsible-copy { position: static; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 540px) {
  .page-shell { width: min(calc(100% - 22px), var(--shell)); }
  .site-header__inner { width: calc(100% - 22px); }
  .site-header .brand small { display: none; }
  .hero h1 { font-size: 43px; }
  .hero__lead { font-size: 16px; }
  .button-row, .button { width: 100%; }
  .hero__photo, .hero__photo > img { min-height: 440px; }
  .hero__photo > img { object-position: 62% center; }
  .live-note { left: 12px; right: 12px; bottom: 12px; grid-template-columns: auto 1fr; }
  .live-note b { display: none; }
  .outcome-ribbon { padding: 12px; border-radius: 24px; }
  .section h2 { font-size: 38px; }
  .journey article { padding-inline: 4px; }
  .product-tabs { grid-template-columns: 1fr; }
  .product-tab { min-height: 68px; }
  .product-body { padding: 12px; }
  .alert-card, .evidence-card { padding: 18px; }
  .evidence-card__footer { gap: 5px; }
  .recovery-card { min-height: 600px; border-radius: 28px; }
  .recovery-card__copy { left: 22px; right: 22px; }
  .case-cloud { gap: 12px; }
  .case-card { border-radius: 23px; padding: 25px; }
  .people-photo, .people-photo img { min-height: 400px; }
  .people-photo { border-radius: 10px 30px 30px 30px; }
  .connect-card, .contact-card { padding: 32px 24px; border-radius: 28px; }
  .network-picture { min-height: 300px; }
  .network-core { width: 90px; height: 90px; }
  .network-node { font-size: 9px; }
  .responsible-list article { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr; gap: 22px; }
}

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