:root {
  --petrol: #062230;
  --petrol-section: #04202d;
  --petrol-deep: #031824;
  --petrol-chip: #08293a;
  --navy: #0d3550;
  --orange: #ec6225;
  --orange-light: #f47c45;
  --blue: #0069b4;
  --blue-light: #4aa8e7;
  --blue-tint: #c8d5ef;
  --cream: #faf7f1;
  --turquoise: #45b9a8;
  --white: #fff;
  --text: rgba(255, 255, 255, 0.8);
  --muted: rgba(255, 255, 255, 0.53);
  --line: rgba(255, 255, 255, 0.15);
  --display: "Manrope", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --shell: 1320px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section: clamp(5rem, 10vw, 9rem);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 5.5rem; }
body { margin: 0; background: var(--petrol); color: var(--text); font-family: var(--display); font-size: 1rem; line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, summary { font: inherit; }
button { color: inherit; }
::selection { background: var(--orange); color: var(--white); }

.shell { width: min(100%, var(--shell)); margin-inline: auto; padding-inline: var(--gutter); }
.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; top: 0.75rem; left: 0.75rem; padding: 0.75rem 1rem; background: var(--white); color: var(--petrol-deep); transform: translateY(-160%); transition: transform 160ms ease; }
.skip-link:focus { transform: translateY(0); }
.scroll-progress { position: fixed; z-index: 500; inset: 0 auto auto 0; width: 0; height: 3px; background: var(--orange); pointer-events: none; }
.scroll-top { position: fixed; z-index: 400; right: 20px; bottom: 20px; display: grid; place-items: center; width: 3rem; height: 3rem; padding: 0; border: 1px solid rgba(255,255,255,.28); background: rgba(3,24,36,.86); color: var(--white); cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(.6rem); backdrop-filter: blur(8px); transition: opacity 220ms var(--ease), transform 220ms var(--ease), visibility 220ms, border-color 180ms ease, background 180ms ease; }
.scroll-top > span[aria-hidden] { font-size: 1.15rem; line-height: 1; }
.scroll-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover, .scroll-top:focus-visible { border-color: var(--orange); background: rgba(236,98,37,.18); }
body.nav-open .scroll-top { opacity: 0; visibility: hidden; }
.section-grid { background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 72px 72px; }

.site-header { position: sticky; z-index: 100; top: 0; height: 5rem; background: rgba(3, 24, 36, .94); border-bottom: 1px solid rgba(255,255,255,.1); backdrop-filter: blur(12px); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { align-self: stretch; display: flex; align-items: center; justify-content: center; width: 10.5rem; margin-left: calc(-1 * var(--gutter)); padding: .3rem .6rem; background: var(--white); clip-path: polygon(0 0, 100% 0, calc(100% - 1rem) 100%, 0 100%); }
.brand img { width: 8.8rem; transform: translateX(-.5rem); }
.main-nav { display: flex; align-items: center; gap: clamp(.25rem, 1.5vw, 1.25rem); margin-left: auto; }
.main-nav a { font-family: var(--mono); font-size: 1.08rem; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; padding: .75rem .5rem; color: rgba(255,255,255,.78); transition: color 180ms ease; }
.main-nav a:hover, .main-nav a:focus-visible, .main-nav a[aria-current] { color: var(--orange-light); }
.nav-toggle { display: none; border: 0; background: transparent; }

.hero { position: relative; overflow: hidden; min-height: calc(100vh - 5rem); display: grid; align-items: center; }
.hero::before, .hero::after { content: ""; position: absolute; border: 1px solid rgba(236,98,37,.15); border-radius: 50%; pointer-events: none; }
.hero::before { width: 44rem; height: 44rem; top: -19rem; right: -10rem; }
.hero::after { width: 29rem; height: 29rem; top: -11rem; right: -2rem; opacity: .6; }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: clamp(3rem, 7vw, 7rem); padding-block: clamp(4rem, 8vw, 7.5rem); }
.hero-meta { display: flex; justify-content: space-between; align-items: center; gap: 1rem; max-width: 42rem; margin-bottom: 2rem; font-family: var(--mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.eyebrow { display: inline-flex; align-items: center; gap: .75rem; margin: 0; font-family: var(--mono); font-size: .792rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.82); }
.eyebrow::before { content: ""; width: 2.1rem; height: 2px; background: var(--orange); }
.hero h1 { margin: 0; font-size: clamp(3.55rem, 6.1vw, 5.5rem); line-height: .97; letter-spacing: -.045em; color: var(--white); }
.hero h1 span { display: block; }
.outline-text { color: var(--petrol); -webkit-text-stroke: 1.5px rgba(255,255,255,.58); paint-order: stroke fill; }
.accent-text { color: var(--orange); }
.hero-claim { margin: 1.4rem 0 .9rem; color: var(--white); font-size: clamp(1.25rem, 2vw, 1.65rem); font-weight: 700; }
.hero-lead { max-width: 42rem; margin: 0 0 2rem; font-size: clamp(1rem, 1.35vw, 1.14rem); line-height: 1.75; }
.button-row { display: flex; flex-wrap: wrap; gap: .9rem; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: .8rem; min-height: 3.4rem; padding: .85rem 1.45rem; color: var(--white); font-weight: 700; border: 1px solid transparent; transition: filter 180ms ease, border-color 180ms ease, background 180ms ease; }
.button-primary { background: var(--orange); }
.button-primary:hover, .button-primary:focus-visible { filter: brightness(.93); }
.button-secondary { border-color: rgba(255,255,255,.42); background: rgba(255,255,255,.01); }
.button-secondary:hover, .button-secondary:focus-visible { border-color: var(--white); background: rgba(255,255,255,.06); }
.micro-proof { display: flex; align-items: center; gap: .7rem; margin: 1.35rem 0 0; color: var(--muted); font-size: .86rem; }
.micro-proof span { width: .5rem; height: .5rem; background: var(--orange); }
.coordinate { position: absolute; z-index: 2; font-family: var(--mono); font-size: .6rem; letter-spacing: .18em; color: rgba(255,255,255,.27); writing-mode: vertical-rl; }
.coordinate-left { left: .8rem; top: 11rem; }
.coordinate-right { right: .8rem; bottom: 7rem; }

.flow-card { position: relative; display: flex; flex-direction: column; padding: 1.35rem 1.5rem 1.5rem; border: 1px solid rgba(255,255,255,.17); background: rgba(255,255,255,.025); backdrop-filter: blur(2px); }
.card-topline, .flow-title { display: flex; align-items: baseline; gap: .65rem; font-family: var(--mono); font-size: .64rem; letter-spacing: .09em; text-transform: uppercase; }
.card-topline { justify-content: space-between; margin-bottom: 1rem; color: var(--muted); }
.live { display: inline-flex; align-items: center; gap: .45rem; color: rgba(255,255,255,.72); }
.live i { width: .45rem; height: .45rem; background: #64c987; animation: blink 2s ease-in-out infinite; }
.flow-title { flex-wrap: wrap; margin-bottom: .65rem; }
.flow-title b { color: var(--orange-light); }
.flow-title strong { font-family: var(--display); font-size: .85rem; letter-spacing: 0; color: var(--white); text-transform: none; }
.flow-title span { color: rgba(255,255,255,.4); }
.chip-list { display: flex; flex-wrap: wrap; gap: .4rem; }
.chip-list span { display: inline-flex; align-items: center; gap: .4rem; padding: .42rem .55rem; border: 1px solid rgba(255,255,255,.18); background: var(--petrol-chip); font-family: var(--mono); font-size: .56rem; letter-spacing: .07em; text-transform: uppercase; color: rgba(255,255,255,.86); }
.chip-list i { width: .38rem; height: .38rem; background: var(--blue-light); }
.chip-list i.orange { background: var(--orange); }
.flow-convergence, .flow-connector { display: block; width: 100%; overflow: visible; }
.flow-convergence { height: 3.5rem; }
.flow-connector { height: 2.15rem; }
.flow-convergence path, .flow-connector path { fill: none; stroke: rgba(255,255,255,.27); stroke-width: 1; stroke-dasharray: 4 6; animation: dash-move 3s linear infinite; }
.flow-convergence path:nth-child(1) { animation-duration: 3.4s; }
.flow-convergence path:nth-child(2) { animation-duration: 3s; }
.flow-convergence path:nth-child(3) { animation-duration: 2.7s; }
.flow-convergence path:nth-child(4) { animation-duration: 3.2s; }
.flow-convergence path:nth-child(5) { animation-duration: 3.6s; }
.motion-dot-orange { fill: var(--orange-light); }
.motion-dot-blue { fill: var(--blue-light); }
.data-core { display: flex; justify-content: center; align-items: center; gap: .6rem; padding: .7rem; border: 1px solid var(--orange); background: rgba(236,98,37,.12); color: var(--white); font-size: .78rem; font-weight: 700; }
.data-core i { width: .48rem; height: .48rem; background: var(--orange); animation: blink 2.4s ease-in-out infinite; }
.flow-chart { padding: .75rem 1rem .5rem; border: 1px solid rgba(255,255,255,.17); background: var(--petrol-chip); }
.flow-chart svg { display: block; width: 100%; height: 5.25rem; }
.flow-chart .chart-baseline { stroke: rgba(255,255,255,.15); stroke-width: 1; }
.flow-chart rect { fill: var(--blue); }
.flow-chart rect:nth-of-type(1) { opacity: .42; }.flow-chart rect:nth-of-type(2) { opacity: .5; }.flow-chart rect:nth-of-type(3) { opacity: .58; }.flow-chart rect:nth-of-type(4) { opacity: .66; }.flow-chart rect:nth-of-type(5) { opacity: .72; }.flow-chart rect:nth-of-type(6) { opacity: .8; }.flow-chart rect:nth-of-type(7) { opacity: .87; }.flow-chart rect:nth-of-type(8) { opacity: .94; }.flow-chart rect:nth-of-type(9) { opacity: 1; }
.flow-chart .chart-line { fill: none; stroke: var(--orange); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.flow-chart .chart-dot { fill: var(--orange); stroke: var(--petrol-chip); stroke-width: 1.5; }
.flow-title-result { margin-bottom: .65rem; }
.result-card { display: flex; align-items: center; justify-content: space-between; padding: .8rem 1rem; background: var(--white); color: var(--petrol-deep); }
.flow-chart + .result-card { margin-top: .6rem; }
.result-card div { display: grid; }
.result-card small { font-family: var(--mono); font-size: .52rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: #b74714; }
.result-card strong { font-size: 1.16rem; }
.result-card span { color: #66717a; font-size: .7rem; }
.result-card svg { flex: none; }
.result-card svg polyline, .result-card svg path { fill: none; stroke: var(--orange); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }

.two-column { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(3rem, 8vw, 8rem); }
.section-heading h2, .impact h2, .faq h2, .contact h2 { margin: 1rem 0 0; color: var(--white); font-size: clamp(2.35rem, 4.7vw, 4.4rem); line-height: 1.08; letter-spacing: -.035em; }

.problems { padding-block: var(--section); background-color: var(--petrol-deep); border-block: 1px solid rgba(255,255,255,.08); }
.problems .section-heading h2 { max-width: 44rem; }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 1.8vw, 1.5rem); }
.problem-card { display: flex; flex-direction: column; padding: clamp(1.5rem, 2.6vw, 2.15rem); border: 1px solid var(--line); background: rgba(255,255,255,.025); transition: border-color 180ms ease, background 180ms ease, transform 220ms var(--ease); }
.problem-card:hover, .problem-card:focus-visible { border-color: var(--orange); background: rgba(236,98,37,.07); transform: translateY(-.35rem); }
.problem-index { margin: 0 0 1.15rem; color: rgba(255,255,255,.6); font-family: var(--mono); font-size: .62rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; }
.problem-card h3 { margin: 0 0 .85rem; color: var(--white); font-size: clamp(1.12rem, 1.6vw, 1.35rem); font-weight: 700; line-height: 1.35; letter-spacing: -.01em; text-wrap: balance; }
.problem-text { margin: 0 0 1.75rem; color: var(--blue-tint); font-size: .95rem; line-height: 1.65; }
.problem-benefit { margin-top: auto; padding-top: 1.35rem; border-top: 1px solid var(--line); }
.problem-benefit-label { margin: 0 0 .6rem; color: var(--turquoise); font-family: var(--mono); font-size: .78rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.problem-benefit p:not(.problem-benefit-label) { margin: 0; color: var(--blue-tint); font-size: .95rem; line-height: 1.65; }
.problem-link { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1.35rem; color: rgba(255,255,255,.62); font-family: var(--mono); font-size: .68rem; line-height: 1.45; transition: color 180ms ease; }
.problem-link i { color: var(--orange); font-style: normal; }
.problem-card:hover .problem-link, .problem-card:focus-visible .problem-link { color: var(--white); }

.process { padding-block: var(--section); background-color: var(--petrol-section); }
.section-heading { max-width: 55rem; margin-bottom: clamp(3rem, 6vw, 5.5rem); }
.section-heading > p:last-child { max-width: 44rem; margin: 1.3rem 0 0; font-size: 1.08rem; line-height: 1.75; }
.process-heading { max-width: 53rem; }
.process-heading .outline-heading { color: var(--petrol-section); -webkit-text-stroke: 1.2px rgba(255,255,255,.52); paint-order: stroke fill; }
.journey-layout { display: grid; grid-template-columns: 15rem 1fr; gap: clamp(3rem, 7vw, 7rem); align-items: start; }
.stage-rail { position: sticky; top: 7.35rem; display: flex; flex-direction: column; gap: .25rem; padding-block: .75rem; }
.stage-rail a { display: flex; align-items: center; gap: .8rem; padding: .65rem 0 .65rem 1rem; border-left: 2px solid rgba(255,255,255,.15); color: rgba(255,255,255,.46); font-family: var(--mono); font-size: .792rem; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; transition: color 220ms ease, border-color 220ms ease; }
.stage-rail a span { display: inline-flex; align-items: center; justify-content: center; width: 1.55rem; height: 1.55rem; font-family: var(--mono); font-size: .58rem; transition: color 220ms ease, background 220ms ease; }
.stage-rail a:hover, .stage-rail a:focus-visible { color: var(--white); }
.stage-rail a.is-active { border-color: var(--orange); color: var(--white); font-weight: 700; }
.stage-rail a.is-active span { background: var(--orange); color: var(--white); }
.journey-stage { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) 13.75rem; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; min-height: 37rem; padding: clamp(3rem, 7vw, 6rem) 0; border-bottom: 1px solid rgba(255,255,255,.1); scroll-margin-top: 7rem; }
.journey-stage:first-child { padding-top: 2rem; }
.journey-stage:last-child { min-height: 34rem; padding-bottom: 2rem; border-bottom: 0; }
.ghost-number { position: absolute; z-index: 0; top: 1.5rem; right: 15rem; color: rgba(255,255,255,.045); font-family: var(--mono); font-size: clamp(6rem, 11vw, 9.4rem); font-weight: 600; line-height: 1; pointer-events: none; user-select: none; }
.stage-content { position: relative; z-index: 1; }
.stage-meta { display: flex; align-items: center; gap: .9rem; margin-bottom: .9rem; font-family: var(--mono); font-size: .792rem; letter-spacing: .11em; text-transform: uppercase; }
.stage-meta b { color: var(--orange-light); font-size: .792rem; }
.stage-meta span { color: var(--muted); }
.stage-meta em { margin-left: auto; padding: .25rem .6rem; border: 1px solid rgba(255,255,255,.2); color: var(--blue-light); font-style: normal; }
.journey-stage h3 { max-width: 17ch; margin: 0 0 1.1rem; color: var(--white); font-size: clamp(2.2rem, 4.3vw, 3.8rem); line-height: 1.12; letter-spacing: -.025em; }
.stage-quote { max-width: 42rem; margin: 0 0 1.5rem; color: #82c7ef; font-size: clamp(1.08rem, 1.8vw, 1.35rem); font-weight: 600; line-height: 1.48; }
.stage-points { display: grid; gap: .75rem; max-width: 39rem; margin: 0; padding: 0; list-style: none; }
.stage-points li { position: relative; padding-left: 1.25rem; line-height: 1.55; }
.stage-points li::before { content: ""; position: absolute; top: .58em; left: 0; width: .48rem; height: .48rem; background: var(--orange); }
.entry-format { display: flex; align-items: center; gap: 1.25rem; max-width: 39rem; margin-top: 1.75rem; padding: 1.25rem; border: 1px solid var(--line); background: rgba(255,255,255,.03); }
.entry-format > div { flex: 1; }
.entry-format small { display: block; margin-bottom: .35rem; color: var(--muted); font-family: var(--mono); font-size: .667rem; letter-spacing: .1em; text-transform: uppercase; }
.entry-format strong { display: block; color: var(--white); font-size: 1.15rem; }
.entry-format p { margin: .25rem 0 0; color: rgba(255,255,255,.62); font-size: .92rem; line-height: 1.5; }
.entry-format a { flex: none; padding: .65rem .85rem; border: 1px solid var(--orange); color: var(--orange-light); font-size: .78rem; font-weight: 700; }
.roi-note { max-width: 39rem; margin: 1.5rem 0 0; padding-left: .9rem; border-left: 3px solid var(--orange); color: var(--muted); font-size: .85rem; }
.stage-visual { position: relative; z-index: 1; margin: 2.5rem 0 0; }
.stage-visual svg { display: block; width: 100%; max-width: 12.5rem; aspect-ratio: 1; margin-inline: auto; overflow: visible; }
.stage-visual figcaption { margin-top: .65rem; color: rgba(255,255,255,.35); font-family: var(--mono); font-size: .58rem; letter-spacing: .1em; text-align: center; text-transform: uppercase; }
.visual-grid { fill: none; stroke: rgba(255,255,255,.14); stroke-width: 1; }
.visual-axis { stroke: rgba(255,255,255,.08); stroke-width: 1; }
.visual-orange { fill: var(--orange); }.visual-blue { fill: var(--blue); }.visual-blue-light { fill: var(--blue-light); }
.radar-sweep { transform-origin: 100px 100px; animation: radar-spin 8s linear infinite; }.radar-sweep line { stroke: var(--orange); stroke-width: 2; }.radar-sweep circle { fill: var(--orange); }
.network-lines line { stroke: rgba(255,255,255,.24); stroke-width: 1.5; stroke-dasharray: 4 6; animation: dash-move 3s linear infinite; }.network-lines line:nth-child(2) { animation-duration: 3.6s; }.network-lines line:nth-child(3) { animation-duration: 3.2s; }.network-lines line:nth-child(4) { animation-duration: 2.8s; }
.network-pulse { fill: none; stroke: var(--orange-light); stroke-width: 1.5; }
.bar { fill: var(--blue); }.bar-1 { opacity: .4; }.bar-2 { opacity: .55; }.bar-3 { opacity: .7; }.bar-4 { opacity: .85; }.bar-5 { opacity: 1; }
.context-line { fill: none; stroke: var(--orange); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }.context-dot { stroke: var(--petrol); stroke-width: 1.5; }
.meter-track, .meter-value { fill: none; stroke-width: 10; stroke-linecap: round; }.meter-track { stroke: rgba(255,255,255,.14); }.meter-value { stroke: var(--orange); stroke-dasharray: 220; stroke-dashoffset: 220; }.meter-needle { stroke: var(--blue-light); stroke-width: 3; stroke-linecap: round; }.stage-visual text { fill: var(--white); font: 600 15px var(--mono); }
.ai-wave { fill: none; stroke: var(--blue-light); stroke-width: 1.5; }.ai-wave-2 { opacity: .75; }.ai-wave-3 { opacity: .55; }
.claim-band { padding-block: clamp(4rem, 8vw, 7rem); border-block: 1px solid rgba(255,255,255,.08); background-color: var(--petrol); }
.claim-band p { max-width: 57rem; margin: 0; color: var(--white); font-size: clamp(2rem, 4vw, 3.45rem); font-weight: 800; line-height: 1.3; letter-spacing: -.02em; }.claim-band strong { color: var(--orange); }
.claim-band .eyebrow { margin-bottom: 1.25rem; font-size: .792rem; font-weight: 600; }
.solutions { padding-block: var(--section); background: var(--petrol-section); }
.solutions-heading { max-width: 50rem; }
.solutions-heading .outline-heading { color: var(--petrol-section); -webkit-text-stroke: 1.2px rgba(255,255,255,.52); paint-order: stroke fill; }
.solution-grid { display: grid; grid-template-columns: repeat(20, 1fr); gap: 0; align-items: stretch; }
.solution-card { position: relative; display: flex; flex-direction: column; min-height: 31rem; padding: clamp(2rem, 3.5vw, 2.875rem) clamp(1.6rem, 3.4vw, 2.75rem) clamp(2.2rem, 3.8vw, 3.125rem); overflow: hidden; color: inherit; transition: filter 200ms ease; }
.solution-card:hover, .solution-card:focus-visible { filter: brightness(1.1); }
.solution-card:nth-child(1) { grid-column: span 9; margin-top: 2.125rem; }
.solution-card:nth-child(2) { grid-column: span 11; }
.solution-card:nth-child(3) { grid-column: span 12; }
.solution-card:nth-child(4) { grid-column: span 8; margin-bottom: 2.125rem; }
.solution-connected { background: #0d3550; }
.solution-data { background: #11618a; }
.solution-intelligence { background: #0a2c3e; }
.solution-ai { background: var(--orange); }
.solution-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 3.5rem; }
.solution-top span { color: rgba(255,255,255,.75); font-family: var(--mono); font-size: .713rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; }
.solution-top svg { width: 1.65rem; height: 1.65rem; flex: none; }
.solution-top path { fill: none; stroke: var(--orange-light); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.solution-body { display: flex; flex: 1; flex-direction: column; }
.solution-kicker { margin: 0 0 .9rem; color: rgba(255,255,255,.9); font-family: var(--mono); font-size: .736rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.solution-card h3 { max-width: 12ch; margin: 0 0 1rem; color: var(--white); font-size: clamp(2.3rem, 4.15vw, 3.25rem); font-weight: 400; line-height: 1.06; letter-spacing: -.015em; overflow-wrap: anywhere; }
.solution-description { max-width: 30rem; margin: 0 0 2.25rem; color: rgba(255,255,255,.85); line-height: 1.6; }
.solution-card ul { display: flex; flex-wrap: wrap; gap: .5rem; margin: auto 0 0; padding: 0; list-style: none; }
.solution-card li { padding: .34rem .72rem; border: 1px solid rgba(255,255,255,.5); color: var(--white); font-size: .72rem; }
.solution-ai .solution-top span, .solution-ai .solution-kicker { color: var(--petrol); }
.solution-ai .solution-top path { stroke: var(--petrol); }
.solution-ai .solution-description { color: rgba(6,34,48,.9); }
.solution-ai li { border-color: var(--white); background: var(--white); color: var(--petrol); }

.impact { padding-block: var(--section); background-color: var(--cream); background-image: linear-gradient(rgba(6,34,48,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(6,34,48,.06) 1px, transparent 1px); color: #42525c; }
.impact .eyebrow { color: var(--petrol-deep); }.impact h2 { color: var(--petrol-deep); }
.impact-copy > p { margin-top: 0; color: #394c57; font-size: 1.2rem; line-height: 1.75; }
.impact dl { margin: 2.5rem 0 0; border-top: 1px solid rgba(6,34,48,.2); }
.impact dl div { display: grid; grid-template-columns: 4rem 1fr; gap: 1rem; padding: 1.2rem 0; border-bottom: 1px solid rgba(6,34,48,.2); }
.impact dt { font-family: var(--mono); color: var(--orange); font-weight: 600; }.impact dd { margin: 0; color: var(--petrol-deep); font-weight: 700; }
.impact-stories { margin-top: clamp(4rem, 8vw, 7rem); }
.impact-stories-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.2rem; }
.impact-stories-head p { margin: 0; color: var(--petrol); font-family: var(--mono); font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.impact-stories-head a { padding-bottom: .2rem; border-bottom: 2px solid var(--orange); color: var(--petrol); font-weight: 700; }
.impact-story-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(6,34,48,.18); border-left: 1px solid rgba(6,34,48,.18); }
.impact-story { display: flex; flex-direction: column; min-height: 21rem; padding: clamp(1.5rem, 3vw, 2.2rem); border-right: 1px solid rgba(6,34,48,.18); border-bottom: 1px solid rgba(6,34,48,.18); background: rgba(255,255,255,.45); transition: background 180ms ease; }
.impact-story:hover { background: var(--white); }
.impact-story > span { color: #68767d; font-family: var(--mono); font-size: .58rem; letter-spacing: .08em; text-transform: uppercase; }
.impact-story > strong { margin-top: 2.5rem; color: var(--orange); font-size: clamp(2rem, 3.8vw, 3.1rem); line-height: 1; letter-spacing: -.04em; }
.impact-story > p { margin: .75rem 0 2rem; color: #4c5d65; font-size: .85rem; line-height: 1.55; }
.impact-story > b { display: flex; justify-content: space-between; gap: 1rem; margin-top: auto; color: var(--petrol); font-size: .9rem; }.impact-story i { color: var(--orange); font-style: normal; }

.faq { padding-block: var(--section); background: var(--petrol-section); }
.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(3rem, 8vw, 8rem); }
.faq .section-heading { margin-bottom: 0; }
.faq-list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.5rem 0; color: var(--white); font-weight: 700; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { color: var(--orange-light); font-family: var(--mono); font-size: 1.4rem; transition: transform 180ms ease; }
.faq details[open] summary span { transform: rotate(45deg); }
.faq details p { max-width: 46rem; margin: -.25rem 0 1.75rem; line-height: 1.75; }

.contact { padding-block: var(--section); background-color: var(--petrol); }
.contact-inner { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: clamp(3rem, 8vw, 8rem); }
.contact h2 { max-width: 14ch; }
.contact h2 + p { margin: 1.25rem 0 0; font-size: 1.1rem; }
.contact-actions { display: grid; gap: .9rem; justify-items: start; }
.contact-actions > a:not(.button) { border-bottom: 1px solid rgba(255,255,255,.28); color: rgba(255,255,255,.74); transition: color 180ms ease, border-color 180ms ease; }
.contact-actions > a:not(.button):hover { color: var(--white); border-color: var(--orange); }

.site-footer { padding: 4rem 0 1.4rem; background: #02131c; border-top: 1px solid rgba(255,255,255,.1); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 3rem; }
.footer-grid img { width: 7.5rem; margin-bottom: 1rem; padding: .35rem .55rem; background: var(--white); }
.footer-promo img { width: 100%; max-width: 15.1rem; margin-bottom: 0; padding: 0; background: none; border-radius: .4rem; }
.footer-grid p { margin: 0; color: var(--muted); font-size: .82rem; }
.footer-grid > div:not(:first-child) { display: grid; align-content: start; justify-items: start; gap: .55rem; }
.footer-grid .footer-title { margin-bottom: .55rem; font-family: var(--mono); letter-spacing: .1em; text-transform: uppercase; color: var(--white); }
.footer-grid a, .footer-grid span { font-size: .82rem; color: var(--muted); }
.footer-grid a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3.5rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.1); font-family: var(--mono); font-size: .6rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.38); }

.js .reveal { opacity: 0; transform: translateY(1.4rem); transition: opacity 650ms var(--ease), transform 650ms var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: .25; } }
@keyframes dash-move { to { stroke-dashoffset: -60; } }
@keyframes radar-spin { to { transform: rotate(360deg); } }

:focus-visible { outline: 3px solid var(--orange-light); outline-offset: 4px; }

@media (max-width: 1050px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-copy { max-width: 49rem; }
  .flow-card { max-width: 44rem; }
  .journey-layout { grid-template-columns: 11rem 1fr; gap: 2.5rem; }
  .journey-stage { grid-template-columns: 1fr; }
  .stage-visual { width: 12.5rem; margin: 0; }
  .ghost-number { right: 0; }
  .solution-card:nth-child(n) { grid-column: span 10; margin: 0; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-layout { grid-template-columns: 1fr; }
  .faq .section-heading { margin-bottom: 1rem; }
}

@media (max-width: 820px) {
  .main-nav { position: fixed; inset: 5rem 0 0; display: none; align-content: start; height: calc(100vh - 5rem); height: calc(100dvh - 5rem); padding: 2rem var(--gutter); overflow-y: auto; background: var(--petrol-deep); }
  .main-nav.is-open { display: grid; }
  .main-nav a { padding: 1.1rem 0; border-bottom: 1px solid var(--line); font-size: 1.28rem; }
  .nav-toggle { display: grid; gap: .38rem; padding: .8rem; cursor: pointer; }
  .nav-toggle > span:not(.sr-only) { width: 1.55rem; height: 2px; background: var(--white); transition: transform 180ms ease; }
  .nav-toggle[aria-expanded="true"] > span:nth-of-type(2) { transform: translateY(4px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] > span:nth-of-type(3) { transform: translateY(-4px) rotate(-45deg); }
  .two-column, .contact-inner { grid-template-columns: 1fr; }
  .journey-layout { grid-template-columns: 1fr; gap: 2rem; }
  .stage-rail { z-index: 20; top: 5rem; flex-direction: row; overflow-x: auto; padding: .65rem 0; background: rgba(4,32,45,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(10px); scrollbar-width: thin; }
  .stage-rail a { flex: 0 0 auto; padding: .45rem .8rem; border: 1px solid var(--line); }
  .stage-rail a.is-active { border-color: var(--orange); }
  .solution-card:nth-child(n) { grid-column: 1 / -1; min-height: 26rem; }
  .impact-story-grid { grid-template-columns: 1fr; }
  .impact-story { min-height: 17rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  :root { --gutter: 1.15rem; --section: 4.5rem; }
  .brand { width: 9.6rem; }
  .brand img { width: 7.9rem; }
  .hero { min-height: auto; }
  .hero-inner { padding-block: 3.5rem 4.5rem; }
  .hero h1 { font-size: clamp(3.25rem, 16vw, 4.35rem); }
  .hero-meta > span { display: none; }
  .button-row, .button { width: 100%; }
  .flow-card { padding: 1rem; }
  .flow-title span { width: 100%; }
  .coordinate { display: none; }
  .journey-stage { min-height: auto; padding-block: 4rem; scroll-margin-top: 9rem; }
  .stage-meta em { margin-left: 0; }
  .entry-format { align-items: stretch; flex-direction: column; }
  .entry-format a { text-align: center; }
  .stage-visual { width: 10.5rem; }
  .impact-stories-head { align-items: flex-start; flex-direction: column; }
  .solution-grid { display: grid; gap: 1px; }
  .solution-card:nth-child(n) { grid-column: 1 / -1; min-height: 25rem; }
  .problem-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

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