:root {
  --ink: #f4f8fb;
  --muted: #91a1b2;
  --cyan: #41e4f4;
  --cyan-bright: #8af4ff;
  --blue: #368cff;
  --green: #73f5ba;
  --base: #050a12;
  --surface: #09111d;
  --surface-2: #0c1725;
  --line: rgba(255, 255, 255, 0.09);
  --line-cyan: rgba(65, 228, 244, 0.22);
  --shadow-ring: 0 0 0 1px oklch(1 0 0 / 0.08);
  --shadow-ring-hover: 0 0 0 1px oklch(1 0 0 / 0.15), 0 24px 70px rgba(0, 0, 0, 0.32);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --ease: cubic-bezier(0.2, 0, 0, 1);
}

* { box-sizing: border-box; }

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--base);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

html, body { max-width: 100%; }

::selection { background: var(--cyan); color: var(--base); }

a { color: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }

.section-shell { position: relative; padding: 132px 0; }

.noise {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  left: 0;
  top: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.1;
  background: radial-gradient(circle, var(--cyan) 0%, transparent 67%);
  transform: translate3d(calc(var(--mouse-x, -800px) - 50%), calc(var(--mouse-y, -800px) - 50%), 0);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  z-index: 100;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid transparent;
  transition-property: background-color, border-color, backdrop-filter;
  transition-duration: 220ms;
  transition-timing-function: ease-out;
}

.site-header.scrolled {
  background: rgba(5, 10, 18, 0.76);
  border-color: var(--line);
  backdrop-filter: blur(18px) saturate(140%);
}

.nav { height: 78px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { display: block; width: auto; height: 34px; outline: 1px solid transparent; }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  color: #aab6c2;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition-property: color;
  transition-duration: 150ms;
}
.nav-links a:hover { color: var(--ink); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 19px 0 21px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  transition-property: scale, transform, background-color, box-shadow, color;
  transition-duration: 160ms;
  transition-timing-function: ease-out;
}
.button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.button:hover { transform: translateY(-2px); }
.button:active { scale: 0.96; }
.button:focus-visible, .text-link:focus-visible, .nav a:focus-visible, .founders a:focus-visible, .footer-founders a:focus-visible { outline: 2px solid var(--cyan); outline-offset: 4px; }
.button-small { min-height: 42px; padding-inline: 16px 14px; font-size: 0.82rem; }
.button-ghost { color: var(--ink); background: rgba(255, 255, 255, 0.05); box-shadow: var(--shadow-ring); }
.button-ghost:hover { background: rgba(255, 255, 255, 0.09); box-shadow: var(--shadow-ring-hover); }
.button-primary {
  color: #031015;
  background: linear-gradient(135deg, var(--cyan-bright), var(--cyan));
  box-shadow: 0 10px 35px rgba(65, 228, 244, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.button-primary:hover { box-shadow: 0 16px 44px rgba(65, 228, 244, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.45); }

.hero {
  min-height: 880px;
  padding-top: 180px;
  padding-bottom: 46px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-grid, .cta-grid, .about-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black 0%, rgba(0,0,0,.7) 55%, transparent 100%);
}

.hero-grid::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -10%;
  width: 1px;
  height: 120%;
  background: linear-gradient(transparent, rgba(65, 228, 244, 0.32), transparent);
  box-shadow: 360px 0 rgba(65, 228, 244, 0.08), -360px 0 rgba(65, 228, 244, 0.08);
}

.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero-orb-one { width: 680px; height: 680px; right: -160px; top: -200px; background: radial-gradient(circle, rgba(54, 140, 255, 0.16), transparent 68%); }
.hero-orb-two { width: 500px; height: 500px; left: -280px; top: 210px; background: radial-gradient(circle, rgba(65, 228, 244, 0.08), transparent 68%); }

.hero-layout { position: relative; display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 84px; align-items: center; z-index: 1; }

.eyebrow, .kicker {
  margin: 0 0 22px;
  color: var(--cyan);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow { display: inline-flex; align-items: center; gap: 10px; padding: 7px 12px; background: rgba(65, 228, 244, 0.06); border-radius: 999px; box-shadow: var(--shadow-ring); }
.pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(115, 245, 186, 0.1); animation: dotPulse 2.4s ease-out infinite; }

.hero h1, .display-title, .cta-card h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.98;
}
.hero h1 { max-width: 690px; font-size: clamp(3.8rem, 6.4vw, 6.4rem); }
.hero h1 span, .display-title span, .cta-card h2 span {
  color: transparent;
  background: linear-gradient(102deg, #fff 0%, #83f3ff 45%, #4ca2ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
}
.hero-lead { max-width: 600px; margin: 30px 0 0; color: #a7b5c4; font-size: 1.12rem; line-height: 1.72; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: #c4ced8; text-decoration: none; font-size: 0.9rem; font-weight: 600; transition-property: color; transition-duration: 150ms; }
.text-link span { color: var(--cyan); transition-property: transform; transition-duration: 180ms; transition-timing-function: ease-out; }
.text-link:hover { color: var(--ink); }
.text-link:hover span { transform: translateY(3px); }

.hero-note { display: flex; align-items: center; gap: 14px; margin-top: 36px; }
.hero-note p { max-width: 310px; margin: 0; color: #728496; font-size: 0.78rem; line-height: 1.45; }
.avatar-stack { display: flex; padding-left: 8px; }
.avatar-stack span { display: grid; place-items: center; width: 34px; height: 34px; margin-left: -8px; border: 2px solid var(--base); border-radius: 50%; background: linear-gradient(135deg, #162a42, #0c1624); color: var(--cyan); font-size: 0.62rem; font-weight: 700; box-shadow: var(--shadow-ring); }

.hero-enter { opacity: 0; filter: blur(6px); transform: translateY(18px); animation: heroIn 650ms var(--ease) forwards; animation-delay: var(--delay); }

.automation-console {
  position: relative;
  min-height: 492px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(14, 26, 42, 0.88), rgba(6, 13, 23, 0.96));
  box-shadow: 0 0 0 1px oklch(1 0 0 / 0.11), 0 50px 100px rgba(0, 0, 0, 0.45), 0 0 120px rgba(54, 140, 255, 0.08);
  overflow: hidden;
  transform-style: preserve-3d;
  transition-property: transform, box-shadow;
  transition-duration: 240ms;
  transition-timing-function: ease-out;
}
.automation-console:hover { box-shadow: 0 0 0 1px rgba(65, 228, 244, 0.22), 0 56px 120px rgba(0, 0, 0, 0.5), 0 0 140px rgba(54, 140, 255, 0.12); }
.console-topbar { height: 52px; padding: 0 18px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.018); color: #6f8295; font-family: "Space Grotesk", sans-serif; font-size: .57rem; letter-spacing: .14em; }
.console-dots { display: flex; gap: 6px; }
.console-dots span { width: 7px; height: 7px; border-radius: 50%; background: #253344; }
.console-dots span:first-child { background: rgba(255, 115, 115, .55); }
.console-dots span:nth-child(2) { background: rgba(255, 206, 101, .5); }
.console-dots span:nth-child(3) { background: rgba(115, 245, 186, .5); }
.live-indicator { justify-self: end; display: flex; align-items: center; gap: 6px; color: var(--green); letter-spacing: .06em; text-transform: uppercase; }
.live-indicator i { width: 5px; height: 5px; border-radius: 50%; background: currentColor; box-shadow: 0 0 10px currentColor; }
.console-body { position: relative; padding: 25px; z-index: 1; }
.workflow-label { display: flex; justify-content: space-between; color: #8191a2; font-size: .7rem; }
.workflow-id { color: #4d6175; font-family: "Space Grotesk", sans-serif; }
.workflow-map { position: relative; height: 258px; margin-top: 18px; }
.flow-node { position: absolute; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 11px; width: 78%; min-height: 70px; padding: 13px 14px; border-radius: 15px; background: rgba(10, 22, 37, 0.94); box-shadow: var(--shadow-ring), 0 14px 36px rgba(0, 0, 0, .22); }
.flow-node small { display: block; margin-bottom: 2px; color: #5f7488; font-family: "Space Grotesk", sans-serif; font-size: .5rem; letter-spacing: .13em; }
.flow-node strong { display: block; font-size: .8rem; font-weight: 600; }
.node-trigger { left: 0; top: 0; }
.node-ai { right: 0; top: 94px; box-shadow: 0 0 0 1px rgba(65, 228, 244, .24), 0 14px 50px rgba(65, 228, 244, .07); }
.node-action { left: 0; top: 188px; }
.node-icon { display: grid; place-items: center; width: 39px; height: 39px; border-radius: 10px; background: #101f30; color: #89a1b9; }
.node-icon svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.node-icon.ai-icon { color: var(--cyan); background: rgba(65, 228, 244, .1); }
.node-state { padding: 4px 7px; border-radius: 999px; color: #89a1b9; background: rgba(255,255,255,.04); font-size: .5rem; }
.node-state.success { color: var(--green); background: rgba(115, 245, 186, .07); }
.thinking { display: flex; gap: 3px; }
.thinking i { width: 3px; height: 3px; border-radius: 50%; background: var(--cyan); animation: thinking 1.2s ease-in-out infinite; }
.thinking i:nth-child(2) { animation-delay: 120ms; }
.thinking i:nth-child(3) { animation-delay: 240ms; }
.flow-line { position: absolute; left: 45%; width: 23%; height: 28px; border-right: 1px solid rgba(65, 228, 244, .22); border-bottom: 1px solid rgba(65, 228, 244, .22); border-radius: 0 0 10px; overflow: hidden; }
.line-one { top: 66px; }
.line-two { top: 160px; transform: scaleX(-1); }
.flow-line span { position: absolute; width: 5px; height: 5px; right: -3px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); animation: signalMove 2.4s linear infinite; }
.line-two span { animation-delay: 1.2s; }
.console-feed { margin-top: 20px; border-top: 1px solid var(--line); }
.console-feed > div { display: grid; grid-template-columns: 28px 1fr auto; align-items: center; min-height: 34px; border-bottom: 1px solid rgba(255,255,255,.045); color: #687b8d; font-size: .62rem; }
.console-feed span { font-family: "Space Grotesk", sans-serif; color: #42576a; }
.console-feed p { margin: 0; }
.console-feed time { font-variant-numeric: tabular-nums; }
.console-feed .feed-active { color: #afc2d3; }
.console-feed .feed-active p::after { content: ""; display: inline-block; width: 5px; height: 5px; margin-left: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 9px var(--green); }
.console-glow { position: absolute; width: 280px; height: 280px; left: 30%; top: 27%; border-radius: 50%; background: rgba(65, 228, 244, .07); filter: blur(70px); }

.signal-strip { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 40px; margin-top: 94px; padding-top: 30px; border-top: 1px solid var(--line); color: #5f7183; font-size: .72rem; }
.signal-list { display: flex; align-items: center; gap: 15px; color: #8c9bab; font-family: "Space Grotesk", sans-serif; font-size: .6rem; letter-spacing: .1em; }
.signal-list i { width: 3px; height: 3px; border-radius: 50%; background: #34485c; }

.clients {
  padding: 72px 0 66px;
  background: linear-gradient(180deg, rgba(5, 11, 19, .82), rgba(7, 14, 24, .96));
  border-block: 1px solid var(--line);
  overflow: hidden;
}
.systems > .clients { margin: 58px 0; }
.clients-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 18px; }
.clients-heading span { color: var(--cyan); font-family: "Space Grotesk", sans-serif; font-size: .62rem; font-weight: 700; letter-spacing: .14em; }
.clients-heading h2 { max-width: 510px; margin: 0; color: #9aabba; font-family: "Space Grotesk", sans-serif; font-size: clamp(1.25rem, 2.1vw, 1.75rem); font-weight: 500; letter-spacing: -.025em; line-height: 1.25; text-align: right; }
.client-carousel {
  position: relative;
  min-height: 324px;
  outline: none;
  isolation: isolate;
}
.client-carousel:focus-visible { outline: 2px solid var(--cyan); outline-offset: 8px; border-radius: 20px; }
.carousel-stage {
  position: relative;
  height: 324px;
  perspective: 1200px;
  transform-style: preserve-3d;
  touch-action: pan-y;
  user-select: none;
}
.carousel-stage::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 48%;
  width: min(760px, 74vw);
  height: 230px;
  border: 1px solid rgba(65, 228, 244, .18);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(54, 140, 255, .08), transparent 64%);
  box-shadow: 0 0 70px rgba(65, 228, 244, .06), inset 0 0 42px rgba(65, 228, 244, .035);
  transform: translate(-50%, -50%) rotateX(68deg);
}
.carousel-orbit {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
  transform: translate3d(-380px, -8px, 0);
  opacity: .75;
}
.client-logo {
  position: absolute;
  left: 50%;
  top: 48%;
  width: clamp(270px, 30vw, 370px);
  height: 172px;
  display: grid;
  place-items: center;
  padding: 20px 28px;
  border: 0;
  border-radius: 22px;
  background: #f8fafc;
  box-shadow: 0 0 0 1px oklch(1 0 0 / .1), inset 0 1px 0 rgba(255,255,255,.9), 0 26px 64px rgba(0,0,0,.34);
  overflow: hidden;
  cursor: pointer;
  opacity: .25;
  filter: saturate(.72) brightness(.72) blur(1px);
  transform: translate3d(-50%, -46%, -260px) scale(.67);
  transform-style: preserve-3d;
  transition-property: transform, opacity, filter, box-shadow;
  transition-duration: 680ms;
  transition-timing-function: var(--ease);
  will-change: transform, opacity, filter;
}
.client-logo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 24%, rgba(255,255,255,.48) 48%, transparent 72%);
  opacity: 0;
  transform: translateX(-60%);
  transition-property: opacity, transform;
  transition-duration: 500ms;
  transition-timing-function: ease-out;
}
.client-logo[data-position="0"] {
  z-index: 4;
  opacity: 1;
  filter: none;
  transform: translate3d(-50%, -50%, 145px) rotateY(0deg) scale(1);
  box-shadow: 0 0 0 1px rgba(65, 228, 244, .34), 0 32px 80px rgba(0,0,0,.46), 0 0 70px rgba(54, 140, 255, .13), inset 0 1px 0 rgba(255,255,255,.9);
}
.client-logo[data-position="0"]::after { opacity: .26; transform: translateX(60%); }
.client-logo[data-position="1"] {
  z-index: 3;
  opacity: .66;
  filter: saturate(.82) brightness(.82);
  transform: translate3d(calc(-50% + clamp(220px, 27vw, 320px)), -50%, 0) rotateY(-38deg) scale(.8);
}
.client-logo[data-position="2"] {
  z-index: 1;
  opacity: .23;
  filter: saturate(.6) brightness(.62) blur(1.5px);
  transform: translate3d(-50%, -44%, -270px) rotateY(0deg) scale(.64);
}
.client-logo[data-position="3"] {
  z-index: 2;
  opacity: .66;
  filter: saturate(.82) brightness(.82);
  transform: translate3d(calc(-50% - clamp(220px, 27vw, 320px)), -50%, 0) rotateY(38deg) scale(.8);
}
.client-logo:focus-visible { outline: 3px solid var(--cyan); outline-offset: 5px; }
.client-logo:active { scale: .96; }
.client-logo img { display: block; width: 100%; height: 100%; object-fit: contain; pointer-events: none; }
.client-logo-varssano img { max-width: 126px; max-height: 104px; }
.client-logo-insurance img { max-width: 238px; max-height: 78px; }
.client-logo-ehrlich img { max-width: 230px; max-height: 66px; }
.client-logo-crm img { max-width: 90px; max-height: 72px; }

.section-index { color: #526476; font-family: "Space Grotesk", sans-serif; font-size: .65rem; letter-spacing: .12em; }
.statement { background: linear-gradient(180deg, #070e18, var(--base)); }
.statement-grid, .section-heading { display: grid; grid-template-columns: 1fr 3fr; gap: 48px; }
.statement-content { max-width: 860px; }
.display-title { font-size: clamp(3rem, 5.7vw, 5.9rem); }
.statement-lead { max-width: 620px; margin: 34px 0 0; color: var(--muted); font-size: 1.1rem; }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 88px; }
.process-card, .bento-card {
  position: relative;
  min-height: 308px;
  padding: 28px;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(14, 26, 42, .84), rgba(7, 14, 24, .92));
  box-shadow: var(--shadow-ring);
  overflow: hidden;
  transition-property: transform, box-shadow;
  transition-duration: 180ms;
  transition-timing-function: ease-out;
}
.process-card::before, .bento-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(300px circle at var(--card-x, 50%) var(--card-y, 0%), rgba(65, 228, 244, .1), transparent 55%); opacity: 0; transition-property: opacity; transition-duration: 180ms; }
.process-card:hover, .bento-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-ring-hover); }
.process-card:hover::before, .bento-card:hover::before { opacity: 1; }
.process-number { color: #405367; font-family: "Space Grotesk", sans-serif; font-size: .62rem; letter-spacing: .1em; }
.process-icon { display: grid; place-items: center; width: 48px; height: 48px; margin: 48px 0 24px; border-radius: 13px; color: var(--cyan); background: rgba(65, 228, 244, .07); box-shadow: 0 0 0 1px rgba(65, 228, 244, .13); }
.process-icon svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.process-card h3, .bento-card h3 { margin: 0 0 10px; font-family: "Space Grotesk", sans-serif; font-size: 1.1rem; }
.process-card p, .bento-card p { position: relative; margin: 0; color: #7f91a3; font-size: .87rem; }

.systems { background: #070d16; border-block: 1px solid var(--line); }
.section-heading { margin-bottom: 76px; }
.case-list { display: grid; gap: 18px; }
.case-list-continuation { margin-top: 0; }
.case-study {
  position: relative;
  min-height: 440px;
  display: grid;
  grid-template-columns: .55fr 1.2fr 1fr;
  gap: 44px;
  align-items: center;
  padding: 42px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(13, 24, 39, .92), rgba(7, 14, 23, .97));
  box-shadow: var(--shadow-ring);
  overflow: hidden;
  transition-property: box-shadow, transform;
  transition-duration: 240ms;
  transition-timing-function: ease-out;
}
.case-study:hover { transform: translateY(-4px); box-shadow: var(--shadow-ring-hover); }
.case-study::after { content: ""; position: absolute; width: 440px; height: 440px; right: -90px; bottom: -200px; border-radius: 50%; background: rgba(54, 140, 255, .07); filter: blur(60px); }
.case-meta { align-self: start; display: flex; flex-direction: column; gap: 10px; color: #506478; font-family: "Space Grotesk", sans-serif; font-size: .58rem; letter-spacing: .11em; }
.case-number { color: var(--cyan); }
.case-copy { max-width: 460px; }
.case-copy h3 { margin: 0 0 18px; font-family: "Space Grotesk", sans-serif; font-size: clamp(2rem, 3vw, 3rem); letter-spacing: -.035em; }
.case-copy > p { margin: 0; color: #8fa0b1; font-size: .94rem; }
.case-shift { display: flex; align-items: center; gap: 10px; margin-top: 36px; color: #607386; font-size: .69rem; }
.case-shift i { width: 28px; height: 1px; background: linear-gradient(90deg, #3c5064, var(--cyan)); }
.case-shift strong { color: var(--green); font-weight: 600; }
.case-visual { position: relative; z-index: 1; min-height: 270px; border-radius: 20px; background: rgba(4, 10, 18, .55); box-shadow: inset 0 0 0 1px rgba(255,255,255,.06); overflow: hidden; }
.case-visual::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px); background-size: 32px 32px; }
.mini-window { position: absolute; z-index: 1; width: 68%; padding: 15px; border-radius: 12px; background: rgba(14, 28, 45, .95); box-shadow: var(--shadow-ring), 0 14px 35px rgba(0,0,0,.3); }
.mini-window span, .data-head { color: #587086; font-family: "Space Grotesk", sans-serif; font-size: .46rem; letter-spacing: .12em; }
.mini-window strong { display: block; margin: 5px 0 2px; font-size: .7rem; }
.mini-window small { color: #6e8194; font-size: .55rem; }
.mail-card { left: 9%; top: 32px; animation: floatWindow 5s ease-in-out infinite; }
.calendar-card { right: 8%; bottom: 32px; animation: floatWindow 5s ease-in-out 1.2s infinite; }
.calendar-card small { color: var(--green); }
.calendar-card small i { display: inline-block; width: 4px; height: 4px; margin-right: 4px; border-radius: 50%; background: currentColor; }
.case-path { position: absolute; z-index: 0; left: 20%; top: 31%; width: 58%; height: 48%; fill: none; stroke: rgba(65, 228, 244, .32); stroke-width: 1; stroke-dasharray: 4 6; }
.status-visual { padding: 42px 25px 20px; }
.data-head, .data-row { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
.data-head { padding: 0 12px 10px; }
.data-row { min-height: 53px; padding: 0 12px; border-top: 1px solid var(--line); color: #8ea0b2; font-size: .65rem; }
.data-row strong { color: var(--green); font-size: .59rem; font-weight: 600; }
.data-row strong i { display: inline-block; width: 5px; height: 5px; margin-right: 5px; border-radius: 50%; background: currentColor; box-shadow: 0 0 8px currentColor; }
.data-row.scanning { overflow: hidden; }
.data-row.scanning::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(65,228,244,.1), transparent); transform: translateX(-100%); animation: scan 2.2s ease-in-out infinite; }
.data-row.scanning strong { color: var(--cyan); }
.loyalty-visual { display: grid; place-items: center; }
.loyalty-ring { position: relative; z-index: 1; display: grid; place-items: center; width: 142px; height: 142px; border-radius: 50%; background: conic-gradient(var(--cyan) 0 84%, rgba(255,255,255,.06) 84%); box-shadow: 0 0 45px rgba(65,228,244,.1); }
.loyalty-ring::before { content: ""; position: absolute; inset: 8px; border-radius: 50%; background: #08121e; }
.loyalty-ring span { position: relative; text-align: center; }
.loyalty-ring strong { display: block; font-family: "Space Grotesk", sans-serif; font-size: 2.1rem; line-height: 1; }
.loyalty-ring small { color: #6f8396; font-size: .5rem; }
.insight-pill { position: absolute; z-index: 2; top: 38px; right: 18px; padding: 7px 9px; border-radius: 8px; color: var(--green); background: rgba(9, 25, 29, .95); box-shadow: var(--shadow-ring); font-size: .52rem; }
.chart-bars { position: absolute; left: 24px; bottom: 30px; display: flex; align-items: end; gap: 5px; height: 54px; }
.chart-bars i { width: 5px; height: var(--h); border-radius: 2px 2px 0 0; background: rgba(54, 140, 255, .5); }
.chart-bars i:nth-child(1) { --h: 24%; }.chart-bars i:nth-child(2) { --h: 45%; }.chart-bars i:nth-child(3) { --h: 38%; }.chart-bars i:nth-child(4) { --h: 68%; }.chart-bars i:nth-child(5) { --h: 55%; }.chart-bars i:nth-child(6) { --h: 88%; }.chart-bars i:nth-child(7) { --h: 74%; }

.capabilities { background: radial-gradient(circle at 15% 50%, rgba(54, 140, 255, .06), transparent 32%); }
.capabilities-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 90px; align-items: start; }
.capabilities-copy { position: sticky; top: 130px; }
.capabilities-copy > p:last-child { max-width: 440px; color: var(--muted); }
.bento-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bento-card { min-height: 294px; }
.bento-wide { grid-column: 1 / -1; min-height: 340px; }
.bento-top { position: relative; display: flex; justify-content: space-between; gap: 16px; }
.bento-top > span { order: 2; color: #43586d; font-family: "Space Grotesk", sans-serif; font-size: .6rem; }
.bento-top h3 { max-width: 230px; font-size: 1.25rem; }
.bento-card > p { max-width: 450px; }
.integration-cloud { position: absolute; inset: auto 26px 28px; height: 112px; }
.integration-cloud span { position: absolute; padding: 7px 10px; border-radius: 8px; color: #8194a6; background: rgba(255,255,255,.035); box-shadow: var(--shadow-ring); font-family: "Space Grotesk", sans-serif; font-size: .52rem; letter-spacing: .08em; }
.integration-cloud span:nth-child(1) { left: 2%; top: 42%; }.integration-cloud span:nth-child(2) { left: 25%; top: 9%; }.integration-cloud span:nth-child(3) { left: 47%; top: 50%; color: var(--cyan); box-shadow: 0 0 0 1px rgba(65,228,244,.25), 0 0 28px rgba(65,228,244,.08); }.integration-cloud span:nth-child(4) { right: 20%; top: 11%; }.integration-cloud span:nth-child(5) { right: 1%; top: 58%; }
.decision-ui, .version-ui { position: absolute; left: 28px; right: 28px; bottom: 28px; min-height: 52px; display: flex; align-items: center; gap: 9px; padding: 0 12px; border-radius: 10px; background: rgba(255,255,255,.025); box-shadow: var(--shadow-ring); font-size: .56rem; }
.decision-ui i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }
.decision-ui span { color: #708397; }.decision-ui strong { margin-left: auto; color: var(--green); }
.version-ui span { color: #5f7487; font-family: "Space Grotesk", sans-serif; font-size: .48rem; letter-spacing: .1em; }.version-ui strong { color: var(--ink); }.version-ui i { margin-left: auto; padding: 3px 6px; border-radius: 999px; color: var(--cyan); background: rgba(65,228,244,.06); font-style: normal; }

.about { background: #070d16; border-top: 1px solid var(--line); }
.about-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: center; }
.about-visual { position: relative; min-height: 530px; display: grid; place-items: center; border-radius: var(--radius-lg); background: #050b13; box-shadow: var(--shadow-ring); overflow: hidden; transition-property: transform; transition-duration: 240ms; transition-timing-function: ease-out; transform-style: preserve-3d; }
.about-visual img { position: relative; z-index: 2; width: 60%; height: auto; object-fit: contain; filter: drop-shadow(0 0 35px rgba(65,228,244,.16)); outline: 1px solid transparent; }
.about-grid { mask-image: radial-gradient(circle, black, transparent 73%); }
.orbit { position: absolute; z-index: 1; border: 1px solid rgba(65,228,244,.12); border-radius: 50%; }
.orbit::before { content: ""; position: absolute; width: 7px; height: 7px; left: 50%; top: -4px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 14px var(--cyan); }
.orbit-one { width: 350px; height: 350px; animation: orbitSpin 18s linear infinite; }.orbit-two { width: 460px; height: 460px; border-color: rgba(54,140,255,.09); animation: orbitSpin 28s linear reverse infinite; }
.about-copy > p:not(.kicker) { max-width: 580px; color: var(--muted); }
.founders { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 38px; }
.founders a { display: flex; align-items: center; gap: 12px; padding: 13px; border-radius: 14px; background: rgba(255,255,255,.025); box-shadow: var(--shadow-ring); text-decoration: none; transition-property: transform, box-shadow, background-color; transition-duration: 160ms; transition-timing-function: ease-out; }
.founders a:hover { transform: translateY(-3px); background: rgba(255,255,255,.045); box-shadow: var(--shadow-ring-hover); }
.founder-avatar { display: grid; place-items: center; flex: 0 0 42px; height: 42px; border-radius: 11px; color: var(--cyan); background: linear-gradient(145deg, #142940, #0a1522); box-shadow: var(--shadow-ring); font-family: "Space Grotesk", sans-serif; font-size: .7rem; }
.founders strong, .founders small { display: block; }.founders strong { font-size: .76rem; }.founders small { color: #627588; font-size: .59rem; }

.cta-section { padding-block: 100px; }
.cta-card {
  position: relative;
  min-height: 690px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
  padding: 72px;
  border-radius: 36px;
  background: linear-gradient(145deg, #09243a, #07151f 60%, #09111b);
  box-shadow: 0 0 0 1px rgba(65,228,244,.2), 0 40px 100px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.08);
  overflow: hidden;
}
.cta-grid { background-size: 52px 52px; mask-image: radial-gradient(circle, black, transparent 72%); opacity: .55; }
.cta-card > *:not(.cta-grid):not(.cta-signal) { position: relative; z-index: 2; }
.cta-copy h2 { font-size: clamp(3rem, 5vw, 5.15rem); }
.cta-copy > p:not(.kicker) { max-width: 520px; margin: 28px 0 0; color: #92a9ba; }
.form-expectation { display: flex; align-items: center; gap: 13px; max-width: 420px; margin-top: 42px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.09); }
.form-expectation .pulse-dot { flex: 0 0 auto; }
.form-expectation p { margin: 0; color: #71889b; font-size: .72rem; line-height: 1.5; }
.form-expectation strong { color: #b9c8d4; font-weight: 600; }

.contact-form {
  position: relative;
  padding: 28px;
  border-radius: 24px;
  background: rgba(4, 12, 20, .76);
  box-shadow: 0 0 0 1px oklch(1 0 0 / .1), 0 28px 65px rgba(0,0,0,.26), inset 0 1px 0 rgba(255,255,255,.035);
  backdrop-filter: blur(16px);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 14px; }
.field { position: relative; display: flex; flex-direction: column; gap: 7px; }
.field-wide { grid-column: 1 / -1; }
.field > span { color: #9aacbc; font-size: .69rem; font-weight: 600; }
.field input, .field textarea {
  width: 100%;
  color: var(--ink);
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 11px;
  outline: none;
  font: inherit;
  font-size: .82rem;
  transition-property: border-color, background-color, box-shadow;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
}
.field input { height: 48px; padding: 0 13px; }
.field textarea { min-height: 118px; padding: 12px 13px; resize: vertical; line-height: 1.5; }
.field input::placeholder, .field textarea::placeholder { color: #516578; }
.field input:hover, .field textarea:hover { border-color: rgba(255,255,255,.17); background: rgba(255,255,255,.05); }
.field input:focus, .field textarea:focus { border-color: rgba(65,228,244,.7); background: rgba(65,228,244,.035); box-shadow: 0 0 0 3px rgba(65,228,244,.09); }
.field-error { display: none; color: #ff9292; font-size: .58rem; }
.field.is-invalid input, .field.is-invalid textarea { border-color: rgba(255,112,112,.7); box-shadow: 0 0 0 3px rgba(255,112,112,.08); }
.field.is-invalid .field-error { display: block; }
.honey-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 22px; }
.form-footer > p { max-width: 220px; margin: 0; color: #556b7e; font-size: .57rem; line-height: 1.4; }
.button-light { color: #061117; background: #fff; box-shadow: 0 12px 35px rgba(0,0,0,.25); border: 0; cursor: pointer; }
.button-light:hover { box-shadow: 0 16px 44px rgba(0,0,0,.35); }
.button-light:disabled { cursor: wait; opacity: .72; transform: none; }
.button-icon-stack { position: relative; width: 18px; height: 18px; }
.button-icon-stack svg { position: absolute; inset: 0; transition-property: opacity, scale, filter; transition-duration: 300ms; transition-timing-function: cubic-bezier(.2,0,0,1); }
.success-icon { opacity: 0; scale: .25; filter: blur(4px); }
.contact-form.is-success .send-icon { opacity: 0; scale: .25; filter: blur(4px); }
.contact-form.is-success .success-icon { opacity: 1; scale: 1; filter: blur(0); }
.contact-form.is-success .submit-button { color: #062319; background: var(--green); cursor: default; }
.form-status { min-height: 18px; margin-top: 12px; color: #7c91a3; font-size: .63rem; text-align: right; }
.form-status.is-error { color: #ff9292; }
.cta-signal { position: absolute; left: 20%; top: 50%; width: 640px; height: 640px; transform: translate(-50%, -50%); border: 1px solid rgba(65,228,244,.08); border-radius: 50%; }
.cta-signal i { position: absolute; inset: 15%; border: 1px solid rgba(65,228,244,.07); border-radius: 50%; }.cta-signal i:nth-child(2) { inset: 30%; }.cta-signal i:nth-child(3) { inset: 45%; background: rgba(65,228,244,.05); box-shadow: 0 0 100px rgba(65,228,244,.08); }

.site-footer { border-top: 1px solid var(--line); }
.footer-layout { min-height: 176px; display: grid; grid-template-columns: 1fr 1.25fr 1fr; align-items: center; gap: 30px; }
.footer-center { text-align: center; }
.footer-center > p { margin: 0; color: #5e7082; font-size: .72rem; }
.footer-founders { display: flex; align-items: center; justify-content: center; gap: 9px; margin-top: 9px; font-size: .65rem; }
.footer-founders a { color: #a2b1bf; text-decoration: none; transition-property: color; transition-duration: 150ms; transition-timing-function: ease-out; }
.footer-founders a:hover { color: var(--cyan); }
.footer-founders span { color: #405366; }
.footer-links { display: flex; flex-direction: column; align-items: flex-end; color: #66798b; font-size: .68rem; }
.footer-links a { color: #a2b1bf; text-decoration: none; transition-property: color; transition-duration: 150ms; }.footer-links a:hover { color: var(--cyan); }

.reveal { transition-property: opacity, filter, transform; transition-duration: 650ms; transition-timing-function: var(--ease); transition-delay: var(--reveal-delay, 0ms); }
.js .reveal { opacity: 0; filter: blur(5px); transform: translateY(22px); }
.reveal.is-visible { opacity: 1; filter: blur(0); transform: translateY(0); }

@keyframes heroIn { to { opacity: 1; filter: blur(0); transform: translateY(0); } }
@keyframes dotPulse { 0%,100% { box-shadow: 0 0 0 4px rgba(115,245,186,.08); } 50% { box-shadow: 0 0 0 8px rgba(115,245,186,0); } }
@keyframes thinking { 0%, 100% { opacity: .25; transform: translateY(0); } 50% { opacity: 1; transform: translateY(-2px); } }
@keyframes signalMove { 0% { top: -6px; opacity: 0; } 20% { opacity: 1; } 100% { top: 31px; opacity: 0; } }
@keyframes floatWindow { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes scan { 0% { transform: translateX(-100%); } 70%,100% { transform: translateX(100%); } }
@keyframes orbitSpin { to { rotate: 360deg; } }

@media (max-width: 1040px) {
  .hero { min-height: auto; }
  .hero-layout { grid-template-columns: 1fr; gap: 70px; }
  .hero-copy { max-width: 760px; }
  .automation-console { width: min(100%, 620px); margin-inline: auto; }
  .signal-strip { margin-top: 70px; }
  .client-logo[data-position="1"] { transform: translate3d(calc(-50% + 230px), -50%, 0) rotateY(-38deg) scale(.78); }
  .client-logo[data-position="3"] { transform: translate3d(calc(-50% - 230px), -50%, 0) rotateY(38deg) scale(.78); }
  .case-study { grid-template-columns: .4fr 1.2fr; }
  .case-visual { grid-column: 1 / -1; min-height: 320px; }
  .capabilities-layout { grid-template-columns: 1fr; }
  .capabilities-copy { position: static; }
  .about-layout { gap: 50px; }
  .cta-card { grid-template-columns: 1fr; gap: 48px; padding: 60px; }
  .cta-copy { max-width: 720px; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section-shell { padding: 92px 0; }
  .nav { height: 68px; }
  .brand img { height: 30px; max-width: 126px; object-fit: contain; }
  .nav-links { display: none; }
  .button-small { min-height: 38px; padding-inline: 12px 10px; }
  .button-small svg { display: none; }
  .hero { min-height: auto; padding-top: 136px; padding-bottom: 32px; }
  .hero h1 { max-width: 100%; font-size: clamp(2.95rem, 13vw, 5rem); overflow-wrap: normal; }
  .hero-lead { font-size: 1rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .automation-console { min-height: 450px; border-radius: 22px; }
  .console-body { padding: 18px; }
  .flow-node { width: 86%; }
  .signal-strip { align-items: flex-start; flex-direction: column; gap: 18px; }
  .signal-list { width: 100%; justify-content: space-between; gap: 7px; overflow: hidden; }
  .signal-list strong { font-size: .48rem; }
  .clients { padding: 58px 0 52px; }
  .systems > .clients { margin: 42px 0; }
  .clients-heading { align-items: flex-start; flex-direction: column; gap: 14px; margin-bottom: 22px; }
  .clients-heading h2 { max-width: 360px; text-align: left; }
  .client-carousel { min-height: 264px; width: 100%; }
  .carousel-stage { height: 264px; perspective: 900px; }
  .carousel-stage::before { top: 47%; width: 420px; height: 150px; }
  .carousel-orbit { display: none; }
  .client-logo { top: 47%; width: 244px; height: 140px; padding: 17px 20px; border-radius: 18px; }
  .client-logo[data-position="0"] { transform: translate3d(-50%, -50%, 105px) scale(1); }
  .client-logo[data-position="1"] { opacity: .52; transform: translate3d(calc(-50% + 116px), -50%, -20px) rotateY(-42deg) scale(.7); }
  .client-logo[data-position="2"] { opacity: .16; transform: translate3d(-50%, -45%, -220px) scale(.58); }
  .client-logo[data-position="3"] { opacity: .52; transform: translate3d(calc(-50% - 116px), -50%, -20px) rotateY(42deg) scale(.7); }
  .client-logo-varssano img { max-width: 104px; max-height: 88px; }
  .client-logo-insurance img { max-width: 210px; max-height: 66px; }
  .client-logo-ehrlich img { max-width: 190px; max-height: 54px; }
  .client-logo-crm img { max-width: 78px; max-height: 62px; }
  .statement-grid, .section-heading { grid-template-columns: 1fr; gap: 28px; }
  .display-title { font-size: clamp(2.8rem, 13vw, 4.4rem); }
  .process-grid { grid-template-columns: 1fr; margin-top: 54px; }
  .process-card { min-height: 260px; }
  .process-icon { margin-top: 34px; }
  .case-study { min-height: 0; grid-template-columns: 1fr; gap: 28px; padding: 26px; border-radius: 22px; }
  .case-meta { flex-direction: row; justify-content: space-between; }
  .case-visual { grid-column: auto; min-height: 260px; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-wide { grid-column: auto; }
  .about-layout { grid-template-columns: 1fr; }
  .about-visual { min-height: 390px; order: 2; }
  .about-visual img { width: 67%; }
  .orbit-one { width: 270px; height: 270px; }.orbit-two { width: 350px; height: 350px; }
  .founders { grid-template-columns: 1fr; }
  .cta-section { padding: 36px 0 70px; }
  .cta-card { min-height: 520px; gap: 40px; padding: 48px 18px 20px; border-radius: 25px; }
  .cta-card h2 { font-size: clamp(3rem, 13vw, 5rem); }
  .cta-copy { padding-inline: 6px; }
  .form-expectation { margin-top: 30px; }
  .contact-form { padding: 18px; border-radius: 19px; }
  .form-grid { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
  .field input { height: 50px; }
  .form-footer { align-items: stretch; flex-direction: column; }
  .form-footer > p { max-width: none; }
  .submit-button { width: 100%; }
  .form-status { text-align: left; }
  .footer-layout { grid-template-columns: 1fr; justify-items: center; padding: 38px 0; gap: 16px; }
  .footer-center > p { margin: 0; }
  .footer-founders { justify-content: center; }
  .footer-links { align-items: center; }
}

@media (max-width: 430px) {
  .nav .brand img { width: 116px; height: auto; }
  .button-small { min-height: 36px; padding-inline: 10px; font-size: .68rem; }
  .hero h1 { font-size: 3rem; letter-spacing: -.06em; }
  .hero-note { align-items: flex-start; }
  .automation-console { min-height: 430px; }
  .flow-node { width: 94%; }
  .carousel-stage::before { width: 360px; }
  .client-logo { width: 224px; height: 132px; }
  .client-logo[data-position="1"] { transform: translate3d(calc(-50% + 102px), -50%, -20px) rotateY(-44deg) scale(.68); }
  .client-logo[data-position="3"] { transform: translate3d(calc(-50% - 102px), -50%, -20px) rotateY(44deg) scale(.68); }
  .node-state { display: none; }
  .case-copy h3 { font-size: 2rem; }
  .case-shift { align-items: flex-start; flex-wrap: wrap; }
  .case-shift i { display: none; }
  .integration-cloud span:nth-child(4) { right: 6%; }.integration-cloud span:nth-child(5) { display: none; }
}

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