:root {
  --ink-950: #061124;
  --ink-900: #0b1d3a;
  --ink-800: #14233e;
  --ink-700: #26364f;
  --ink-600: #40506b;
  --ink-500: #61708a;
  --ink-200: #d8e1ee;
  --ink-100: #ecf1f7;
  --paper: #ffffff;
  --paper-soft: #f7f9fc;
  --paper-warm: #fbfaf7;
  --mist: #eff6f7;
  --blue-600: #2563eb;
  --blue-500: #2f6ff4;
  --teal-500: #14b8a6;
  --teal-600: #0c9487;
  --amber-500: #f2b84b;
  --line: rgba(11, 29, 58, 0.13);
  --line-strong: rgba(11, 29, 58, 0.2);
  --radius-1: 6px;
  --radius-2: 8px;
  --shadow-1: 0 1px 2px rgba(6, 17, 36, 0.08), 0 18px 48px rgba(6, 17, 36, 0.1);
  --shadow-2: 0 28px 80px rgba(6, 17, 36, 0.18);
  --shadow-3: 0 44px 110px rgba(6, 17, 36, 0.24);
  --container: 1180px;
  --header-height: 78px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--ink-900);
  background:
    linear-gradient(90deg, rgba(11, 29, 58, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #fbfaf7 25%, #f7faff 58%, #eef3f8 100%);
  background-size: 84px 84px, 100% 100%;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-feature-settings: "cv02", "cv03", "cv04", "ss03";
  text-rendering: geometricPrecision;
}

html.motion-ready body {
  background-position: var(--grid-shift-x, 0px) var(--grid-shift-y, 0px), 0 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(20, 184, 166, 0.08), transparent 34%),
    linear-gradient(240deg, rgba(37, 99, 235, 0.1), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0));
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: radial-gradient(rgba(37, 99, 235, 0.18) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: linear-gradient(90deg, transparent 0%, transparent 68%, #000 86%, transparent 100%);
  opacity: 0.5;
}

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

img {
  display: block;
  max-width: 100%;
}

svg {
  display: block;
}

h1,
h2,
h3,
p,
dl,
dd,
ol,
ul {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p,
li,
dd {
  color: var(--ink-600);
  line-height: 1.72;
  text-wrap: pretty;
}

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

:focus-visible {
  outline: 3px solid rgba(20, 184, 166, 0.45);
  outline-offset: 4px;
}

::selection {
  color: white;
  background: var(--blue-600);
}

html.motion-ready .reveal-item {
  opacity: var(--reveal-opacity, 0);
  transform: translate3d(var(--reveal-x, 0px), var(--reveal-y, 20px), 0) scale(var(--reveal-scale, 0.985));
  transition:
    opacity 180ms linear,
    transform 220ms var(--ease);
  will-change: opacity, transform;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 18px;
  z-index: 80;
  padding: 10px 14px;
  color: white;
  background: var(--ink-950);
  border-radius: var(--radius-1);
  font-weight: 700;
}

.skip-link:focus {
  top: 14px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  width: min(var(--container), calc(100% - 48px));
  min-height: var(--header-height);
  margin: 0 auto;
  padding: 14px 0;
}

.site-header::before {
  content: "";
  position: fixed;
  inset: 0 0 auto;
  z-index: -1;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(216, 225, 238, 0.7);
  backdrop-filter: blur(22px) saturate(1.2);
}

.brand {
  display: flex;
  align-items: center;
  width: 220px;
  height: 54px;
  padding: 8px 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(216, 225, 238, 0.82);
  border-radius: var(--radius-2);
  box-shadow: 0 12px 30px rgba(6, 17, 36, 0.065);
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: normal;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(6, 17, 36, 0.05);
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  color: var(--ink-700);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 750;
  transition: color 180ms var(--ease), background 180ms var(--ease), transform 180ms var(--ease);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--ink-950);
  background: white;
  transform: translateY(-1px);
}

.nav-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius-2);
  font-weight: 800;
  line-height: 1;
  transition:
    color 180ms var(--ease),
    background 180ms var(--ease),
    border-color 180ms var(--ease),
    box-shadow 180ms var(--ease),
    transform 180ms var(--ease);
}

.nav-action {
  padding: 0 18px;
  color: white;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
  box-shadow: 0 16px 34px rgba(20, 184, 166, 0.24);
}

.nav-action:hover,
.button:hover {
  transform: translateY(-2px);
}

.nav-action:active,
.button:active {
  transform: translateY(0);
}

.nav-action svg,
.button svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.35;
}

.button {
  min-width: 176px;
  padding: 0 22px;
}

.button-primary {
  color: white;
  background: var(--ink-950);
  box-shadow: 0 18px 38px rgba(6, 17, 36, 0.24);
}

.button-primary:hover {
  background: #0d2346;
}

.button-secondary {
  color: var(--teal-600);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(20, 184, 166, 0.45);
}

.button-secondary:hover {
  color: #08776f;
  background: white;
  border-color: rgba(20, 184, 166, 0.72);
  box-shadow: 0 16px 34px rgba(20, 184, 166, 0.14);
}

.button-light {
  min-width: 278px;
  color: var(--ink-950);
  background: white;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.18);
}

.button-light:hover {
  box-shadow: 0 26px 52px rgba(0, 0, 0, 0.24);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(500px, 1fr);
  gap: 44px;
  align-items: center;
  min-height: calc(100svh - var(--header-height));
  padding: 94px 0 92px;
}

.hero::after {
  content: "";
  position: absolute;
  right: calc(50% + 300px);
  bottom: 42px;
  width: 180px;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(11, 29, 58, 0.28), transparent);
  transform: rotate(-18deg);
}

.hero-copy {
  min-width: 0;
  max-width: 650px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  margin-bottom: 18px;
  color: var(--ink-700);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  flex: 0 0 auto;
  width: 3px;
  height: 19px;
  background: linear-gradient(180deg, var(--teal-500), var(--blue-600));
  border-radius: 999px;
}

h1 {
  max-width: 650px;
  margin-bottom: 24px;
  color: var(--ink-950);
  font-size: clamp(3rem, 4.75vw, 4.38rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 20px;
  color: #31415e;
  font-size: 1.12rem;
  line-height: 1.7;
}

.hero-context {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.hero-context span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  color: var(--ink-800);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(11, 29, 58, 0.11);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(6, 17, 36, 0.045);
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.market-note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 30px;
  color: var(--ink-700);
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.45;
}

.market-note svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  color: var(--teal-600);
  stroke-width: 2.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 0;
}

.hero-proof div {
  padding: 16px 16px 18px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(11, 29, 58, 0.11);
  border-radius: var(--radius-2);
  box-shadow: 0 12px 32px rgba(6, 17, 36, 0.055);
}

.hero-proof dt {
  margin-bottom: 8px;
  color: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-proof dd {
  margin-left: 0;
  color: var(--ink-700);
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.45;
}

.hero-product {
  min-width: 0;
  position: relative;
}

.hero-product::before {
  content: "";
  position: absolute;
  inset: 28px -18px -18px 36px;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(242, 184, 75, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(20, 184, 166, 0.18));
  border-radius: var(--radius-2);
}

.product-shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 16px;
  color: white;
  background:
    linear-gradient(180deg, rgba(8, 24, 52, 0.98), rgba(5, 15, 32, 0.98)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(20, 184, 166, 0.14));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-2);
  box-shadow: var(--shadow-3);
}

.product-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(135deg, rgba(20, 184, 166, 0.09), transparent 42%, rgba(37, 99, 235, 0.08));
  background-size: 34px 34px, 34px 34px, 100% 100%;
}

.product-shell::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 0;
  height: 150px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), transparent);
}

.product-topbar,
.product-command-row,
.signal-grid,
.ops-grid,
.interface-strip {
  position: relative;
  z-index: 1;
}

.product-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding: 14px;
  color: white;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-2);
}

.product-identity {
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-identity img {
  width: 44px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
}

.product-identity span,
.panel-heading span,
.signal-card span,
.case-kicker {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.product-identity span {
  color: rgba(255, 255, 255, 0.62);
}

.product-identity strong {
  display: block;
  color: white;
  font-size: 0.98rem;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 750;
}

.live-badge span {
  width: 8px;
  height: 8px;
  background: var(--teal-500);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(20, 184, 166, 0.16);
}

.product-command-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.product-command-row span {
  min-width: 0;
  padding: 10px 9px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.052);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-1);
  font-size: 0.68rem;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
}

.signal-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}

.signal-card,
.ops-panel {
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.signal-card {
  padding: 18px;
}

.signal-card-primary {
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.22), rgba(20, 184, 166, 0.12)),
    rgba(255, 255, 255, 0.08);
  border-color: rgba(20, 184, 166, 0.26);
}

.signal-card strong {
  display: block;
  margin: 9px 0 8px;
  color: white;
  font-size: clamp(1.05rem, 1.75vw, 1.42rem);
  line-height: 1.08;
  text-wrap: balance;
}

.signal-card small {
  display: block;
  color: rgba(84, 255, 222, 0.88);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
}

.ops-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(190px, 0.75fr);
  gap: 12px;
}

.ops-panel {
  min-height: 230px;
  padding: 18px;
}

.panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.panel-heading strong {
  color: white;
  font-size: 0.94rem;
}

.revenue-panel svg {
  width: 100%;
  height: 158px;
}

.chart-grid {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 1;
}

.chart-fill {
  fill: rgba(20, 184, 166, 0.1);
}

.chart-line {
  fill: none;
  stroke: #45f0d2;
  stroke-linecap: round;
  stroke-width: 6;
  vector-effect: non-scaling-stroke;
}

.chart-line-spark {
  fill: none;
  opacity: var(--chart-spark-opacity, 0);
  stroke: rgba(255, 255, 255, 0.92);
  stroke-dasharray: var(--chart-spark-length, 52px) var(--chart-path-length, 720px);
  stroke-dashoffset: var(--chart-spark-offset, 720px);
  stroke-linecap: round;
  stroke-width: 6;
  filter: drop-shadow(0 0 10px rgba(69, 240, 210, 0.52));
  transition: opacity 180ms linear;
  vector-effect: non-scaling-stroke;
}

.chart-tracker {
  opacity: var(--chart-cursor-opacity, 1);
  transition: opacity 160ms linear;
}

.chart-end-dot {
  fill: #45f0d2;
  stroke: #071732;
  stroke-width: 4;
  filter: drop-shadow(0 0 8px rgba(69, 240, 210, 0.54));
}

.chart-end-ring {
  fill: rgba(69, 240, 210, 0.08);
  stroke: rgba(69, 240, 210, 0.62);
  stroke-width: 2.5;
  filter: drop-shadow(0 0 12px rgba(69, 240, 210, 0.34));
}

.decision-list {
  display: grid;
  gap: 13px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.decision-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.35;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
}

.status-dot.teal {
  background: var(--teal-500);
}

.status-dot.blue {
  background: var(--blue-600);
}

.status-dot.ink {
  background: var(--ink-900);
}

.interface-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-2);
}

.interface-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(3, 11, 24, 0.34);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.marquee-band {
  overflow: hidden;
  padding: 17px 0;
  color: white;
  background: #061124;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: marquee-slide 34s linear infinite;
  will-change: transform;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.1rem, 2vw, 1.65rem);
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-track span::after {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--teal-500);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(20, 184, 166, 0.12);
}

@keyframes marquee-slide {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.intro-band {
  padding: 76px 0;
  background: var(--ink-950);
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  gap: 70px;
  align-items: start;
}

.intro-band .eyebrow,
.work-section .eyebrow,
.cta-band .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.intro-band h2 {
  max-width: 720px;
  margin-bottom: 0;
  color: white;
  font-size: 3rem;
  line-height: 1.1;
}

.intro-band p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.04rem;
}

.market-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background:
    linear-gradient(135deg, rgba(20, 184, 166, 0.09), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 254, 0.92));
  border-bottom: 1px solid rgba(216, 225, 238, 0.78);
}

.market-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(11, 29, 58, 0.038) 1px, transparent 1px),
    linear-gradient(180deg, rgba(11, 29, 58, 0.038) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 20%, #000 78%, transparent 100%);
}

.market-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1fr);
  gap: 54px;
  align-items: center;
}

.market-copy h2 {
  max-width: 660px;
  margin-bottom: 18px;
  color: var(--ink-950);
  font-size: 3rem;
  line-height: 1.1;
}

.market-copy p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 0;
  font-size: 1.03rem;
}

.market-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  min-width: 0;
}

.market-item {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 255, 0.88)),
    white;
  border: 1px solid rgba(11, 29, 58, 0.12);
  border-radius: var(--radius-2);
  box-shadow: 0 16px 44px rgba(6, 17, 36, 0.07);
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease), transform 180ms var(--ease);
}

.market-item::after {
  content: "";
  position: absolute;
  right: -26px;
  bottom: -32px;
  width: 116px;
  height: 116px;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.14), rgba(37, 99, 235, 0.1));
  border-radius: 999px;
  opacity: 0;
  transform: scale(0.78);
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
}

.market-item:hover {
  border-color: rgba(20, 184, 166, 0.32);
  box-shadow: 0 22px 56px rgba(6, 17, 36, 0.1);
  transform: translateY(-3px);
}

.market-item:hover::after {
  opacity: 1;
  transform: scale(1);
}

.market-item span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  color: var(--blue-600);
  background: #eef4ff;
  border: 1px solid #d9e6ff;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
}

.market-item h3 {
  margin-bottom: 10px;
  color: var(--ink-950);
  font-size: 1.15rem;
  line-height: 1.18;
}

.market-item p {
  margin-bottom: 0;
  font-size: 0.94rem;
  line-height: 1.62;
}

.section {
  padding: 104px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 36px;
}

.section-heading h2,
.cta-band h2 {
  margin-bottom: 14px;
  color: var(--ink-950);
  font-size: 3rem;
  line-height: 1.1;
}

.section-heading p:not(.eyebrow),
.system-copy > p {
  max-width: 700px;
  margin-bottom: 0;
  font-size: 1.03rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.service-lane {
  position: relative;
  min-height: 306px;
  padding: 30px 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 254, 0.92)),
    white;
  border: 1px solid rgba(11, 29, 58, 0.12);
  border-top: 3px solid var(--blue-600);
  border-radius: var(--radius-2);
  box-shadow: 0 18px 48px rgba(6, 17, 36, 0.08);
  transition: background 180ms var(--ease), transform 180ms var(--ease);
}

.service-lane:nth-child(2) {
  border-top-color: var(--teal-500);
}

.service-lane:nth-child(3) {
  border-top-color: #102447;
}

.service-lane:nth-child(4) {
  border-top-color: #0e9a9e;
}

.service-lane::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.12), rgba(37, 99, 235, 0.12));
  border-radius: 999px;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
}

.service-lane:hover {
  background: white;
  transform: translateY(-4px);
}

.service-lane:hover::after {
  opacity: 1;
  transform: scale(1);
}

.service-lane svg {
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  color: var(--blue-600);
  stroke-width: 1.85;
}

.service-lane h3 {
  margin-bottom: 12px;
  color: var(--ink-950);
  font-size: 1.26rem;
  line-height: 1.22;
}

.service-lane p {
  margin-bottom: 22px;
  color: var(--ink-600);
}

.service-lane span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  color: var(--ink-800);
  background: rgba(216, 225, 238, 0.5);
  border: 1px solid rgba(216, 225, 238, 0.8);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.investment-section {
  padding: 104px 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(247, 250, 254, 0.94)),
    var(--paper-soft);
  border-top: 1px solid rgba(216, 225, 238, 0.72);
}

.investment-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.68fr);
  gap: 48px;
  align-items: stretch;
}

.investment-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
}

.investment-copy h2 {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--ink-950);
  font-size: 3rem;
  line-height: 1.1;
}

.investment-copy p:not(.eyebrow) {
  max-width: 690px;
  margin-bottom: 0;
  font-size: 1.06rem;
}

.investment-copy strong {
  color: var(--ink-950);
  font-weight: 850;
}

.investment-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  gap: 22px;
  min-width: 0;
  padding: 30px;
  color: white;
  background:
    linear-gradient(135deg, rgba(20, 184, 166, 0.17), transparent 42%),
    linear-gradient(180deg, #102447, #061124);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-2);
  box-shadow: var(--shadow-2);
}

.investment-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, #000, transparent 92%);
}

.investment-range {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.investment-range span,
.investment-range small {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.3;
  text-transform: uppercase;
}

.investment-range strong {
  display: block;
  margin: 9px 0 10px;
  color: white;
  font-size: clamp(2.25rem, 3.6vw, 3.35rem);
  line-height: 0.94;
  letter-spacing: 0;
  white-space: nowrap;
}

.scope-list {
  display: grid;
  gap: 10px;
}

.scope-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 11px 12px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-2);
  font-weight: 750;
  line-height: 1.35;
}

.scope-item svg {
  width: 22px;
  height: 22px;
  color: #45f0d2;
  stroke-width: 2.2;
}

.investment-note {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
}

.work-section {
  padding: 104px 0;
  color: white;
  background:
    linear-gradient(135deg, rgba(20, 184, 166, 0.08), transparent 34%),
    linear-gradient(180deg, #071732 0%, #091a34 52%, #061124 100%);
}

.section-heading-inverted h2 {
  color: white;
}

.section-heading-inverted p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.case-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  grid-column: span 3;
  min-height: 262px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  transition: border-color 180ms var(--ease), transform 180ms var(--ease), background 180ms var(--ease);
}

.case-card::after {
  content: "";
  position: absolute;
  inset: auto 22px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.8), transparent);
  opacity: 0;
  transition: opacity 180ms var(--ease);
}

.case-card:hover {
  background: rgba(255, 255, 255, 0.095);
  border-color: rgba(20, 184, 166, 0.34);
  transform: translateY(-3px);
}

.case-card:hover::after {
  opacity: 1;
}

.case-featured {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.82fr);
  gap: 32px;
  align-items: stretch;
  grid-column: span 6;
  min-height: 300px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.28), rgba(20, 184, 166, 0.14) 48%, rgba(255, 255, 255, 0.07)),
    rgba(255, 255, 255, 0.06);
}

.case-content {
  position: relative;
  z-index: 1;
  min-width: 0;
  align-self: center;
}

.case-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.74);
}

.case-kicker svg {
  width: 18px;
  height: 18px;
  color: var(--teal-500);
}

.case-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 28px;
  color: white;
  border-radius: var(--radius-2);
}

.case-icon svg {
  width: 28px;
  height: 28px;
}

.case-icon.navy {
  background: #102447;
}

.case-icon.blue {
  background: var(--blue-600);
}

.case-icon.dark {
  background: #243042;
}

.case-icon.cyan {
  background: #0e9a9e;
}

.case-card h3 {
  max-width: 740px;
  margin-bottom: 12px;
  color: white;
  font-size: 1.42rem;
  line-height: 1.18;
}

.case-featured h3 {
  font-size: 2rem;
}

.case-card p {
  max-width: 760px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.72);
}

.case-card p strong {
  color: white;
  font-weight: 850;
}

.case-result {
  position: relative;
  padding-left: 18px;
  color: rgba(84, 255, 222, 0.88) !important;
  font-weight: 760;
}

.case-result::before {
  content: "";
  position: absolute;
  top: 0.76em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--teal-500);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(20, 184, 166, 0.12);
}

.case-visual {
  position: relative;
  z-index: 1;
  min-height: 262px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 28px 70px rgba(0, 0, 0, 0.2);
}

.case-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, #000, transparent 86%);
}

.visual-window {
  position: absolute;
  inset: 24px;
  overflow: hidden;
  background: rgba(4, 15, 32, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-2);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.28);
}

.visual-top {
  display: flex;
  gap: 6px;
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.visual-top span {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.32);
  border-radius: 999px;
}

.visual-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 9px;
  padding: 14px;
}

.visual-product {
  min-height: 58px;
  background:
    linear-gradient(135deg, rgba(20, 184, 166, 0.3), rgba(37, 99, 235, 0.16)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-1);
}

.visual-product.hero-tile {
  min-height: 126px;
  background:
    linear-gradient(135deg, rgba(242, 184, 75, 0.34), rgba(20, 184, 166, 0.16)),
    rgba(255, 255, 255, 0.08);
}

.visual-product.wide {
  grid-column: 1 / -1;
  min-height: 42px;
}

.visual-checkout {
  position: absolute;
  right: 14px;
  bottom: 14px;
  min-width: 150px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-2);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.visual-checkout span,
.visual-checkout strong {
  display: block;
}

.visual-checkout span {
  margin-bottom: 4px;
  color: var(--ink-600);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.visual-checkout strong {
  color: var(--ink-950);
  font-size: 1.24rem;
}

.case-mini {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 88px;
  margin: auto 0 22px;
  padding: 13px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-2);
}

.case-mini span {
  display: block;
  border-radius: var(--radius-1);
}

.order-mini span {
  height: 16px;
  background: linear-gradient(90deg, rgba(242, 184, 75, 0.72), rgba(255, 255, 255, 0.12));
}

.order-mini span:nth-child(2) {
  width: 78%;
  background: linear-gradient(90deg, rgba(20, 184, 166, 0.72), rgba(255, 255, 255, 0.12));
}

.order-mini span:nth-child(3) {
  width: 58%;
}

.dashboard-mini {
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
}

.dashboard-mini span {
  min-height: 32px;
  background: linear-gradient(180deg, rgba(69, 240, 210, 0.72), rgba(37, 99, 235, 0.18));
}

.dashboard-mini span:nth-child(2) {
  min-height: 56px;
}

.dashboard-mini span:nth-child(3) {
  min-height: 42px;
}

.dashboard-mini span:nth-child(4) {
  min-height: 72px;
}

.data-mini span {
  height: 17px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.22), rgba(69, 240, 210, 0.56));
}

.data-mini span:nth-child(2) {
  margin-left: 22%;
}

.data-mini span:nth-child(3) {
  width: 64%;
}

.directory-mini {
  grid-template-columns: repeat(2, 1fr);
}

.directory-mini span {
  min-height: 30px;
  background: rgba(20, 184, 166, 0.22);
  border: 1px solid rgba(20, 184, 166, 0.22);
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.case-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.77rem;
  font-weight: 800;
}

.system-section {
  padding-bottom: 96px;
}

.system-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 52px;
  align-items: start;
}

.system-copy {
  min-width: 0;
  position: sticky;
  top: 112px;
}

.system-copy > p {
  margin-bottom: 26px;
}

.system-checklist {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.system-checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink-700);
  font-weight: 650;
}

.system-checklist svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 4px;
  color: var(--teal-600);
  stroke-width: 2.5;
}

.capability-board {
  min-width: 0;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-2);
  box-shadow: var(--shadow-1);
}

.capability-row {
  display: grid;
  grid-template-columns: 62px minmax(130px, 0.5fr) 1fr;
  gap: 18px;
  align-items: center;
  padding: 24px 26px;
  border-bottom: 1px solid var(--line);
  transition: background 180ms var(--ease);
}

.capability-row:last-child {
  border-bottom: 0;
}

.capability-row:hover {
  background: #f8fbff;
}

.capability-row svg {
  width: 24px;
  height: 24px;
  color: var(--blue-600);
  stroke-width: 2.2;
}

.capability-row strong {
  color: var(--ink-950);
  font-size: 1.08rem;
}

.capability-row p {
  margin-bottom: 0;
}

.process-band {
  padding: 104px 0;
  background:
    linear-gradient(180deg, rgba(248, 251, 255, 0.9), rgba(255, 255, 255, 0.88)),
    var(--paper-soft);
  border-top: 1px solid rgba(216, 225, 238, 0.8);
  border-bottom: 1px solid rgba(216, 225, 238, 0.8);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-2);
  list-style: none;
}

.process-timeline li {
  position: relative;
  min-height: 286px;
  padding: 26px;
  background: white;
  border: 1px solid rgba(11, 29, 58, 0.12);
  border-radius: var(--radius-2);
  box-shadow: 0 18px 48px rgba(6, 17, 36, 0.075);
}

.process-timeline li::before {
  content: none;
}

.process-marker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 34px;
  color: var(--blue-600);
  background: #eef4ff;
  border: 1px solid #d9e6ff;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 850;
}

.process-marker svg {
  width: 21px;
  height: 21px;
  stroke-width: 2.3;
}

.process-timeline h3 {
  margin-bottom: 12px;
  color: var(--ink-950);
  font-size: 1.08rem;
  line-height: 1.24;
}

.process-timeline p {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.64;
}

.trust-section {
  padding: 104px 0;
  background: white;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.trust-card {
  position: relative;
  overflow: hidden;
  min-height: 246px;
  padding: 26px 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.95)),
    white;
  border: 1px solid rgba(11, 29, 58, 0.12);
  border-radius: var(--radius-2);
  box-shadow: 0 16px 44px rgba(6, 17, 36, 0.07);
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease), transform 180ms var(--ease);
}

.trust-card::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.14), rgba(37, 99, 235, 0.12));
  border-radius: 999px;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
}

.trust-card:hover {
  border-color: rgba(20, 184, 166, 0.34);
  box-shadow: 0 22px 56px rgba(6, 17, 36, 0.1);
  transform: translateY(-3px);
}

.trust-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

.trust-card svg {
  width: 34px;
  height: 34px;
  margin-bottom: 30px;
  color: var(--blue-600);
  stroke-width: 2;
}

.trust-card h3 {
  margin-bottom: 10px;
  color: var(--ink-950);
  font-size: 1.08rem;
  line-height: 1.24;
}

.trust-card p {
  margin-bottom: 0;
  font-size: 0.94rem;
  line-height: 1.62;
}

.trust-card-wide {
  background:
    linear-gradient(135deg, rgba(20, 184, 166, 0.08), rgba(37, 99, 235, 0.05)),
    white;
}

.video-section {
  padding: 104px 0;
  color: white;
  background:
    linear-gradient(135deg, rgba(20, 184, 166, 0.12), transparent 38%),
    linear-gradient(180deg, #081834 0%, #061124 100%);
}

.video-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1fr);
  gap: 52px;
  align-items: center;
}

.video-copy {
  min-width: 0;
}

.video-copy .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.video-copy h2 {
  margin-bottom: 16px;
  color: white;
  font-size: 3rem;
  line-height: 1.1;
}

.video-copy p {
  max-width: 520px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.03rem;
}

.video-section .button-secondary {
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.video-section .button-secondary:hover {
  color: white;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(69, 240, 210, 0.5);
}

.video-card {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.052)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-2);
  box-shadow: var(--shadow-3);
}

.video-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-2);
}

.video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #061124;
  border-radius: var(--radius-1);
}

.video-card figcaption {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.5;
}

.faq-section {
  padding: 104px 0;
  background:
    linear-gradient(180deg, rgba(248, 251, 255, 0.92), rgba(255, 255, 255, 0.94)),
    var(--paper-soft);
  border-top: 1px solid rgba(216, 225, 238, 0.8);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(480px, 1fr);
  gap: 54px;
  align-items: start;
}

.faq-copy {
  position: sticky;
  top: 112px;
}

.faq-copy h2 {
  margin-bottom: 16px;
  color: var(--ink-950);
  font-size: 3rem;
  line-height: 1.1;
}

.faq-copy p:not(.eyebrow) {
  margin-bottom: 0;
  font-size: 1.03rem;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
  background: white;
  border: 1px solid rgba(11, 29, 58, 0.12);
  border-radius: var(--radius-2);
  box-shadow: 0 16px 42px rgba(6, 17, 36, 0.065);
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.faq-item[open] {
  border-color: rgba(20, 184, 166, 0.34);
  box-shadow: 0 20px 52px rgba(6, 17, 36, 0.09);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 68px;
  padding: 20px 58px 20px 22px;
  color: var(--ink-950);
  cursor: pointer;
  font-weight: 850;
  line-height: 1.35;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--blue-600);
  background: #eef4ff;
  border: 1px solid #d9e6ff;
  border-radius: 999px;
  font-size: 1.2rem;
  line-height: 1;
  transition: color 180ms var(--ease), background 180ms var(--ease), transform 180ms var(--ease);
}

.faq-item[open] summary::after {
  color: white;
  background: var(--teal-600);
  border-color: rgba(20, 184, 166, 0.2);
  transform: rotate(45deg);
}

.faq-item summary:hover::after {
  transform: scale(1.06);
}

.faq-item[open] summary:hover::after {
  transform: rotate(45deg) scale(1.06);
}

.faq-item p {
  margin: -4px 58px 22px 22px;
  color: var(--ink-600);
  font-size: 0.98rem;
  line-height: 1.68;
}

.cta-band {
  padding: 96px 0;
  color: white;
  background:
    linear-gradient(125deg, rgba(20, 184, 166, 0.24), transparent 44%),
    linear-gradient(135deg, #0a4ddf 0%, #102e72 52%, #061124 100%);
}

.cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: center;
}

.cta-band h2 {
  max-width: 760px;
  color: white;
}

.cta-band p:not(.eyebrow) {
  max-width: 640px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.04rem;
}

.site-footer {
  color: white;
  background: #061124;
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(420px, 1.1fr);
  gap: 40px;
  align-items: center;
  padding-top: 44px;
  padding-bottom: 34px;
}

.footer-brand img {
  width: 216px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
  filter: invert(1) brightness(2.4) contrast(0.9);
  mix-blend-mode: screen;
}

.footer-brand p {
  max-width: 300px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 28px;
  font-style: normal;
}

.footer-contact a,
.footer-contact span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 750;
}

.footer-contact svg {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.78);
}

.copyright {
  margin: 0;
  padding: 18px 24px 24px;
  color: rgba(255, 255, 255, 0.58);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

  .marquee-track {
    transform: none !important;
  }
}

@media (max-width: 1120px) {
  h1 {
    font-size: 3.6rem;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 48px;
  }

  .hero-copy {
    max-width: 850px;
  }

  .service-grid,
  .process-timeline,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .system-layout,
  .intro-layout,
  .investment-layout,
  .market-layout,
  .video-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .system-copy,
  .faq-copy {
    position: static;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }

  .site-header {
    grid-template-columns: auto auto;
    width: min(var(--container), calc(100% - 32px));
  }

  .main-nav {
    display: none;
  }

  .brand {
    width: 168px;
  }

  .section-shell {
    width: min(var(--container), calc(100% - 32px));
  }

  .hero-proof,
  .signal-grid,
  .ops-grid,
  .cta-layout,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .section,
  .market-section,
  .work-section,
  .investment-section,
  .process-band,
  .trust-section,
  .video-section,
  .faq-section,
  .cta-band {
    padding: 78px 0;
  }

  .intro-band {
    padding: 66px 0;
  }

  .section-heading h2,
  .investment-copy h2,
  .market-copy h2,
  .intro-band h2,
  .video-copy h2,
  .faq-copy h2,
  .cta-band h2 {
    font-size: 2.3rem;
  }

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

  .case-card,
  .case-featured {
    grid-column: span 1;
  }

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

  .investment-panel {
    padding: 24px;
  }

  .video-card {
    padding: 10px;
  }

  .investment-range strong {
    font-size: 3rem;
  }

  .capability-row {
    grid-template-columns: 52px 1fr;
  }

  .capability-row p {
    grid-column: 2;
  }

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

@media (max-width: 620px) {
  body::after {
    opacity: 0.32;
  }

  .site-header {
    gap: 12px;
    padding: 12px 0;
  }

  .brand {
    width: 146px;
    height: 42px;
  }

  .nav-action {
    width: 44px;
    min-width: 44px;
    padding: 0;
    gap: 0;
    overflow: hidden;
    font-size: 0;
  }

  .nav-action svg {
    width: 22px;
    height: 22px;
  }

  .hero {
    gap: 38px;
    padding: 42px 0 60px;
  }

  h1 {
    font-size: 2.46rem;
    line-height: 1.05;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-lead {
    font-size: 1.02rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .product-shell {
    width: 100%;
    padding: 10px;
  }

  .hero-product::before {
    inset: 18px -8px -8px 18px;
  }

  .product-topbar {
    align-items: flex-start;
    padding: 12px;
  }

  .product-command-row,
  .interface-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .live-badge {
    display: none;
  }

  .signal-card,
  .ops-panel {
    padding: 16px;
  }

  .panel-heading {
    display: grid;
    gap: 7px;
  }

  .panel-heading strong {
    font-size: 0.9rem;
  }

  .service-grid,
  .market-board,
  .process-timeline,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .service-lane {
    min-height: 260px;
    padding: 26px 22px;
  }

  .case-card,
  .case-featured {
    min-height: auto;
    padding: 24px;
  }

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

  .visual-window {
    inset: 16px;
  }

  .case-featured h3 {
    font-size: 1.55rem;
  }

  .capability-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px;
  }

  .capability-row p {
    grid-column: auto;
  }

  .process-timeline li {
    min-height: auto;
  }

  .process-timeline li::before {
    display: none;
  }

  .cta-layout {
    gap: 28px;
  }

  .faq-item summary {
    min-height: 62px;
    padding: 18px 52px 18px 18px;
  }

  .faq-item summary::after {
    right: 18px;
  }

  .faq-item p {
    margin: -4px 18px 20px;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 2.18rem;
  }

  .section-heading h2,
  .investment-copy h2,
  .market-copy h2,
  .intro-band h2,
  .video-copy h2,
  .faq-copy h2,
  .cta-band h2 {
    font-size: 2rem;
  }
}
