: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;
}

.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(4, 1fr);
  gap: 48px;
}

.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-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;
}

.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-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
  margin-top: 10px;
}

.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-rail,
.hero-scroll.is-animated .hero-scroll-cue {
  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-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);
  }
}

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

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

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

  .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(4, 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(4, 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 (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;
  }
}

/* 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;
}
