:root {
  --ink: #070a12;
  --ink-2: #0b1020;
  --ink-3: #10182a;
  --panel: #11192a;
  --panel-2: #151f34;
  --paper: #f4f7fb;
  --paper-2: #e9eef6;
  --white: #ffffff;
  --text: #f4f7fb;
  --muted: #9aa9c1;
  --dark-text: #101929;
  --dark-muted: #607086;
  --line: rgba(158, 179, 211, 0.17);
  --dark-line: rgba(27, 49, 79, 0.14);
  --blue: #5078ff;
  --blue-bright: #7897ff;
  --cyan: #21d8e5;
  --mint: #38e5b1;
  --violet: #9769ff;
  --coral: #ff6578;
  --shadow: 0 30px 90px rgba(1, 7, 20, 0.3);
  --shadow-soft: 0 22px 60px rgba(20, 44, 75, 0.12);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --shell: min(1240px, calc(100% - 48px));
  --font: "Segoe UI Variable", "Segoe UI", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body { margin: 0; color: var(--text); background: var(--ink); font-family: var(--font); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { color: inherit; font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 4px; }
.shell { width: var(--shell); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; top: 12px; left: 12px; padding: 10px 16px; color: var(--ink); background: var(--cyan); border-radius: 9px; transform: translateY(-150%); transition: transform 160ms ease; }
.skip-link:focus { transform: translateY(0); }

.site-header { position: fixed; z-index: 100; inset: 0 0 auto; height: 82px; border-bottom: 1px solid transparent; transition: background 200ms ease, border-color 200ms ease, backdrop-filter 200ms ease; }
.site-header.is-scrolled { background: rgba(7, 10, 18, 0.84); border-bottom-color: var(--line); backdrop-filter: blur(20px); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand img { flex: 0 0 auto; }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-size: 18px; letter-spacing: -0.02em; }
.brand-copy small { margin-top: 5px; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav > a:not(.button) { position: relative; color: #c5cede; font-size: 13px; font-weight: 650; }
.site-nav > a:not(.button)::after { position: absolute; right: 50%; bottom: -10px; left: 50%; height: 2px; background: linear-gradient(90deg, var(--cyan), var(--blue)); border-radius: 2px; content: ""; transition: right 180ms ease, left 180ms ease; }
.site-nav > a:not(.button):hover::after, .site-nav > a:not(.button):focus-visible::after { right: 0; left: 0; }
.menu-toggle { display: none; place-content: center; width: 46px; height: 46px; padding: 0; background: rgba(255,255,255,.06); border: 1px solid var(--line); border-radius: 12px; cursor: pointer; }
.menu-toggle span:not(.sr-only) { width: 20px; height: 2px; margin: 2.5px auto; background: #fff; border-radius: 2px; transition: transform 180ms ease, opacity 180ms ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 54px; padding: 0 23px; border: 1px solid transparent; border-radius: 12px; font-size: 14px; font-weight: 760; letter-spacing: -0.01em; transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease, border-color 170ms ease; }
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding-inline: 17px; }
.button-primary { color: #07111a; background: linear-gradient(135deg, #55f0d0 0%, #36cee7 48%, #7b97ff 100%); box-shadow: 0 16px 38px rgba(38, 210, 220, 0.2); }
.button-primary:hover { box-shadow: 0 20px 46px rgba(38, 210, 220, 0.3); }
.button-primary svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.button-secondary, .button-header { color: #ecf3ff; background: rgba(255,255,255,.055); border-color: rgba(165,184,214,.24); }
.button-secondary:hover, .button-header:hover { background: rgba(255,255,255,.1); border-color: rgba(184,205,237,.38); }

.eyebrow { margin: 0 0 18px; color: var(--cyan); font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow-dark { color: #2b6da2; }
.hero { position: relative; min-height: 100vh; padding: 155px 0 0; background: linear-gradient(150deg, #070a12 0%, #0a1020 56%, #0d1427 100%); isolation: isolate; overflow: hidden; }
.hero::before { position: absolute; z-index: -3; inset: 0; background: radial-gradient(circle at 50% 7%, rgba(59,109,255,.18), transparent 30%), radial-gradient(circle at 86% 47%, rgba(138,77,255,.14), transparent 27%), radial-gradient(circle at 8% 52%, rgba(16,210,205,.09), transparent 22%); content: ""; }
.hero-grid { position: absolute; z-index: -2; inset: 0; background-image: linear-gradient(rgba(107,139,189,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(107,139,189,.05) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to bottom, #000 10%, transparent 87%); }
.hero-glow { position: absolute; z-index: -1; border: 1px solid rgba(105,131,255,.14); border-radius: 50%; }
.hero-glow-one { top: 160px; left: 50%; width: 880px; height: 880px; transform: translateX(-50%); }
.hero-glow-two { top: 258px; left: 50%; width: 680px; height: 680px; transform: translateX(-50%); }
.hero-copy { position: relative; z-index: 2; max-width: 980px; text-align: center; }
.preview-pill { display: inline-flex; align-items: center; gap: 11px; margin-bottom: 30px; padding: 7px 12px 7px 7px; color: #ccd6e8; background: rgba(255,255,255,.045); border: 1px solid var(--line); border-radius: 999px; font-size: 11px; font-weight: 700; }
.preview-pill > span { display: inline-flex; align-items: center; gap: 6px; padding: 5px 9px; color: #07131a; background: var(--mint); border-radius: inherit; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.preview-pill i { width: 5px; height: 5px; background: currentColor; border-radius: 50%; }
.preview-pill b { color: var(--cyan); font-size: 12px; }
.hero h1 { margin: 0; font-size: clamp(54px, 7vw, 96px); font-weight: 690; letter-spacing: -.068em; line-height: .94; text-wrap: balance; }
.hero h1 em { color: transparent; background: linear-gradient(100deg, #53ead5 0%, #75a4ff 54%, #b27dff 100%); background-clip: text; -webkit-background-clip: text; font-style: normal; }
.hero-lede { max-width: 790px; margin: 28px auto 0; color: #aebbd0; font-size: clamp(18px, 2vw, 21px); line-height: 1.65; text-wrap: balance; }
.hero-actions { display: flex; justify-content: center; gap: 14px; margin-top: 36px; }
.hero-product { position: relative; z-index: 3; margin-top: 80px; }
.hero-product-frame { padding: 1px; background: linear-gradient(135deg, rgba(89,229,219,.6), rgba(112,122,255,.52), rgba(255,255,255,.08)); border-radius: 24px; box-shadow: 0 70px 130px rgba(0,4,15,.58); overflow: hidden; }
.browser-bar { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: 52px; padding: 0 18px; color: #91a1ba; background: rgba(11,17,30,.97); border-bottom: 1px solid var(--line); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 9px; letter-spacing: .06em; text-transform: uppercase; }
.browser-dots { display: flex; gap: 6px; }
.browser-dots i { width: 7px; height: 7px; background: #344157; border-radius: 50%; }
.browser-dots i:first-child { background: var(--coral); }.browser-dots i:nth-child(2) { background: #f2bc55; }.browser-dots i:nth-child(3) { background: var(--mint); }
.browser-address { display: flex; align-items: center; gap: 8px; min-width: 270px; padding: 8px 24px; background: rgba(255,255,255,.035); border: 1px solid var(--line); border-radius: 999px; text-align: center; }
.browser-address i { width: 6px; height: 6px; background: var(--mint); border-radius: 50%; }
.browser-status { display: flex; align-items: center; justify-self: end; gap: 7px; color: #b8ebdc; }.browser-status i { width: 6px; height: 6px; background: var(--mint); border-radius: 50%; box-shadow: 0 0 0 5px rgba(56,229,177,.1); }
.hero-screen { position: relative; aspect-ratio: 16 / 8.7; background: #eaf0f6; overflow: hidden; }
.hero-screen > img { width: 100%; height: auto; transform: translateY(-.5%); }
.pulse-point { position: absolute; display: flex; align-items: center; gap: 8px; color: #09111d; font-size: 10px; font-weight: 800; }
.pulse-point i { width: 12px; height: 12px; background: var(--cyan); border: 3px solid white; border-radius: 50%; box-shadow: 0 0 0 0 rgba(33,216,229,.65); animation: pulse 2.2s ease-out infinite; }
.pulse-point b { padding: 6px 9px; background: rgba(255,255,255,.94); border-radius: 7px; box-shadow: 0 8px 20px rgba(8,30,60,.2); }
.pulse-one { top: 31%; left: 48%; }.pulse-two { right: 11%; bottom: 17%; animation-delay: .8s; }
.hero-float { position: absolute; z-index: 4; display: grid; gap: 3px; min-width: 220px; padding: 15px 17px; background: rgba(11,17,30,.86); border: 1px solid rgba(143,167,205,.22); border-radius: 13px; box-shadow: 0 18px 50px rgba(0,5,17,.42); backdrop-filter: blur(15px); }
.hero-float span { color: #8494af; font-size: 9px; font-weight: 750; letter-spacing: .09em; text-transform: uppercase; }.hero-float strong { display: flex; align-items: center; gap: 8px; font-size: 12px; }.hero-float strong i { width: 7px; height: 7px; background: var(--mint); border-radius: 50%; box-shadow: 0 0 12px var(--mint); }
.hero-float-left { top: 27%; left: -42px; animation: float 5s ease-in-out infinite; }.hero-float-right { right: -34px; bottom: 14%; animation: float 5s 1.3s ease-in-out infinite; }
.proof-rail { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 34px; border: 1px solid var(--line); border-bottom: 0; border-radius: 18px 18px 0 0; overflow: hidden; }
.proof-rail > div { display: grid; grid-template-columns: auto 1fr; column-gap: 12px; padding: 25px 23px 29px; border-right: 1px solid var(--line); }.proof-rail > div:last-child { border-right: 0; }
.proof-rail span { grid-row: span 2; color: var(--cyan); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 10px; }.proof-rail strong { font-size: 13px; }.proof-rail small { margin-top: 3px; color: var(--muted); font-size: 11px; line-height: 1.45; }

.outcome-band { padding: 105px 0; color: var(--dark-text); background: var(--paper); }
.outcome-band-inner { display: grid; grid-template-columns: .55fr 1.25fr 1fr; align-items: start; gap: 70px; }
.outcome-band h2 { max-width: 560px; margin: 0; font-size: clamp(38px, 4vw, 60px); font-weight: 680; letter-spacing: -.05em; line-height: 1.02; }
.outcome-band p:last-child { margin: 5px 0 0; color: var(--dark-muted); font-size: 17px; line-height: 1.75; }

.section-heading { max-width: 780px; margin-bottom: 60px; }
.section-heading-centered { margin-right: auto; margin-left: auto; text-align: center; }
.section-heading h2, .split-heading h2 { margin: 0; font-size: clamp(42px, 5vw, 68px); font-weight: 680; letter-spacing: -.055em; line-height: 1.02; text-wrap: balance; }
.section-heading > p:last-child { max-width: 700px; margin: 22px auto 0; color: var(--muted); font-size: 17px; line-height: 1.7; }

.product-tour { position: relative; padding: 130px 0 120px; background: radial-gradient(circle at 50% 12%, rgba(70,102,255,.16), transparent 28%), var(--ink); overflow: hidden; }
.product-tour::before { position: absolute; inset: 0; background-image: linear-gradient(rgba(108,133,179,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(108,133,179,.035) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to bottom, black, transparent 85%); pointer-events: none; content: ""; }
.tour-shell { position: relative; z-index: 1; display: grid; grid-template-columns: 275px minmax(0, 1fr); background: rgba(14,21,37,.92); border: 1px solid rgba(146,168,206,.19); border-radius: 24px; box-shadow: 0 45px 110px rgba(0,3,13,.52); overflow: hidden; }
.tour-tabs { display: flex; flex-direction: column; padding: 12px; background: rgba(8,13,24,.76); border-right: 1px solid var(--line); }
.tour-tabs button { position: relative; display: grid; grid-template-columns: 29px 1fr; align-items: start; gap: 0 8px; width: 100%; min-height: 105px; padding: 20px 14px; color: #9aa9bf; background: transparent; border: 1px solid transparent; border-radius: 13px; text-align: left; cursor: pointer; transition: color 180ms ease, background 180ms ease, border-color 180ms ease; }
.tour-tabs button:hover { color: #dce7f7; background: rgba(255,255,255,.035); }
.tour-tabs button[aria-selected="true"] { color: white; background: linear-gradient(135deg, rgba(56,96,183,.2), rgba(25,209,211,.07)); border-color: rgba(91,149,242,.26); }
.tour-tabs button[aria-selected="true"]::before { position: absolute; top: 17px; bottom: 17px; left: -13px; width: 3px; background: linear-gradient(var(--cyan), var(--blue)); border-radius: 3px; content: ""; }
.tour-tabs button > span { grid-row: span 2; color: var(--cyan); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 9px; }.tour-tabs strong { font-size: 13px; }.tour-tabs small { margin-top: 4px; color: #7687a2; font-size: 10px; }
.tour-stage { min-width: 0; }
.tour-toolbar { display: flex; align-items: center; justify-content: space-between; height: 54px; padding: 0 17px 0 20px; border-bottom: 1px solid var(--line); }
.tour-toolbar > div { display: flex; align-items: center; gap: 9px; color: #93a4bd; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 9px; letter-spacing: .07em; text-transform: uppercase; }.tour-toolbar > div i { width: 7px; height: 7px; background: var(--mint); border-radius: 50%; box-shadow: 0 0 12px var(--mint); }
.tour-toggle { display: inline-flex; align-items: center; gap: 8px; min-height: 34px; padding: 0 10px; color: #aab9cc; background: rgba(255,255,255,.035); border: 1px solid var(--line); border-radius: 8px; font-size: 9px; font-weight: 750; cursor: pointer; }.tour-toggle span { color: var(--cyan); font-size: 11px; }.tour-toggle b { letter-spacing: .06em; text-transform: uppercase; }
.tour-media { position: relative; aspect-ratio: 16 / 8.65; background: #eaf0f6; overflow: hidden; }
.tour-panel { position: absolute; inset: 0; margin: 0; opacity: 0; visibility: hidden; transform: translateY(14px) scale(.99); transition: opacity 450ms ease, transform 600ms cubic-bezier(.2,.7,.2,1), visibility 450ms; }
.tour-panel.is-active { z-index: 1; opacity: 1; visibility: visible; transform: none; }
.tour-panel a { display: block; height: 100%; }.tour-panel img { width: 100%; height: auto; }
.tour-panel[data-tour-panel="orders"] img, .tour-panel[data-tour-panel="insight"] img { transform: translateY(-1.5%); }
.tour-cursor { position: absolute; z-index: 3; top: 26%; left: 43%; width: 18px; height: 24px; opacity: .85; filter: drop-shadow(0 3px 4px rgba(0,0,0,.25)); animation: cursorMove 7s ease-in-out infinite; pointer-events: none; }
.tour-cursor::before { display: block; width: 16px; height: 22px; background: #07101c; clip-path: polygon(0 0, 100% 70%, 58% 75%, 44% 100%, 31% 91%, 43% 68%, 0 80%); content: ""; }.tour-cursor i { position: absolute; top: -7px; left: -7px; width: 30px; height: 30px; border: 1px solid rgba(33,216,229,.66); border-radius: 50%; opacity: 0; animation: clickRing 7s ease-out infinite; }
.tour-caption { position: relative; min-height: 154px; padding: 25px 188px 22px 28px; background: linear-gradient(90deg, #0f1728, #111b2e); border-top: 1px solid var(--line); }
.tour-caption > div { display: none; }.tour-caption > div.is-active { display: grid; animation: captionIn 350ms ease both; }.tour-caption div span { color: var(--cyan); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }.tour-caption div strong { margin-top: 5px; font-size: 20px; letter-spacing: -.025em; }.tour-caption div p { margin: 5px 0 0; color: var(--muted); font-size: 12px; }
.tour-caption > a { position: absolute; top: 50%; right: 27px; color: #eaf4ff; font-size: 12px; font-weight: 750; transform: translateY(-50%); }.tour-caption > a span { color: var(--cyan); }
.tour-progress { height: 3px; background: rgba(255,255,255,.05); }.tour-progress i { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--cyan), var(--blue), var(--violet)); }.tour-progress i.is-running { animation: tourProgress 7s linear forwards; }
.capture-note { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 22px 0 0; color: #798ba7; font-size: 11px; }.capture-note i { width: 7px; height: 7px; background: var(--mint); border-radius: 50%; }

.workflow-section { padding: 130px 0; background: linear-gradient(180deg, #0a0e19, #0c1322); }
.split-heading { display: grid; grid-template-columns: 1.3fr .7fr; align-items: end; gap: 100px; max-width: none; }
.split-heading > p { margin: 0 0 4px; color: var(--muted); font-size: 16px; line-height: 1.75; }
.workflow-line { display: grid; grid-template-columns: repeat(5, 1fr); margin: 0 0 48px; padding: 0; list-style: none; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.workflow-line li { position: relative; display: grid; gap: 2px; padding: 22px 22px 23px 55px; border-right: 1px solid var(--line); }.workflow-line li:last-child { border-right: 0; }.workflow-line span { position: absolute; top: 24px; left: 20px; color: var(--cyan); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 9px; }.workflow-line strong { font-size: 13px; }.workflow-line small { color: #7f90aa; font-size: 10px; }
.workflow-grid { display: grid; grid-template-columns: 1.15fr .925fr .925fr; gap: 18px; }
.workflow-card { position: relative; min-height: 485px; padding: 30px; background: rgba(255,255,255,.028); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; transition: transform 180ms ease, border-color 180ms ease, background 180ms ease; }.workflow-card:hover { background: rgba(255,255,255,.043); border-color: rgba(130,164,213,.32); transform: translateY(-4px); }
.workflow-card-featured { background: radial-gradient(circle at 100% 0, rgba(53,216,229,.11), transparent 33%), linear-gradient(150deg, rgba(64,98,199,.15), rgba(255,255,255,.025)); border-color: rgba(71,189,218,.24); }
.card-top { display: flex; align-items: center; justify-content: space-between; color: var(--cyan); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }.card-top i { padding: 5px 8px; color: #9cefd7; background: rgba(56,229,177,.08); border: 1px solid rgba(56,229,177,.18); border-radius: 999px; font-size: 8px; font-style: normal; }
.workflow-card h3 { margin: 68px 0 16px; font-size: clamp(28px, 2.4vw, 38px); letter-spacing: -.045em; line-height: 1.05; }.workflow-card p { margin: 0; color: var(--muted); font-size: 14px; }.workflow-card ul { display: grid; gap: 8px; margin: 27px 0 0; padding: 0; list-style: none; }.workflow-card li { color: #c7d2e3; font-size: 12px; }.workflow-card li::before { margin-right: 9px; color: var(--cyan); content: "↳"; }.workflow-card > a { position: absolute; bottom: 28px; left: 30px; color: var(--cyan); font-size: 11px; font-weight: 800; text-transform: uppercase; }

.capability-section { padding: 135px 0; color: var(--dark-text); background: var(--paper); }
.capability-layout { display: grid; grid-template-columns: .83fr 1.17fr; align-items: start; gap: 110px; }
.capability-sticky { position: sticky; top: 125px; }.capability-sticky h2 { margin: 0; font-size: clamp(42px, 4.5vw, 64px); font-weight: 680; letter-spacing: -.055em; line-height: 1.02; }.capability-sticky > p:not(.eyebrow) { max-width: 480px; margin: 26px 0; color: var(--dark-muted); font-size: 16px; line-height: 1.75; }.text-link-dark { display: inline-flex; gap: 9px; padding-bottom: 4px; border-bottom: 1px solid rgba(24,57,92,.28); font-size: 12px; font-weight: 800; text-transform: uppercase; }.text-link-dark span { color: #3174b9; }
.capability-list { border-top: 1px solid var(--dark-line); }.capability-list article { display: grid; grid-template-columns: 45px 1fr; gap: 25px; padding: 37px 0; border-bottom: 1px solid var(--dark-line); }.capability-list article > span { color: #2e83ba; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 10px; }.capability-list h3 { margin: -6px 0 8px; font-size: 25px; letter-spacing: -.035em; }.capability-list p { margin: 0; color: var(--dark-muted); font-size: 14px; line-height: 1.7; }

.teams-section { padding: 130px 0; background: var(--ink); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; }
.team-grid article { position: relative; min-height: 355px; padding: 29px; border-right: 1px solid var(--line); transition: background 180ms ease; }.team-grid article:last-child { border-right: 0; }.team-grid article:hover { background: rgba(255,255,255,.035); }.team-grid span { color: var(--cyan); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }.team-grid strong { display: block; margin: 78px 0 15px; font-size: 20px; line-height: 1.25; }.team-grid p { margin: 0; color: var(--muted); font-size: 13px; }.team-grid i { position: absolute; right: 22px; bottom: 17px; color: rgba(118,143,180,.2); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 48px; font-style: normal; font-weight: 200; }

.config-section { padding: 0 0 130px; background: var(--ink); }
.config-card { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; background: radial-gradient(circle at 87% 15%, rgba(94,72,255,.22), transparent 30%), linear-gradient(140deg, #111b31, #0d1424); border: 1px solid rgba(133,155,198,.23); border-radius: 28px; box-shadow: var(--shadow); overflow: hidden; }
.config-copy { padding: 70px 65px; }.config-copy h2 { margin: 0; font-size: clamp(42px, 4vw, 62px); letter-spacing: -.055em; line-height: 1.02; }.config-copy > p:not(.eyebrow) { margin: 23px 0; color: var(--muted); font-size: 15px; line-height: 1.75; }.config-tags { display: flex; flex-wrap: wrap; gap: 8px; }.config-tags span { padding: 7px 10px; color: #b8c7dd; background: rgba(255,255,255,.04); border: 1px solid var(--line); border-radius: 7px; font-size: 10px; }
.config-visual { position: relative; min-height: 520px; background-image: linear-gradient(rgba(117,145,190,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(117,145,190,.06) 1px, transparent 1px); background-size: 38px 38px; overflow: hidden; }.config-visual::after { position: absolute; inset: 0; background: radial-gradient(circle, transparent 28%, #0f182a 92%); content: ""; pointer-events: none; }
.brand-preview { position: absolute; z-index: 2; display: grid; grid-template-columns: 45px 1fr; align-items: center; column-gap: 13px; width: 305px; padding: 17px; background: rgba(8,15,27,.88); border: 1px solid rgba(147,170,210,.25); border-radius: 14px; box-shadow: 0 20px 60px rgba(0,4,14,.45); backdrop-filter: blur(12px); }.brand-preview > span { grid-row: span 2; width: 45px; height: 45px; background: linear-gradient(145deg, var(--cyan), var(--blue)); border-radius: 12px; }.brand-preview strong { font-size: 14px; }.brand-preview small { color: #8191a9; font-size: 9px; text-transform: uppercase; }.preview-a { top: 95px; left: 15px; transform: rotate(-5deg); }.preview-b { top: 195px; right: -8px; transform: rotate(4deg); }.preview-b > span { background: linear-gradient(145deg, var(--coral), var(--violet)); }
.brand-controls { position: absolute; z-index: 3; right: 55px; bottom: 60px; left: 55px; padding: 20px; background: rgba(10,17,30,.9); border: 1px solid rgba(147,170,210,.24); border-radius: 14px; box-shadow: 0 20px 60px rgba(0,4,14,.45); }.brand-controls p { margin: 0 0 12px; color: #d9e3f0; font-size: 11px; font-weight: 750; }.brand-controls > span { display: flex; gap: 8px; }.brand-controls i { width: 25px; height: 25px; border: 3px solid rgba(255,255,255,.85); border-radius: 50%; background: var(--cyan); }.brand-controls i:nth-child(2) { background: var(--blue); }.brand-controls i:nth-child(3) { background: var(--violet); }.brand-controls i:nth-child(4) { background: var(--coral); }.brand-controls b { display: block; margin-top: 11px; color: #7586a0; font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }

.sst-section { padding: 135px 0; background: linear-gradient(160deg, #080c16, #0d1526); }
.sst-layout { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 110px; }
.sst-map { position: relative; min-height: 530px; border: 1px solid var(--line); border-radius: 28px; background: radial-gradient(circle at 52% 58%, rgba(34,216,229,.13), transparent 22%), #0b1220; overflow: hidden; }.sst-map::before { position: absolute; inset: 11% 8%; border: 1px solid rgba(89,118,169,.16); border-radius: 50%; content: ""; }.sst-map::after { position: absolute; inset: 22% 19%; border: 1px solid rgba(89,118,169,.2); border-radius: 50%; content: ""; }.sst-map-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(96,125,170,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(96,125,170,.06) 1px, transparent 1px); background-size: 44px 44px; }.sst-location { position: absolute; z-index: 2; top: 57%; left: 51%; display: grid; gap: 8px; transform: translate(-50%,-50%); text-align: center; }.sst-location i { width: 16px; height: 16px; margin: auto; background: var(--cyan); border: 4px solid #0a1725; border-radius: 50%; box-shadow: 0 0 0 12px rgba(33,216,229,.1), 0 0 38px rgba(33,216,229,.7); }.sst-location b { font-size: 12px; }.sst-map > small { position: absolute; right: 22px; bottom: 18px; color: #64758e; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 9px; }
.sst-copy h2 { margin: 0; font-size: clamp(42px, 4.5vw, 64px); letter-spacing: -.055em; line-height: 1.02; }.sst-copy > p:not(.eyebrow) { margin: 25px 0; color: var(--muted); font-size: 16px; line-height: 1.75; }.sst-paths { margin: 30px 0; border-top: 1px solid var(--line); }.sst-paths article { display: grid; grid-template-columns: 35px 1fr; gap: 14px; padding: 20px 0; border-bottom: 1px solid var(--line); }.sst-paths article > span { color: var(--cyan); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 9px; }.sst-paths strong { font-size: 14px; }.sst-paths p { margin: 3px 0 0; color: #8595ae; font-size: 12px; }

.roadmap-section { padding: 130px 0; color: var(--dark-text); background: var(--paper-2); }
.roadmap-heading { display: grid; grid-template-columns: 1.15fr .85fr; gap: 110px; margin-bottom: 55px; }.roadmap-heading h2 { max-width: 680px; margin: 0; font-size: clamp(42px, 4.5vw, 64px); letter-spacing: -.055em; line-height: 1.02; }.roadmap-heading > p { align-self: end; margin: 0; padding: 18px; color: var(--dark-muted); background: rgba(255,255,255,.55); border: 1px solid var(--dark-line); border-radius: 12px; font-size: 12px; }.roadmap-heading > p strong { display: block; margin-bottom: 3px; color: #9b4b55; }
.roadmap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }.roadmap-grid article { min-height: 185px; padding: 22px; background: rgba(255,255,255,.6); border: 1px solid var(--dark-line); border-radius: 14px; transition: transform 170ms ease, background 170ms ease; }.roadmap-grid article:hover { background: white; transform: translateY(-3px); }.roadmap-grid span { display: inline-block; padding: 4px 7px; color: #6d5574; background: #eee6f5; border-radius: 999px; font-size: 8px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }.roadmap-grid strong { display: block; margin-top: 45px; font-size: 17px; }.roadmap-grid p { margin: 4px 0 0; color: var(--dark-muted); font-size: 11px; }

.faq-section { padding: 130px 0; background: var(--ink); }
.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 110px; }.faq-heading h2 { margin: 0; font-size: clamp(42px, 4.5vw, 62px); letter-spacing: -.055em; line-height: 1.03; }.faq-heading > p:last-child { color: var(--muted); font-size: 15px; }.faq-list { border-top: 1px solid var(--line); }.faq-list details { border-bottom: 1px solid var(--line); }.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 0; font-size: 15px; font-weight: 700; cursor: pointer; list-style: none; }.faq-list summary::-webkit-details-marker { display: none; }.faq-list summary span { color: var(--cyan); font-size: 22px; font-weight: 300; transition: transform 180ms ease; }.faq-list details[open] summary span { transform: rotate(45deg); }.faq-list details p { max-width: 720px; margin: -7px 0 27px; color: var(--muted); font-size: 13px; line-height: 1.75; }

.contact-section { padding: 0 0 130px; background: var(--ink); }
.contact-card { display: grid; grid-template-columns: .92fr 1.08fr; background: radial-gradient(circle at 12% 12%, rgba(45,216,222,.14), transparent 28%), linear-gradient(145deg, #111a2d, #0c1323); border: 1px solid rgba(135,159,198,.23); border-radius: 28px; box-shadow: var(--shadow); overflow: hidden; }.contact-copy { padding: 70px 64px; }.contact-copy h2 { margin: 0; font-size: clamp(43px, 4.5vw, 66px); letter-spacing: -.06em; line-height: .99; }.contact-copy > p:not(.eyebrow) { margin: 25px 0; color: var(--muted); font-size: 15px; line-height: 1.75; }.contact-email { display: inline-flex; gap: 10px; color: var(--cyan); font-size: 20px; font-weight: 700; }.contact-copy > small { display: block; margin-top: 17px; color: #71829d; font-size: 10px; }
.inquiry-form { display: grid; gap: 16px; padding: 55px; background: rgba(255,255,255,.035); border-left: 1px solid var(--line); }.inquiry-form label { display: grid; gap: 7px; color: #b9c6d9; font-size: 10px; font-weight: 750; letter-spacing: .04em; text-transform: uppercase; }.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }.inquiry-form input, .inquiry-form select, .inquiry-form textarea { width: 100%; padding: 13px 14px; color: #edf4ff; background: rgba(6,11,20,.58); border: 1px solid rgba(135,159,198,.23); border-radius: 10px; font-size: 13px; font-weight: 500; letter-spacing: 0; outline: none; text-transform: none; transition: border-color 160ms ease, box-shadow 160ms ease; }.inquiry-form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, #8296b2 50%), linear-gradient(135deg, #8296b2 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }.inquiry-form option { color: #121a28; background: white; }.inquiry-form textarea { resize: vertical; }.inquiry-form input:focus, .inquiry-form select:focus, .inquiry-form textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(33,216,229,.08); }.inquiry-form .button { width: 100%; margin-top: 4px; }.form-note { margin: -2px 0 0; color: #71829d; font-size: 9px; text-align: center; }

.site-footer { padding: 70px 0 25px; background: #05070d; border-top: 1px solid var(--line); }.footer-main { display: grid; grid-template-columns: 1fr auto; gap: 90px; padding-bottom: 55px; }.footer-brand p { margin: 20px 0 0; color: #7e8da3; font-size: 12px; }.footer-links { display: grid; grid-template-columns: repeat(2, 160px); gap: 55px; }.footer-links div { display: grid; align-content: start; gap: 10px; }.footer-links strong { margin-bottom: 7px; color: #dbe5f3; font-size: 11px; text-transform: uppercase; }.footer-links a { color: #7e8da3; font-size: 11px; }.footer-links a:hover { color: var(--cyan); }.footer-bottom { display: flex; justify-content: space-between; padding-top: 20px; color: #5e6d82; border-top: 1px solid var(--line); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }

.error-page { display: grid; min-height: 100vh; place-items: center; padding: 30px; background: radial-gradient(circle at 50% 30%, rgba(80,120,255,.16), transparent 30%), var(--ink); }.error-page main { width: min(650px, 100%); padding: 60px; background: rgba(17,25,42,.84); border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); text-align: center; }.error-page main > img { margin: 0 auto 28px; }.error-page h1 { margin: 0; font-size: clamp(42px, 7vw, 70px); letter-spacing: -.06em; line-height: 1; }.error-page main > p:not(.eyebrow) { margin: 20px auto 28px; color: var(--muted); }.error-page .button { margin: auto; }

.js [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 650ms ease, transform 750ms cubic-bezier(.2,.7,.2,1); }.js [data-reveal].is-visible { opacity: 1; transform: none; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(33,216,229,.65); } 70%,100% { box-shadow: 0 0 0 13px rgba(33,216,229,0); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes tourProgress { from { width: 0; } to { width: 100%; } }
@keyframes captionIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@keyframes cursorMove { 0%,12% { transform: translate(0,0); } 38%,52% { transform: translate(170px,70px); } 78%,100% { transform: translate(370px,-10px); } }
@keyframes clickRing { 0%,40%,100% { opacity: 0; transform: scale(.4); } 48% { opacity: 1; transform: scale(1); } 58% { opacity: 0; transform: scale(1.35); } }

@media (max-width: 1080px) {
  :root { --shell: min(100% - 36px, 1000px); }
  .site-nav { gap: 18px; }.site-nav > a:not(.button) { font-size: 12px; }
  .proof-rail { grid-template-columns: repeat(2, 1fr); }.proof-rail > div:nth-child(2) { border-right: 0; }.proof-rail > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .outcome-band-inner { grid-template-columns: .45fr 1.1fr 1fr; gap: 40px; }
  .tour-shell { grid-template-columns: 220px minmax(0,1fr); }.tour-tabs button { min-height: 98px; padding-inline: 11px; }
  .workflow-grid { grid-template-columns: 1fr 1fr; }.workflow-card:first-child { grid-column: span 2; min-height: 410px; }
  .workflow-line li { padding-left: 43px; }.workflow-line span { left: 14px; }
  .capability-layout, .sst-layout { gap: 65px; }
  .team-grid { grid-template-columns: repeat(2,1fr); }.team-grid article { border-bottom: 1px solid var(--line); }.team-grid article:nth-child(2) { border-right: 0; }.team-grid article:nth-child(n+3) { border-bottom: 0; }
  .config-copy { padding: 55px 45px; }.roadmap-grid { grid-template-columns: repeat(3,1fr); }
  .contact-copy { padding: 60px 45px; }.inquiry-form { padding: 45px 35px; }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 30px, 700px); }
  .site-header { height: 72px; }.menu-toggle { display: grid; }.site-nav { position: fixed; z-index: 99; top: 72px; right: 15px; left: 15px; display: grid; gap: 0; padding: 12px; background: rgba(9,14,25,.98); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: opacity 180ms ease, transform 180ms ease, visibility 180ms; }.site-nav.is-open { opacity: 1; visibility: visible; transform: none; }.site-nav > a:not(.button) { padding: 14px 12px; border-bottom: 1px solid var(--line); font-size: 14px; }.site-nav > a:not(.button)::after { display: none; }.site-nav .button { margin-top: 12px; }
  .hero { padding-top: 125px; }.hero h1 { font-size: clamp(48px, 13vw, 76px); }.hero-product { margin-top: 60px; }.browser-address { min-width: 0; padding-inline: 14px; }.browser-status { display: none; }.browser-bar { grid-template-columns: 1fr auto; }.hero-float { display: none; }.pulse-point b { display: none; }
  .proof-rail { margin-top: 25px; }.proof-rail > div { padding: 20px; }
  .outcome-band { padding: 85px 0; }.outcome-band-inner { grid-template-columns: 1fr; gap: 17px; }.outcome-band .eyebrow { margin-bottom: 0; }
  .product-tour, .workflow-section, .capability-section, .teams-section, .sst-section, .roadmap-section, .faq-section { padding: 95px 0; }.section-heading { margin-bottom: 45px; }
  .tour-shell { grid-template-columns: 1fr; }.tour-tabs { display: grid; grid-template-columns: repeat(4, minmax(145px,1fr)); overflow-x: auto; border-right: 0; border-bottom: 1px solid var(--line); }.tour-tabs button { min-height: 85px; }.tour-tabs button[aria-selected="true"]::before { top: auto; right: 13px; bottom: -13px; left: 13px; width: auto; height: 3px; }.tour-caption { min-height: 172px; padding-right: 28px; padding-bottom: 50px; }.tour-caption > a { top: auto; right: auto; bottom: 20px; left: 28px; transform: none; }
  .split-heading { grid-template-columns: 1fr; gap: 25px; }.workflow-line { grid-template-columns: 1fr; }.workflow-line li { border-right: 0; border-bottom: 1px solid var(--line); }.workflow-line li:last-child { border-bottom: 0; }
  .workflow-grid { grid-template-columns: 1fr; }.workflow-card:first-child { grid-column: auto; }.workflow-card { min-height: 455px; }
  .capability-layout { grid-template-columns: 1fr; gap: 55px; }.capability-sticky { position: static; }
  .config-card { grid-template-columns: 1fr; }.config-visual { min-height: 450px; }.sst-layout { grid-template-columns: 1fr; }.sst-map { min-height: 420px; order: 2; }
  .roadmap-heading { grid-template-columns: 1fr; gap: 28px; }.roadmap-grid { grid-template-columns: repeat(2,1fr); }
  .faq-layout { grid-template-columns: 1fr; gap: 55px; }.contact-card { grid-template-columns: 1fr; }.inquiry-form { border-top: 1px solid var(--line); border-left: 0; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 24px); }
  .brand-copy small { max-width: 180px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .hero { padding-top: 112px; }.hero h1 { font-size: 49px; }.hero-lede { font-size: 17px; }.preview-pill { gap: 7px; font-size: 9px; }.preview-pill > span { font-size: 7px; }.hero-actions { display: grid; }.hero-product { width: calc(100% - 10px); margin-top: 45px; }.browser-bar { height: 42px; padding-inline: 10px; }.browser-address { font-size: 7px; }.hero-screen { aspect-ratio: 1.35; }.hero-screen > img { width: 137%; max-width: none; }.proof-rail { grid-template-columns: 1fr; }.proof-rail > div { border-right: 0; border-bottom: 1px solid var(--line); }.proof-rail > div:last-child { border-bottom: 0; }
  .outcome-band h2, .section-heading h2, .split-heading h2, .capability-sticky h2, .config-copy h2, .sst-copy h2, .roadmap-heading h2, .faq-heading h2, .contact-copy h2 { font-size: 39px; }
  .tour-tabs { grid-template-columns: repeat(4, 155px); }.tour-media { aspect-ratio: 1.3; }.tour-panel img { width: 135%; max-width: none; }.tour-caption { min-height: 205px; }.tour-caption div strong { font-size: 18px; }.tour-toggle b { display: none; }.capture-note { align-items: flex-start; text-align: center; }
  .workflow-card { min-height: 485px; padding: 25px; }.workflow-card h3 { margin-top: 55px; font-size: 31px; }.workflow-card > a { left: 25px; }
  .capability-list article { grid-template-columns: 32px 1fr; gap: 12px; }.team-grid { grid-template-columns: 1fr; }.team-grid article { border-right: 0; border-bottom: 1px solid var(--line) !important; }.team-grid article:last-child { border-bottom: 0 !important; }
  .config-copy, .contact-copy { padding: 45px 27px; }.config-visual { min-height: 410px; }.brand-preview { width: 260px; }.preview-a { left: -12px; }.preview-b { right: -25px; }.brand-controls { right: 22px; bottom: 35px; left: 22px; }
  .roadmap-grid { grid-template-columns: 1fr; }.roadmap-grid article { min-height: 150px; }.roadmap-grid strong { margin-top: 30px; }.sst-map { min-height: 350px; }
  .inquiry-form { padding: 36px 22px; }.field-row { grid-template-columns: 1fr; }.contact-email { font-size: 16px; }.footer-main { grid-template-columns: 1fr; gap: 45px; }.footer-links { grid-template-columns: 1fr 1fr; gap: 20px; }.footer-bottom { display: grid; gap: 8px; }
}

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

/* Company-led SST homepage */
.hero-company { min-height: auto; padding-top: 138px; }
.hero-company::before { background: radial-gradient(circle at 26% 14%, rgba(35,113,255,.22), transparent 32%), radial-gradient(circle at 84% 48%, rgba(33,216,229,.13), transparent 28%), radial-gradient(circle at 56% 100%, rgba(151,105,255,.11), transparent 28%); }
.hero-company .hero-glow-one { top: 85px; left: 8%; width: 720px; height: 720px; transform: none; }
.hero-company .hero-glow-two { top: 145px; right: -200px; left: auto; width: 660px; height: 660px; transform: none; }
.hero-company-layout { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.07fr) minmax(420px, .93fr); align-items: center; gap: 72px; min-height: 635px; }
.hero-company .hero-copy { max-width: none; text-align: left; }
.hero-company .hero-copy .eyebrow { max-width: 650px; }
.hero-company h1 { max-width: 800px; font-size: clamp(57px, 6.1vw, 88px); line-height: .96; }
.hero-company .hero-lede { max-width: 710px; margin-right: 0; margin-left: 0; text-wrap: pretty; }
.hero-company .hero-actions { justify-content: flex-start; }
.company-system { position: relative; padding: 1px; background: linear-gradient(145deg, rgba(33,216,229,.65), rgba(80,120,255,.48), rgba(255,255,255,.08)); border-radius: 26px; box-shadow: 0 45px 110px rgba(0,4,17,.5); overflow: hidden; }
.company-system::before { position: absolute; z-index: -1; inset: -30%; background: conic-gradient(from 110deg, transparent, rgba(33,216,229,.25), transparent 34%, rgba(80,120,255,.24), transparent 70%); animation: systemGlow 11s linear infinite; content: ""; }
.company-system > * { position: relative; z-index: 1; }
.company-system::after { position: absolute; z-index: 0; inset: 1px; background: radial-gradient(circle at 74% 8%, rgba(45,130,255,.18), transparent 30%), linear-gradient(150deg, rgba(13,23,42,.98), rgba(7,13,25,.98)); border-radius: 25px; content: ""; }
.system-topline { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; color: #8697b1; border-bottom: 1px solid var(--line); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 8px; letter-spacing: .13em; }
.system-topline i { color: var(--mint); font-style: normal; }
.system-core { display: grid; grid-template-columns: 72px 1fr; align-items: center; gap: 20px; padding: 34px 30px 30px; }
.system-core img { filter: drop-shadow(0 12px 22px rgba(0,0,0,.28)); }
.system-core div { display: grid; gap: 7px; }
.system-core small { color: var(--cyan); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.system-core strong { max-width: 390px; font-size: clamp(25px, 2.3vw, 34px); letter-spacing: -.045em; line-height: 1.08; }
.system-grid { display: grid; grid-template-columns: 1fr 1fr; margin: 0 18px; border: 1px solid var(--line); border-radius: 15px; overflow: hidden; }
.system-grid article { position: relative; display: grid; min-height: 112px; align-content: center; padding: 20px 20px 20px 48px; background: rgba(255,255,255,.024); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.system-grid article:nth-child(2n) { border-right: 0; }
.system-grid article:nth-child(n+3) { border-bottom: 0; }
.system-grid span { position: absolute; top: 22px; left: 18px; color: var(--cyan); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 8px; }
.system-grid strong { font-size: 12px; }
.system-grid small { margin-top: 3px; color: #7f90aa; font-size: 9px; line-height: 1.4; }
.system-feature { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 2px 18px; margin: 18px; padding: 18px 20px; background: linear-gradient(115deg, rgba(33,216,229,.1), rgba(80,120,255,.13)); border: 1px solid rgba(70,172,223,.25); border-radius: 14px; transition: background 180ms ease, border-color 180ms ease, transform 180ms ease; }
.system-feature:hover { background: linear-gradient(115deg, rgba(33,216,229,.15), rgba(80,120,255,.2)); border-color: rgba(70,190,230,.42); transform: translateY(-2px); }
.system-feature span { color: var(--cyan); font-size: 8px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.system-feature strong { grid-row: 2; font-size: 19px; }
.system-feature small { grid-row: 3; color: #8293ad; font-size: 10px; }
.system-feature b { grid-column: 2; grid-row: 1 / span 3; color: var(--cyan); font-size: 18px; }
.hero-company .proof-rail { margin-top: 68px; }

.company-offerings { position: relative; padding: 130px 0; background: radial-gradient(circle at 12% 2%, rgba(33,216,229,.09), transparent 26%), linear-gradient(180deg, #0a0f1c, #080c16); overflow: hidden; }
.company-offerings::before { position: absolute; inset: 0; background-image: linear-gradient(rgba(108,133,179,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(108,133,179,.03) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to bottom, black, transparent 90%); content: ""; pointer-events: none; }
.company-offerings .shell { position: relative; z-index: 1; }
.offering-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.offering-card { position: relative; min-height: 390px; padding: 34px; background: rgba(255,255,255,.027); border: 1px solid var(--line); border-radius: 21px; overflow: hidden; transition: transform 180ms ease, border-color 180ms ease, background 180ms ease; }
.offering-card::after { position: absolute; right: -65px; bottom: -65px; width: 180px; height: 180px; border: 1px solid rgba(108,139,192,.14); border-radius: 50%; content: ""; }
.offering-card:hover { background: rgba(255,255,255,.043); border-color: rgba(86,174,222,.3); transform: translateY(-4px); }
.offering-card-featured { background: radial-gradient(circle at 100% 0, rgba(33,216,229,.12), transparent 35%), linear-gradient(150deg, rgba(55,93,195,.17), rgba(255,255,255,.025)); border-color: rgba(62,188,220,.27); }
.offering-card > span { color: var(--cyan); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.offering-card h3 { max-width: 590px; margin: 58px 0 17px; font-size: clamp(29px, 3vw, 42px); letter-spacing: -.05em; line-height: 1.04; }
.offering-card p { max-width: 590px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.72; }
.offering-card ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0 0; padding: 0; list-style: none; }
.offering-card li { padding: 7px 10px; color: #bdcadd; background: rgba(255,255,255,.035); border: 1px solid var(--line); border-radius: 8px; font-size: 10px; }
.roadmap-active { background: linear-gradient(145deg, rgba(255,255,255,.95), rgba(219,246,247,.85)) !important; border-color: rgba(20,146,166,.25) !important; }
.roadmap-active span { color: #116879; background: #d9f3f1; }

@keyframes systemGlow { to { transform: rotate(360deg); } }

@media (max-width: 1080px) {
  .site-nav { gap: 13px; }
  .site-nav > a:not(.button) { font-size: 11px; }
  .hero-company-layout { grid-template-columns: minmax(0,1fr) minmax(365px,.82fr); gap: 42px; }
  .system-core { grid-template-columns: 58px 1fr; padding-inline: 24px; }
  .system-core img { width: 58px; height: 58px; }
  .system-grid article { padding-left: 42px; }
}

@media (max-width: 820px) {
  .hero-company { padding-top: 118px; }
  .hero-company-layout { grid-template-columns: 1fr; gap: 58px; min-height: auto; }
  .hero-company .hero-copy { text-align: center; }
  .hero-company .hero-copy .eyebrow, .hero-company h1, .hero-company .hero-lede { margin-right: auto; margin-left: auto; }
  .hero-company .hero-actions { justify-content: center; }
  .company-system { width: min(620px, 100%); margin: auto; }
  .hero-company .proof-rail { margin-top: 58px; }
  .company-offerings { padding: 95px 0; }
  .offering-grid { grid-template-columns: 1fr; }
  .offering-card { min-height: 350px; }
}

@media (max-width: 560px) {
  .hero-company h1 { font-size: 47px; }
  .hero-company .preview-pill { max-width: 100%; }
  .system-topline span { max-width: 185px; }
  .system-core { grid-template-columns: 48px 1fr; gap: 14px; padding: 27px 20px 23px; }
  .system-core img { width: 48px; height: 48px; }
  .system-core strong { font-size: 23px; }
  .system-grid { grid-template-columns: 1fr; }
  .system-grid article { min-height: 88px; border-right: 0; border-bottom: 1px solid var(--line) !important; }
  .system-grid article:last-child { border-bottom: 0 !important; }
  .system-feature { margin-top: 14px; }
  .offering-card { min-height: 0; padding: 27px; }
  .offering-card h3 { margin-top: 44px; font-size: 32px; }
  .offering-card ul { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  .company-system::before { animation: none; }
}

/* ServiceCore subscription plans */
.pricing-section { position: relative; padding: 125px 0; color: #dce8f7; background: radial-gradient(circle at 80% 5%, rgba(33,216,229,.1), transparent 29%), linear-gradient(180deg, #080d18, #0b1221); overflow: hidden; }
.pricing-section::before { position: absolute; inset: 0; background-image: linear-gradient(rgba(108,133,179,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(108,133,179,.035) 1px, transparent 1px); background-size: 64px 64px; content: ""; pointer-events: none; }
.pricing-section .shell { position: relative; z-index: 1; }
.pricing-grid { display: grid; margin-top: 52px; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; align-items: stretch; }
.pricing-grid > article { position: relative; display: flex; min-width: 0; padding: 28px 25px 25px; flex-direction: column; border: 1px solid var(--line); border-radius: 20px; background: linear-gradient(155deg, rgba(255,255,255,.052), rgba(255,255,255,.018)); box-shadow: 0 24px 70px rgba(0,0,0,.15); }
.pricing-grid > article.pricing-featured { border-color: rgba(33,216,229,.55); background: radial-gradient(circle at 100% 0, rgba(33,216,229,.14), transparent 34%), linear-gradient(155deg, rgba(35,89,190,.19), rgba(255,255,255,.025)); box-shadow: 0 28px 75px rgba(0,9,24,.42); transform: translateY(-9px); }
.pricing-grid > article > em { position: absolute; top: -13px; right: 20px; padding: 7px 11px; color: #04151c; background: var(--cyan); border-radius: 99px; font-size: 8px; font-style: normal; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.pricing-grid header > span { color: var(--cyan); font-size: 8px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.pricing-grid h3 { margin: 11px 0 9px; font-size: 29px; letter-spacing: -.045em; }
.pricing-grid header p { min-height: 70px; margin: 0; color: #8596af; font-size: 11px; line-height: 1.6; }
.site-price { display: flex; margin: 24px 0 5px; align-items: baseline; gap: 5px; }
.site-price strong { color: #fff; font-size: 43px; letter-spacing: -.065em; }
.site-price small { color: #8294ad; font-size: 10px; }
.site-price-meta { min-height: 30px; margin: 0; color: #a7b7cc; font-size: 9px; font-weight: 750; line-height: 1.4; }
.pricing-grid ul { display: grid; margin: 19px 0 26px; padding: 18px 0 0; gap: 10px; border-top: 1px solid var(--line); list-style: none; }
.pricing-grid li { position: relative; padding-left: 18px; color: #bdc9da; font-size: 10px; line-height: 1.45; }
.pricing-grid li::before { position: absolute; left: 0; color: var(--mint); content: "✓"; }
.pricing-grid .button { width: 100%; margin-top: auto; }
.pricing-note { max-width: 880px; margin: 31px auto 0; color: #8496af; font-size: 11px; line-height: 1.7; text-align: center; }
.contact-copy > .button { margin: 20px 0 5px; width: max-content; }
.inquiry-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-note[data-state="success"] { color: #75e6c1; }
.form-note[data-state="error"] { color: #ff9d94; }
.inquiry-form button:disabled { cursor: wait; opacity: .72; }
@media (max-width: 1100px) { .pricing-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } .pricing-grid > article.pricing-featured { transform: none; } }
@media (max-width: 620px) { .pricing-section { padding: 90px 0; } .pricing-grid { grid-template-columns: 1fr; } .pricing-grid header p { min-height: 0; } }
