:root {
  color-scheme: dark;
  --bg: #081426;
  --bg-soft: #0b172a;
  --surface: #101d33;
  --surface-soft: #14233d;
  --ink: #f8fbff;
  --muted: #b8c7da;
  --muted-2: #7f91aa;
  --line: rgba(148, 184, 220, 0.18);
  --line-strong: rgba(186, 230, 253, 0.28);
  --blue: #7dd3fc;
  --blue-dark: #0b172a;
  --cyan: #7dd3fc;
  --dark: #081426;
  --dark-2: #0b172a;
  --radius: 8px;
  --max: 1160px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 14px 40px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(125, 211, 252, 0.16), transparent 31rem),
    radial-gradient(circle at 80% 12%, rgba(125, 211, 252, 0.08), transparent 26rem),
    linear-gradient(180deg, #081426 0%, #0a1628 48%, #081426 100%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.7;
  background-image:
    linear-gradient(rgba(148, 184, 220, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 184, 220, 0.09) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), transparent 84%);
}

body::before {
  display: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

svg {
  display: block;
}

svg path,
svg circle,
svg rect {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 50;
  transform: translateY(-160%);
  border-radius: 6px;
  background: var(--ink);
  color: #ffffff;
  padding: 10px 14px;
}

.skip-link:focus {
  transform: translateY(0);
}

section {
  scroll-margin-top: 96px;
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  --nav-max-width: 900px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 34px;
  width: 100%;
  min-height: 76px;
  transform: none;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-top: 0;
  border-inline: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(22px);
  padding: 12px max(28px, calc((100vw - var(--nav-max-width)) / 2));
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 780;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(125, 211, 252, 0.24);
  border-radius: 7px;
  background: linear-gradient(135deg, #eff6ff, #ffffff);
  color: var(--blue);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 18px;
}

.nav-links a,
.nav-demo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-family: inherit;
  font-size: 13px;
  font-weight: 820;
  line-height: 1;
  padding: 0 10px;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-demo:hover {
  border-color: rgba(125, 211, 252, 0.2);
  background: rgba(125, 211, 252, 0.08);
  color: var(--ink);
}

.nav-demo {
  cursor: pointer;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 7px;
  background: #7dd3fc;
  color: #081426;
  font-size: 15px;
  font-weight: 780;
  box-shadow: 0 14px 32px rgba(125, 211, 252, 0.2);
  padding: 0 24px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #ffffff;
  color: var(--ink);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 100svh;
  padding: 122px max(20px, calc((100vw - var(--max)) / 2)) 28px;
  overflow: hidden;
  isolation: isolate;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(248, 250, 252, 0.96) 86%),
    radial-gradient(circle at 48% 22%, rgba(125, 211, 252, 0.18), transparent 28rem),
    radial-gradient(circle at 76% 12%, rgba(125, 211, 252, 0.1), transparent 22rem);
}

.integration-float {
  position: absolute;
  display: grid;
  place-items: center;
  width: 108px;
  height: 108px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.52);
  color: rgba(125, 211, 252, 0.18);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
  animation: floatSoft 14s ease-in-out infinite;
}

.integration-float svg {
  width: 42px;
  height: 42px;
}

.float-a {
  top: 19%;
  left: 8%;
}

.float-b {
  top: 20%;
  right: 12%;
  animation-delay: -4s;
}

.float-c {
  bottom: 25%;
  right: 18%;
  animation-delay: -8s;
}

@keyframes floatSoft {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(14px, -18px, 0);
  }
}

.hero-content {
  width: min(980px, 100%);
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 14px;
  border: 1px solid rgba(125, 211, 252, 0.16);
  border-radius: 999px;
  background: rgba(239, 246, 255, 0.78);
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 12px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  letter-spacing: 0;
  line-height: 1.04;
}

h1 {
  max-width: 940px;
  margin: 0 auto 18px;
  font-size: clamp(38px, 4.3vw, 58px);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 54px);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(22px, 2.4vw, 32px);
}

.hero-copy {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 800;
  padding: 0 20px;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: #7dd3fc;
  color: #081426;
  box-shadow: 0 18px 40px rgba(125, 211, 252, 0.2);
}

.button-primary:hover {
  background: #bae6fd;
  box-shadow: 0 20px 44px rgba(125, 211, 252, 0.28);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: rgba(125, 211, 252, 0.38);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.hero-button {
  margin-top: 0;
}

.hero-actions .button-primary {
  min-height: 66px;
  border-radius: 8px;
  font-size: 18px;
  padding-inline: 40px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(880px, 100%);
  margin: 24px auto 0;
}

.stat-item {
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 4px 14px;
}

.stat-item strong {
  display: block;
  color: #7dd3fc;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1;
}

.stat-item > span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.hero-video {
  width: min(920px, 100%);
  margin-top: 22px;
}

.video-shell {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.video-topbar {
  display: flex;
  gap: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 13px 16px;
}

.video-topbar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
}

.video-body {
  display: grid;
  place-items: center;
  min-height: 0;
  padding: 0;
  background: transparent;
  color: #ffffff;
}

.video-frame {
  width: min(860px, 100%);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(186, 230, 253, 0.22);
  border-radius: 12px;
  background: #020617;
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(125, 211, 252, 0.08);
}

.video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.play-button {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.play-button svg {
  width: 32px;
  height: 32px;
}

.play-button svg path {
  fill: currentColor;
  stroke: none;
}

.video-body span {
  display: block;
  color: #bae6fd;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.video-body strong {
  display: block;
  max-width: 620px;
  margin-top: 8px;
  color: #ffffff;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.08;
}

.integration-marquee {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #ffffff;
  padding: 18px 0;
}

.integration-marquee::before,
.integration-marquee::after,
.client-marquee::before,
.client-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 18vw;
  pointer-events: none;
}

.integration-marquee::before,
.client-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff, transparent);
}

.integration-marquee::after,
.client-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff, transparent);
}

.marquee-track,
.client-track {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
}

.marquee-group {
  display: flex;
  justify-content: space-around;
  gap: 12px;
  min-width: 100vw;
  padding-right: 12px;
}

.marquee-group span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--muted);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.035);
  padding: 0 15px;
}

.marquee-group svg {
  width: 19px;
  height: 19px;
  color: var(--blue);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 92px max(20px, calc((100vw - var(--max)) / 2));
}

.section-heading {
  max-width: 860px;
  margin-bottom: 38px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading p:not(.eyebrow),
.fit-panel p,
.final-cta p {
  color: var(--muted);
  font-size: 18px;
}

.problem-section {
  padding-top: 104px;
  padding-bottom: 84px;
  background: #ffffff;
}

.problem-section .section-heading {
  margin-bottom: 0;
}

.cases-section {
  background: var(--bg-soft);
}

.case-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  max-width: 960px;
  margin: 0 auto;
  align-items: stretch;
}

.case-card {
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.46fr);
  column-gap: 34px;
  align-items: end;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #ffffff, #fbfdff),
    #ffffff;
  box-shadow: var(--shadow-soft);
  padding: clamp(20px, 2.6vw, 28px);
}

.case-card-primary {
  border-color: rgba(125, 211, 252, 0.22);
  box-shadow: var(--shadow);
}

.case-topline {
  display: flex;
  align-items: center;
  gap: 14px;
  grid-column: 1 / -1;
  margin-bottom: 20px;
}

.case-card > p {
  color: var(--muted);
}

.case-card h3,
.case-card > p {
  grid-column: 1;
}

.case-card .before-after {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: auto;
}

.case-story {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) minmax(260px, 0.62fr);
  gap: 24px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  padding: clamp(20px, 3vw, 32px);
}

.case-featured {
  margin-bottom: 14px;
  border-color: rgba(125, 211, 252, 0.2);
  background:
    linear-gradient(135deg, rgba(239, 246, 255, 0.92), transparent 52%),
    #ffffff;
  box-shadow: var(--shadow);
}

.case-logo {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: var(--radius);
  background: #eff6ff;
  color: var(--blue);
  font-size: 18px;
  font-weight: 860;
}

.case-label {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  background: #eff6ff;
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
  padding: 6px 9px;
}

.case-main p,
.case-result,
.before-after li,
.demo-card p,
.timeline p,
.faq-list p {
  color: var(--muted);
}

.case-metrics {
  display: grid;
  grid-column: 2;
  grid-row: 2 / span 2;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0;
}

.case-metrics div {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.case-metrics strong {
  display: block;
  color: var(--blue);
  font-size: 32px;
  line-height: 1;
}

.case-metrics span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.before-after {
  display: grid;
  gap: 12px;
}

.before-after div,
.case-result {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fafc;
  padding: 16px;
}

.before-after p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.before-after .before-block {
  border-color: rgba(239, 68, 68, 0.22);
  background: #fff1f2;
}

.before-after .before-block span {
  color: #b91c1c;
}

.before-after .after-block {
  border-color: rgba(34, 197, 94, 0.22);
  background: #f0fdf4;
}

.before-after .after-block span {
  color: #15803d;
}

.before-after span {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-weight: 820;
}

.before-after ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 17px;
}

.case-stack {
  display: grid;
  gap: 14px;
}

.case-result {
  color: var(--ink);
  font-weight: 760;
}

.client-marquee {
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-top: 36px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-block: 1px solid var(--line);
  background: #ffffff;
  padding: 17px 0;
}

.client-track {
  gap: 12px;
  animation-duration: 40s;
}

.client-track span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  min-width: 180px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--muted);
  font-weight: 760;
  padding: 0 18px;
}

.demos-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(125, 211, 252, 0.12), transparent 28rem),
    var(--dark);
  color: #ffffff;
}

.demos-section h2,
.demos-section h3 {
  color: #ffffff;
}

.demos-section .section-heading p:not(.eyebrow) {
  color: #cbd5e1;
}

.demos-section .eyebrow,
.final-cta .eyebrow {
  border-color: rgba(125, 211, 252, 0.24);
  background: rgba(125, 211, 252, 0.1);
  color: #bae6fd;
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.demo-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  padding: clamp(22px, 4vw, 34px);
}

.demo-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.demo-icon svg {
  width: 31px;
  height: 31px;
}

.demo-card p {
  color: #cbd5e1;
}

.demo-card .button {
  margin-top: 14px;
}

.demos-section .button-secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: #ffffff;
  color: var(--ink);
}

.calculator-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(125, 211, 252, 0.12), transparent 28rem),
    var(--dark);
  color: #ffffff;
}

.calculator-section h2 {
  color: #ffffff;
}

.calculator-section .section-heading p:not(.eyebrow) {
  color: #cbd5e1;
}

.calculator-section .eyebrow {
  border-color: rgba(125, 211, 252, 0.24);
  background: rgba(125, 211, 252, 0.1);
  color: #bae6fd;
}

.calculator {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: 14px;
  align-items: stretch;
  max-width: 1080px;
  margin: 0 auto;
}

.calc-tabs,
.calc-form,
.calc-result {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.calc-tabs {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.calc-tab {
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: #cbd5e1;
  cursor: pointer;
  font-weight: 780;
}

.calc-tab.is-active {
  border-color: rgba(255, 255, 255, 0.18);
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 10px 22px rgba(255, 255, 255, 0.08);
}

.calculator-section .calc-tab.is-active {
  color: #081426;
  background: #7dd3fc;
  box-shadow: 0 14px 30px rgba(125, 211, 252, 0.24);
}

.calc-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 24px;
}

.calc-form label {
  display: grid;
  gap: 10px;
  color: #cbd5e1;
  font-size: 14px;
}

.calc-form input {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  outline: none;
  background: rgba(15, 23, 42, 0.78);
  color: #ffffff;
  font-size: 23px;
  font-weight: 800;
  padding: 0 14px;
}

.calc-form input:focus {
  border-color: rgba(125, 211, 252, 0.64);
  box-shadow: 0 0 0 4px rgba(125, 211, 252, 0.1);
}

.calc-result {
  padding: 24px;
}

.calc-result span {
  display: block;
  color: #cbd5e1;
}

.calc-result strong {
  display: block;
  margin: 8px 0;
  color: #ffffff;
  font-size: 44px;
  line-height: 1;
}

.calc-result p {
  color: #cbd5e1;
}

.calculator-section .button-primary {
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 18px 40px rgba(255, 255, 255, 0.12);
}

.process-section {
  overflow: hidden;
  background: var(--bg-soft);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 31px;
  height: 1px;
  background: var(--line-strong);
}

.timeline article {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  padding: 74px 18px 20px;
}

.timeline article span {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 50%;
  background: #eff6ff;
  color: var(--blue);
  font-weight: 840;
}

.timeline h3 {
  font-size: 21px;
  line-height: 1.1;
}

.fit-section {
  padding-top: 54px;
  background: #ffffff;
}

.fit-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, #eff6ff, transparent 54%),
    #ffffff;
  box-shadow: var(--shadow-soft);
  padding: clamp(26px, 4vw, 46px);
}

.faq-section {
  background: #050b1a;
  color: #ffffff;
}

.faq-section h2 {
  color: #ffffff;
}

.faq-section .section-heading p:not(.eyebrow) {
  color: #cbd5e1;
}

.faq-section .eyebrow {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #f97316;
  padding: 0 0 8px;
  position: relative;
}

.faq-section .eyebrow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 34px;
  height: 2px;
  transform: translateX(-50%);
  background: #f97316;
}

.faq-list {
  display: grid;
  gap: 0;
  max-width: 980px;
  margin: 0 auto;
}

.faq-list details {
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 24px 0;
}

.faq-list summary {
  position: relative;
  list-style: none;
  padding-right: 42px;
  cursor: pointer;
  color: #ffffff;
  font-size: 19px;
  font-weight: 820;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #f97316;
  font-size: 28px;
  font-weight: 500;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 12px 0 0;
  max-width: 760px;
  color: #cbd5e1;
}

.final-cta {
  display: grid;
  justify-items: center;
  max-width: var(--max);
  margin: 34px auto 88px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 0%, rgba(125, 211, 252, 0.16), transparent 26rem),
    linear-gradient(135deg, rgba(125, 211, 252, 0.2), transparent 48%),
    var(--dark);
  color: #ffffff;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.18);
  text-align: center;
  padding: clamp(34px, 7vw, 70px) 24px;
}

.final-cta h2 {
  max-width: 840px;
  color: #ffffff;
  font-size: clamp(34px, 5.2vw, 64px);
}

.final-cta p {
  max-width: 720px;
  color: #cbd5e1;
}

.final-cta .button {
  min-height: 58px;
  margin-top: 18px;
  padding-inline: 28px;
}

.final-cta .button-primary {
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 18px 40px rgba(255, 255, 255, 0.12);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--line);
  background: #ffffff;
  color: var(--muted);
  padding: 34px max(20px, calc((100vw - var(--max)) / 2)) 96px;
}

.site-footer p {
  max-width: 480px;
  margin: 14px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.footer-links a {
  color: var(--ink);
}

.demo-dock {
  position: fixed;
  z-index: 35;
  right: 22px;
  bottom: 22px;
  display: grid;
  justify-items: end;
  gap: 12px;
}

.demo-launch,
.demo-option {
  border: 1px solid rgba(125, 211, 252, 0.22);
  cursor: pointer;
  backdrop-filter: blur(14px);
}

.demo-launch {
  display: inline-flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border-radius: 999px;
  background: #7dd3fc;
  color: #081426;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.3);
  font-size: 15px;
  font-weight: 900;
  padding: 0 22px 0 16px;
}

.demo-launch:hover {
  background: #bae6fd;
  transform: translateY(-1px);
}

.demo-launch-icon,
.demo-option-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
}

.demo-launch-icon {
  width: 40px;
  height: 40px;
  background: rgba(8, 20, 38, 0.12);
}

.demo-launch svg,
.demo-option svg {
  width: 22px;
  height: 22px;
}

.demo-menu {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  display: grid;
  width: min(360px, calc(100vw - 32px));
  gap: 10px;
  transform: translateY(12px) scale(0.98);
  transform-origin: bottom right;
  border: 1px solid rgba(125, 211, 252, 0.2);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(15, 35, 60, 0.96), rgba(8, 20, 38, 0.98)),
    #081426;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  opacity: 0;
  padding: 14px;
  pointer-events: none;
  visibility: hidden;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
}

.demo-dock.is-open .demo-menu {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.demo-menu-copy {
  display: grid;
  gap: 4px;
  padding: 4px 4px 8px;
}

.demo-menu-copy strong {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.15;
}

.demo-menu-copy span {
  color: #b8c7da;
  font-size: 13px;
  line-height: 1.4;
}

.demo-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  width: 100%;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  color: #eaf6ff;
  padding: 13px;
  text-align: left;
}

.demo-option:hover {
  border-color: rgba(125, 211, 252, 0.42);
  background: rgba(125, 211, 252, 0.1);
  transform: translateY(-1px);
}

.demo-option-icon {
  width: 46px;
  height: 46px;
  background: rgba(125, 211, 252, 0.12);
  color: #7dd3fc;
}

.demo-option strong,
.demo-option small {
  display: block;
}

.demo-option strong {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.2;
}

.demo-option small {
  margin-top: 4px;
  color: #b8c7da;
  font-size: 12.5px;
  line-height: 1.35;
}

.toast {
  position: fixed;
  z-index: 60;
  left: 50%;
  bottom: 24px;
  max-width: min(420px, calc(100vw - 32px));
  transform: translate(-50%, 160%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  box-shadow: var(--shadow);
  padding: 14px 16px;
  transition: transform 200ms ease;
}

.toast.is-visible {
  transform: translate(-50%, 0);
}

/* Terminal-style visual system */
.site-header {
  border-color: rgba(186, 230, 253, 0.16);
  background: rgba(8, 20, 38, 0.86);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
}

.brand-mark {
  border-color: rgba(125, 211, 252, 0.34);
  background: #ffffff;
  color: #bae6fd;
}

.nav-links a,
.nav-demo,
.brand,
.footer-brand {
  color: var(--ink);
}

.header-cta,
.button-primary {
  background: #7dd3fc;
  color: #081426;
  box-shadow: 0 18px 42px rgba(125, 211, 252, 0.2);
}

.header-cta:hover,
.button-primary:hover {
  background: #bae6fd;
  box-shadow: 0 22px 54px rgba(125, 211, 252, 0.28);
}

.button-secondary {
  border-color: rgba(186, 230, 253, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
}

.hero-background,
.calculator-section,
.faq-section,
.final-cta {
  background:
    radial-gradient(circle at 50% 0%, rgba(125, 211, 252, 0.16), transparent 28rem),
    linear-gradient(180deg, rgba(8, 20, 38, 0.72), rgba(8, 20, 38, 0.96)),
    var(--bg);
}

.hero-background::after,
.calculator-section::before,
.faq-section::before,
.final-cta::before,
.case-card::before,
.fit-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(148, 184, 220, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 184, 220, 0.07) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.42;
}

.hero-background,
.calculator-section,
.faq-section,
.final-cta,
.case-card,
.fit-panel,
.video-shell {
  position: relative;
  overflow: hidden;
}

.hero-content,
.hero-video,
.section-heading,
.calculator,
.faq-list,
.timeline,
.fit-panel > *,
.case-card > *,
.final-cta > *,
.video-shell > * {
  position: relative;
  z-index: 1;
}

.integration-float {
  border-color: rgba(186, 230, 253, 0.12);
  background: rgba(15, 35, 60, 0.5);
  color: rgba(186, 230, 253, 0.16);
}

.eyebrow {
  border-color: rgba(125, 211, 252, 0.28);
  background: rgba(125, 211, 252, 0.08);
  color: #bae6fd;
}

h1,
h2,
h3 {
  color: var(--ink);
}

.hero-copy,
.section-heading p:not(.eyebrow),
.fit-panel p,
.final-cta p {
  color: var(--muted);
}

.stat-item strong,
.case-metrics strong,
.calc-result strong {
  color: #bae6fd;
}

.stat-item > span,
.case-metrics span,
.calc-result span,
.calc-result p {
  color: var(--muted);
}

.case-card,
.calc-tabs,
.calc-form,
.calc-result,
.timeline article,
.fit-panel {
  border: 1px solid rgba(186, 230, 253, 0.16);
  background:
    linear-gradient(135deg, rgba(125, 211, 252, 0.06), transparent 48%),
    rgba(12, 29, 51, 0.82);
  box-shadow: var(--shadow-soft);
}

.video-topbar {
  border-color: rgba(186, 230, 253, 0.12);
}

.video-body {
  background: transparent;
}

.integration-marquee,
.client-marquee,
.cases-section,
.process-section,
.fit-section,
.site-footer {
  border-color: rgba(186, 230, 253, 0.14);
  background:
    linear-gradient(180deg, rgba(8, 20, 38, 0.94), rgba(8, 20, 38, 0.98)),
    var(--bg);
}

.integration-marquee::before,
.client-marquee::before {
  background: linear-gradient(90deg, var(--bg), transparent);
}

.integration-marquee::after,
.client-marquee::after {
  background: linear-gradient(270deg, var(--bg), transparent);
}

.marquee-group span,
.client-track span {
  border-color: rgba(186, 230, 253, 0.16);
  background: rgba(12, 29, 51, 0.74);
  color: var(--muted);
}

.marquee-group svg {
  color: #bae6fd;
}

.case-logo,
.timeline article span {
  border-color: rgba(125, 211, 252, 0.3);
  background: rgba(125, 211, 252, 0.09);
  color: #bae6fd;
}

.case-label {
  background: rgba(125, 211, 252, 0.09);
  color: #bae6fd;
}

.case-card > p,
.case-main p,
.before-after p,
.timeline p,
.faq-list p,
.site-footer {
  color: var(--muted);
}

.before-after div {
  border-color: rgba(186, 230, 253, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.before-after .before-block {
  border-color: rgba(248, 113, 113, 0.34);
  background: rgba(127, 29, 29, 0.18);
}

.before-after .before-block span {
  color: #fca5a5;
}

.before-after .after-block {
  border-color: rgba(74, 222, 128, 0.34);
  background: rgba(20, 83, 45, 0.18);
}

.before-after .after-block span {
  color: #86efac;
}

.calculator-section h2,
.faq-section h2,
.final-cta h2 {
  color: #ffffff;
}

.calc-tabs {
  background: rgba(12, 29, 51, 0.82);
}

.calc-tab {
  color: var(--muted);
}

.calculator-section .calc-tab.is-active {
  background: #7dd3fc;
  color: #ffffff;
}

.calc-form label {
  color: var(--muted);
}

.calc-form input {
  border-color: rgba(186, 230, 253, 0.16);
  background: rgba(7, 18, 33, 0.9);
  color: #ffffff;
}

.calculator-section .button-primary,
.final-cta .button-primary {
  background: #ffffff;
  color: #0b172a;
  box-shadow: 0 18px 40px rgba(255, 255, 255, 0.1);
}

.faq-list details {
  border-color: rgba(186, 230, 253, 0.13);
}

.faq-list summary {
  color: #ffffff;
}

.faq-list summary::after,
.faq-section .eyebrow {
  color: #7dd3fc;
}

.faq-section .eyebrow::after {
  background: #7dd3fc;
}

.footer-links a {
  color: #dbeafe;
}

.toast {
  border-color: rgba(186, 230, 253, 0.18);
  background: #0b172a;
  color: #ffffff;
}

/* Refined terminal theme: flatter sections, one light-blue accent */
.calculator-section::before,
.faq-section::before,
.final-cta::before,
.case-card::before,
.fit-panel::before {
  display: none;
}

.header-cta,
.button-primary,
.calculator-section .calc-tab.is-active {
  background: #7dd3fc;
  color: #081426;
  box-shadow: 0 18px 42px rgba(125, 211, 252, 0.2);
}

.header-cta:hover,
.button-primary:hover,
.calculator-section .calc-tab.is-active:hover {
  background: #bae6fd;
  box-shadow: 0 22px 54px rgba(125, 211, 252, 0.28);
}

.stat-item strong,
.case-metrics strong,
.calc-result strong,
.faq-list summary::after,
.faq-section .eyebrow,
.marquee-group svg {
  color: #7dd3fc;
}

.faq-section .eyebrow::after {
  background: #7dd3fc;
}

.case-card,
.calc-tabs,
.calc-form,
.calc-result,
.timeline article,
.fit-panel {
  background:
    linear-gradient(180deg, rgba(15, 35, 60, 0.9), rgba(10, 25, 44, 0.92)),
    #0b172a;
}

.case-card {
  min-height: 0;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.case-card:hover {
  transform: translateY(-4px);
  border-color: rgba(125, 211, 252, 0.32);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.32);
}

.case-card .before-after {
  display: none;
}

.case-metrics {
  margin-top: 0;
  margin-bottom: 0;
}

.calculator-section,
.faq-section,
.final-cta,
.cases-section,
.process-section,
.fit-section,
.site-footer {
  background:
    radial-gradient(circle at 50% 0%, rgba(125, 211, 252, 0.08), transparent 24rem),
    linear-gradient(180deg, #081426, #0a1628);
}

.calculator-section {
  background:
    linear-gradient(135deg, rgba(125, 211, 252, 0.08), transparent 46%),
    #081426;
}

.timeline {
  align-items: stretch;
}

.timeline::before {
  top: 34px;
  background: linear-gradient(90deg, transparent, rgba(125, 211, 252, 0.34), transparent);
}

.timeline article {
  display: flex;
  flex-direction: column;
  min-height: 280px;
  overflow: hidden;
  padding: 92px 20px 24px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.timeline article::before {
  content: "";
  position: absolute;
  top: 22px;
  right: 20px;
  width: 78px;
  height: 46px;
  border: 1px solid rgba(125, 211, 252, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 50%, rgba(125, 211, 252, 0.58) 0 4px, transparent 5px),
    radial-gradient(circle at 50% 24%, rgba(125, 211, 252, 0.42) 0 4px, transparent 5px),
    radial-gradient(circle at 82% 50%, rgba(125, 211, 252, 0.58) 0 4px, transparent 5px),
    linear-gradient(90deg, transparent 18%, rgba(125, 211, 252, 0.22) 19% 82%, transparent 83%),
    linear-gradient(135deg, rgba(125, 211, 252, 0.08), rgba(255, 255, 255, 0.02));
  opacity: 0.52;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.timeline article::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, transparent, #7dd3fc, transparent);
  opacity: 0;
  transition: opacity 180ms ease;
}

.timeline article:hover {
  transform: translateY(-6px);
  border-color: rgba(125, 211, 252, 0.38);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.34);
}

.timeline article:hover::before {
  opacity: 0.94;
  transform: translateY(-2px);
}

.timeline article:hover::after {
  opacity: 1;
}

.timeline article span {
  border-color: rgba(125, 211, 252, 0.34);
  background: rgba(125, 211, 252, 0.11);
  color: #7dd3fc;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.timeline article:hover span {
  background: #7dd3fc;
  color: #081426;
  transform: scale(1.04);
}

.fit-panel {
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 1fr);
  gap: 22px 46px;
  min-height: 320px;
  isolation: isolate;
}

.fit-panel::after {
  display: none;
}

.fit-copy,
.fit-panel > p {
  grid-column: 1;
}

.fit-panel > p {
  max-width: 56ch;
}

.fit-visual {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 2;
  min-height: 270px;
  border: 1px solid rgba(125, 211, 252, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 50%, rgba(125, 211, 252, 0.13), transparent 9rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  overflow: hidden;
}

.fit-visual::before,
.fit-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.fit-visual::before {
  inset: 44px 52px;
  border: 1px solid rgba(125, 211, 252, 0.2);
  border-radius: 50%;
  animation: orbitPulse 6s ease-in-out infinite;
}

.fit-visual::after {
  inset: 50%;
  width: 70%;
  height: 1px;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, transparent, rgba(125, 211, 252, 0.36), transparent);
  box-shadow:
    0 -72px 0 rgba(125, 211, 252, 0.12),
    0 72px 0 rgba(125, 211, 252, 0.12);
}

.node {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  min-width: 78px;
  min-height: 38px;
  border: 1px solid rgba(125, 211, 252, 0.22);
  border-radius: 8px;
  background: rgba(8, 20, 38, 0.9);
  color: #dff7ff;
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.node-core {
  left: 50%;
  top: 50%;
  min-width: 64px;
  min-height: 64px;
  border-radius: 50%;
  background: #7dd3fc;
  color: #081426;
  transform: translate(-50%, -50%);
  animation: corePulse 2.8s ease-in-out infinite;
}

.node-crm {
  left: 10%;
  top: 18%;
}

.node-wa {
  right: 9%;
  top: 18%;
}

.node-mail {
  left: 8%;
  bottom: 18%;
}

.node-docs {
  right: 10%;
  bottom: 18%;
}

.node-calendar {
  left: 50%;
  top: 7%;
  transform: translateX(-50%);
}

.fit-panel:hover .node:not(.node-core) {
  border-color: rgba(125, 211, 252, 0.42);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}

.fit-panel:hover .node-calendar {
  transform: translateX(-50%) translateY(-3px);
}

@keyframes corePulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(125, 211, 252, 0.18), 0 18px 45px rgba(0, 0, 0, 0.28);
  }

  50% {
    box-shadow: 0 0 0 16px rgba(125, 211, 252, 0), 0 22px 54px rgba(0, 0, 0, 0.32);
  }
}

@keyframes orbitPulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.98);
  }

  50% {
    opacity: 0.85;
    transform: scale(1.02);
  }
}

.fit-panel > * {
  z-index: 1;
}

.calculator-section .button-primary,
.final-cta .button-primary {
  background: #7dd3fc;
  color: #081426;
  box-shadow: 0 18px 42px rgba(125, 211, 252, 0.18);
}

@media (max-width: 1020px) {
  .case-grid {
    grid-template-columns: 1fr;
  }

  .case-story {
    grid-template-columns: 92px 1fr;
  }

  .before-after,
  .case-result {
    grid-column: 2;
  }

  .calculator {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin: 0 auto;
  }

  .timeline::before {
    display: none;
  }

  .timeline article {
    min-height: 0;
    padding: 72px 20px 20px;
  }

  .fit-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: auto auto;
    min-height: 70px;
    padding-inline: 16px;
  }

  .nav-toggle {
    display: block;
    grid-column: 2;
    justify-self: end;
  }

  .header-cta {
    display: inline-flex;
    min-height: 46px;
    font-size: 13px;
    padding-inline: 14px;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    padding: 8px;
  }

  .site-header.is-open .nav-links {
    display: flex;
  }

  .nav-links a {
    font-size: 18px;
    padding: 13px 24px;
  }

  .hero {
    min-height: auto;
    padding-top: 100px;
  }

  h1 {
    font-size: 34px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button-primary {
    min-height: 60px;
    font-size: 17px;
  }

  .hero-stats,
  .demo-grid,
  .calc-tabs,
  .calc-form,
  .case-metrics {
    grid-template-columns: 1fr;
  }

  .case-card {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .case-card h3,
  .case-card > p,
  .case-metrics {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .stat-item {
    padding: 13px 6px;
  }

  .stat-item strong {
    font-size: 25px;
  }

  .stat-item > span {
    font-size: 11px;
    line-height: 1.25;
  }

  .video-body {
    min-height: 0;
    padding: 18px;
  }

  .case-story {
    grid-template-columns: 1fr;
  }

  .case-card {
    min-height: auto;
  }

  .case-card .before-after {
    grid-template-columns: 1fr;
  }

  .before-after,
  .case-result {
    grid-column: auto;
  }

  .case-logo {
    width: 74px;
    height: 74px;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .integration-float {
    opacity: 0.78;
    transform: scale(0.72);
  }

  .float-a {
    left: -28px;
  }

  .float-b {
    right: -28px;
  }

  .float-c {
    display: none;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 96px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .demo-dock {
    right: 12px;
    bottom: 12px;
  }
}

@media (max-width: 480px) {
  .button,
  .hero-button {
    width: 100%;
  }

  .play-button {
    width: 62px;
    height: 62px;
  }

  .marquee-group span {
    min-height: 38px;
    padding-inline: 12px;
  }

  .final-cta {
    margin-inline: 20px;
  }
}

@media (max-width: 1020px) {
  .fit-copy,
  .fit-panel > p,
  .fit-visual {
    grid-column: 1;
    grid-row: auto;
  }

  .fit-visual {
    min-height: 250px;
  }
}

@media (max-width: 760px) {
  .process-section {
    padding-top: 104px;
  }

  .timeline article {
    padding: 88px 20px 24px;
  }

  .timeline article::before {
    right: 18px;
    width: 70px;
  }

  .fit-visual {
    min-height: 230px;
  }

  .node {
    min-width: 70px;
    min-height: 34px;
    font-size: 12px;
  }
}

/* Conversion polish: calculator, process, system map and footer */
.calculator {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: 18px;
  max-width: 1120px;
}

.calc-config,
.calc-result {
  border: 1px solid rgba(186, 230, 253, 0.18);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(17, 42, 72, 0.92), rgba(9, 24, 43, 0.94)),
    #0b172a;
  box-shadow: 0 26px 76px rgba(0, 0, 0, 0.28);
}

.calc-config {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 26px);
}

.calc-toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.calc-toolbar strong {
  display: block;
  margin-top: 3px;
  color: #ffffff;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.12;
}

.calc-kicker,
.calc-status {
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 860;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.calc-status {
  flex: 0 0 auto;
  border: 1px solid rgba(125, 211, 252, 0.2);
  border-radius: 999px;
  background: rgba(125, 211, 252, 0.08);
  padding: 8px 11px;
}

.calc-tabs {
  grid-column: auto;
  gap: 10px;
  border-radius: 10px;
  background: rgba(5, 13, 25, 0.42);
  padding: 8px;
}

.calc-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  border-radius: 8px;
  color: #d7e5f5;
  transition:
    background 170ms ease,
    border-color 170ms ease,
    color 170ms ease,
    transform 170ms ease;
}

.calc-tab svg {
  width: 19px;
  height: 19px;
  color: currentColor;
}

.calc-tab:hover {
  border-color: rgba(125, 211, 252, 0.22);
  background: rgba(125, 211, 252, 0.08);
  transform: translateY(-1px);
}

.calculator-section .calc-tab.is-active {
  border-color: rgba(125, 211, 252, 0.55);
  background: #7dd3fc;
  color: #081426;
  box-shadow: 0 16px 34px rgba(125, 211, 252, 0.22);
}

.calc-form {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.calc-form label {
  gap: 12px;
  border: 1px solid rgba(186, 230, 253, 0.15);
  border-radius: 10px;
  background: rgba(5, 13, 25, 0.38);
  padding: 16px;
}

.calc-form label span {
  min-height: 40px;
  color: #cfe0f2;
  line-height: 1.25;
}

.calc-form input {
  min-height: 70px;
  border-color: rgba(186, 230, 253, 0.14);
  border-radius: 8px;
  background: #071321;
  color: #ffffff;
  font-size: clamp(25px, 3vw, 34px);
  padding-inline: 16px;
}

.calc-result {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(22px, 3vw, 30px);
}

.calc-result-top span,
.calc-result-top small {
  display: block;
}

.calc-result-top span {
  color: #ffffff;
  font-weight: 820;
}

.calc-result-top small {
  margin-top: 5px;
  color: #9fb2c8;
  line-height: 1.35;
}

.calc-result strong {
  margin: 22px 0 8px;
  color: #7dd3fc;
  font-size: clamp(54px, 6vw, 76px);
  letter-spacing: 0;
}

.calc-result p {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 760;
}

.calc-proof {
  width: 100%;
  margin: 22px 0;
  border-top: 1px solid rgba(186, 230, 253, 0.14);
  border-bottom: 1px solid rgba(186, 230, 253, 0.14);
  color: #b8c7da;
  padding: 16px 0;
}

.calc-result .button {
  width: 100%;
  min-height: 58px;
  margin-top: auto;
}

.timeline article::before {
  display: none;
}

.timeline article {
  padding: 88px 20px 24px;
}

.step-icon {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(125, 211, 252, 0.2);
  border-radius: 10px;
  background: rgba(125, 211, 252, 0.08);
  color: #7dd3fc;
  transition:
    background 170ms ease,
    color 170ms ease,
    transform 170ms ease,
    border-color 170ms ease;
}

.step-icon svg {
  width: 23px;
  height: 23px;
}

.timeline article:hover .step-icon {
  border-color: rgba(125, 211, 252, 0.52);
  background: rgba(125, 211, 252, 0.16);
  transform: translateY(-3px);
}

.system-map {
  display: grid;
  grid-template-columns: minmax(118px, 0.85fr) minmax(160px, 1fr) minmax(118px, 0.85fr);
  gap: 18px;
  align-items: center;
  min-height: 300px;
  padding: 24px;
}

.system-map::before,
.system-map::after {
  content: "";
  position: absolute;
  inset: auto;
  left: 22%;
  right: 22%;
  top: 50%;
  width: auto;
  height: 1px;
  border-radius: 0;
  background: linear-gradient(90deg, transparent, rgba(125, 211, 252, 0.42), transparent);
  box-shadow: none;
  opacity: 1;
  animation: none;
}

.system-map::after {
  top: 25%;
  bottom: 25%;
  height: auto;
  border: 1px solid rgba(125, 211, 252, 0.14);
  border-inline: 0;
  background: transparent;
  transform: none;
}

.system-column {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.system-column span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  border: 1px solid rgba(186, 230, 253, 0.15);
  border-radius: 8px;
  background: rgba(6, 16, 29, 0.72);
  color: #dcecff;
  font-size: 13px;
  font-weight: 820;
  padding: 0 12px;
}

.system-column svg {
  width: 18px;
  height: 18px;
  color: #7dd3fc;
}

.system-core {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 150px;
  border: 1px solid rgba(125, 211, 252, 0.36);
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 0%, rgba(125, 211, 252, 0.18), transparent 7rem),
    rgba(8, 20, 38, 0.9);
  text-align: center;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  padding: 20px;
}

.system-core small {
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.system-core strong {
  max-width: 12ch;
  color: #ffffff;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.04;
}

.fit-panel:hover .system-column span,
.fit-panel:hover .system-core {
  border-color: rgba(125, 211, 252, 0.38);
}

.final-cta h2 {
  max-width: 920px;
}

.final-cta .button {
  min-height: 68px;
  border-radius: 9px;
  font-size: 17px;
  padding-inline: 42px;
}

.site-footer {
  display: block;
  border-top: 1px solid rgba(186, 230, 253, 0.14);
  background:
    linear-gradient(180deg, #0a1628, #07111f),
    #07111f;
  color: #b8c7da;
  padding: 0 max(20px, calc((100vw - var(--max)) / 2));
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.7fr) minmax(180px, 0.7fr);
  gap: 34px;
  padding: 42px 0 30px;
}

.footer-brand-block p {
  max-width: 460px;
  margin: 16px 0 0;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column strong {
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 40px;
  border: 1px solid rgba(186, 230, 253, 0.14);
  border-radius: 999px;
  background: rgba(12, 29, 51, 0.64);
  color: #dbeafe;
  font-weight: 740;
  padding: 0 14px;
}

.footer-pill:hover,
.footer-legal a:hover {
  border-color: rgba(125, 211, 252, 0.42);
  color: #7dd3fc;
}

.footer-pill svg {
  width: 18px;
  height: 18px;
  color: #7dd3fc;
}

.footer-legal a {
  color: #b8c7da;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(186, 230, 253, 0.12);
  color: #8193aa;
  font-size: 13px;
  padding: 18px 0 30px;
}

.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 0%, rgba(125, 211, 252, 0.11), transparent 30rem),
    var(--bg);
}

.legal-main {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 132px 0 80px;
}

.legal-hero {
  margin-bottom: 28px;
  text-align: center;
}

.legal-hero h1 {
  margin: 18px 0 12px;
  color: #ffffff;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.98;
}

.legal-hero p:not(.eyebrow) {
  color: #b8c7da;
  font-size: 17px;
}

.legal-document {
  display: grid;
  gap: 24px;
  border: 1px solid rgba(186, 230, 253, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(15, 35, 60, 0.9), rgba(10, 25, 44, 0.94)),
    #0b172a;
  box-shadow: var(--shadow-soft);
  padding: clamp(24px, 4vw, 44px);
}

.legal-document h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}

.legal-document h3 {
  margin: 18px 0 8px;
  color: #ffffff;
  font-size: 20px;
}

.legal-document p,
.legal-document li {
  color: #c8d7ea;
  line-height: 1.72;
}

.legal-document ul {
  display: grid;
  gap: 8px;
  margin: 10px 0 0;
  padding-left: 20px;
}

.legal-note {
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 12px;
  background: rgba(125, 211, 252, 0.08);
  color: #dbeafe;
  padding: 16px 18px;
}

.legal-meta {
  display: grid;
  gap: 10px;
  border-top: 1px solid rgba(186, 230, 253, 0.12);
  padding-top: 20px;
}

.legal-meta div {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 12px;
  color: #c8d7ea;
}

.legal-meta strong {
  color: #7dd3fc;
}

.legal-back {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 30px auto 0;
  border: 1px solid rgba(125, 211, 252, 0.2);
  border-radius: 999px;
  color: #bae6fd;
  font-weight: 820;
  padding: 0 18px;
}

.legal-back:hover {
  border-color: rgba(125, 211, 252, 0.42);
  color: #ffffff;
}

.case-topline {
  align-items: flex-start;
  gap: 16px;
}

.case-logo {
  width: 96px;
  height: 70px;
  border-radius: 9px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(10, 25, 44, 0.9);
  padding: 9px;
}

.case-logo-link {
  transition:
    border-color 170ms ease,
    box-shadow 170ms ease,
    transform 170ms ease;
}

.case-logo-link:hover {
  border-color: rgba(125, 211, 252, 0.5);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
  transform: translateY(-2px);
}

.case-logo-wide {
  width: 142px;
}

.case-logo-aisa {
  width: 172px;
  background: #050b14;
}

.case-logo img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.case-logo-private {
  width: 70px;
  color: #7dd3fc;
  font-size: 20px;
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding-top: 10px;
}

.case-meta .case-label {
  margin-bottom: 0;
}

.case-website {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 999px;
  background: rgba(125, 211, 252, 0.06);
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 820;
  padding: 0 10px;
}

.case-website:hover {
  border-color: rgba(125, 211, 252, 0.42);
  background: rgba(125, 211, 252, 0.1);
}

.case-website-muted {
  border-color: rgba(186, 230, 253, 0.12);
  background: rgba(255, 255, 255, 0.035);
  color: #9fb2c8;
}

.client-track a,
.client-track span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  min-width: 188px;
  border: 1px solid rgba(186, 230, 253, 0.16);
  border-radius: 999px;
  background: rgba(12, 29, 51, 0.74);
  color: var(--muted);
  font-weight: 760;
  padding: 0 18px;
}

.client-track a {
  color: #dbeafe;
}

.client-track a:hover {
  border-color: rgba(125, 211, 252, 0.42);
  color: #ffffff;
}

.client-track img {
  width: 34px;
  height: 26px;
  object-fit: contain;
}

.client-track .logo-pill {
  min-width: 168px;
  min-height: 52px;
  gap: 0;
  padding: 0 22px;
}

.client-track .logo-pill-wide {
  min-width: 214px;
}

.client-track .logo-pill-icon {
  min-width: 120px;
}

.client-track .logo-pill img {
  width: auto;
  height: auto;
  max-width: 154px;
  max-height: 32px;
  object-fit: contain;
}

.client-track .logo-pill-wide img {
  max-width: 184px;
}

.client-track .logo-pill-aisa img {
  max-width: 126px;
}

.client-track .logo-pill-icon img {
  max-width: 64px;
  max-height: 42px;
}

.client-track .logo-pill-fx {
  min-width: 118px;
  color: #7dd3fc;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 0;
}

.client-proof {
  display: grid;
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
}

.client-logo-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.client-logo-tile {
  display: grid;
  min-height: 188px;
  align-content: center;
  gap: 10px;
  border: 1px solid rgba(186, 230, 253, 0.16);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(15, 35, 60, 0.84), rgba(10, 25, 44, 0.9)),
    #0b172a;
  color: #ffffff;
  padding: 20px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.client-logo-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(125, 211, 252, 0.38);
  background:
    linear-gradient(180deg, rgba(18, 47, 78, 0.92), rgba(10, 25, 44, 0.94)),
    #0b172a;
}

.client-logo-tile > span {
  display: grid;
  place-items: center;
  width: 100%;
  height: 74px;
  overflow: hidden;
  border: 1px solid rgba(186, 230, 253, 0.12);
  border-radius: 10px;
  background: rgba(2, 8, 23, 0.62);
  color: #7dd3fc;
  font-size: 24px;
  font-weight: 900;
  padding: 12px;
}

.client-logo-tile img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.client-logo-tile-compact img {
  width: auto;
  height: 52px;
  max-width: 86%;
}

.client-logo-tile strong {
  margin-top: 4px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.1;
}

.client-logo-tile small {
  color: #9fb2c8;
  font-size: 13px;
  line-height: 1.35;
}

.client-logo-private > span {
  background:
    radial-gradient(circle at 30% 20%, rgba(125, 211, 252, 0.2), transparent 42%),
    rgba(2, 8, 23, 0.72);
}

.client-work-list {
  overflow: hidden;
  border: 1px solid rgba(186, 230, 253, 0.14);
  border-radius: 16px;
  background: rgba(8, 20, 38, 0.58);
}

.client-work-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  border-bottom: 1px solid rgba(186, 230, 253, 0.1);
  padding: 22px 24px;
}

.client-work-item:last-child {
  border-bottom: 0;
}

.client-work-item.is-featured {
  grid-template-columns: 54px minmax(0, 1fr) minmax(240px, 0.48fr);
  background:
    linear-gradient(90deg, rgba(125, 211, 252, 0.08), transparent 62%),
    rgba(12, 29, 51, 0.72);
}

.work-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(125, 211, 252, 0.28);
  border-radius: 50%;
  background: rgba(125, 211, 252, 0.1);
  color: #7dd3fc;
  font-size: 13px;
  font-weight: 900;
}

.client-work-item strong {
  display: block;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.22;
}

.client-work-item p {
  margin: 8px 0 0;
  color: #b8c7da;
  line-height: 1.6;
}

.work-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-self: center;
  justify-content: flex-end;
}

.work-metrics span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 999px;
  background: rgba(125, 211, 252, 0.08);
  color: #bae6fd;
  font-size: 12px;
  font-weight: 820;
  padding: 0 12px;
}

@media (max-width: 1020px) {
  .calculator {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand-block {
    grid-column: 1 / -1;
  }

  .client-logo-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-work-item.is-featured {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .work-metrics {
    grid-column: 2;
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .calc-toolbar,
  .footer-bottom {
    flex-direction: column;
  }

  .calc-tabs,
  .calc-form,
  .system-map,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .calc-status {
    width: fit-content;
  }

  .calc-form label span {
    min-height: auto;
  }

  .system-map {
    gap: 14px;
    min-height: 0;
  }

  .system-map::before,
  .system-map::after {
    display: none;
  }

  .system-core {
    min-height: 120px;
    order: -1;
  }

  .footer-main {
    gap: 28px;
  }

  .client-proof {
    gap: 20px;
  }

  .client-logo-wall {
    gap: 10px;
  }

  .client-logo-tile {
    min-height: 166px;
    padding: 16px;
  }

  .client-logo-tile > span {
    height: 62px;
  }

  .client-work-item,
  .client-work-item.is-featured {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px;
  }

  .work-metrics {
    grid-column: auto;
  }

  .case-logo {
    width: 86px;
    height: 64px;
  }

  .case-logo-wide {
    width: 126px;
  }

  .case-logo-aisa {
    width: 150px;
  }
}

/* Process section: larger, clearer delivery flow */
.process-section .section-heading {
  margin-bottom: 44px;
}

.timeline {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
  max-width: 1140px;
  margin: 0 auto;
}

.timeline::before {
  display: none;
}

.timeline article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px 18px;
  align-content: start;
  grid-column: span 2;
  min-height: 340px;
  border-radius: 11px;
  padding: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(125, 211, 252, 0.1), transparent 10rem),
    linear-gradient(180deg, rgba(16, 39, 67, 0.94), rgba(8, 22, 39, 0.96));
}

.timeline article:nth-child(4),
.timeline article:nth-child(5) {
  grid-column: span 3;
  min-height: 300px;
}

.timeline article::before {
  display: none;
}

.timeline article .step-number {
  position: static;
  width: 52px;
  height: 52px;
  border-color: rgba(125, 211, 252, 0.32);
  background: rgba(125, 211, 252, 0.12);
  color: #7dd3fc;
  font-size: 15px;
}

.step-icon {
  position: static;
  justify-self: end;
  width: 78px;
  height: 78px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(125, 211, 252, 0.18), rgba(125, 211, 252, 0.06)),
    rgba(6, 16, 29, 0.52);
}

.step-icon svg {
  width: 38px;
  height: 38px;
}

.timeline h3,
.timeline p {
  grid-column: 1 / -1;
}

.timeline h3 {
  max-width: 12ch;
  font-size: clamp(26px, 2.5vw, 34px);
  line-height: 1.02;
}

.timeline p {
  max-width: 34ch;
  font-size: 17px;
  line-height: 1.58;
}

.timeline article:nth-child(4) h3,
.timeline article:nth-child(5) h3 {
  max-width: 18ch;
}

.timeline article:hover .step-icon {
  background: #7dd3fc;
  color: #081426;
  transform: translateY(-4px) scale(1.03);
}

@media (max-width: 1020px) {
  .timeline {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .timeline article,
  .timeline article:nth-child(4),
  .timeline article:nth-child(5) {
    grid-column: 1;
    min-height: 0;
  }

  .timeline h3,
  .timeline p {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .process-section .section-heading {
    margin-bottom: 28px;
  }

  .timeline article {
    padding: 24px;
  }

  .step-icon {
    width: 68px;
    height: 68px;
  }

  .step-icon svg {
    width: 32px;
    height: 32px;
  }
}

/* Header and demo actions emphasis */
.brand {
  gap: 12px;
  font-size: 19px;
  font-weight: 860;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 9px;
  font-size: 16px;
}

.demo-launch {
  min-height: 64px;
}

/* Integration section: product-like sync panel */
.fit-panel {
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: 28px 54px;
}

.sync-lab {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  min-height: 350px;
  padding: 20px;
  background:
    radial-gradient(circle at 50% 40%, rgba(125, 211, 252, 0.12), transparent 12rem),
    linear-gradient(180deg, rgba(18, 43, 72, 0.92), rgba(8, 20, 38, 0.96));
}

.sync-lab::before,
.sync-lab::after {
  display: none;
}

.sync-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(186, 230, 253, 0.12);
  color: #b8c7da;
  font-size: 13px;
  font-weight: 760;
  padding-bottom: 14px;
}

.sync-header strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #7dd3fc;
  font-size: 12px;
  text-transform: uppercase;
}

.sync-header strong::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7dd3fc;
  box-shadow: 0 0 0 6px rgba(125, 211, 252, 0.12);
}

.sync-grid {
  display: grid;
  grid-template-columns: minmax(130px, 0.8fr) minmax(170px, 1fr) minmax(150px, 0.95fr);
  gap: 16px;
  align-items: center;
}

.sync-stack {
  display: grid;
  gap: 10px;
}

.sync-stack small {
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 860;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.sync-stack span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  border: 1px solid rgba(186, 230, 253, 0.14);
  border-radius: 8px;
  background: rgba(5, 13, 25, 0.66);
  color: #ffffff;
  font-size: 13px;
  font-weight: 780;
  padding: 0 12px;
}

.sync-stack svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: #7dd3fc;
}

.sync-engine {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 164px;
  border: 1px solid rgba(125, 211, 252, 0.34);
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 0%, rgba(125, 211, 252, 0.18), transparent 8rem),
    rgba(5, 13, 25, 0.72);
  text-align: center;
  padding: 22px;
  overflow: hidden;
}

.sync-engine::before,
.sync-engine::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(125, 211, 252, 0.5));
}

.sync-engine::before {
  left: -44px;
}

.sync-engine::after {
  right: -44px;
  transform: scaleX(-1);
}

.sync-engine span {
  position: relative;
  z-index: 1;
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sync-engine strong {
  position: relative;
  z-index: 1;
  max-width: 10ch;
  margin-top: 8px;
  color: #ffffff;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.02;
}

.engine-pulse {
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(125, 211, 252, 0.16);
  border-radius: 12px;
  animation: syncPulse 3.4s ease-in-out infinite;
}

.sync-feed {
  display: grid;
  gap: 8px;
  border-top: 1px solid rgba(186, 230, 253, 0.12);
  padding-top: 14px;
}

.sync-feed span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(186, 230, 253, 0.1);
  border-radius: 8px;
  background: rgba(5, 13, 25, 0.44);
  color: #cfe0f2;
  font-size: 13px;
  padding: 9px 11px;
}

.sync-feed strong {
  color: #7dd3fc;
}

@keyframes syncPulse {
  0%,
  100% {
    opacity: 0.42;
    transform: scale(0.98);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.02);
  }
}

@media (max-width: 1020px) {
  .fit-panel {
    grid-template-columns: 1fr;
  }

  .sync-grid {
    grid-template-columns: 1fr;
  }

  .sync-engine::before,
  .sync-engine::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .brand {
    font-size: 16px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .demo-launch {
    min-height: 58px;
  }

  .sync-lab {
    min-height: 0;
    padding: 16px;
  }

  .sync-feed span {
    display: grid;
  }
}

/* Mobile-first polish pass */
@media (max-width: 760px) {
  html {
    scroll-padding-top: 86px;
  }

  main {
    padding-bottom: 118px;
  }

  .site-header {
    min-height: 70px;
    padding: 10px 16px;
  }

  .brand {
    gap: 10px;
    min-height: 46px;
    font-size: 18px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 9px;
  }

  .header-cta {
    min-width: 148px;
    min-height: 50px;
    border-radius: 8px;
    font-size: 13px;
    padding-inline: 13px;
  }

  .legal-main {
    width: calc(100% - 32px);
    padding: 104px 0 64px;
  }

  .legal-hero {
    margin-bottom: 22px;
  }

  .legal-hero h1 {
    font-size: 40px;
    line-height: 1.02;
  }

  .legal-hero p:not(.eyebrow) {
    font-size: 16px;
  }

  .legal-document {
    gap: 20px;
    border-radius: 14px;
    padding: 24px;
  }

  .legal-document h2 {
    font-size: 26px;
  }

  .legal-document h3 {
    font-size: 18px;
  }

  .legal-document p,
  .legal-document li {
    font-size: 15px;
    line-height: 1.66;
  }

  .legal-meta div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .hero {
    padding: 100px 20px 44px;
  }

  .eyebrow {
    max-width: 100%;
    line-height: 1.35;
    text-align: center;
    white-space: normal;
  }

  h1 {
    font-size: 34px;
    line-height: 1.05;
  }

  h2 {
    font-size: 34px;
    line-height: 1.07;
  }

  .hero-copy,
  .section-heading p:not(.eyebrow),
  .final-cta p {
    font-size: 16.5px;
    line-height: 1.55;
  }

  .hero-actions .button-primary {
    width: 100%;
    min-height: 60px;
    border-radius: 9px;
  }

  .hero-stats {
    margin-top: 28px;
  }

  .stat-item strong {
    font-size: 27px;
  }

  .hero-video {
    margin-top: 30px;
  }

  .video-shell {
    border-radius: 10px;
  }

  .video-body {
    min-height: 0;
    padding: 14px;
  }

  .video-frame {
    border-radius: 9px;
  }

  .section {
    padding: 68px 20px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .case-card {
    border-radius: 10px;
    padding: 22px 20px 24px;
  }

  .case-topline {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 13px;
  }

  .case-logo {
    width: 80px;
    height: 64px;
  }

  .case-logo-wide {
    width: 118px;
  }

  .case-logo-aisa {
    width: 142px;
  }

  .case-meta {
    align-content: center;
    padding-top: 0;
  }

  .case-label,
  .case-website {
    min-height: 44px;
    padding-inline: 14px;
    font-size: 11px;
    line-height: 1.2;
  }

  .case-card h3 {
    margin-top: 20px;
    font-size: 25px;
    line-height: 1.08;
  }

  .case-card > p {
    font-size: 16px;
    line-height: 1.55;
  }

  .case-metrics {
    gap: 0;
    margin-top: 24px;
  }

  .case-metrics div {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    align-items: end;
    gap: 12px;
    padding: 14px 0;
  }

  .case-metrics strong {
    font-size: 31px;
  }

  .calculator {
    gap: 14px;
  }

  .calc-config,
  .calc-result {
    border-radius: 10px;
  }

  .calc-config {
    padding: 18px;
  }

  .calc-toolbar strong {
    font-size: 23px;
  }

  .calc-tabs {
    gap: 7px;
  }

  .calc-tab {
    min-height: 52px;
  }

  .calc-form label {
    padding: 14px;
  }

  .calc-form input {
    min-height: 62px;
    font-size: 28px;
  }

  .calc-result {
    padding: 22px;
  }

  .calc-result strong {
    font-size: 56px;
  }

  .process-section {
    padding-top: 86px;
  }

  .timeline {
    gap: 18px;
  }

  .timeline article {
    border-radius: 11px;
    padding: 24px;
  }

  .timeline h3 {
    font-size: 29px;
  }

  .timeline p {
    font-size: 16px;
    line-height: 1.56;
  }

  .faq-section {
    padding-top: 70px;
  }

  .faq-list summary {
    font-size: 18px;
    line-height: 1.28;
    padding: 22px 38px 22px 0;
  }

  .faq-list p {
    font-size: 16px;
    line-height: 1.55;
  }

  .final-cta {
    margin: 24px 20px 78px;
    padding: 36px 24px;
  }

  .final-cta h2 {
    font-size: 32px;
    line-height: 1.08;
  }

  .final-cta .button {
    width: 100%;
    min-height: 68px;
    font-size: 16px;
    line-height: 1.25;
  }

  .site-footer {
    padding-bottom: 148px;
  }

  .footer-main {
    padding-top: 44px;
  }

  .demo-dock {
    left: 14px;
    right: 14px;
    bottom: max(12px, env(safe-area-inset-bottom));
    display: grid;
    justify-items: stretch;
    gap: 10px;
    width: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .demo-launch {
    width: 100%;
    min-height: 60px;
    border-radius: 14px;
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.4);
  }

  .demo-menu {
    left: 0;
    right: 0;
    bottom: calc(100% + 10px);
    width: 100%;
    transform-origin: bottom center;
  }

  .demo-option {
    padding: 12px;
  }

  .footer-pill,
  .footer-legal a,
  .footer-links a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

@media (max-width: 380px) {
  .brand {
    font-size: 16px;
  }

  .header-cta {
    min-width: 138px;
    font-size: 12.5px;
  }

  h1 {
    font-size: 31px;
  }

  h2 {
    font-size: 30px;
  }

  .case-topline {
    grid-template-columns: 1fr;
  }

  .case-logo-aisa,
  .case-logo-wide {
    width: 100%;
    max-width: 160px;
  }
}

@media (max-width: 340px) {
  .site-header {
    padding-inline: 12px;
  }

  .brand {
    font-size: 14px;
    gap: 8px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .header-cta {
    min-width: 124px;
    min-height: 46px;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }
}
