:root {
  /* New Color Variables */
  --industrial-navy: #052656;
  --technology-blue: #2563a6;
  --safety-orange: #ff6422;
  --enterprise-charcoal: #1f2937;
  --steel-grey: #6b7280;
  --industrial-light-grey: #f3f5f7;
  --white: #ffffff;

  /* Mapped Existing Variables */
  --ink: var(--industrial-navy);
  --muted: var(--steel-grey);
  --line: #e5e6e7;
  --paper: var(--industrial-light-grey);
  --orange: var(--safety-orange);
  --green: #0dae7d;
  --violet: #735aff;
  --black: var(--industrial-navy);
  --cream: var(--white);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 17px;
}
a {
  color: inherit;
  text-decoration: none;
}
.site-noise {
  position: fixed;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
.section-shell {
  width: min(1240px, calc(100% - 64px));
  margin: auto;
}
.site-header {
  height: 82px;
  width: min(1372px, calc(100% - 64px));
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 20;
}
.brand {
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -1.6px;
  display: flex;
  align-items: center;
}
.brand > span {
  font-family:
    DM Mono,
    monospace;
  font-size: 18px;
  letter-spacing: 0;
  background: var(--orange);
  color: #181818;
  border-radius: 8px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  margin-right: 9px;
}
.brand strong {
  color: var(--orange);
}
.site-nav {
  display: flex;
  gap: 32px;
  margin-left: 80px;
}
.site-nav a {
  font-size: 17px;
  font-weight: 600;
  color: #3f4247;
  transition: color 0.2s;
}
.site-nav a:hover {
  color: var(--orange);
}
.header-cta,
.button {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.2px;
}
.header-cta span {
  margin-left: 8px;
  color: var(--orange);
  font-size: 18px;
}
.menu-toggle {
  display: none;
}
.hero {
  padding: 85px 0 54px;
  text-align: center;
}
.eyebrow {
  font:
    600 12px/1.2 DM Mono,
    monospace;
  letter-spacing: 1.3px;
  color: #74777c;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero .eyebrow {
  justify-content: center;
}
.eyebrow i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  display: inline-block;
}
.hero h1,
.statement h2,
.section-intro h2,
.workflow h2,
.integrity h2,
.closing h2 {
  font-size: clamp(48px, 6.3vw, 88px);
  line-height: 1.05;
  letter-spacing: -2.5px;
  margin: 0;
  font-weight: 800;
}
.hero h1 em,
.statement h2 em,
.workflow h2 em,
.integrity h2 em,
.closing h2 em {
  font-family: Georgia, serif;
  font-weight: 400;
  color: var(--orange);
  letter-spacing: -1.5px;
}
.hero-copy {
  font-size: 21px;
  line-height: 1.7;
  max-width: 700px;
  margin: 27px auto 27px;
  color: #63666d;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  border-radius: 8px;
  transition:
    transform 0.2s,
    background 0.2s,
    box-shadow 0.2s;
}
.button:hover {
  transform: translateY(-3px);
}
.button-primary {
  background: var(--ink);
  color: #fff;
}
.button-primary span {
  font-size: 20px;
  color: var(--orange);
}
.button-text {
  padding-inline: 0;
}
.button-text span {
  font-size: 17px;
  color: var(--orange);
}
.hero-proof {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin: 42px 0 43px;
  font:
    600 12px DM Mono,
    monospace;
  color: #85878b;
}
.hero-proof span {
  padding-right: 28px;
  border-right: 1px solid #d8d9d8;
}
.hero-proof span:last-child {
  border: 0;
  padding: 0;
}
.hero-proof b {
  color: #25272d;
  font-weight: 500;
}
.hero-console {
  background: #f4f4f1;
  border: 1px solid #d8d9da;
  border-radius: 16px;
  padding: 8px;
  text-align: left;
  box-shadow: 0 24px 55px rgba(27, 30, 34, 0.12);
  overflow: hidden;
}
.hero-console img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.console-top {
  height: 44px;
  border: 1px solid #dcddde;
  background: #fafafa;
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 0 13px;
  gap: 20px;
}
.console-brand {
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}
.console-brand > span {
  background: var(--orange);
  display: inline-grid;
  place-items: center;
  border-radius: 4px;
  width: 18px;
  height: 18px;
  margin-right: 4px;
  font: 700 10px DM Mono;
}
.console-brand strong {
  color: var(--orange);
}
.console-search {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  color: #9a9ca0;
  padding: 6px 8px;
  font-size: 10px;
  width: 250px;
}
.console-search kbd {
  float: right;
  border: 1px solid #e3e3e3;
  border-radius: 3px;
  font: 9px DM Mono;
  padding: 1px 3px;
}
.console-user {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 9px;
  font-weight: 700;
}
.console-user > b {
  background: #c58d81;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.console-user small {
  display: block;
  color: #8a8b8d;
  font-weight: 500;
}
.console-layout {
  display: grid;
  grid-template-columns: 160px 1fr;
  min-height: 414px;
}
.console-sidebar {
  border-right: 1px solid #dcddde;
  padding: 16px 12px;
}
.console-sidebar small {
  font: 8px DM Mono;
  color: #9a9b9d;
  letter-spacing: 0.8px;
  display: block;
  margin: 8px 0;
}
.console-sidebar strong {
  font-size: 9px;
  display: block;
  margin-bottom: 18px;
}
.console-sidebar strong i {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}
.console-sidebar a {
  display: block;
  color: #6d7076;
  font-size: 9px;
  padding: 8px;
  border-radius: 4px;
  margin: 2px 0;
}
.console-sidebar a.active {
  color: var(--orange);
  background: #fff0e9;
}
.console-body {
  padding: 25px 27px;
}
.console-greeting > span {
  font-size: 9px;
  color: #9b9da0;
}
.console-greeting h2 {
  font-size: 26px;
  letter-spacing: -1.8px;
  margin: 10px 0 2px;
}
.console-greeting p {
  font-size: 10px;
  color: #898b8f;
  margin: 0 0 20px;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
}
.metric-grid article,
.console-cards article {
  background: #fafafa;
  border: 1px solid #dfdfe0;
  border-radius: 8px;
  padding: 12px;
  min-width: 0;
}
.metric-grid small {
  display: block;
  color: #6f7279;
  font-size: 9px;
}
.metric-grid b {
  font-size: 20px;
  letter-spacing: -1.4px;
  display: block;
  margin: 11px 0 9px;
}
.metric-grid em {
  font-size: 8px;
  font-style: normal;
  color: var(--green);
  font-weight: 800;
}
.metric-grid em.orange {
  color: var(--orange);
}
.metric-grid em span {
  color: #9a9ca0;
  font-weight: 400;
}
.spark {
  height: 2px;
  display: block;
  background: var(--green);
  margin-top: 10px;
  transform: skewY(-4deg);
}
.spark.orange {
  background: #ff9b76;
  transform: skewY(4deg);
}
.console-cards {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 10px;
  margin-top: 10px;
}
.production-preview b {
  font-size: 12px;
  display: block;
  margin-top: 9px;
}
.production-preview small {
  font-size: 8px;
  color: #888;
  display: block;
  margin-top: 3px;
}
.module-label {
  font: 700 8px DM Mono;
  letter-spacing: 0.8px;
  color: var(--orange);
  background: #ffe8dc;
  padding: 4px 5px;
  border-radius: 3px;
  display: inline-block;
}
.module-label.violet {
  color: var(--violet);
  background: #ebe7ff;
}
.production-preview > strong {
  font-size: 26px;
  float: right;
  margin-top: -38px;
  letter-spacing: -2px;
}
.progress {
  height: 6px;
  background: #e7e7e7;
  border-radius: 4px;
  margin: 25px 0 8px;
}
.progress i {
  height: 100%;
  width: 74%;
  background: var(--green);
  display: block;
  border-radius: 4px;
}
.production-preview footer {
  display: flex;
  justify-content: space-between;
  font-size: 7px;
  color: #8d8e91;
}
.ai-preview {
  background: #f1eeff !important;
  border-color: #ddd5ff !important;
}
.ai-preview p {
  background: #fff;
  border: 1px solid #ddd8f5;
  border-radius: 6px;
  padding: 8px;
  font-size: 8px;
  margin: 13px 0 8px;
}
.ai-preview strong {
  font-size: 8px;
  line-height: 1.5;
  display: block;
}
.ai-preview strong i {
  font-style: normal;
  color: var(--orange);
}
.ai-preview div {
  margin-top: 9px;
}
.ai-preview div b {
  font: 7px DM Mono;
  color: var(--violet);
  background: #e4deff;
  padding: 3px;
  margin-right: 3px;
  border-radius: 2px;
}
.premium-statement {
  background: radial-gradient(
    circle at top center,
    #2a2321 0%,
    var(--black) 70%
  );
  color: white;
  margin-top: 60px;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.premium-statement::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 100, 34, 0.3),
    transparent
  );
}

.premium-statement .section-shell {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 70px;
}

.statement-header {
  max-width: 800px;
}

.statement-header .eyebrow {
  display: flex;
  justify-content: center;
  color: #ff9266;
}

.statement-header h2 {
  font-size: clamp(48px, 6vw, 78px);
  margin: 24px 0;
  line-height: 1.05;
  letter-spacing: -2px;
}

.statement-header h2 em {
  color: var(--orange);
}

.statement-lead {
  font-size: 21px;
  line-height: 1.6;
  color: #a0a3a8;
  margin: 0 auto;
  max-width: 600px;
}

.statement-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  width: 100%;
}

.stat-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: left;
  transition:
    transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    background 0.4s,
    border-color 0.4s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-8px);
  border-color: rgba(255, 100, 34, 0.4);
}

.stat-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 100, 34, 0.1);
  color: var(--orange);
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
}

.stat-card h3 {
  font-size: 22px;
  margin: 0 0 14px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #ffffff;
}

.stat-card p {
  font-size: 16px;
  color: #8c8f94;
  line-height: 1.6;
  margin: 0;
}
.system {
  padding: 85px 0;
}
.section-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 45px;
}
.section-intro h2 {
  font-size: 55px;
}
.system-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.system-card {
  height: 365px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition:
    background 0.25s,
    color 0.25s;
}
.system-card:hover {
  background: #f0f0ed;
}
.system-card.dark {
  background: var(--orange);
  color: #16181d;
}
.system-card.dark:hover {
  background: #f56f31;
}
.card-number {
  font: 10px DM Mono;
  color: #8c8d90;
}
.line-icon {
  position: absolute;
  right: 28px;
  top: 23px;
  font-size: 27px;
  color: var(--orange);
}
.dark .line-icon {
  color: #1d1c1c;
}
.system-card h3 {
  font-size: 38px;
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 50px 0 12px;
}
.system-card p {
  font-size: 16px;
  color: #6b6e74;
  max-width: 320px;
  line-height: 1.65;
  margin: 0;
}
.dark p {
  color: #442313;
}
.card-link {
  font: 700 14px Inter;
  position: absolute;
  left: 28px;
  bottom: 25px;
}
.card-link b {
  color: var(--orange);
  font-size: 18px;
  margin-left: 6px;
}
.dark .card-link b {
  color: #1b1a1a;
}
.card-chart {
  position: absolute;
  bottom: 28px;
  right: 28px;
  display: flex;
  gap: 4px;
  align-items: end;
  height: 45px;
}
.card-chart i {
  width: 7px;
  background: #fbceb9;
}
.card-chart i:nth-child(1) {
  height: 13px;
}
.card-chart i:nth-child(2) {
  height: 24px;
}
.card-chart i:nth-child(3) {
  height: 19px;
}
.card-chart i:nth-child(4) {
  height: 36px;
  background: var(--orange);
}
.card-chart i:nth-child(5) {
  height: 44px;
  background: var(--orange);
}
.stock-lines {
  position: absolute;
  bottom: 34px;
  right: 28px;
  width: 123px;
}
.stock-lines i {
  display: block;
  height: 5px;
  background: #dedfdf;
  margin: 9px 0;
  position: relative;
}
.stock-lines i:before {
  content: "";
  height: 5px;
  width: 75%;
  display: block;
  background: var(--green);
}
.stock-lines i:nth-child(2):before {
  width: 29%;
  background: #f5a219;
}
.stock-lines i:nth-child(3):before {
  width: 54%;
  background: var(--green);
}
.route-line {
  position: absolute;
  right: 30px;
  bottom: 40px;
  width: 132px;
  height: 25px;
  border-bottom: 1px solid var(--orange);
}
.route-line i,
.route-line b {
  position: absolute;
  bottom: -5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
}
.route-line i {
  left: 0;
}
.route-line b:nth-child(2) {
  left: 45px;
}
.route-line b:nth-child(3) {
  left: 85px;
}
.route-line b:nth-child(4) {
  right: 0;
  background: var(--green);
}
.pulse-orbit {
  position: absolute;
  right: 35px;
  bottom: 28px;
  width: 80px;
  height: 80px;
  border: 1px solid #a84520;
  border-radius: 50%;
}
.pulse-orbit:before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid #a84520;
  border-radius: 50%;
}
.pulse-orbit i,
.pulse-orbit b {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #232020;
}
.pulse-orbit i {
  top: -4px;
  left: 35px;
}
.pulse-orbit b:nth-child(2) {
  bottom: 13px;
  left: -4px;
}
.pulse-orbit b:nth-child(3) {
  right: 0;
  top: 27px;
}
.workflow {
  background: #ececea;
  padding: 80px 0;
}

.features-grid-section {
  padding: 85px 0;
  text-align: center;
  background: var(--cream);
}
.features-grid-section h2 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -1.5px;
}
.features-grid-section .section-lead {
  font-size: 16px;
  color: #63666d;
  max-width: 840px;
  margin: 0 auto 50px;
  line-height: 1.6;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 35px 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition:
    transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.3s;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.feature-icon-wrapper {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--orange);
}
.feature-icon-wrapper svg {
  width: 36px;
  height: 36px;
}
.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--ink);
  letter-spacing: -0.3px;
}
.feature-card p {
  font-size: 14px;
  color: #73777e;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.unified-solution {
  padding: 85px 0;
  text-align: center;
}
.unified-solution h2 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 50px;
  line-height: 1.1;
  letter-spacing: -1.5px;
}
.solution-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.solution-card {
  background: #ffffff;
  border: 1px solid rgba(255, 100, 34, 0.2);
  border-radius: 12px;
  padding: 36px 20px;
  box-shadow: 0 4px 20px rgba(255, 100, 34, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.3s,
    border-color 0.3s;
}
.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(255, 100, 34, 0.12);
  border-color: rgba(255, 100, 34, 0.4);
}
.solution-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.solution-icon svg {
  width: 100%;
  height: 100%;
}
.solution-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.2px;
}

@media (max-width: 1024px) {
  .solution-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.workflow-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}
.workflow h2 {
  font-size: 60px;
}
.workflow > div > div > p:not(.eyebrow) {
  color: #696c71;
  line-height: 1.7;
  font-size: 18px;
  max-width: 420px;
  margin: 25px 0;
}
.workflow-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #d2d3d3;
}
.workflow-list li {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr 25px;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid #d2d3d3;
  transition: padding 0.2s;
}
.workflow-list li:hover {
  padding-left: 9px;
}
.workflow-list span {
  font: 700 12px DM Mono;
  color: var(--orange);
  padding-top: 4px;
}
.workflow-list small {
  font: 600 11px DM Mono;
  color: #8c8e91;
}
.workflow-list h3 {
  font-size: 22px;
  letter-spacing: -0.8px;
  margin: 5px 0;
}
.workflow-list p {
  font-size: 16px;
  color: #777a80;
  line-height: 1.55;
  margin: 0;
}
.workflow-list i {
  font-style: normal;
  color: var(--orange);
  font-size: 24px;
}
.integrity {
  padding: 85px 0;
}
.integrity-copy {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 42px;
}
.integrity h2 {
  font-size: 55px;
}
.integrity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.integrity-grid article {
  border-top: 2px solid var(--ink);
  padding-top: 17px;
}
.integrity-grid span {
  font: 700 12px DM Mono;
  color: var(--orange);
}
.integrity-grid h3 {
  font-size: 26px;
  letter-spacing: -1px;
  margin: 32px 0 12px;
}
.integrity-grid p {
  font-size: 17px;
  line-height: 1.7;
  color: #74767b;
  max-width: 320px;
}
.closing {
  border-top: 1px solid var(--line);
  padding: 92px 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.closing h2 {
  font-size: 64px;
}
.closing-button {
  background: var(--orange);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  transition: transform 0.2s;
}
.closing-button:hover {
  transform: rotate(8deg) scale(1.04);
}
.closing-button span {
  font-size: 28px;
  margin-top: 7px;
}
footer {
  border-top: 1px solid var(--line);
  width: min(1372px, calc(100% - 64px));
  margin: auto;
  height: 105px;
  display: flex;
  align-items: center;
  gap: 35px;
}
footer .brand {
  font-size: 18px;
}
footer .brand > span {
  width: 26px;
  height: 26px;
  font-size: 14px;
}
footer p,
footer small {
  font-size: 11px;
  color: #85878a;
}
footer small {
  margin-left: auto;
  font-family: DM Mono;
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}
@media (max-width: 760px) {
  .section-shell,
  .site-header,
  footer {
    width: calc(100% - 36px);
  }
  .site-header {
    height: 68px;
  }
  .menu-toggle {
    display: flex;
    background: none;
    border: 0;
    width: 30px;
    padding: 5px;
    flex-direction: column;
    gap: 5px;
  }
  .menu-toggle i {
    height: 1px;
    background: var(--ink);
    display: block;
  }
  .site-nav {
    display: none;
    position: absolute;
    top: 67px;
    left: 0;
    right: 0;
    background: var(--cream);
    margin: 0;
    border-bottom: 1px solid var(--line);
    padding: 14px 18px;
  }
  .site-nav.open {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .header-cta {
    font-size: 11px;
  }
  .hero {
    padding: 70px 0 35px;
  }
  .hero h1 {
    font-size: 49px;
    letter-spacing: -3.4px;
  }
  .hero-copy {
    font-size: 14px;
  }
  .hero-proof {
    gap: 12px;
    margin-block: 35px;
    font-size: 8px;
  }
  .hero-proof span {
    padding-right: 12px;
  }
  .hero-console {
    margin-inline: -6px;
  }
  .console-top {
    gap: 8px;
  }
  .console-search,
  .console-user span {
    display: none;
  }
  .console-layout {
    grid-template-columns: 82px 1fr;
    min-height: 360px;
  }
  .console-sidebar {
    padding: 10px 5px;
  }
  .console-sidebar strong {
    font-size: 7px;
  }
  .console-sidebar a {
    font-size: 0;
    padding: 8px;
  }
  .console-sidebar a::first-letter {
    font-size: 11px;
  }
  .console-body {
    padding: 16px 10px;
  }
  .console-greeting h2 {
    font-size: 19px;
  }
  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .metric-grid article:nth-child(3),
  .metric-grid article:nth-child(4) {
    display: none;
  }
  .console-cards {
    grid-template-columns: 1fr;
  }
  .ai-preview {
    display: none;
  }
  .statement {
    margin-top: 60px;
    padding: 75px 0;
  }
  .statement-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .statement .section-shell,
  .workflow-inner {
    grid-template-columns: 1fr;
    gap: 33px;
  }
  .statement .section-shell > p:last-child {
    margin: 25px 0 0;
  }
  .system {
    padding: 75px 0;
  }
  .section-intro {
    display: block;
  }
  .section-intro h2,
  .workflow h2,
  .integrity h2,
  .closing h2 {
    font-size: 43px;
    letter-spacing: -3px;
  }
  .system-grid {
    grid-template-columns: 1fr;
  }
  .system-card {
    height: 315px;
  }
  .workflow {
    padding: 75px 0;
  }
  .integrity {
    padding: 75px 0;
  }
  .integrity-copy {
    display: block;
    margin-bottom: 40px;
  }
  .integrity-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .integrity-grid h3 {
    margin-top: 20px;
  }
  .closing {
    padding: 65px 0;
    align-items: center;
    gap: 20px;
  }
  .closing-button {
    width: 120px;
    height: 120px;
    font-size: 10px;
    flex-shrink: 0;
  }
  .closing-button span {
    font-size: 20px;
  }
  footer {
    height: auto;
    padding: 25px 0;
    flex-wrap: wrap;
    gap: 14px;
  }
  footer p {
    width: 100%;
    margin: 0;
  }
  footer small {
    margin-left: 0;
  }
  .hero h1 em,
  .statement h2 em,
  .workflow h2 em,
  .integrity h2 em,
  .closing h2 em {
    letter-spacing: -2.5px;
  }
}

/* Feature pages */
.site-nav .current {
  color: var(--orange);
}
.feature-hero {
  min-height: 620px;
  padding: 108px 0 80px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 75px;
  align-items: center;
}
.feature-intro h1 {
  font-size: clamp(54px, 6vw, 82px);
  line-height: 1.05;
  letter-spacing: -2.5px;
  margin: 0;
}
.feature-intro h1 em {
  font-family: Georgia, serif;
  color: var(--orange);
  font-weight: 400;
  letter-spacing: -1.5px;
}
.feature-intro > p:not(.eyebrow) {
  color: #65686e;
  line-height: 1.75;
  max-width: 480px;
  font-size: 20px;
  margin: 25px 0 28px;
}
.feature-visual {
  border: 1px solid #dcdedf;
  min-height: 390px;
  padding: 22px 24px;
  position: relative;
  background: #f3f3f2;
  overflow: hidden;
}
.visual-top {
  font: 500 12px DM Mono;
  letter-spacing: 0.7px;
  color: #777a7e;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #dcdedf;
  padding-bottom: 14px;
}
.visual-top b {
  color: var(--green);
  font-weight: 500;
}
.production-visual {
  display: grid;
  grid-template-columns: 155px 1fr;
  gap: 24px;
  padding-top: 65px;
}
.production-visual .visual-top {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 21px;
}
.circle-stat {
  width: 145px;
  height: 145px;
  border-radius: 50%;
  border: 15px solid #d9e6e1;
  border-top-color: var(--green);
  border-right-color: var(--green);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.circle-stat strong {
  font-size: 44px;
  letter-spacing: -3px;
}
.circle-stat small {
  font: 13px DM Mono;
  color: #777;
}
.visual-data small,
.payment-line small {
  font: 13px DM Mono;
  color: #7d8084;
}
.visual-data h3 {
  font-size: 32px;
  letter-spacing: -2px;
  margin: 8px 0;
}
.visual-data h3 em {
  font-size: 16px;
  font-style: normal;
  color: #898b8f;
  font-weight: 500;
  letter-spacing: 0;
}
.visual-data p {
  font-size: 15px;
  color: #73767b;
}
.visual-data p i {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}
.visual-data p b {
  color: var(--green);
}
.machine-bars {
  grid-column: 1/3;
  border-top: 1px solid #dbdcdd;
  padding-top: 13px;
}
.machine-bars div,
.warehouse-row {
  display: grid;
  grid-template-columns: 110px 1fr 32px;
  align-items: center;
  gap: 10px;
  margin: 12px 0;
  font-size: 15px;
}
.machine-bars i,
.warehouse-row i {
  height: 5px;
  background: #dfdfdf;
  display: block;
}
.machine-bars i b,
.warehouse-row i b {
  height: 100%;
  display: block;
  background: var(--green);
}
.machine-bars em,
.warehouse-row em {
  font: 12px DM Mono;
  color: #777;
  font-style: normal;
  text-align: right;
}
.feature-statement {
  background: #1b1e22;
  color: #fff;
  padding: 94px 0;
}
.feature-statement .eyebrow {
  color: #9b9da0;
}
.feature-statement h2 {
  font-size: clamp(43px, 5.6vw, 72px);
  line-height: 1.05;
  letter-spacing: -2px;
  margin: 0;
}
.feature-statement h2 em {
  font: 400 1em Georgia;
  color: #ff7540;
  letter-spacing: -1.5px;
}
.orange-statement {
  background: var(--orange);
  color: #1e1d1b;
}
.orange-statement .eyebrow {
  color: #6a321c;
}
.orange-statement h2 em {
  color: #fff7ed;
}
.dark-statement {
  background: #282436;
}
.dark-statement h2 em {
  color: #9b88ff;
}
.feature-detail {
  padding: 120px 0;
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
  padding-bottom: 55px;
}
.detail-grid h2 {
  font-size: 42px;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin: 0;
  max-width: 480px;
}
.detail-grid > p {
  font-size: 19px;
  line-height: 1.8;
  color: #6d7075;
  margin: 45px 0 0;
  max-width: 480px;
}
.timeline-card,
.table-demo,
.order-board,
.insight-grid {
  border: 1px solid #dedfdf;
  background: #f6f6f4;
}
.timeline-card > div,
.table-demo header,
.order-head {
  height: 60px;
  border-bottom: 1px solid #dedfdf;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 17px;
}
.timeline-card > div span,
.table-demo header span,
.order-head span {
  font: 13px DM Mono;
  color: #797c80;
}
.timeline-card > div b,
.table-demo header b,
.order-head strong {
  font-size: 16px;
}
.timeline-card > div em,
.order-head em {
  margin-left: auto;
  font: 13px DM Mono;
  color: var(--green);
  font-style: normal;
}
.timeline-card ol {
  list-style: none;
  margin: 0;
  padding: 10px 22px;
}
.timeline-card li {
  height: 55px;
  display: grid;
  grid-template-columns: 1fr 140px;
  align-items: center;
  border-left: 1px solid #cbd1cf;
  margin-left: 8px;
  padding-left: 18px;
  font-size: 15px;
  position: relative;
}
.timeline-card li i {
  width: 8px;
  height: 8px;
  position: absolute;
  left: -4px;
  background: #c4c7c5;
  border-radius: 50%;
}
.timeline-card li.active i {
  background: var(--green);
  box-shadow: 0 0 0 5px #cce4db;
}
.timeline-card li b {
  font: 13px DM Mono;
  color: #777;
  font-weight: 400;
}
.capability-band {
  background: #f0f0ed;
  border-top: 1px solid #dedfdf;
  border-bottom: 1px solid #dedfdf;
}
.capability-band .section-shell {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.capability-card {
  min-height: 280px;
  padding: 34px 35px;
  border-right: 1px solid #d6d7d6;
}
.capability-card:first-child {
  border-left: 1px solid #d6d7d6;
}
.capability-card span {
  font: 10px DM Mono;
  color: var(--orange);
}
.capability-card h3 {
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -1px;
  max-width: 250px;
  margin: 48px 0 16px;
}
.capability-card p {
  font-size: 17px;
  color: #75777c;
  line-height: 1.75;
  max-width: 320px;
  margin: 0;
}
.dark-band {
  background: #1b1e22;
  color: #fff;
  border: 0;
}
.dark-band .capability-card {
  border-color: #393c40;
}
.dark-band .capability-card p {
  color: #a6a9ac;
}
.feature-cta {
  min-height: 400px;
  padding: 100px 0;
  position: relative;
}
.feature-cta h2 {
  font-size: clamp(47px, 5.7vw, 72px);
  line-height: 1.05;
  letter-spacing: -2.5px;
  margin: 0;
}
.feature-cta h2 em {
  font-family: Georgia, serif;
  color: var(--orange);
  font-weight: 400;
  letter-spacing: -1.5px;
}
.feature-cta .closing-button {
  position: absolute;
  right: 10%;
  top: 112px;
}
.inventory-visual h3,
.fulfilment-visual h3 {
  font-size: 22px;
  letter-spacing: -1.5px;
  margin: 38px 0 25px;
}
.warehouse-row {
  grid-template-columns: 125px 1fr 32px;
  margin: 18px 0;
}
.warehouse-row.warning i b {
  background: #f5a219;
}
.reorder-alert {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 21px;
  padding: 13px;
  border: 1px solid #efd5c3;
  background: #fff4eb;
  display: flex;
  align-items: center;
  gap: 11px;
}
.reorder-alert > i {
  font-style: normal;
  background: var(--orange);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  font-size: 11px;
}
.reorder-alert span {
  display: grid;
  gap: 2px;
}
.reorder-alert b {
  font-size: 10px;
}
.reorder-alert small {
  font-size: 9px;
  color: #888;
}
.reorder-alert > em {
  font-style: normal;
  margin-left: auto;
  color: var(--orange);
}
.table-demo header b {
  margin-left: auto;
}
.table-row {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1fr 0.8fr;
  gap: 9px;
  padding: 15px 20px;
  border-bottom: 1px solid #e0e1e0;
  align-items: center;
  font-size: 10px;
}
.table-row.labels {
  font: 9px DM Mono;
  color: #85878a;
}
.table-row strong {
  font-size: 11px;
}
.table-row em {
  font: 9px DM Mono;
  font-style: normal;
  padding: 4px 6px;
  border-radius: 3px;
  justify-self: start;
}
.table-row .good {
  background: #dff5ec;
  color: #159a70;
}
.table-row .risk {
  background: #fff0dd;
  color: #e98224;
}
.fulfilment-visual {
  padding-top: 24px;
}
.shipment-line {
  height: 1px;
  background: #c7cbc9;
  position: relative;
  margin: 51px 20px 22px;
}
.shipment-line i,
.shipment-line b {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  top: -5px;
  background: #c7cbc9;
}
.shipment-line i {
  left: 0;
  background: var(--green);
}
.shipment-line b:nth-child(2) {
  left: 45%;
  background: var(--orange);
  box-shadow: 0 0 0 5px #fde0d1;
}
.shipment-line b:nth-child(3) {
  left: 76%;
}
.shipment-line b:nth-child(4) {
  right: 0;
}
.shipment-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  font-size: 15px;
  gap: 7px;
}
.shipment-steps span {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.shipment-steps b {
  color: var(--green);
}
.shipment-steps span:nth-child(2) b {
  color: var(--orange);
}
.shipment-steps small {
  font-size: 13px;
  color: #85878a;
  line-height: 1.4;
}
.payment-line {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  border-top: 1px solid #dcdedf;
  padding-top: 12px;
  display: flex;
  gap: 13px;
  align-items: center;
}
.payment-line b {
  font-size: 20px;
}
.payment-line em {
  font: 13px DM Mono;
  color: var(--green);
  font-style: normal;
  margin-left: auto;
}
.order-head em {
  background: #fff0df;
  color: #e77721;
  padding: 5px 7px;
}
.order-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 22px;
  gap: 20px;
}
.order-columns > div {
  border-right: 1px solid #dedfdf;
}
.order-columns > div:last-child {
  border: 0;
}
.order-columns small {
  font: 13px DM Mono;
  color: #85878a;
  display: block;
}
.order-columns b {
  font-size: 17px;
  display: block;
  margin: 9px 0 2px;
}
.order-columns p {
  font-size: 14px;
  color: #777;
  margin: 0;
}
.order-board footer {
  background: #fff4eb;
  padding: 13px 20px;
  font-size: 14px;
  color: #595b5d;
}
.order-board footer i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  margin-right: 8px;
}
.order-board footer b {
  color: var(--orange);
}
.ai-visual {
  background: #f0edff;
  border-color: #dcd5ff;
}
.ai-visual .visual-top {
  border-color: #dad3fa;
}
.ai-visual .visual-top span {
  color: var(--violet);
}
.ai-question {
  background: #fff;
  border: 1px solid #d8d3ef;
  padding: 13px;
  border-radius: 6px;
  font-size: 12px;
  margin: 31px 0 14px;
}
.ai-response {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 8px;
}
.ai-response > i {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: #ded6ff;
  color: var(--violet);
  display: grid;
  place-items: center;
  font-size: 10px;
  font-style: normal;
}
.ai-response p {
  font-size: 11px;
  line-height: 1.65;
  margin: 0;
}
.ai-response p strong {
  color: var(--orange);
}
.ai-response div {
  grid-column: 2;
}
.ai-response b {
  font: 8px DM Mono;
  color: var(--violet);
  background: #e0d9ff;
  padding: 4px 5px;
  margin-right: 4px;
}
.ai-actions {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  border-top: 1px solid #d8d3ef;
  padding-top: 13px;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  color: var(--violet);
}
.insight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.insight-grid article {
  padding: 21px;
  border-right: 1px solid #dedfdf;
}
.insight-grid article:last-child {
  border: 0;
}
.insight-grid small {
  font: 9px DM Mono;
  color: #898b8e;
}
.insight-grid strong {
  font-size: 32px;
  letter-spacing: -2.5px;
  display: block;
  margin: 25px 0 7px;
}
.insight-grid strong em {
  font-size: 15px;
  font-style: normal;
}
.insight-grid p {
  font-size: 9px;
  color: #777;
  margin: 0;
}
.insight-grid p i {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--green);
  border-radius: 50%;
}
.orange-text {
  color: var(--orange) !important;
}

/* Xonier AI */
.ai-nav-link {
  color: #765cf4 !important;
}
.xonier-spotlight {
  padding: 125px 0;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 95px;
  align-items: center;
}
.xonier-copy h2,
.agent-demo-heading h2,
.agent-loop h2,
.usecase-title h2 {
  font-size: clamp(42px, 4.6vw, 63px);
  letter-spacing: -2px;
  line-height: 1.05;
  margin: 0;
}
.xonier-copy h2 em,
.agent-demo-heading h2 em,
.agent-loop h2 em,
.usecase-title h2 em,
.xonier-hero h1 em {
  font-family: Georgia, serif;
  color: var(--orange);
  font-weight: 400;
  letter-spacing: -1.5px;
}
.xonier-copy > p:not(.eyebrow) {
  font-size: 19px;
  line-height: 1.75;
  color: #696b70;
  max-width: 500px;
  margin: 22px 0;
}
.agent-points {
  margin: 28px 0;
}
.agent-points span {
  display: block;
  font-size: 19px;
  font-weight: 500;
  margin: 18px 0;
  color: #374151;
}
.agent-points i {
  font: 700 16px DM Mono;
  color: var(--orange);
  font-style: normal;
  margin-right: 18px;
  background: #fff4ed;
  padding: 6px 8px;
  border-radius: 6px;
}
/* Premium Chatbot UI */
.chat-ui {
  background: #ffffff;
  border: 1px solid #e2e4e9;
  border-radius: 16px;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
  padding: 0;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: #fafafc;
  border-bottom: 1px solid #eff0f3;
}

.chat-title-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-ai-avatar {
  background: linear-gradient(135deg, var(--orange), #e04d0f);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: grid;
  place-items: center;
}

.chat-title-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #1a1b1f;
  letter-spacing: -0.5px;
}

.chat-title-text small {
  display: block;
  font-size: 11px;
  color: #169872;
  font-weight: 600;
}

.chat-body {
  flex: 1;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.chat-message {
  display: flex;
  gap: 12px;
  max-width: 90%;
}

.user-message {
  align-self: flex-end;
  justify-content: flex-end;
}

.ai-message {
  align-self: flex-start;
}

.message-bubble {
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.55;
}

.user-bubble {
  background: #1a1b1f;
  color: #ffffff;
  border-bottom-right-radius: 4px;
}

.user-bubble p {
  margin: 0;
}

.user-bubble p::after {
  content: "|";
  color: #ffffff;
  animation: blink 1s step-end infinite;
  margin-left: 2px;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.ai-typing-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 0;
}

.ai-typing-indicator span {
  display: block;
  width: 6px;
  height: 6px;
  background: #a3a8b2;
  border-radius: 50%;
  animation: typing-jump 1.4s infinite ease-in-out both;
}

.ai-typing-indicator span:nth-child(1) {
  animation-delay: -0.32s;
}
.ai-typing-indicator span:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes typing-jump {
  0%,
  80%,
  100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}

.chat-ai-avatar-small {
  background: #fff4ed;
  color: var(--orange);
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.ai-bubble {
  background: #f8f9fa;
  border: 1px solid #e5e7eb;
  color: #374151;
  border-top-left-radius: 4px;
}

.ai-bubble strong {
  display: block;
  font-size: 15px;
  color: var(--orange);
  margin-bottom: 6px;
}

.ai-bubble p {
  margin: 0 0 12px;
  color: #4b5563;
}

.ai-context {
  margin-bottom: 16px;
}

.ai-context b {
  font: 10px DM Mono;
  color: #c94005;
  background: #ffe8db;
  padding: 4px 6px;
  border-radius: 4px;
  margin-right: 6px;
}

.agent-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  border-top: 1px solid #e5e7eb;
  padding-top: 16px;
}

.agent-actions span {
  grid-column: 1/3;
  font: 10px DM Mono;
  color: #6b7280;
}

.agent-actions button {
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 8px 10px;
  font: 600 11px Manrope;
  color: #4b5563;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s;
}

.agent-actions button:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
}

.agent-actions button b {
  float: right;
}

.chat-footer {
  padding: 12px 20px;
  background: #fcfcfc;
  border-top: 1px solid #eff0f3;
  font: 11px DM Mono;
  color: #9ca3af;
  display: flex;
  align-items: center;
}

.chat-footer i {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  margin-right: 8px;
}
.xonier-hero {
  min-height: 670px;
  padding: 116px 0 95px;
  position: relative;
}
.xonier-hero h1 {
  font-size: clamp(58px, 7vw, 94px);
  letter-spacing: -6px;
  line-height: 0.91;
  margin: 0;
  position: relative;
  z-index: 2;
}
.xonier-hero-copy {
  max-width: 500px;
  font-size: 16px;
  line-height: 1.75;
  color: #666875;
  margin: 28px 0;
}
.agent-orb {
  position: absolute;
  width: 330px;
  height: 330px;
  border: 1px solid #d8d0ff;
  border-radius: 50%;
  right: 12%;
  top: 130px;
  display: grid;
  place-items: center;
  color: #765cf4;
  font-size: 44px;
}
.agent-orb:before,
.agent-orb:after {
  content: "";
  position: absolute;
  border: 1px solid #dfd8ff;
  border-radius: 50%;
}
.agent-orb:before {
  inset: 40px;
}
.agent-orb:after {
  inset: 91px;
}
.agent-orb span {
  position: relative;
  z-index: 2;
}
.agent-orb i {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #765cf4;
}
.agent-orb i:nth-child(2) {
  top: 20px;
  left: 100px;
}
.agent-orb i:nth-child(3) {
  bottom: 57px;
  right: 17px;
  background: #ff6422;
}
.agent-orb i:nth-child(4) {
  bottom: 34px;
  left: 75px;
  background: #0dae7d;
}
.agent-demo {
  background: #201d2c;
  color: #fff;
  padding: 110px 0;
}
.agent-demo .section-shell {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: center;
}
.agent-demo .eyebrow {
  color: #aaa3c7;
}
.agent-demo-heading p:not(.eyebrow) {
  color: #aaa7b4;
  font-size: 14px;
  line-height: 1.75;
}
.agent-demo-window {
  background: #f1eeff;
  color: #20212a;
  padding: 20px;
  border: 1px solid #443c64;
}
.agent-demo-window header small {
  color: #77718f;
}
.agent-demo-window header small b {
  color: #13a97c;
}
.agent-feed {
  padding: 24px 0;
}
.agent-message.user {
  max-width: 82%;
  margin-left: auto;
  background: #fff;
  border: 1px solid #ddd7ef;
  padding: 12px;
  font-size: 12px;
}
.agent-message.xonier {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 9px;
  margin-top: 19px;
  font-size: 12px;
  line-height: 1.65;
}
.agent-message.xonier > i {
  font-style: normal;
  color: #765cf4;
}
.agent-message.xonier strong {
  color: var(--orange);
}
.agent-message.xonier p {
  margin: 5px 0 11px;
}
.agent-command {
  margin-top: 18px;
  background: #e6e1ff;
  padding: 10px;
}
.agent-command span {
  display: block;
  font: 9px DM Mono;
  color: #7767ca;
  margin-bottom: 7px;
}
.agent-command button {
  width: 100%;
  background: #fff;
  border: 1px solid #ddd7ef;
  padding: 8px 12px;
  border-radius: 4px;
  font-family: inherit;
  font-size: 11px;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s;
}
.agent-command button:hover {
  background: #faf8ff;
  border-color: #b9aeff;
}
.agent-message.ghost {
  opacity: 0.45;
  margin-top: 20px;
}
.agent-demo-window > footer {
  height: auto;
  width: auto;
  border: 1px solid #ddd7ef;
  background: #fff;
  padding: 11px;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: #85818f;
}
.agent-demo-window > footer b {
  background: #765cf4;
  color: #fff;
  border-radius: 4px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  margin-top: -3px;
}
.agent-loop {
  padding: 130px 0;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 95px;
}
.loop-steps article {
  border-top: 1px solid var(--line);
  padding: 19px 0;
  display: grid;
  grid-template-columns: 50px 1fr 1fr;
  gap: 18px;
}
.loop-steps span,
.usecase-grid article > span {
  font: 10px DM Mono;
  color: #765cf4;
}
.loop-steps h3 {
  font-size: 21px;
  letter-spacing: -1px;
  margin: 0;
}
.loop-steps p {
  font-size: 12px;
  line-height: 1.75;
  color: #6e7177;
  margin: 0;
}
.ai-usecases {
  background: #f0eff4;
  padding: 110px 0;
}
.ai-usecases .section-shell {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}
.usecase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #d8d7dc;
  border-left: 1px solid #d8d7dc;
}
.usecase-grid article {
  min-height: 230px;
  padding: 24px;
  border-bottom: 1px solid #d8d7dc;
  border-right: 1px solid #d8d7dc;
}
.usecase-grid h3 {
  font-size: 20px;
  letter-spacing: -1px;
  margin: 41px 0 9px;
}
.usecase-grid p {
  font-size: 12px;
  line-height: 1.65;
  color: #6f7177;
  margin: 0;
}
.usecase-grid em {
  font: 9px DM Mono;
  color: #765cf4;
  display: block;
  margin-top: 14px;
  font-style: normal;
}
@media (max-width: 760px) {
  .feature-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 70px 0;
    gap: 45px;
  }
  .feature-intro h1 {
    font-size: 51px;
    letter-spacing: -3.5px;
  }
  .feature-intro h1 em {
    letter-spacing: -2.5px;
  }
  .feature-visual {
    min-height: 355px;
    padding: 18px;
  }
  .production-visual {
    grid-template-columns: 120px 1fr;
    padding-top: 58px;
  }
  .production-visual .visual-top {
    left: 18px;
    right: 18px;
  }
  .circle-stat {
    width: 115px;
    height: 115px;
    border-width: 12px;
  }
  .circle-stat strong {
    font-size: 30px;
  }
  .machine-bars {
    grid-column: 1/3;
  }
  .feature-statement {
    padding: 70px 0;
  }
  .feature-statement h2 {
    letter-spacing: -3px;
  }
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 4px;
    padding-bottom: 35px;
  }
  .detail-grid h2 {
    font-size: 33px;
  }
  .detail-grid > p {
    margin-top: 18px;
  }
  .feature-detail {
    padding: 75px 0;
  }
  .timeline-card li {
    grid-template-columns: 1fr 86px;
    font-size: 9px;
  }
  .capability-band .section-shell {
    grid-template-columns: 1fr;
  }
  .capability-card,
  .capability-card:first-child {
    min-height: 0;
    padding: 28px 20px;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid #d6d7d6;
  }
  .capability-card h3 {
    margin: 22px 0 8px;
  }
  .feature-cta {
    min-height: 300px;
    padding: 70px 0;
  }
  .feature-cta .closing-button {
    top: 95px;
    right: 0;
  }
  .warehouse-row {
    grid-template-columns: 104px 1fr 25px;
  }
  .table-row {
    grid-template-columns: 1.3fr 1fr 0.9fr;
    gap: 5px;
    padding: 13px 10px;
  }
  .table-row > *:nth-child(2),
  .table-row > *:nth-child(4) {
    display: none;
  }
  .shipment-steps {
    font-size: 8px;
  }
  .shipment-steps small {
    font-size: 7px;
  }
  .order-columns {
    padding: 17px 12px;
    gap: 8px;
  }
  .order-columns b {
    font-size: 11px;
  }
  .order-columns p {
    font-size: 8px;
  }
  .insight-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .insight-grid article:nth-child(2) {
    border-right: 0;
  }
  .insight-grid article {
    border-bottom: 1px solid #dedfdf;
  }
  .insight-grid strong {
    margin: 17px 0 7px;
  }
  .feature-intro h1 em,
  .feature-statement h2 em,
  .feature-cta h2 em {
    letter-spacing: -2px;
  }
}

@media (max-width: 760px) {
  .xonier-spotlight {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 78px 0;
  }
  .xonier-copy h2,
  .agent-demo-heading h2,
  .agent-loop h2,
  .usecase-title h2 {
    letter-spacing: -3px;
    font-size: 43px;
  }
  .xonier-console {
    min-height: 0;
    padding: 16px;
  }
  .agent-actions {
    grid-template-columns: 1fr;
  }
  .agent-actions span {
    grid-column: auto;
  }
  .xonier-hero {
    min-height: 590px;
    padding: 82px 0 65px;
  }
  .xonier-hero h1 {
    font-size: 57px;
    letter-spacing: -4px;
  }
  .xonier-hero h1 em {
    letter-spacing: -2px;
  }
  .xonier-hero-copy {
    font-size: 14px;
    max-width: 365px;
  }
  .agent-orb {
    width: 180px;
    height: 180px;
    top: 292px;
    right: 4%;
    opacity: 0.72;
  }
  .agent-orb:before {
    inset: 25px;
  }
  .agent-orb:after {
    inset: 50px;
  }
  .agent-orb i:nth-child(2) {
    top: 9px;
    left: 55px;
  }
  .agent-orb i:nth-child(3) {
    bottom: 27px;
    right: 8px;
  }
  .agent-orb i:nth-child(4) {
    bottom: 16px;
    left: 40px;
  }
  .agent-demo {
    padding: 74px 0;
  }
  .agent-demo .section-shell,
  .agent-loop,
  .ai-usecases .section-shell {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .agent-demo-window {
    padding: 14px;
  }
  .agent-loop {
    padding: 75px 0;
  }
  .loop-steps article {
    grid-template-columns: 32px 1fr;
    gap: 9px;
  }
  .loop-steps article p {
    grid-column: 2;
  }
  .ai-usecases {
    padding: 75px 0;
  }
  .usecase-grid {
    grid-template-columns: 1fr;
  }
  .usecase-grid article {
    min-height: 0;
    padding: 22px;
  }
  .usecase-grid h3 {
    margin: 22px 0 8px;
  }
}
/* --- Intelligent ERP Section --- */
.intelligent-erp {
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.why-choose-header {
  max-width: 700px;
}
.why-choose-header h2 {
  font-size: 44px;
  line-height: 1.1;
  margin-top: 16px;
  margin-bottom: 24px;
}
.why-choose-header h2 span {
  color: var(--orange);
}
.why-choose-header p {
  font-size: 19px;
  color: var(--muted);
  line-height: 1.6;
}

.benefits-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.benefit-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
  border-color: rgba(37, 99, 166, 0.2);
}
.benefit-card .b-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--technology-blue, #2563a6);
  margin-bottom: 24px;
  transition: all 0.3s ease;
}
.benefit-card:hover .b-icon {
  background: rgba(37, 99, 166, 0.1);
  transform: scale(1.05);
}
.benefit-card .b-icon.orange {
  color: var(--orange);
}
.benefit-card:hover .b-icon.orange {
  background: rgba(255, 100, 34, 0.1);
}
.benefit-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--ink);
}
.benefit-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.modules-section {
  padding-top: 80px;
  border-top: 1px solid var(--line);
}
.modules-header {
  margin-bottom: 56px;
}
.modules-header h2 {
  font-size: 38px;
  margin-bottom: 16px;
}
.modules-header h2 span {
  color: var(--orange);
}
.modules-header p {
  font-size: 18px;
  color: var(--muted);
}

.modules-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
}
.modules-grid-wrapper {
  display: flex;
  flex-direction: column;
}
.modules-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.module-item {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--ink);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.015);
  min-height: 140px;
}
.module-item:hover {
  border-color: var(--technology-blue, #2563a6);
  background: #f8fafc;
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04);
}
.module-item .m-icon {
  color: var(--industrial-navy, var(--ink));
  transition: transform 0.2s;
}
.module-item:hover .m-icon {
  transform: scale(1.1);
}
.module-item span {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}
.view-all-wrapper {
  margin-top: 40px;
  text-align: left;
}
.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  transition: all 0.2s;
  background: var(--cream);
}
.view-all-btn:hover {
  border-color: var(--ink);
  background: var(--paper);
}

.ai-feature-card {
  background: var(--ink);
  border-radius: 20px;
  padding: 48px;
  color: var(--cream);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    0 20px 40px rgba(0, 0, 0, 0.2);
}
.ai-badge {
  background: rgba(255, 255, 255, 0.1);
  color: var(--cream);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  display: inline-block;
  width: fit-content;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.ai-feature-card h3 {
  font-size: 32px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  color: var(--cream);
}
.ai-feature-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
  max-width: 90%;
}
.ai-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 2;
  margin-bottom: 48px;
}
.ai-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}
.ai-list li svg {
  width: 18px;
  height: 18px;
  color: var(--cream);
  opacity: 0.9;
}
.ai-card-footer {
  margin-top: auto;
  font-size: 15px;
  font-weight: 600;
  color: var(--orange);
  position: relative;
  z-index: 2;
}
.ai-brain-img {
  position: absolute;
  right: -80px;
  bottom: -40px;
  width: 380px;
  height: auto;
  z-index: 1;
  opacity: 0.8;
  pointer-events: none;
}
.ai-brain-img img {
  width: 100%;
  height: auto;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 20px rgba(37, 99, 166, 0.4));
  animation: pulse-glow 4s infinite alternate ease-in-out;
}
@keyframes pulse-glow {
  0% {
    filter: drop-shadow(0 0 10px rgba(37, 99, 166, 0.2)) brightness(1);
  }
  100% {
    filter: drop-shadow(0 0 35px rgba(37, 99, 166, 0.7)) brightness(1.2);
  }
}

@media (max-width: 1200px) {
  .benefits-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .modules-layout {
    grid-template-columns: 1fr;
  }
  .modules-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .ai-feature-card {
    min-height: 400px;
  }
}
@media (max-width: 768px) {
  .benefits-row {
    grid-template-columns: 1fr;
  }
  .modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ai-brain-img {
    right: -100px;
    bottom: -60px;
  }
}

/* --- Brand Logo Image --- */
.brand-logo {
  height: 60px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* --- Professional Site Footer --- */
footer.site-footer {
  background-color: var(--industrial-light-grey);
  color: var(--ink);
  padding: 80px 0 40px;
  border-top: 1px solid var(--line);
  width: 100%;
  max-width: 100%;
  margin: 80px 0 0 0;
  display: block;
  height: auto;
}

.site-footer .footer-container {
  /* Using section-shell handles the max-width and margin auto */
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e2e8f0;
  color: var(--ink);
  transition: all 0.2s ease;
}

.social-links a:hover {
  background: var(--technology-blue);
  color: var(--white);
  transform: translateY(-2px);
}

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

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

.footer-column h4 {
  color: var(--industrial-navy);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-column a {
  color: var(--muted);
  font-size: 15px;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid #e2e8f0;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom .copyright {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

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

.footer-legal a {
  color: var(--muted);
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--technology-blue);
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 48px;
  }
  .footer-links {
    gap: 40px;
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
