:root {
  color-scheme: light only;
  --navy-950: #001f3d;
  --navy-900: #062d51;
  --navy-800: #0a3d68;
  --navy-700: #18547e;
  --blue-200: #b9dfea;
  --blue-100: #dceff4;
  --blue-50: #eef8fa;
  --amber-600: #d88900;
  --amber-500: #faa80f;
  --amber-300: #ffd170;
  --amber-100: #ffedc7;
  --amber-50: #fff8e8;
  --ink: #10202f;
  --muted: #5d6975;
  --soft: #7f8a95;
  --line: #dce3e8;
  --fog: #f5f7f8;
  --white: #ffffff;
  --success: #16794d;
  --danger: #b42318;
  --font-display: "Newsreader", Georgia, "Times New Roman", serif;
  --font-sans: "Manrope", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --page: 1200px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-card: 0 0 0 1px rgba(0, 31, 61, .055), 0 22px 50px -30px rgba(0, 31, 61, .28), 0 10px 22px -18px rgba(0, 31, 61, .22);
  --shadow-float: 0 0 0 1px rgba(0, 31, 61, .06), 0 25px 55px -28px rgba(0, 31, 61, .34), 0 12px 24px -18px rgba(0, 31, 61, .28);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--white);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -.012em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

::selection {
  background: var(--amber-300);
  color: var(--navy-950);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--navy-950);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

:focus-visible {
  outline: 3px solid rgba(250, 168, 15, .72);
  outline-offset: 3px;
}

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

.narrow {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 72px;
  border-bottom: 1px solid rgba(0, 31, 61, .08);
  background: rgba(255, 255, 255, .91);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.nav-shell {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: var(--navy-950);
  font-size: 20px;
  font-weight: 750;
  letter-spacing: -.035em;
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 11px;
}

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

.primary-nav a,
.nav-text-link,
.language-link {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--navy-950);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background .18s ease, color .18s ease;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"],
.nav-text-link:hover,
.language-link:hover {
  background: var(--blue-50);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  flex: 0 0 auto;
}

.nav-signin {
  min-width: 84px;
}

.language-link {
  min-width: 42px;
  color: var(--muted);
  text-align: center;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 20px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

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

.button-primary {
  background: var(--navy-950);
  color: var(--white);
  box-shadow: 0 9px 24px -15px rgba(0, 31, 61, .8);
}

.button-primary:hover {
  background: var(--navy-900);
  box-shadow: 0 13px 28px -16px rgba(0, 31, 61, .9);
}

.button-amber {
  background: var(--amber-500);
  color: var(--navy-950);
}

.button-amber:hover {
  background: var(--amber-300);
}

.button-soft {
  background: var(--white);
  color: var(--navy-950);
  box-shadow: inset 0 0 0 1px var(--line);
}

.text-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 4px;
  color: var(--navy-950);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.text-action span {
  transition: transform .18s ease;
}

.text-action:hover span {
  transform: translateX(4px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--fog);
  color: var(--navy-950);
  cursor: pointer;
}

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

.mobile-nav {
  display: none;
}

.language-switcher {
  margin-top: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  min-width: 0;
  max-width: 100%;
}

.language-switcher-label {
  margin: 0 0 10px;
  padding: 0 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.language-switcher-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  min-width: 0;
  max-width: 100%;
}

.language-pill {
  display: flex;
  min-width: 0;
  min-height: 54px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 8px 4px;
  border-radius: 14px;
  background: var(--fog);
  color: var(--navy-950);
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}

.language-pill strong {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.language-pill small {
  display: block;
  max-width: 100%;
  overflow: hidden;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.language-pill:hover,
.language-pill:focus-visible {
  background: var(--blue-50);
  transform: translateY(-1px);
}

.language-pill.is-active {
  background: var(--navy-950);
  box-shadow: 0 10px 24px -16px rgba(0, 31, 61, .75);
  color: var(--white);
}

.language-pill.is-active small {
  color: rgba(255, 255, 255, .78);
}

.mobile-nav-backdrop {
  display: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--navy-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--amber-500);
  content: "";
}

.display,
.section-title,
.page-title,
.card-title-serif {
  margin: 0;
  color: var(--navy-950);
  font-family: var(--font-display);
  font-weight: 430;
  letter-spacing: -.04em;
}

.display {
  max-width: 900px;
  font-size: clamp(56px, 7.2vw, 102px);
  line-height: .96;
}

.display em,
.section-title em {
  color: var(--navy-700);
  font-weight: inherit;
}

.section-title {
  max-width: 780px;
  font-size: clamp(42px, 5.3vw, 68px);
  line-height: 1;
}

.page-title {
  max-width: 940px;
  font-size: clamp(52px, 6.4vw, 86px);
  line-height: .98;
}

.section-lead,
.page-lead {
  max-width: 690px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.6;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 52px;
}

.section-header .section-lead {
  max-width: 450px;
  margin: 0 0 4px;
}

.hero {
  position: relative;
  min-height: 830px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 48%, rgba(250, 168, 15, .24), transparent 23%),
    radial-gradient(circle at 20% 37%, rgba(161, 210, 226, .56), transparent 27%),
    radial-gradient(circle at 52% 68%, rgba(255, 237, 199, .52), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fbfdfe 100%);
}

.hero::after {
  position: absolute;
  inset: 0;
  opacity: .28;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.06'/%3E%3C/svg%3E");
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 758px;
  align-items: center;
  justify-content: center;
  padding: 96px 0 130px;
  text-align: center;
}

.hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  max-width: 930px;
  align-items: center;
  flex-direction: column;
}

.hero .eyebrow {
  color: var(--navy-800);
}

.hero-subtitle {
  max-width: 690px;
  margin: 25px auto 0;
  color: #40505e;
  font-size: clamp(18px, 1.8vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 30px;
}

.hero-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.hero-note span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-note svg {
  width: 15px;
  color: var(--success);
}

.floating-card {
  position: absolute;
  z-index: 2;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow-float);
  text-align: left;
}

.float-pulse {
  top: 58px;
  left: max(18px, calc(50% - 640px));
  width: 225px;
  padding: 20px;
  transform: rotate(-2deg);
}

.float-task {
  top: 96px;
  right: max(20px, calc(50% - 628px));
  width: 242px;
  padding: 20px;
  transform: rotate(2deg);
}

.float-stock {
  bottom: 52px;
  left: max(24px, calc(50% - 590px));
  width: 250px;
  padding: 20px;
  transform: rotate(1deg);
}

.float-progress {
  right: max(30px, calc(50% - 603px));
  bottom: 42px;
  width: 270px;
  padding: 20px;
  transform: rotate(-1.5deg);
}

.mini-label {
  margin: 0 0 12px;
  color: var(--soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.mini-title {
  margin: 0;
  color: var(--navy-950);
  font-size: 15px;
  font-weight: 750;
  letter-spacing: -.02em;
}

.mini-metric {
  margin: 6px 0 0;
  color: var(--navy-950);
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1;
}

.metric-row,
.task-head,
.stock-row,
.progress-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.delta {
  padding: 4px 8px;
  border-radius: 999px;
  background: #e6f4ed;
  color: var(--success);
  font-size: 11px;
  font-weight: 800;
}

.bar-chart {
  display: flex;
  height: 62px;
  align-items: end;
  gap: 7px;
  margin-top: 17px;
}

.bar-chart i {
  display: block;
  width: 100%;
  border-radius: 7px 7px 3px 3px;
  background: var(--blue-200);
}

.bar-chart i:nth-child(2),
.bar-chart i:nth-child(5) {
  background: var(--amber-500);
}

.status-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--amber-500);
  box-shadow: 0 0 0 5px var(--amber-100);
}

.task-line {
  height: 8px;
  margin-top: 14px;
  border-radius: 999px;
  background: var(--fog);
}

.task-line span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: var(--navy-700);
}

.task-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  color: var(--soft);
  font-size: 11px;
  font-weight: 650;
}

.stock-row {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

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

.stock-row strong {
  color: var(--navy-950);
  font-size: 13px;
}

.stock-row span {
  color: var(--muted);
}

.progress-ring {
  position: relative;
  width: 80px;
  height: 80px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: conic-gradient(var(--amber-500) 0 72%, var(--amber-100) 72% 100%);
}

.progress-ring::after {
  position: absolute;
  inset: 12px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy-950);
  font-size: 16px;
  font-weight: 800;
  content: "72%";
}

.progress-copy p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.hero-dashboard {
  position: relative;
  z-index: 5;
  width: min(calc(100% - 40px), 1080px);
  margin: -122px auto 0;
  padding: 10px;
  border-radius: 30px;
  background: var(--navy-950);
  box-shadow: 0 34px 80px -45px rgba(0, 31, 61, .75);
}

.product-window {
  overflow: hidden;
  border-radius: 22px;
  background: var(--fog);
}

.window-bar {
  display: flex;
  height: 44px;
  align-items: center;
  gap: 7px;
  padding: 0 17px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.window-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--line);
}

.window-dot:nth-child(2) {
  background: var(--amber-300);
}

.app-shell {
  display: grid;
  min-height: 535px;
  grid-template-columns: 210px 1fr;
}

.app-sidebar {
  padding: 23px 17px;
  background: var(--navy-950);
  color: rgba(255, 255, 255, .68);
}

.app-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  color: var(--white);
  font-weight: 800;
}

.app-logo img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

.app-nav-label {
  margin: 20px 9px 8px;
  color: rgba(255, 255, 255, .32);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.app-nav-item {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 3px;
  padding: 9px 10px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 650;
}

.app-nav-item.active {
  background: rgba(255, 255, 255, .11);
  color: var(--white);
}

.app-nav-item i {
  width: 9px;
  height: 9px;
  border: 1.5px solid currentColor;
  border-radius: 3px;
}

.app-main {
  padding: 28px;
}

.app-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.app-top h3 {
  margin: 0;
  color: var(--navy-950);
  font-size: 20px;
}

.app-date {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px var(--line);
}

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

.kpi-card {
  min-height: 105px;
  padding: 16px;
  border-radius: 17px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(0, 31, 61, .06);
}

.kpi-card.is-blue {
  background: var(--blue-100);
}

.kpi-card.is-amber {
  background: var(--amber-100);
}

.kpi-card small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.kpi-card strong {
  display: block;
  margin-top: 5px;
  color: var(--navy-950);
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
}

.kpi-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 9px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 14px;
  margin-top: 14px;
}

.dashboard-card {
  min-height: 205px;
  padding: 18px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(0, 31, 61, .06);
}

.dashboard-card h4 {
  margin: 0 0 15px;
  color: var(--navy-950);
  font-size: 12px;
}

.schedule-row {
  display: grid;
  align-items: center;
  gap: 10px;
  grid-template-columns: 88px 1fr 31px;
  margin-bottom: 13px;
  color: var(--muted);
  font-size: 9px;
}

.schedule-track {
  height: 8px;
  border-radius: 999px;
  background: var(--fog);
}

.schedule-track i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--navy-700);
}

.schedule-row:nth-child(2) i {
  background: var(--amber-500);
}

.schedule-row:nth-child(3) i {
  background: var(--blue-200);
}

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

.pulse-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 12px;
  background: var(--fog);
  color: var(--muted);
  font-size: 9px;
}

.pulse-item b {
  display: block;
  color: var(--navy-950);
  font-size: 10px;
}

.pulse-icon {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 9px;
  background: var(--amber-100);
  color: var(--amber-600);
  font-weight: 900;
}

.section {
  padding: 120px 0;
}

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

.section-blue {
  background: var(--blue-50);
}

.section-amber {
  background: var(--amber-50);
}

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

.trail-flows {
  display: grid;
  gap: 18px;
}

.trail-flow {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.trail-flow:nth-child(2),
.trail-flow:nth-child(4) {
  background: var(--amber-100);
}

.trail-flow:nth-child(3) {
  background: var(--blue-100);
}

.trail-flow-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 20px;
}

.trail-flow-index {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .76);
  color: var(--navy-950);
  font-size: 12px;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(0, 31, 61, .08);
}

.trail-flow h3 {
  margin: 0 0 6px;
  color: var(--navy-950);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 430;
  line-height: 1.15;
}

.trail-flow-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.trail-bubbles {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.trail-bubble {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  box-shadow: inset 0 0 0 1px rgba(0, 31, 61, .08);
  color: var(--navy-950);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

.trail-bubble-arrow {
  flex-shrink: 0;
  color: var(--amber-500);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.trail-flow-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.trail-pulse-note {
  margin: 28px 0 0;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  background: var(--blue-50);
  color: var(--navy-700);
  font-size: 15px;
  line-height: 1.55;
  text-align: center;
}

.trail-pulse-note strong {
  color: var(--navy-950);
}

.trail-flow-link {
  margin: 20px 0 0;
}

.feature-card,
.capability-card,
.solution-card,
.guide-card,
.workflow-card,
.info-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.feature-card {
  min-height: 330px;
  padding: 28px;
}

.feature-card:nth-child(2) {
  background: var(--amber-100);
}

.feature-card:nth-child(3) {
  background: var(--blue-100);
}

.card-index {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .76);
  color: var(--navy-950);
  font-size: 12px;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(0, 31, 61, .08);
}

.feature-card h3,
.capability-card h3,
.solution-card h3,
.workflow-card h3,
.info-card h3 {
  margin: 58px 0 13px;
  color: var(--navy-950);
  font-size: 23px;
  line-height: 1.18;
  letter-spacing: -.035em;
}

.feature-card p,
.capability-card p,
.solution-card p,
.workflow-card p,
.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.tabs {
  display: grid;
  align-items: start;
  gap: 24px;
  grid-template-columns: 360px 1fr;
}

.tab-list {
  display: grid;
  gap: 6px;
}

.tab-button {
  display: grid;
  width: 100%;
  grid-template-columns: 38px 1fr;
  gap: 13px;
  align-items: center;
  padding: 14px;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  text-align: left;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.tab-button:hover {
  background: rgba(255, 255, 255, .7);
}

.tab-button[aria-selected="true"] {
  background: var(--white);
  color: var(--navy-950);
  box-shadow: var(--shadow-card);
  transform: translateX(5px);
}

.tab-number {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: var(--blue-100);
  color: var(--navy-800);
  font-size: 12px;
  font-weight: 800;
}

.tab-button[aria-selected="true"] .tab-number {
  background: var(--amber-500);
  color: var(--navy-950);
}

.tab-button strong {
  display: block;
  font-size: 14px;
  line-height: 1.25;
}

.tab-button small {
  display: block;
  margin-top: 4px;
  color: var(--soft);
  font-size: 11px;
  line-height: 1.4;
}

.tab-stage {
  min-height: 510px;
}

.tab-panel {
  min-height: 510px;
  padding: 36px;
  border-radius: var(--radius-xl);
  background: var(--navy-950);
  color: var(--white);
  box-shadow: 0 30px 70px -45px rgba(0, 31, 61, .85);
}

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

.tab-panel .eyebrow {
  color: var(--amber-300);
}

.tab-panel .eyebrow::before {
  background: var(--amber-500);
}

.tab-panel h3 {
  max-width: 580px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(38px, 4.4vw, 58px);
  font-weight: 430;
  line-height: 1;
  letter-spacing: -.04em;
}

.tab-panel > p {
  max-width: 610px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .67);
  font-size: 16px;
  line-height: 1.65;
}

.flow-diagram {
  display: grid;
  align-items: stretch;
  gap: 9px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 42px;
}

.flow-step {
  position: relative;
  min-height: 140px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
}

.flow-step::after {
  position: absolute;
  top: 50%;
  right: -9px;
  z-index: 2;
  width: 9px;
  height: 1px;
  background: rgba(255, 255, 255, .35);
  content: "";
}

.flow-step:last-child::after {
  display: none;
}

.flow-step span {
  color: var(--amber-300);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.flow-step strong {
  display: block;
  margin-top: 28px;
  color: var(--white);
  font-size: 14px;
  line-height: 1.35;
}

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

.capability-card,
.solution-card,
.info-card {
  min-height: 300px;
  padding: 26px;
}

.capability-card:nth-child(5n + 2),
.solution-card:nth-child(4n + 2) {
  background: var(--blue-100);
}

.capability-card:nth-child(5n + 4),
.solution-card:nth-child(4n + 4) {
  background: var(--amber-100);
}

.capability-icon,
.solution-icon,
.guide-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  background: var(--white);
  color: var(--navy-800);
  box-shadow: inset 0 0 0 1px rgba(0, 31, 61, .07);
}

.capability-icon svg,
.solution-icon svg,
.guide-icon svg {
  width: 21px;
  height: 21px;
}

.capability-card h3,
.solution-card h3,
.info-card h3 {
  margin-top: 54px;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .7);
  color: var(--navy-700);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(0, 31, 61, .07);
}

.tag-conditional {
  color: #865800;
}

.role-band {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--navy-950);
  color: var(--white);
  grid-template-columns: .85fr 1.15fr;
}

.role-copy {
  padding: 52px;
}

.role-copy .section-title {
  color: var(--white);
}

.role-copy p {
  max-width: 470px;
  color: rgba(255, 255, 255, .65);
}

.role-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .1);
}

.role-item {
  min-height: 190px;
  padding: 30px;
  background: var(--navy-900);
}

.role-item:nth-child(2),
.role-item:nth-child(3) {
  background: #0a365d;
}

.role-item strong {
  display: block;
  margin-top: 52px;
  font-size: 17px;
}

.role-item span {
  color: rgba(255, 255, 255, .55);
  font-size: 13px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  counter-reset: steps;
}

.step-card {
  min-height: 290px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
  counter-increment: steps;
}

.step-card::before {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--amber-500);
  color: var(--navy-950);
  font-size: 13px;
  font-weight: 800;
  content: counter(steps, decimal-leading-zero);
}

.step-card h3 {
  margin: 70px 0 12px;
  color: var(--navy-950);
  font-size: 19px;
  line-height: 1.25;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.price-preview,
.pricing-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.price-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: 32px;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.price-card.featured {
  background: var(--navy-950);
  color: var(--white);
}

.price-card h3 {
  margin: 0;
  font-size: 18px;
}

.price-card .price {
  margin: 46px 0 0;
  color: var(--navy-950);
  font-family: var(--font-display);
  font-size: clamp(58px, 6vw, 78px);
  line-height: .9;
  letter-spacing: -.05em;
}

.price-card.featured .price {
  color: var(--white);
}

.price small {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0;
}

.price-card > p {
  margin: 20px 0 0;
  color: var(--muted);
}

.price-card.featured > p {
  color: rgba(255, 255, 255, .65);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--muted);
  font-size: 14px;
}

.featured .check-list li {
  color: rgba(255, 255, 255, .72);
}

.check-list svg {
  width: 17px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--amber-500);
}

.price-card .button {
  align-self: flex-start;
  margin-top: auto;
}

.featured .button {
  background: var(--amber-500);
  color: var(--navy-950);
}

.disclosure {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
  margin-top: 28px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--amber-50);
  color: var(--muted);
  box-shadow: inset 0 0 0 1px rgba(250, 168, 15, .22);
}

.disclosure-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
  background: var(--amber-100);
  color: var(--amber-600);
}

.disclosure-icon svg {
  width: 22px;
}

.disclosure h3 {
  margin: 1px 0 6px;
  color: var(--navy-950);
  font-size: 16px;
}

.disclosure p {
  margin: 0;
  font-size: 14px;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 86px 0;
  background:
    radial-gradient(circle at 85% 40%, rgba(250, 168, 15, .32), transparent 25%),
    radial-gradient(circle at 10% 80%, rgba(161, 210, 226, .22), transparent 30%),
    var(--navy-950);
  color: var(--white);
}

.cta-band::after {
  position: absolute;
  inset: 0;
  opacity: .16;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.15'/%3E%3C/svg%3E");
  content: "";
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 42px;
}

.cta-band h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 430;
  line-height: 1;
  letter-spacing: -.04em;
}

.cta-band p {
  max-width: 640px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .65);
}

.cta-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.cta-band .text-action {
  color: var(--white);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 104px;
  background:
    radial-gradient(circle at 84% 26%, rgba(250, 168, 15, .25), transparent 23%),
    radial-gradient(circle at 14% 70%, rgba(161, 210, 226, .45), transparent 30%),
    var(--white);
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero-grid {
  display: grid;
  align-items: end;
  grid-template-columns: 1fr 340px;
  gap: 60px;
}

.page-summary-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--shadow-float);
}

.page-summary-card strong {
  display: block;
  color: var(--navy-950);
  font-size: 14px;
}

.page-summary-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.page-summary-card .tag {
  margin-top: 18px;
  background: var(--amber-100);
}

.page-hero-compact {
  padding: 88px 0 28px;
}

.page-hero-compact .page-title {
  max-width: 16ch;
  font-size: clamp(34px, 5vw, 52px);
}

.page-hero-compact .page-lead {
  max-width: 52ch;
}

.trial-form-intro {
  max-width: 720px;
}

.trial-form-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.conversion-form-first {
  padding-top: 0;
}

.conversion-form-first .container {
  width: min(calc(100% - 40px), 760px);
}

.conversion-form-stack {
  display: grid;
  gap: 20px;
}

#trial-form {
  scroll-margin-top: 96px;
}

.trial-form-wrap .lead-form {
  margin: 0;
}

.section-compact {
  padding: 72px 0;
}

.workflow-list {
  display: grid;
  gap: 24px;
}

.workflow-card {
  display: grid;
  min-height: 400px;
  grid-template-columns: .7fr 1.3fr;
}

.workflow-intro {
  padding: 34px;
  background: var(--navy-950);
  color: var(--white);
}

.workflow-intro .eyebrow {
  color: var(--amber-300);
}

.workflow-intro h3 {
  margin: 74px 0 14px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 430;
}

.workflow-intro p {
  color: rgba(255, 255, 255, .62);
}

.workflow-steps {
  display: grid;
  gap: 0;
  padding: 22px 36px;
  counter-reset: workflow;
}

.workflow-step {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  counter-increment: workflow;
}

.workflow-step:last-child {
  border-bottom: 0;
}

.workflow-step::before {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--navy-700);
  font-size: 11px;
  font-weight: 800;
  content: counter(workflow, decimal-leading-zero);
}

.guide-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 25px;
}

.guide-card:nth-child(4n + 2) {
  background: var(--blue-100);
}

.guide-card:nth-child(4n + 4) {
  background: var(--amber-100);
}

.guide-card h3 {
  margin: 52px 0 12px;
  color: var(--navy-950);
  font-size: 19px;
  line-height: 1.25;
}

.guide-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.guide-card .tag {
  align-self: flex-start;
  margin-top: auto;
}

.comparison-wrap {
  overflow-x: auto;
  margin-top: 42px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.comparison {
  width: 100%;
  min-width: 690px;
  border-collapse: collapse;
}

.comparison th,
.comparison td {
  padding: 17px 22px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.comparison th {
  color: var(--navy-950);
  font-size: 13px;
}

.comparison th:not(:first-child),
.comparison td:not(:first-child) {
  width: 150px;
  text-align: center;
}

.comparison td {
  color: var(--muted);
  font-size: 14px;
}

.comparison tr:last-child td {
  border-bottom: 0;
}

.yes {
  color: var(--success);
  font-weight: 800;
}

.no {
  color: var(--soft);
}

.plan-modules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.plan-module-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.plan-module-card-pro {
  background: var(--navy-950);
  color: var(--white);
}

.plan-module-head {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.plan-module-card-pro .plan-module-head {
  border-bottom-color: rgba(255, 255, 255, .12);
}

.plan-module-head h3 {
  margin: 12px 0 0;
  color: var(--navy-950);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 430;
  line-height: 1.1;
  letter-spacing: -.03em;
}

.plan-module-card-pro .plan-module-head h3 {
  color: var(--white);
}

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

.plan-module-card-pro .plan-module-head p {
  color: rgba(255, 255, 255, .65);
}

.plan-module-group + .plan-module-group {
  margin-top: 22px;
}

.plan-module-group h4 {
  margin: 0 0 12px;
  color: var(--navy-950);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.plan-module-card-pro .plan-module-group h4 {
  color: var(--amber-300);
}

.module-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.module-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.plan-module-card-pro .module-list li {
  color: rgba(255, 255, 255, .72);
}

.module-list li::before {
  position: absolute;
  top: .55em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber-500);
  content: "";
}

.form-layout {
  display: grid;
  align-items: start;
  grid-template-columns: .8fr 1.2fr;
  gap: 64px;
}

.form-copy {
  position: sticky;
  top: 110px;
}

.form-copy h2 {
  margin: 0;
  color: var(--navy-950);
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 62px);
  font-weight: 430;
  line-height: 1;
  letter-spacing: -.04em;
}

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

.form-facts {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.form-fact {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
  padding: 15px;
  border-radius: 15px;
  background: var(--fog);
}

.form-fact i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 11px;
  background: var(--amber-100);
  color: var(--amber-600);
  font-style: normal;
  font-weight: 850;
}

.form-fact strong {
  display: block;
  color: var(--navy-950);
  font-size: 13px;
}

.form-fact span {
  color: var(--muted);
  font-size: 12px;
}

.lead-form {
  padding: 34px;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-float);
}

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

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

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

.field label {
  color: var(--navy-950);
  font-size: 12px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--fog);
  color: var(--ink);
  outline: 0;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.field input,
.field select {
  height: 50px;
  padding: 0 14px;
}

.field textarea {
  min-height: 128px;
  padding: 14px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--amber-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(250, 168, 15, .13);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #9ca5ad;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
}

.form-footer small {
  max-width: 420px;
  color: var(--soft);
  font-size: 11px;
  line-height: 1.5;
}

.form-status {
  display: none;
  margin-top: 18px;
  padding: 15px 17px;
  border-radius: 14px;
  font-size: 13px;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  background: #e9f7f0;
  color: var(--success);
}

.form-status.is-error {
  background: #fff0ef;
  color: var(--danger);
}

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

.faq-item {
  border-radius: 18px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--line);
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: var(--navy-950);
  cursor: pointer;
  font-weight: 750;
  text-align: left;
}

.faq-question span:last-child {
  font-size: 22px;
  font-weight: 400;
  transition: transform .18s ease;
}

.faq-question[aria-expanded="true"] span:last-child {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 14px;
}

.faq-answer p {
  margin: 0;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.contact-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.contact-card strong {
  display: block;
  margin-top: 34px;
  color: var(--navy-950);
}

.contact-card a,
.contact-card span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.legal-hero {
  padding: 112px 0 86px;
  background:
    radial-gradient(circle at 82% 30%, rgba(250, 168, 15, .24), transparent 24%),
    radial-gradient(circle at 14% 72%, rgba(161, 210, 226, .42), transparent 30%),
    var(--white);
}

.legal-hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--navy-950);
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 82px);
  font-weight: 430;
  line-height: 1;
  letter-spacing: -.04em;
}

.legal-hero p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.legal-body {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
  padding: 88px 0 120px;
}

.legal-body h2 {
  margin: 48px 0 14px;
  color: var(--navy-950);
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -.025em;
}

.legal-body h2:first-child {
  margin-top: 0;
}

.legal-body p,
.legal-body li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.legal-body ul {
  margin: 12px 0 20px;
  padding-left: 22px;
}

.legal-body li {
  margin-bottom: 6px;
}

.legal-body a {
  color: var(--navy-700);
  font-weight: 700;
}

.legal-body code {
  padding: 2px 6px;
  border-radius: 7px;
  background: var(--blue-50);
  color: var(--navy-800);
}

.site-footer {
  padding: 72px 0 30px;
  background: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(5, 1fr);
  gap: 36px;
}

/* Solutions and workflows: evidence-first redesign. */
.solution-path-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px}.solution-path-card{overflow:hidden;border:1px solid var(--line);border-radius:22px;background:var(--white);box-shadow:0 20px 48px -42px rgba(0,31,61,.72)}.solution-path-visual{position:relative;display:block;overflow:hidden;border-bottom:1px solid var(--line);background:var(--blue-50)}.solution-path-visual img{display:block;width:100%;aspect-ratio:16/8;object-fit:cover;object-position:top left;transition:transform .25s ease}.solution-path-visual:hover img,.solution-path-visual:focus-visible img{transform:scale(1.012)}.solution-path-copy{padding:26px}.solution-path-number{color:var(--blue-700);font-size:12px;font-weight:900;letter-spacing:.12em}.solution-path-copy h3{margin:10px 0 9px;color:var(--navy-950);font-size:23px}.solution-path-copy>p{min-height:68px;margin:0;color:var(--muted);font-size:14px;line-height:1.65}.solution-path-copy dl{margin:24px 0;border-top:1px solid var(--line)}.solution-path-copy dl>div{display:grid;grid-template-columns:90px 1fr;gap:14px;padding:13px 0;border-bottom:1px solid var(--line)}.solution-path-copy dt{color:var(--muted);font-size:11px;font-weight:800;letter-spacing:.07em;text-transform:uppercase}.solution-path-copy dd{margin:0;color:var(--navy-950);font-size:13px;font-weight:750;line-height:1.45}.role-outcome-list{border-top:1px solid var(--line)}.role-outcome{display:grid;grid-template-columns:52px minmax(220px,.65fr) 1fr;gap:24px;align-items:baseline;padding:24px 0;border-bottom:1px solid var(--line)}.role-outcome>span{color:var(--blue-700);font-size:12px;font-weight:900;letter-spacing:.1em}.role-outcome h3,.role-outcome p{margin:0}.role-outcome h3{color:var(--navy-950);font-size:19px}.role-outcome p{color:var(--muted);font-size:14px;line-height:1.6}
.workflow-list-redesigned{gap:28px}.workflow-card-redesigned .workflow-content{grid-template-columns:.85fr 1.15fr}.workflow-phases{display:grid;align-content:center;padding:26px;border-left:1px solid var(--line)}.workflow-phase{display:grid;grid-template-columns:38px 1fr;gap:14px;padding:16px 0;border-bottom:1px solid var(--line)}.workflow-phase:last-child{border-bottom:0}.workflow-phase>span{color:var(--blue-700);font-size:11px;font-weight:900;letter-spacing:.08em}.workflow-phase small,.workflow-phase strong{display:block}.workflow-phase small{margin-bottom:4px;color:var(--muted);font-size:10px;font-weight:800;letter-spacing:.08em;text-transform:uppercase}.workflow-phase strong{color:var(--navy-950);font-size:15px;line-height:1.4}.workflow-full-path{border-top:1px solid var(--line)}.workflow-full-path summary{padding:17px 28px;color:var(--blue-700);cursor:pointer;font-size:13px;font-weight:800}.workflow-full-path ol{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px 26px;margin:0;padding:0 28px 24px 52px;color:var(--muted);font-size:13px;line-height:1.5}
@media(max-width:860px){.solution-path-grid,.workflow-card-redesigned .workflow-content{grid-template-columns:1fr}.workflow-phases{border-top:1px solid var(--line);border-left:0}}
@media(max-width:620px){.solution-path-copy{padding:21px}.solution-path-copy>p{min-height:0}.solution-path-copy dl>div,.role-outcome{grid-template-columns:1fr;gap:7px}.role-outcome{padding:20px 0}.workflow-phases{padding:18px 21px}.workflow-full-path ol{grid-template-columns:1fr;padding:0 22px 22px 44px}}

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

.footer-col h3 {
  margin: 4px 0 16px;
  color: var(--soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: var(--navy-950);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--amber-600);
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.footer-social-label {
  margin: 0;
  color: var(--soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

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

.footer-social-links a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--navy-950);
  text-decoration: none;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}

.footer-social-links a:hover {
  border-color: var(--amber-300);
  background: var(--amber-100);
  color: var(--amber-600);
}

.footer-social-links svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 62px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-size: 12px;
}

.footer-legal {
  display: flex;
  gap: 16px;
}

.footer-legal a {
  text-decoration: none;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-scroll {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 72px);
  overflow: clip;
  background: #fff9ef;
  isolation: isolate;
}

.hero-stage {
  position: relative;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 22%, rgba(0, 31, 61, .14), transparent 32%),
    radial-gradient(circle at 86% 18%, rgba(250, 168, 15, .42), transparent 30%),
    radial-gradient(circle at 52% 92%, rgba(250, 168, 15, .16), transparent 34%),
    linear-gradient(180deg, #fffdf8 0%, #fff6e6 52%, #eef5f8 100%);
}

.hero-stage::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .24;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='2' stitchTiles='stitchTiles'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.055'/%3E%3C/svg%3E");
  content: "";
}

.hero-scroll-inner {
  position: relative;
  height: calc(100vh - 72px);
  min-height: 700px;
}

.hero-scroll .hero-copy {
  position: absolute;
  top: clamp(52px, 8vh, 88px);
  left: 50%;
  z-index: 12;
  width: min(880px, calc(100% - 80px));
  transform: translateX(-50%);
}

.hero-scroll .display {
  max-width: 850px;
  margin-inline: auto;
  font-size: clamp(58px, 6.4vw, 96px);
  line-height: .91;
  text-wrap: balance;
}

.hero-scroll .display em {
  color: var(--amber-600);
  font-style: italic;
}

.hero-scroll .eyebrow {
  color: var(--navy-950);
}

.hero-scroll .eyebrow::before {
  width: 32px;
  height: 3px;
  background: var(--amber-500);
}

.hero-scroll .hero-subtitle {
  max-width: 720px;
  margin-top: 20px;
  text-wrap: balance;
}

.hero-scroll .hero-actions {
  margin-top: 24px;
}

.button-ghost {
  color: var(--navy-950);
  box-shadow: inset 0 0 0 1px rgba(0, 31, 61, .18);
  background: rgba(255, 255, 255, .72);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.button-ghost:hover {
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(0, 31, 61, .25), 0 12px 30px -24px rgba(0, 31, 61, .6);
}

.button-ghost svg {
  width: 17px;
  height: 17px;
}

.hero-scroll .hero-note {
  margin-top: 18px;
}

.hero-ambient {
  position: absolute;
  z-index: -1;
  width: 38vw;
  height: 38vw;
  border-radius: 50%;
  filter: blur(65px);
  opacity: .62;
  pointer-events: none;
}

.hero-ambient-blue {
  top: 12%;
  left: -15%;
  background: rgba(0, 31, 61, .22);
}

.hero-ambient-amber {
  top: -14%;
  right: -12%;
  background: rgba(250, 168, 15, .58);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .34;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 31, 61, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 31, 61, .07) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 82%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 82%, transparent);
}

.hero-alerts {
  position: absolute;
  inset: 0;
  z-index: 9;
  pointer-events: none;
}

.hero-alert {
  position: absolute;
  display: grid;
  width: 252px;
  min-height: 72px;
  align-items: center;
  grid-template-columns: 40px 1fr 8px;
  gap: 11px;
  padding: 13px 14px;
  border: 1px solid rgba(0, 31, 61, .08);
  border-radius: 18px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 24px 55px -30px rgba(0, 31, 61, .5), 0 7px 20px -16px rgba(0, 31, 61, .42);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transform-origin: 50% 50%;
}

.hero-alert-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 12px;
  color: var(--navy-800);
  background: var(--blue-100);
}

.hero-alert-icon svg {
  width: 19px;
  height: 19px;
}

.hero-alert-icon.is-success {
  color: var(--success);
  background: #e8f5ef;
}

.hero-alert-icon.is-danger {
  color: var(--danger);
  background: #fff0ee;
}

.hero-alert-icon.is-amber {
  color: var(--amber-600);
  background: var(--amber-100);
}

.hero-alert-copy {
  min-width: 0;
}

.hero-alert-copy strong,
.hero-alert-copy small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-alert-copy strong {
  color: var(--navy-950);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.hero-alert-copy small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}

.hero-alert-status {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--navy-700);
  box-shadow: 0 0 0 4px rgba(24, 84, 126, .11);
}

.hero-alert-status.is-success {
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(22, 121, 77, .11);
}

.hero-alert-status.is-danger {
  background: var(--danger);
  box-shadow: 0 0 0 4px rgba(180, 35, 24, .1);
}

.hero-alert-status.is-amber {
  background: var(--amber-500);
  box-shadow: 0 0 0 4px rgba(250, 168, 15, .15);
}

.hero-alert-ocr {
  top: 6%;
  left: -1%;
  transform: rotate(-2deg);
}

.hero-alert-stock {
  top: 24%;
  right: -3%;
  transform: rotate(2deg);
}

.hero-alert-purchase {
  top: 53%;
  left: -3%;
  transform: rotate(1.5deg);
}

.hero-alert-work-order {
  top: 8%;
  right: 4%;
  transform: rotate(1deg);
}

.hero-alert-pulse {
  right: -1%;
  bottom: 14%;
  transform: rotate(-1deg);
}

.hero-alert-negative-stock {
  bottom: 5%;
  left: 6%;
  transform: rotate(-2deg);
}

.hero-alert-supplier {
  right: 11%;
  bottom: 2%;
  transform: rotate(1.5deg);
}

.hero-product {
  position: absolute;
  top: 48%;
  left: 50%;
  z-index: 7;
  width: min(1040px, calc(100vw - 120px));
  transform: translate(-50%, 38%) scale(.78);
  transform-origin: 50% 22%;
}

.hero-product-viewport {
  position: relative;
  overflow: hidden;
  overflow-anchor: none;
  aspect-ratio: 16 / 10;
  border-radius: 20px;
  background: #f3f6fa;
}

.hero-product-viewport > .hero-product-screen,
.hero-product-viewport > .hero-dashboard-demo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-product-viewport > .hero-product-screen[hidden],
.hero-product-viewport > .hero-dashboard-demo[hidden] {
  display: none !important;
}

.hero-product-viewport > .hero-product-screen > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}

.hero-dashboard-demo {
  display: grid;
  grid-template-columns: minmax(138px, 17%) minmax(0, 1fr);
  overflow: hidden;
  color: #001f3d;
  background: #f3f6fa;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  text-align: left;
}

.hero-dash-sidebar {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 12px 9px 10px;
  border-right: 1px solid #e2e8f0;
  background: #fff;
}

.hero-dash-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 0 6px 9px;
  color: #001f3d;
  font-size: 11px;
  letter-spacing: -.03em;
}

.hero-dash-brand > span {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 6px;
  color: #fff;
  background: #001f3d;
  box-shadow: inset 0 -3px #faa80f;
  font-size: 12px;
  font-weight: 900;
}

.hero-dash-nav {
  display: grid;
  gap: 4px;
}

.hero-dash-nav-item {
  display: flex;
  min-height: 28px;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 7px;
  color: #4b5563;
  font-size: 9px;
  font-weight: 650;
}

.hero-dash-nav-item svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  color: #7b8490;
}

.hero-dash-nav-item.is-current {
  color: #fff;
  background: #faa80f;
  box-shadow: 0 5px 14px -10px rgba(250, 168, 15, .9);
}

.hero-dash-nav-item.is-current svg {
  color: #001f3d;
}

.hero-dash-nav-item.is-group {
  color: #263648;
}

.hero-dash-subnav {
  display: grid;
  gap: 2px;
  margin-left: 21px;
  padding-left: 8px;
  border-left: 1px solid #dbe3ea;
  color: #66707d;
  font-size: 8px;
}

.hero-dash-subnav > span {
  display: flex;
  min-height: 23px;
  align-items: center;
  padding: 4px 7px;
  border-radius: 6px;
}

.hero-dash-procurement {
  position: relative;
  z-index: 3;
  color: #001f3d;
  background: #edf0f3;
  box-shadow: 0 8px 20px -15px rgba(0, 31, 61, .7);
  font-weight: 800;
}

.hero-dash-procurement::after {
  position: absolute;
  right: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #faa80f;
  box-shadow: 0 0 0 3px rgba(250, 168, 15, .16);
  content: "";
}

.hero-dash-user {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding: 7px;
  border: 1px solid #e8edf2;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 6px 18px -16px rgba(0, 31, 61, .55);
}

.hero-dash-user > i {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(135deg, #001f3d, #18547e);
  font-size: 7px;
  font-style: normal;
  font-weight: 800;
}

.hero-dash-user span,
.hero-dash-user strong,
.hero-dash-user small {
  display: block;
  min-width: 0;
}

.hero-dash-user strong {
  overflow: hidden;
  font-size: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-dash-user small {
  margin-top: 1px;
  color: #8a929c;
  font-size: 6px;
}

.hero-dash-main {
  display: grid;
  min-width: 0;
  grid-template-rows: 41px minmax(0, 1fr);
}

.hero-dash-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  color: #001f3d;
  background: #f7f9fc;
  font-size: 8px;
}

.hero-dash-topbar > span {
  display: flex;
  gap: 8px;
}

.hero-dash-topbar i {
  display: block;
  width: 8px;
  height: 8px;
  border: 1px solid #98a3ae;
  border-radius: 50%;
}

.hero-dash-content {
  display: grid;
  min-height: 0;
  grid-template-rows: 42px minmax(0, 1fr);
  gap: 10px;
  padding: 10px 12px 12px;
}

.hero-dash-toolbar {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  padding: 0 11px;
  border-radius: 7px;
  color: #fff;
  background: #001f3d;
  box-shadow: 0 8px 18px -14px rgba(0, 31, 61, .8);
  font-size: 7px;
  text-transform: uppercase;
}

.hero-dash-toolbar > strong {
  display: flex;
  align-items: center;
  gap: 7px;
  letter-spacing: .06em;
}

.hero-dash-toolbar > strong > i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #faa80f;
}

.hero-dash-toolbar > div {
  display: flex;
  gap: 5px;
}

.hero-dash-toolbar > div > span {
  padding: 5px 7px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 5px;
  color: #f7fbff;
  background: rgba(255, 255, 255, .06);
  font-size: 6px;
  text-transform: none;
}

.hero-dashboard-grid {
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(0, 1.42fr) minmax(220px, .88fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.hero-dash-widget {
  position: relative;
  z-index: 4;
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #d6dde6;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 20px -18px rgba(0, 31, 61, .5);
  transform-origin: 50% 50%;
}

.hero-dash-widget > header {
  display: flex;
  min-height: 33px;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px;
  border-bottom: 2px solid #faa80f;
  color: #fff;
  background: #001f3d;
  font-size: 7px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero-dash-widget > header strong {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 6px;
}

.hero-dash-widget > header svg {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  color: #faa80f;
}

.hero-dash-widget > header > span {
  color: rgba(255, 255, 255, .58);
  white-space: nowrap;
}

.hero-dash-widget-body {
  min-height: 0;
  flex: 1;
  padding: 9px 10px;
  background: #fff;
}

.hero-dash-widget-pulse {
  grid-row: 1 / span 2;
}

.hero-pulse-scope {
  margin: 0;
  color: #f08c00;
  font-size: 7px;
  font-weight: 750;
}

.hero-pulse-hint {
  margin: 5px 0 8px;
  color: #6b7580;
  font-size: 7px;
  line-height: 1.35;
}

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

.hero-pulse-kpi {
  display: flex;
  min-height: 82px;
  flex-direction: column;
  padding: 9px 10px;
  border: 1px solid #d8dfe7;
  border-left: 4px solid #94a3b8;
  border-radius: 7px;
  background: #f5f7fa;
}

.hero-pulse-kpi.is-good { border-left-color: #1d9e75; }
.hero-pulse-kpi.is-warning { border-left-color: #f5c542; }
.hero-pulse-kpi.is-danger { border-left-color: #ef3434; }

.hero-pulse-kpi strong {
  font-size: 7px;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.hero-pulse-kpi b {
  margin-top: 5px;
  font-size: 15px;
  line-height: 1.05;
}

.hero-pulse-kpi.is-danger b {
  font-size: 12px;
}

.hero-pulse-kpi small {
  margin-top: auto;
  padding-top: 5px;
  color: #687483;
  font-size: 6px;
}

.hero-task-summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 7px;
  margin-bottom: 5px;
  padding: 5px 7px;
  border-radius: 6px;
  color: #001f3d;
  background: #f3f6fa;
  font-size: 6px;
}

.hero-task-summary > b { font-size: 14px; }
.hero-task-summary > i { color: #1d9e75; font-style: normal; font-weight: 800; }

.hero-task-row {
  display: grid;
  grid-template-columns: 6px minmax(0, 1fr) auto;
  align-items: center;
  gap: 7px;
  padding: 6px 2px;
  border-bottom: 1px solid #edf0f3;
  font-size: 6px;
}

.hero-task-row > i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #94a3b8;
}

.hero-task-row > i.is-amber { background: #faa80f; }
.hero-task-row > i.is-blue { background: #3b82c4; }
.hero-task-row > span,
.hero-task-row strong,
.hero-task-row small { display: block; min-width: 0; }
.hero-task-row strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hero-task-row small { margin-top: 2px; color: #7b8490; }
.hero-task-row > b { color: #627080; font-size: 6px; }

.hero-dash-widget-logistics .hero-dash-widget-body {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.hero-logistics-stat {
  display: flex;
  min-width: 0;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 7px 5px;
  border: 1px solid #dde4eb;
  border-radius: 7px;
  background: #f5f7fa;
  text-align: center;
}

.hero-logistics-stat > span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 7px;
  color: #18547e;
  background: #e4eff5;
}

.hero-logistics-stat.is-accent > span {
  color: #9b6200;
  background: #fff0cc;
}

.hero-logistics-stat svg { width: 13px; height: 13px; }
.hero-logistics-stat p,
.hero-logistics-stat small,
.hero-logistics-stat b { display: block; margin: 0; }
.hero-logistics-stat small { min-height: 22px; color: #677380; font-size: 6px; line-height: 1.25; }
.hero-logistics-stat b { margin-top: 4px; color: #001f3d; font-size: 17px; }

/* Pixel-faithful hero dashboard: the real product capture stays as the
   ground truth, while selected regions arrive as independently animated
   crops of that same capture. */
.hero-flight-deck {
  position: absolute;
  inset: 0;
  z-index: 9;
  pointer-events: none;
}

.hero-flight-widget,
.hero-flight-note,
.hero-flight-procurement {
  position: absolute;
  box-sizing: border-box;
  color: #001f3d;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  text-align: left;
  filter: drop-shadow(0 16px 16px rgba(0, 31, 61, .14));
  transform-origin: 50% 50%;
}

.hero-flight-widget {
  overflow: hidden;
  border: 1px solid #d4dce5;
  border-radius: 7px;
  background: #fff;
}

.hero-flight-widget > header {
  display: flex;
  height: 28px;
  align-items: center;
  justify-content: space-between;
  padding: 0 9px;
  border-bottom: 2px solid #faa80f;
  color: #fff;
  background: #001f3d;
  font-size: 8px;
  letter-spacing: .025em;
  text-transform: uppercase;
}

.hero-flight-widget > header strong {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-flight-widget > header svg {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  color: #faa80f;
  stroke-width: 2.2;
}

.hero-flight-widget > header > span {
  flex: 0 0 auto;
  color: #7e9ab2;
  font-size: 10px;
  letter-spacing: 0;
}

.hero-flight-clock-in {
  top: 4%;
  left: -1%;
  width: clamp(170px, 16vw, 230px);
  transform: rotate(-2.2deg);
}

.hero-flight-clock-body {
  display: flex;
  min-height: 155px;
  flex-direction: column;
  padding: 7px;
  background: #fff;
  text-align: center;
}

.hero-flight-clock-body .hero-flight-start {
  display: grid;
  min-height: 34px;
  place-items: center;
  border-radius: 5px;
  color: #001f3d;
  background: #faa80f;
  box-shadow: 0 8px 14px -11px #a86900;
  font-size: 9px;
  text-transform: uppercase;
}

.hero-flight-clock-body > strong {
  margin-top: 8px;
  font-size: 25px;
  line-height: 1;
}

.hero-flight-clock-body > span {
  margin: 3px 0 8px;
  color: #667485;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.hero-flight-clock-body > small {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
  color: #637081;
  font-size: 6px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-flight-clock-body > i {
  height: 4px;
  margin-top: 3px;
  border-radius: 99px;
  background: #e7edf4;
}

.hero-flight-tasks {
  top: 4.5%;
  right: -1%;
  width: clamp(180px, 17vw, 245px);
  transform: rotate(1.8deg);
}

.hero-flight-task-counts {
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(3, 1fr);
  padding: 7px 7px 4px;
}

.hero-flight-task-counts span {
  display: flex;
  min-width: 0;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: #637081;
  background: #f4f6f9;
  font-size: 5px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  flex-direction: column;
}

.hero-flight-task-counts span:first-child { color: #bf252c; background: #fff0f0; }
.hero-flight-task-counts span:last-child { color: #078244; background: #edf9f2; }
.hero-flight-task-counts b { font-size: 13px; line-height: 1.05; }

.hero-flight-task {
  display: flex;
  min-height: 35px;
  align-items: center;
  gap: 7px;
  margin: 0 7px 4px;
  padding: 5px 7px;
  border: 1px solid #dce2e9;
  border-radius: 4px;
  background: #fff;
}

.hero-flight-task > i {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #faa80f;
}

.hero-flight-task > span,
.hero-flight-task b,
.hero-flight-task small { display: block; min-width: 0; }
.hero-flight-task b { overflow: hidden; font-size: 7px; text-overflow: ellipsis; white-space: nowrap; }
.hero-flight-task small { margin-top: 2px; overflow: hidden; color: #718093; font-size: 5px; text-overflow: ellipsis; white-space: nowrap; }
.hero-flight-task.is-overdue { border-color: #ffb7b7; background: #fff1f1; }
.hero-flight-task.is-overdue > i { background: #e52931; }
.hero-flight-task.is-overdue small strong { color: #cf232b; }

.hero-flight-notice {
  bottom: 3.5%;
  left: 0;
  width: clamp(205px, 19vw, 274px);
  transform: rotate(1.5deg);
}

.hero-flight-notice-body {
  min-height: 127px;
  padding: 10px;
}

.hero-flight-notice-body small,
.hero-flight-notice-body b,
.hero-flight-notice-body p { display: block; margin: 0; }
.hero-flight-notice-body small { color: #6d7b89; font-size: 6px; font-weight: 700; }
.hero-flight-notice-body b { margin-top: 5px; font-size: 8px; line-height: 1.25; }
.hero-flight-notice-body p { margin-top: 7px; padding-top: 7px; border-top: 1px solid #e4e8ed; color: #506172; font-size: 7px; line-height: 1.35; }

.hero-flight-messages {
  right: 0;
  bottom: 3.5%;
  width: clamp(205px, 19vw, 274px);
  transform: rotate(-1.4deg);
}

.hero-flight-message-tabs {
  display: flex;
  gap: 15px;
  margin: 8px 9px 5px;
  border-bottom: 1px solid #dce2e8;
  color: #647382;
  font-size: 7px;
}

.hero-flight-message-tabs b {
  padding: 0 4px 5px;
  border-bottom: 2px solid #faa80f;
  color: #001f3d;
}

.hero-flight-message-row {
  display: flex;
  min-height: 27px;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin: 0 8px 5px;
  padding: 4px 7px;
  border: 1px solid #dbe2e9;
  border-radius: 4px;
  background: #f3f6fa;
}

.hero-flight-message-row b {
  overflow: hidden;
  font-size: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-flight-message-row small {
  flex: 0 0 auto;
  color: #697989;
  font-size: 5px;
}

.hero-flight-note {
  top: 46%;
  right: 5%;
  display: grid;
  width: clamp(92px, 8.4vw, 122px);
  aspect-ratio: 1 / 1.04;
  place-items: start;
  padding: 14px 12px;
  color: #17334e;
  background: linear-gradient(145deg, #ffd4e8, #f5bfd9);
  box-shadow: 0 18px 24px -17px rgba(0, 31, 61, .5);
  clip-path: polygon(0 0, 100% 3%, 96% 100%, 2% 96%);
  transform: rotate(3deg);
}

.hero-flight-note p {
  margin: 0;
  font-family: "Segoe Print", "Comic Sans MS", cursive;
  font-size: clamp(8px, .72vw, 11px);
  font-weight: 600;
  line-height: 1.35;
}

.hero-flight-procurement {
  top: 48%;
  left: 2.5%;
  display: flex;
  width: clamp(140px, 13vw, 188px);
  min-height: 37px;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  border-radius: 7px;
  background: #edf0f3;
  font-size: clamp(8px, .72vw, 11px);
  transform: rotate(-2deg);
}

.hero-flight-procurement svg { width: 14px; height: 14px; color: #788694; }
.hero-flight-procurement i { width: 6px; height: 6px; margin-left: auto; border-radius: 50%; background: #faa80f; box-shadow: 0 0 0 4px rgba(250, 168, 15, .14); }

.hero-dashboard-composite {
  display: block;
  overflow: hidden;
  background: #f3f6fa;
}

.hero-dashboard-capture {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-dashboard-mask,
.hero-dashboard-crop,
.hero-flying-note,
.hero-flying-procurement {
  position: absolute;
  z-index: 2;
  display: block;
  box-sizing: border-box;
}

.hero-dashboard-mask {
  z-index: 1;
  border: 1px solid rgba(161, 210, 226, .36);
  border-radius: 5px;
  background: #f3f6fa;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .45);
}

.hero-dashboard-crop {
  overflow: hidden;
  border-radius: 4px;
  background-image: url("/assets/images/marketing/captures/dashboard.jpg");
  background-repeat: no-repeat;
  box-shadow: 0 10px 24px -18px rgba(0, 31, 61, .78);
  transform-origin: 50% 16%;
}

.mask-clock-in,
.crop-clock-in {
  top: 18.5%;
  left: 19.5%;
  width: 25.2%;
  height: 31.5%;
}

.crop-clock-in {
  background-size: 396.825% 378.788%;
  background-position: 26.07% 20.91%;
}

.mask-note,
.hero-flying-note {
  top: 24%;
  left: 46.8%;
  width: 8.7%;
  height: 14%;
}

.mask-tasks,
.crop-tasks {
  top: 52.1%;
  left: 19.5%;
  width: 25.2%;
  height: 31.7%;
}

.crop-tasks {
  background-size: 396.825% 381.679%;
  background-position: 26.07% 58.81%;
}

.mask-clock,
.crop-clock {
  top: 43.4%;
  left: 46.0%;
  width: 52%;
  height: 17.2%;
}

.crop-clock {
  background-size: 192.308% 581.395%;
  background-position: 95.833% 52.415%;
}

.mask-notice,
.crop-notice {
  top: 74.4%;
  left: 46.0%;
  width: 25.2%;
  height: 25.6%;
}

.crop-notice {
  background-size: 396.825% 389.105%;
  background-position: 61.497% 83.446%;
}

.mask-messages,
.crop-messages {
  top: 74.4%;
  left: 72.5%;
  width: 25.5%;
  height: 25.6%;
}

.crop-messages {
  background-size: 392.157% 389.105%;
  background-position: 97.315% 83.446%;
}

.hero-flying-note {
  z-index: 4;
  padding: 1.15% .9%;
  border-radius: 1px;
  color: #102b45;
  background: linear-gradient(145deg, #ffd1e7 0%, #f7bfd9 100%);
  box-shadow: 0 10px 18px -10px rgba(0, 31, 61, .48), inset -8px -8px 12px rgba(208, 108, 158, .08);
  transform: rotate(-2deg);
  transform-origin: 50% 0;
}

.hero-flying-note::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 16%;
  height: 16%;
  background: linear-gradient(135deg, rgba(255,255,255,0) 48%, rgba(203, 112, 155, .18) 50%);
  content: "";
}

.hero-flying-note p {
  margin: 0;
  color: #23405a;
  font-family: "Segoe Print", "Comic Sans MS", cursive;
  font-size: clamp(5px, .66vw, 9px);
  font-weight: 600;
  line-height: 1.32;
}

.mask-procurement,
.hero-flying-procurement {
  top: 46.8%;
  left: 3.6%;
  width: 13.7%;
  height: 3.6%;
}

.mask-procurement {
  border: 0;
  border-radius: 4px;
  background: #fff;
  box-shadow: none;
}

.hero-flying-procurement {
  z-index: 4;
  display: flex;
  align-items: center;
  padding: 0 .7%;
  border-radius: 4px;
  color: #001f3d;
  background: #edf0f3;
  box-shadow: 0 8px 18px -14px rgba(0, 31, 61, .65);
  font-size: clamp(5px, .67vw, 9px);
  font-weight: 700;
}

.hero-flying-procurement::after {
  width: 5px;
  height: 5px;
  margin-left: auto;
  border-radius: 50%;
  background: #faa80f;
  box-shadow: 0 0 0 3px rgba(250, 168, 15, .16);
  content: "";
}

@media (max-width: 860px), (prefers-reduced-motion: reduce) {
  .hero-flight-deck,
  .hero-scroll:not(.is-animated) .hero-dashboard-mask,
  .hero-scroll:not(.is-animated) .hero-dashboard-crop,
  .hero-scroll:not(.is-animated) .hero-flying-note,
  .hero-scroll:not(.is-animated) .hero-flying-procurement {
    display: none;
  }
}

.hero-product-frame {
  overflow: hidden;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 28px;
  background: var(--navy-950);
  box-shadow:
    0 50px 110px -52px rgba(0, 31, 61, .78),
    0 26px 48px -32px rgba(0, 31, 61, .72),
    inset 0 1px rgba(255, 255, 255, .13);
}

.hero-product-bar {
  display: grid;
  height: 40px;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  padding: 0 12px;
  color: rgba(255, 255, 255, .68);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .01em;
}

.hero-window-dots {
  display: flex;
  gap: 5px;
}

.hero-window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .25);
}

.hero-window-dots i:nth-child(2) {
  background: var(--amber-500);
}

.hero-product-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--white);
}

.hero-product-label i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #41c184;
  box-shadow: 0 0 0 4px rgba(65, 193, 132, .12);
}

.hero-product-context {
  justify-self: end;
}

.hero-product-screen {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: var(--white);
}

.hero-product-screen > img {
  width: 100%;
  height: auto;
  opacity: 1;
  transform: scale(1);
  transition: opacity .2s ease, transform .32s cubic-bezier(.16, 1, .3, 1);
}

.hero-product-screen.is-changing > img {
  opacity: .34;
  transform: scale(.992);
}

.hero-screen-tag {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(0, 31, 61, .08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  color: var(--navy-950);
  box-shadow: 0 10px 25px -17px rgba(0, 31, 61, .72);
  font-size: 10px;
  font-weight: 800;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.hero-screen-tag::before {
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--amber-500);
  content: "";
}

.hero-screen-tag-pulse {
  right: 2%;
  bottom: 10%;
}

.hero-screen-tag-work {
  top: 55%;
  left: 3%;
}

.hero-screen-tag-work::before {
  background: var(--danger);
}

.hero-product-carousel {
  display: grid;
  align-items: center;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  gap: 8px;
  margin-top: 10px;
}

.hero-product-rail {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(5, 1fr);
  gap: 9px;
  margin-top: 0;
}

.hero-carousel-button {
  display: grid;
  width: 42px;
  height: 100%;
  min-height: 78px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(0, 31, 61, .12);
  border-radius: 14px;
  background: rgba(255, 255, 255, .92);
  color: var(--navy-950);
  box-shadow: 0 16px 35px -28px rgba(0, 31, 61, .62);
  cursor: pointer;
  font: 500 30px/1 system-ui, sans-serif;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.hero-carousel-button:hover,
.hero-carousel-button:focus-visible {
  border-color: var(--amber-500);
  background: var(--white);
}

.hero-carousel-button:active {
  transform: scale(.97);
}

.hero-carousel-button:focus-visible {
  outline: 3px solid rgba(250, 168, 15, .36);
  outline-offset: 3px;
}

.hero-carousel-count {
  display: block;
  margin-top: 7px;
  color: var(--navy-700);
  font-size: 10px;
  font-weight: 800;
  text-align: center;
}

.hero-product-rail figure {
  position: relative;
  height: 88px;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(0, 31, 61, .08);
  border-radius: 15px;
  background: var(--white);
  box-shadow: 0 16px 35px -28px rgba(0, 31, 61, .62);
}

.hero-product-rail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}

.hero-product-rail figcaption {
  position: absolute;
  right: 7px;
  bottom: 7px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(0, 31, 61, .84);
  color: var(--white);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 17px;
  left: 50%;
  z-index: 15;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-700);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-scroll-cue span {
  position: relative;
  width: 18px;
  height: 30px;
  border: 1px solid rgba(0, 31, 61, .28);
  border-radius: 999px;
}

.hero-scroll-cue span::after {
  position: absolute;
  top: 6px;
  left: 7px;
  width: 3px;
  height: 7px;
  border-radius: 99px;
  background: var(--amber-500);
  content: "";
  animation: hero-scroll-dot 1.8s ease-in-out infinite;
}

.hero-scroll.is-animated .hero-copy,
.hero-scroll.is-animated .hero-product,
.hero-scroll.is-animated .hero-alert,
.hero-scroll.is-animated .hero-product-carousel,
.hero-scroll.is-animated .hero-product-rail,
.hero-scroll.is-animated .hero-scroll-cue {
  will-change: transform, opacity;
}

.hero-scroll.is-animated .hero-dash-widget,
.hero-scroll.is-animated .hero-dash-procurement,
.hero-scroll.is-animated [data-hero-widget-body],
.hero-scroll.is-animated [data-hero-material-kpi],
.hero-scroll.is-animated [data-hero-flight] {
  will-change: transform, opacity;
}

.hero-scroll.is-static {
  min-height: auto;
}

.hero-scroll.is-static .hero-stage {
  min-height: auto;
  overflow: visible;
}

.hero-scroll.is-static .hero-scroll-inner {
  display: flex;
  height: auto;
  min-height: 0;
  align-items: center;
  flex-direction: column;
  padding: 78px 0 68px;
}

.hero-scroll.is-static .hero-copy {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
}

.hero-scroll.is-static .hero-alerts,
.hero-scroll.is-static .hero-flight-deck,
.hero-scroll.is-static .hero-dashboard-mask,
.hero-scroll.is-static .hero-scroll-cue {
  display: none;
}

.hero-scroll.is-static .hero-product {
  position: relative;
  top: auto;
  left: auto;
  margin-top: 58px;
  transform: none;
}

@keyframes hero-scroll-dot {
  0%, 100% {
    opacity: .35;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(8px);
  }
}

.page-hero-single {
  max-width: 900px;
}

.hero-product-screen,
.hero-product-thumb,
.role-evidence-visual,
.workflow-visual,
.guide-visual {
  appearance: none;
  width: 100%;
  padding: 0;
  border: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.hero-product-screen {
  display: block;
}

.hero-product-screen:focus-visible,
.hero-product-thumb:focus-visible,
.role-evidence-visual:focus-visible,
.workflow-visual:focus-visible,
.guide-visual:focus-visible {
  outline: 3px solid var(--amber-500);
  outline-offset: 3px;
}

.hero-product-screen > img {
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top left;
}

.screen-open-hint {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 11px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(0, 31, 61, .88);
  box-shadow: 0 10px 24px -14px rgba(0, 31, 61, .9);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .03em;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .2s ease, transform .2s ease;
}

.hero-product-screen:hover .screen-open-hint,
.hero-product-screen:focus-visible .screen-open-hint,
.role-evidence-visual:hover .screen-open-hint,
.role-evidence-visual:focus-visible .screen-open-hint,
.workflow-visual:hover .screen-open-hint,
.workflow-visual:focus-visible .screen-open-hint,
.guide-visual:hover .screen-open-hint,
.guide-visual:focus-visible .screen-open-hint {
  opacity: 1;
  transform: translateY(0);
}

.hero-product-thumb {
  position: relative;
  height: 88px;
  overflow: hidden;
  border: 1px solid rgba(0, 31, 61, .08);
  border-radius: 15px;
  background: var(--white);
  box-shadow: 0 16px 35px -28px rgba(0, 31, 61, .62);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.hero-product-thumb:hover {
  transform: translateY(-3px);
}

.hero-product-thumb[aria-pressed="true"] {
  border-color: var(--amber-500);
  box-shadow: 0 0 0 2px rgba(250, 168, 15, .2), 0 18px 36px -28px rgba(0, 31, 61, .7);
}

.hero-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}

.hero-product-thumb span {
  position: absolute;
  right: 7px;
  bottom: 7px;
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(0, 31, 61, .86);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.role-evidence-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.role-evidence-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.role-evidence-visual {
  position: relative;
  display: block;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--blue-50);
}

.role-evidence-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top left;
  transition: transform .35s ease;
}

.role-evidence-visual:hover img {
  transform: scale(1.015);
}

.role-evidence-card > div {
  padding: 24px 26px 28px;
}

.role-evidence-card h3 {
  margin: 0;
  color: var(--navy-950);
  font-size: 20px;
}

.role-evidence-card p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.role-evidence-link {
  margin: 28px 0 0;
}

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

.solution-disclosure {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 16px 38px -34px rgba(0, 31, 61, .65);
}

.solution-disclosure summary {
  display: grid;
  min-height: 94px;
  align-items: center;
  grid-template-columns: 44px 1fr 24px;
  gap: 15px;
  padding: 20px;
  color: var(--navy-950);
  cursor: pointer;
  font-size: 17px;
  font-weight: 800;
  list-style: none;
}

.solution-disclosure summary::-webkit-details-marker {
  display: none;
}

.solution-disclosure summary:focus-visible {
  outline: 3px solid var(--amber-500);
  outline-offset: 3px;
  border-radius: 18px;
}

.solution-disclosure summary i {
  position: relative;
  width: 18px;
  height: 18px;
}

.solution-disclosure summary i::before,
.solution-disclosure summary i::after {
  position: absolute;
  top: 8px;
  left: 2px;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy-700);
  content: "";
  transition: transform .2s ease;
}

.solution-disclosure summary i::after {
  transform: rotate(90deg);
}

.solution-disclosure[open] summary i::after {
  transform: rotate(0);
}

.solution-disclosure-body {
  padding: 0 22px 24px 79px;
}

.solution-disclosure-body p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.workflow-card {
  display: block;
  min-height: 0;
  overflow: hidden;
}

.workflow-visual {
  position: relative;
  display: block;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--blue-50);
}

.workflow-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 6;
  object-fit: cover;
  object-position: top left;
  transition: transform .35s ease;
}

.workflow-visual:hover img {
  transform: scale(1.01);
}

.workflow-content {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
}

.workflow-intro h3 {
  margin-top: 54px;
}

.guide-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.guide-card {
  min-height: 0;
  overflow: hidden;
  padding: 0;
}

.guide-visual {
  position: relative;
  display: block;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--blue-50);
}

.guide-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top left;
  transition: transform .3s ease;
}

.guide-visual:hover img {
  transform: scale(1.02);
}

.guide-copy {
  padding: 22px 24px 26px;
}

.guide-card h3 {
  margin: 0 0 10px;
}

.image-lightbox {
  width: min(94vw, 1500px);
  max-width: none;
  max-height: 94vh;
  padding: 0;
  border: 0;
  overflow: visible;
  background: transparent;
}

.image-lightbox::backdrop {
  background: rgba(0, 15, 30, .88);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.image-lightbox-shell {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 20px;
  background: var(--navy-950);
  box-shadow: 0 40px 100px rgba(0, 0, 0, .45);
}

.image-lightbox-bar {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 10px 8px 18px;
  color: var(--white);
}

.image-lightbox-bar p {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
}

.image-lightbox-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.image-lightbox-meta > span {
  min-width: 42px;
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  font-weight: 750;
  text-align: right;
}

.image-lightbox-close {
  display: grid;
  width: 36px;
  height: 36px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
  font-size: 24px;
}

.image-lightbox-close:focus-visible,
.image-lightbox-nav:focus-visible {
  outline: 3px solid var(--amber-500);
  outline-offset: 2px;
}

.image-lightbox-stage {
  position: relative;
  display: grid;
  place-items: center;
  background: var(--white);
}

.image-lightbox img {
  display: block;
  width: 100%;
  max-height: calc(94vh - 52px);
  object-fit: contain;
  background: var(--white);
}

.image-lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 46px;
  height: 58px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 14px;
  background: rgba(0, 31, 61, .88);
  color: var(--white);
  box-shadow: 0 12px 30px -18px rgba(0, 31, 61, .9);
  cursor: pointer;
  font: 400 34px/1 system-ui, sans-serif;
  transform: translateY(-50%);
  transition: background .18s ease, transform .18s ease;
}

.image-lightbox-nav:hover {
  background: var(--navy-900);
  transform: translateY(-50%) scale(1.04);
}

.image-lightbox-nav:active {
  transform: translateY(-50%) scale(.97);
}

.image-lightbox-nav[hidden] {
  display: none;
}

.image-lightbox-previous {
  left: 14px;
}

.image-lightbox-next {
  right: 14px;
}

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

.product-visual-card {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(0, 31, 61, .1);
  border-radius: 16px;
  background: var(--white);
  color: var(--navy-950);
  font: inherit;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 18px 40px -34px rgba(0, 31, 61, .7);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.product-visual-card:nth-of-type(1),
.product-visual-card:nth-of-type(4) {
  grid-column: span 7;
}

.product-visual-card:nth-of-type(2),
.product-visual-card:nth-of-type(3) {
  grid-column: span 5;
}

.product-visual-card:nth-of-type(8),
.product-visual-card:nth-of-type(9) {
  grid-column: span 6;
}

.product-visual-card:hover,
.product-visual-card:focus-visible {
  border-color: var(--amber-500);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -34px rgba(0, 31, 61, .78);
}

.product-visual-card:focus-visible {
  outline: 3px solid rgba(250, 168, 15, .4);
  outline-offset: 3px;
}

.product-visual-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-bottom: 1px solid rgba(0, 31, 61, .08);
  object-fit: cover;
  object-position: top left;
}

.product-visual-card > span {
  display: flex;
  min-height: 70px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 16px;
}

.product-visual-card strong,
.product-visual-card small {
  display: block;
}

.product-visual-card strong {
  max-width: 24ch;
  font-size: 14px;
}

.product-visual-card small {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-align: right;
}

.product-visual-card > .screen-open-hint {
  font-style: normal;
}

.product-visual-card:hover .screen-open-hint,
.product-visual-card:focus-visible .screen-open-hint {
  opacity: 1;
  transform: translateY(0);
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

@media (max-width: 1080px) {
  .nav-shell {
    gap: 16px;
  }

  .primary-nav {
    gap: 0;
  }

  .primary-nav a {
    padding-inline: 7px;
  }

  .nav-text-link {
    display: none;
  }

  .nav-actions .button {
    padding-inline: 14px;
    font-size: 13px;
  }

  .language-link {
    min-width: 36px;
    padding-inline: 7px;
  }

  .floating-card {
    opacity: .78;
    transform: scale(.86);
  }

  .float-pulse,
  .float-stock {
    left: -36px;
  }

  .float-task,
  .float-progress {
    right: -48px;
  }

  .hero-scroll .display {
    font-size: clamp(56px, 7vw, 78px);
  }

  .hero-alert {
    width: 220px;
    grid-template-columns: 36px 1fr 7px;
    padding: 11px 12px;
  }

  .hero-alert-icon {
    width: 36px;
    height: 36px;
  }

  .hero-alert-ocr,
  .hero-alert-purchase,
  .hero-alert-negative-stock {
    left: -2%;
  }

  .hero-alert-stock,
  .hero-alert-pulse {
    right: -2%;
  }

  .hero-product {
    width: calc(100vw - 80px);
  }

  .capability-grid,
  .solution-grid,
  .guide-grid,
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .section-header {
    display: block;
  }

  .section-header .section-lead {
    max-width: 650px;
    margin-top: 20px;
  }
}

@media (max-width: 860px) {
  .site-header {
    height: 64px;
  }

  .nav-shell {
    justify-content: space-between;
    gap: 12px;
    min-width: 0;
  }

  .brand span {
    font-size: 18px;
  }

  .primary-nav,
  .nav-actions .nav-text-link,
  .nav-actions .button,
  .nav-actions .language-link {
    display: none;
  }

  .nav-actions {
    gap: 8px;
    min-width: 0;
  }

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

  .mobile-nav {
    position: fixed;
    top: 64px;
    right: 0;
    left: 0;
    z-index: 99;
    display: none;
    width: 100%;
    max-width: 100%;
    height: calc(100dvh - 64px);
    max-height: calc(100dvh - 64px);
    box-sizing: border-box;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 20px 35px -28px rgba(0, 31, 61, .35);
  }

  .mobile-nav.is-open {
    display: flex;
    flex-direction: column;
  }

  .mobile-nav-scroll {
    display: flex;
    width: 100%;
    max-width: 100%;
    min-height: 0;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 2px;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 14px max(16px, env(safe-area-inset-right, 0px)) calc(20px + env(safe-area-inset-bottom, 0px)) max(16px, env(safe-area-inset-left, 0px));
    -webkit-overflow-scrolling: touch;
  }

  .mobile-nav-scroll > a {
    min-width: 0;
    min-height: 44px;
    padding: 11px 12px;
    border-radius: 12px;
    color: var(--navy-950);
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-nav-scroll > a:hover,
  .mobile-nav-scroll > a:focus-visible {
    background: var(--fog);
  }

  .mobile-nav-scroll .language-switcher {
    margin-top: 10px;
    padding-top: 12px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .mobile-nav-scroll .language-switcher-grid {
    display: flex;
    width: 100%;
    max-width: 100%;
    gap: 6px;
    box-sizing: border-box;
  }

  .mobile-nav-scroll .language-pill {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    max-width: none;
    min-height: 44px;
    padding: 6px 2px;
  }

  .mobile-nav-scroll .language-pill small {
    display: none;
  }

  .mobile-nav-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    flex-shrink: 0;
    gap: 8px;
    min-width: 0;
    max-width: 100%;
    padding: 12px max(16px, env(safe-area-inset-right, 0px)) max(12px, env(safe-area-inset-bottom, 0px)) max(16px, env(safe-area-inset-left, 0px));
    border-top: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 -10px 24px -20px rgba(0, 31, 61, .28);
  }

  .mobile-nav-cta .button {
    display: flex;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 46px;
    box-sizing: border-box;
    padding-inline: 14px;
    font-size: 14px;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
  }

  .mobile-nav-cta .button:hover {
    transform: none;
  }

  .mobile-nav-backdrop {
    position: fixed;
    top: 64px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 98;
    display: block;
    border: 0;
    background: rgba(0, 31, 61, .34);
    opacity: 0;
    transition: opacity .2s ease;
    pointer-events: none;
  }

  .mobile-nav-backdrop.is-visible {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav-backdrop[hidden] {
    display: none !important;
  }

  .trail-flows {
    gap: 14px;
  }

  .trail-flow {
    padding: 20px 16px;
    overflow: hidden;
  }

  .trail-flow-head {
    gap: 12px;
    margin-bottom: 16px;
  }

  .trail-flow h3 {
    font-size: clamp(1.2rem, 5.2vw, 1.45rem);
    line-height: 1.2;
    overflow-wrap: anywhere;
  }

  .trail-flow-subtitle {
    font-size: 13px;
    line-height: 1.45;
  }

  .trail-bubbles {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    flex-wrap: nowrap;
    padding-bottom: 0;
    counter-reset: trail-step;
  }

  .trail-bubble {
    counter-increment: trail-step;
    position: relative;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex-shrink: 1;
    justify-content: flex-start;
    padding: 12px 14px 12px 42px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.35;
    text-align: left;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .trail-bubble::before {
    content: counter(trail-step);
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--amber-500);
    color: var(--navy-950);
    font-size: 11px;
    font-weight: 800;
    display: grid;
    place-items: center;
  }

  .trail-bubble-arrow {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 4px 0;
    font-size: 0;
    line-height: 1;
  }

  .trail-bubble-arrow::after {
    content: "";
    display: block;
    width: 2px;
    height: 12px;
    border-radius: 1px;
    background: var(--amber-500);
    opacity: .75;
  }

  .trail-flow-note {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.55;
  }

  .trail-pulse-note {
    margin-top: 20px;
    padding: 14px 16px;
    font-size: 14px;
    text-align: left;
  }

  .trail-flow-link {
    margin-top: 16px;
  }

  .hero-scroll {
    min-height: auto;
    overflow: hidden;
  }

  .hero-stage {
    min-height: auto;
    overflow: visible;
  }

  .hero-scroll-inner {
    display: flex;
    height: auto;
    min-height: 0;
    align-items: center;
    flex-direction: column;
    padding: 72px 0 54px;
  }

  .hero-scroll .hero-copy {
    position: relative;
    top: auto;
    left: auto;
    width: min(680px, 100%);
    transform: none;
  }

  .hero-scroll .display {
    font-size: clamp(51px, 10vw, 72px);
  }

  .hero-scroll .hero-subtitle {
    max-width: 620px;
  }

  .hero-alerts,
  .hero-scroll-cue {
    display: none;
  }

  .hero-product {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    margin-top: 56px;
    transform: none !important;
  }

  .hero-product-frame {
    padding: 6px;
    border-radius: 23px;
  }

  .hero-product-screen {
    border-radius: 17px;
  }

  .hero-product-rail {
    overflow-x: auto;
    grid-template-columns: repeat(5, minmax(180px, 1fr));
    padding: 0 1px 8px;
    scroll-snap-type: x mandatory;
  }

  .hero-product-rail figure {
    height: 92px;
    scroll-snap-align: start;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: 700px;
    padding: 88px 0 170px;
  }

  .floating-card {
    transform: scale(.7);
  }

  .float-pulse {
    top: 25px;
  }

  .float-task {
    top: 44px;
  }

  .float-stock {
    bottom: 5px;
  }

  .float-progress {
    bottom: 0;
  }

  .hero-dashboard {
    margin-top: -92px;
  }

  .app-shell {
    grid-template-columns: 1fr;
  }

  .app-sidebar {
    display: none;
  }

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

  .feature-triptych,
  .price-preview,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .plan-modules-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 280px;
  }

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

  .tab-list {
    display: flex;
    overflow-x: auto;
    padding: 4px 4px 12px;
    scroll-snap-type: x mandatory;
  }

  .tab-button {
    min-width: 245px;
    scroll-snap-align: start;
  }

  .tab-button[aria-selected="true"] {
    transform: none;
  }

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

  .workflow-card {
    grid-template-columns: 1fr;
  }

  .workflow-intro h3 {
    margin-top: 42px;
  }

  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .page-summary-card {
    max-width: 480px;
  }

  .form-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-copy {
    position: static;
  }

  .cta-inner {
    display: block;
  }

  .cta-actions {
    margin-top: 28px;
  }

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

@media (max-width: 620px) {
  .container,
  .narrow {
    width: min(calc(100% - 28px), var(--page));
  }

  .section {
    padding: 84px 0;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .section-header .section-lead {
    max-width: 100%;
    margin-top: 12px;
    font-size: 16px;
  }

  .display {
    font-size: clamp(47px, 14vw, 68px);
  }

  .section-title {
    font-size: clamp(39px, 12vw, 54px);
  }

  .page-title {
    font-size: clamp(46px, 13vw, 64px);
  }

  .hero-scroll-inner {
    width: min(calc(100% - 24px), var(--page));
    padding: 58px 0 38px;
  }

  .hero-scroll .display {
    font-size: clamp(45px, 13vw, 62px);
  }

  .hero-scroll .hero-subtitle {
    margin-top: 17px;
  }

  .hero-product {
    margin-top: 42px;
  }

  .hero-product-frame {
    border-radius: 18px;
  }

  .hero-product-bar {
    height: 34px;
    grid-template-columns: 1fr auto;
  }

  .hero-product-label {
    justify-self: end;
  }

  .hero-product-context {
    display: none;
  }

  .hero-product-screen {
    border-radius: 13px;
  }

  .hero-screen-tag {
    display: none;
  }

  .hero-product-rail {
    grid-template-columns: repeat(5, minmax(145px, 1fr));
  }

  .hero-product-rail figure {
    height: 78px;
  }

  .hero-inner {
    min-height: 680px;
    padding: 90px 0 105px;
  }

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

  .hero-actions,
  .cta-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .cta-actions .button {
    width: 100%;
  }

  .hero-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .float-pulse,
  .float-task {
    display: none;
  }

  .float-stock,
  .float-progress {
    display: none;
  }

  .hero-dashboard {
    width: calc(100% - 20px);
    margin-top: -72px;
    padding: 6px;
    border-radius: 22px;
  }

  .product-window {
    border-radius: 17px;
  }

  .app-main {
    padding: 15px;
  }

  .app-top {
    margin-bottom: 12px;
  }

  .app-top h3 {
    font-size: 16px;
  }

  .kpi-grid {
    gap: 8px;
  }

  .kpi-card {
    min-height: 87px;
    padding: 12px;
  }

  .kpi-card strong {
    font-size: 23px;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 9px;
  }

  .dashboard-card {
    min-height: 175px;
    padding: 14px;
  }

  .dashboard-card:last-child {
    display: none;
  }

  .feature-triptych,
  .capability-grid,
  .solution-grid,
  .guide-grid,
  .info-grid,
  .steps,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .tabs {
    gap: 14px;
  }

  .tab-stage,
  .tab-panel {
    min-height: 590px;
  }

  .tab-panel {
    padding: 26px 22px;
  }

  .flow-diagram {
    grid-template-columns: 1fr 1fr;
  }

  .flow-step::after {
    display: none;
  }

  .role-copy {
    padding: 38px 25px;
  }

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

  .role-item {
    min-height: 150px;
  }

  .role-item strong {
    margin-top: 25px;
  }

  .workflow-steps {
    padding: 18px 22px;
  }

  .workflow-intro {
    padding: 28px 24px;
  }

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

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

  .lead-form {
    padding: 24px 18px;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .form-footer .button {
    width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-social {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-legal {
    flex-wrap: wrap;
  }
}

@media (max-width: 860px) {
  .role-evidence-grid,
  .solution-disclosure-grid,
  .workflow-content {
    grid-template-columns: 1fr;
  }

  .workflow-visual img {
    aspect-ratio: 16 / 8;
  }

  .workflow-intro h3 {
    margin-top: 34px;
  }

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

  .screen-open-hint {
    opacity: 1;
    transform: none;
  }
}

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

  .solution-disclosure summary {
    grid-template-columns: 40px 1fr 20px;
    padding: 17px;
    font-size: 15px;
  }

  .solution-disclosure-body {
    padding: 0 18px 20px;
  }

  .role-evidence-card > div {
    padding: 20px;
  }

  .workflow-visual img {
    aspect-ratio: 16 / 10;
  }

  .image-lightbox {
    width: calc(100vw - 16px);
  }

  .image-lightbox-shell {
    border-radius: 14px;
  }

  .image-lightbox-nav {
    width: 40px;
    height: 50px;
    border-radius: 12px;
  }

  .image-lightbox-previous {
    left: 8px;
  }

  .image-lightbox-next {
    right: 8px;
  }

  .product-visual-grid {
    grid-template-columns: 1fr;
  }

  .product-visual-card,
  .product-visual-card:nth-of-type(1),
  .product-visual-card:nth-of-type(2),
  .product-visual-card:nth-of-type(3),
  .product-visual-card:nth-of-type(4),
  .product-visual-card:nth-of-type(8),
  .product-visual-card:nth-of-type(9) {
    grid-column: 1;
  }
}

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

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

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

  .hero-scroll {
    min-height: auto;
  }

  .hero-stage {
    min-height: auto;
    overflow: visible;
  }

  .hero-scroll-inner {
    display: flex;
    height: auto;
    min-height: 0;
    align-items: center;
    flex-direction: column;
    padding: 78px 0 68px;
  }

  .hero-scroll .hero-copy {
    position: relative;
    top: auto;
    left: auto;
    transform: none !important;
    opacity: 1 !important;
  }

  .hero-alerts,
  .hero-scroll-cue {
    display: none;
  }

  .hero-product {
    position: relative;
    top: auto;
    left: auto;
    margin-top: 58px;
    transform: none !important;
    opacity: 1 !important;
  }

  .hero-product-rail {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Reports selling page */
.report-value-section {
  overflow: hidden;
}

.report-value-copy {
  max-width: 860px;
}

.report-value-copy .section-title {
  max-width: 14ch;
}

.report-value-copy .section-lead {
  max-width: 54ch;
  margin: 24px 0 30px;
}

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

.report-type-card {
  min-height: 100%;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.report-type-card:nth-child(2) {
  background: var(--amber-100);
}

.report-type-card:nth-child(3) {
  background: var(--blue-100);
}

.report-type-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.report-type-number {
  color: rgba(0, 31, 61, .32);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .08em;
}

.report-type-card h3 {
  margin: 42px 0 12px;
  color: var(--navy-950);
  font-size: 25px;
  letter-spacing: -.035em;
}

.report-type-card > p {
  min-height: 74px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.report-type-card .check-list {
  gap: 10px;
}

.report-type-card .check-list li {
  color: var(--navy-800);
  font-size: 13px;
}

.report-flow-section .eyebrow,
.report-flow-section .section-title {
  color: var(--white);
}

.report-flow-section .section-title {
  max-width: 14ch;
}

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

.report-flow-step {
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .07);
}

.report-flow-step > span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--amber-400);
  color: var(--navy-950);
  font-size: 11px;
  font-weight: 850;
}

.report-flow-step h3 {
  margin: 54px 0 12px;
  color: var(--white);
  font-size: 19px;
}

.report-flow-step p {
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
  line-height: 1.65;
}

.report-review-note {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  max-width: 880px;
  margin: 28px auto 0;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
}

.report-review-note > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  background: var(--amber-100);
  color: var(--navy-950);
}

.report-review-note svg {
  width: 22px;
  height: 22px;
}

.report-review-note h3 {
  margin: 0 0 6px;
  color: var(--navy-950);
  font-size: 17px;
}

.report-review-note p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 1080px) {
  .report-type-grid {
    grid-template-columns: 1fr;
  }

  .report-type-card > p {
    min-height: 0;
  }

  .report-flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .report-value-copy .section-title {
    max-width: 16ch;
  }
}

@media (max-width: 620px) {
  .report-flow-grid {
    grid-template-columns: 1fr;
  }

  .report-flow-step {
    min-height: 0;
  }

  .report-flow-step h3 {
    margin-top: 28px;
  }
}

/* Homepage: real product workflow */
.workflow-hero {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 12% 16%, rgba(155, 213, 230, .42), transparent 32%),
    radial-gradient(circle at 88% 10%, rgba(250, 168, 15, .2), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f3f8fa 100%);
}

.workflow-stage {
  position: relative;
  min-height: calc(100vh - 72px);
}

.workflow-layout {
  display: grid;
  min-height: calc(100vh - 72px);
  align-items: center;
  grid-template-columns: minmax(310px, .72fr) minmax(620px, 1.28fr);
  gap: clamp(42px, 5vw, 84px);
  padding-block: clamp(54px, 7vh, 92px);
}

.workflow-copy {
  position: relative;
  z-index: 3;
}

.workflow-copy .display {
  max-width: 620px;
  font-size: clamp(54px, 5.4vw, 84px);
  line-height: .94;
  text-align: left;
}

.workflow-copy .hero-subtitle {
  max-width: 570px;
  margin: 24px 0 0;
  text-align: left;
}

.workflow-copy .hero-actions {
  justify-content: flex-start;
}

.workflow-story {
  position: relative;
  min-width: 0;
}

.workflow-frame {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 28px;
  background: var(--navy-950);
  box-shadow: 0 52px 100px -54px rgba(0, 31, 61, .85), 0 24px 46px -30px rgba(0, 31, 61, .7);
  transform-origin: 50% 50%;
}

.workflow-frame-bar {
  display: grid;
  height: 42px;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  padding: 0 12px;
  color: rgba(255, 255, 255, .82);
  font-size: 10px;
  letter-spacing: .04em;
}

.workflow-frame-bar > span {
  display: flex;
  gap: 5px;
}

.workflow-frame-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .25);
}

.workflow-frame-bar i:nth-child(2) {
  background: var(--amber-500);
}

.workflow-frame-bar strong {
  font-weight: 750;
}

.workflow-screens {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.62 / 1;
  border-radius: 21px;
  background: #edf3f5;
}

.workflow-screen {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: translateY(16px) scale(.985);
  transition: opacity .32s ease, transform .45s cubic-bezier(.2, .75, .25, 1);
}

.workflow-screen.is-active {
  z-index: 2;
  opacity: 1;
  transform: none;
}

.workflow-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.workflow-step-heading {
  display: none;
}

.workflow-story-step {
  display: grid;
  min-width: 0;
  grid-template-columns: auto 1fr;
  gap: 8px;
  padding: 12px 10px;
  border: 0;
  border-top: 2px solid rgba(0, 31, 61, .12);
  background: transparent;
  color: var(--muted);
  font: inherit;
  text-align: left;
  opacity: .56;
  cursor: pointer;
  transition: border-color .25s ease, color .25s ease, opacity .25s ease;
}

.workflow-story-step:hover,
.workflow-story-step:focus-visible,
.workflow-story-step.is-active {
  border-color: var(--amber-500);
  color: var(--navy-950);
  opacity: 1;
}

.workflow-story-step:focus-visible {
  outline: 3px solid rgba(250, 168, 15, .34);
  outline-offset: 3px;
}

.workflow-story-step > span {
  color: var(--amber-600);
  font-size: 10px;
  font-weight: 850;
}

.workflow-story-step h3 {
  margin: 0;
  font-size: 11px;
  line-height: 1.25;
}

.workflow-story-step p {
  display: none;
}

.section-header.compact {
  max-width: 780px;
}

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

.outcome-card {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}

.outcome-card > span {
  color: var(--amber-600);
  font-size: 11px;
  font-weight: 850;
}

.outcome-card h3 {
  max-width: 260px;
  margin: 54px 0 10px;
  font-size: 24px;
}

.outcome-card p {
  margin: 0;
  color: var(--muted);
}

.section-action {
  margin: 30px 0 0;
}

.product-gallery {
  position: relative;
}

.product-gallery-viewer {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  padding: 0;
  aspect-ratio: 1.6 / 1;
  border: 7px solid var(--navy-950);
  border-radius: 25px;
  background: var(--navy-950);
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: zoom-in;
  box-shadow: 0 35px 74px -45px rgba(0, 31, 61, .82);
}

.product-gallery-viewer:focus-visible {
  outline: 4px solid var(--amber-500);
  outline-offset: 4px;
}

.product-gallery-viewer > img {
  width: 100%;
  height: 100%;
  border-radius: 17px;
  object-fit: cover;
  object-position: top left;
  transition: opacity .18s ease, transform .28s ease;
}

.product-gallery-viewer.is-changing > img {
  opacity: .3;
  transform: scale(.992);
}

.product-gallery-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 2px 18px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 15px;
  background: rgba(0, 31, 61, .9);
  color: #fff;
  box-shadow: 0 14px 36px -24px rgba(0, 0, 0, .8);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.product-gallery-caption strong,
.product-gallery-caption span {
  display: block;
}

.product-gallery-caption strong {
  font-size: 15px;
}

.product-gallery-caption span {
  grid-column: 1;
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
}

.product-gallery-caption i {
  grid-row: 1 / 3;
  grid-column: 2;
}

.product-gallery-caption svg {
  width: 20px;
  height: 20px;
}

.product-gallery-hint {
  margin: 16px 0 12px;
  color: var(--muted);
  font-size: 12px;
}

.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.product-gallery-thumb {
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(0, 31, 61, .1);
  border-radius: 14px;
  background: #fff;
  color: var(--navy-950);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 14px 30px -27px rgba(0, 31, 61, .66);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.product-gallery-thumb:hover,
.product-gallery-thumb:focus-visible {
  transform: translateY(-3px);
}

.product-gallery-thumb.is-active {
  border-color: var(--amber-500);
  box-shadow: 0 0 0 2px rgba(250, 168, 15, .2), 0 18px 32px -26px rgba(0, 31, 61, .7);
}

.product-gallery-thumb:focus-visible {
  outline: 3px solid rgba(250, 168, 15, .36);
  outline-offset: 3px;
}

.product-gallery-thumb > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1.6 / 1;
  border-bottom: 1px solid rgba(0, 31, 61, .08);
  object-fit: cover;
  object-position: top left;
}

.product-gallery-thumb > span {
  display: block;
  padding: 11px 12px 12px;
}

.product-gallery-thumb strong,
.product-gallery-thumb small {
  display: block;
}

.product-gallery-thumb strong {
  font-size: 12px;
}

.product-gallery-thumb small {
  display: none;
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
}

.product-gallery-hint {
  max-width: 680px;
  margin: 0 auto 8px;
  text-align: center;
}

.product-gallery-stage {
  position: relative;
  height: clamp(500px, 53vw, 650px);
  overflow: hidden;
  perspective: 1100px;
  touch-action: pan-y;
}

.product-gallery-stage:focus-visible {
  outline: 3px solid rgba(250, 168, 15, .36);
  outline-offset: -3px;
}

.product-gallery-spotlight {
  position: absolute;
  right: 15%;
  bottom: 7%;
  left: 15%;
  height: 34%;
  border-radius: 50%;
  background: rgba(0, 31, 61, .15);
  filter: blur(42px);
  opacity: .64;
  pointer-events: none;
}

.product-gallery-stage .product-gallery-thumbs {
  position: absolute;
  inset: 0;
  display: block;
  overflow: visible;
  padding: 0;
}

.product-gallery-stage .product-gallery-thumb {
  --stack-x: 0px;
  --stack-y: 0px;
  --stack-rotate: 0deg;
  --stack-scale: 1;
  --stack-opacity: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(62vw, 680px);
  max-width: calc(100% - 64px);
  overflow: hidden;
  border: 4px solid rgba(0, 31, 61, .15);
  border-radius: 18px;
  opacity: var(--stack-opacity);
  transform:
    translate(-50%, -50%)
    translate3d(var(--stack-x), var(--stack-y), 0)
    rotate(var(--stack-rotate))
    scale(var(--stack-scale));
  transform-origin: 50% 100%;
  box-shadow: 0 30px 60px -38px rgba(0, 31, 61, .78);
  transition:
    border-color .28s ease,
    box-shadow .28s ease,
    opacity .38s ease,
    transform .55s cubic-bezier(.16, 1, .3, 1);
  will-change: transform;
}

.product-gallery-stage .product-gallery-thumb:hover,
.product-gallery-stage .product-gallery-thumb:focus-visible {
  transform:
    translate(-50%, -50%)
    translate3d(var(--stack-x), calc(var(--stack-y) - 4px), 0)
    rotate(var(--stack-rotate))
    scale(var(--stack-scale));
}

.product-gallery-stage .product-gallery-thumb.is-active {
  border-color: var(--navy-950);
  box-shadow:
    0 0 0 3px rgba(250, 168, 15, .88),
    0 42px 76px -42px rgba(0, 31, 61, .88);
  cursor: zoom-in;
}

.product-gallery-stage .product-gallery-thumb.is-outside {
  pointer-events: none;
}

.product-gallery-stage .product-gallery-thumb > img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.6 / 1;
  border-bottom: 1px solid rgba(0, 31, 61, .08);
  object-fit: cover;
  object-position: top left;
}

.product-gallery-stage .product-gallery-thumb > span {
  display: grid;
  min-height: 70px;
  align-content: center;
  gap: 3px;
  padding: 12px 15px;
  background: var(--white);
}

.product-gallery-stage .product-gallery-thumb strong {
  font-size: 14px;
}

.product-gallery-stage .product-gallery-thumb small {
  display: block;
  margin: 0;
  font-size: 11px;
}

.product-gallery-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.product-gallery-nav {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(0, 31, 61, .16);
  border-radius: 13px;
  background: var(--white);
  color: var(--navy-950);
  cursor: pointer;
  font: 500 28px/1 system-ui, sans-serif;
  transition: border-color .2s ease, transform .2s ease;
}

.product-gallery-nav:hover,
.product-gallery-nav:focus-visible {
  border-color: var(--amber-500);
}

.product-gallery-nav:active {
  transform: scale(.96);
}

.product-gallery-nav:focus-visible,
.product-gallery-open:focus-visible,
.product-gallery-dot:focus-visible {
  outline: 3px solid rgba(250, 168, 15, .38);
  outline-offset: 3px;
}

.product-gallery-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
  max-width: 250px;
  padding-inline: 4px;
}

.product-gallery-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 31, 61, .22);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.product-gallery-dot:hover,
.product-gallery-dot.is-active {
  background: var(--amber-500);
  transform: scale(1.22);
}

.product-gallery-count {
  min-width: 42px;
  color: var(--navy-700);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.product-gallery-open {
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--amber-500);
  border-radius: 13px;
  background: var(--amber-500);
  color: var(--navy-950);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  transition: background .2s ease, transform .2s ease;
}

.product-gallery-open:hover {
  background: var(--amber-400);
}

.product-gallery-open:active {
  transform: scale(.98);
}

.image-lightbox {
  width: min(94vw, 1560px);
  max-width: none;
  max-height: 94vh;
  overflow: visible;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
}

.image-lightbox::backdrop {
  background: rgba(0, 18, 35, .92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.image-lightbox figure {
  display: grid;
  max-height: 92vh;
  margin: 0;
  place-items: center;
}

.image-lightbox img {
  display: block;
  width: auto;
  max-width: 94vw;
  height: auto;
  max-height: 86vh;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 16px;
  object-fit: contain;
  box-shadow: 0 34px 100px rgba(0, 18, 35, .52);
}

.image-lightbox figcaption {
  margin-top: 12px;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-weight: 750;
  text-align: center;
}

.image-lightbox-close {
  position: absolute;
  top: -12px;
  right: -12px;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 50%;
  background: var(--navy-950);
  color: #fff;
  font-size: 27px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 18, 35, .35);
}

.image-lightbox-close:focus-visible {
  outline: 3px solid var(--amber-500);
  outline-offset: 3px;
}

html.has-image-lightbox {
  overflow: hidden;
}

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

.product-visual-card {
  grid-column: span 4;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(0, 31, 61, .1);
  border-radius: 16px;
  background: #fff;
  color: var(--navy-950);
  font: inherit;
  text-align: left;
  cursor: zoom-in;
  box-shadow: 0 18px 40px -34px rgba(0, 31, 61, .7);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.product-visual-card:nth-of-type(1),
.product-visual-card:nth-of-type(4) {
  grid-column: span 7;
}

.product-visual-card:nth-of-type(2),
.product-visual-card:nth-of-type(3) {
  grid-column: span 5;
}

.product-visual-card:nth-of-type(8),
.product-visual-card:nth-of-type(9) {
  grid-column: span 6;
}

.product-visual-card:hover,
.product-visual-card:focus-visible {
  border-color: var(--amber-500);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -34px rgba(0, 31, 61, .78);
}

.product-visual-card:focus-visible {
  outline: 3px solid rgba(250, 168, 15, .4);
  outline-offset: 3px;
}

.product-visual-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1.6 / 1;
  border-bottom: 1px solid rgba(0, 31, 61, .08);
  object-fit: cover;
  object-position: top left;
}

.product-visual-card > span {
  display: flex;
  min-height: 70px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 16px;
}

.product-visual-card strong,
.product-visual-card small {
  display: block;
}

.product-visual-card strong {
  max-width: 24ch;
  font-size: 14px;
}

.product-visual-card small {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-align: right;
}

.footer-operator {
  max-width: 780px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
  line-height: 1.6;
}

.footer-operator a {
  color: inherit;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-footer small a {
  color: var(--navy-800);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 1180px) {
  .workflow-layout {
    grid-template-columns: minmax(290px, .68fr) minmax(540px, 1.32fr);
    gap: 34px;
  }

  .workflow-copy .display {
    font-size: clamp(50px, 5.6vw, 70px);
  }
}

@media (max-width: 980px) {
  .workflow-stage,
  .workflow-layout {
    min-height: auto;
  }

  .workflow-layout {
    display: block;
    padding-block: 68px 56px;
  }

  .workflow-copy {
    max-width: 760px;
  }

  .workflow-copy .display {
    font-size: clamp(52px, 9vw, 76px);
  }

  .workflow-story {
    margin-top: 56px;
  }

  .workflow-steps {
    overflow-x: auto;
    grid-template-columns: repeat(5, minmax(220px, 1fr));
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }

  .workflow-story-step {
    min-height: 132px;
    padding: 16px 12px;
    scroll-snap-align: start;
    opacity: 1;
  }

  .workflow-story-step p {
    display: block;
    margin: 7px 0 0;
    font-size: 12px;
    line-height: 1.45;
  }

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

  .outcome-card {
    min-height: 0;
  }

  .outcome-card h3 {
    margin-top: 32px;
  }

  .product-gallery-thumbs {
    overflow-x: auto;
    grid-template-columns: repeat(13, minmax(180px, 1fr));
    padding: 4px 3px 12px;
    scroll-snap-type: x mandatory;
  }

  .product-gallery-thumb {
    scroll-snap-align: start;
  }
}

@media (max-width: 640px) {
  .section {
    padding-block: 60px;
  }

  .workflow-layout {
    width: min(calc(100% - 24px), var(--page));
    padding-block: 54px 38px;
  }

  .workflow-copy .display {
    font-size: clamp(44px, 13vw, 60px);
  }

  .workflow-copy .hero-subtitle {
    margin-top: 18px;
  }

  .workflow-story {
    margin-top: 42px;
  }

  .workflow-frame {
    padding: 5px;
    border-radius: 18px;
  }

  .workflow-frame-bar {
    height: 34px;
  }

  .workflow-screens {
    border-radius: 13px;
  }

  .outcome-grid {
    display: flex;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
  }

  .outcome-card {
    min-width: min(82vw, 320px);
    scroll-snap-align: start;
  }

  .product-gallery-viewer {
    border-width: 5px;
    border-radius: 18px;
  }

  .product-gallery-viewer > img {
    border-radius: 12px;
  }

  .product-gallery-caption {
    right: 8px;
    bottom: 8px;
    left: 8px;
    padding: 10px 12px;
  }

  .product-gallery-caption span {
    display: none;
  }

  .product-gallery-caption i {
    grid-row: 1;
  }

  .product-visual-grid {
    grid-template-columns: 1fr;
  }

  .product-visual-card,
  .product-visual-card:nth-of-type(1),
  .product-visual-card:nth-of-type(2),
  .product-visual-card:nth-of-type(3),
  .product-visual-card:nth-of-type(4),
  .product-visual-card:nth-of-type(8),
  .product-visual-card:nth-of-type(9) {
    grid-column: 1;
  }

  .image-lightbox-close {
    top: -48px;
    right: 2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .workflow-screen {
    transition: none;
  }
}

/* Standalone trial signup window (nova-firma.html) */
body.trial-window-page {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(250, 168, 15, .14), transparent 34%),
    linear-gradient(180deg, var(--blue-50) 0%, var(--white) 42%);
}

.trial-window-shell {
  width: min(100%, 520px);
  margin: 0 auto;
  padding: 28px 18px 36px;
}

.trial-window-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.trial-window-brand strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 1rem;
}

.trial-window-brand span {
  display: block;
  color: var(--muted);
  font-size: .82rem;
}

.trial-window-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-float);
  padding: 28px 24px 24px;
}

.trial-window-card .eyebrow {
  margin-bottom: 10px;
}

.trial-window-card h1 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2rem);
  line-height: 1.12;
  color: var(--navy-950);
}

.trial-window-card h1 em {
  font-style: italic;
  color: var(--navy-800);
}

.trial-window-lead {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.55;
}

.trial-window-form .form-grid {
  gap: 14px;
}

.trial-window-footer {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.trial-window-footer small {
  text-align: center;
  color: var(--soft);
}

.trial-popup-hint {
  margin-top: 18px;
  font-size: .92rem;
  color: var(--muted);
}

.trial-popup-hint a {
  color: var(--navy-800);
  font-weight: 600;
}

.button-block {
  width: 100%;
  justify-content: center;
}

@media (max-width: 860px) {
  .hero-product-carousel {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 6px;
  }

  .hero-carousel-button {
    width: 38px;
    min-height: 76px;
  }

  .product-gallery-stage {
    height: clamp(430px, 70vw, 560px);
  }

  .product-gallery-stage .product-gallery-thumb {
    width: min(72vw, 590px);
  }
}

@media (max-width: 640px) {
  .hero-product-carousel {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
  }

  .hero-carousel-button {
    width: 34px;
    min-height: 72px;
    border-radius: 12px;
    font-size: 25px;
  }

  .product-gallery-hint {
    padding-inline: 8px;
    line-height: 1.45;
  }

  .product-gallery-stage {
    height: 390px;
  }

  .product-gallery-stage .product-gallery-thumb {
    width: 84%;
    max-width: none;
    border-width: 3px;
    border-radius: 15px;
  }

  .product-gallery-stage .product-gallery-thumb > span {
    min-height: 62px;
    padding: 10px 12px;
  }

  .product-gallery-stage .product-gallery-thumb small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .product-gallery-controls {
    gap: 8px;
  }

  .product-gallery-dots {
    order: 5;
    width: 100%;
    max-width: none;
  }

  .product-gallery-open {
    max-width: calc(100% - 116px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero-product-viewport {
    aspect-ratio: 16 / 10;
  }

  .hero-dashboard-demo {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .hero-dash-sidebar {
    padding: 6px 4px;
  }

  .hero-dash-brand {
    gap: 4px;
    padding: 0 2px 5px;
    font-size: 7px;
  }

  .hero-dash-brand > span {
    width: 17px;
    height: 17px;
    font-size: 8px;
  }

  .hero-dash-nav-item {
    min-height: 19px;
    gap: 4px;
    padding: 3px 4px;
    font-size: 5px;
  }

  .hero-dash-nav-item svg {
    width: 9px;
    height: 9px;
  }

  .hero-dash-subnav {
    gap: 0;
    margin-left: 11px;
    padding-left: 4px;
    font-size: 5px;
  }

  .hero-dash-subnav > span {
    min-height: 15px;
    padding: 2px 4px;
  }

  .hero-dash-user {
    display: none;
  }

  .hero-dash-main {
    grid-template-rows: 23px minmax(0, 1fr);
  }

  .hero-dash-topbar {
    padding: 0 6px;
    font-size: 5px;
  }

  .hero-dash-topbar i {
    width: 5px;
    height: 5px;
  }

  .hero-dash-content {
    grid-template-rows: 27px minmax(0, 1fr);
    gap: 5px;
    padding: 5px;
  }

  .hero-dash-toolbar {
    padding: 0 6px;
    font-size: 5px;
  }

  .hero-dash-toolbar > div > span {
    padding: 3px;
    font-size: 4px;
  }

  .hero-dash-toolbar > div > span:nth-child(-n+2) {
    display: none;
  }

  .hero-dashboard-grid {
    display: block;
  }

  .hero-dash-widget-pulse {
    height: 100%;
  }

  .hero-dash-widget-tasks,
  .hero-dash-widget-logistics {
    display: none;
  }

  .hero-dash-widget > header {
    min-height: 23px;
    padding: 4px 6px;
    font-size: 5px;
  }

  .hero-dash-widget > header svg {
    width: 9px;
    height: 9px;
  }

  .hero-dash-widget-body {
    padding: 5px 6px;
  }

  .hero-pulse-scope,
  .hero-pulse-hint,
  .hero-pulse-kpi strong,
  .hero-pulse-kpi small {
    font-size: 4px;
  }

  .hero-pulse-hint {
    margin: 3px 0 4px;
  }

  .hero-pulse-grid {
    gap: 4px;
  }

  .hero-pulse-kpi {
    min-height: 52px;
    padding: 5px 6px;
    border-left-width: 2px;
  }

  .hero-pulse-kpi b,
  .hero-pulse-kpi.is-danger b {
    margin-top: 3px;
    font-size: 8px;
  }
}
