:root {
  --font-sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --ink: #11151b;
  --ink-soft: #222a34;
  --charcoal: #11171d;
  --charcoal-2: #18212a;
  --paper: #f7f8f8;
  --white: #ffffff;
  --surface: #f0f2f3;
  --line: #d8dde2;
  --line-dark: #34404b;
  --muted: #5e6873;
  --muted-dark: #aeb8c2;
  --blue: #145bd7;
  --blue-dark: #0c49b6;
  --blue-soft: #e8f0ff;
  --green: #1f7a4f;
  --amber: #a46300;
  --red: #b42318;
  --radius: 8px;
  --shadow-media: 0 22px 54px rgba(18, 27, 37, 0.15);
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

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

:focus-visible {
  outline: 3px solid rgba(20, 91, 215, 0.34);
  outline-offset: 3px;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(17, 23, 29, 0.97);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.nav-shell {
  display: flex;
  width: min(1360px, calc(100% - 48px));
  min-height: 72px;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 800;
}

.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.brand-name {
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.desktop-nav a,
.header-signin {
  color: #dfe5eb;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.desktop-nav a:hover,
.header-signin:hover {
  color: var(--white);
}

.desktop-nav a.is-active {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--blue);
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-actions .btn {
  padding-inline: 14px;
  white-space: nowrap;
}

.language-control {
  position: relative;
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 3px;
}

/* Sliding thumb behind the active language. FR is the first button, so the
   thumb rests there and slides right when EN takes over. */
.language-control::before {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 3px;
  width: calc(50% - 4px);
  border-radius: 4px;
  background: var(--white);
  transform: translateX(0);
  transition: transform 240ms cubic-bezier(0.3, 0.7, 0.25, 1);
}

.language-control[data-active-language="en"]::before {
  transform: translateX(calc(100% + 2px));
}

.language-control button {
  position: relative;
  z-index: 1;
  min-width: 34px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #c8d0d8;
  cursor: pointer;
  padding: 6px 7px;
  font-size: 12px;
  font-weight: 700;
  transition: color 200ms ease;
}

.language-control button[aria-pressed="true"] {
  color: var(--charcoal);
}

/* Language swap: translated nodes fade out, swap text, fade back in. The
   FR/EN buttons carry no data-en/data-fr, so the toggle itself stays solid. */
[data-en][data-fr] {
  transition: opacity 150ms ease;
}

body.language-fade [data-en][data-fr] {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  .language-control::before,
  .language-control button,
  [data-en][data-fr] {
    transition: none;
  }
}

/* 2026 operational storytelling system */
.ops-hero { background: #fff; padding: 72px 0 64px; border-bottom: 1px solid var(--line); }
.ops-hero-grid { display: grid; grid-template-columns: minmax(0,.88fr) minmax(560px,1.12fr); gap: 58px; align-items: center; }
.ops-hero-copy h1 { max-width: 670px; margin: 0; font-size: clamp(42px,4.4vw,68px); line-height: 1.03; letter-spacing: -.055em; }
.ops-hero-copy > p:not(.hero-reassurance) { max-width: 650px; margin: 26px 0 0; color: var(--ink-soft); font-size: 19px; line-height: 1.55; }
.hero-reassurance { display: flex; align-items: center; gap: 10px; margin: 22px 0 0; font-size: 14px; font-weight: 600; }
.hero-reassurance::before { content: "✓"; display: grid; width: 24px; height: 24px; place-items: center; border-radius: 50%; background: var(--blue); color: white; font-size: 13px; }
.product-shell { overflow: hidden; border: 1px solid #cbd3dc; border-radius: 10px; background: #fff; box-shadow: var(--shadow-media); }
.product-top,.product-asset,.product-metrics { display: grid; border-bottom: 1px solid var(--line); }
.product-top { grid-template-columns: 1fr auto; align-items: center; padding: 18px 20px; background: #f8fafc; }
.product-top div { display: flex; flex-direction: column; }
.product-shell small { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .06em; }
.product-asset { grid-template-columns: .8fr 1.2fr; }
.product-asset > div { min-height: 140px; padding: 24px; }
.product-asset > div + div { border-left: 1px solid var(--line); }
.product-asset h2,.product-asset h3 { margin: 8px 0 2px; line-height: 1.15; }
.status { display: inline-flex; width: max-content; border-radius: 4px; padding: 5px 8px; font-size: 11px; font-weight: 700; }
.status-amber { background: #fff0cd; color: #805200; }.status-red { background: #fee8e6; color: #a2231a; }
.product-metrics { grid-template-columns: repeat(3,1fr); }
.product-metrics > div { display: flex; min-width: 0; flex-direction: column; gap: 5px; padding: 20px; }
.product-metrics > div + div { border-left: 1px solid var(--line); }
.product-metrics span { color: var(--muted); font-size: 12px; }
.product-activity { display: flex; gap: 12px; padding: 18px 20px; }.product-activity p { display: flex; margin: 0; flex-direction: column; }.product-activity small { margin-top: 4px; text-transform: none; letter-spacing: 0; }.activity-dot { width: 9px; height: 9px; margin-top: 6px; border-radius: 50%; background: var(--blue); }
.fragmentation-section { background: var(--surface); }
.fragmentation-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: center; }
.fragment-items { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.fragment-items span { min-height: 66px; border: 1px solid var(--line); border-radius: 6px; background: white; padding: 12px; font-size: 12px; font-weight: 650; }
.fragment-arrow { color: var(--blue); text-align: center; font-size: 24px; }
.workorder-chip { display: flex; width: min(440px,100%); margin: 0 auto; justify-content: space-between; gap: 20px; border: 1px solid #aebfd6; border-left: 4px solid var(--blue); border-radius: 6px; background: white; padding: 16px; }.workorder-chip span { color: var(--muted); font-size: 12px; }
.consequence-list { display: grid; grid-template-columns: repeat(6,1fr); margin-top: 54px; border-top: 1px solid var(--line); }.consequence-list span { padding: 22px 16px 0; font-size: 13px; font-weight: 700; }.consequence-list span + span { border-left: 1px solid var(--line); }
.story-heading { display: flex; justify-content: space-between; gap: 32px; align-items: end; }
.story-asset { display: flex; min-width: 220px; flex-direction: column; border-left: 3px solid var(--blue); padding-left: 18px; }.story-asset span { color: var(--muted); font-size: 13px; }
.repair-story { position: relative; margin-top: 54px; }.repair-story::before { content:""; position:absolute; top:24px; bottom:24px; left:27px; width:1px; background:#b8cae8; }
.story-step { position: relative; display: grid; grid-template-columns: 56px 1fr max-content; gap: 24px; align-items: center; min-height: 100px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.story-number { position: relative; z-index: 1; display: grid; width: 56px; height: 56px; place-items: center; border: 1px solid #b8cae8; border-radius: 50%; background: white; color: var(--blue); font-size: 12px; font-weight: 800; }
.story-step h3 { margin: 0 0 4px; font-size: 19px; }.story-step p { max-width: 700px; margin: 0; color: var(--muted); font-size: 14px; }.story-owner { border: 1px solid var(--line); border-radius: 4px; padding: 7px 10px; font-size: 11px; font-weight: 700; }
.decision-list { margin-top: 46px; border-top: 1px solid var(--line-dark); }.decision-list article { display: grid; grid-template-columns: 54px minmax(240px,.7fr) 1.3fr; gap: 24px; align-items: center; padding: 22px 0; border-bottom: 1px solid var(--line-dark); }.decision-list h3,.decision-list p { margin: 0; }.decision-list h3 { font-size: 18px; }.decision-list p { color: var(--muted-dark); }.decision-number { color: #75a4ff; font-size: 12px; font-weight: 800; }
.feature-rail { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 46px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }.feature-rail a { min-height: 230px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 26px; transition: background .18s ease; }.feature-rail a:hover { background: var(--blue-soft); }.feature-rail a > span { color: var(--blue); font-size: 12px; font-weight: 800; }.feature-rail strong { display: block; margin-top: 42px; font-size: 18px; }.feature-rail p { color: var(--muted); font-size: 14px; }
.role-workspaces { background: var(--surface); }.role-panel-code { grid-template-columns: .68fr 1.32fr; }.role-ui { align-self: stretch; overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: white; }.role-ui-top { display: flex; gap: 16px; align-items: center; border-bottom: 1px solid var(--line); padding: 18px; }.role-ui-top strong { margin-right: auto; }.role-ui-body { display: grid; grid-template-columns: repeat(3,1fr); }.role-ui-body div { display: flex; min-height: 170px; flex-direction: column; gap: 9px; padding: 24px; }.role-ui-body div + div { border-left: 1px solid var(--line); }.role-ui-body small,.role-ui-body span { color: var(--muted); font-size: 12px; }
.ai-brief-section { background: #eaf1fd; }.ai-brief-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 72px; align-items: center; }.brief-ui { display: grid; grid-template-columns: .8fr 1.2fr; overflow: hidden; border: 1px solid #aebfd6; border-radius: 8px; background: white; box-shadow: 0 18px 40px rgba(18,27,37,.09); }.brief-input,.brief-output { display: flex; min-height: 280px; flex-direction: column; gap: 14px; padding: 28px; }.brief-input { background: #f7f9fc; }.brief-output { border-left: 1px solid #cdd9eb; }.brief-ui small { color: var(--blue); font-size: 11px; font-weight: 800; text-transform: uppercase; }.brief-ui span { color: var(--muted); font-size: 13px; }.brief-output strong { margin: 30px 0 auto; font-size: 21px; }
.visibility-section { background: var(--charcoal); color: white; }.visibility-table { margin-top: 42px; border-top: 1px solid var(--line-dark); }.visibility-table div { display: grid; grid-template-columns: .7fr 1.3fr; gap: 36px; padding: 25px 0; border-bottom: 1px solid var(--line-dark); }.visibility-table span { color: var(--muted-dark); }
.industry-strip { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 44px; border-top: 1px solid var(--line); }.industry-strip article { padding: 30px 30px 0 0; }.industry-strip article + article { border-left: 1px solid var(--line); padding-left: 30px; }.industry-strip p { color: var(--muted); }
.quebec-section { background: #eaf1fd; }.quebec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }.quebec-grid ul,.pricing-includes { margin: 0; padding: 0; list-style: none; }.quebec-grid li,.pricing-includes li { padding: 15px 0; border-bottom: 1px solid #bdcce2; font-weight: 650; }.quebec-grid li::before,.pricing-includes li::before { content:"✓"; margin-right: 12px; color: var(--blue); }
.pricing-section { background: white; }.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }.price { display: flex; align-items: baseline; gap: 14px; margin: 24px 0; }.price strong { font-size: 60px; line-height: 1; letter-spacing: -.06em; }.price span { color: var(--muted); }.practical-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; }.practical-grid ol { padding-left: 22px; }.practical-grid li { margin: 16px 0; }.faq-list { border-top: 1px solid var(--line); }.faq-list details { border-bottom: 1px solid var(--line); padding: 20px 0; }.faq-list summary { cursor: pointer; font-weight: 750; }.faq-list p { color: var(--muted); }

@media (max-width: 1020px) {
  .ops-hero-grid { grid-template-columns: 1fr; }.ops-hero-copy { max-width: 780px; }.product-shell { max-width: 850px; }
  .fragmentation-grid,.ai-brief-grid,.pricing-grid,.practical-grid { grid-template-columns: 1fr; gap: 42px; }
  .consequence-list { grid-template-columns: repeat(3,1fr); }.feature-rail { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 700px) {
  .ops-hero { padding: 46px 0; }.ops-hero-copy h1 { font-size: 40px; }.ops-hero-copy > p:not(.hero-reassurance) { font-size: 17px; }
  .product-asset,.product-metrics,.brief-ui,.quebec-grid,.industry-strip,.role-panel-code { grid-template-columns: 1fr; }.product-asset > div + div,.product-metrics > div + div,.brief-output,.industry-strip article + article { border-left: 0; border-top: 1px solid var(--line); }
  .fragment-items { grid-template-columns: repeat(2,1fr); }.consequence-list { grid-template-columns: 1fr 1fr; }.consequence-list span { border-left: 0!important; }
  .story-heading { display: block; }.story-asset { margin-top: 24px; }.story-step { grid-template-columns: 44px 1fr; gap: 14px; }.story-number { width: 44px; height: 44px; }.repair-story::before { left: 21px; }.story-owner { grid-column: 2; width: max-content; }
  .decision-list article { grid-template-columns: 40px 1fr; }.decision-list p { grid-column: 2; }.feature-rail { grid-template-columns: 1fr; }.feature-rail a { min-height: 180px; }.feature-rail strong { margin-top: 24px; }
  .role-ui-body { grid-template-columns: 1fr; }.role-ui-body div { min-height: 110px; }.role-ui-body div + div { border-left: 0; border-top: 1px solid var(--line); }
  .visibility-table div { grid-template-columns: 1fr; gap: 8px; }.price strong { font-size: 52px; }
}

@media (prefers-reduced-motion: reduce) {
  .feature-rail a { transition: none; }
}

/* Conversion and interaction refresh */
.btn {
  position: relative;
  box-shadow: 0 0 0 rgba(18, 27, 37, 0);
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease,
    transform 180ms cubic-bezier(0.2, 0.75, 0.25, 1), box-shadow 180ms ease;
}

@media (hover: hover) {
  .btn:hover {
    transform: translateY(-3px);
  }

  .btn-primary:hover {
    box-shadow: 0 10px 24px rgba(20, 91, 215, 0.3);
  }

  .btn-secondary:hover {
    border-color: var(--blue);
    background: var(--blue-soft);
    color: var(--blue-dark);
    box-shadow: 0 8px 20px rgba(18, 27, 37, 0.1);
  }

  .btn-dark-secondary:hover {
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
  }
}

.btn:active {
  transform: translateY(1px) scale(0.985);
  box-shadow: none;
  transition-duration: 70ms;
}

.text-link svg,
.route-row > svg {
  transition: transform 180ms ease;
}

.text-link:hover {
  color: var(--blue);
}

.text-link:hover svg,
.route-row:hover > svg {
  transform: translateX(5px);
}

.desktop-nav > a,
.header-signin,
.nav-dropdown > summary {
  position: relative;
  transition: color 160ms ease;
}

.desktop-nav > a::after,
.header-signin::after,
.nav-dropdown > summary::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.desktop-nav > a:hover::after,
.header-signin:hover::after,
.nav-dropdown > summary:hover::after,
.nav-dropdown[open] > summary::after,
.nav-dropdown.is-active > summary::after {
  transform: scaleX(1);
}

.desktop-nav a.is-active {
  text-decoration: none;
}

.desktop-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
  color: #dfe5eb;
}

.nav-dropdown > summary {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  list-style: none;
  white-space: nowrap;
}

.nav-dropdown > summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown > summary svg {
  width: 14px;
  height: 14px;
  transition: transform 180ms ease;
}

.nav-dropdown[open] > summary,
.nav-dropdown.is-active > summary {
  color: var(--white);
}

.nav-dropdown[open] > summary svg {
  transform: rotate(180deg);
}

.feature-menu-panel {
  position: absolute;
  top: calc(100% + 25px);
  left: 50%;
  display: grid;
  width: min(720px, calc(100vw - 48px));
  grid-template-columns: 1.18fr 0.82fr;
  overflow: hidden;
  border: 1px solid #cbd2d9;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 24px 60px rgba(5, 13, 22, 0.26);
  transform: translateX(-50%);
}

.feature-menu-panel::before {
  position: absolute;
  top: -26px;
  right: 0;
  left: 0;
  height: 26px;
  content: "";
}

.feature-menu-column {
  padding: 24px;
}

.feature-menu-column + .feature-menu-column {
  border-left: 1px solid var(--line);
  background: var(--surface);
}

.feature-menu-label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.feature-menu-column a {
  display: block;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  color: var(--ink);
  padding: 10px 8px;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease,
    transform 160ms ease;
}

.feature-menu-column a strong,
.feature-menu-column a small {
  display: block;
}

.feature-menu-column a strong {
  font-size: 13px;
}

.feature-menu-column a small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.feature-menu-industries a {
  font-size: 13px;
  font-weight: 700;
}

.feature-menu-column a:hover,
.feature-menu-column a:focus-visible {
  border-color: #c9d8f5;
  background: var(--blue-soft);
  color: var(--blue-dark);
  transform: translateX(3px);
}

.feature-menu-all {
  margin-top: 10px;
  border-top-color: #c8d0d8 !important;
  color: var(--blue-dark);
}

.mobile-feature-links {
  display: grid;
  border-left: 2px solid var(--blue);
  margin: -4px 0 4px 10px;
  padding-left: 14px;
}

.mobile-feature-links a {
  padding-block: 7px;
  color: #b9c5d0;
  font-size: 13px;
}

.mobile-menu .mobile-cta-row {
  grid-template-columns: 1fr;
}

.hero {
  min-height: 650px;
}

.hero-inner {
  min-height: 650px;
}

.hero-copy {
  width: 48%;
  max-width: 600px;
  padding-block: 62px 52px;
}

.hero h1 {
  max-width: 14ch;
  font-size: 46px;
}

.hero-local {
  margin: 0 0 16px;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 800;
}

.hero-motion {
  position: absolute;
  z-index: 0;
  top: 0;
  right: -8vw;
  bottom: 0;
  left: 39%;
  overflow: hidden;
  pointer-events: none;
}

.motion-track {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: #e0e5ea;
}

.motion-track-one {
  top: 22%;
}

.motion-track-two {
  top: 54%;
}

.motion-track-three {
  top: 82%;
}

.motion-track i {
  position: absolute;
  top: -3px;
  left: -18px;
  width: 18px;
  height: 7px;
  border-radius: 2px;
  background: var(--blue);
  animation: operation-signal 8s linear infinite;
}

.motion-track-two i {
  animation-delay: -5s;
  animation-duration: 11s;
}

.motion-track-three i {
  animation-delay: -2s;
  animation-duration: 9.5s;
}

.hero-media {
  top: 42px;
  animation: product-drift 8s ease-in-out infinite;
}

.hero-lede {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.55;
}

.hero .hero-actions {
  margin-top: 26px;
}

.hero-explore {
  margin-top: 16px;
}

@keyframes operation-signal {
  from { transform: translateX(0); }
  to { transform: translateX(calc(100vw + 80px)); }
}

@keyframes product-drift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

.quebec-proof {
  background: #0e4fae;
  color: var(--white);
}

.quebec-proof-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: stretch;
  gap: 64px;
  padding-block: 54px;
}

.quebec-proof-statement {
  display: grid;
  grid-template-columns: 118px 1fr;
  align-items: center;
  gap: 28px;
}

.quebec-proof-statement > span {
  color: rgba(255, 255, 255, 0.22);
  font-size: 92px;
  font-weight: 850;
  line-height: 0.9;
}

.quebec-proof h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.15;
}

.quebec-proof p {
  margin: 12px 0 0;
  color: #dbe8ff;
  font-size: 15px;
}

.quebec-proof-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.quebec-proof-points > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
}

.quebec-proof-points > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.quebec-proof-points strong,
.quebec-proof-points small {
  display: block;
}

.quebec-proof-points strong {
  font-size: 13px;
}

.quebec-proof-points small {
  margin-top: 6px;
  color: #cbdcff;
  font-size: 11px;
  line-height: 1.45;
}

.industry-preview {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
  gap: 90px;
}

.industry-preview .btn {
  margin-top: 28px;
}

.industry-preview-list {
  border-top: 1px solid #bfc7cf;
}

.industry-preview-list a {
  display: grid;
  min-height: 78px;
  grid-template-columns: 44px 1fr;
  align-items: center;
  border-bottom: 1px solid #bfc7cf;
  transition: background-color 170ms ease, color 170ms ease, padding 170ms ease;
}

.industry-preview-list span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.industry-preview-list strong {
  font-size: 16px;
}

.industry-preview-list a:hover {
  background: var(--white);
  color: var(--blue-dark);
  padding-inline: 14px;
}

.feature-ledger article[id],
.industry-use-cases {
  scroll-margin-top: 90px;
}

.industry-heading-row,
.ai-context-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}

.industry-heading-row .btn,
.ai-context-heading .btn {
  flex: 0 0 auto;
}

.industry-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 54px;
  border-bottom: 1px solid var(--line-dark);
}

.industry-tabs button {
  min-height: 58px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: var(--muted-dark);
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  transition: border-color 170ms ease, background-color 170ms ease, color 170ms ease;
}

.industry-tabs button:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

.industry-tabs button[aria-selected="true"] {
  border-bottom-color: #4f8cff;
  background: rgba(20, 91, 215, 0.15);
  color: var(--white);
}

.industry-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 90px;
  padding-block: 54px 12px;
}

.industry-panel[hidden] {
  display: none;
}

.industry-number {
  color: #79a8ff;
  font-size: 12px;
  font-weight: 800;
}

.industry-panel h3 {
  max-width: 560px;
  margin: 14px 0 0;
  font-size: 32px;
  line-height: 1.18;
}

.industry-panel p {
  margin: 18px 0 0;
  color: var(--muted-dark);
  font-size: 16px;
}

.industry-panel ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.industry-panel li {
  position: relative;
  border-bottom: 1px solid var(--line-dark);
  padding: 18px 12px 18px 34px;
  color: #e2e8ee;
  font-size: 14px;
  font-weight: 650;
}

.industry-panel li::before {
  position: absolute;
  top: 20px;
  left: 5px;
  width: 11px;
  height: 11px;
  border: 2px solid #6e9eff;
  border-radius: 2px;
  content: "";
}

.ai-context-heading > div {
  max-width: 760px;
}

.context-progression {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 58px;
  border-block: 1px solid var(--line);
}

.context-progression article {
  min-height: 280px;
  padding: 34px 30px;
}

.context-progression article + article {
  border-left: 1px solid var(--line);
}

.context-progression span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.context-progression h3 {
  margin: 54px 0 0;
  font-size: 21px;
  line-height: 1.25;
}

.context-progression p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.less-software-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 90px;
}

.connected-record-flow {
  margin: 0;
  padding: 0;
  border-top: 1px solid #bfc7cf;
  list-style: none;
}

.connected-record-flow li {
  display: grid;
  min-height: 76px;
  grid-template-columns: 46px 1fr;
  align-items: center;
  border-bottom: 1px solid #bfc7cf;
}

.connected-record-flow span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--blue);
  border-radius: 4px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.connected-record-flow strong {
  font-size: 16px;
}

.conversion-actions:has(.btn:only-child) {
  display: block;
}

@media (max-width: 1260px) {
  .nav-dropdown > summary {
    font-size: 12px;
  }

  .feature-menu-panel {
    left: 30%;
  }

  .quebec-proof-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .quebec-proof-points {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-left: 0;
  }
}

@media (max-width: 860px) {
  .hero,
  .hero-inner {
    min-height: 760px;
  }

  .hero-copy {
    width: 100%;
    max-width: 680px;
    padding-top: 62px;
  }

  .hero h1 {
    max-width: 15ch;
  }

  .hero-media {
    top: 565px;
  }

  .hero-motion {
    top: 48%;
    left: 0;
  }

  .industry-preview,
  .industry-panel,
  .less-software-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .industry-heading-row,
  .ai-context-heading {
    display: grid;
    align-items: start;
    gap: 28px;
  }

  .industry-heading-row .btn,
  .ai-context-heading .btn {
    justify-self: start;
  }

  .industry-panel {
    gap: 36px;
  }

  .context-progression {
    grid-template-columns: 1fr;
  }

  .context-progression article {
    min-height: 0;
  }

  .context-progression article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .context-progression h3 {
    margin-top: 28px;
  }
}

@media (max-width: 600px) {
  .hero,
  .hero-inner {
    min-height: 760px;
  }

  .hero-copy {
    padding-top: 44px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-local {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .hero-media {
    top: 645px;
  }

  .hero-motion {
    display: none;
  }

  .quebec-proof-inner {
    gap: 34px;
    padding-block: 42px;
  }

  .quebec-proof-statement {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .quebec-proof-statement > span {
    font-size: 62px;
  }

  .quebec-proof h2 {
    font-size: 25px;
  }

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

  .quebec-proof-points > div {
    min-height: 76px;
    padding-inline: 0;
  }

  .quebec-proof-points > div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

  .industry-preview {
    gap: 36px;
  }

  .industry-preview-list a:hover {
    padding-inline: 0;
  }

  .industry-tabs {
    display: flex;
    overflow-x: auto;
    margin-inline: -16px;
    padding-inline: 16px;
    scrollbar-width: thin;
  }

  .industry-tabs button {
    min-width: 152px;
    flex: 0 0 auto;
  }

  .industry-panel {
    padding-top: 42px;
  }

  .industry-panel h3 {
    font-size: 27px;
  }

  .context-progression article {
    padding-inline: 0;
  }

  .less-software-layout {
    gap: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-track i,
  .hero-media {
    animation: none !important;
  }
}

/* Progressive enhancement safety lock. Keep this at EOF. */
.reveal { opacity: 1 !important; transform: none !important; }

/* Mobile overflow lock; intentionally last in the cascade. */
@media (max-width: 760px) {
  .pricing-grid { grid-template-columns: minmax(0, 1fr) !important; }
  .pricing-grid > *, .pricing-includes, .pricing-grid .price, .pricing-grid .hero-actions { min-width: 0 !important; width: 100% !important; max-width: 100%; }
  .pricing-grid .price { flex-wrap: wrap; }
  .pricing-grid .btn { width: 100%; white-space: normal; }
  .role-panel.role-panel-code { grid-template-columns: minmax(0, 1fr); }
}

@media (min-width: 1021px) {
  .ops-hero { padding-block: 54px 48px; }
  .ops-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(560px, 1.05fr); gap: 40px; }
  .ops-hero-copy h1 { font-size: clamp(48px, 4vw, 60px); }
  .ops-hero-copy > p:not(.hero-reassurance) { margin-top: 20px; }
}

/* Content remains complete when scripts or motion observers are unavailable. */
.reveal { opacity: 1; transform: none; }

.unified-queue,.unified-history { overflow: hidden; background: #fff; }
.queue-head { display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); background: #f8fafc; padding: 20px; }.queue-head span { color: var(--muted); font-size: 12px; }
.queue-row { display: grid; grid-template-columns: 95px 110px 1fr 160px; gap: 16px; align-items: center; min-height: 86px; border-bottom: 1px solid var(--line); padding: 16px 20px; }.queue-row small { color: var(--muted); }.queue-row .status:not(.status-red):not(.status-amber) { background: var(--blue-soft); color: var(--blue); }
.history-summary { display: grid; grid-template-columns: repeat(3,1fr); border-bottom: 1px solid var(--line); }.history-summary > div { display: flex; flex-direction: column; gap: 7px; padding: 22px; }.history-summary > div + div { border-left: 1px solid var(--line); }.history-summary small { color: var(--muted); }
@media (max-width: 700px) { .queue-row { grid-template-columns: 1fr 1fr; }.history-summary { grid-template-columns: 1fr; }.history-summary > div + div { border-left:0; border-top:1px solid var(--line); } }

/* Final operational-page cascade */
.role-panel.role-panel-code { grid-template-columns: .68fr 1.32fr; }
.feature-deep-list { margin-top: 56px; border-top: 1px solid var(--line); }
.feature-deep-list > article { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; padding: 52px 0; border-bottom: 1px solid var(--line); scroll-margin-top: 100px; }
.deep-feature-heading { display: grid; grid-template-columns: 38px 1fr; gap: 20px; }
.deep-feature-heading > span { color: var(--blue); font-size: 12px; font-weight: 800; }
.deep-feature-heading h3 { margin: 0 0 14px; font-size: 26px; line-height: 1.18; letter-spacing: -.025em; }
.deep-feature-heading p,.deep-feature-body p { margin: 0; color: var(--muted); }
.deep-feature-body { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; }
.deep-feature-body strong { border-left: 3px solid var(--blue); padding-left: 16px; font-size: 14px; }
.interest-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; border: 0; margin: 0; padding: 0; }
.interest-options legend { grid-column: 1/-1; margin-bottom: 8px; font-weight: 700; }
.interest-options label { display: flex; gap: 9px; align-items: center; border: 1px solid var(--line); border-radius: 5px; padding: 10px; font-size: 13px; }
.subscription-steps { counter-reset: sub; margin: 30px 0 0; padding: 0; list-style: none; }
.subscription-steps li { counter-increment: sub; position: relative; margin: 0; padding: 16px 0 16px 46px; border-bottom: 1px solid var(--line); }
.subscription-steps li::before { content: counter(sub); position: absolute; left: 0; display: grid; width: 28px; height: 28px; place-items: center; border-radius: 50%; background: var(--blue); color: white; font-size: 12px; font-weight: 800; }
@media (max-width: 760px) {
  .role-panel.role-panel-code,.feature-deep-list > article { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: minmax(0,1fr); }
  .pricing-grid > * { min-width: 0; width: 100%; }
  .pricing-grid .price { flex-wrap: wrap; }
  .pricing-grid .hero-actions { width: 100%; }
  .pricing-grid .btn { width: 100%; white-space: normal; }
  .feature-deep-list > article { gap: 28px; padding: 38px 0; }
  .interest-options { grid-template-columns: 1fr; }
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 750;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.btn-primary {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.btn-primary:hover {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
}

.btn-secondary {
  border-color: #aeb7c0;
  background: var(--white);
  color: var(--ink);
}

.btn-secondary:hover {
  border-color: var(--ink-soft);
}

.btn-dark-secondary {
  border-color: rgba(255, 255, 255, 0.38);
  background: transparent;
  color: var(--white);
}

.btn-dark-secondary:hover {
  border-color: var(--white);
}

.btn-full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 750;
}

.text-link svg,
.btn svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-button svg {
  width: 22px;
  height: 22px;
}

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--charcoal);
}

.mobile-menu-inner {
  display: grid;
  gap: 4px;
  padding-block: 14px 20px;
}

.mobile-menu a {
  padding: 10px 0;
  color: #e7ecf1;
  font-weight: 650;
}

.mobile-menu .mobile-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.hero-inner {
  position: relative;
  min-height: 650px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: 46%;
  max-width: 570px;
  padding-block: 106px 80px;
}

.hero h1 {
  max-width: 11ch;
  margin: 0;
  font-size: 60px;
  font-weight: 820;
  line-height: 1.03;
}

.hero-lede {
  max-width: 560px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-explore {
  margin-top: 22px;
}

.hero-media {
  position: absolute;
  z-index: 1;
  top: 42px;
  right: -235px;
  width: min(900px, 70vw);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-media);
}

.hero-media::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: 36%;
  background: linear-gradient(90deg, var(--white) 0%, rgba(255, 255, 255, 0.92) 28%, rgba(255, 255, 255, 0) 100%);
  content: "";
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 1.56;
  object-fit: cover;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.trust-inner {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  align-items: stretch;
}

.trust-statement,
.trust-point {
  min-height: 112px;
  display: flex;
  align-items: center;
  padding: 24px;
}

.trust-statement {
  padding-left: 0;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
}

.trust-point {
  gap: 10px;
  border-left: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.trust-point svg {
  width: 22px;
  height: 22px;
  color: var(--blue);
}

.section {
  padding-block: 104px;
}

.section-white {
  background: var(--white);
}

.section-surface {
  background: var(--surface);
}

.section-dark {
  background: var(--charcoal);
  color: var(--white);
}

.section-heading {
  max-width: 760px;
  margin: 0;
  font-size: 44px;
  font-weight: 810;
  line-height: 1.1;
}

.section-intro {
  max-width: 660px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.section-dark .section-intro {
  color: var(--muted-dark);
}

.workflow-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  padding: 0;
  margin-top: 66px;
  list-style: none;
}

.workflow-line::before {
  position: absolute;
  top: 30px;
  left: 7%;
  right: 7%;
  height: 2px;
  background: var(--blue);
  content: "";
}

.workflow-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.workflow-icon {
  display: inline-flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--blue);
  border-radius: 50%;
  background: var(--white);
  color: var(--blue);
}

.workflow-icon svg {
  width: 26px;
  height: 26px;
}

.workflow-step strong {
  display: block;
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.35;
}

.workflow-step > span:not(.workflow-icon) {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.editorial-stack {
  display: grid;
  gap: 112px;
  margin-top: 64px;
}

.editorial-row {
  display: grid;
  grid-template-columns: 0.78fr 1.42fr;
  align-items: center;
  gap: 62px;
}

.editorial-row.reverse {
  grid-template-columns: 1.42fr 0.78fr;
}

.editorial-row.reverse .editorial-copy {
  order: 2;
}

.editorial-row.reverse .product-frame {
  order: 1;
}

.editorial-copy h3 {
  margin: 0;
  font-size: 32px;
  line-height: 1.2;
}

.editorial-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

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

.outcome-list li {
  position: relative;
  padding-left: 27px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
}

.outcome-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  color: var(--blue);
  content: "✓";
  font-weight: 900;
}

.product-frame {
  overflow: hidden;
  border: 1px solid #cbd2d9;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-media);
}

.product-frame img {
  width: 100%;
  aspect-ratio: 1.56;
  object-fit: cover;
}

.feature-index {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 90px;
  border-block: 1px solid var(--line);
}

.feature-index article {
  min-height: 235px;
  padding: 34px 28px;
}

.feature-index article + article {
  border-left: 1px solid var(--line);
}

.feature-index svg {
  width: 28px;
  height: 28px;
  color: var(--blue);
}

.feature-index h3 {
  margin: 24px 0 0;
  font-size: 18px;
}

.feature-index p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 58px;
  border-block: 1px solid var(--line);
}

.detail-column {
  padding: 38px 34px;
}

.detail-column + .detail-column {
  border-left: 1px solid var(--line);
}

.detail-column h3 {
  margin: 0;
  font-size: 22px;
}

.detail-column p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.detail-column ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.detail-column li {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
}

.role-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 48px;
  border-bottom: 1px solid #bfc7cf;
}

.role-tab {
  min-height: 52px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 750;
}

.role-tab[aria-selected="true"] {
  border-bottom-color: var(--blue);
  color: var(--blue-dark);
}

.role-panel {
  display: grid;
  grid-template-columns: 1.5fr 0.72fr;
  align-items: center;
  gap: 54px;
  margin-top: 42px;
}

.role-copy h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.25;
}

.role-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.visibility-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.4fr;
  align-items: center;
  gap: 60px;
}

.visibility-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.visibility-list li {
  padding-top: 12px;
  border-top: 1px solid var(--line-dark);
  color: #e1e6eb;
  font-size: 14px;
  font-weight: 700;
}

.section-dark .product-frame {
  border-color: var(--line-dark);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.34);
}

.pricing-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: 82px;
}

.pricing-copy p {
  max-width: 500px;
}

.price-panel {
  border: 1px solid #aeb7c0;
  border-radius: var(--radius);
  background: var(--white);
  padding: 42px;
}

.price {
  color: var(--blue);
  font-size: 62px;
  font-weight: 830;
  line-height: 1;
}

.price-unit {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 700;
}

.price-billing {
  margin-top: 3px;
  color: var(--muted);
  font-size: 14px;
}

.included-list {
  display: grid;
  gap: 13px;
  margin: 30px 0;
  padding: 26px 0;
  border-block: 1px solid var(--line);
  list-style: none;
}

.included-list li {
  position: relative;
  padding-left: 27px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
}

.included-list li::before {
  position: absolute;
  left: 0;
  color: var(--blue);
  content: "✓";
  font-weight: 900;
}

.price-actions {
  display: grid;
  gap: 10px;
}

.reassurance {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.conversion-band {
  background: var(--charcoal);
  color: var(--white);
}

.conversion-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding-block: 76px;
}

.conversion-inner h2 {
  max-width: 700px;
  margin: 0;
  font-size: 40px;
  line-height: 1.15;
}

.conversion-inner p {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted-dark);
  font-size: 17px;
}

.conversion-actions {
  display: grid;
  min-width: 230px;
  gap: 10px;
}

.faq-list {
  margin-top: 48px;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 750;
  list-style: none;
}

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

.faq-list summary::after {
  color: var(--blue);
  content: "+";
  font-size: 25px;
  font-weight: 500;
}

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

.faq-list p {
  max-width: 820px;
  margin: -4px 0 24px;
  color: var(--muted);
}

.site-footer {
  background: #0d1217;
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  padding-block: 64px 48px;
}

.footer-brand p {
  max-width: 270px;
  margin: 20px 0 0;
  color: var(--muted-dark);
  font-size: 14px;
}

.footer-column h2 {
  margin: 0 0 16px;
  color: #8f9aa6;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  margin-top: 10px;
  color: #e0e6eb;
  font-size: 14px;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: #9ca7b2;
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.subpage-main {
  min-height: calc(100vh - 72px);
  padding-block: 66px 96px;
  background: var(--white);
}

.subpage-heading {
  max-width: 850px;
  margin: 0;
  font-size: 48px;
  line-height: 1.08;
}

.subpage-lede {
  max-width: 690px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.purchase-layout,
.demo-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 74px;
  margin-top: 52px;
}

.summary-panel {
  position: sticky;
  top: 104px;
  border-top: 4px solid var(--blue);
  background: var(--surface);
  padding: 30px;
}

.summary-panel .price {
  font-size: 52px;
}

.summary-panel h2 {
  margin: 0;
  font-size: 24px;
}

.summary-note {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.form-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
}

.form-panel h2 {
  margin: 0;
  font-size: 26px;
}

.form-panel > p {
  margin: 10px 0 0;
  color: var(--muted);
}

.form-section {
  padding-block: 28px;
  border-bottom: 1px solid var(--line);
}

.form-section h3 {
  margin: 0 0 18px;
  font-size: 17px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: grid;
  gap: 7px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.field legend {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 750;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #b9c1c9;
  border-radius: 5px;
  background: var(--white);
  padding: 10px 12px;
  font-size: 15px;
}

.field textarea {
  min-height: 126px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(20, 91, 215, 0.16);
}

.language-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  border: 0;
  margin: 0;
  padding: 0;
}

.language-options label {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #b9c1c9;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}

.language-options label:has(input:checked) {
  border-color: var(--blue);
  background: var(--blue-soft);
  color: var(--blue-dark);
}

.language-options input {
  width: 16px;
  min-height: auto;
}

.form-actions {
  display: grid;
  gap: 12px;
  padding-top: 28px;
}

.integration-note,
.form-message {
  border-left: 3px solid var(--blue);
  background: var(--blue-soft);
  padding: 14px 16px;
  color: #173d78;
  font-size: 13px;
}

.form-message[hidden] {
  display: none;
}

.form-message.error {
  border-color: var(--red);
  background: #fff0ee;
  color: #7a271a;
}

.disabled-checkout {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid #c7cdd3;
  border-radius: 6px;
  background: #e6e9ec;
  color: #7d8791;
  cursor: not-allowed;
  font-weight: 750;
}

.legal-note {
  color: var(--muted);
  font-size: 12px;
}

.legal-note a {
  color: var(--blue-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-line {
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
}

.contact-line a {
  color: var(--blue-dark);
  font-weight: 750;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

site-header,
site-footer {
  display: block;
}

.section-heading-row,
.workflow-preview-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
}

.workflow-preview-head .text-link {
  flex: 0 0 auto;
  margin-bottom: 6px;
}

.route-list {
  margin-top: 54px;
  border-top: 1px solid var(--line);
}

.route-row {
  display: grid;
  min-height: 126px;
  grid-template-columns: 70px 1fr 40px;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  transition: background-color 160ms ease, padding 160ms ease;
}

.route-row:hover {
  background: var(--surface);
  padding-inline: 18px;
}

.route-number,
.section-index,
.reason-number {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.route-row strong {
  display: block;
  font-size: 25px;
  line-height: 1.2;
}

.route-row small {
  display: block;
  max-width: 750px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
}

.route-row > svg {
  width: 28px;
  fill: none;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.compact-workflow {
  margin-top: 58px;
}

.compact-workflow .workflow-icon {
  color: var(--blue);
  font-size: 15px;
  font-weight: 800;
}

.principle-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: start;
  gap: 96px;
}

.principle-layout .btn {
  margin-top: 28px;
}

.principle-list {
  margin: 0;
  border-top: 1px solid var(--line-dark);
}

.principle-list > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 28px;
  border-bottom: 1px solid var(--line-dark);
  padding-block: 28px;
}

.principle-list dt {
  color: var(--white);
  font-weight: 800;
}

.principle-list dd {
  margin: 0;
  color: var(--muted-dark);
}

.stacked-actions {
  display: grid;
  width: min(100%, 310px);
  justify-self: end;
  gap: 10px;
}

.stacked-actions .btn {
  width: 100%;
  margin-top: 0;
}

.page-hero {
  overflow: hidden;
  background: var(--white);
  padding-block: 96px;
}

.page-hero-grid,
.why-hero-grid,
.pricing-page-grid {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  align-items: center;
  gap: 70px;
}

.page-hero-copy h1,
.page-hero-centred h1 {
  margin: 0;
  font-size: 55px;
  font-weight: 810;
  line-height: 1.04;
}

.page-hero-copy > p,
.page-hero-centred > p {
  max-width: 700px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.page-hero-copy .text-link {
  margin-top: 28px;
}

.page-product-frame,
.ai-product-frame {
  overflow: hidden;
  border: 1px solid #c8ced5;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-media);
}

.page-product-frame {
  width: 910px;
  margin-right: -250px;
}

.page-product-frame img,
.ai-product-frame img {
  width: 100%;
  height: auto;
}

.split-copy-row {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  border-top: 1px solid var(--line);
  padding-block: 56px;
}

.split-copy-row:last-child {
  border-bottom: 1px solid var(--line);
}

.split-copy-row h2 {
  max-width: 470px;
  margin: 14px 0 0;
  font-size: 36px;
  line-height: 1.15;
}

.split-copy-row p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.split-copy-row .text-link {
  margin-top: 28px;
}

.module-ledger {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 54px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.module-ledger article {
  min-height: 230px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 30px;
}

.module-ledger article > span,
.feature-title span,
.ai-output-list article > span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.module-ledger h3 {
  margin: 44px 0 0;
  font-size: 20px;
}

.module-ledger p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.feature-ledger {
  margin-top: 58px;
  border-top: 1px solid var(--line);
}

.feature-ledger article {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 70px;
  border-bottom: 1px solid var(--line);
  padding-block: 34px;
}

.feature-title {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px;
}

.feature-title h3 {
  margin: 0;
  font-size: 20px;
}

.feature-ledger article > p {
  max-width: 670px;
  margin: 0;
  color: var(--muted);
}

.role-outcomes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 50px;
  border-block: 1px solid var(--line);
}

.role-outcomes article {
  min-height: 240px;
  padding: 34px 28px;
}

.role-outcomes article + article {
  border-left: 1px solid var(--line);
}

.role-outcomes h3 {
  margin: 0;
  font-size: 21px;
}

.role-outcomes p {
  margin: 62px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.page-hero-centred {
  max-width: 980px;
  text-align: center;
}

.page-hero-centred > p {
  margin-inline: auto;
}

.page-hero-centred .hero-actions {
  justify-content: center;
}

.ai-page-hero,
.workflow-hero {
  padding-bottom: 150px;
}

.ai-product-stage {
  background: var(--charcoal);
  padding-bottom: 90px;
}

.ai-product-frame {
  position: relative;
  top: -72px;
  margin-bottom: -72px;
  border-color: var(--line-dark);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.ai-explain,
.guardrail-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: 90px;
}

.ai-output-list {
  border-top: 1px solid var(--line);
}

.ai-output-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-block: 26px;
}

.ai-output-list h3,
.guardrail-list h3 {
  margin: 0;
  font-size: 19px;
}

.ai-output-list p,
.guardrail-list p {
  margin: 7px 0 0;
  color: var(--muted);
}

.guardrail-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 3px solid var(--blue);
}

.guardrail-list article {
  min-height: 230px;
  border-bottom: 1px solid var(--line);
  padding: 28px 24px;
}

.guardrail-list article + article {
  border-left: 1px solid var(--line);
}

.why-hero {
  background: var(--surface);
}

.why-hero-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

.why-statement {
  display: grid;
  border-block: 1px solid #aeb7c0;
  padding-block: 30px;
}

.why-statement span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.why-statement strong {
  margin-block: 18px;
  border-block: 1px solid var(--line);
  color: var(--blue);
  padding-block: 28px;
  font-size: 34px;
  line-height: 1.1;
}

.reason-ledger {
  border-top: 1px solid var(--line);
}

.reason-ledger article {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
  border-bottom: 1px solid var(--line);
  padding-block: 54px;
}

.reason-ledger article > div {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 80px;
}

.reason-ledger h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.16;
}

.reason-ledger p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 48px;
  border-block: 1px solid var(--line);
}

.before-after > div {
  padding: 36px 40px;
}

.before-after > div + div {
  border-left: 1px solid var(--line);
}

.before-after h3 {
  margin: 0;
  font-size: 22px;
}

.before-after ul {
  display: grid;
  gap: 15px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.before-after li {
  border-top: 1px solid var(--line);
  padding-top: 13px;
  color: var(--muted);
}

.before-after > div:first-child h3 {
  color: var(--red);
}

.before-after > div:last-child h3 {
  color: var(--green);
}

.lifecycle {
  border-top: 1px solid var(--line);
}

.lifecycle article {
  display: grid;
  grid-template-columns: 70px 1.2fr 0.8fr;
  gap: 34px;
  border-bottom: 1px solid var(--line);
  padding-block: 42px;
}

.lifecycle-number {
  color: var(--blue);
  font-size: 18px;
  font-weight: 800;
}

.lifecycle-copy h2 {
  margin: 0;
  font-size: 26px;
}

.lifecycle-copy p {
  margin: 12px 0 0;
  color: var(--muted);
}

.lifecycle-result {
  border-left: 3px solid var(--blue);
  padding-left: 22px;
}

.lifecycle article:nth-child(3n + 2) .lifecycle-result {
  border-left-color: var(--amber);
}

.lifecycle article:nth-child(3n) .lifecycle-result {
  border-left-color: var(--green);
}

.lifecycle-result strong,
.lifecycle-result span {
  display: block;
}

.lifecycle-result span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.pricing-hero {
  background: var(--surface);
}

.pricing-page-grid {
  grid-template-columns: 0.9fr 0.75fr;
  max-width: 1050px;
}

.price-panel-featured {
  border-top: 4px solid var(--blue);
  box-shadow: 0 22px 50px rgba(18, 27, 37, 0.1);
}

.purchase-path {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}

.purchase-path h2 {
  margin: 14px 0 0;
  font-size: 36px;
  line-height: 1.15;
}

.purchase-path > div > p {
  color: var(--muted);
}

.purchase-path ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.purchase-path li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding-block: 25px;
}

.purchase-path li > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--blue);
  border-radius: 50%;
  color: var(--blue);
  font-weight: 800;
}

.purchase-path li p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 1260px) {
  .desktop-nav {
    gap: 14px;
  }

  .desktop-nav a,
  .header-signin {
    font-size: 12px;
  }

  .header-actions .btn-secondary,
  .header-signin {
    display: none;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-media {
    right: -330px;
  }

  .trust-inner {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }

  .trust-point:nth-child(4),
  .trust-point:nth-child(5) {
    border-top: 1px solid var(--line);
  }

  .trust-point:nth-child(4) {
    grid-column: 2;
  }

  .workflow-line {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 44px;
  }

  .workflow-line::before {
    display: none;
  }

  .workflow-step::before {
    position: absolute;
    z-index: -1;
    top: 30px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: var(--blue);
    content: "";
  }

  .workflow-step:nth-child(4)::before,
  .workflow-step:last-child::before {
    display: none;
  }

  .feature-index {
    grid-template-columns: 1fr 1fr;
  }

  .feature-index article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .feature-index article:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .visibility-layout {
    grid-template-columns: 1fr;
  }

  .page-hero-copy h1,
  .page-hero-centred h1 {
    font-size: 48px;
  }

  .page-product-frame {
    width: 760px;
    margin-right: -210px;
  }

  .principle-layout {
    gap: 60px;
  }

  .reason-ledger article > div {
    gap: 45px;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .desktop-nav,
  .header-actions .language-control {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .menu-button {
    display: inline-flex;
  }

  .mobile-menu[data-open="true"] {
    display: block;
  }

  .hero,
  .hero-inner {
    min-height: 790px;
  }

  .hero-copy {
    width: 100%;
    max-width: 640px;
    padding-top: 72px;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: 48px;
  }

  .hero-media {
    top: 500px;
    right: -70px;
    width: 780px;
  }

  .hero-media::after {
    width: 12%;
  }

  .trust-inner {
    grid-template-columns: 1fr 1fr;
  }

  .trust-statement {
    grid-column: 1 / -1;
    min-height: auto;
    border-bottom: 1px solid var(--line);
    padding: 24px 0;
  }

  .trust-point:nth-child(2),
  .trust-point:nth-child(4) {
    border-left: 0;
  }

  .trust-point:nth-child(4) {
    grid-column: auto;
  }

  .section {
    padding-block: 78px;
  }

  .section-heading {
    font-size: 38px;
  }

  .editorial-row,
  .editorial-row.reverse,
  .role-panel,
  .pricing-layout,
  .purchase-layout,
  .demo-layout {
    grid-template-columns: 1fr;
  }

  .editorial-row.reverse .editorial-copy,
  .editorial-row.reverse .product-frame {
    order: initial;
  }

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

  .detail-column + .detail-column {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .role-panel {
    gap: 34px;
  }

  .pricing-layout {
    gap: 42px;
  }

  .conversion-inner {
    display: grid;
  }

  .conversion-actions {
    min-width: 0;
    grid-template-columns: 1fr 1fr;
  }

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

  .summary-panel {
    position: static;
  }

  .section-heading-row,
  .workflow-preview-head {
    display: grid;
    align-items: start;
  }

  .workflow-preview-head .text-link {
    margin-bottom: 0;
  }

  .principle-layout,
  .page-hero-grid,
  .why-hero-grid,
  .pricing-page-grid,
  .split-copy-row,
  .ai-explain,
  .guardrail-layout,
  .purchase-path {
    grid-template-columns: 1fr;
  }

  .principle-layout,
  .page-hero-grid,
  .why-hero-grid,
  .pricing-page-grid,
  .ai-explain,
  .guardrail-layout,
  .purchase-path {
    gap: 46px;
  }

  .stacked-actions {
    width: min(100%, 360px);
    justify-self: start;
  }

  .page-hero {
    padding-block: 76px;
  }

  .page-product-frame {
    width: 920px;
    margin-right: -220px;
  }

  .split-copy-row {
    gap: 26px;
  }

  .module-ledger {
    grid-template-columns: 1fr 1fr;
  }

  .feature-ledger article {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 36px;
  }

  .role-outcomes {
    grid-template-columns: 1fr 1fr;
  }

  .role-outcomes article:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .role-outcomes article:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .ai-page-hero,
  .workflow-hero {
    padding-bottom: 124px;
  }

  .guardrail-list {
    grid-template-columns: 1fr;
  }

  .guardrail-list article {
    min-height: 0;
  }

  .guardrail-list article + article {
    border-left: 0;
  }

  .reason-ledger article > div {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .lifecycle article {
    grid-template-columns: 55px 1fr;
  }

  .lifecycle-result {
    grid-column: 2;
  }
}

@media (max-width: 600px) {
  .nav-shell {
    min-height: 64px;
  }

  .brand-name {
    font-size: 13px;
  }

  .header-actions > .btn-primary {
    display: none;
  }

  .mobile-menu .mobile-cta-row {
    grid-template-columns: 1fr;
  }

  .hero,
  .hero-inner {
    min-height: 755px;
  }

  .hero-copy {
    padding-top: 52px;
  }

  .hero h1 {
    font-size: 40px;
  }

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

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-media {
    top: 525px;
    right: -125px;
    width: 660px;
  }

  .trust-inner {
    grid-template-columns: 1fr;
  }

  .trust-point {
    min-height: 70px;
    border-top: 1px solid var(--line);
    border-left: 0;
    padding-inline: 0;
  }

  .section {
    padding-block: 66px;
  }

  .section-heading,
  .conversion-inner h2 {
    font-size: 32px;
  }

  .section-intro {
    font-size: 16px;
  }

  .workflow-line {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 42px;
  }

  .workflow-step {
    display: grid;
    min-height: 98px;
    grid-template-columns: 56px 1fr;
    column-gap: 18px;
    align-items: center;
    text-align: left;
  }

  .workflow-step::before {
    top: 60px;
    left: 27px;
    width: 2px;
    height: 38px;
  }

  .workflow-step:nth-child(4)::before {
    display: block;
  }

  .workflow-icon {
    grid-row: 1 / 3;
    width: 56px;
    height: 56px;
  }

  .workflow-step strong,
  .workflow-step > span:not(.workflow-icon) {
    margin: 0;
  }

  .workflow-step strong {
    align-self: end;
  }

  .workflow-step > span:not(.workflow-icon) {
    align-self: start;
  }

  .editorial-stack {
    gap: 76px;
  }

  .editorial-row,
  .editorial-row.reverse {
    gap: 30px;
  }

  .editorial-copy h3 {
    font-size: 27px;
  }

  .product-frame {
    margin-inline: -16px;
    border-radius: 0;
  }

  .feature-index {
    grid-template-columns: 1fr;
  }

  .feature-index article + article,
  .feature-index article:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .feature-index article {
    min-height: 0;
    padding-inline: 0;
  }

  .role-tabs {
    grid-template-columns: 1fr 1fr;
  }

  .role-tab:nth-child(1),
  .role-tab:nth-child(2) {
    border-top: 1px solid #bfc7cf;
  }

  .visibility-list {
    grid-template-columns: 1fr;
  }

  .price-panel {
    padding: 28px 22px;
  }

  .price {
    font-size: 52px;
  }

  .conversion-actions {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    display: grid;
    padding-block: 22px;
  }

  .subpage-main {
    padding-block: 46px 72px;
  }

  .subpage-heading {
    font-size: 38px;
  }

  .purchase-layout,
  .demo-layout {
    margin-top: 38px;
    gap: 30px;
  }

  .form-panel {
    margin-inline: -16px;
    border-inline: 0;
    border-radius: 0;
    padding: 26px 16px;
  }

  .form-grid,
  .language-options {
    grid-template-columns: 1fr;
  }

  .field-full {
    grid-column: auto;
  }

  .route-row {
    min-height: 138px;
    grid-template-columns: 42px 1fr 26px;
    gap: 14px;
  }

  .route-row:hover {
    padding-inline: 0;
  }

  .route-row strong {
    font-size: 21px;
  }

  .route-row small {
    font-size: 13px;
  }

  .principle-layout {
    gap: 38px;
  }

  .principle-list > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .page-hero {
    padding-block: 58px;
  }

  .page-hero-copy h1,
  .page-hero-centred h1 {
    font-size: 38px;
  }

  .page-hero-copy > p,
  .page-hero-centred > p {
    font-size: 16px;
  }

  .page-product-frame {
    width: calc(100% + 32px);
    margin-inline: -16px;
    border-inline: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .split-copy-row {
    padding-block: 38px;
  }

  .split-copy-row h2,
  .purchase-path h2 {
    font-size: 29px;
  }

  .module-ledger {
    grid-template-columns: 1fr;
    border-left: 0;
  }

  .module-ledger article {
    min-height: 0;
    border-right: 0;
    padding-inline: 0;
  }

  .module-ledger h3 {
    margin-top: 24px;
  }

  .feature-ledger article,
  .feature-title {
    grid-template-columns: 1fr;
  }

  .feature-ledger article {
    gap: 14px;
  }

  .feature-title {
    gap: 8px;
  }

  .role-outcomes {
    grid-template-columns: 1fr;
  }

  .role-outcomes article,
  .role-outcomes article:nth-child(3),
  .role-outcomes article:nth-child(4) {
    min-height: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
    padding-inline: 0;
  }

  .role-outcomes article:first-child {
    border-top: 0;
  }

  .role-outcomes p {
    margin-top: 24px;
  }

  .ai-page-hero,
  .workflow-hero {
    padding-bottom: 112px;
  }

  .ai-product-stage {
    padding-bottom: 56px;
  }

  .ai-product-frame {
    top: -54px;
    width: calc(100% + 32px);
    margin: 0 -16px -54px;
    border-inline: 0;
    border-radius: 0;
  }

  .ai-output-list article {
    grid-template-columns: 36px 1fr;
  }

  .why-statement strong {
    font-size: 28px;
  }

  .reason-ledger article {
    grid-template-columns: 44px 1fr;
    gap: 12px;
    padding-block: 40px;
  }

  .reason-ledger h2 {
    font-size: 25px;
  }

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

  .before-after > div {
    padding-inline: 0;
  }

  .before-after > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .lifecycle article {
    grid-template-columns: 40px 1fr;
    gap: 12px;
  }

  .lifecycle-result {
    margin-top: 12px;
  }

  .lifecycle-copy h2 {
    font-size: 23px;
  }

  .pricing-page-grid {
    gap: 36px;
  }

  .purchase-path {
    gap: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Final cascade locks for the refreshed hero and control feedback. */
.btn {
  box-shadow: 0 0 0 rgba(18, 27, 37, 0);
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease,
    transform 180ms cubic-bezier(0.2, 0.75, 0.25, 1), box-shadow 180ms ease;
}

.hero,
.hero-inner {
  min-height: 620px;
}

.hero-copy {
  width: 48%;
  max-width: 600px;
  padding-block: 62px 52px;
}

.hero h1 {
  max-width: 14ch;
  font-size: 46px;
}

.hero-lede {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.55;
}

.hero .hero-actions {
  margin-top: 26px;
}

.hero-explore {
  margin-top: 16px;
}

.hero-media {
  top: 42px;
}

.desktop-nav a.is-active {
  text-decoration: none;
}

@media (hover: hover) {
  .btn:hover {
    transform: translateY(-3px);
  }

  .btn-primary:hover {
    box-shadow: 0 10px 24px rgba(20, 91, 215, 0.3);
  }

  .btn-secondary:hover {
    border-color: var(--blue);
    background: var(--blue-soft);
    color: var(--blue-dark);
    box-shadow: 0 8px 20px rgba(18, 27, 37, 0.1);
  }
}

.btn:active {
  transform: translateY(1px) scale(0.985);
  box-shadow: none;
}

@media (max-width: 860px) {
  .hero,
  .hero-inner {
    min-height: 760px;
  }

  .hero-copy {
    width: 100%;
    max-width: 680px;
    padding-top: 62px;
  }

  .hero h1 {
    max-width: 15ch;
    font-size: 48px;
  }

  .hero-media {
    top: 565px;
  }
}

@media (max-width: 600px) {
  .hero,
  .hero-inner {
    min-height: 760px;
  }

  .hero-copy {
    padding-top: 44px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-media {
    top: 610px;
  }

  .mobile-menu .language-control button {
    flex: 1 1 50%;
  }

  .industry-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: visible;
    margin-inline: 0;
    padding-inline: 0;
  }

  .industry-tabs button {
    min-width: 0;
    min-height: 64px;
    padding-inline: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-track i,
  .hero-media {
    animation: none !important;
  }
}
