:root {
  --ink: #07111f;
  --ink-soft: #101d2c;
  --paper: #f5f5f0;
  --white: #ffffff;
  --muted: #66707b;
  --line: rgba(7, 17, 31, 0.13);
  --line-dark: rgba(255, 255, 255, 0.14);
  --orange: #ff652b;
  --orange-hot: #ff7b3f;
  --teal: #14c6b1;
  --lime: #bfe759;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(5, 14, 26, 0.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 82px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
img, svg { display: block; }
.shell { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.section { padding: 128px 0; }
.progress { position: fixed; inset: 0 0 auto; height: 3px; z-index: 1000; }
.progress span { display: block; width: 0; height: 100%; background: var(--orange); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  width: 100%;
  color: white;
  border-bottom: 1px solid transparent;
  transition: background .25s, border-color .25s;
}
.site-header.scrolled {
  background: rgba(7, 17, 31, .92);
  border-color: rgba(255,255,255,.1);
  backdrop-filter: blur(18px);
}
.header-inner { height: 78px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 10px; font: 800 18px/1 "Manrope", sans-serif; letter-spacing: .04em; }
.brand svg { width: 32px; height: 32px; fill: currentColor; }
.brand .brand-accent { fill: var(--orange); }
.brand > span > span { color: var(--orange); }
.desktop-nav { display: flex; gap: 30px; margin-left: auto; margin-right: 36px; }
.desktop-nav a { position: relative; font-size: 13px; font-weight: 600; color: rgba(255,255,255,.72); transition: color .2s; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 1px; background: var(--orange); transition: right .25s; }
.desktop-nav a:hover { color: white; }
.desktop-nav a:hover::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 20px; }
.text-link { font-size: 12px; color: rgba(255,255,255,.7); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: transform .25s, background .25s, color .25s, border-color .25s;
}
.button:hover { transform: translateY(-2px); background: var(--orange); border-color: var(--orange); }
.button-small { min-height: 40px; padding: 0 18px; gap: 12px; background: white; border-color: white; color: var(--ink); }
.button-light { background: white; color: var(--ink); border-color: white; }
.button-light:hover { color: white; }
.menu-button { display: none; width: 42px; height: 42px; border: 0; background: transparent; padding: 10px; }
.menu-button span { display: block; height: 1px; background: white; margin: 6px 0; transition: transform .25s; }
.mobile-nav { display: none; }

.hero { position: relative; min-height: 820px; padding: 165px 0 0; overflow: hidden; background: var(--ink); color: white; }
.hero-grid {
  position: absolute; inset: 0; opacity: .18;
  background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, black, transparent 86%);
}
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 180px; background: linear-gradient(transparent, rgba(3,10,19,.7)); }
.orb { position: absolute; border-radius: 50%; filter: blur(1px); }
.orb-one { width: 580px; height: 580px; right: -120px; top: 52px; background: radial-gradient(circle at 48% 47%, rgba(20,198,177,.25), transparent 64%); }
.orb-two { width: 450px; height: 450px; right: 250px; bottom: -170px; background: radial-gradient(circle, rgba(255,101,43,.15), transparent 65%); }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; min-height: 510px; }
.hero-copy { max-width: 640px; }
.eyebrow { display: flex; align-items: center; gap: 10px; color: #475361; font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow span { width: 24px; height: 2px; background: var(--orange); }
.eyebrow-light { color: rgba(255,255,255,.58); }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3 { font-family: "Manrope", sans-serif; letter-spacing: -.045em; }
.hero h1 { margin: 25px 0 25px; font-size: clamp(58px, 6.1vw, 90px); line-height: .98; font-weight: 600; }
em { color: var(--orange); font-style: normal; }
.hero-copy > p { max-width: 560px; color: rgba(255,255,255,.62); font-size: 18px; line-height: 1.72; }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 38px; }
.play-link { display: inline-flex; align-items: center; gap: 11px; font-size: 12px; color: rgba(255,255,255,.72); }
.play-link i { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; font-size: 9px; font-style: normal; }

.hero-visual { position: relative; height: 540px; }
.core { position: absolute; width: 218px; height: 218px; left: 50%; top: 50%; transform: translate(-46%, -48%); display: grid; place-items: center; }
.core-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.17); }
.ring-one { inset: 0; animation: pulse 3.5s ease-out infinite; }
.ring-two { inset: 27px; border-color: rgba(20,198,177,.35); animation: pulse 3.5s 1.2s ease-out infinite; }
.core-center { width: 105px; height: 105px; display: grid; place-items: center; border-radius: 50%; color: white; background: radial-gradient(circle at 38% 35%, #1c3b45, #091721 60%); border: 1px solid rgba(77,236,210,.35); }
.core-center svg { width: 48px; fill: currentColor; }
.system-label { position: absolute; z-index: 3; min-width: 164px; padding: 13px 16px; border: 1px solid rgba(255,255,255,.12); background: rgba(10,25,38,.72); backdrop-filter: blur(10px); color: rgba(255,255,255,.75); font-size: 11px; border-radius: 8px; }
.system-label i { display: inline-block; width: 6px; height: 6px; margin-right: 8px; border-radius: 50%; background: var(--teal); }
.label-one { top: 82px; left: 0; }.label-two { top: 85px; right: -12px; }.label-three { bottom: 80px; right: 0; }
.connections { position: absolute; inset: 0; width: 100%; height: 100%; }
.connections path { fill: none; stroke: rgba(79,214,196,.23); stroke-width: 1; stroke-dasharray: 4 5; }
.connections circle { fill: var(--teal); }
@keyframes pulse { 0% { transform: scale(.83); opacity: 0; } 35% { opacity: .65; } 100% { transform: scale(1.18); opacity: 0; } }
.hero-proof { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.11); }
.hero-proof > div { display: flex; align-items: center; gap: 16px; padding: 27px 0; }
.hero-proof > div + div { border-left: 1px solid rgba(255,255,255,.11); padding-left: 34px; }
.hero-proof strong { font: 700 19px "Manrope"; color: var(--orange); }
.hero-proof span { color: rgba(255,255,255,.48); font-size: 11px; line-height: 1.4; text-transform: uppercase; letter-spacing: .06em; }

.section-heading h2 { margin: 20px 0 0; font-size: clamp(42px, 4.5vw, 65px); line-height: 1.08; font-weight: 600; }
.section-heading > p { color: var(--muted); line-height: 1.75; }
.split-heading { display: grid; grid-template-columns: 1.2fr .65fr; gap: 100px; align-items: end; margin-bottom: 64px; }
.split-heading > p { margin-bottom: 4px; }
.centered { max-width: 780px; margin: 0 auto 65px; text-align: center; }
.centered .eyebrow { justify-content: center; }
.centered p { max-width: 630px; margin: 24px auto 0; }

.impact { background: #f2f2ed; }
.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-bottom: 0; }
.impact-card { position: relative; min-height: 298px; padding: 26px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.3); overflow: hidden; transition: background .3s, transform .3s; }
.impact-card + .impact-card { border-left: 1px solid var(--line); }
.impact-card:nth-child(5) { border-left: 0; }
.impact-card:hover { z-index: 2; background: white; transform: translateY(-5px); }
.icon-box { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid var(--line); color: var(--orange); font-size: 18px; }
.impact-number { position: absolute; right: 19px; top: 22px; color: var(--orange); font: 700 24px "Manrope"; letter-spacing: -.05em; }
.impact-card h3 { margin: 50px 0 10px; font-size: 19px; letter-spacing: -.02em; }
.impact-card p { color: var(--muted); font-size: 13px; line-height: 1.6; }
.impact-card small { position: absolute; left: 26px; right: 26px; bottom: 23px; padding-top: 13px; border-top: 1px solid var(--line); color: #8a929a; font-size: 9px; text-transform: uppercase; letter-spacing: .08em; line-height: 1.35; }
.impact-close { display: flex; align-items: center; justify-content: space-between; margin-top: 29px; color: var(--muted); font-size: 13px; }
.impact-close strong { color: var(--ink); font-size: 15px; }.impact-close i { margin-left: 8px; color: var(--orange); font-style: normal; }

.platform { background: white; }
.platform-layout { display: grid; grid-template-columns: 330px 1fr; gap: 28px; align-items: stretch; }
.product-list { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.product-tab { display: grid; grid-template-columns: 30px 1fr 30px; gap: 12px; align-items: center; min-height: 83px; padding: 0 17px; border: 0; border-bottom: 1px solid var(--line); background: transparent; text-align: left; cursor: pointer; transition: background .25s; }
.product-tab i { color: #a2a8ae; font-size: 9px; font-style: normal; }
.product-tab strong, .product-tab small { display: block; }.product-tab strong { font: 700 15px "Manrope"; }.product-tab small { margin-top: 5px; color: var(--muted); font-size: 10px; }
.product-tab b { display: grid; place-items: center; width: 29px; height: 29px; border: 1px solid var(--line); border-radius: 50%; font-weight: 400; opacity: 0; transition: opacity .2s; }
.product-tab:hover, .product-tab.active { background: #f5f5f0; }
.product-tab.active i { color: var(--orange); }.product-tab.active b { opacity: 1; }
.product-stage { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 416px; overflow: hidden; border-radius: var(--radius); background: var(--ink); color: white; }
.product-stage-copy { padding: 54px 45px; }
.product-kicker { color: var(--orange); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.product-stage h3 { margin: 20px 0; font-size: 39px; line-height: 1.08; }
.product-stage p { color: rgba(255,255,255,.6); font-size: 13px; line-height: 1.7; }
.tag-row { display: flex; flex-wrap: wrap; gap: 7px; margin: 24px 0 30px; }
.tag-row span { padding: 7px 11px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; font-size: 9px; color: rgba(255,255,255,.7); }
.arrow-link { display: inline-flex; align-items: center; gap: 18px; padding-bottom: 7px; border-bottom: 1px solid currentColor; font-size: 12px; font-weight: 700; }
.arrow-link span { color: var(--orange); }
.product-demo { position: relative; margin: 40px 36px 40px 0; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; background: #0c1a29; overflow: hidden; }
.demo-top { height: 42px; display: flex; align-items: center; gap: 6px; padding: 0 14px; border-bottom: 1px solid rgba(255,255,255,.08); }
.demo-top i { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.16); }.demo-top span { margin-left: 10px; color: rgba(255,255,255,.35); font-size: 8px; }
.flow-node { position: absolute; z-index: 2; width: 82px; height: 72px; display: flex; flex-direction: column; justify-content: center; align-items: center; border: 1px solid rgba(255,255,255,.13); border-radius: 8px; background: #132536; }
.flow-node b { font-size: 11px; }.flow-node small { margin-top: 6px; color: rgba(255,255,255,.4); font-size: 7px; }
.node-a { left: 24px; top: 126px; }.node-b { left: 50%; top: 126px; transform: translateX(-50%); border-color: rgba(255,101,43,.6); }.node-c { right: 24px; top: 126px; }
.product-demo svg { position: absolute; inset: 42px 0 0; width: 100%; height: calc(100% - 42px); }
.product-demo svg path { fill: none; stroke: rgba(20,198,177,.5); stroke-width: 1.5; stroke-dasharray: 3 4; }
.status-pill { position: absolute; left: 50%; bottom: 25px; transform: translateX(-50%); white-space: nowrap; color: var(--teal); font-size: 8px; }

.dataview { position: relative; overflow: hidden; background: #0a1726; color: white; }
.dataview::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 85% 30%, rgba(20,198,177,.1), transparent 35%); }
.dataview-grid { position: relative; display: grid; grid-template-columns: .78fr 1.22fr; gap: 80px; align-items: center; }
.dataview h2 { margin: 22px 0 24px; font-size: clamp(44px, 4.5vw, 65px); line-height: 1.08; }
.dataview-copy > p { color: rgba(255,255,255,.58); line-height: 1.7; }
.compatibility { margin: 35px 0; }.compatibility > span { color: rgba(255,255,255,.32); font-size: 9px; text-transform: uppercase; letter-spacing: .14em; }
.compatibility div { display: flex; gap: 20px; margin-top: 13px; color: rgba(255,255,255,.65); font-size: 10px; }
.dashboard { padding: 17px; border: 1px solid rgba(255,255,255,.11); border-radius: 16px; background: rgba(17,34,50,.84); transform: perspective(1200px) rotateY(-4deg) rotateX(2deg); }
.dashboard-head { display: flex; align-items: center; justify-content: space-between; padding: 4px 4px 18px; }.dashboard-head div { display: flex; align-items: center; gap: 8px; font-size: 9px; font-weight: 800; letter-spacing: .1em; }.dashboard-head i { width: 10px; height: 10px; background: var(--orange); }.dashboard-head small { color: rgba(255,255,255,.35); font-size: 8px; }
.dash-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; }
.dash-stats > div, .chart-card, .activity-card { border: 1px solid rgba(255,255,255,.08); background: rgba(5,14,23,.48); border-radius: 8px; }
.dash-stats > div { padding: 13px; }.dash-stats span { color: rgba(255,255,255,.4); font-size: 8px; }.dash-stats strong { display: block; margin: 9px 0 3px; font: 700 19px "Manrope"; }.dash-stats small { color: var(--teal); font-size: 8px; }
.chart-card { position: relative; height: 270px; margin-top: 9px; padding: 15px; overflow: hidden; }.chart-card > div:first-child { display: flex; justify-content: space-between; font-size: 9px; }.chart-card > div span { color: rgba(255,255,255,.35); font-size: 8px; }
.chart-card svg { width: 100%; height: 190px; margin-top: 14px; overflow: visible; }.chart-card .area { fill: url(#area); }.chart-card .line { fill: none; stroke: var(--orange); stroke-width: 3; }
.chart-labels { display: flex; justify-content: space-between; color: rgba(255,255,255,.25); font-size: 7px; }
.activity-card { display: flex; justify-content: space-between; margin-top: 9px; padding: 13px; font-size: 8px; }.activity-card i { display: inline-block; width: 6px; height: 6px; margin-right: 7px; border-radius: 50%; background: var(--teal); }.activity-card strong { color: var(--teal); }

.clients { background: #f7f7f3; padding-bottom: 105px; overflow: hidden; }
.logo-marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }
.marquee-track { width: max-content; display: flex; align-items: center; animation: marquee 30s linear infinite; }
.marquee-track:hover, .marquee-track:focus-within { animation-play-state: paused; }
.marquee-track > span { min-width: 210px; padding: 34px 30px; border-right: 1px solid var(--line); color: #78818a; font: 700 15px "Manrope"; letter-spacing: .06em; text-align: center; filter: grayscale(1); }
.marquee-track > span:hover { color: var(--ink); }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-note { margin: 16px auto 0; text-align: center; color: #969ca2; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }

.segments { background: white; }
.segment-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 7px; margin-bottom: 28px; }
.segment-tabs button { padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--muted); font-size: 10px; cursor: pointer; transition: .2s; }
.segment-tabs button:hover, .segment-tabs button.active { background: var(--ink); border-color: var(--ink); color: white; }
.segment-stage { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 490px; overflow: hidden; border-radius: var(--radius); background: #f1f1ec; }
.segment-copy { padding: 58px 50px; }
.segment-index { color: var(--orange); font-size: 9px; letter-spacing: .16em; }
.segment-copy h3 { margin: 24px 0 8px; font-size: 39px; }.segment-copy h4 { margin: 0 0 22px; color: #485360; font: 600 17px/1.45 "Manrope"; }
.segment-copy p { color: var(--muted); font-size: 13px; line-height: 1.7; }
.segment-copy .tag-row span { color: var(--muted); border-color: var(--line); }
.segment-copy .button { margin-top: 4px; }
.segment-visual { position: relative; min-height: 490px; overflow: hidden; background: radial-gradient(circle at 65% 30%, rgba(190,231,89,.16), transparent 38%), linear-gradient(145deg, #142d2a, #07111f 72%); }
.field-lines { position: absolute; inset: -20%; opacity: .4; transform: perspective(500px) rotateX(62deg) rotateZ(-11deg); background: repeating-linear-gradient(90deg, transparent 0 35px, rgba(190,231,89,.25) 37px, transparent 39px), repeating-linear-gradient(0deg, transparent 0 35px, rgba(255,255,255,.07) 37px, transparent 39px); }
.scan-line { position: absolute; left: -10%; right: -10%; top: 50%; height: 1px; background: var(--lime); transform: rotate(-12deg); animation: scan 3s ease-in-out infinite alternate; }
@keyframes scan { to { transform: translateY(120px) rotate(-12deg); opacity: .25; } }
.data-marker { position: absolute; min-width: 116px; padding: 11px 13px 11px 29px; border: 1px solid rgba(255,255,255,.15); background: rgba(7,17,31,.76); color: white; backdrop-filter: blur(10px); }
.data-marker i { position: absolute; left: 12px; top: 15px; width: 6px; height: 6px; border-radius: 50%; background: var(--lime); }
.data-marker b, .data-marker strong { display: block; }.data-marker b { color: rgba(255,255,255,.4); font-size: 7px; letter-spacing: .1em; }.data-marker strong { margin-top: 5px; font: 700 15px "Manrope"; }
.marker-a { left: 12%; top: 24%; }.marker-b { right: 10%; top: 43%; }.marker-c { left: 32%; bottom: 16%; }
.satellite { position: absolute; right: 15%; top: 14%; color: var(--lime); font-size: 32px; animation: float 3s ease-in-out infinite; }
@keyframes float { 50% { transform: translateY(-10px); } }

.story { background: #f3f3ee; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 95px; align-items: center; }
.story-visual { position: relative; min-height: 600px; overflow: hidden; background: var(--ink); }
.story-grid-lines { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 55px 55px; }
.story-visual svg { position: absolute; inset: 25px 15px; width: calc(100% - 30px); height: calc(100% - 50px); }
.story-visual svg path { fill: none; stroke: var(--orange); stroke-width: 2; opacity: .8; }
.fib-sequence { position: absolute; top: 26px; left: 30px; display: flex; gap: 17px; color: rgba(255,255,255,.33); font: 500 9px "Manrope"; }
.story-year { position: absolute; left: 40px; bottom: 38px; color: white; }.story-year strong { display: block; color: var(--orange); font: 600 64px "Manrope"; letter-spacing: -.07em; }.story-year span { font-size: 10px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .11em; }
.story-copy h2 { margin: 22px 0 30px; font-size: clamp(43px, 4vw, 59px); line-height: 1.08; font-weight: 600; }
.story-copy > p { color: var(--muted); line-height: 1.78; }
.story-copy blockquote { margin: 30px 0 0; padding: 20px 0 0 22px; border-top: 1px solid var(--line); border-left: 2px solid var(--orange); color: #3f4a56; font: 500 14px/1.6 "Manrope"; }

.trust-strip { padding: 46px 0; background: var(--orange); color: white; }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-grid > div { display: flex; align-items: center; justify-content: center; gap: 17px; }
.trust-grid > div + div { border-left: 1px solid rgba(255,255,255,.3); }
.trust-grid strong { font: 700 38px "Manrope"; letter-spacing: -.05em; }.trust-grid span { font-size: 9px; line-height: 1.45; text-transform: uppercase; letter-spacing: .08em; opacity: .75; }

.faq { background: white; }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 100px; }
.faq-intro { position: sticky; top: 120px; align-self: start; }.faq-intro h2 { margin: 22px 0; font-size: 50px; line-height: 1.08; }.faq-intro p { color: var(--muted); line-height: 1.7; }.faq-intro .arrow-link { margin-top: 20px; }
.accordion { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 26px 4px; border: 0; background: none; text-align: left; font: 600 16px "Manrope"; cursor: pointer; }
.faq-item button i { color: var(--orange); font-style: normal; font-size: 22px; }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s; }
.faq-answer p { min-height: 0; overflow: hidden; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.faq-item.active .faq-answer { grid-template-rows: 1fr; }.faq-item.active .faq-answer p { padding: 0 40px 25px 4px; }

.contact { position: relative; overflow: hidden; background: var(--ink); color: white; }
.contact::before { content: ""; position: absolute; 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: 70px 70px; mask-image: linear-gradient(to right, black, transparent 80%); }
.contact-orb { position: absolute; width: 550px; height: 550px; left: -180px; bottom: -250px; border-radius: 50%; background: radial-gradient(circle, rgba(255,101,43,.18), transparent 67%); }
.contact-inner { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: 105px; }
.contact-copy h2 { margin: 22px 0 25px; font-size: clamp(43px, 4vw, 59px); line-height: 1.08; }.contact-copy > p { color: rgba(255,255,255,.55); line-height: 1.7; }
.contact-detail { display: flex; gap: 20px; margin-top: 30px; }.contact-detail > span { color: var(--orange); font-size: 10px; }.contact-detail p { color: rgba(255,255,255,.45); font-size: 11px; line-height: 1.5; }.contact-detail b { display: block; margin-bottom: 4px; color: white; font-size: 13px; }
.contact-form { position: relative; padding: 40px; border: 1px solid rgba(255,255,255,.11); background: rgba(255,255,255,.035); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: block; margin-bottom: 20px; color: rgba(255,255,255,.5); font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; margin-top: 9px; padding: 13px 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.18); outline: none; background: transparent; color: white; resize: vertical; font-size: 12px; text-transform: none; letter-spacing: normal; border-radius: 0; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--orange); }.contact-form option { color: var(--ink); }
.contact-form .button { width: 100%; border-radius: 0; margin-top: 5px; }
.contact-form > small { display: block; margin-top: 13px; text-align: center; color: rgba(255,255,255,.3); font-size: 8px; }
.form-success { display: none; margin-top: 15px; padding: 12px; background: rgba(20,198,177,.12); color: var(--teal); font-size: 11px; text-align: center; }.form-success.show { display: block; }

.footer { padding: 70px 0 25px; background: #050c15; color: white; }
.footer-top { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; padding-bottom: 65px; }
.footer-brand p { max-width: 280px; margin-top: 22px; color: rgba(255,255,255,.38); font-size: 12px; line-height: 1.7; }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.footer-links strong, .footer-links a { display: block; }.footer-links strong { margin-bottom: 20px; color: rgba(255,255,255,.35); font-size: 9px; text-transform: uppercase; letter-spacing: .12em; }.footer-links a { margin: 12px 0; color: rgba(255,255,255,.68); font-size: 11px; }.footer-links a:hover { color: var(--orange); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.25); font-size: 9px; }.footer-bottom div { display: flex; gap: 24px; }

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

@media (max-width: 1050px) {
  .desktop-nav, .text-link { display: none; }
  .menu-button { display: block; }
  .mobile-nav { position: fixed; inset: 78px 0 auto; display: flex; flex-direction: column; padding: 30px 24px 40px; background: rgba(7,17,31,.98); transform: translateY(-130%); transition: transform .3s; }
  .mobile-nav.open { transform: translateY(0); }.mobile-nav a { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.1); font: 600 18px "Manrope"; }
  .hero-inner { grid-template-columns: 1fr; }.hero { min-height: 1050px; }.hero-copy { padding-top: 20px; }.hero-visual { height: 430px; max-width: 650px; width: 100%; margin: 10px auto 0; }
  .platform-layout { grid-template-columns: 270px 1fr; }.product-stage { grid-template-columns: 1fr; }.product-demo { display: none; }
  .dataview-grid { gap: 42px; }.story-grid { gap: 55px; }.contact-inner { gap: 55px; }
  .impact-grid { grid-template-columns: repeat(2,1fr); }.impact-card:nth-child(odd) { border-left: 0; }.impact-card:nth-child(5) { border-left: 0; }
}

@media (max-width: 760px) {
  .shell { width: min(100% - 30px, 640px); }.section { padding: 85px 0; }
  .button-small { display: none; }.header-inner { height: 68px; }.mobile-nav { top: 68px; }
  .hero { min-height: auto; padding-top: 125px; }.hero h1 { font-size: 50px; }.hero-copy > p { font-size: 15px; }.hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-visual { height: 365px; }.system-label { min-width: 145px; font-size: 9px; }.label-two { right: 0; }.label-three { bottom: 34px; }.core { width: 170px; height: 170px; }.hero-proof { grid-template-columns: 1fr; margin-top: 15px; }.hero-proof > div { padding: 18px 0; }.hero-proof > div + div { padding-left: 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.1); }
  .split-heading, .dataview-grid, .story-grid, .faq-grid, .contact-inner, .footer-top { grid-template-columns: 1fr; gap: 38px; }.split-heading { margin-bottom: 42px; }.section-heading h2 { font-size: 40px; }
  .impact-grid { grid-template-columns: 1fr; }.impact-card + .impact-card { border-left: 0; }.impact-close { align-items: flex-start; flex-direction: column; gap: 12px; }
  .platform-layout { grid-template-columns: 1fr; }.product-list { display: grid; grid-template-columns: repeat(5,1fr); overflow-x: auto; }.product-tab { min-width: 130px; grid-template-columns: 1fr; padding: 13px; }.product-tab i, .product-tab b, .product-tab small { display: none; }.product-stage { min-height: 0; }.product-stage-copy { padding: 38px 28px; }.product-stage h3 { font-size: 32px; }
  .dashboard { transform: none; }.dash-stats strong { font-size: 14px; }.dataview-grid { gap: 55px; }
  .segment-stage { grid-template-columns: 1fr; }.segment-copy { padding: 38px 25px; }.segment-copy h3 { font-size: 32px; }.segment-visual { min-height: 370px; }
  .story-visual { min-height: 480px; order: 2; }.story-copy { order: 1; }
  .trust-grid { grid-template-columns: repeat(2,1fr); gap: 30px 0; }.trust-grid > div:nth-child(3) { border-left: 0; }.trust-grid strong { font-size: 30px; }
  .faq-intro { position: static; }.faq-intro h2 { font-size: 40px; }
  .contact-form { padding: 28px 20px; }.form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-top { gap: 45px; }.footer-links { grid-template-columns: 1fr 1fr; gap: 38px 20px; }.footer-bottom { flex-direction: column; gap: 18px; }.footer-bottom div { flex-wrap: wrap; }
}

@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; }
}

/* Material Design 3 foundation: tonal surfaces, expressive shapes, zero elevation */
:root {
  --md-primary: #ff652b;
  --md-on-primary: #ffffff;
  --md-primary-container: #ffdbcc;
  --md-on-primary-container: #351000;
  --md-secondary-container: #d4e7e2;
  --md-on-secondary-container: #09201d;
  --md-surface: #fbf8f5;
  --md-surface-container: #f1ece8;
  --md-surface-container-high: #e8e2dd;
  --md-outline: #81746e;
  --md-shape-medium: 12px;
  --md-shape-large: 24px;
  --md-shape-extra-large: 32px;
}
*, *::before, *::after { }
body { background: var(--md-surface); }
.impact, .story { background: var(--md-surface-container); }
.clients { background: var(--md-surface); }
.impact-card { background: var(--md-surface-container); }
.impact-card:hover { background: var(--md-primary-container); transform: none; }
.product-tab:hover, .product-tab.active { background: var(--md-secondary-container); }
.product-stage, .segment-stage { border-radius: var(--md-shape-extra-large); }
.dashboard, .contact-form { border-radius: var(--md-shape-large); }
.button, .product-tab, .segment-tabs button, .faq-item button { position: relative; overflow: hidden; isolation: isolate; }
.material-state-layer { position: absolute; z-index: -1; width: 14px; height: 14px; border-radius: 50%; background: currentColor; opacity: .12; transform: translate(-50%,-50%) scale(0); animation: md-fill .55s cubic-bezier(.2,0,0,1); pointer-events: none; }
@keyframes md-fill { 60% { opacity: .12; } 100% { opacity: 0; transform: translate(-50%,-50%) scale(36); } }
.typewriter { display: inline-block; min-width: 5.9em; }
.typewriter::after { content: ''; display: inline-block; width: .055em; height: .85em; margin-left: .08em; background: currentColor; animation: md-caret .8s step-end infinite; }
@keyframes md-caret { 50% { opacity: 0; } }
.md-consent { position: fixed; z-index: 900; left: 24px; right: 24px; bottom: 24px; display: grid; grid-template-columns: minmax(260px,1fr) auto; gap: 20px 30px; align-items: center; max-width: 960px; margin: auto; padding: 22px 24px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--md-shape-extra-large); background: #182431; color: white; }
.md-consent[hidden] { display: none; }
.md-consent strong { font: 700 15px 'Manrope',sans-serif; }
.md-consent p { margin: 6px 0 0; color: rgba(255,255,255,.65); font-size: 11px; line-height: 1.5; }
.md-consent-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.md-consent button { min-height: 40px; padding: 0 18px; border-radius: 999px; font-size: 11px; font-weight: 700; cursor: pointer; }
.md-consent .text { border: 0; background: transparent; color: #ffb69a; }
.md-consent .outlined { border: 1px solid rgba(255,255,255,.42); background: transparent; color: white; }
.md-consent .filled { border: 0; background: var(--md-primary-container); color: var(--md-on-primary-container); }
.md-privacy-trigger { position: fixed; z-index: 89; right: 12px; bottom: 12px; padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: var(--md-surface-container-high); color: var(--ink); font-size: 9px; cursor: pointer; }
@media (max-width:760px) { .md-consent { left:12px; right:12px; bottom:12px; grid-template-columns:1fr; border-radius:var(--md-shape-large); } .md-consent-actions { justify-content:stretch; } .md-consent button { flex:1 1 auto; } .typewriter { min-width:0; } }
/* Brand system v2 — official palette and typography */
:root {
  --prussian-blue: #030928;
  --deep-navy: #081042;
  --royal-blue: #0065f7;
  --baby-blue-ice: #76b4ff;
  --ink: var(--prussian-blue);
  --ink-soft: var(--deep-navy);
  --orange: var(--royal-blue);
  --orange-hot: var(--baby-blue-ice);
  --teal: var(--baby-blue-ice);
  --lime: var(--baby-blue-ice);
  --paper: #f7f9ff;
  --md-primary: var(--royal-blue);
  --md-on-primary: #ffffff;
  --md-primary-container: #d9e7ff;
  --md-on-primary-container: var(--prussian-blue);
  --md-secondary-container: #e4efff;
  --md-on-secondary-container: var(--deep-navy);
  --md-surface: #f9faff;
  --md-surface-container: #eef2fb;
  --md-surface-container-high: #e5ebf7;
  --md-outline: #72778c;
}
body, input, select, textarea { font-family: 'Nunito', sans-serif; }
h1, h2, h3, .impact-number, .trust-grid strong, .story-year strong { font-family: 'K2D', sans-serif; }
h4, .eyebrow, .product-kicker, nav, button, .button, .arrow-link, .system-label, .tag-row { font-family: 'Urbanist', sans-serif; }
.hero, .platform .product-stage, .dataview, .contact { background-color: var(--prussian-blue); }
.site-header.scrolled, .mobile-nav { background: rgba(3, 9, 40, .96); }
.core-center { background: var(--deep-navy); border-color: rgba(118,180,255,.55); }
.brand img { display: block; width: 152px; height: auto; object-fit: contain; }
.core-center img { width: 54px; height: 54px; object-fit: contain; }
.hero-grid { background-image: linear-gradient(rgba(118,180,255,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(118,180,255,.09) 1px, transparent 1px); }
.button:hover { background: var(--royal-blue); border-color: var(--royal-blue); }
.impact-number, em, .product-kicker, .segment-index, .story-year strong, .arrow-link span { color: var(--royal-blue); }
.trust-strip { background: var(--royal-blue); }
@media (max-width: 760px) { .brand img { width: 132px; } .header-inner { min-width: 0; } .hero-copy, .segment-copy, .story-copy, .contact-copy { min-width: 0; } .dashboard, .product-stage, .segment-stage { width: 100%; max-width: 100%; } }
/* Responsive access safeguards */
img, svg { max-width: 100%; }
p, h1, h2, h3, h4, a, button { overflow-wrap: break-word; }
:focus-visible { outline: 3px solid var(--baby-blue-ice); outline-offset: 3px; }
.skip-link { position: fixed; z-index: 1200; left: 16px; top: 12px; padding: 10px 16px; border-radius: 999px; background: white; color: var(--prussian-blue); font: 700 13px 'Urbanist', sans-serif; transform: translateY(-160%); transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }
@media (pointer: coarse) { .desktop-nav a, .mobile-nav a, .segment-tabs button, .faq-item button { min-height: 44px; } }
@media (max-width: 420px) { .shell { width: calc(100% - 24px); } .hero h1 { font-size: clamp(40px, 12vw, 50px); } .section-heading h2, .story-copy h2, .contact-copy h2 { font-size: clamp(34px, 10vw, 40px); } .trust-grid { grid-template-columns: 1fr; } .trust-grid > div + div { border-left: 0; border-top: 1px solid rgba(255,255,255,.3); padding-top: 24px; } }
/* Dynamic content and segment intelligence */
.content-loading, .content-error { display: grid; place-items: center; min-height: 88px; color: var(--muted); font: 600 11px 'Urbanist', sans-serif; letter-spacing: .08em; text-transform: uppercase; }
.client-logo { min-width: 210px; min-height: 88px; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 24px 30px; border-right: 1px solid var(--line); color: #5d6680; font: 700 14px 'Urbanist', sans-serif; letter-spacing: .06em; text-align: center; }
.client-logo img { max-width: 145px; max-height: 46px; object-fit: contain; filter: grayscale(1); opacity: .72; transition: filter .2s, opacity .2s; }
.client-logo:hover img { filter: none; opacity: 1; }
.client-logo.placeholder i { color: var(--royal-blue); font-style: normal; font-size: 19px; }
.client-logo.placeholder b { font-weight: 700; }
.client-logo { position: relative; min-height: 118px; padding-bottom: 42px; text-decoration: none; }
.client-logo img, .client-logo.placeholder > i, .client-logo.placeholder > b { transition: transform .2s cubic-bezier(.2,0,0,1), filter .2s, opacity .2s; }
.client-tooltip { position: absolute; left: 12px; right: 12px; bottom: 8px; display: grid; gap: 2px; min-width: 0; padding: 7px 9px; border-radius: 10px; background: var(--deep-navy); color: white; font-family: 'Nunito', sans-serif; letter-spacing: 0; line-height: 1.25; text-align: left; opacity: 0; transform: translateY(6px); transition: opacity .2s, transform .2s; pointer-events: none; }
.client-tooltip strong { font: 700 10px 'Urbanist', sans-serif; }
.client-tooltip small { color: rgba(255,255,255,.72); font-size: 9px; }
.client-logo:hover .client-tooltip, .client-logo:focus-visible .client-tooltip { opacity: 1; transform: translateY(0); }
.client-logo:hover img, .client-logo:focus-visible img, .client-logo.placeholder:hover > i, .client-logo.placeholder:hover > b, .client-logo.placeholder:focus-visible > i, .client-logo.placeholder:focus-visible > b { transform: translateY(-12px); }
@media (pointer: coarse) { .client-tooltip { opacity: 1; transform: none; } .client-logo img, .client-logo.placeholder > i, .client-logo.placeholder > b { transform: translateY(-12px); } }
.marquee-track { animation-duration: var(--marquee-duration, 30s); }
.segment-visual { padding: 26px; color: white; background: linear-gradient(145deg, var(--deep-navy), var(--prussian-blue) 72%); }
.segment-viz-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 17px; border-bottom: 1px solid rgba(118,180,255,.18); font: 700 9px 'Urbanist', sans-serif; letter-spacing: .12em; text-transform: uppercase; }
.segment-viz-head > span { color: rgba(255,255,255,.55); }
.segment-viz-head > i { color: var(--baby-blue-ice); font-style: normal; }
.segment-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 20px; }
.segment-metric { min-width: 0; padding: 14px; border: 1px solid rgba(118,180,255,.16); border-radius: 12px; background: rgba(118,180,255,.06); }
.segment-metric span, .segment-metric strong, .segment-metric small { display: block; }
.segment-metric span { min-height: 24px; color: rgba(255,255,255,.43); font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }
.segment-metric strong { margin: 8px 0 3px; color: white; font: 600 20px 'K2D', sans-serif; }
.segment-metric small { color: var(--baby-blue-ice); font-size: 8px; }
.segment-chart { height: 218px; margin-top: 18px; border: 1px solid rgba(118,180,255,.13); border-radius: 18px; background: rgba(3,9,40,.55); overflow: hidden; }
.segment-chart.line, .segment-chart.pulse { padding: 25px 22px 13px; }
.segment-chart svg { width: 100%; height: 145px; overflow: visible; }
.segment-chart polyline { fill: none; stroke: var(--baby-blue-ice); stroke-width: 3; vector-effect: non-scaling-stroke; }
.segment-chart.pulse polyline { stroke: #8cf0ff; stroke-linejoin: round; }
.chart-baseline { display: flex; justify-content: space-between; padding-top: 8px; border-top: 1px solid rgba(118,180,255,.12); color: rgba(255,255,255,.3); font: 700 7px 'Urbanist',sans-serif; }
.segment-chart.bars { display: flex; align-items: end; justify-content: space-around; gap: 10px; padding: 25px 25px 18px; }
.segment-chart.bars i { position: relative; flex: 1; height: var(--bar); min-height: 18px; max-width: 44px; border-radius: 10px 10px 4px 4px; background: linear-gradient(to top,var(--royal-blue),var(--baby-blue-ice)); animation: bars-in .55s cubic-bezier(.2,0,0,1) both; transform-origin: bottom; }
.segment-chart.bars i span { position: absolute; left: 50%; bottom: -14px; transform: translateX(-50%); color: rgba(255,255,255,.32); font: 700 7px 'Urbanist',sans-serif; }
@keyframes bars-in { from { transform: scaleY(.08); opacity: .3; } }
.segment-chart.donut { position: relative; display: grid; place-items: center; width: 218px; margin: 18px auto 0; border-radius: 50%; background: conic-gradient(var(--baby-blue-ice) var(--donut),rgba(118,180,255,.12) 0); }
.segment-chart.donut::before { content: ''; position: absolute; width: 156px; height: 156px; border-radius: 50%; background: var(--prussian-blue); }
.segment-chart.donut > div { position: relative; z-index: 1; text-align: center; }
.segment-chart.donut strong, .segment-chart.donut span { display: block; }
.segment-chart.donut strong { font: 600 38px 'K2D',sans-serif; }
.segment-chart.donut span { margin-top: 3px; color: rgba(255,255,255,.4); font-size: 8px; text-transform: uppercase; }
.segment-chart.flow { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 25px 18px; }
.flow-point { display: grid; place-items: center; min-width: 70px; text-align: center; }
.flow-point i { width: 20px; height: 20px; border: 5px solid rgba(118,180,255,.24); border-radius: 50%; background: var(--baby-blue-ice); }
.flow-point span { margin: 12px 0 5px; color: rgba(255,255,255,.38); font-size: 7px; }
.flow-point b { font: 600 15px 'K2D',sans-serif; }
.segment-chart.flow em { color: var(--baby-blue-ice); font-style: normal; }
.segment-chart.matrix { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; padding: 22px; }
.segment-chart.matrix i { border-radius: 8px; background: rgba(118,180,255,var(--heat)); animation: matrix-in .4s both; }
@keyframes matrix-in { from { opacity: 0; transform: scale(.8); } }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.contact-form button:disabled { opacity: .55; cursor: wait; }
.form-success.success { background: rgba(118,180,255,.13); color: var(--baby-blue-ice); }
.form-success.error { background: rgba(255,110,110,.12); color: #ffb4ab; }
@media (max-width:760px) { .segment-visual { min-height: 410px; padding: 18px; } .segment-metrics { gap: 6px; } .segment-metric { padding: 10px; } .segment-metric strong { font-size: 16px; } .segment-chart { height: 190px; } .segment-chart.flow { gap: 4px; overflow-x: auto; justify-content: flex-start; } .flow-point { min-width: 61px; } }
.contact-phone { display:flex; gap:20px; margin-top:24px; color:inherit; }
.contact-phone > span { color:var(--royal-blue); font:700 10px 'Urbanist',sans-serif; }
.contact-phone p { color:rgba(255,255,255,.48); font-size:11px; line-height:1.5; }
.contact-phone b { display:block; margin-bottom:4px; color:white; font-size:13px; }
