:root {
  --ink: #020617;
  --ink-2: #0f172a;
  --slate: #334155;
  --muted: #64748b;
  --line: #e2e8f0;
  --paper: #f8fafc;
  --paper-2: #ffffff;
  --white: #ffffff;
  --red: #dc2626;
  --amber: #ea580c;
  --green: #059669;
  --blue: #0369a1;
  --gold: #b45309;
  --panel: rgba(2, 6, 23, 0.78);
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
  --font-display: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Sora", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  background: var(--paper);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

section[id],
.section-heading[id] {
  scroll-margin-top: 110px;
}

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

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

a,
button {
  cursor: pointer;
  touch-action: manipulation;
}

button,
input,
select {
  font: inherit;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 100;
  width: auto;
  height: auto;
  clip: auto;
  padding: 10px 14px;
  background: var(--white);
  border: 2px solid var(--red);
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  top: 18px;
  left: clamp(12px, 3vw, 32px);
  right: clamp(12px, 3vw, 32px);
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 10px 12px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(2, 6, 23, 0.28);
  backdrop-filter: blur(16px);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(248, 250, 252, 0.95);
  color: var(--ink);
  box-shadow: 0 16px 40px rgba(19, 18, 15, 0.08);
  border-color: rgba(15, 23, 42, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 44px;
  min-width: 176px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  background: var(--amber);
  color: var(--white);
  font-weight: 900;
}

.brand strong,
.brand em {
  display: block;
  font-style: normal;
  line-height: 1.05;
}

.brand em {
  color: currentColor;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  opacity: 0.76;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
}

.primary-nav a {
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.88;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  opacity: 1;
  color: var(--amber);
}

.lang-switch {
  gap: 8px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.site-header.is-scrolled .lang-switch,
.site-header.is-open .lang-switch {
  border-color: rgba(15, 23, 42, 0.16);
}

.flag {
  flex: 0 0 auto;
  width: 20px;
  height: 14px;
  display: inline-block;
  border: 1px solid rgba(15, 23, 42, 0.18);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.flag--fr {
  background: linear-gradient(90deg, #1d4ed8 0 33.33%, #ffffff 33.33% 66.66%, #dc2626 66.66% 100%);
}

.flag--en {
  background:
    linear-gradient(90deg, transparent 0 42%, #ffffff 42% 58%, transparent 58%),
    linear-gradient(0deg, transparent 0 35%, #ffffff 35% 65%, transparent 65%),
    linear-gradient(90deg, transparent 0 46%, #dc2626 46% 54%, transparent 54%),
    linear-gradient(0deg, transparent 0 42%, #dc2626 42% 58%, transparent 58%),
    #1d4ed8;
}

.nav-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  background: var(--white);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: 0 12px 34px rgba(2, 6, 23, 0.18);
}

.site-header.is-scrolled .nav-cta,
.site-header.is-open .nav-cta {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid currentColor;
  color: currentColor;
}

.nav-toggle__bar {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 42%, rgba(236, 72, 153, 0.2), transparent 22%),
    radial-gradient(circle at 60% 56%, rgba(34, 211, 238, 0.22), transparent 18%),
    radial-gradient(circle at 80% 16%, rgba(250, 204, 21, 0.16), transparent 18%);
  mix-blend-mode: screen;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 78%);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, transparent 78%);
  opacity: 0.5;
  z-index: 2;
}

.hero--product {
  min-height: 88svh;
}

.hero__image,
.hero__shade,
.flow-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  z-index: 0;
}

.flow-scene {
  z-index: 1;
  overflow: hidden;
  mix-blend-mode: screen;
  opacity: 0.94;
  pointer-events: none;
  transform: translateZ(0);
}

.flow-scene canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.hero--product .flow-scene {
  opacity: 0.88;
}

.hero__shade {
  z-index: 2;
  background:
    radial-gradient(circle at 70% 36%, rgba(236, 72, 153, 0.18), transparent 22%),
    radial-gradient(circle at 78% 18%, rgba(3, 105, 161, 0.36), transparent 28%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.9) 0%, rgba(2, 6, 23, 0.7) 45%, rgba(2, 6, 23, 0.22) 100%),
    linear-gradient(0deg, rgba(2, 6, 23, 0.74) 0%, rgba(2, 6, 23, 0) 46%);
}

.hero__content {
  position: relative;
  z-index: 3;
  width: min(960px, calc(100% - 36px));
  margin: clamp(118px, 13vw, 168px) 0 clamp(46px, 7vw, 86px) clamp(18px, 6vw, 78px);
  animation: hero-rise 900ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #fbbf24;
}

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

h1 {
  max-width: 960px;
  margin-bottom: 22px;
  font-family: var(--font-display);
  font-size: 94px;
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.1;
  text-wrap: balance;
}

.hero__lede {
  width: min(620px, 100%);
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 22px;
  line-height: 1.32;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button--primary {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(234, 88, 12, 0.28);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.journey-line {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  width: min(650px, 100%);
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.journey-line::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.62), rgba(249, 115, 22, 0.5), transparent);
  transform: translateY(-50%);
}

.journey-line span {
  position: relative;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(226, 232, 240, 0.22);
  background: rgba(2, 6, 23, 0.5);
  backdrop-filter: blur(10px);
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.button--dark {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.hero-console,
.hero-metric-stack {
  position: absolute;
  right: clamp(18px, 4vw, 60px);
  bottom: clamp(18px, 6vw, 88px);
  z-index: 3;
  width: min(360px, calc(100% - 36px));
  border: 1px solid rgba(226, 232, 240, 0.26);
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 80px rgba(2, 6, 23, 0.32);
}

.console-label {
  margin: 0;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: #cbd5e1;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-console div,
.hero-metric-stack div {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px 12px;
  padding: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-mono);
  font-size: 12px;
}

.hero-console div:first-child,
.hero-metric-stack div:first-child {
  border-top: 0;
}

.hero-console strong {
  grid-column: 2;
  color: var(--white);
  font-size: 18px;
}

.signal {
  width: 10px;
  height: 10px;
  margin-top: 5px;
  background: var(--blue);
}

.signal--live {
  background: var(--amber);
}

.signal--warm {
  background: var(--amber);
}

.hero-metric-stack div {
  grid-template-columns: 1fr;
}

.hero-metric-stack strong {
  font-family: var(--font-mono);
  font-weight: 800;
  white-space: nowrap;
  color: var(--white);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--ink-2);
  color: var(--white);
}

.proof-strip span {
  min-height: 78px;
  display: grid;
  place-items: center;
  padding: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.proof-strip span:first-child {
  border-left: 0;
}

.split-section,
.case-feature,
.media-section,
.services-section,
.method-section,
.insights-section,
.product-showcase,
.offer-band,
.product-demo,
.workflows-section,
.security-section,
.segments-detail,
.cta-section {
  padding: clamp(70px, 10vw, 130px) clamp(18px, 5vw, 58px);
}

.split-section {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(28px, 8vw, 120px);
  max-width: var(--max);
  margin: 0 auto;
}

.split-section > *,
.case-feature > *,
.product-band > *,
.product-showcase > *,
.offer-band > *,
.product-demo > *,
.cta-section > *,
.section-heading--wide > * {
  min-width: 0;
}

.section-kicker {
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.split-section__content p {
  max-width: 760px;
  color: var(--ink-2);
  font-size: clamp(19px, 2.2vw, 28px);
  line-height: 1.32;
}

.case-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.74fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(3, 105, 161, 0.05), transparent 42%),
    var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.case-feature__copy {
  max-width: 720px;
  margin-left: auto;
}

.case-feature__copy p {
  color: var(--ink-2);
  font-size: 19px;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-weight: 900;
}

.text-link::after {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.ops-board,
.dashboard-panel,
.phone-shell {
  border: 1px solid rgba(226, 232, 240, 0.18);
  background: #07111f;
  color: var(--white);
  box-shadow: var(--shadow);
}

.ops-board__head,
.ops-board__foot,
.dashboard-panel__top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 900;
}

.ops-board__head strong,
.dashboard-panel__top span {
  color: var(--amber);
  font-size: 13px;
}

.match-row,
.risk-row {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr 0.7fr;
  gap: 16px;
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(226, 232, 240, 0.82);
  font-family: var(--font-mono);
  font-size: 12px;
}

.match-row strong,
.risk-row strong {
  color: var(--white);
}

.match-row em,
.risk-row em {
  color: var(--green);
  font-style: normal;
  font-weight: 800;
  text-align: right;
}

.match-row--warn em,
.risk-row--warm em {
  color: var(--amber);
}

.risk-row--hot em {
  color: var(--red);
}

.ops-board__foot {
  align-items: center;
  border-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.ops-board__foot button,
.ops-board__foot a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  background: var(--blue);
  border: 0;
  color: var(--white);
  font-weight: 900;
}

.section-heading {
  max-width: var(--max);
  margin: 0 auto 44px;
}

.section-heading--wide {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(28px, 8vw, 100px);
  align-items: start;
}

.section-heading--wide .eyebrow {
  margin-top: 16px;
}

.media-section {
  background: var(--paper);
}

.segment-grid,
.service-grid,
.method-grid,
.insight-grid,
.workflow-grid,
.security-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.segment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.segment-card {
  background: var(--white);
  border: 1px solid var(--line);
}

.segment-card img {
  width: 100%;
  height: clamp(300px, 34vw, 460px);
  object-fit: cover;
}

.segment-card div {
  padding: 22px;
}

.segment-card p,
.service-card p,
.method-grid p,
.insight-card p,
.workflow-grid p,
.security-grid p,
.product-card p,
.value-stack p,
.product-demo__copy p,
.product-band p {
  color: var(--muted);
}

.services-section {
  background:
    linear-gradient(135deg, rgba(3, 105, 161, 0.14), transparent 34%),
    var(--ink);
  color: var(--white);
}

.services-section .eyebrow,
.security-section .eyebrow {
  color: var(--amber);
}

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

.service-card {
  min-height: 460px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
}

.service-card--dark {
  background:
    linear-gradient(180deg, rgba(3, 105, 161, 0.18), rgba(15, 23, 42, 0)),
    #0b1220;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.12);
}

.service-card__index,
.method-grid span,
.insight-card span,
.workflow-grid span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--amber);
  font-family: var(--font-mono);
  font-weight: 900;
}

.service-card--dark .service-card__index,
.service-card--dark p,
.service-card--dark li {
  color: rgba(255, 255, 255, 0.72);
}

.service-card ul {
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  padding: 10px 0;
  border-top: 1px solid rgba(17, 17, 17, 0.16);
  color: var(--ink-2);
  font-weight: 800;
}

.service-card--dark li {
  border-top-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.84);
}

.service-card--dark .text-link {
  color: #38bdf8;
}

.service-card .text-link {
  margin-top: 26px;
}

.product-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(330px, 0.65fr);
  gap: clamp(34px, 8vw, 110px);
  align-items: center;
  padding: clamp(70px, 9vw, 120px) clamp(18px, 5vw, 58px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.6), transparent 56%),
    #f1f5f9;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-band__copy {
  max-width: 700px;
  margin-left: auto;
}

.product-band .eyebrow {
  color: var(--blue);
}

.product-showcase {
  background:
    linear-gradient(135deg, rgba(234, 88, 12, 0.08), transparent 34%),
    var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-card-grid {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0 auto;
}

.product-card {
  display: grid;
  grid-template-rows: minmax(260px, 0.9fr) auto;
  min-height: 650px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.1);
}

.product-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.product-card > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.98;
}

.product-card .button {
  margin-top: auto;
}

.offer-band {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(3, 105, 161, 0.11), transparent 40%),
    #f1f5f9;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.offer-band > div:first-child {
  max-width: 780px;
}

.offer-band .eyebrow {
  color: var(--blue);
}

.value-stack {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.value-stack article {
  display: grid;
  grid-template-columns: 52px minmax(0, 0.38fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 24px;
  background: var(--white);
}

.value-stack span {
  color: var(--amber);
  font-family: var(--font-mono);
  font-weight: 900;
}

.value-stack strong {
  font-size: 19px;
  line-height: 1.1;
}

.phone-shell {
  width: min(350px, 100%);
  min-height: 590px;
  margin-right: auto;
  padding: 18px;
  border-radius: 6px;
}

.phone-shell__top {
  padding: 12px 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 900;
  text-align: center;
}

.chat {
  width: 86%;
  margin-top: 18px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.chat--outgoing {
  margin-left: auto;
  background: var(--blue);
  color: var(--white);
}

.method-grid,
.insight-grid,
.workflow-grid,
.security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.method-grid article,
.insight-card,
.workflow-grid article,
.security-grid article {
  min-height: 290px;
  padding: 26px;
  background: var(--paper-2);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.method-grid article:hover,
.insight-card:hover,
.workflow-grid article:hover,
.security-grid article:hover,
.segment-card:hover,
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.1);
}

.insight-grid {
  grid-template-columns: repeat(3, 1fr);
}

.insights-section {
  background: var(--paper-2);
}

.problem-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.problem-strip div {
  min-height: 138px;
  padding: 22px;
  border-left: 1px solid var(--line);
}

.problem-strip div:first-child {
  border-left: 0;
}

.problem-strip span,
.detail-table span,
.hero-metric-stack span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.problem-strip strong {
  display: block;
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1;
}

.product-demo {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.74fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: center;
}

.product-demo__copy {
  max-width: 690px;
  margin-left: auto;
}

.dashboard-panel {
  margin-right: auto;
}

.dashboard-panel__top {
  align-items: center;
}

.workflows-section {
  background: var(--paper-2);
}

.workflow-grid {
  grid-template-columns: repeat(5, 1fr);
}

.workflow-grid article {
  min-height: 350px;
}

.security-section {
  background:
    linear-gradient(135deg, rgba(3, 105, 161, 0.14), transparent 38%),
    var(--ink);
  color: var(--white);
}

.security-grid {
  grid-template-columns: repeat(3, 1fr);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.16);
}

.security-grid article {
  min-height: 250px;
  background: #0b1220;
}

.security-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.segments-detail {
  background: var(--paper);
}

.detail-table {
  width: min(var(--max), 100%);
  margin: 0 auto;
  border: 1px solid var(--line);
}

.detail-table > div {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 24px;
  padding: 24px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.detail-table > div:first-child {
  border-top: 0;
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(340px, 0.62fr);
  gap: clamp(32px, 8vw, 110px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(234, 88, 12, 0.2), transparent 34%),
    linear-gradient(135deg, var(--blue), var(--ink-2));
  color: var(--white);
}

.cta-section .eyebrow {
  color: #fbbf24;
}

.cta-section h2 {
  max-width: 820px;
}

.cta-copy {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

.booking-panel {
  display: grid;
  gap: 18px;
  padding: 26px;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.18);
}

.booking-panel span {
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-panel strong {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.booking-panel p {
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 38px clamp(18px, 5vw, 58px);
  background: var(--ink);
  color: var(--white);
}

.site-footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  font-size: 14px;
  font-weight: 800;
}

.site-footer nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

@media (max-width: 1040px) {
  h1 {
    font-size: 76px;
  }

  h2 {
    font-size: 50px;
  }

  .hero__lede {
    font-size: 20px;
  }

  .hero-console,
  .hero-metric-stack {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 36px);
    margin: 0 18px 22px auto;
  }

  .proof-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .segment-grid,
  .service-grid,
  .product-card-grid,
  .method-grid,
  .insight-grid,
  .security-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .workflow-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .case-feature,
  .product-band,
  .offer-band,
  .product-demo,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .case-feature__copy,
  .product-band__copy,
  .product-demo__copy {
    margin-left: 0;
  }

  .phone-shell,
  .dashboard-panel {
    margin-right: 0;
  }

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

@media (max-width: 800px) {
  .site-header {
    top: 14px;
    left: 12px;
    right: 12px;
    align-items: flex-start;
    padding: 14px 18px;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .primary-nav {
    position: fixed;
    inset: 70px 12px auto 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: var(--paper);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  body.nav-open .primary-nav {
    display: flex;
  }

  .primary-nav a {
    padding: 14px 10px;
    border-top: 1px solid var(--line);
  }

  .primary-nav a:first-child {
    border-top: 0;
  }

  .nav-cta {
    margin-top: 10px;
    justify-content: center;
    background: var(--ink);
    color: var(--white);
  }

  .hero {
    min-height: 840px;
  }

  .flow-scene {
    opacity: 0.66;
  }

  .hero__shade {
    background:
      radial-gradient(circle at 64% 20%, rgba(236, 72, 153, 0.18), transparent 26%),
      radial-gradient(circle at 60% 16%, rgba(3, 105, 161, 0.32), transparent 28%),
      linear-gradient(0deg, rgba(2, 6, 23, 0.92) 0%, rgba(2, 6, 23, 0.68) 62%, rgba(2, 6, 23, 0.36) 100%);
  }

  .hero__content {
    width: calc(100% - 36px);
    margin: 140px 18px 38px;
  }

  h1 {
    font-size: 48px;
    line-height: 0.96;
  }

  h2 {
    font-size: 40px;
  }

  .hero__lede {
    font-size: 18px;
  }

  .split-section,
  .section-heading--wide {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .segment-grid,
  .service-grid,
  .product-card-grid,
  .method-grid,
  .insight-grid,
  .workflow-grid,
  .security-grid,
  .problem-strip {
    grid-template-columns: 1fr;
  }

  .service-card,
  .product-card,
  .method-grid article,
  .insight-card,
  .workflow-grid article,
  .security-grid article {
    min-height: auto;
  }

  .value-stack article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .segment-card img {
    height: 280px;
  }

  .match-row,
  .risk-row,
  .detail-table > div {
    grid-template-columns: 1fr;
  }

  .match-row em,
  .risk-row em {
    text-align: left;
  }

  .site-footer {
    display: block;
  }

  .site-footer nav {
    justify-content: flex-start;
    margin-top: 24px;
  }
}

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

  .flow-scene {
    opacity: 0.42;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  .button,
  .hero__actions {
    width: 100%;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip span {
    min-height: 56px;
  }

  .hero-console div {
    grid-template-columns: 14px 1fr;
  }

  .ops-board__head,
  .ops-board__foot,
  .dashboard-panel__top {
    display: block;
  }
}
