:root {
  --navy: #071327;
  --navy-2: #0b2444;
  --navy-3: #123866;
  --ink: #0b1424;
  --muted: #5e6a78;
  --soft: #f3f7f4;
  --soft-2: #e9f2e9;
  --green: #87bd69;
  --green-2: #4ab31e;
  --green-3: #c7ed77;
  --white: #ffffff;
  --line: rgba(7, 19, 39, .10);
  --glass: rgba(255,255,255,.68);
  --glass-strong: rgba(255,255,255,.82);
  --shadow-soft: 0 22px 60px rgba(7, 19, 39, .10);
  --shadow: 0 34px 90px rgba(7, 19, 39, .18);
  --shadow-dark: 0 40px 110px rgba(0,0,0,.38);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 18% 0%, rgba(135,189,105,.18), transparent 32rem),
    linear-gradient(180deg, #f9fbf8 0%, #fff 24%, #f8fbf8 100%);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(7,19,39,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7,19,39,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.42), transparent 62%);
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0; color: var(--muted); line-height: 1.75; }
h1, h2, h3 { margin: 0; color: var(--ink); letter-spacing: -.045em; line-height: .98; }
h1 { font-size: clamp(4.4rem, 10vw, 9.8rem); color: #fff; text-shadow: 0 20px 80px rgba(0,0,0,.38); }
h2 { font-size: clamp(2.3rem, 5vw, 5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.72rem); line-height: 1.08; }
strong { color: inherit; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.section { position: relative; padding: clamp(82px, 10vw, 150px) 0; }
.section-soft { position: relative; padding: clamp(82px, 10vw, 150px) 0; background: linear-gradient(180deg, #f0f6f3, #f8fbf8); overflow: hidden; }
.section-dark { position: relative; background: var(--navy); color: #fff; overflow: hidden; }
.section-dark h2, .section-dark h3, .section-dark p { color: #fff; }
.section-dark p { color: rgba(255,255,255,.72); }
.skip-link { position: absolute; left: -999px; top: 12px; z-index: 5000; padding: 12px 16px; background: #fff; color: var(--navy); border-radius: 12px; }
.skip-link:focus { left: 12px; }
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 4000; background: transparent; }
.scroll-progress span { display: block; width: 0%; height: 100%; background: linear-gradient(90deg, var(--green), var(--green-3)); box-shadow: 0 0 18px rgba(74,179,30,.7); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
  font: inherit;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid rgba(135,189,105,.52); outline-offset: 3px; }
.btn-primary {
  color: #061323;
  background: linear-gradient(135deg, var(--green-3), var(--green) 48%, var(--green-2));
  box-shadow: 0 18px 44px rgba(74,179,30,.26), inset 0 1px 0 rgba(255,255,255,.55);
}
.btn-primary:hover { box-shadow: 0 26px 64px rgba(74,179,30,.34), inset 0 1px 0 rgba(255,255,255,.7); }
.btn-secondary { color: #fff; background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.18); backdrop-filter: blur(18px); }
.btn-secondary:hover { background: rgba(255,255,255,.18); }
.btn-outline { color: var(--navy); background: rgba(255,255,255,.55); border-color: rgba(7,19,39,.14); backdrop-filter: blur(18px); }
.btn-outline:hover { background: #fff; border-color: rgba(74,179,30,.42); box-shadow: var(--shadow-soft); }
.btn-ghost { color: #fff; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); }
.btn-small { min-height: 40px; padding: 0 16px; font-size: .88rem; }
.button-row, .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.site-header {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: transform .3s ease;
  pointer-events: none;
}
.header-inner {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 28px;
  background: rgba(7, 19, 39, .68);
  box-shadow: 0 20px 70px rgba(0,0,0,.28);
  backdrop-filter: blur(22px) saturate(150%);
  pointer-events: auto;
}
.site-header.scrolled .header-inner { background: rgba(7,19,39,.82); border-color: rgba(135,189,105,.24); }
.brand { display: inline-flex; align-items: center; gap: 14px; min-width: 184px; }
.brand-mark.company-logo { width: 172px; height: 52px; display: grid; place-items: center; }
.brand-mark.company-logo img { width: 100%; height: 100%; object-fit: contain; }
.nav { display: flex; align-items: center; justify-content: center; gap: clamp(12px, 2vw, 24px); font-size: .92rem; font-weight: 600; color: rgba(255,255,255,.78); }
.nav a { position: relative; padding: 10px 0; }
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 4px; height: 2px; background: linear-gradient(90deg, var(--green-3), var(--green-2)); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.nav a:hover { color: #fff; }
.nav a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.phone { color: #fff; font-weight: 600; font-size: .92rem; }
.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.16); border-radius: 16px; background: rgba(255,255,255,.08); color: #fff; }
.nav-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: #fff; border-radius: 99px; }

.hero { min-height: 100svh; display: grid; align-items: center; padding: 126px 0 74px; }
.hero-field { position: absolute; inset: 0; overflow: hidden; }
.hero-field::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    radial-gradient(circle at 70% 24%, rgba(135,189,105,.22), transparent 31rem),
    linear-gradient(135deg, #061021 0%, #0b1e39 54%, #071327 100%);
  background-size: 92px 92px, 92px 92px, auto, auto;
}
.grid-glow { position: absolute; inset: 16% -12% auto auto; width: 58vw; height: 58vw; max-width: 820px; max-height: 820px; border-radius: 50%; background: conic-gradient(from 80deg, rgba(74,179,30,.32), rgba(255,255,255,.05), rgba(135,189,105,.25), transparent); filter: blur(34px); opacity: .5; animation: slowSpin 26s linear infinite; }
.orb { position: absolute; border-radius: 999px; filter: blur(2px); opacity: .7; }
.orb-one { width: 260px; height: 260px; top: 13%; left: 10%; background: radial-gradient(circle, rgba(135,189,105,.38), transparent 70%); animation: floatY 9s ease-in-out infinite; }
.orb-two { width: 430px; height: 430px; bottom: -120px; right: 8%; background: radial-gradient(circle, rgba(74,179,30,.26), transparent 72%); animation: floatY 11s ease-in-out infinite reverse; }
.orb-three { width: 180px; height: 180px; top: 24%; right: 33%; background: radial-gradient(circle, rgba(199,237,119,.20), transparent 72%); animation: floatX 13s ease-in-out infinite; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .86fr 1.14fr; gap: clamp(34px, 6vw, 78px); align-items: center; }
.hero-copy { max-width: 650px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px; color: rgba(255,255,255,.76); font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .16em; }
.eyebrow::before { content: ""; width: 34px; height: 2px; border-radius: 999px; background: linear-gradient(90deg, var(--green-3), var(--green-2)); }
.eyebrow.green { color: var(--green-2); }
.hero-lead { margin-top: 18px; font-size: clamp(1.26rem, 2vw, 1.78rem); line-height: 1.22; color: #fff !important; max-width: 680px; }
.hero-copy > p:not(.hero-lead) { margin-top: 20px; max-width: 620px; font-size: 1.06rem; }
.hero-actions { margin-top: 34px; }
.hero-proof { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 10px; }
.hero-proof span { padding: 10px 14px; border-radius: 999px; color: rgba(255,255,255,.78); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(14px); font-weight: 600; }
.hero-visual { position: relative; perspective: 1400px; }
.liquid-panel {
  position: relative;
  border: 1px solid rgba(255,255,255,.36);
  background: linear-gradient(140deg, rgba(255,255,255,.80), rgba(255,255,255,.52) 54%, rgba(255,255,255,.72));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(135%);
  overflow: hidden;
}
.liquid-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 8%, rgba(255,255,255,.72), transparent 24%),
    linear-gradient(115deg, rgba(255,255,255,.42), transparent 34%, rgba(255,255,255,.18) 62%, transparent 78%);
  opacity: .72;
}
.browser-frame { min-height: 600px; border-radius: 36px; padding: 16px; background: rgba(7,19,39,.28); box-shadow: var(--shadow-dark); transform: rotateY(-5deg) rotateX(3deg); transition: transform .45s ease; }
.browser-frame:hover { transform: rotateY(-2deg) rotateX(1deg) translateY(-5px); }
.browser-toolbar { position: relative; z-index: 2; height: 48px; border-radius: 20px; background: rgba(7,19,39,.76); border: 1px solid rgba(255,255,255,.13); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; padding: 0 14px; color: rgba(255,255,255,.72); }
.traffic { display: flex; gap: 6px; }
.traffic span { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.26); }
.traffic span:nth-child(2) { background: rgba(135,189,105,.88); }
.address { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: .82rem; }
.toolbar-pill { padding: 6px 10px; border-radius: 999px; color: var(--green-3); background: rgba(135,189,105,.12); border: 1px solid rgba(135,189,105,.22); font-size: .75rem; font-weight: 600; }
.dashboard-layer { position: relative; z-index: 2; min-height: 520px; margin-top: 14px; border-radius: 28px; overflow: hidden; background: linear-gradient(135deg, rgba(7,19,39,.88), rgba(9,33,61,.86)); border: 1px solid rgba(255,255,255,.13); }
.dashboard-layer::before { content: ""; position: absolute; inset: 0; 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: 56px 56px; }
.dashboard-copy { position: absolute; z-index: 2; left: 32px; top: 34px; width: 250px; padding: 22px; border-radius: 24px; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(18px); }
.dashboard-copy img { width: 54px; height: 54px; object-fit: contain; border-radius: 14px; margin-bottom: 14px; }
.dashboard-copy span { display: block; color: var(--green-3); font-weight: 600; margin-bottom: 8px; }
.dashboard-copy strong { display: block; color: #fff; font-size: 1.28rem; line-height: 1.08; letter-spacing: -.035em; }
.dashboard-copy p { color: rgba(255,255,255,.66); margin-top: 10px; font-size: .92rem; }
.dashboard-screen { position: absolute; z-index: 1; right: -42px; bottom: 34px; width: min(76%, 660px); border-radius: 26px; overflow: hidden; transform: rotate(-1deg); border: 1px solid rgba(255,255,255,.18); box-shadow: 0 32px 90px rgba(0,0,0,.36); }
.dashboard-screen img { width: 100%; height: auto; }
.floating-card { position: absolute; z-index: 4; width: 215px; padding: 16px 18px; border-radius: 20px; color: #fff; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(20px); box-shadow: 0 24px 60px rgba(0,0,0,.24); animation: floatY 7s ease-in-out infinite; }
.floating-card small { display: block; color: var(--green-3); font-weight: 600; margin-bottom: 7px; }
.floating-card b { font-size: .92rem; line-height: 1.36; }
.card-a { right: 36px; top: 86px; }
.card-b { left: 38%; bottom: 42px; animation-delay: -2s; }
.card-c { right: 14px; bottom: 154px; animation-delay: -4s; }
.flow-rail { margin: 18px auto 0; width: min(92%, 620px); display: flex; align-items: center; justify-content: center; gap: 10px; color: rgba(255,255,255,.7); font-size: .82rem; font-weight: 600; }
.flow-rail i { display: block; width: 56px; height: 2px; background: linear-gradient(90deg, rgba(255,255,255,.18), var(--green), rgba(255,255,255,.18)); border-radius: 999px; overflow: hidden; }
.flow-rail i::after { content: ""; display: block; width: 14px; height: 2px; background: #fff; animation: flowLine 2.6s ease-in-out infinite; }

.split, .problem-grid, .contact-grid, .investors-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 6vw, 74px); align-items: center; }
.split-reverse { grid-template-columns: 1.05fr .95fr; }
.section-copy .lead { margin-top: 22px; font-size: clamp(1.08rem, 1.5vw, 1.28rem); color: var(--ink); line-height: 1.58; }
.section-copy p:not(.lead) { margin-top: 18px; }
.section-copy .button-row { margin-top: 30px; }
.section-watermark { position: absolute; top: 18px; right: -28px; color: rgba(7,19,39,.035); font-size: clamp(5rem, 13vw, 13rem); font-weight: 600; letter-spacing: -.08em; pointer-events: none; }
.visual-stack { position: relative; min-height: 560px; }
.image-frame { position: absolute; inset: 32px 0 0 0; border-radius: 38px; padding: 16px; background: rgba(255,255,255,.68); }
.image-frame img { position: relative; z-index: 2; width: 100%; height: 100%; object-fit: cover; border-radius: 27px; filter: saturate(.96) contrast(1.02); }
.floating-note, .mini-metric { position: absolute; z-index: 4; border-radius: 20px; padding: 16px 18px; background: rgba(255,255,255,.76); border: 1px solid rgba(7,19,39,.08); box-shadow: var(--shadow-soft); backdrop-filter: blur(16px); font-weight: 600; }
.note-green { top: 0; left: 32px; color: #153d1c; }
.note-blue { right: 18px; bottom: 70px; color: var(--navy-2); }
.mini-metric { display: grid; gap: 2px; min-width: 108px; }
.mini-metric b { color: var(--green-2); font-size: 1.34rem; }
.mini-metric span { color: var(--muted); font-size: .82rem; }
.metric-one { left: 18px; bottom: 42px; }
.metric-two { right: 38px; top: 74px; }

.liquid-divider { position: absolute; left: -5%; right: -5%; height: 88px; top: -1px; background: #fff; clip-path: polygon(0 0,100% 0,100% 54%,82% 74%,64% 62%,46% 78%,28% 58%,12% 72%,0 52%); }
.signal-strip { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px; }
.signal-strip span { padding: 12px 16px; border-radius: 999px; color: var(--navy); background: rgba(255,255,255,.66); border: 1px solid rgba(7,19,39,.08); box-shadow: 0 12px 30px rgba(7,19,39,.06); font-weight: 600; }
.problem-card { border-radius: 34px; padding: 34px; background: rgba(255,255,255,.72); }
.problem-card h3 { margin-bottom: 20px; }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.check-list li { position: relative; padding-left: 34px; color: var(--ink); line-height: 1.55; }
.check-list li::before { content: ""; position: absolute; left: 0; top: .28em; width: 21px; height: 21px; border-radius: 50%; background: linear-gradient(135deg, var(--green-3), var(--green-2)); box-shadow: 0 8px 18px rgba(74,179,30,.22); }
.check-list li::after { content: ""; position: absolute; left: 7px; top: calc(.28em + 6px); width: 7px; height: 4px; border-left: 2px solid var(--navy); border-bottom: 2px solid var(--navy); transform: rotate(-45deg); }
.bold-callout { margin-top: 24px !important; padding: 22px; border-radius: 22px; color: var(--navy) !important; background: linear-gradient(135deg, rgba(199,237,119,.36), rgba(255,255,255,.52)); border: 1px solid rgba(74,179,30,.22); font-weight: 600; }

.architecture-card { min-height: 590px; position: relative; border-radius: 42px; background: linear-gradient(145deg, #071327, #0c2748); box-shadow: var(--shadow); overflow: hidden; border: 1px solid rgba(255,255,255,.12); }
.architecture-card::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at center, rgba(135,189,105,.13), transparent 38%), linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: auto, 54px 54px, 54px 54px; }
.architecture-ring { position: absolute; inset: 80px; border-radius: 50%; border: 1px solid rgba(135,189,105,.20); box-shadow: inset 0 0 0 26px rgba(255,255,255,.018), 0 0 80px rgba(74,179,30,.15); animation: slowSpin 38s linear infinite; }
.architecture-logo { position: absolute; left: 50%; top: 45%; transform: translate(-50%, -50%); z-index: 3; width: 138px; height: 138px; border-radius: 36px; display: grid; place-items: center; background: rgba(255,255,255,.92); box-shadow: 0 28px 70px rgba(0,0,0,.32); }
.architecture-logo img { width: 86px; height: 86px; object-fit: contain; }
.arch-node { position: absolute; z-index: 4; width: 190px; padding: 16px; border-radius: 22px; color: #fff; background: rgba(255,255,255,.11); border: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(16px); box-shadow: 0 20px 50px rgba(0,0,0,.18); }
.arch-node span { display: block; color: var(--green-3); font-weight: 600; margin-bottom: 6px; }
.arch-node b { font-size: .92rem; line-height: 1.28; }
.arch-one { left: 30px; top: 60px; }
.arch-two { right: 32px; top: 78px; }
.arch-three { left: 42px; bottom: 150px; }
.arch-four { right: 42px; bottom: 154px; }
.arch-result { position: absolute; z-index: 4; left: 34px; right: 34px; bottom: 34px; padding: 24px; border-radius: 24px; background: linear-gradient(135deg, rgba(199,237,119,.18), rgba(255,255,255,.09)); border: 1px solid rgba(135,189,105,.20); backdrop-filter: blur(18px); }
.arch-result strong { display: block; color: #fff; font-size: 1.2rem; }
.arch-result p { margin-top: 6px; color: rgba(255,255,255,.68); }

.centered { max-width: 840px; margin: 0 auto 44px; text-align: center; }
.centered .eyebrow { justify-content: center; }
.interface-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 28px; }
.tab { min-height: 46px; padding: 0 18px; border-radius: 999px; border: 1px solid rgba(7,19,39,.11); background: rgba(255,255,255,.60); color: var(--muted); font: inherit; font-weight: 600; cursor: pointer; transition: all .25s ease; backdrop-filter: blur(14px); }
.tab.active, .tab:hover { color: #081327; background: linear-gradient(135deg, var(--green-3), var(--green)); border-color: rgba(74,179,30,.2); box-shadow: 0 16px 38px rgba(74,179,30,.18); }
.interface-stage { position: relative; min-height: 600px; padding: 28px 28px 28px 92px; border-radius: 40px; background: linear-gradient(135deg, rgba(255,255,255,.72), rgba(241,247,244,.70)); }
.stage-sidebar { position: absolute; left: 28px; top: 28px; bottom: 28px; width: 42px; border-radius: 22px; background: rgba(7,19,39,.90); display: grid; align-content: start; gap: 12px; padding: 16px 10px; }
.stage-sidebar span { height: 22px; border-radius: 9px; background: rgba(255,255,255,.15); }
.stage-sidebar span:first-child { background: var(--green); }
.interface-panel { position: relative; z-index: 2; border-radius: 30px; overflow: hidden; border: 1px solid rgba(7,19,39,.10); box-shadow: 0 28px 70px rgba(7,19,39,.13); background: #fff; animation: panelIn .38s ease both; }
.interface-panel img { width: 100%; min-height: 470px; object-fit: cover; object-position: top center; }
.interface-panel[hidden] { display: none; }

.section-head { display: grid; grid-template-columns: 1fr .78fr; gap: 40px; align-items: end; margin-bottom: 42px; }
.section-head p { font-size: 1.06rem; }
.scenario-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.scenario-card { position: relative; min-height: 390px; padding: 28px; border-radius: 30px; background: rgba(255,255,255,.72); border: 1px solid rgba(7,19,39,.08); box-shadow: 0 18px 55px rgba(7,19,39,.08); overflow: hidden; transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease; }
.scenario-card::before { content: ""; position: absolute; inset: auto -35% -40% 20%; height: 210px; background: radial-gradient(circle, rgba(135,189,105,.24), transparent 68%); transition: transform .35s ease; }
.scenario-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(74,179,30,.20); }
.scenario-card:hover::before { transform: scale(1.25); }
.scenario-card .icon { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 18px; background: linear-gradient(135deg, #0b2444, #071327); color: var(--green-3); font-weight: 600; margin-bottom: 22px; box-shadow: 0 16px 32px rgba(7,19,39,.18); }
.scenario-card h3 { margin-bottom: 16px; }
.scenario-card p { position: relative; z-index: 1; font-size: .94rem; margin-top: 10px; }

.effects { padding: clamp(90px, 10vw, 160px) 0; }
.effects::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 14% 16%, rgba(135,189,105,.20), transparent 28rem), linear-gradient(145deg, #071327, #0a1f3a 48%, #071327); }
.effects .container { position: relative; z-index: 1; }
.effects-composition { position: relative; }
.effect-bubbles { position: absolute; inset: 42px 7% auto; display: flex; justify-content: space-between; pointer-events: none; opacity: .46; }
.effect-bubbles span { display: grid; place-items: center; width: 132px; height: 132px; border-radius: 50%; color: rgba(255,255,255,.70); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.10); backdrop-filter: blur(16px); font-size: .78rem; font-weight: 600; animation: floatY 8s ease-in-out infinite; }
.effect-bubbles span:nth-child(2n) { margin-top: 86px; animation-delay: -3s; }
.effects-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.effect-card { min-height: 260px; padding: 28px; border-radius: 30px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.13); backdrop-filter: blur(18px); box-shadow: 0 24px 60px rgba(0,0,0,.20); transition: transform .28s ease, background .28s ease; }
.effect-card:hover { transform: translateY(-7px); background: rgba(255,255,255,.12); }
.effect-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 20px; background: linear-gradient(135deg, var(--green-3), var(--green-2)); color: var(--navy); font-weight: 600; margin-bottom: 22px; font-size: 1.4rem; box-shadow: 0 18px 36px rgba(74,179,30,.25); }
.effect-card p { margin-top: 14px; }

.timeline { position: relative; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.timeline::before { content: ""; position: absolute; top: 34px; left: 5%; right: 5%; height: 3px; background: linear-gradient(90deg, transparent, rgba(74,179,30,.45), transparent); z-index: -1; }
.timeline article { padding: 28px; border-radius: 30px; background: rgba(255,255,255,.75); border: 1px solid rgba(7,19,39,.08); box-shadow: 0 18px 48px rgba(7,19,39,.08); }
.timeline span { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 19px; background: var(--navy); color: #fff; font-weight: 600; margin-bottom: 20px; box-shadow: 0 18px 38px rgba(7,19,39,.20); }
.timeline h3 { font-size: 1.28rem; }
.timeline p, .timeline li { font-size: .95rem; color: var(--muted); line-height: 1.58; }
.timeline .result { background: linear-gradient(135deg, #071327, #0f335d); color: #fff; grid-column: span 1; }
.timeline .result h3, .timeline .result p, .timeline .result li { color: #fff; }
.timeline .result span { background: linear-gradient(135deg, var(--green-3), var(--green-2)); color: var(--navy); }
.timeline .result ul { margin: 0; padding-left: 18px; }

.contact::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 78% 20%, rgba(135,189,105,.20), transparent 28rem); pointer-events: none; }
.contact-grid { align-items: start; }
.contact-card { margin-top: 32px; padding: 22px; border-radius: 28px; display: flex; gap: 18px; align-items: center; }
.contact-card img { position: relative; z-index: 2; width: 78px; height: 78px; object-fit: contain; border-radius: 22px; }
.contact-card p { position: relative; z-index: 2; margin: 0; }
.application-form { padding: 34px; border-radius: 36px; }
.application-form > * { position: relative; z-index: 2; }
.form-row { display: grid; gap: 8px; margin-bottom: 18px; }
.two-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 18px; }
.two-fields > div { display: grid; gap: 8px; }
label { font-weight: 600; color: var(--ink); }
.required-mark { color: var(--green-2); font-weight: 600; }
input, textarea { width: 100%; min-height: 54px; padding: 14px 16px; border: 1px solid rgba(7,19,39,.13); border-radius: 18px; background: rgba(255,255,255,.72); color: var(--ink); font: inherit; outline: none; transition: box-shadow .2s ease, border-color .2s ease, background .2s ease; }
textarea { resize: vertical; }
input:focus, textarea:focus { border-color: rgba(74,179,30,.55); box-shadow: 0 0 0 4px rgba(81,178,35,.14); background: #fff; }
.checkbox-row { display: flex; gap: 12px; align-items: start; margin: 14px 0; font-weight: 600; color: var(--muted); }
.checkbox-row input { width: 18px; min-width: 18px; height: 18px; min-height: 18px; margin-top: 3px; accent-color: var(--green-2); }
.checkbox-row.subtle { font-size: .92rem; }
.legal-links { display: flex; flex-wrap: wrap; gap: 10px 16px; margin: 14px 0 22px; font-size: .92rem; }
.legal-links a { color: var(--navy-2); text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
.honeypot { display: none !important; }
.form-status { min-height: 24px; margin: 14px 0 0; font-weight: 600; }
.form-status.success { color: #247c2f; }
.form-status.error { color: #b42318; }

.investors { padding-top: 0; }
.investors-grid { padding: 48px; border-radius: 42px; background: linear-gradient(145deg, rgba(7,19,39,.96), rgba(13,47,82,.92)); }
.investors-grid h2, .investors-grid .lead { color: #fff; }
.investors-grid p { color: rgba(255,255,255,.72); }
.investor-cards { display: grid; grid-template-columns: 1fr; gap: 16px; }
.investor-cards article { padding: 24px; border-radius: 24px; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.13); backdrop-filter: blur(18px); }
.investor-cards h3 { color: #fff; margin-bottom: 10px; }

.site-footer { padding: 72px 0; background: #050d1c; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr .7fr; gap: 34px; }
.site-footer p, .site-footer a { color: rgba(255,255,255,.72); }
.site-footer h3 { color: #fff; font-size: 1.1rem; margin-bottom: 14px; }
.site-footer a { display: block; margin-bottom: 8px; }
.footer-logo { display: inline-flex; width: 220px; height: 96px; margin-bottom: 18px; }
.footer-logo img { width: 100%; height: 100%; object-fit: contain; }

.cookie-banner {
  position: fixed;
  z-index: 5000;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px;
  border-radius: 26px;
  color: var(--ink);
  background: rgba(255,255,255,.90);
  box-shadow: var(--shadow);
  border: 1px solid rgba(7,19,39,.10);
  backdrop-filter: blur(22px) saturate(140%);
  transform: translateY(24px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.cookie-banner.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.cookie-banner[hidden] { display: none !important; }
.cookie-banner p { margin: 4px 0 0; max-width: 850px; font-size: .95rem; }
.cookie-actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.cookie-actions .btn-secondary { color: var(--navy); background: rgba(7,19,39,.08); border-color: rgba(7,19,39,.12); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes floatX { 0%,100% { transform: translateX(0); } 50% { transform: translateX(18px); } }
@keyframes slowSpin { to { transform: rotate(360deg); } }
@keyframes flowLine { 0% { transform: translateX(-18px); opacity: 0; } 35% { opacity: 1; } 100% { transform: translateX(62px); opacity: 0; } }
@keyframes panelIn { from { opacity: 0; transform: translateY(12px) scale(.985); } to { opacity: 1; transform: translateY(0) scale(1); } }

@media (max-width: 1100px) {
  .header-inner { grid-template-columns: auto auto; }
  .nav-toggle { display: block; justify-self: end; }
  .nav { display: none; position: absolute; left: 20px; right: 20px; top: calc(100% + 10px); padding: 18px; border-radius: 24px; background: rgba(7,19,39,.94); border: 1px solid rgba(255,255,255,.12); box-shadow: var(--shadow); flex-direction: column; align-items: stretch; }
  .nav.open { display: flex; }
  .nav a { padding: 12px 10px; }
  .header-actions { display: none; }
  .hero-grid, .split, .split-reverse, .problem-grid, .contact-grid, .investors-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 120px; }
  .browser-frame { transform: none; min-height: 560px; }
  .section-head { grid-template-columns: 1fr; align-items: start; }
  .scenario-grid, .effects-grid, .timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .effect-bubbles { display: none; }
}
@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--container)); }
  .site-header { top: 10px; }
  .header-inner { min-height: 64px; border-radius: 22px; padding: 8px 10px 8px 14px; }
  .brand { min-width: auto; }
  .brand-mark.company-logo { width: 142px; height: 43px; }
  h1 { font-size: clamp(4rem, 18vw, 6.8rem); }
  h2 { font-size: clamp(2.05rem, 10vw, 3.4rem); }
  .hero { min-height: auto; padding: 106px 0 56px; }
  .hero-grid { gap: 42px; }
  .btn { width: 100%; white-space: normal; text-align: center; }
  .button-row, .hero-actions { width: 100%; }
  .hero-proof span { flex: 1 1 calc(50% - 10px); text-align: center; }
  .browser-frame { min-height: auto; padding: 10px; border-radius: 26px; }
  .browser-toolbar { height: 44px; grid-template-columns: auto 1fr; }
  .toolbar-pill { display: none; }
  .dashboard-layer { min-height: 470px; border-radius: 22px; }
  .dashboard-copy { left: 16px; top: 16px; width: calc(100% - 32px); }
  .dashboard-screen { width: 112%; right: -34px; bottom: 20px; }
  .floating-card { width: 180px; font-size: .86rem; }
  .card-a { top: 178px; right: 12px; }
  .card-b { left: 16px; bottom: 20px; }
  .card-c { display: none; }
  .flow-rail { flex-wrap: wrap; }
  .flow-rail i { width: 32px; }
  .visual-stack { min-height: 420px; }
  .image-frame { inset: 46px 0 0; }
  .floating-note, .mini-metric { padding: 12px 14px; }
  .metric-two { display: none; }
  .architecture-card { min-height: 640px; }
  .architecture-ring { inset: 105px 46px; }
  .architecture-logo { top: 39%; }
  .arch-node { width: calc(50% - 28px); padding: 13px; }
  .arch-one { left: 16px; top: 24px; }
  .arch-two { right: 16px; top: 42px; }
  .arch-three { left: 16px; bottom: 208px; }
  .arch-four { right: 16px; bottom: 222px; }
  .arch-result { left: 16px; right: 16px; bottom: 16px; }
  .interface-stage { padding: 14px; min-height: auto; border-radius: 28px; }
  .stage-sidebar { display: none; }
  .interface-panel img { min-height: 330px; }
  .scenario-grid, .effects-grid, .timeline { grid-template-columns: 1fr; }
  .scenario-card { min-height: auto; }
  .two-fields { grid-template-columns: 1fr; }
  .application-form { padding: 22px; border-radius: 28px; }
  .investors-grid { padding: 28px; border-radius: 30px; }
  .footer-grid { grid-template-columns: 1fr; }
  .cookie-banner { grid-template-columns: 1fr; left: 12px; right: 12px; bottom: 12px; padding: 16px; }
  .cookie-actions { justify-content: stretch; }
  .cookie-actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* v8 — refined header, real SVG logo, fluid hover system */
.site-header { top: 18px; }
.header-inner {
  display: flex;
  grid-template-columns: none;
  gap: 18px;
  min-height: 70px;
  padding: 9px 12px 9px 13px;
  border-radius: 30px;
  background: rgba(255,255,255,.80);
  border-color: rgba(255,255,255,.62);
  box-shadow: 0 22px 80px rgba(7,19,39,.20), inset 0 1px 0 rgba(255,255,255,.88);
  backdrop-filter: blur(24px) saturate(170%);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
}
.site-header.scrolled .header-inner {
  background: rgba(255,255,255,.90);
  border-color: rgba(135,189,105,.24);
  box-shadow: 0 16px 58px rgba(7,19,39,.18), inset 0 1px 0 rgba(255,255,255,.90);
}
.brand {
  min-width: 0;
  width: 190px;
  height: 50px;
  flex: 0 0 190px;
  border-radius: 22px;
  padding: 5px 12px;
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(245,249,244,.78));
  border: 1px solid rgba(7,19,39,.08);
  box-shadow: 0 12px 32px rgba(7,19,39,.08), inset 0 1px 0 rgba(255,255,255,.95);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.brand:hover { transform: translateY(-1px); border-color: rgba(135,189,105,.34); box-shadow: 0 18px 46px rgba(7,19,39,.12), inset 0 1px 0 rgba(255,255,255,.98); }
.brand-mark.company-logo { width: 100%; height: 100%; display: block; }
.brand-mark.company-logo img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.nav {
  flex: 1 1 auto;
  min-width: 0;
  gap: clamp(10px, 1.25vw, 18px);
  color: rgba(7,19,39,.76);
  font-size: clamp(.78rem, .76vw, .88rem);
  font-weight: 600;
  letter-spacing: -.015em;
  white-space: nowrap;
}
.nav a {
  padding: 11px 2px;
  transition: color .22s ease, transform .22s ease;
}
.nav a:hover { color: var(--navy); transform: translateY(-1px); }
.nav a::after { bottom: 6px; height: 2px; border-radius: 999px; transform-origin: center; }
.header-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(7,19,39,.045);
  border: 1px solid rgba(7,19,39,.07);
  font-size: .84rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.01em;
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}
.phone::before { content: ""; width: 8px; height: 8px; margin-right: 8px; border-radius: 50%; background: var(--green-2); box-shadow: 0 0 0 5px rgba(74,179,30,.13); }
.phone:hover { transform: translateY(-1px); background: rgba(135,189,105,.14); border-color: rgba(74,179,30,.18); }
.header-actions .btn-small {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: .82rem;
  line-height: 1;
  letter-spacing: -.018em;
}
.header-actions .btn-ghost {
  color: var(--navy);
  background: rgba(255,255,255,.58);
  border-color: rgba(7,19,39,.10);
}
.header-actions .btn-ghost:hover { background: rgba(7,19,39,.06); border-color: rgba(7,19,39,.16); }
.nav-toggle { color: var(--navy); border-color: rgba(7,19,39,.11); background: rgba(255,255,255,.62); }
.nav-toggle span { background: var(--navy); }

/* richer, meaningful motion */
.btn, .brand, .phone, .tab, .hero-proof span, .signal-strip span, .liquid-panel, .scenario-card, .effect-card, .timeline article, .investor-cards article, .contact-card, .floating-card, .floating-note, .mini-metric, .arch-node, .architecture-logo {
  will-change: transform;
}
.btn {
  position: relative;
  overflow: hidden;
  transform: translate3d(var(--magnet-x, 0px), var(--magnet-y, 0px), 0);
}
.btn::after {
  content: "";
  position: absolute;
  inset: -80% -28%;
  background: linear-gradient(115deg, transparent 28%, rgba(255,255,255,.45) 46%, transparent 62%);
  transform: translateX(-85%) rotate(9deg);
  transition: transform .68s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
}
.btn:hover::after { transform: translateX(82%) rotate(9deg); }
.hero-proof span, .signal-strip span, .tab {
  transition: transform .24s cubic-bezier(.2,.8,.2,1), box-shadow .24s ease, border-color .24s ease, background .24s ease, color .24s ease;
}
.hero-proof span:hover, .signal-strip span:hover, .tab:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 42px rgba(7,19,39,.12);
}
.liquid-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,.42), transparent 20rem);
  opacity: 0;
  transition: opacity .28s ease;
  mix-blend-mode: screen;
}
.liquid-panel:hover::after { opacity: .72; }
.image-frame, .application-form, .problem-card, .contact-card, .investors-grid, .interface-stage {
  transform: translate3d(0,0,0);
  transition: transform .38s cubic-bezier(.2,.8,.2,1), box-shadow .38s ease, border-color .38s ease;
}
.image-frame:hover, .application-form:hover, .problem-card:hover, .contact-card:hover, .investors-grid:hover, .interface-stage:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 90px rgba(7,19,39,.16);
}
.floating-card, .floating-note, .mini-metric, .arch-node {
  transition: transform .34s cubic-bezier(.2,.8,.2,1), box-shadow .34s ease, border-color .34s ease, background .34s ease;
}
.floating-card:hover, .floating-note:hover, .mini-metric:hover, .arch-node:hover {
  transform: translateY(-6px) scale(1.015);
  border-color: rgba(135,189,105,.35);
  box-shadow: 0 26px 62px rgba(7,19,39,.18);
}
.architecture-logo { animation: breatheLogo 6.4s ease-in-out infinite; }
.arch-node { animation: floatMicro 7s ease-in-out infinite; }
.arch-two { animation-delay: -1.8s; }
.arch-three { animation-delay: -3.1s; }
.arch-four { animation-delay: -4.4s; }
.scenario-card::after, .effect-card::after, .timeline article::after, .investor-cards article::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 18%, rgba(255,255,255,.38) 48%, transparent 78%);
  transform: translateX(-110%);
  transition: transform .7s cubic-bezier(.2,.8,.2,1);
}
.scenario-card:hover::after, .effect-card:hover::after, .timeline article:hover::after, .investor-cards article:hover::after { transform: translateX(110%); }
.scenario-card:hover { transform: translateY(-10px) scale(1.012); }
.scenario-card:hover .icon, .effect-card:hover .effect-icon, .timeline article:hover span { transform: translateY(-2px) rotate(-3deg); }
.scenario-card .icon, .effect-icon, .timeline span { transition: transform .26s cubic-bezier(.2,.8,.2,1), box-shadow .26s ease; }
.effect-card { position: relative; overflow: hidden; }
.effect-card:hover { transform: translateY(-9px) scale(1.012); background: rgba(255,255,255,.14); }
.timeline article, .investor-cards article { position: relative; overflow: hidden; transition: transform .28s cubic-bezier(.2,.8,.2,1), box-shadow .28s ease, border-color .28s ease; }
.timeline article:hover, .investor-cards article:hover { transform: translateY(-7px); box-shadow: 0 26px 70px rgba(7,19,39,.14); border-color: rgba(135,189,105,.25); }
.interface-panel img { transition: transform .65s cubic-bezier(.2,.8,.2,1), filter .35s ease; }
.interface-panel:hover img { transform: scale(1.018); filter: saturate(1.04) contrast(1.02); }
.dashboard-screen img { transition: transform .7s cubic-bezier(.2,.8,.2,1), filter .35s ease; }
.browser-frame:hover .dashboard-screen img { transform: translateY(-8px) scale(1.018); filter: saturate(1.05) contrast(1.02); }
.hero-proof span:nth-child(1), .floating-card.card-a { animation: floatMicro 7.5s ease-in-out infinite; }
.hero-proof span:nth-child(2), .floating-card.card-b { animation: floatMicro 8s ease-in-out infinite -2s; }
.hero-proof span:nth-child(3), .floating-card.card-c { animation: floatMicro 8.4s ease-in-out infinite -4s; }

@keyframes floatMicro { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
@keyframes breatheLogo { 0%,100% { transform: translate(-50%, -50%) scale(1); } 50% { transform: translate(-50%, -50%) scale(1.035); } }

@media (max-width: 1260px) {
  .header-inner { gap: 12px; }
  .brand { width: 168px; flex-basis: 168px; }
  .nav { gap: 10px; font-size: .78rem; }
  .phone { padding: 0 10px; font-size: .79rem; }
  .header-actions .btn-small { padding: 0 11px; font-size: .78rem; }
}
@media (max-width: 1140px) {
  .header-inner { justify-content: space-between; }
  .nav-toggle { display: block; flex: 0 0 auto; }
  .nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    padding: 18px;
    border-radius: 24px;
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(7,19,39,.10);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    color: var(--navy);
    font-size: .98rem;
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 10px; }
  .nav a:hover { color: var(--navy); }
  .header-actions { display: flex; margin-left: auto; }
  .header-actions .btn-small { display: none; }
}
@media (max-width: 760px) {
  .site-header { top: 10px; }
  .header-inner { min-height: 62px; border-radius: 24px; padding: 8px 10px; }
  .brand { width: 156px; height: 46px; flex-basis: 156px; padding: 4px 10px; border-radius: 19px; }
  .phone { display: none; }
  .nav { left: 14px; right: 14px; }
}
@media (max-width: 390px) {
  .brand { width: 138px; flex-basis: 138px; }
  .nav-toggle { width: 42px; height: 42px; border-radius: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  .architecture-logo, .arch-node, .hero-proof span, .floating-card { animation: none !important; }
  .btn { transform: none !important; }
}

/* v9 — dark premium header, verified content imagery, designer hero field */
.site-header {
  top: 14px;
  pointer-events: none;
}
.site-header .container {
  width: min(1400px, calc(100% - 40px));
}
.header-inner {
  display: flex;
  min-height: 68px;
  gap: 14px;
  padding: 8px 10px 8px 12px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(6,16,33,.94), rgba(9,29,52,.86) 58%, rgba(6,18,34,.95)),
    radial-gradient(circle at 78% 0%, rgba(135,189,105,.18), transparent 34rem);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 26px 86px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.12);
  backdrop-filter: blur(22px) saturate(145%);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
  pointer-events: auto;
}
.site-header.scrolled .header-inner {
  background:
    linear-gradient(135deg, rgba(5,13,28,.96), rgba(8,25,46,.92) 62%, rgba(5,13,28,.96)),
    radial-gradient(circle at 80% 0%, rgba(135,189,105,.16), transparent 28rem);
  border-color: rgba(135,189,105,.24);
  box-shadow: 0 18px 62px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.10);
}
.brand {
  flex: 0 0 180px;
  width: 180px;
  height: 48px;
  min-width: 180px;
  padding: 5px 12px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(241,247,238,.88));
  border: 1px solid rgba(255,255,255,.42);
  box-shadow: 0 14px 36px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.96);
  overflow: hidden;
}
.brand-mark.company-logo { width: 100%; height: 100%; }
.brand-mark.company-logo img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.nav {
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
  gap: clamp(10px, 1vw, 16px);
  color: rgba(255,255,255,.74);
  font-size: clamp(.78rem, .78vw, .88rem);
  font-weight: 600;
  letter-spacing: -.018em;
  white-space: nowrap;
}
.nav a {
  padding: 12px 3px;
  text-shadow: 0 1px 0 rgba(0,0,0,.16);
}
.nav a:hover { color: #fff; transform: translateY(-1px); }
.nav a::after { bottom: 7px; background: linear-gradient(90deg, var(--green-3), var(--green-2)); }
.header-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 13px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  font-size: .84rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.01em;
}
.phone::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--green-2);
  box-shadow: 0 0 0 5px rgba(74,179,30,.16);
}
.phone:hover { background: rgba(135,189,105,.13); border-color: rgba(135,189,105,.24); color: #fff; }
.header-actions .btn-small {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.018em;
}
.header-actions .btn-primary { color: #061323; }
.header-actions .btn-ghost {
  color: #fff;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
}
.header-actions .btn-ghost:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.24); }
.nav-toggle { color: #fff; border-color: rgba(255,255,255,.14); background: rgba(255,255,255,.08); }
.nav-toggle span { background: #fff; }

.hero { padding-top: 126px; }
.hero-field::before {
  background:
    linear-gradient(90deg, rgba(255,255,255,.032) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.032) 1px, transparent 1px),
    radial-gradient(circle at 68% 16%, rgba(135,189,105,.24), transparent 29rem),
    radial-gradient(circle at 18% 86%, rgba(135,189,105,.13), transparent 30rem),
    linear-gradient(135deg, #061021 0%, #0b1d37 45%, #071327 100%);
  background-size: 96px 96px, 96px 96px, auto, auto, auto;
}
.hero-bg-photo {
  position: absolute;
  right: -7vw;
  top: 80px;
  width: min(720px, 54vw);
  height: min(620px, 62vh);
  object-fit: cover;
  opacity: .16;
  filter: grayscale(1) contrast(1.08) brightness(.9);
  transform: rotate(-2deg);
  border-radius: 48px;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.62) 20%, rgba(0,0,0,.92) 76%, transparent 100%);
}
.hero-mesh {
  position: absolute;
  inset: 88px 0 auto auto;
  width: 62vw;
  height: 48vw;
  background:
    linear-gradient(120deg, transparent 7%, rgba(255,255,255,.055) 7.3%, transparent 7.8%, transparent 18%, rgba(255,255,255,.042) 18.3%, transparent 18.8%),
    linear-gradient(30deg, transparent 12%, rgba(135,189,105,.10) 12.4%, transparent 13.2%, transparent 39%, rgba(255,255,255,.045) 39.4%, transparent 40.2%);
  opacity: .72;
  transform: skewY(-7deg);
}
.hero-cut {
  position: absolute;
  display: block;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.015));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10), 0 18px 80px rgba(0,0,0,.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transform: rotate(-8deg);
}
.hero-cut-one { width: 44vw; height: 74px; right: 4vw; top: 24%; border-radius: 999px; }
.hero-cut-two { width: 30vw; height: 62px; right: 18vw; bottom: 20%; border-radius: 999px; opacity: .72; }
.hero-cut-three { width: 20vw; height: 46px; left: 42vw; top: 39%; border-radius: 999px; opacity: .52; }
.grid-glow { opacity: .38; filter: blur(46px); }
.orb { opacity: .48; }
.browser-frame {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.16);
}
.dashboard-layer {
  background:
    radial-gradient(circle at 82% 12%, rgba(135,189,105,.12), transparent 18rem),
    linear-gradient(135deg, rgba(5,13,28,.94), rgba(10,34,61,.89));
}
.hero-kpi-board {
  position: absolute;
  z-index: 3;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.hero-kpi-board span {
  display: grid;
  gap: 3px;
  padding: 13px 12px;
  border-radius: 16px;
  color: rgba(255,255,255,.70);
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
}
.hero-kpi-board b { color: var(--green-3); font-size: .85rem; }

.image-frame { background: rgba(255,255,255,.78); }
.image-frame .feature-image { object-fit: contain; background: linear-gradient(135deg, #f7fbf3, #fff); }
.platform-visual {
  position: relative;
  min-height: 590px;
  perspective: 1200px;
}
.platform-photo {
  position: absolute;
  inset: 28px 22px 20px 0;
  border-radius: 42px;
  padding: 16px;
  background: linear-gradient(140deg, rgba(255,255,255,.82), rgba(244,249,240,.62));
  box-shadow: var(--shadow);
}
.platform-photo img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  filter: saturate(.98) contrast(1.03);
}
.platform-photo-caption {
  position: absolute;
  z-index: 4;
  left: 34px;
  right: 34px;
  bottom: 34px;
  padding: 18px 20px;
  border-radius: 22px;
  color: #fff;
  background: rgba(7,19,39,.74);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 55px rgba(0,0,0,.18);
  backdrop-filter: blur(18px);
}
.platform-photo-caption strong { display: block; font-size: 1.08rem; letter-spacing: -.02em; }
.platform-photo-caption span { display: block; margin-top: 5px; color: rgba(255,255,255,.70); font-size: .92rem; }
.platform-node {
  position: absolute;
  z-index: 5;
  width: 178px;
  padding: 14px 15px;
  border-radius: 20px;
  background: rgba(7,19,39,.72);
  color: #fff;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 22px 54px rgba(7,19,39,.20);
  backdrop-filter: blur(16px);
  transition: transform .34s cubic-bezier(.2,.8,.2,1), box-shadow .34s ease, border-color .34s ease, background .34s ease;
}
.platform-node span { display: block; color: var(--green-3); font-weight: 600; margin-bottom: 6px; }
.platform-node b { font-size: .88rem; line-height: 1.22; }
.platform-node:hover { transform: translateY(-7px) scale(1.015); border-color: rgba(135,189,105,.34); box-shadow: 0 30px 70px rgba(7,19,39,.26); }
.node-docs { top: 0; left: 26px; }
.node-sources { top: 54px; right: 0; }
.node-experts { left: 0; bottom: 82px; }
.node-context { right: 22px; bottom: 0; }

.section-head { align-items: start; }
.section-head p { line-height: 1.72; color: var(--muted); }
.scenario-card p + p { margin-top: 12px; }
.legacy-consent {
  margin-top: 14px;
  font-size: .9rem;
  color: var(--muted);
}
.interface-stage {
  background:
    radial-gradient(circle at 82% 10%, rgba(135,189,105,.14), transparent 19rem),
    linear-gradient(135deg, rgba(255,255,255,.76), rgba(242,247,241,.72));
}
.interface-panel img { object-fit: contain; background: #fff; }

/* keep motion meaningful and controlled */
.platform-photo, .platform-node, .hero-kpi-board span, .browser-toolbar, .brand {
  will-change: transform;
}
.platform-photo { transition: transform .42s cubic-bezier(.2,.8,.2,1), box-shadow .42s ease; }
.platform-photo:hover { transform: rotateX(1deg) rotateY(-1deg) translateY(-6px); box-shadow: 0 38px 100px rgba(7,19,39,.18); }
.hero-kpi-board span { transition: transform .28s cubic-bezier(.2,.8,.2,1), background .28s ease, border-color .28s ease; }
.hero-kpi-board span:hover { transform: translateY(-4px); background: rgba(255,255,255,.11); border-color: rgba(135,189,105,.28); }

@media (max-width: 1300px) {
  .site-header .container { width: min(1240px, calc(100% - 32px)); }
  .brand { flex-basis: 166px; width: 166px; min-width: 166px; }
  .nav { gap: 9px; font-size: .77rem; }
  .phone { padding: 0 10px; font-size: .78rem; }
  .header-actions .btn-small { padding: 0 11px; font-size: .76rem; }
}
@media (max-width: 1180px) {
  .header-inner { justify-content: space-between; }
  .nav-toggle { display: block; flex: 0 0 auto; order: 3; }
  .nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    padding: 18px;
    border-radius: 24px;
    background: rgba(5,13,28,.96);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    color: rgba(255,255,255,.82);
    font-size: .98rem;
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 10px; }
  .header-actions { margin-left: auto; }
  .header-actions .btn-small { display: none; }
  .hero-grid, .split, .split-reverse, .problem-grid, .contact-grid, .investors-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .site-header { top: 10px; }
  .site-header .container { width: min(100% - 24px, 1400px); }
  .header-inner { min-height: 62px; border-radius: 24px; padding: 8px 9px; }
  .brand { width: 154px; min-width: 154px; flex-basis: 154px; height: 45px; padding: 4px 10px; border-radius: 19px; }
  .phone { display: none; }
  .hero { padding-top: 106px; }
  .hero-bg-photo { width: 118vw; height: 360px; right: -48vw; top: 100px; opacity: .10; }
  .hero-cut-one, .hero-cut-two, .hero-cut-three { display: none; }
  .hero-mesh { width: 120vw; height: 90vw; right: -35vw; top: 110px; }
  .hero-kpi-board { grid-template-columns: repeat(2, minmax(0, 1fr)); left: 16px; right: 16px; bottom: 16px; }
  .dashboard-layer { min-height: 520px; }
  .flow-rail { margin-top: 24px; }
  .platform-visual { min-height: 560px; }
  .platform-photo { inset: 52px 0 54px 0; border-radius: 30px; padding: 10px; }
  .platform-photo img { border-radius: 22px; }
  .platform-photo-caption { left: 20px; right: 20px; bottom: 20px; padding: 14px; }
  .platform-node { width: calc(50% - 16px); padding: 12px; border-radius: 17px; }
  .node-docs { left: 0; top: 0; }
  .node-sources { right: 0; top: 16px; }
  .node-experts { left: 0; bottom: 0; }
  .node-context { right: 0; bottom: 18px; }
}
@media (max-width: 430px) {
  .brand { width: 140px; min-width: 140px; flex-basis: 140px; }
  .platform-node { font-size: .84rem; }
  .hero-kpi-board span { padding: 10px; }
}

/* v10 — refined visuals per screenshot feedback */
.hero-copy h1 {
  color: transparent;
  background: linear-gradient(92deg, #ffffff 0%, #f4f8ff 30%, #d6ec98 68%, #8ac85f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 20px 44px rgba(0,0,0,.20));
}
.hero-field::before {
  background:
    linear-gradient(90deg, rgba(255,255,255,.032) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.032) 1px, transparent 1px),
    radial-gradient(circle at 72% 14%, rgba(135,189,105,.20), transparent 24rem),
    radial-gradient(circle at 88% 28%, rgba(114,158,225,.16), transparent 16rem),
    radial-gradient(circle at 10% 82%, rgba(135,189,105,.11), transparent 24rem),
    linear-gradient(140deg, #061021 0%, #0a1d37 46%, #071327 100%);
  background-size: 92px 92px, 92px 92px, auto, auto, auto, auto;
}
.hero-mesh,
.hero-cut { display: none; }
.hero-bg-photo {
  opacity: .11;
  right: -9vw;
  top: 92px;
  width: min(700px, 52vw);
  height: min(590px, 58vh);
  border-radius: 42px;
}
.hero-icon-cluster {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-float-icon {
  position: absolute;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 22px;
  color: rgba(255,255,255,.80);
  background: linear-gradient(160deg, rgba(255,255,255,.14), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 24px 60px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
  animation: heroIconFloat 10s ease-in-out infinite;
}
.hero-float-icon::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(160deg, rgba(255,255,255,.12), transparent 62%);
}
.hero-float-icon::after {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(135,189,105,.22), transparent 72%);
  animation: heroPulse 4.8s ease-in-out infinite;
}
.hero-float-icon svg {
  position: relative;
  z-index: 2;
  width: 28px;
  height: 28px;
}
.icon-insight { top: 10%; right: 5%; animation-delay: -1s; }
.icon-network { top: 28%; right: 3%; animation-delay: -3s; }
.icon-layers { top: 62%; right: 6%; animation-delay: -5s; }
.icon-growth { bottom: 12%; right: 10%; animation-delay: -7s; }

.product-chip,
.service-inline-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.product-chip {
  margin: 0 0 20px;
  padding: 10px 16px 10px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,255,255,.82), rgba(244,249,241,.72));
  border: 1px solid rgba(7,19,39,.08);
  box-shadow: 0 18px 40px rgba(7,19,39,.08);
}
.product-chip-centered {
  margin: 0 auto 18px;
  justify-content: center;
}
.product-chip img,
.service-inline-mark img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 26px rgba(7,19,39,.10);
}
.product-chip span,
.service-inline-mark span {
  color: var(--navy);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: -.015em;
}

.platform-visual {
  min-height: 620px;
}
.platform-photo {
  inset: 54px 46px 52px 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background:
    radial-gradient(circle at 16% 8%, rgba(255,255,255,.86), transparent 24%),
    linear-gradient(145deg, rgba(255,255,255,.95), rgba(247,250,245,.90));
}
.platform-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 12px;
  border-radius: 28px;
  background: linear-gradient(180deg, #fff, #f6f8fb);
}
.platform-photo-caption {
  display: none;
}
.platform-node {
  width: 164px;
}
.node-docs { top: 0; left: 18px; }
.node-sources { top: 28px; right: 2px; }
.node-experts { left: 8px; bottom: 38px; }
.node-context { right: 10px; bottom: 14px; }

.contact-copy .lead {
  margin-top: 24px;
  padding-left: 8px;
  max-width: 26ch;
}
.service-inline-mark {
  margin-top: 28px;
  padding-left: 8px;
}

.investors-grid .section-copy {
  padding: 8px 0 12px;
}
.investors-grid .section-copy .btn {
  margin-top: 30px;
}

@keyframes heroIconFloat {
  0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); }
  25% { transform: translateY(-10px) translateX(4px) rotate(-2deg); }
  50% { transform: translateY(-4px) translateX(-6px) rotate(1deg); }
  75% { transform: translateY(-14px) translateX(3px) rotate(2deg); }
}
@keyframes heroPulse {
  0%, 100% { opacity: .25; transform: scale(.9); }
  50% { opacity: .65; transform: scale(1.18); }
}

@media (max-width: 1180px) {
  .hero-float-icon { width: 60px; height: 60px; }
  .icon-insight { right: 4%; }
  .icon-network { right: 1%; }
  .icon-layers { right: 4%; }
  .icon-growth { right: 8%; }
}
@media (max-width: 760px) {
  .hero-bg-photo { width: 120vw; height: 330px; right: -52vw; opacity: .08; }
  .hero-float-icon { width: 52px; height: 52px; border-radius: 18px; }
  .hero-float-icon svg { width: 22px; height: 22px; }
  .icon-insight { top: 14%; right: 6%; }
  .icon-network { top: 36%; right: 3%; }
  .icon-layers { top: auto; bottom: 30%; right: 6%; }
  .icon-growth { bottom: 12%; right: 12%; }
  .product-chip {
    padding: 8px 12px 8px 10px;
    margin-bottom: 16px;
  }
  .product-chip span,
  .service-inline-mark span { font-size: .86rem; }
  .platform-visual { min-height: 560px; }
  .platform-photo { inset: 56px 0 56px 0; padding: 12px; }
  .platform-photo img { padding: 8px; }
  .platform-node { width: calc(50% - 14px); }
  .contact-copy .lead,
  .service-inline-mark { padding-left: 0; }
}

/* v11 — final tuning from image_5 / image_6 / image_7 */

h1, h2, h3, .btn, .phone, .nav, .eyebrow, .tab, label,
.hero-proof span, .signal-strip span, .timeline span,
.product-chip span, .service-inline-mark span,
.investor-cards h3, .scenario-card h3, .effect-card h3 {
  font-weight: 600 !important;
}

.hero-field {
  isolation: isolate;
}
.hero-field::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 86% 24%, rgba(255,255,255,.06), transparent 18%),
    radial-gradient(circle at 92% 68%, rgba(135,189,105,.10), transparent 16%),
    linear-gradient(180deg, transparent 0%, rgba(7,19,39,.12) 100%);
  z-index: 0;
}
.hero-structure-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-float-icon,
.glass-ribbon,
.glass-orbit,
.glass-node {
  position: absolute;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 24px 60px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.glass-ribbon {
  background: linear-gradient(135deg, rgba(255,255,255,.11), rgba(255,255,255,.025));
  border-radius: 999px;
  opacity: .8;
  animation: ribbonDrift 18s ease-in-out infinite;
}
.ribbon-a {
  top: 18%; left: -10%; width: 26vw; min-width: 240px; height: 78px;
  transform: rotate(-10deg); animation-delay: -1s;
}
.ribbon-b {
  top: 16%; right: 8%; width: 40vw; min-width: 420px; height: 84px;
  transform: rotate(-9deg); animation-delay: -8s;
}
.ribbon-c {
  bottom: 10%; right: 18%; width: 36vw; min-width: 360px; height: 82px;
  transform: rotate(-9deg); animation-delay: -5s;
}
.ribbon-d {
  bottom: 6%; left: 14%; width: 20vw; min-width: 220px; height: 66px;
  transform: rotate(10deg); opacity: .44; animation-delay: -11s;
}
.glass-orbit {
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,.025), rgba(255,255,255,.01));
  opacity: .58;
  animation: slowSpin 30s linear infinite;
}
.glass-orbit::before,
.glass-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.glass-orbit::before {
  inset: 9%;
  border: 1px dashed rgba(255,255,255,.14);
}
.glass-orbit::after {
  inset: 23%;
  border: 1px solid rgba(255,255,255,.08);
}
.orbit-a {
  right: -8vw; top: 6%; width: 34vw; height: 34vw; min-width: 320px; min-height: 320px;
}
.orbit-b {
  right: -4vw; bottom: 0; width: 24vw; height: 24vw; min-width: 220px; min-height: 220px;
  animation-direction: reverse;
}
.glass-node {
  width: 11px; height: 11px; border-radius: 50%;
  background: rgba(255,255,255,.12);
  box-shadow: 0 0 0 10px rgba(255,255,255,.015), 0 0 28px rgba(135,189,105,.18);
  animation: nodePulse 6s ease-in-out infinite;
}
.node-a { top: 18%; right: 18%; }
.node-b { top: 54%; right: 29%; animation-delay: -2s; }
.node-c { bottom: 20%; right: 14%; animation-delay: -4s; }
.hero-icon-cluster { z-index: 1; }
.hero-float-icon {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  color: rgba(255,255,255,.72);
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,.08), rgba(255,255,255,.018));
  overflow: hidden;
  animation: heroIconFloat 12s ease-in-out infinite;
}
.hero-float-icon::before {
  content: "";
  position: absolute;
  inset: 16%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
}
.hero-float-icon::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(135,189,105,.10), transparent 72%);
}
.hero-float-icon svg { width: 30px; height: 30px; z-index: 2; }
.icon-insight { top: 14%; right: 8%; }
.icon-network { top: 34%; right: 3%; }
.icon-layers { bottom: 14%; right: 8%; }
.icon-growth { bottom: 34%; right: 18%; }
.hero-grid { position: relative; z-index: 1; }

.platform .split {
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(40px, 6vw, 76px);
  align-items: center;
}
.platform-visual {
  min-height: 760px;
  display: flex;
  align-items: center;
}
.platform-photo {
  inset: 0;
  width: 100%;
  min-height: 760px;
  padding: 34px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 18% 14%, rgba(135,189,105,.12), transparent 22%),
    radial-gradient(circle at 86% 16%, rgba(11,36,68,.08), transparent 18%),
    linear-gradient(155deg, rgba(255,255,255,.96), rgba(246,250,247,.92));
  border: 1px solid rgba(7,19,39,.06);
  box-shadow: 0 36px 100px rgba(7,19,39,.12);
}
.platform-photo::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.55);
  pointer-events: none;
}
.platform-photo img {
  width: 100%;
  height: 100%;
  max-height: 690px;
  object-fit: contain;
  object-position: center;
  padding: 0;
  border-radius: 26px;
  background: transparent;
  filter: drop-shadow(0 26px 48px rgba(7,19,39,.12));
}
.platform-photo-caption,
.platform-node {
  display: none !important;
}

.pilot .section-head {
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
  justify-items: start;
}
.pilot-cta {
  margin-top: 4px;
}

@keyframes ribbonDrift {
  0%, 100% { transform: translate3d(0,0,0) rotate(-9deg); }
  50% { transform: translate3d(16px,-12px,0) rotate(-7deg); }
}
@keyframes nodePulse {
  0%,100% { transform: scale(1); opacity: .6; }
  50% { transform: scale(1.4); opacity: 1; }
}

@media (max-width: 1180px) {
  .platform .split { grid-template-columns: 1fr; }
  .platform-visual,
  .platform-photo { min-height: 620px; }
  .platform-photo img { max-height: 560px; }
}
@media (max-width: 760px) {
  .ribbon-a { width: 56vw; height: 54px; left: -18%; top: 20%; }
  .ribbon-b { width: 70vw; min-width: 0; height: 58px; right: -8%; top: 18%; }
  .ribbon-c { width: 66vw; min-width: 0; height: 56px; right: 2%; bottom: 14%; }
  .ribbon-d { width: 46vw; min-width: 0; height: 44px; left: 0; bottom: 9%; }
  .orbit-a { width: 64vw; height: 64vw; min-width: 0; min-height: 0; right: -22vw; top: 12%; }
  .orbit-b { width: 42vw; height: 42vw; min-width: 0; min-height: 0; right: -8vw; bottom: 8%; }
  .hero-float-icon { width: 62px; height: 62px; }
  .hero-float-icon svg { width: 24px; height: 24px; }
  .platform-visual,
  .platform-photo { min-height: 420px; }
  .platform-photo { padding: 18px; border-radius: 28px; }
  .platform-photo::before { inset: 10px; border-radius: 22px; }
  .platform-photo img { max-height: 380px; border-radius: 18px; }
}
.glass-ribbon { --r-angle: -9deg; transform: rotate(var(--r-angle)); }
.ribbon-a { --r-angle: -10deg; }
.ribbon-b { --r-angle: -9deg; }
.ribbon-c { --r-angle: -9deg; }
.ribbon-d { --r-angle: 10deg; }
@keyframes ribbonDrift {
  0%, 100% { transform: translate3d(0,0,0) rotate(var(--r-angle)); }
  50% { transform: translate3d(16px,-12px,0) rotate(calc(var(--r-angle) + 2deg)); }
}

/* v12 — orbital hero background rebuilt from image_8 */
.hero-bg-photo,
.hero-mesh,
.hero-cut,
.orb,
.grid-glow,
.hero-structure-layer,
.hero-icon-cluster {
  display: none !important;
}

.hero-field::before {
  background:
    linear-gradient(90deg, rgba(255,255,255,.032) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.032) 1px, transparent 1px),
    radial-gradient(circle at 74% 18%, rgba(135,189,105,.16), transparent 28rem),
    radial-gradient(circle at 90% 50%, rgba(108,156,220,.14), transparent 18rem),
    radial-gradient(circle at 12% 76%, rgba(120,174,98,.08), transparent 22rem),
    linear-gradient(138deg, #051021 0%, #0a1c36 45%, #07152a 100%);
  background-size: 92px 92px, 92px 92px, auto, auto, auto, auto;
}
.hero-field::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 24%, rgba(255,255,255,.04), transparent 10%),
    linear-gradient(90deg, rgba(6,16,33,.18) 0%, transparent 16%, transparent 84%, rgba(6,16,33,.24) 100%);
  pointer-events: none;
}
.hero-grid { z-index: 2; }

.hero-orbital-system {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero-orbital-system .orbital-line,
.hero-orbital-system .orbital-pill,
.hero-orbital-system .orbital-ring,
.hero-orbital-system .icon-shell {
  position: absolute;
}
.hero-orbital-system .orbital-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.10), transparent);
  filter: drop-shadow(0 0 8px rgba(255,255,255,.08));
  transform-origin: left center;
}
.hero-orbital-system .orbital-line-a {
  top: 31%;
  left: 36%;
  width: 60%;
  transform: rotate(-8deg);
  opacity: .55;
}
.hero-orbital-system .orbital-line-b {
  bottom: 18%;
  left: 28%;
  width: 48%;
  transform: rotate(-16deg);
  opacity: .4;
}
.hero-orbital-system .orbital-pill {
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.015));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 24px 60px rgba(0,0,0,.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-orbital-system .orbital-pill-a {
  left: -4%;
  top: 45%;
  width: 18%;
  min-width: 140px;
  height: 72px;
  transform: rotate(0deg);
  opacity: .46;
}
.hero-orbital-system .orbital-pill-b {
  right: 6%;
  top: 17%;
  width: 28%;
  min-width: 280px;
  height: 88px;
  transform: rotate(-8deg);
  opacity: .34;
}
.hero-orbital-system .orbital-ring {
  border-radius: 50%;
  opacity: .9;
}
.hero-orbital-system .ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: inset 0 0 18px rgba(255,255,255,.02), 0 0 40px rgba(124,175,242,.06);
}
.hero-orbital-system .ring.layer-2 { inset: 7.5%; }
.hero-orbital-system .ring.layer-3 { inset: 15%; }
.hero-orbital-system .orbit-dash {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,.12);
}
.hero-orbital-system .orbit-arrow {
  position: absolute;
  width: 54px;
  height: 54px;
}
.hero-orbital-system .orbit-arrow::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 4px;
  width: 2px;
  height: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.45));
  border-radius: 999px;
}
.hero-orbital-system .orbit-arrow::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: 3px;
  width: 16px;
  height: 16px;
  border-top: 2px solid rgba(255,255,255,.48);
  border-right: 2px solid rgba(255,255,255,.48);
  transform: rotate(-45deg);
}
.hero-orbital-system .icon-shell {
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.30);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
  background: radial-gradient(circle at 36% 32%, rgba(255,255,255,.06), rgba(255,255,255,.018));
  box-shadow: inset 0 0 16px rgba(255,255,255,.025), 0 18px 40px rgba(0,0,0,.12);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  animation: orbitalFloat 8s ease-in-out infinite;
}
.hero-orbital-system .icon-shell svg {
  width: 34px;
  height: 34px;
}

.hero-orbital-system .ring-main {
  right: -9%;
  top: 10%;
  width: 46vw;
  height: 46vw;
  min-width: 470px;
  min-height: 470px;
  animation: slowSpin 50s linear infinite;
}
.hero-orbital-system .ring-main .layer-1 { border-color: rgba(255,255,255,.05); }
.hero-orbital-system .ring-main .layer-2 { border-color: rgba(124,175,242,.12); }
.hero-orbital-system .ring-main .layer-3 { border-color: rgba(255,255,255,.07); box-shadow: 0 0 26px rgba(77,142,219,.14); }
.hero-orbital-system .ring-main .orbit-dash-a {
  inset: 8%;
  border-color: rgba(255,255,255,.10);
  clip-path: inset(0 0 0 43%);
}
.hero-orbital-system .ring-main .orbit-dash-b {
  inset: 22%;
  border-color: rgba(255,255,255,.08);
  clip-path: inset(38% 46% 0 0);
}
.hero-orbital-system .ring-main .arrow-main {
  left: 33%;
  bottom: 13%;
  transform: rotate(0deg);
  opacity: .82;
}

.hero-orbital-system .ring-top {
  right: 3%;
  top: 6%;
  width: 110px;
  height: 110px;
}
.hero-orbital-system .ring-top .layer-1 { border-color: rgba(255,255,255,.06); }
.hero-orbital-system .ring-top .layer-2 { inset: 10%; border-color: rgba(255,255,255,.10); }
.hero-orbital-system .ring-top .icon-shell { inset: 17px; animation-delay: -1s; }

.hero-orbital-system .ring-bottom {
  right: 14%;
  bottom: 12%;
  width: 126px;
  height: 126px;
}
.hero-orbital-system .ring-bottom .layer-1 { border-color: rgba(255,255,255,.07); }
.hero-orbital-system .ring-bottom .layer-2 { inset: 10%; border-color: rgba(255,255,255,.10); }
.hero-orbital-system .ring-bottom .icon-shell { inset: 20px; animation-delay: -3s; }

.hero-orbital-system .ring-left {
  left: 7%;
  top: 17%;
  width: 92px;
  height: 92px;
  opacity: .42;
}
.hero-orbital-system .ring-left .layer-1 { border-color: rgba(255,255,255,.06); }
.hero-orbital-system .ring-left .layer-2 { inset: 12%; border-color: rgba(255,255,255,.09); }
.hero-orbital-system .ring-left .icon-shell { inset: 16px; animation-delay: -2s; }

@keyframes orbitalFloat {
  0%,100% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(0,-8px,0); }
}

@media (max-width: 1024px) {
  .hero-orbital-system .ring-main {
    right: -22%;
    top: 12%;
    width: 64vw;
    height: 64vw;
    min-width: 390px;
    min-height: 390px;
  }
  .hero-orbital-system .orbital-pill-b { right: -4%; width: 34%; min-width: 220px; }
}

@media (max-width: 760px) {
  .hero-orbital-system .ring-left { display: none; }
  .hero-orbital-system .ring-main {
    right: -42%;
    top: 14%;
    width: 92vw;
    height: 92vw;
    min-width: 0;
    min-height: 0;
  }
  .hero-orbital-system .ring-top {
    right: 6%;
    top: 10%;
    width: 84px;
    height: 84px;
  }
  .hero-orbital-system .ring-bottom {
    right: 12%;
    bottom: 16%;
    width: 96px;
    height: 96px;
  }
  .hero-orbital-system .ring-top .icon-shell svg,
  .hero-orbital-system .ring-bottom .icon-shell svg { width: 26px; height: 26px; }
  .hero-orbital-system .orbital-pill-a { width: 30%; min-width: 100px; height: 54px; left: -8%; }
  .hero-orbital-system .orbital-pill-b { width: 46%; min-width: 0; height: 56px; right: -12%; }
  .hero-orbital-system .orbital-line-a { top: 36%; left: 28%; width: 78%; }
  .hero-orbital-system .orbital-line-b { bottom: 22%; left: 22%; width: 60%; }
}

/* v14 — replace hero background with a single reference-matched SVG background only */
.hero-bg-photo,
.hero-mesh,
.hero-cut,
.orb,
.grid-glow,
.hero-structure-layer,
.hero-icon-cluster,
.hero-orbital-system {
  display: none !important;
}

.hero-field::before {
  background: url('/assets/hero-reference-background.svg') center center / cover no-repeat !important;
}

.hero-field::after {
  content: none !important;
}


/* v16 — mobile-only polish. Desktop/wide layout is intentionally untouched. */
@media (max-width: 1180px) {
  .hero-copy {
    max-width: 100%;
    overflow: visible;
    padding-inline-end: clamp(12px, 3vw, 34px);
  }

  .hero-copy h1 {
    display: block;
    max-width: 100%;
    width: max-content;
    padding-inline-end: .12em;
    margin-inline-end: -.12em;
    overflow: visible;
    font-size: clamp(4.4rem, 12vw, 8.2rem);
    line-height: .94;
    letter-spacing: -.06em;
  }

  .hero-grid {
    align-items: start;
  }

  .nav {
    max-height: min(72vh, 560px);
    overflow-y: auto;
  }
}

@media (max-width: 900px) {
  :root {
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
  }

  html, body {
    max-width: 100%;
    overflow-x: hidden;
  }

  body::before {
    background-size: 48px 48px;
    opacity: .75;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .section,
  .section-soft {
    padding: 76px 0;
  }

  .site-header {
    top: 10px;
  }

  .site-header .container {
    width: min(100% - 20px, 1400px);
  }

  .header-inner {
    display: flex;
    min-height: 60px;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 22px;
  }

  .brand {
    width: 140px;
    min-width: 140px;
    flex-basis: 140px;
    height: 44px;
    padding: 3px 8px;
  }

  .brand-mark.company-logo {
    width: 132px;
    height: 40px;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border-radius: 16px;
  }

  .nav-toggle span {
    margin: 3px auto;
  }

  .nav {
    left: 10px;
    right: 10px;
    top: calc(100% + 8px);
    padding: 14px;
    border-radius: 22px;
    gap: 2px;
    background: rgba(5,13,28,.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .nav a {
    padding: 13px 12px;
    border-radius: 14px;
    background: rgba(255,255,255,.035);
  }

  .nav a::after {
    display: none;
  }

  .header-actions {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 106px 0 64px;
  }

  .hero-field::before {
    background-position: center top !important;
    background-size: auto 100% !important;
  }

  .hero-grid,
  .split,
  .split-reverse,
  .problem-grid,
  .contact-grid,
  .investors-grid {
    grid-template-columns: 1fr !important;
    gap: 38px;
  }

  .hero-copy {
    padding-inline-end: 0;
  }

  .hero-copy h1 {
    width: 100%;
    max-width: 100%;
    padding-inline-end: .08em;
    margin-inline-end: 0;
    font-size: clamp(4.4rem, 17vw, 7.3rem);
    line-height: .92;
    letter-spacing: -.065em;
  }

  .hero-lead {
    margin-top: 18px;
    font-size: clamp(1.1rem, 4.6vw, 1.45rem);
    line-height: 1.26;
  }

  .hero-copy > p:not(.hero-lead) {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.66;
  }

  .hero-actions,
  .button-row {
    width: 100%;
    gap: 10px;
  }

  .hero-actions .btn,
  .button-row .btn {
    flex: 1 1 100%;
    width: 100%;
    min-height: 54px;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-proof span {
    min-width: 0;
    padding: 12px 10px;
    text-align: center;
  }

  .hero-visual {
    width: 100%;
    perspective: none;
  }

  .browser-frame {
    min-height: 0;
    padding: 10px;
    border-radius: 26px;
    transform: none !important;
  }

  .browser-toolbar {
    height: 42px;
    grid-template-columns: auto 1fr;
    gap: 10px;
    border-radius: 16px;
  }

  .address {
    font-size: .74rem;
  }

  .toolbar-pill {
    display: none;
  }

  .dashboard-layer {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 14px;
    gap: 12px;
    border-radius: 22px;
  }

  .dashboard-layer::before {
    background-size: 44px 44px;
  }

  .dashboard-copy,
  .dashboard-screen,
  .floating-card,
  .hero-kpi-board {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    z-index: 2;
    width: 100%;
    transform: none;
  }

  .dashboard-copy {
    padding: 16px;
  }

  .dashboard-copy img {
    width: 44px;
    height: 44px;
    margin-bottom: 10px;
  }

  .dashboard-copy strong {
    font-size: 1.12rem;
  }

  .dashboard-screen {
    border-radius: 18px;
    margin-top: 0;
  }

  .floating-card {
    padding: 13px 14px;
    font-size: .88rem;
    animation: none;
  }

  .card-c {
    display: block;
  }

  .hero-kpi-board {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 2px;
  }

  .hero-kpi-board span {
    padding: 11px 10px;
  }

  .flow-rail {
    margin-top: 18px;
    flex-wrap: wrap;
    font-size: .76rem;
  }

  .flow-rail i {
    width: 26px;
  }

  .section-head {
    grid-template-columns: 1fr !important;
    gap: 18px;
    margin-bottom: 28px;
  }

  .section-head p br,
  .section-copy h2 br {
    display: none;
  }

  h2 {
    font-size: clamp(2.15rem, 9.7vw, 3.7rem);
    line-height: 1;
    letter-spacing: -.052em;
  }

  h3 {
    line-height: 1.12;
  }

  p {
    line-height: 1.68;
  }

  .visual-stack {
    min-height: 390px;
    order: 2;
  }

  .intro .section-copy {
    order: 1;
  }

  .image-frame {
    inset: 22px 0 0 0;
    padding: 10px;
    border-radius: 26px;
  }

  .image-frame img {
    border-radius: 18px;
  }

  .floating-note,
  .mini-metric {
    padding: 11px 13px;
    border-radius: 16px;
    font-size: .86rem;
  }

  .note-green { left: 10px; top: 0; }
  .note-blue { right: 10px; top: 38px; }
  .metric-one { left: 12px; bottom: 18px; }
  .metric-two { right: 12px; bottom: 36px; }

  .problem-card,
  .scenario-card,
  .effect-card,
  .application-form {
    padding: 24px;
    border-radius: 24px;
  }

  .signal-strip {
    gap: 8px;
  }

  .signal-strip span {
    flex: 1 1 calc(50% - 8px);
    text-align: center;
    padding: 11px 10px;
  }

  .platform .split {
    grid-template-columns: 1fr !important;
  }

  .platform-visual,
  .platform-photo {
    min-height: 440px;
  }

  .platform-photo {
    width: 100%;
    padding: 18px;
    border-radius: 28px;
  }

  .platform-photo img {
    max-height: 390px;
    border-radius: 18px;
  }

  .interface-tabs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 22px 0 20px;
  }

  .tab {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    padding: 0 14px;
  }

  .interface-stage {
    min-height: 0;
    padding: 12px;
    border-radius: 26px;
  }

  .stage-sidebar {
    display: none;
  }

  .interface-panel img {
    width: 100%;
    max-height: 520px;
    object-fit: contain;
    border-radius: 18px;
  }

  .scenario-grid,
  .effects-grid,
  .timeline {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .timeline::before {
    left: 28px;
    right: auto;
    top: 24px;
    bottom: 24px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(74,179,30,.34), transparent);
  }

  .timeline article {
    padding: 22px;
    border-radius: 24px;
  }

  .timeline span {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    margin-bottom: 16px;
  }

  .effect-bubbles {
    display: none;
  }

  .contact-copy .lead {
    margin-top: 18px;
    max-width: 100%;
    padding-left: 0;
  }

  .service-inline-mark {
    margin-top: 20px;
    padding-left: 0;
  }

  .application-form {
    box-shadow: 0 24px 70px rgba(7,19,39,.11);
  }

  .two-fields {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  input,
  textarea {
    min-height: 54px;
    padding: 0 16px;
    font-size: 16px;
  }

  textarea {
    padding-top: 14px;
  }

  .checkbox-row {
    gap: 10px;
    font-size: .9rem;
  }

  .legal-links {
    gap: 8px;
  }

  .investors-grid {
    padding: 28px;
    border-radius: 28px;
  }

  .investor-cards {
    gap: 12px;
  }

  .investor-cards article {
    padding: 20px;
    border-radius: 22px;
  }

  .site-footer {
    padding: 54px 0 34px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    padding: 16px;
    border-radius: 22px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .cookie-actions .btn {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 22px, var(--container));
  }

  .section,
  .section-soft {
    padding: 62px 0;
  }

  .header-inner {
    min-height: 58px;
    border-radius: 20px;
  }

  .brand {
    width: 124px;
    min-width: 124px;
    flex-basis: 124px;
  }

  .brand-mark.company-logo {
    width: 118px;
    height: 36px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .hero {
    padding: 98px 0 52px;
  }

  .hero-copy h1 {
    font-size: clamp(3.55rem, 17.2vw, 5.25rem);
    letter-spacing: -.07em;
    padding-inline-end: .06em;
  }

  .eyebrow {
    gap: 8px;
    margin-bottom: 16px;
    font-size: .7rem;
    letter-spacing: .13em;
  }

  .eyebrow::before {
    width: 26px;
  }

  .hero-lead {
    font-size: 1.08rem;
  }

  .hero-copy > p:not(.hero-lead) {
    font-size: .94rem;
  }

  .btn {
    min-height: 52px;
    padding: 0 18px;
  }

  .hero-proof {
    grid-template-columns: 1fr 1fr;
  }

  .browser-frame {
    padding: 8px;
    border-radius: 22px;
  }

  .dashboard-layer {
    padding: 10px;
    border-radius: 19px;
  }

  .dashboard-copy,
  .floating-card {
    padding: 12px;
    border-radius: 16px;
  }

  .hero-kpi-board {
    grid-template-columns: 1fr 1fr;
  }

  .flow-rail {
    gap: 7px;
  }

  .flow-rail i {
    display: none;
  }

  h2 {
    font-size: clamp(1.95rem, 10vw, 3rem);
  }

  .section-copy .lead {
    font-size: 1rem;
  }

  .visual-stack {
    min-height: 330px;
  }

  .platform-visual,
  .platform-photo {
    min-height: 360px;
  }

  .platform-photo {
    padding: 12px;
  }

  .platform-photo img {
    max-height: 330px;
  }

  .interface-panel img {
    max-height: 430px;
  }

  .scenario-card,
  .effect-card,
  .timeline article,
  .problem-card,
  .application-form {
    padding: 20px;
  }

  .investors-grid {
    padding: 22px;
  }

  .contact-copy h2 {
    font-size: clamp(2.15rem, 12vw, 3.25rem);
  }
}

@media (max-width: 380px) {
  .hero-copy h1 {
    font-size: clamp(3.1rem, 16.2vw, 4rem);
    letter-spacing: -.068em;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .brand {
    width: 112px;
    min-width: 112px;
    flex-basis: 112px;
  }

  .brand-mark.company-logo {
    width: 108px;
  }

  .dashboard-copy img {
    width: 38px;
    height: 38px;
  }

  .interface-panel img {
    max-height: 360px;
  }
}
/* v18 — conversion update: trust, ROI, flow, pilot outcomes */
.hero-trust-line {
  margin-top: 18px;
  color: rgba(255,255,255,.66);
  font-size: .96rem;
  line-height: 1.55;
}
.hero-trust-line strong {
  color: #fff;
  font-weight: 600;
}

.conversion-proof {
  position: relative;
  padding: 84px 0 96px;
  overflow: hidden;
}
.conversion-proof::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(135,189,105,.14), transparent 24rem),
    radial-gradient(circle at 82% 88%, rgba(80,145,219,.13), transparent 28rem);
  pointer-events: none;
}
.proof-kicker {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,.72);
  font-size: .86rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 22px;
}
.kpi-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
}
.kpi-card {
  position: relative;
  min-height: 178px;
  padding: 26px;
  border-radius: 28px;
  background:
    radial-gradient(circle at var(--mx, 40%) var(--my, 20%), rgba(135,189,105,.16), transparent 28%),
    linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.035));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 24px 80px rgba(0,0,0,.20), inset 0 1px 0 rgba(255,255,255,.12);
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .35s ease;
}
.kpi-card::after {
  content: "";
  position: absolute;
  inset: auto 22px 22px 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--green-3), rgba(255,255,255,.08));
  border-radius: 999px;
}
.kpi-card:hover {
  transform: translateY(-6px);
  border-color: rgba(135,189,105,.30);
}
.kpi-card strong {
  display: block;
  color: #fff;
  font-size: clamp(2.35rem, 4.5vw, 4rem);
  line-height: .9;
  letter-spacing: -.055em;
  font-weight: 600;
}
.kpi-card p {
  margin-top: 18px;
  color: rgba(255,255,255,.66);
  line-height: 1.55;
}
.client-trust {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 22px;
  align-items: center;
  padding: 22px;
  border-radius: 32px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.10);
  overflow: hidden;
}
.trust-copy span {
  display: block;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -.025em;
}
.trust-copy p {
  margin-top: 8px;
  color: rgba(255,255,255,.62);
}
.logo-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.logo-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: logoMarquee 24s linear infinite;
}
.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}
.logo-card {
  width: 210px;
  min-height: 114px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 14px;
  border-radius: 24px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.42);
  box-shadow: 0 22px 60px rgba(0,0,0,.18);
  transition: transform .3s ease, box-shadow .3s ease;
}
.logo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 74px rgba(0,0,0,.24);
}
.logo-card img {
  max-width: 160px;
  max-height: 62px;
  object-fit: contain;
}
.logo-card span {
  color: rgba(7,19,39,.58);
  font-size: .74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
}
@keyframes logoMarquee {
  to { transform: translateX(calc(-50% - 7px)); }
}

.work-flow {
  position: relative;
  overflow: hidden;
}
.work-flow::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(135,189,105,.10), transparent 19rem),
    radial-gradient(circle at 90% 68%, rgba(7,19,39,.06), transparent 24rem);
  pointer-events: none;
}
.flow-diagram {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0,1fr));
  gap: 12px;
}
.flow-diagram::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 42px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(74,179,30,.38), rgba(135,189,105,.14), transparent);
}
.flow-step {
  position: relative;
  z-index: 1;
  min-height: 245px;
  padding: 22px;
  border-radius: 26px;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 10%), rgba(135,189,105,.16), transparent 32%),
    rgba(255,255,255,.74);
  border: 1px solid rgba(7,19,39,.08);
  box-shadow: 0 24px 70px rgba(7,19,39,.08);
  backdrop-filter: blur(18px);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), background .35s ease, border-color .35s ease;
}
.flow-step:hover,
.flow-step.active {
  transform: translateY(-7px);
  background: rgba(255,255,255,.88);
  border-color: rgba(74,179,30,.24);
}
.flow-step span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--green-3), var(--green));
  font-weight: 600;
  box-shadow: 0 14px 35px rgba(74,179,30,.28);
}
.flow-step h3 {
  margin-top: 18px;
  color: var(--navy);
  font-size: 1.08rem;
}
.flow-step p {
  margin-top: 10px;
  color: rgba(7,19,39,.62);
  line-height: 1.55;
}

.industries {
  overflow: hidden;
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}
.industry-card {
  position: relative;
  min-height: 290px;
  padding: 26px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 18% 12%, rgba(135,189,105,.12), transparent 24%),
    rgba(255,255,255,.72);
  border: 1px solid rgba(7,19,39,.08);
  box-shadow: 0 24px 74px rgba(7,19,39,.08);
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
}
.industry-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 32px 90px rgba(7,19,39,.12);
}
.industry-card img {
  width: 100%;
  height: 86px;
  object-fit: contain;
  padding: 14px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(7,19,39,.06);
  margin-bottom: 22px;
}
.industry-card h3 {
  color: var(--navy);
  font-size: 1.25rem;
}
.industry-card p {
  margin-top: 12px;
  color: rgba(7,19,39,.62);
}
.industry-card-partner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.industry-card-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 86px;
  padding: 14px;
  margin-bottom: 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(7,19,39,.04), rgba(135,189,105,.16));
  border: 1px solid rgba(7,19,39,.06);
  color: var(--navy);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -.03em;
}
.industry-card-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
}
.industry-card-cta::after {
  content: "→";
  color: var(--green);
  font-size: 1.05em;
  transition: transform .25s ease;
}
.industry-card:hover .industry-card-cta::after {
  transform: translateX(4px);
}
.usecase-matrix {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  margin-bottom: 22px;
}
.usecase-matrix article {
  padding: 24px;
  border-radius: 26px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(7,19,39,.08);
  box-shadow: 0 22px 64px rgba(7,19,39,.07);
}
.usecase-matrix span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .09em;
}
.usecase-matrix .pain { color: #8a2f2b; background: rgba(255,110,87,.12); }
.usecase-matrix .help { color: #0f467a; background: rgba(77,151,238,.12); }
.usecase-matrix .result { color: #1f6d2c; background: rgba(74,179,30,.12); }
.usecase-matrix h3 { color: var(--navy); font-size: 1.12rem; }
.usecase-matrix p { margin-top: 10px; color: rgba(7,19,39,.62); }

.pilot-results {
  overflow: hidden;
}
.pilot-result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}
.result-card {
  min-height: 235px;
  padding: 26px;
  border-radius: 30px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(7,19,39,.08);
  box-shadow: 0 24px 74px rgba(7,19,39,.08);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
}
.result-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 90px rgba(7,19,39,.12);
}
.result-card strong {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 17px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--green-3), var(--green));
  font-weight: 600;
  box-shadow: 0 16px 40px rgba(74,179,30,.24);
}
.result-card h3 {
  margin-top: 18px;
  color: var(--navy);
}
.result-card p {
  margin-top: 10px;
  color: rgba(7,19,39,.62);
}
.result-card-accent {
  color: #fff;
  background:
    radial-gradient(circle at 18% 16%, rgba(135,189,105,.20), transparent 26%),
    linear-gradient(145deg, #071327, #0b2746);
  border-color: rgba(255,255,255,.10);
}
.result-card-accent h3,
.result-card-accent p {
  color: #fff;
}
.result-card-accent p {
  color: rgba(255,255,255,.72);
}

.roi-calculator {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
}
.roi-calculator::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(135,189,105,.16), transparent 22rem),
    radial-gradient(circle at 86% 68%, rgba(95,150,225,.12), transparent 28rem);
}
.roi-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(34px, 6vw, 74px);
  align-items: center;
}
.roi-panel {
  padding: 30px;
  border-radius: 34px;
  background: linear-gradient(140deg, rgba(255,255,255,.15), rgba(255,255,255,.06));
  border-color: rgba(255,255,255,.14);
}
.roi-panel label {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 18px;
  align-items: center;
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
}
.roi-panel input[type="range"] {
  grid-column: 1 / -1;
  width: 100%;
  accent-color: var(--green);
}
.roi-panel output {
  min-width: 86px;
  text-align: right;
  color: var(--green-3);
  font-weight: 600;
}
.roi-result {
  margin: 12px 0 24px;
  padding: 24px;
  border-radius: 26px;
  background: rgba(7,19,39,.48);
  border: 1px solid rgba(255,255,255,.10);
}
.roi-result span {
  color: rgba(255,255,255,.66);
}
.roi-result strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: .95;
  letter-spacing: -.055em;
  font-weight: 600;
}
.roi-result p {
  margin-top: 10px;
  color: rgba(255,255,255,.54);
  font-size: .9rem;
}
.lead-magnets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.lead-magnets span {
  padding: 11px 14px;
  border-radius: 999px;
  color: rgba(255,255,255,.80);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

.demo-modal,
.exit-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
}
.demo-modal[hidden],
.exit-modal[hidden] {
  display: none;
}
.demo-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3,9,20,.70);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.demo-dialog,
.exit-dialog {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: min(86vh, 820px);
  overflow: auto;
  padding: 36px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(242,247,241,.84));
  box-shadow: 0 40px 130px rgba(0,0,0,.35);
}
.exit-dialog {
  width: min(680px, 100%);
}
.demo-dialog h2,
.exit-dialog h2 {
  color: var(--navy);
}
.exit-dialog p {
  margin-top: 14px;
  color: rgba(7,19,39,.66);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: rgba(7,19,39,.08);
  color: var(--navy);
  font-size: 1.6rem;
  cursor: pointer;
}
.demo-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
  margin-top: 26px;
}
.demo-steps article {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(7,19,39,.08);
}
.demo-steps span {
  color: var(--green);
  font-weight: 600;
}
.demo-steps h3 {
  color: var(--navy);
  margin-top: 10px;
}
.demo-steps p {
  margin-top: 8px;
  color: rgba(7,19,39,.62);
}
.demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.sticky-conversion-cta {
  position: fixed;
  z-index: 80;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%) translateY(120%);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: min(620px, calc(100% - 28px));
  padding: 10px 12px 10px 18px;
  border-radius: 999px;
  color: #fff;
  background: rgba(5,13,28,.86);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
  backdrop-filter: blur(18px);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.sticky-conversion-cta.is-visible {
  transform: translateX(-50%) translateY(0);
}
.sticky-conversion-cta span {
  flex: 1;
  color: rgba(255,255,255,.78);
}
.chat-bubble {
  position: fixed;
  z-index: 79;
  right: 20px;
  bottom: 20px;
  display: grid;
  grid-template-columns: 36px auto;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 9px 14px 9px 9px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  color: #fff;
  background: rgba(5,13,28,.82);
  box-shadow: 0 24px 74px rgba(0,0,0,.24);
  backdrop-filter: blur(18px);
  cursor: pointer;
}
.chat-bubble span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--navy);
  background: linear-gradient(135deg, var(--green-3), var(--green));
}
.chat-bubble strong {
  font-weight: 600;
}

@media (max-width: 1180px) {
  .kpi-strip,
  .flow-diagram,
  .industry-grid,
  .pilot-result-grid,
  .roi-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
  .client-trust,
  .roi-grid {
    grid-template-columns: 1fr;
  }
  .flow-diagram::before {
    left: 42px;
    right: auto;
    top: 40px;
    bottom: 40px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(74,179,30,.35), transparent);
  }
}
@media (max-width: 760px) {
  .conversion-proof,
  .roi-calculator {
    padding: 70px 0;
  }
  .kpi-strip,
  .flow-diagram,
  .industry-grid,
  .usecase-matrix,
  .pilot-result-grid,
  .roi-grid,
  .demo-steps {
    grid-template-columns: 1fr;
  }
  .kpi-card,
  .flow-step,
  .industry-card,
  .result-card {
    min-height: auto;
    padding: 22px;
    border-radius: 24px;
  }
  .client-trust {
    padding: 18px;
    border-radius: 26px;
  }
  .logo-card {
    width: 185px;
    min-height: 104px;
  }
  .logo-card img {
    max-width: 142px;
    max-height: 54px;
  }
  .flow-diagram::before {
    display: none;
  }
  .roi-panel {
    padding: 22px;
    border-radius: 26px;
  }
  .roi-panel label {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .roi-panel output {
    text-align: left;
  }
  .demo-dialog,
  .exit-dialog {
    padding: 24px;
    border-radius: 26px;
  }
  .demo-actions .btn {
    width: 100%;
  }
  .sticky-conversion-cta {
    left: 12px;
    right: 12px;
    bottom: 78px;
    transform: translateY(130%);
    min-width: 0;
    flex-direction: column;
    align-items: stretch;
    border-radius: 24px;
  }
  .sticky-conversion-cta.is-visible {
    transform: translateY(0);
  }
  .chat-bubble {
    right: 12px;
    bottom: 12px;
  }
  .chat-bubble strong {
    display: none;
  }
}

body.modal-open { overflow: hidden; }


/* v19 — requested refinements */
.eyebrow,
.proof-kicker,
.logo-card span,
.usecase-matrix span,
.btn,
.tab,
.nav a,
.phone,
.kpi-card,
.trust-copy span,
.lead-magnets span {
  text-transform: none !important;
  letter-spacing: normal;
}

/* Keep the small eyebrow refined without making it all-caps. */
.eyebrow {
  letter-spacing: .045em;
}

/* Light trust/KPI section so it no longer merges with the hero. */
.conversion-proof.section-light {
  color: var(--navy);
  background:
    radial-gradient(circle at 12% 8%, rgba(135,189,105,.16), transparent 24rem),
    radial-gradient(circle at 88% 88%, rgba(78,137,214,.12), transparent 28rem),
    linear-gradient(180deg, #f8fbf7 0%, #eef5f0 100%);
}

.conversion-proof.section-light::before {
  background:
    radial-gradient(circle at 18% 12%, rgba(135,189,105,.18), transparent 24rem),
    radial-gradient(circle at 82% 88%, rgba(80,145,219,.10), transparent 28rem);
}

.conversion-proof.section-light .proof-kicker {
  color: rgba(7,19,39,.62);
}

.conversion-proof.section-light .kpi-card {
  background:
    radial-gradient(circle at var(--mx, 40%) var(--my, 20%), rgba(135,189,105,.15), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(247,251,246,.84));
  border-color: rgba(7,19,39,.08);
  box-shadow: 0 24px 74px rgba(7,19,39,.08), inset 0 1px 0 rgba(255,255,255,.92);
}

.conversion-proof.section-light .kpi-card strong {
  color: var(--navy);
}

.conversion-proof.section-light .kpi-card p {
  color: rgba(7,19,39,.62);
}

.conversion-proof.section-light .client-trust {
  background: rgba(255,255,255,.76);
  border-color: rgba(7,19,39,.08);
  box-shadow: 0 24px 74px rgba(7,19,39,.08);
}

.conversion-proof.section-light .trust-copy span {
  color: var(--navy);
}

.conversion-proof.section-light .trust-copy p {
  display: none;
}

/* Match the supplied client logo background exactly. */
.logo-card {
  background: #ffffff !important;
  border-color: #ffffff !important;
}

.logo-card img {
  background: #ffffff;
}

.logo-card span {
  color: rgba(7,19,39,.58);
  letter-spacing: .025em;
}

@media (max-width: 760px) {
  .conversion-proof.section-light {
    background:
      radial-gradient(circle at 8% 8%, rgba(135,189,105,.14), transparent 18rem),
      linear-gradient(180deg, #f8fbf7 0%, #eef5f0 100%);
  }
}


/* v20 — trust/KPI transition and carousel refinement */
.conversion-proof.section-light {
  background:
    radial-gradient(circle at 12% 18%, rgba(135,189,105,.10), transparent 19rem),
    radial-gradient(circle at 90% 68%, rgba(7,19,39,.06), transparent 24rem),
    #ffffff !important;
  margin-bottom: 0;
  padding-bottom: 84px;
}

.conversion-proof.section-light::before {
  background: none !important;
}

.work-flow {
  margin-top: 0;
  padding-top: 84px;
}

.conversion-proof.section-light .proof-kicker {
  color: rgba(7,19,39,.58);
}

/* Cards remain premium on the clean shared background */
.conversion-proof.section-light .kpi-strip {
  margin-bottom: 28px;
}

.conversion-proof.section-light .kpi-card {
  background:
    radial-gradient(circle at var(--mx, 44%) var(--my, 18%), rgba(135,189,105,.18), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(247,251,246,.88));
  border: 1px solid rgba(7,19,39,.07);
  box-shadow:
    0 26px 76px rgba(7,19,39,.085),
    inset 0 1px 0 rgba(255,255,255,.96);
}

.conversion-proof.section-light .kpi-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255,255,255,.75), transparent 58%);
  pointer-events: none;
}

.conversion-proof.section-light .kpi-card::after {
  background: linear-gradient(90deg, rgba(74,179,30,.68), rgba(135,189,105,.18), transparent);
}

.conversion-proof.section-light .kpi-card:hover {
  box-shadow:
    0 34px 92px rgba(7,19,39,.12),
    0 0 0 1px rgba(135,189,105,.16),
    inset 0 1px 0 rgba(255,255,255,.96);
}

/* Logo carousel: no frame, no cards, no outlines — only logos moving on white */
.conversion-proof.section-light .client-trust {
  padding: 4px 0 0;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0;
  overflow: visible;
}

.conversion-proof.section-light .trust-copy {
  padding: 0;
}

.conversion-proof.section-light .trust-copy span {
  color: rgba(7,19,39,.72);
}

.conversion-proof.section-light .logo-marquee {
  background: #ffffff;
  border: 0;
  box-shadow: none;
  padding: 4px 0;
  border-radius: 0;
}

.conversion-proof.section-light .logo-card {
  width: 210px;
  min-height: 86px;
  padding: 0 18px;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.conversion-proof.section-light .logo-card:hover {
  transform: translateY(-2px);
  box-shadow: none !important;
}

.conversion-proof.section-light .logo-card img {
  max-width: 172px;
  max-height: 68px;
  padding: 0;
  background: #ffffff;
  border: 0;
  box-shadow: none;
}

.conversion-proof.section-light .logo-card span {
  display: none;
}

/* Ask button focus feedback */
.application-form.chat-focus {
  animation: chatFocusPulse 1.2s ease both;
}

@keyframes chatFocusPulse {
  0% { box-shadow: 0 0 0 0 rgba(74,179,30,.00), 0 24px 70px rgba(7,19,39,.11); }
  30% { box-shadow: 0 0 0 8px rgba(74,179,30,.12), 0 28px 80px rgba(7,19,39,.14); }
  100% { box-shadow: 0 0 0 0 rgba(74,179,30,.00), 0 24px 70px rgba(7,19,39,.11); }
}

@media (max-width: 760px) {
  .conversion-proof.section-light {
    padding-bottom: 64px;
    background:
      radial-gradient(circle at 8% 10%, rgba(135,189,105,.12), transparent 17rem),
      #ffffff !important;
  }

  .work-flow {
    padding-top: 64px;
  }

  .conversion-proof.section-light .logo-card {
    width: 178px;
    min-height: 78px;
    padding: 0 12px;
  }

  .conversion-proof.section-light .logo-card img {
    max-width: 148px;
    max-height: 60px;
  }
}


/* v21 — continuous shared background and sharper KPI cards */
.shared-flow-bg {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(135,189,105,.10), transparent 19rem),
    radial-gradient(circle at 90% 68%, rgba(7,19,39,.055), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #ffffff 46%, #fbfdfb 100%);
}

.shared-flow-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(7,19,39,.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7,19,39,.026) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.22) 44%, transparent 100%);
}

.shared-flow-bg > section {
  position: relative;
  z-index: 1;
  background: transparent !important;
}

.shared-flow-bg .conversion-proof.section-light {
  padding: 82px 0 58px;
  margin: 0;
  background: transparent !important;
}

.shared-flow-bg .work-flow {
  padding: 58px 0 132px;
  margin: 0;
  background: transparent !important;
}

.shared-flow-bg .work-flow::before,
.shared-flow-bg .conversion-proof.section-light::before {
  display: none !important;
}

.shared-flow-bg .proof-kicker {
  max-width: 780px;
  margin: 0 auto 24px;
  text-align: center;
}

/* Sharper, cleaner KPI cards: no excessive glow or highlight */
.shared-flow-bg .kpi-strip {
  gap: 16px;
  align-items: stretch;
}

.shared-flow-bg .kpi-card {
  min-height: 168px;
  padding: 26px 24px;
  border-radius: 22px;
  background: #ffffff !important;
  border: 1px solid rgba(7,19,39,.095) !important;
  box-shadow: 0 18px 46px rgba(7,19,39,.075) !important;
  overflow: hidden;
}

.shared-flow-bg .kpi-card::before {
  display: none !important;
}

.shared-flow-bg .kpi-card::after {
  left: 24px;
  right: 24px;
  bottom: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), rgba(135,189,105,.20), transparent) !important;
  opacity: .8;
}

.shared-flow-bg .kpi-card:hover {
  transform: translateY(-4px);
  border-color: rgba(74,179,30,.25) !important;
  box-shadow: 0 22px 54px rgba(7,19,39,.10) !important;
}

.shared-flow-bg .kpi-card strong {
  color: var(--navy) !important;
  font-size: clamp(2.25rem, 4vw, 3.55rem);
}

.shared-flow-bg .kpi-card p {
  color: rgba(7,19,39,.62) !important;
  margin-top: 16px;
}

.shared-flow-bg .client-trust {
  margin-top: 22px;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 28px;
  align-items: center;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.shared-flow-bg .trust-copy {
  align-self: center;
}

.shared-flow-bg .trust-copy span {
  color: rgba(7,19,39,.74) !important;
}

.shared-flow-bg .logo-marquee {
  background: #ffffff !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0;
  border-radius: 0;
}

.shared-flow-bg .logo-card {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  min-height: 82px;
}

.shared-flow-bg .flow-diagram {
  margin-top: 8px;
}

/* Slightly sharper flow cards too, so the two blocks feel related */
.shared-flow-bg .flow-step {
  border-radius: 22px;
  background: #ffffff;
  border-color: rgba(7,19,39,.085);
  box-shadow: 0 18px 52px rgba(7,19,39,.075);
}

.shared-flow-bg .flow-step:hover,
.shared-flow-bg .flow-step.active {
  box-shadow: 0 22px 60px rgba(7,19,39,.10);
}

@media (max-width: 1180px) {
  .shared-flow-bg .client-trust {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .shared-flow-bg .proof-kicker {
    text-align: left;
    margin-inline: 0;
  }
}

@media (max-width: 760px) {
  .shared-flow-bg .conversion-proof.section-light {
    padding: 64px 0 42px;
  }

  .shared-flow-bg .work-flow {
    padding: 42px 0 78px;
  }

  .shared-flow-bg .kpi-card {
    min-height: auto;
    padding: 22px;
    border-radius: 20px;
  }

  .shared-flow-bg::before {
    background-size: 54px 54px;
  }
}


/* v22 — hero video handoff with dynamic perimeter halo */
.hero-visual[data-hero-media] {
  position: relative;
  min-height: 690px;
  isolation: isolate;
}

.hero-visual[data-hero-media] .browser-frame,
.hero-visual[data-hero-media] .flow-rail {
  position: relative;
  z-index: 3;
  transition:
    opacity 1.15s cubic-bezier(.2,.7,.2,1),
    transform 1.15s cubic-bezier(.2,.7,.2,1),
    filter 1.15s ease;
}

.hero-visual[data-hero-media].is-video-mode .browser-frame,
.hero-visual[data-hero-media].is-video-mode .flow-rail {
  opacity: 0;
  pointer-events: none;
  filter: blur(12px) saturate(.9);
  transform: translateY(12px) scale(.985);
}

.hero-video-layer {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: 0;
  bottom: 72px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(.965);
  filter: saturate(.98);
  transition:
    opacity 1.25s cubic-bezier(.2,.7,.2,1),
    transform 1.25s cubic-bezier(.2,.7,.2,1),
    filter 1.25s ease;
}

.hero-visual[data-hero-media].is-video-mode .hero-video-layer {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: saturate(1.08);
}

.hero-video-shell {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 36px;
  background: rgba(5,13,28,.58);
  border: 1px solid rgba(255,255,255,.13);
  box-shadow:
    0 34px 110px rgba(0,0,0,.34),
    inset 0 1px 0 rgba(255,255,255,.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-video-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,.14), transparent 22%),
    linear-gradient(135deg, rgba(255,255,255,.11), transparent 36%, rgba(135,189,105,.08) 72%, transparent);
  mix-blend-mode: screen;
  opacity: .74;
}

.hero-video-shell::after {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 3;
  pointer-events: none;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.12);
}

.hero-video-bg {
  position: absolute;
  inset: -9%;
  width: 118%;
  height: 118%;
  object-fit: cover;
  filter: blur(32px) saturate(1.85) brightness(.72);
  opacity: .72;
  transform: scale(1.03);
}

.hero-video-device {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: min(54%, 330px);
  aspect-ratio: 268 / 480;
  transform: translate(-50%, -50%);
  border-radius: 34px;
  overflow: visible;
}

.hero-video-device::before {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 44px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.22), rgba(255,255,255,.05)),
    radial-gradient(circle at 20% 10%, rgba(135,189,105,.18), transparent 34%),
    radial-gradient(circle at 88% 86%, rgba(83,147,220,.16), transparent 34%);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.18),
    0 26px 86px rgba(0,0,0,.30);
}

.hero-video-glow {
  position: absolute;
  inset: -22px;
  width: calc(100% + 44px);
  height: calc(100% + 44px);
  object-fit: cover;
  border-radius: 42px;
  filter: blur(26px) saturate(2.15) brightness(1.08);
  opacity: .82;
  transform: scale(1.035);
}

.hero-video-main {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.28);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.08),
    0 30px 88px rgba(0,0,0,.38);
  background: #071327;
}

.hero-video-caption {
  position: absolute;
  z-index: 4;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 16px;
  border-radius: 18px;
  color: rgba(255,255,255,.72);
  background: rgba(5,13,28,.56);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 16px 50px rgba(0,0,0,.20);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-video-caption span {
  font-size: .82rem;
}

.hero-video-caption strong {
  color: #fff;
  font-weight: 600;
}

.hero-visual[data-hero-media].is-panel-mode .browser-frame {
  transition-duration: 1.45s;
}

.hero-visual[data-hero-media].is-hover-hold .browser-frame {
  transition-duration: 1.65s;
}

@media (max-width: 1180px) {
  .hero-visual[data-hero-media] {
    min-height: 660px;
  }

  .hero-video-layer {
    bottom: 66px;
  }

  .hero-video-device {
    width: min(50%, 300px);
  }
}

@media (max-width: 900px) {
  .hero-visual[data-hero-media] {
    min-height: auto;
  }

  .hero-video-layer {
    bottom: 46px;
  }

  .hero-video-device {
    width: min(66%, 286px);
  }

  .hero-video-caption {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 520px) {
  .hero-video-layer {
    bottom: 36px;
  }

  .hero-video-shell {
    border-radius: 24px;
  }

  .hero-video-shell::after {
    inset: 9px;
    border-radius: 19px;
  }

  .hero-video-device {
    width: min(72%, 240px);
    border-radius: 28px;
  }

  .hero-video-main {
    border-radius: 24px;
  }

  .hero-video-glow {
    border-radius: 34px;
  }

  .hero-video-caption {
    display: none;
  }
}



/* v23 — smoother hero visual handoff and borderless video glow blend */
.hero-visual[data-hero-media] .browser-frame,
.hero-visual[data-hero-media] .flow-rail {
  transition:
    opacity 2.45s cubic-bezier(.16, .84, .24, 1),
    transform 2.45s cubic-bezier(.16, .84, .24, 1),
    filter 2.45s ease;
}

.hero-visual[data-hero-media].is-video-mode .browser-frame,
.hero-visual[data-hero-media].is-video-mode .flow-rail {
  opacity: 0;
  filter: blur(8px) saturate(.94);
  transform: translateY(8px) scale(.992);
}

.hero-video-layer {
  opacity: 0;
  transform: translateY(10px) scale(.985);
  transition:
    opacity 2.35s cubic-bezier(.16, .84, .24, 1) .28s,
    transform 2.35s cubic-bezier(.16, .84, .24, 1) .28s,
    filter 2.35s ease .28s;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 36%, rgba(0,0,0,.92) 52%, rgba(0,0,0,.45) 72%, transparent 100%);
  mask-image: radial-gradient(ellipse at center, #000 36%, rgba(0,0,0,.92) 52%, rgba(0,0,0,.45) 72%, transparent 100%);
}

.hero-visual[data-hero-media].is-video-mode .hero-video-layer {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hero-video-shell {
  overflow: visible;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero-video-shell::before {
  inset: -11%;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(255,255,255,.08), transparent 58%),
    radial-gradient(circle at 24% 18%, rgba(135,189,105,.10), transparent 28%),
    radial-gradient(circle at 82% 82%, rgba(72,139,220,.09), transparent 34%);
  opacity: .62;
  filter: blur(18px);
  mix-blend-mode: screen;
}

.hero-video-shell::after {
  display: none;
}

.hero-video-bg {
  inset: -24%;
  width: 148%;
  height: 148%;
  filter: blur(54px) saturate(2.05) brightness(.86);
  opacity: .72;
  transform: scale(1.08);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,.95) 0%, rgba(0,0,0,.74) 42%, rgba(0,0,0,.28) 68%, transparent 100%);
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,.95) 0%, rgba(0,0,0,.74) 42%, rgba(0,0,0,.28) 68%, transparent 100%);
}

.hero-video-device::before {
  inset: -18px;
  border: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(255,255,255,.18), transparent 32%),
    radial-gradient(circle at 88% 90%, rgba(135,189,105,.12), transparent 36%);
  box-shadow:
    0 20px 74px rgba(0,0,0,.18),
    0 0 86px rgba(135,189,105,.08);
  filter: blur(.2px);
}

.hero-video-glow {
  inset: -34px;
  width: calc(100% + 68px);
  height: calc(100% + 68px);
  border-radius: 48px;
  filter: blur(34px) saturate(2.35) brightness(1.06);
  opacity: .86;
  transform: scale(1.07);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,.92) 0%, rgba(0,0,0,.70) 54%, transparent 100%);
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,.92) 0%, rgba(0,0,0,.70) 54%, transparent 100%);
}

.hero-video-main {
  box-shadow:
    0 0 0 1px rgba(255,255,255,.10),
    0 22px 68px rgba(0,0,0,.24);
}

.hero-video-caption {
  background: rgba(5,13,28,.34);
  border-color: rgba(255,255,255,.08);
  box-shadow: none;
}

.hero-visual[data-hero-media].is-panel-mode .browser-frame,
.hero-visual[data-hero-media].is-panel-mode .flow-rail {
  transition-duration: 2.2s;
}

.hero-visual[data-hero-media].is-hover-hold .browser-frame,
.hero-visual[data-hero-media].is-hover-hold .flow-rail {
  transition-duration: 2.7s;
}

@media (max-width: 520px) {
  .hero-video-bg {
    inset: -30%;
    width: 160%;
    height: 160%;
    filter: blur(42px) saturate(1.9) brightness(.88);
  }

  .hero-video-layer {
    -webkit-mask-image: radial-gradient(ellipse at center, #000 34%, rgba(0,0,0,.78) 58%, transparent 100%);
    mask-image: radial-gradient(ellipse at center, #000 34%, rgba(0,0,0,.78) 58%, transparent 100%);
  }
}


/* v24 — larger video, invisible halo boundary, lower label */
.hero-video-layer {
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, rgba(0,0,0,.82) 56%, rgba(0,0,0,.26) 82%, transparent 100%);
  mask-image: radial-gradient(ellipse at center, #000 30%, rgba(0,0,0,.82) 56%, rgba(0,0,0,.26) 82%, transparent 100%);
}

.hero-video-bg {
  inset: -36%;
  width: 172%;
  height: 172%;
  filter: blur(72px) saturate(2.08) brightness(.92);
  opacity: .56;
  transform: scale(1.12);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,.82) 0%, rgba(0,0,0,.50) 48%, rgba(0,0,0,.14) 76%, transparent 100%);
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,.82) 0%, rgba(0,0,0,.50) 48%, rgba(0,0,0,.14) 76%, transparent 100%);
}

.hero-video-device {
  width: min(64%, 380px);
}

.hero-video-device::before {
  inset: -32px;
  border-radius: 58px;
  background:
    radial-gradient(circle at 18% 12%, rgba(255,255,255,.12), transparent 38%),
    radial-gradient(circle at 82% 92%, rgba(135,189,105,.08), transparent 42%);
  box-shadow:
    0 24px 86px rgba(0,0,0,.12),
    0 0 120px rgba(135,189,105,.055);
}

.hero-video-glow {
  inset: -62px;
  width: calc(100% + 124px);
  height: calc(100% + 124px);
  border-radius: 70px;
  filter: blur(54px) saturate(2.22) brightness(1.02);
  opacity: .58;
  transform: scale(1.12);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,.72) 0%, rgba(0,0,0,.42) 56%, rgba(0,0,0,.10) 78%, transparent 100%);
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,.72) 0%, rgba(0,0,0,.42) 56%, rgba(0,0,0,.10) 78%, transparent 100%);
}

.hero-video-main {
  border-color: rgba(255,255,255,.18);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.07),
    0 22px 62px rgba(0,0,0,.22);
}

.hero-video-caption {
  left: 50%;
  right: auto;
  bottom: -58px;
  width: min(88%, 390px);
  transform: translateX(-50%);
  justify-content: center;
  text-align: center;
  background: rgba(5,13,28,.26);
  border-color: rgba(255,255,255,.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-video-caption strong {
  margin-left: 8px;
}

@media (max-width: 1180px) {
  .hero-video-device {
    width: min(60%, 352px);
  }

  .hero-video-caption {
    bottom: -54px;
  }
}

@media (max-width: 900px) {
  .hero-video-device {
    width: min(72%, 318px);
  }

  .hero-video-caption {
    bottom: -48px;
  }
}

@media (max-width: 520px) {
  .hero-video-device {
    width: min(78%, 268px);
  }

  .hero-video-bg {
    inset: -42%;
    width: 184%;
    height: 184%;
    filter: blur(56px) saturate(1.9) brightness(.92);
  }

  .hero-video-glow {
    inset: -42px;
    width: calc(100% + 84px);
    height: calc(100% + 84px);
    filter: blur(42px) saturate(2.05) brightness(1.02);
  }
}


/* v25 — larger hero video with fully feathered perimeter glow */
.hero-visual[data-hero-media] {
  overflow: visible;
}

.hero-video-layer {
  left: -18%;
  right: -18%;
  top: -14%;
  bottom: -14%;
  overflow: visible;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

.hero-video-shell {
  inset: 0;
  overflow: visible;
  background: transparent !important;
}

.hero-video-shell::before {
  inset: -20%;
  opacity: .36;
  filter: blur(44px);
  background:
    radial-gradient(ellipse at center, rgba(255,255,255,.075), transparent 62%),
    radial-gradient(circle at 22% 16%, rgba(135,189,105,.065), transparent 42%),
    radial-gradient(circle at 78% 86%, rgba(72,139,220,.06), transparent 44%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,.50), rgba(0,0,0,.20) 62%, transparent 100%);
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,.50), rgba(0,0,0,.20) 62%, transparent 100%);
}

.hero-video-bg {
  inset: -44%;
  width: 188%;
  height: 188%;
  opacity: .60;
  filter: blur(96px) saturate(2.22) brightness(.94);
  transform: scale(1.16);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,.66) 0%, rgba(0,0,0,.44) 44%, rgba(0,0,0,.16) 72%, transparent 98%);
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,.66) 0%, rgba(0,0,0,.44) 44%, rgba(0,0,0,.16) 72%, transparent 98%);
}

.hero-video-device {
  width: min(76%, 470px);
}

.hero-video-device::before {
  inset: -70px;
  border-radius: 86px;
  background:
    radial-gradient(ellipse at center, rgba(255,255,255,.10), transparent 64%),
    radial-gradient(circle at 18% 14%, rgba(135,189,105,.075), transparent 48%),
    radial-gradient(circle at 84% 88%, rgba(75,142,220,.065), transparent 52%);
  box-shadow: none;
  filter: blur(28px);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,.72), rgba(0,0,0,.24) 70%, transparent 100%);
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,.72), rgba(0,0,0,.24) 70%, transparent 100%);
}

.hero-video-glow {
  inset: -128px;
  width: calc(100% + 256px);
  height: calc(100% + 256px);
  border-radius: 130px;
  opacity: .48;
  filter: blur(82px) saturate(2.35) brightness(1.04);
  transform: scale(1.18);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,.62) 0%, rgba(0,0,0,.34) 46%, rgba(0,0,0,.10) 76%, transparent 100%);
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,.62) 0%, rgba(0,0,0,.34) 46%, rgba(0,0,0,.10) 76%, transparent 100%);
}

.hero-video-main {
  border-color: rgba(255,255,255,.14);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.05),
    0 18px 54px rgba(0,0,0,.20);
}

.hero-video-caption {
  bottom: -96px;
  background: rgba(5,13,28,.20);
  border-color: rgba(255,255,255,.055);
  box-shadow: none;
}

@media (max-width: 1180px) {
  .hero-video-layer {
    left: -14%;
    right: -14%;
    top: -12%;
    bottom: -12%;
  }

  .hero-video-device {
    width: min(72%, 430px);
  }

  .hero-video-glow {
    inset: -104px;
    width: calc(100% + 208px);
    height: calc(100% + 208px);
    filter: blur(72px) saturate(2.2) brightness(1.03);
  }

  .hero-video-caption {
    bottom: -82px;
  }
}

@media (max-width: 900px) {
  .hero-video-layer {
    left: -10%;
    right: -10%;
    top: -8%;
    bottom: -8%;
  }

  .hero-video-device {
    width: min(78%, 360px);
  }

  .hero-video-glow {
    inset: -78px;
    width: calc(100% + 156px);
    height: calc(100% + 156px);
    filter: blur(58px) saturate(2.1) brightness(1.03);
  }
}

@media (max-width: 520px) {
  .hero-video-device {
    width: min(84%, 292px);
  }

  .hero-video-bg {
    inset: -52%;
    width: 204%;
    height: 204%;
    filter: blur(60px) saturate(1.95) brightness(.93);
  }

  .hero-video-glow {
    inset: -54px;
    width: calc(100% + 108px);
    height: calc(100% + 108px);
    filter: blur(42px) saturate(2.0) brightness(1.02);
    opacity: .44;
  }
}


/* v26 — fully feathered hero-video halo and mobile usability */
.hero-visual[data-hero-media] {
  --hero-video-edge-mask: radial-gradient(
    ellipse 74% 66% at 50% 50%,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,.92) 28%,
    rgba(0,0,0,.52) 54%,
    rgba(0,0,0,.16) 76%,
    rgba(0,0,0,.035) 90%,
    transparent 100%
  );
}

.hero-video-layer {
  left: -32%;
  right: -32%;
  top: -26%;
  bottom: -26%;
  -webkit-mask-image: var(--hero-video-edge-mask) !important;
  mask-image: var(--hero-video-edge-mask) !important;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.hero-video-layer::before {
  content: "";
  position: absolute;
  inset: -8%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 64% 54% at 50% 50%, rgba(255,255,255,.045), transparent 72%),
    radial-gradient(ellipse 58% 52% at 50% 52%, rgba(135,189,105,.035), transparent 76%),
    radial-gradient(ellipse 70% 58% at 52% 50%, rgba(72,139,220,.03), transparent 80%);
  filter: blur(62px);
  opacity: .72;
  -webkit-mask-image: var(--hero-video-edge-mask);
  mask-image: var(--hero-video-edge-mask);
}

.hero-video-bg {
  inset: -62%;
  width: 224%;
  height: 224%;
  opacity: .46;
  filter: blur(122px) saturate(2.05) brightness(.98);
  transform: scale(1.2);
  -webkit-mask-image: radial-gradient(
    ellipse 72% 64% at 50% 50%,
    rgba(0,0,0,.46) 0%,
    rgba(0,0,0,.28) 44%,
    rgba(0,0,0,.09) 70%,
    rgba(0,0,0,.018) 86%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 72% 64% at 50% 50%,
    rgba(0,0,0,.46) 0%,
    rgba(0,0,0,.28) 44%,
    rgba(0,0,0,.09) 70%,
    rgba(0,0,0,.018) 86%,
    transparent 100%
  );
}

.hero-video-shell::before {
  inset: -36%;
  opacity: .22;
  filter: blur(78px);
  background:
    radial-gradient(ellipse 62% 54% at 50% 50%, rgba(255,255,255,.052), transparent 76%),
    radial-gradient(circle at 23% 18%, rgba(135,189,105,.045), transparent 54%),
    radial-gradient(circle at 78% 84%, rgba(72,139,220,.04), transparent 58%);
  -webkit-mask-image: radial-gradient(ellipse 76% 66% at 50% 50%, rgba(0,0,0,.42), rgba(0,0,0,.12) 70%, transparent 100%);
  mask-image: radial-gradient(ellipse 76% 66% at 50% 50%, rgba(0,0,0,.42), rgba(0,0,0,.12) 70%, transparent 100%);
}

.hero-video-device {
  width: min(80%, 520px);
}

.hero-video-device::before {
  inset: -112px;
  border-radius: 140px;
  opacity: .52;
  filter: blur(54px);
  background:
    radial-gradient(ellipse 58% 52% at 50% 50%, rgba(255,255,255,.08), transparent 72%),
    radial-gradient(circle at 18% 14%, rgba(135,189,105,.056), transparent 62%),
    radial-gradient(circle at 84% 88%, rgba(75,142,220,.048), transparent 66%);
  -webkit-mask-image: radial-gradient(ellipse 78% 70% at center, rgba(0,0,0,.46), rgba(0,0,0,.13) 74%, transparent 100%);
  mask-image: radial-gradient(ellipse 78% 70% at center, rgba(0,0,0,.46), rgba(0,0,0,.13) 74%, transparent 100%);
}

.hero-video-glow {
  inset: -190px;
  width: calc(100% + 380px);
  height: calc(100% + 380px);
  opacity: .36;
  filter: blur(118px) saturate(2.18) brightness(1.06);
  transform: scale(1.24);
  -webkit-mask-image: radial-gradient(
    ellipse 78% 72% at center,
    rgba(0,0,0,.44) 0%,
    rgba(0,0,0,.28) 42%,
    rgba(0,0,0,.075) 72%,
    rgba(0,0,0,.015) 88%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 78% 72% at center,
    rgba(0,0,0,.44) 0%,
    rgba(0,0,0,.28) 42%,
    rgba(0,0,0,.075) 72%,
    rgba(0,0,0,.015) 88%,
    transparent 100%
  );
}

.hero-video-main {
  border-color: rgba(255,255,255,.11);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.035),
    0 16px 46px rgba(0,0,0,.18);
}

.hero-video-caption {
  bottom: -118px;
  background: rgba(5,13,28,.15);
  border-color: rgba(255,255,255,.045);
}

/* Mobile: keep the video large enough, but avoid horizontal clipping or awkward controls */
@media (max-width: 900px) {
  .hero-visual[data-hero-media] {
    min-height: clamp(560px, 118vw, 760px);
  }

  .hero-video-layer {
    left: -24%;
    right: -24%;
    top: -18%;
    bottom: -18%;
  }

  .hero-video-device {
    width: min(82%, 390px);
  }

  .hero-video-bg {
    inset: -54%;
    width: 208%;
    height: 208%;
    filter: blur(86px) saturate(1.95) brightness(.98);
    opacity: .42;
  }

  .hero-video-glow {
    inset: -118px;
    width: calc(100% + 236px);
    height: calc(100% + 236px);
    filter: blur(82px) saturate(2.05) brightness(1.04);
    opacity: .34;
  }

  .hero-video-device::before {
    inset: -78px;
    filter: blur(44px);
  }

  .hero-video-caption {
    bottom: -82px;
    width: min(82%, 330px);
    padding: 10px 12px;
  }

  .hero-video-caption span {
    font-size: .76rem;
  }
}

@media (max-width: 760px) {
  .hero-visual[data-hero-media] {
    min-height: clamp(520px, 128vw, 680px);
    margin-top: 12px;
  }

  .hero-visual[data-hero-media].is-video-mode .browser-frame,
  .hero-visual[data-hero-media].is-video-mode .flow-rail {
    pointer-events: none;
  }

  .hero-video-layer {
    left: -18%;
    right: -18%;
    top: -14%;
    bottom: -14%;
  }

  .hero-video-device {
    width: min(86%, 340px);
  }

  .hero-video-main {
    border-radius: 26px;
  }

  .hero-video-caption {
    display: none;
  }
}

@media (max-width: 520px) {
  .hero-visual[data-hero-media] {
    min-height: clamp(500px, 142vw, 640px);
  }

  .hero-video-layer {
    left: -16%;
    right: -16%;
    top: -10%;
    bottom: -10%;
  }

  .hero-video-device {
    width: min(90%, 300px);
  }

  .hero-video-bg {
    inset: -50%;
    width: 200%;
    height: 200%;
    filter: blur(64px) saturate(1.85) brightness(.98);
    opacity: .38;
  }

  .hero-video-glow {
    inset: -76px;
    width: calc(100% + 152px);
    height: calc(100% + 152px);
    filter: blur(54px) saturate(1.92) brightness(1.03);
    opacity: .30;
  }

  .hero-video-device::before {
    inset: -52px;
    filter: blur(34px);
  }
}



/* v27 — remove visible glow boundary completely and strengthen dynamic backlight */
.hero-visual[data-hero-media] {
  overflow: visible !important;
  isolation: isolate;
}

/* No mask edge on the whole layer: the rectangular boundary came from masking the layer itself. */
.hero-video-layer {
  left: -44% !important;
  right: -44% !important;
  top: -36% !important;
  bottom: -36% !important;
  overflow: visible !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

/* Wide dynamic wash: huge blurred video layer extends far beyond the visible area, so its edges are never visible. */
.hero-video-bg {
  position: absolute;
  z-index: 0;
  inset: -125% -125% !important;
  width: 350% !important;
  height: 350% !important;
  object-fit: cover;
  opacity: .42 !important;
  filter: blur(190px) saturate(2.45) brightness(1.06) !important;
  transform: scale(1.08) !important;
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(
    ellipse 56% 48% at 52% 50%,
    rgba(0,0,0,.70) 0%,
    rgba(0,0,0,.48) 34%,
    rgba(0,0,0,.20) 58%,
    rgba(0,0,0,.055) 78%,
    transparent 100%
  ) !important;
  mask-image: radial-gradient(
    ellipse 56% 48% at 52% 50%,
    rgba(0,0,0,.70) 0%,
    rgba(0,0,0,.48) 34%,
    rgba(0,0,0,.20) 58%,
    rgba(0,0,0,.055) 78%,
    transparent 100%
  ) !important;
}

/* Soft ambient mist, not a panel. */
.hero-video-layer::before,
.hero-video-shell::before {
  inset: -70% !important;
  opacity: .34 !important;
  filter: blur(120px) !important;
  background:
    radial-gradient(ellipse 44% 44% at 50% 50%, rgba(255,255,255,.10), transparent 72%),
    radial-gradient(circle at 30% 20%, rgba(135,189,105,.10), transparent 62%),
    radial-gradient(circle at 76% 80%, rgba(72,139,220,.09), transparent 66%) !important;
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(ellipse 62% 54% at center, rgba(0,0,0,.68), rgba(0,0,0,.26) 68%, transparent 100%) !important;
  mask-image: radial-gradient(ellipse 62% 54% at center, rgba(0,0,0,.68), rgba(0,0,0,.26) 68%, transparent 100%) !important;
}

.hero-video-shell {
  overflow: visible !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* Bigger video: set by height so the vertical video fills the hero area better. */
.hero-video-device {
  width: auto !important;
  height: min(104%, 800px) !important;
  aspect-ratio: 268 / 480;
  overflow: visible !important;
}

/* Perimeter color comes from the real video, made bright but very broadly feathered. */
.hero-video-glow {
  inset: -260px !important;
  width: calc(100% + 520px) !important;
  height: calc(100% + 520px) !important;
  object-fit: cover;
  opacity: .72 !important;
  filter: blur(126px) saturate(2.75) brightness(1.16) !important;
  transform: scale(1.28) !important;
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(
    ellipse 68% 64% at center,
    rgba(0,0,0,.76) 0%,
    rgba(0,0,0,.54) 34%,
    rgba(0,0,0,.26) 58%,
    rgba(0,0,0,.075) 78%,
    transparent 100%
  ) !important;
  mask-image: radial-gradient(
    ellipse 68% 64% at center,
    rgba(0,0,0,.76) 0%,
    rgba(0,0,0,.54) 34%,
    rgba(0,0,0,.26) 58%,
    rgba(0,0,0,.075) 78%,
    transparent 100%
  ) !important;
}

/* A second non-rectangular ambient glow around the phone, with no hard edge. */
.hero-video-device::before {
  inset: -170px !important;
  border-radius: 180px !important;
  opacity: .70 !important;
  filter: blur(78px) !important;
  background:
    radial-gradient(ellipse 58% 54% at 50% 50%, rgba(255,255,255,.13), transparent 74%),
    radial-gradient(circle at 22% 18%, rgba(135,189,105,.13), transparent 66%),
    radial-gradient(circle at 82% 88%, rgba(80,145,219,.12), transparent 70%) !important;
  box-shadow: none !important;
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(ellipse 70% 68% at center, rgba(0,0,0,.72), rgba(0,0,0,.24) 72%, transparent 100%) !important;
  mask-image: radial-gradient(ellipse 70% 68% at center, rgba(0,0,0,.72), rgba(0,0,0,.24) 72%, transparent 100%) !important;
}

.hero-video-main {
  border-color: rgba(255,255,255,.10) !important;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.04),
    0 20px 58px rgba(0,0,0,.22) !important;
}

/* Label stays outside the video area. */
.hero-video-caption {
  bottom: -136px !important;
  background: rgba(5,13,28,.13) !important;
  border-color: rgba(255,255,255,.045) !important;
}

@media (max-width: 1180px) {
  .hero-video-layer {
    left: -36% !important;
    right: -36% !important;
    top: -28% !important;
    bottom: -28% !important;
  }

  .hero-video-device {
    height: min(98%, 720px) !important;
  }

  .hero-video-glow {
    inset: -220px !important;
    width: calc(100% + 440px) !important;
    height: calc(100% + 440px) !important;
    filter: blur(110px) saturate(2.6) brightness(1.14) !important;
  }
}

@media (max-width: 900px) {
  .hero-visual[data-hero-media] {
    min-height: clamp(640px, 128vw, 820px) !important;
  }

  .hero-video-layer {
    left: -28% !important;
    right: -28% !important;
    top: -22% !important;
    bottom: -22% !important;
  }

  .hero-video-device {
    height: min(88%, 670px) !important;
  }

  .hero-video-bg {
    inset: -100% !important;
    width: 300% !important;
    height: 300% !important;
    filter: blur(130px) saturate(2.25) brightness(1.06) !important;
    opacity: .38 !important;
  }

  .hero-video-glow {
    inset: -170px !important;
    width: calc(100% + 340px) !important;
    height: calc(100% + 340px) !important;
    filter: blur(92px) saturate(2.35) brightness(1.12) !important;
    opacity: .66 !important;
  }

  .hero-video-device::before {
    inset: -120px !important;
    filter: blur(60px) !important;
  }

  .hero-video-caption {
    bottom: -94px !important;
  }
}

@media (max-width: 760px) {
  .hero-visual[data-hero-media] {
    min-height: clamp(620px, 150vw, 780px) !important;
    margin-top: 18px;
  }

  .hero-video-layer {
    left: -22% !important;
    right: -22% !important;
    top: -18% !important;
    bottom: -18% !important;
  }

  .hero-video-device {
    height: min(82%, 610px) !important;
  }

  .hero-video-main {
    border-radius: 28px !important;
  }

  .hero-video-caption {
    display: none !important;
  }
}

@media (max-width: 520px) {
  .hero-visual[data-hero-media] {
    min-height: clamp(560px, 168vw, 700px) !important;
  }

  .hero-video-layer {
    left: -18% !important;
    right: -18% !important;
    top: -14% !important;
    bottom: -14% !important;
  }

  .hero-video-device {
    height: min(78%, 540px) !important;
  }

  .hero-video-bg {
    inset: -82% !important;
    width: 264% !important;
    height: 264% !important;
    filter: blur(96px) saturate(2.05) brightness(1.04) !important;
    opacity: .34 !important;
  }

  .hero-video-glow {
    inset: -116px !important;
    width: calc(100% + 232px) !important;
    height: calc(100% + 232px) !important;
    filter: blur(68px) saturate(2.15) brightness(1.10) !important;
    opacity: .58 !important;
  }

  .hero-video-device::before {
    inset: -82px !important;
    filter: blur(46px) !important;
  }
}


/* v28 — center-seam cleanup for hero video lighting */
.hero-video-bridge {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  width: 210%;
  height: 210%;
  object-fit: cover;
  opacity: .44;
  transform: translate(-50%, -50%) scale(1.06);
  filter: blur(150px) saturate(2.35) brightness(1.12);
  mix-blend-mode: screen;
  pointer-events: none;
  -webkit-mask-image:
    radial-gradient(
      ellipse 42% 52% at 50% 50%,
      rgba(0,0,0,.58) 0%,
      rgba(0,0,0,.44) 34%,
      rgba(0,0,0,.20) 58%,
      rgba(0,0,0,.055) 78%,
      transparent 100%
    );
  mask-image:
    radial-gradient(
      ellipse 42% 52% at 50% 50%,
      rgba(0,0,0,.58) 0%,
      rgba(0,0,0,.44) 34%,
      rgba(0,0,0,.20) 58%,
      rgba(0,0,0,.055) 78%,
      transparent 100%
    );
}

/* A very soft color wash across the exact center removes residual banding without adding a visible edge. */
.hero-video-layer::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  width: 190%;
  height: 190%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: .26;
  filter: blur(130px);
  mix-blend-mode: screen;
  background:
    radial-gradient(ellipse 38% 56% at 50% 50%, rgba(255,255,255,.12), transparent 72%),
    radial-gradient(ellipse 46% 62% at 52% 50%, rgba(135,189,105,.08), transparent 78%),
    radial-gradient(ellipse 52% 64% at 48% 50%, rgba(80,145,219,.07), transparent 80%);
}

.hero-video-bg,
.hero-video-glow,
.hero-video-bridge {
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

@media (max-width: 900px) {
  .hero-video-bridge {
    width: 190%;
    height: 190%;
    opacity: .38;
    filter: blur(112px) saturate(2.16) brightness(1.10);
  }

  .hero-video-layer::after {
    width: 176%;
    height: 176%;
    opacity: .22;
    filter: blur(100px);
  }
}

@media (max-width: 520px) {
  .hero-video-bridge {
    width: 174%;
    height: 174%;
    opacity: .34;
    filter: blur(82px) saturate(2.05) brightness(1.08);
  }

  .hero-video-layer::after {
    width: 160%;
    height: 160%;
    opacity: .18;
    filter: blur(76px);
  }
}


/* v33 — typography, line breaks, ROI and footer refinements */
:root {
  --heading-font: "Manrope", "Segoe UI Variable Display", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

h1,
h2,
h3,
.hero-lead strong,
.section-head h2,
.contact-title,
.roi-title,
.result-card h3,
.industry-card h3,
.scenario-card h3,
.effect-card h3,
.timeline h3,
.investor-cards h3 {
  font-family: var(--heading-font);
  font-feature-settings: "kern" 1;
}

.nowrap {
  white-space: nowrap;
}

.hero-lead strong {
  display: inline-block;
}

.hero-proof span:nth-child(4) {
  animation: floatMicro 8.6s ease-in-out infinite -5.4s;
}

.contact-title {
  max-width: 720px;
}

.roi-title {
  max-width: 780px;
}

.result-card h3 .nowrap {
  display: inline-block;
}

.footer-grid {
  grid-template-columns: minmax(260px, 1.25fr) minmax(180px, 1fr) minmax(220px, 1fr) minmax(130px, .7fr) minmax(132px, auto);
  align-items: start;
}

.footer-skolkovo {
  justify-self: end;
  align-self: start;
  width: 132px;
  min-height: 96px;
  display: grid;
  place-items: center;
  padding: 10px;
  border-radius: 20px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 22px 60px rgba(0,0,0,.22);
}

.footer-skolkovo img {
  display: block;
  width: 100%;
  max-height: 78px;
  object-fit: contain;
  border-radius: 12px;
}

.roi-panel output[data-roi-output="effectRub"]::after {
  content: " ₽";
}

.roi-panel output[data-roi-output="realizationRate"]::after {
  content: "%";
}

@media (max-width: 1180px) {
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .footer-skolkovo {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-skolkovo {
    width: 142px;
  }

  .contact-title {
    max-width: 100%;
  }

  .hero-proof span:nth-child(4) {
    animation: none;
  }
}



/* v34 — final unresolved fixes: Cyrillic headings, ROI scale, no bad wraps */
:root {
  --heading-font: "Golos Text", "Inter", "Segoe UI Variable Display", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Replace previous heading font with a Cyrillic-first font and give й/diacritics safer vertical room. */
h1,
h2,
h3,
.hero-lead strong,
.section-head h2,
.contact-title,
.roi-title,
.result-card h3,
.industry-card h3,
.scenario-card h3,
.effect-card h3,
.timeline h3,
.investor-cards h3,
.demo-dialog h2,
.exit-dialog h2 {
  font-family: var(--heading-font) !important;
  line-height: 1.06;
  font-feature-settings: "kern" 1;
}

/* Hero line breaks stay exact, with more vertical air for Cyrillic forms. */
.hero-lead strong {
  line-height: 1.18 !important;
}

/* Keep the 05 card phrase from splitting: reduce only this card title, not all cards. */
.result-card-business-effect h3 {
  font-size: clamp(1.08rem, 1.08vw, 1.22rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -.035em;
}

.business-effect-nowrap {
  display: inline-block;
  white-space: nowrap !important;
  font-size: .94em;
}

/* Balanced ROI heading: three intentional lines, no lonely preposition. */
.roi-title {
  font-size: clamp(2.55rem, 4.45vw, 4.65rem) !important;
  line-height: 1.03 !important;
  letter-spacing: -.055em;
  max-width: 880px;
}

.roi-title-line {
  display: block;
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .roi-title {
    font-size: clamp(2.25rem, 6.2vw, 4rem) !important;
    max-width: 100%;
  }

  .result-card-business-effect h3 {
    font-size: clamp(1.08rem, 2.2vw, 1.28rem) !important;
  }
}

@media (max-width: 760px) {
  .roi-title {
    font-size: clamp(2.05rem, 9.2vw, 3.15rem) !important;
  }

  .roi-title-line {
    white-space: normal;
  }

  .business-effect-nowrap {
    white-space: nowrap !important;
  }
}



/* v35 — fix ROI calculator layout after wide heading and keep panel usable */
.roi-calculator {
  overflow: hidden;
}

.roi-grid {
  grid-template-columns: minmax(0, 0.96fr) minmax(440px, 520px) !important;
  gap: clamp(42px, 5vw, 78px) !important;
  align-items: center !important;
}

.roi-grid > .section-copy {
  min-width: 0;
  max-width: 680px;
}

.roi-title {
  max-width: 650px !important;
  font-size: clamp(2.55rem, 3.75vw, 4.05rem) !important;
  line-height: 1.06 !important;
  letter-spacing: -.052em;
}

.roi-title-line {
  display: block;
  white-space: nowrap;
}

.roi-panel {
  width: 100%;
  min-width: 0;
  max-width: 520px;
  justify-self: end;
  padding: 28px !important;
}

.roi-panel label {
  min-width: 0;
}

.roi-panel output {
  min-width: 92px;
  white-space: nowrap;
}

.roi-result {
  overflow: hidden;
}

.roi-result strong {
  font-size: clamp(2.25rem, 3.45vw, 3.45rem) !important;
  white-space: nowrap;
  max-width: 100%;
}

.roi-panel .btn {
  width: 100%;
  justify-content: center;
  white-space: normal;
  text-align: center;
}

@media (max-width: 1180px) {
  .roi-grid {
    grid-template-columns: 1fr !important;
  }

  .roi-grid > .section-copy {
    max-width: 820px;
  }

  .roi-title {
    max-width: 760px !important;
    font-size: clamp(2.45rem, 6.2vw, 4rem) !important;
  }

  .roi-panel {
    justify-self: stretch;
    max-width: 720px;
  }
}

@media (max-width: 760px) {
  .roi-title {
    font-size: clamp(2.05rem, 9vw, 3rem) !important;
    max-width: 100% !important;
  }

  .roi-title-line {
    white-space: normal;
  }

  .roi-panel {
    padding: 22px !important;
  }

  .roi-result strong {
    font-size: clamp(2rem, 11vw, 3rem) !important;
    white-space: normal;
  }
}

@media (max-width: 420px) {
  .roi-title {
    font-size: clamp(1.9rem, 10.4vw, 2.6rem) !important;
  }

  .roi-result strong {
    font-size: clamp(1.85rem, 10vw, 2.55rem) !important;
  }
}

/* v36 — targeted visual fixes: ROI subtitle, consistent range thumbs, mobile logo marquee */
.roi-calculator .section-copy > .lead {
  color: rgba(255,255,255,.86) !important;
}

.roi-panel input[type="range"] {
  --range-progress: 0%;
  --range-thumb-size: 22px;
  --range-track-height: 8px;
  -webkit-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  height: 28px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  touch-action: pan-y;
  accent-color: var(--green);
}

.roi-panel input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: var(--range-track-height);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green-3) 0 var(--range-progress), rgba(255,255,255,.30) var(--range-progress) 100%);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: inset 0 1px 2px rgba(7,19,39,.22), 0 0 0 1px rgba(135,189,105,.08);
}

.roi-panel input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: var(--range-thumb-size);
  height: var(--range-thumb-size);
  margin-top: calc((var(--range-track-height) - var(--range-thumb-size)) / 2 - 1px);
  border-radius: 50%;
  border: 0;
  background: linear-gradient(135deg, var(--green-3), var(--green));
  box-shadow: 0 0 0 5px rgba(135,189,105,.13), 0 7px 18px rgba(7,19,39,.22);
}

.roi-panel input[type="range"]::-moz-range-track {
  width: 100%;
  height: var(--range-track-height);
  border-radius: 999px;
  background: rgba(255,255,255,.30);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: inset 0 1px 2px rgba(7,19,39,.22), 0 0 0 1px rgba(135,189,105,.08);
}

.roi-panel input[type="range"]::-moz-range-progress {
  height: var(--range-track-height);
  border-radius: 999px;
  background: var(--green-3);
}

.roi-panel input[type="range"]::-moz-range-thumb {
  width: var(--range-thumb-size);
  height: var(--range-thumb-size);
  border-radius: 50%;
  border: 0;
  background: linear-gradient(135deg, var(--green-3), var(--green));
  box-shadow: 0 0 0 5px rgba(135,189,105,.13), 0 7px 18px rgba(7,19,39,.22);
}

.roi-panel input[type="range"]:focus-visible {
  outline: 2px solid rgba(199,237,119,.78);
  outline-offset: 5px;
}

.logo-track {
  transform: translate3d(0,0,0);
  -webkit-transform: translate3d(0,0,0);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  animation-name: logoMarqueeStable;
}

@keyframes logoMarqueeStable {
  from {
    transform: translate3d(0,0,0);
    -webkit-transform: translate3d(0,0,0);
  }
  to {
    transform: translate3d(calc(-50% - 7px),0,0);
    -webkit-transform: translate3d(calc(-50% - 7px),0,0);
  }
}

@media (hover: none), (pointer: coarse) {
  .logo-marquee:hover .logo-track {
    animation-play-state: running;
  }

  .logo-track {
    animation: logoMarqueeStable 24s linear infinite;
  }
}

/* v37 — corrected ROI range fill direction and robust mobile logo marquee */
.roi-panel input[type="range"] {
  --range-progress: 0%;
  --range-thumb-size: 22px;
  --range-track-height: 8px;
  -webkit-appearance: none !important;
  appearance: none !important;
  direction: ltr !important;
  width: 100%;
  height: 28px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background:
    linear-gradient(90deg,
      var(--green-3) 0%,
      var(--green-3) var(--range-progress),
      rgba(255,255,255,.30) var(--range-progress),
      rgba(255,255,255,.30) 100%)
    center / 100% var(--range-track-height) no-repeat !important;
  cursor: pointer;
  touch-action: pan-y;
  accent-color: auto;
}

.roi-panel input[type="range"].range-empty {
  background: rgba(255,255,255,.30) center / 100% var(--range-track-height) no-repeat !important;
}

.roi-panel input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: var(--range-track-height);
  border-radius: 999px;
  background: transparent !important;
  border: 1px solid rgba(255,255,255,.26);
  box-shadow: inset 0 1px 2px rgba(7,19,39,.22);
}

.roi-panel input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none !important;
  appearance: none !important;
  width: var(--range-thumb-size);
  height: var(--range-thumb-size);
  margin-top: calc((var(--range-track-height) - var(--range-thumb-size)) / 2 - 1px);
  border-radius: 50%;
  border: 0;
  background: linear-gradient(135deg, var(--green-3), var(--green));
  box-shadow: 0 0 0 5px rgba(135,189,105,.13), 0 7px 18px rgba(7,19,39,.22);
}

.roi-panel input[type="range"]::-moz-range-track {
  width: 100%;
  height: var(--range-track-height);
  border-radius: 999px;
  background: rgba(255,255,255,.30) !important;
  border: 1px solid rgba(255,255,255,.26);
  box-shadow: inset 0 1px 2px rgba(7,19,39,.22);
}

.roi-panel input[type="range"]::-moz-range-progress {
  height: var(--range-track-height);
  border-radius: 999px 0 0 999px;
  background: var(--green-3) !important;
}

.roi-panel input[type="range"].range-empty::-moz-range-progress {
  background: transparent !important;
}

.logo-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logo-track {
  flex-wrap: nowrap;
  width: max-content;
  min-width: max-content;
  transform: translate3d(0,0,0);
  -webkit-transform: translate3d(0,0,0);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  animation: logoMarqueeStable var(--logo-marquee-duration, 24s) linear infinite !important;
  animation-play-state: running !important;
}

.logo-track.is-js-marquee {
  animation: none !important;
}

.logo-marquee:hover .logo-track {
  animation-play-state: running !important;
}

@keyframes logoMarqueeStable {
  from {
    transform: translate3d(0,0,0);
    -webkit-transform: translate3d(0,0,0);
  }
  to {
    transform: translate3d(var(--logo-marquee-distance, calc(-50% - 7px)),0,0);
    -webkit-transform: translate3d(var(--logo-marquee-distance, calc(-50% - 7px)),0,0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-track:not(.is-js-marquee) {
    animation: logoMarqueeStable var(--logo-marquee-duration, 24s) linear infinite !important;
    animation-iteration-count: infinite !important;
  }
}

/* v38 — restore rounded ROI range track; only fill direction is corrected */
.roi-panel input[type="range"] {
  background: transparent !important;
  overflow: visible;
}

.roi-panel input[type="range"].range-empty {
  background: transparent !important;
}

.roi-panel input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: var(--range-track-height);
  border-radius: 999px;
  background: linear-gradient(90deg,
    var(--green-3) 0%,
    var(--green-3) var(--range-progress),
    rgba(255,255,255,.30) var(--range-progress),
    rgba(255,255,255,.30) 100%) !important;
  border: 1px solid rgba(255,255,255,.26);
  box-shadow: inset 0 1px 2px rgba(7,19,39,.22);
}

.roi-panel input[type="range"].range-empty::-webkit-slider-runnable-track {
  background: rgba(255,255,255,.30) !important;
}

.roi-panel input[type="range"].range-full::-webkit-slider-runnable-track {
  background: var(--green-3) !important;
}

.roi-panel input[type="range"]::-moz-range-track {
  border-radius: 999px;
}

.roi-panel input[type="range"]::-moz-range-progress {
  border-radius: 999px 0 0 999px;
}

.roi-panel input[type="range"].range-full::-moz-range-progress {
  border-radius: 999px;
}

/* v39 — custom ROI range surface; only fixes the filled end side and preserves rounded shape */
.roi-panel .range-shell {
  grid-column: 1 / -1;
  position: relative;
  display: block;
  width: 100%;
  height: 32px;
  margin: 0;
  padding: 0;
  overflow: visible;
  --range-progress: 0%;
  --range-thumb-size: 22px;
  --range-track-height: 8px;
}

.roi-panel .range-visual {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: var(--range-track-height);
  transform: translateY(-50%);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,.30);
  border: 0;
  box-shadow: inset 0 1px 2px rgba(7,19,39,.22);
  pointer-events: none;
}

.roi-panel .range-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--range-progress);
  border-radius: 999px 0 0 999px;
  background: var(--green-3);
  pointer-events: none;
}

.roi-panel .range-shell.range-empty .range-fill {
  width: 0;
}

.roi-panel .range-shell.range-full .range-fill {
  border-radius: 999px;
}

.roi-panel .range-thumb {
  position: absolute;
  z-index: 1;
  left: var(--range-progress);
  top: 50%;
  width: var(--range-thumb-size);
  height: var(--range-thumb-size);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--green-3), var(--green));
  box-shadow: 0 0 0 5px rgba(135,189,105,.13), 0 7px 18px rgba(7,19,39,.22);
  pointer-events: none;
}

.roi-panel .range-shell input[type="range"] {
  position: absolute !important;
  z-index: 2;
  inset: 0;
  display: block;
  width: 100% !important;
  height: 32px !important;
  margin: 0 !important;
  padding: 0 !important;
  opacity: 0;
  cursor: pointer;
  -webkit-appearance: none !important;
  appearance: none !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  direction: ltr !important;
  touch-action: pan-y;
}

.roi-panel .range-shell input[type="range"]::-webkit-slider-runnable-track {
  height: 32px !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.roi-panel .range-shell input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none !important;
  appearance: none !important;
  width: var(--range-thumb-size) !important;
  height: 32px !important;
  margin-top: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.roi-panel .range-shell input[type="range"]::-moz-range-track,
.roi-panel .range-shell input[type="range"]::-moz-range-progress {
  height: 32px !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.roi-panel .range-shell input[type="range"]::-moz-range-thumb {
  width: var(--range-thumb-size) !important;
  height: 32px !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.roi-panel .range-shell:has(input[type="range"]:focus-visible) {
  outline: 2px solid rgba(199,237,119,.78);
  outline-offset: 4px;
  border-radius: 999px;
}

/* v40 — restore visible ROI thumbs while keeping the corrected rounded fill */
.roi-panel .range-shell {
  position: relative;
  overflow: visible;
}

.roi-panel .range-visual {
  z-index: 0;
  overflow: hidden;
}

.roi-panel .range-thumb {
  z-index: 1;
  display: block;
  opacity: 1;
  visibility: visible;
  pointer-events: none;
}

.roi-panel .range-shell input[type="range"] {
  z-index: 2;
}

/* Pilot heading: slightly smaller so it fits on one line on desktop. */
.pilot .section-head h2 {
  font-size: clamp(2.1rem, 4.1vw, 4.1rem);
}
