:root {
  --ink: #07100c;
  --ink-soft: #122119;
  --surface: #f2f4ed;
  --surface-2: #e8ebe1;
  --paper: #fbfcf8;
  --muted: #68736c;
  --line: rgba(8, 25, 16, .13);
  --line-dark: rgba(255, 255, 255, .13);
  --accent: #b7f45b;
  --accent-strong: #9ee53b;
  --mint: #63e7c1;
  --white: #fff;
  --danger: #ff6f61;
  --radius: 24px;
  --radius-sm: 14px;
  --shadow: 0 30px 80px rgba(2, 17, 9, .16);
  --container: 1240px;
  --header: 82px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 20px);
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

::selection {
  color: var(--ink);
  background: var(--accent);
}

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

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

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

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

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

h1,
h2,
h3 {
  line-height: 1.04;
  letter-spacing: -.045em;
  text-wrap: balance;
}

h1 em,
h2 em {
  color: var(--accent-strong);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.055em;
}

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

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

.hero-layout > *,
.section-head > *,
.implementation-banner > * {
  min-width: 0;
}

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

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--accent);
  border-radius: 10px;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, .68);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .17em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 1px;
  background: var(--accent);
}

.eyebrow-dark {
  color: #5f6962;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 54px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1;
  transition: transform .25s var(--ease), background .25s ease, color .25s ease, border-color .25s ease;
}

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

.button-primary {
  color: var(--ink);
  background: var(--accent);
  box-shadow: 0 14px 35px rgba(183, 244, 91, .16);
}

.button-primary:hover {
  background: #cbff7d;
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .045);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, .52);
  background: rgba(255, 255, 255, .08);
}

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

.button-dark:hover {
  background: #193022;
}

.button-large {
  min-height: 64px;
  padding-inline: 30px;
  font-size: 14px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  padding-bottom: 8px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .36);
  font-size: 13px;
  font-weight: 800;
}

.text-link-dark {
  color: var(--ink);
  border-color: rgba(7, 16, 12, .32);
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.js .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: .12s;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header);
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}

.site-header.scrolled {
  border-color: rgba(255, 255, 255, .09);
  background: rgba(6, 17, 11, .88);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 38px;
  height: 38px;
  color: var(--accent);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 18px;
  letter-spacing: -.04em;
}

.brand-copy small {
  margin-top: 5px;
  color: rgba(255, 255, 255, .48);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.primary-nav a {
  position: relative;
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
  font-weight: 700;
  transition: color .2s ease;
}

.primary-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform .25s var(--ease);
  transform-origin: right;
}

.primary-nav > a:hover,
.primary-nav > a.active {
  color: var(--white);
}

.primary-nav > a:hover::after,
.primary-nav > a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.primary-nav .nav-cta {
  min-height: 42px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  background: var(--accent);
  border-radius: 999px;
}

.primary-nav .nav-cta:hover,
.primary-nav .nav-cta.active {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  background: transparent;
}

.nav-toggle > span:not(.sr-only) {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 1px;
  background: var(--white);
  transition: transform .25s ease, top .25s ease;
}

.nav-toggle > span:nth-child(2) { top: 18px; }
.nav-toggle > span:nth-child(3) { top: 26px; }
.nav-toggle[aria-expanded="true"] > span:nth-child(2) { top: 22px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] > span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 155px 0 45px;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 9%, rgba(45, 112, 74, .35), transparent 26%),
    linear-gradient(145deg, #06100a 0%, #09170f 50%, #07100c 100%);
  overflow: hidden;
}

.hero-grid,
.contact-grid {
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 78px 78px;
  -webkit-mask-image: linear-gradient(to bottom, #000 5%, transparent 85%);
  mask-image: linear-gradient(to bottom, #000 5%, transparent 85%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.hero-orb-one {
  top: 9%;
  right: -11%;
  width: 44vw;
  aspect-ratio: 1;
  border: 1px solid rgba(183, 244, 91, .18);
  box-shadow: inset 0 0 130px rgba(183, 244, 91, .05);
}

.hero-orb-two {
  bottom: 2%;
  left: -19%;
  width: 38vw;
  aspect-ratio: 1;
  border: 1px solid rgba(99, 231, 193, .1);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(580px, 1.1fr);
  gap: clamp(35px, 6vw, 90px);
  align-items: center;
}

.hero-copy {
  padding-bottom: 32px;
}

.hero h1 {
  margin-bottom: 28px;
  font-size: clamp(54px, 5.65vw, 88px);
  font-weight: 730;
  line-height: .97;
}

.hero h1 em {
  display: inline-block;
  margin-left: .05em;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, .68);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
  color: rgba(255, 255, 255, .55);
  font-size: 11px;
  font-weight: 700;
}

.hero-proof li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-proof span {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  color: var(--ink);
  background: var(--accent);
  border-radius: 50%;
  font-size: 9px;
}

.hero-visual {
  position: relative;
  min-width: 0;
  perspective: 1500px;
}

.visual-glow {
  position: absolute;
  z-index: -1;
  inset: 15% 10% 4%;
  background: rgba(124, 232, 130, .14);
  filter: blur(70px);
}

.app-window {
  position: relative;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 19px;
  background: #101c15;
  box-shadow: 0 40px 120px rgba(0, 0, 0, .42);
  overflow: hidden;
  transform: rotateY(-4deg) rotateX(1deg);
}

.app-topbar {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  align-items: center;
  min-height: 51px;
  padding: 0 17px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.025);
}

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

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

.app-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.62);
  font-size: 9px;
  font-weight: 700;
}

.status-dot,
.secure-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(183,244,91,.09);
}

.app-live {
  padding: 5px 8px;
  color: var(--accent);
  border: 1px solid rgba(183,244,91,.22);
  border-radius: 5px;
  background: rgba(183,244,91,.06);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .15em;
}

.app-body {
  display: grid;
  grid-template-columns: 55px 1fr;
  min-height: 450px;
}

.app-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding-top: 16px;
  border-right: 1px solid rgba(255,255,255,.07);
  background: rgba(0,0,0,.13);
}

.mini-brand {
  display: grid;
  width: 27px;
  height: 27px;
  margin-bottom: 9px;
  place-items: center;
  color: var(--ink);
  background: var(--accent);
  border-radius: 8px;
  font-size: 8px;
  font-weight: 950;
}

.app-sidebar i {
  width: 14px;
  height: 14px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 4px;
}

.app-sidebar i.active {
  border-color: var(--accent);
  background: rgba(183,244,91,.15);
  box-shadow: 0 0 0 7px rgba(183,244,91,.055);
}

.app-content {
  min-width: 0;
  padding: 22px;
}

.app-heading,
.chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-heading div,
.chart-head div {
  display: grid;
}

.app-heading small,
.chart-head small {
  color: rgba(255,255,255,.62);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .15em;
}

.app-heading strong {
  margin-top: 3px;
  font-size: 15px;
  letter-spacing: -.025em;
}

.app-heading button,
.view-title button {
  padding: 8px 11px;
  color: var(--ink);
  border: 0;
  border-radius: 6px;
  background: var(--accent);
  font-size: 8px;
  font-weight: 850;
}

.status-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.status-card {
  display: grid;
  padding: 13px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  background: rgba(255,255,255,.035);
}

.card-icon {
  display: grid;
  width: 25px;
  height: 25px;
  margin-bottom: 11px;
  place-items: center;
  border-radius: 7px;
  font-size: 10px;
  font-style: normal;
}

.products-icon { color: var(--accent); background: rgba(183,244,91,.1); }
.stock-icon { color: var(--mint); background: rgba(99,231,193,.1); }
.orders-icon { color: #9bbcff; background: rgba(99,130,255,.1); }

.status-card small {
  color: rgba(255,255,255,.62);
  font-size: 7px;
}

.status-card strong {
  margin: 2px 0 7px;
  overflow: hidden;
  font-size: 13px;
  letter-spacing: -.02em;
  text-overflow: ellipsis;
}

.status-card em {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,.62);
  font-size: 6px;
  font-style: normal;
  white-space: nowrap;
}

.status-card em i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

.sync-chart {
  padding: 14px 15px 10px;
  margin-top: 10px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  background: rgba(255,255,255,.025);
}

.chart-head strong {
  margin-top: 2px;
  font-size: 10px;
}

.chart-head > span {
  color: var(--accent);
  font-size: 7px;
  font-weight: 800;
}

.sync-chart svg {
  width: 100%;
  height: 100px;
  margin-top: 5px;
  overflow: visible;
}

.chart-grid-line {
  fill: none;
  stroke: rgba(255,255,255,.06);
  stroke-width: 1;
}

.chart-fill { fill: url(#chartFill); }
.chart-line { fill: none; stroke: var(--accent); stroke-linecap: round; stroke-width: 2; }
.sync-chart circle { fill: var(--accent); stroke: #142019; stroke-width: 4; }

.chart-labels {
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,.58);
  font-size: 6px;
}

.sync-line {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
}

.sync-logo {
  display: grid;
  width: 38px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 7px;
  font-size: 8px;
  font-weight: 900;
}

.optima-logo { color: #ff7b66; }
.woo-logo { color: #bda4ff; font-family: Georgia, serif; font-style: italic; }

.sync-direction {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
  align-items: center;
  color: rgba(255,255,255,.62);
  font-size: 6px;
  white-space: nowrap;
}

.sync-direction i {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(183,244,91,.65));
}

.sync-direction i:last-child {
  background: linear-gradient(90deg, rgba(183,244,91,.65), transparent);
}

.float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 142px;
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 11px;
  background: rgba(17, 31, 22, .86);
  box-shadow: 0 18px 44px rgba(0,0,0,.25);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.float-badge > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--ink);
  background: var(--accent);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.float-badge div { display: grid; }
.float-badge small { color: rgba(255,255,255,.34); font-size: 6px; font-weight: 800; letter-spacing: .12em; }
.float-badge strong { margin-top: 2px; font-size: 9px; }
.badge-top { top: 15%; right: -40px; }
.badge-bottom { bottom: 9%; left: -37px; }

.system-rail {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 45px;
  margin-top: 55px;
  border-top: 1px solid rgba(255,255,255,.09);
}

.system-rail > p {
  margin: 0;
  color: rgba(255,255,255,.34);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.system-flow {
  display: flex;
  align-items: center;
  gap: 25px;
}

.system-flow > strong {
  color: rgba(255,255,255,.66);
  font-size: 12px;
  line-height: 1.2;
}

.system-flow > strong span { display: block; color: rgba(255,255,255,.32); font-size: 7px; letter-spacing: .06em; }
.system-flow > i { color: rgba(255,255,255,.18); font-size: 14px; font-style: normal; }
.system-flow .system-center { display: flex; align-items: center; gap: 7px; color: var(--white); }
.mini-sync { display: grid !important; width: 22px; height: 22px; place-items: center; color: var(--ink) !important; background: var(--accent); border-radius: 50%; font-size: 12px !important; }
.system-flow .system-woo { color: #c3aaff; font-family: Georgia, serif; font-size: 17px; font-style: italic; }

/* Context */
.context-section {
  padding: 150px 0 120px;
}

.context-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 10vw, 150px);
  align-items: start;
}

.section-intro h2,
.section-head h2,
.panel-head h2,
.benefits h2,
.faq-intro h2 {
  margin-bottom: 0;
  font-size: clamp(44px, 5.3vw, 78px);
  font-weight: 720;
}

.section-intro h2 em,
.section-head h2 em,
.panel-head h2 em,
.benefits h2 em,
.faq-intro h2 em {
  color: #5b745f;
}

.context-copy {
  padding-top: 49px;
  color: #5e6962;
}

.context-copy .large-copy {
  color: var(--ink);
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 570;
  letter-spacing: -.025em;
  line-height: 1.45;
}

.context-copy > p:not(.large-copy) {
  max-width: 560px;
}

.context-numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-top: 35px;
  margin-top: 35px;
  border-top: 1px solid var(--line);
}

.context-numbers > div {
  display: flex;
  gap: 13px;
  align-items: start;
}

.context-numbers strong {
  color: #688f30;
  font-size: 26px;
  letter-spacing: -.05em;
  line-height: 1;
}

.context-numbers span {
  color: #5c675f;
  font-size: 10px;
  font-weight: 750;
  line-height: 1.35;
  text-transform: uppercase;
}

/* Capabilities */
.capabilities {
  padding: 40px 0 150px;
}

.section-head {
  display: grid;
  grid-template-columns: 1.25fr .55fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 65px;
}

.section-head > p {
  margin-bottom: 8px;
  color: #667169;
  font-size: 16px;
  line-height: 1.7;
}

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

.capability-card {
  position: relative;
  min-height: 335px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.52);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s ease, border-color .3s ease;
}

.capability-card:hover {
  z-index: 2;
  border-color: rgba(86, 125, 60, .26);
  box-shadow: 0 24px 55px rgba(11, 33, 19, .09);
  transform: translateY(-5px);
}

.capability-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 41px;
}

.cap-number {
  color: #5f6962;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .15em;
}

.cap-icon {
  display: grid;
  min-width: 41px;
  height: 41px;
  padding-inline: 8px;
  place-items: center;
  color: #567a3d;
  border: 1px solid rgba(82, 126, 54, .16);
  border-radius: 12px;
  background: rgba(183,244,91,.17);
  font-size: 10px;
  font-weight: 900;
}

.capability-card h3 {
  margin-bottom: 15px;
  font-size: clamp(24px, 2.2vw, 31px);
  font-weight: 700;
}

.capability-card p {
  position: relative;
  z-index: 2;
  max-width: 490px;
  color: #667169;
  font-size: 14px;
  line-height: 1.65;
}

.capability-card ul {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0;
  margin: 23px 0 0;
  list-style: none;
}

.capability-card li,
.mini-pills span {
  padding: 6px 9px;
  color: #637066;
  border: 1px solid rgba(9, 37, 21, .11);
  border-radius: 999px;
  background: rgba(255,255,255,.5);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.capability-featured {
  grid-column: span 2;
  background: linear-gradient(135deg, #f9faf5 0%, #edf3e6 100%);
}

.capability-featured p,
.capability-featured ul {
  max-width: 58%;
}

.product-stack {
  position: absolute;
  right: 4%;
  bottom: 7%;
  width: 35%;
  height: 56%;
}

.product-stack span {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 75%;
  height: 73%;
  border: 1px solid rgba(61, 99, 48, .13);
  border-radius: 18px;
  background: rgba(255,255,255,.65);
  box-shadow: 0 16px 35px rgba(18,55,26,.08);
  transform: rotate(5deg);
}

.product-stack span:nth-child(2) { right: 17%; bottom: 11%; transform: rotate(-3deg); }
.product-stack span:nth-child(3) { right: 8%; bottom: 20%; background: linear-gradient(145deg, var(--accent), #83cc4d); transform: rotate(2deg); }
.product-stack i { position: absolute; z-index: 2; right: 30%; bottom: 46%; color: #24401f; font-size: 18px; font-style: normal; font-weight: 900; transform: rotate(2deg); }

.mini-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 25px;
}

.stock-bars {
  display: grid;
  gap: 10px;
  margin-top: 31px;
}

.stock-bars i {
  width: var(--w);
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, #72c78d, var(--accent));
}

.tree-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  max-width: 230px;
  margin-top: 25px;
}

.tree-visual span {
  padding: 8px 10px;
  color: #637066;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.6);
  font-size: 8px;
  font-weight: 750;
}

.tree-visual span:first-child { grid-column: 1 / -1; }
.tree-visual i { display: none; }

.capability-dark {
  color: var(--white);
  border-color: rgba(255,255,255,.08);
  background: var(--ink-soft);
}

.capability-dark p { color: rgba(255,255,255,.58); }
.capability-dark .cap-number { color: rgba(255,255,255,.68); }
.capability-dark li { color: rgba(255,255,255,.57); border-color: rgba(255,255,255,.12); background: rgba(255,255,255,.04); }

.image-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 7px;
  height: 74px;
  margin-top: 26px;
}

.image-visual i {
  position: relative;
  display: block;
  width: 31%;
  height: 100%;
  border: 1px solid rgba(9,37,21,.11);
  border-radius: 10px;
  background: linear-gradient(145deg, #dcead2, #9fc77b);
}

.image-visual i:nth-child(2) { height: 62%; background: linear-gradient(145deg, #d9e5ee, #8cabb5); }
.image-visual i:nth-child(3) { height: 82%; background: linear-gradient(145deg, #ede0c8, #c0a56c); }

.customer-visual {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 9px 12px;
  max-width: 230px;
  margin-top: 28px;
}

.customer-visual i {
  grid-row: span 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--accent), #68b469);
}

.customer-visual span {
  height: 10px;
  margin-top: 6px;
  border-radius: 999px;
  background: #d5dbd1;
}

.customer-visual span:last-child { width: 65%; margin: 0; }

.document-visual {
  position: relative;
  display: grid;
  width: 175px;
  height: 70px;
  padding: 15px;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,.64);
  box-shadow: 8px 8px 0 #e4e8df;
}

.document-visual span { font-size: 10px; font-weight: 850; }
.document-visual i { position: absolute; right: 11px; bottom: 10px; padding: 4px 6px; color: var(--white); border-radius: 4px; background: #b83b31; font-size: 7px; font-style: normal; font-weight: 900; }

.capability-wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 35px;
  align-items: center;
}

.order-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.order-flow span {
  display: grid;
  gap: 8px;
  justify-items: center;
  color: #667169;
  font-size: 8px;
  font-weight: 800;
  white-space: nowrap;
}

.order-flow span i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #527337;
  border: 1px solid rgba(82,115,55,.16);
  border-radius: 50%;
  background: rgba(183,244,91,.16);
  font-size: 10px;
  font-style: normal;
}

.order-flow b { color: #aab2ab; font-size: 12px; }

.capability-accent {
  border-color: transparent;
  background: var(--accent);
}

.capability-accent p { color: #3c522c; }
.capability-accent .cap-number { color: #4e6b33; }
.capability-accent .cap-icon { color: var(--ink); border-color: rgba(7,16,12,.12); background: rgba(255,255,255,.35); }
.capability-accent a { position: absolute; bottom: 28px; display: inline-flex; gap: 16px; align-items: center; font-size: 11px; font-weight: 850; }

.scope-note {
  display: flex;
  gap: 12px;
  align-items: center;
  max-width: 830px;
  margin: 28px auto 0;
  color: #5f6962;
  font-size: 11px;
  text-align: center;
}

.scope-note span {
  display: grid;
  flex: 0 0 22px;
  height: 22px;
  place-items: center;
  color: #527337;
  border: 1px solid rgba(82,115,55,.22);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-style: italic;
}

/* Direction */
.direction-section {
  position: relative;
  padding: 145px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 45%, rgba(68, 126, 80, .18), transparent 30%),
    var(--ink);
  overflow: hidden;
}

.direction-layout {
  display: grid;
  grid-template-columns: .77fr 1.23fr;
  gap: clamp(45px, 8vw, 120px);
  align-items: center;
}

.direction-copy h2 {
  margin-bottom: 30px;
  font-size: clamp(45px, 5vw, 72px);
  font-weight: 710;
}

.direction-copy > p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255,255,255,.58);
}

.check-list {
  display: grid;
  gap: 15px;
  padding: 0;
  margin: 33px 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 13px;
  align-items: center;
  color: rgba(255,255,255,.6);
  font-size: 12px;
}

.check-list li i {
  display: grid;
  flex: 0 0 24px;
  height: 24px;
  place-items: center;
  color: var(--ink);
  border-radius: 50%;
  background: var(--accent);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}

.check-list strong { color: var(--white); }

.direction-map {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 150px 1fr;
  align-items: center;
  min-height: 510px;
  padding: 45px 20px;
}

.map-system,
.map-core {
  position: relative;
  z-index: 3;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.map-system {
  min-height: 218px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  background: rgba(255,255,255,.035);
  box-shadow: inset 0 0 50px rgba(255,255,255,.02);
}

.map-system::before {
  content: "";
  position: absolute;
  inset: -14px;
  border: 1px dashed rgba(255,255,255,.08);
  border-radius: 50%;
}

.map-system small,
.map-core small {
  color: rgba(255,255,255,.34);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: .16em;
}

.map-system strong {
  margin: 10px 0 13px;
  font-size: 27px;
  letter-spacing: -.045em;
  line-height: .96;
}

.map-system > span {
  max-width: 130px;
  color: rgba(255,255,255,.38);
  font-size: 8px;
  line-height: 1.45;
}

.map-optima strong { color: #ff8a72; }
.map-woo strong { color: #c2aaff; font-family: Georgia, serif; font-style: italic; }

.map-core {
  width: 124px;
  height: 124px;
  margin: auto;
  border: 1px solid rgba(183,244,91,.32);
  border-radius: 50%;
  background: #122319;
  box-shadow: 0 0 60px rgba(183,244,91,.12);
}

.map-core svg {
  width: 38px;
  height: 38px;
  margin-bottom: 6px;
  color: var(--accent);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.map-core strong { font-size: 10px; }
.map-core small { margin-top: 4px; font-size: 5px; }

.pulse {
  position: absolute;
  inset: -26px;
  border: 1px solid rgba(183,244,91,.1);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: .45; transform: scale(.94); }
  50% { opacity: 1; transform: scale(1.04); }
}

.flow-tag {
  position: absolute;
  z-index: 4;
  padding: 8px 12px;
  color: rgba(255,255,255,.64);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  background: #111f17;
  font-size: 7px;
  font-weight: 750;
  white-space: nowrap;
}

.flow-tag i { color: var(--accent); font-style: normal; }
.tag-products { top: 39%; left: 37%; }
.tag-orders { right: 28%; bottom: 22%; }
.tag-status { top: 20%; left: 31%; }

.map-lines {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: rgba(183,244,91,.46);
  stroke-dasharray: 4 5;
  stroke-width: 1;
}

.map-line-dim { stroke: rgba(255,255,255,.1); }

/* Panel */
.panel-section {
  padding: 150px 0;
}

.panel-head {
  margin-bottom: 70px;
}

.panel-demo {
  border: 1px solid rgba(10, 36, 21, .18);
  border-radius: 25px;
  background: #111c16;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel-browserbar {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  min-height: 54px;
  padding: 0 20px;
  color: rgba(255,255,255,.4);
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 9px;
  font-weight: 700;
}

.panel-browserbar > span {
  justify-self: center;
  color: rgba(255,255,255,.68);
}

.panel-shell {
  display: grid;
  grid-template-columns: 205px 1fr;
  min-height: 585px;
}

.panel-tabs {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 24px 13px;
  border-right: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.12);
}

.panel-tabs button {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 50px;
  padding: 0 13px;
  color: rgba(255,255,255,.48);
  border: 0;
  border-radius: 10px;
  background: transparent;
  font-size: 11px;
  font-weight: 750;
  text-align: left;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}

.panel-tabs button span {
  color: rgba(255,255,255,.62);
  font-size: 7px;
  letter-spacing: .1em;
}

.panel-tabs button[aria-selected="true"] {
  color: var(--white);
  background: rgba(183,244,91,.09);
}

.panel-tabs button[aria-selected="true"] span { color: var(--accent); }

.panel-screen {
  padding: 31px;
  color: var(--ink);
  background: #f2f4ed;
}

.panel-topline,
.view-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.panel-topline {
  padding-bottom: 23px;
  border-bottom: 1px solid var(--line);
}

.panel-topline > div { display: grid; }
.panel-topline small { color: #5f6962; font-size: 7px; font-weight: 850; letter-spacing: .14em; }
.panel-topline strong { margin-top: 3px; font-size: 14px; }
.panel-topline > span { display: flex; align-items: center; gap: 8px; color: #587048; font-size: 8px; font-weight: 800; }
.panel-topline > span i { width: 7px; height: 7px; border-radius: 50%; background: #76bc4f; box-shadow: 0 0 0 4px rgba(118,188,79,.12); }

.panel-view {
  padding-top: 30px;
  animation: panelIn .35s var(--ease);
}

@keyframes panelIn {
  from { opacity: 0; transform: translateY(7px); }
  to { opacity: 1; transform: translateY(0); }
}

.view-title h3 {
  margin-bottom: 6px;
  font-size: 26px;
}

.view-title p {
  margin: 0;
  color: #5f6962;
  font-size: 10px;
}

.view-title button {
  padding: 11px 15px;
}

.setting-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.setting-card {
  position: relative;
  display: grid;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255,255,255,.7);
}

.setting-card > span { font-size: 11px; font-weight: 800; }
.setting-card > small { margin-top: 10px; color: #5f6962; font-size: 8px; }

.toggle {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 29px;
  height: 16px;
  border-radius: 999px;
  background: #d3d8d2;
}

.toggle::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0,0,0,.15);
}

.toggle.on { background: #7db853; }
.toggle.on::after { left: 16px; }

.range-row {
  display: grid;
  grid-template-columns: 180px 1fr 50px;
  gap: 18px;
  align-items: center;
  padding: 21px;
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255,255,255,.7);
  font-size: 9px;
  font-weight: 800;
}

.range-row > div { height: 5px; border-radius: 999px; background: #dde1da; }
.range-row > div i { display: block; width: var(--p); height: 100%; border-radius: inherit; background: linear-gradient(90deg, #77aa50, var(--accent)); }
.range-row strong { color: #56733f; font-size: 9px; }

.mapping-table {
  display: grid;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255,255,255,.7);
  overflow: hidden;
}

.mapping-table > div {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr .6fr;
  gap: 15px;
  align-items: center;
  min-height: 62px;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
  font-size: 9px;
}

.mapping-table > div:first-child { min-height: 45px; color: #5f6962; background: #e9ece5; font-size: 7px; letter-spacing: .05em; text-transform: uppercase; }
.mapping-table > div:last-child { border: 0; }
.mapping-table em { width: fit-content; padding: 5px 7px; color: #4e7438; border-radius: 999px; background: rgba(126,190,86,.14); font-size: 7px; font-style: normal; font-weight: 850; }
.mapping-table em.pending { color: #684817; background: rgba(235,181,82,.18); }

.customer-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.customer-stats > div {
  display: grid;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255,255,255,.7);
}

.customer-stats small { color: #5f6962; font-size: 8px; }
.customer-stats strong { margin: 8px 0; font-size: 23px; letter-spacing: -.04em; }
.customer-stats span { color: #5f6962; font-size: 8px; }

.order-settings {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.order-settings > div {
  display: grid;
  gap: 10px;
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255,255,255,.7);
}

.order-settings span { color: #5f6962; font-size: 8px; }
.order-settings strong { font-size: 11px; }

.log-list {
  display: grid;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255,255,255,.7);
  overflow: hidden;
}

.log-list > div {
  display: grid;
  grid-template-columns: 10px 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 68px;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
}

.log-list > div:last-child { border: 0; }
.log-list i { width: 8px; height: 8px; border-radius: 50%; background: #e0ab4d; box-shadow: 0 0 0 4px rgba(224,171,77,.11); }
.log-list i.ok { background: #77b44c; box-shadow: 0 0 0 4px rgba(119,180,76,.11); }
.log-list span { display: grid; }
.log-list strong { font-size: 10px; }
.log-list small { margin-top: 4px; color: #5f6962; font-size: 8px; }
.log-list time { color: #5f6962; font-size: 8px; }

.all-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 27px;
}

.all-tabs span {
  padding: 7px 11px;
  color: #5f6962;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.44);
  font-size: 8px;
  font-weight: 800;
}

.demo-note {
  margin: 16px 0 0;
  color: #5f6962;
  font-size: 9px;
  text-align: center;
}

/* Implementation */
.implementation {
  padding: 150px 0;
  color: var(--white);
  background: #0c1811;
}

.section-head-dark h2 em { color: var(--accent); }
.section-head-dark > p { color: rgba(255,255,255,.51); }

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: step;
}

.timeline li {
  position: relative;
  min-height: 330px;
  padding: 30px 28px;
  border-top: 1px solid rgba(255,255,255,.14);
  border-right: 1px solid rgba(255,255,255,.1);
}

.timeline li:last-child { border-right: 0; }
.timeline li > span { color: rgba(255,255,255,.68); font-size: 8px; font-weight: 900; letter-spacing: .14em; }
.timeline-icon { display: grid; width: 48px; height: 48px; margin: 34px 0 27px; place-items: center; color: var(--accent); border: 1px solid rgba(183,244,91,.2); border-radius: 14px; background: rgba(183,244,91,.06); font-size: 17px; }
.timeline h3 { margin-bottom: 15px; font-size: 23px; }
.timeline p { color: rgba(255,255,255,.49); font-size: 12px; line-height: 1.7; }
.timeline small { position: absolute; bottom: 29px; color: rgba(255,255,255,.68); font-size: 7px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.implementation-banner {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 60px;
  align-items: center;
  padding: 40px;
  margin-top: 30px;
  border: 1px solid rgba(183,244,91,.24);
  border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(183,244,91,.09), rgba(99,231,193,.025));
}

.implementation-banner > div:first-child { display: grid; }
.implementation-banner small { color: var(--accent); font-size: 7px; font-weight: 850; letter-spacing: .15em; }
.implementation-banner strong { margin: 9px 0 11px; font-size: 23px; letter-spacing: -.035em; }
.implementation-banner p { margin: 0; color: rgba(255,255,255,.49); font-size: 11px; }

.architecture-mini {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 11px;
}

.architecture-mini span { padding: 13px 15px; color: rgba(255,255,255,.64); border: 1px solid rgba(255,255,255,.13); border-radius: 9px; background: rgba(0,0,0,.12); font-size: 8px; font-weight: 850; white-space: nowrap; }
.architecture-mini i { color: var(--accent); font-size: 10px; font-style: normal; }

/* Benefits */
.benefits {
  padding: 150px 0;
}

.benefits-layout {
  display: grid;
  grid-template-columns: .73fr 1.27fr;
  gap: 110px;
  align-items: start;
}

.benefits-sticky {
  position: sticky;
  top: calc(var(--header) + 40px);
}

.benefits-sticky > p:not(.eyebrow) {
  max-width: 440px;
  margin: 29px 0 31px;
  color: #5f6962;
}

.benefit-list {
  display: grid;
}

.benefit-list article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 28px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
}

.benefit-list article:last-child { border-bottom: 1px solid var(--line); }
.benefit-list article > span { display: grid; width: 38px; height: 38px; place-items: center; color: #54743f; border: 1px solid rgba(84,116,63,.22); border-radius: 50%; font-size: 8px; font-weight: 900; }
.benefit-list h3 { margin-bottom: 13px; font-size: 28px; }
.benefit-list p { margin: 0; color: #5f6962; }

/* FAQ */
.faq-section {
  padding: 60px 0 150px;
}

.faq-layout {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 115px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: calc(var(--header) + 40px);
}

.faq-intro h2 { font-size: clamp(44px, 4.8vw, 70px); }
.faq-intro > p:not(.eyebrow) { margin: 28px 0 30px; color: #5f6962; }

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

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

.faq-list summary {
  position: relative;
  padding: 28px 56px 28px 0;
  font-size: 18px;
  font-weight: 740;
  letter-spacing: -.025em;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  right: 2px;
  width: 16px;
  height: 1px;
  background: var(--ink);
  transition: transform .25s ease;
}

.faq-list summary span::after {
  content: "";
  top: 0;
  right: 0;
  transform: rotate(90deg);
}

.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details p { max-width: 720px; padding: 0 55px 28px 0; margin: 0; color: #5f6962; }

/* Contact */
.contact-section {
  position: relative;
  padding: 150px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 0%, rgba(112, 186, 91, .19), transparent 37%),
    #07100c;
  overflow: hidden;
}

.contact-grid {
  opacity: .09;
  -webkit-mask-image: radial-gradient(circle at center, #000, transparent 72%);
  mask-image: radial-gradient(circle at center, #000, transparent 72%);
}

.contact-inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
  text-align: center;
}

.contact-inner .eyebrow { justify-content: center; }
.contact-inner h2 { margin-bottom: 28px; font-size: clamp(55px, 7vw, 98px); font-weight: 720; }
.contact-inner > p:not(.eyebrow) { max-width: 640px; margin: 0 auto 35px; color: rgba(255,255,255,.56); font-size: 17px; }
.contact-actions { display: flex; flex-direction: column; gap: 16px; align-items: center; }
.contact-actions > span { color: rgba(255,255,255,.64); font-size: 9px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }

/* Footer */
.site-footer {
  padding: 64px 0 27px;
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,.08);
  background: #07100c;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.25fr .75fr;
  gap: 45px;
  align-items: start;
  padding-bottom: 55px;
}

.footer-main nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px 30px;
}

.footer-main nav a { color: rgba(255,255,255,.54); font-size: 11px; font-weight: 700; }
.footer-main nav a:hover { color: var(--white); }

.footer-contact { display: grid; justify-items: start; }
.footer-contact small { margin-bottom: 12px; color: rgba(255,255,255,.62); font-size: 7px; font-weight: 850; letter-spacing: .16em; }
.footer-contact a { margin-bottom: 7px; color: rgba(255,255,255,.64); font-size: 11px; }
.footer-contact a:first-of-type { color: var(--accent); }

.footer-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 35px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-bottom p {
  max-width: 690px;
  margin: 0;
  color: rgba(255,255,255,.58);
  font-size: 8px;
}

.footer-bottom p:last-child { text-align: right; }

/* Responsive */
@media (max-width: 1180px) {
  :root { --container: 1040px; }
  .hero-layout { grid-template-columns: .85fr 1.15fr; gap: 35px; }
  .hero h1 { font-size: clamp(50px, 5.8vw, 73px); }
  .badge-top { right: -12px; }
  .badge-bottom { left: -14px; }
  .direction-layout { grid-template-columns: .8fr 1.2fr; gap: 35px; }
  .direction-map { transform: scale(.9); transform-origin: center; }
  .benefits-layout, .faq-layout { gap: 70px; }
}

@media (max-width: 980px) {
  :root { --header: 72px; }
  .container { width: min(calc(100% - 36px), var(--container)); }
  .nav-toggle { position: relative; display: block; }
  .primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    height: calc(100vh - var(--header));
    height: calc(100dvh - var(--header));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 26px 24px 40px;
    background: rgba(6, 17, 11, .98);
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: none;
    transition: opacity .25s var(--ease), visibility 0s linear .25s;
  }
  .primary-nav.open { visibility: visible; opacity: 1; pointer-events: auto; transition-delay: 0s; }
  .primary-nav a { display: flex; align-items: center; min-height: 60px; padding: 0 8px; border-bottom: 1px solid rgba(255,255,255,.09); font-size: 20px; }
  .primary-nav > a:not(.nav-cta)::after { display: none; }
  .primary-nav .nav-cta { justify-content: center; min-height: 54px; padding: 0 20px; margin-top: 22px; font-size: 14px; }

  .hero { padding-top: 125px; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero h1 { font-size: clamp(58px, 9vw, 88px); }
  .hero-visual { width: min(760px, 92%); margin: 25px auto 0; }
  .system-rail { margin-top: 75px; }

  .context-grid { gap: 45px; }
  .context-copy { padding-top: 40px; }
  .section-head { grid-template-columns: 1fr; gap: 28px; }
  .section-head > p { max-width: 650px; }
  .capability-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .capability-featured { grid-column: span 2; }
  .capability-wide { grid-column: span 2; }

  .direction-layout { grid-template-columns: 1fr; }
  .direction-copy { max-width: 720px; }
  .direction-map { width: min(760px, 100%); margin: 0 auto; transform: none; }

  .panel-shell { grid-template-columns: 165px 1fr; }
  .panel-tabs button { gap: 8px; padding-inline: 9px; font-size: 9px; }

  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline li:nth-child(2) { border-right: 0; }
  .implementation-banner { grid-template-columns: 1fr; gap: 30px; }
  .architecture-mini { justify-content: flex-start; flex-wrap: wrap; }

  .benefits-layout, .faq-layout { grid-template-columns: 1fr; gap: 60px; }
  .benefits-sticky, .faq-intro { position: static; max-width: 720px; }
  .benefit-list { max-width: 850px; }

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

@media (max-width: 720px) {
  h1, h2, h3 { text-wrap: wrap; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand-copy strong { font-size: 16px; }
  .brand-copy small { font-size: 7px; }
  .hero { min-height: auto; padding: 115px 0 34px; }
  .hero h1 { font-size: clamp(49px, 14.6vw, 74px); }
  .hero-lead { font-size: 17px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-proof { display: grid; gap: 10px; }
  .hero-visual { width: 100%; margin-top: 35px; }
  .app-window { transform: none; }
  .app-topbar { grid-template-columns: 52px 1fr auto; padding-inline: 10px; }
  .app-title { font-size: 7px; }
  .app-body { grid-template-columns: 38px 1fr; min-height: 365px; }
  .app-sidebar { gap: 15px; }
  .mini-brand { width: 23px; height: 23px; }
  .app-sidebar i { width: 11px; height: 11px; }
  .app-content { padding: 13px; }
  .app-heading strong { font-size: 12px; }
  .status-cards { gap: 5px; }
  .status-card { padding: 9px 7px; }
  .card-icon { width: 21px; height: 21px; margin-bottom: 7px; }
  .status-card strong { font-size: 9px; }
  .status-card em { display: none; }
  .sync-chart { padding: 10px; }
  .sync-chart svg { height: 75px; }
  .float-badge { display: none; }
  .system-rail { display: grid; gap: 25px; padding-top: 30px; margin-top: 50px; }
  .system-flow { gap: 11px; justify-content: space-between; }
  .system-flow > strong { font-size: 8px; }
  .system-flow .system-woo { font-size: 14px; }
  .system-flow > i { font-size: 10px; }

  .context-section { padding: 100px 0 80px; }
  .context-grid { grid-template-columns: 1fr; gap: 20px; }
  .context-copy { padding-top: 10px; }
  .section-intro h2, .section-head h2, .panel-head h2, .benefits h2, .faq-intro h2 { font-size: clamp(42px, 12vw, 60px); }
  .context-numbers { grid-template-columns: 1fr; gap: 20px; }
  .context-numbers > div { align-items: center; }

  .capabilities { padding-bottom: 100px; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-featured, .capability-wide { grid-column: auto; }
  .capability-card { min-height: 315px; }
  .capability-featured p, .capability-featured ul { max-width: 100%; }
  .product-stack { opacity: .18; right: -3%; width: 55%; }
  .capability-wide { grid-template-columns: 1fr; }
  .order-flow { justify-content: flex-start; gap: 5px; overflow-x: auto; padding-bottom: 8px; }
  .order-flow span i { width: 34px; height: 34px; }

  .direction-section { padding: 100px 0; }
  .direction-copy h2 { font-size: clamp(43px, 12vw, 62px); }
  .direction-map { grid-template-columns: 1fr; gap: 50px; min-height: auto; padding: 50px 34px; }
  .map-system { width: 218px; margin: auto; }
  .map-core { grid-row: 2; }
  .map-lines, .flow-tag { display: none; }

  .panel-section { padding: 100px 0; }
  .panel-demo { border-radius: 18px; }
  .panel-shell { display: block; min-height: 0; }
  .panel-tabs { flex-direction: row; padding: 9px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); overflow-x: auto; scrollbar-width: none; }
  .panel-tabs::-webkit-scrollbar { display: none; }
  .panel-tabs button { flex: 0 0 auto; min-height: 42px; padding: 0 12px; }
  .panel-tabs button span { display: none; }
  .panel-screen { min-height: 530px; padding: 18px 14px 24px; }
  .panel-topline { align-items: flex-start; }
  .panel-topline > span { font-size: 7px; }
  .view-title { align-items: flex-start; gap: 15px; }
  .view-title h3 { font-size: 22px; }
  .view-title button { flex: 0 0 auto; font-size: 7px; }
  .setting-grid, .customer-stats, .order-settings { grid-template-columns: 1fr; }
  .range-row { grid-template-columns: 1fr 45px; }
  .range-row > div { grid-column: 1 / -1; grid-row: 2; }
  .mapping-table { overflow-x: auto; }
  .mapping-table > div { min-width: 590px; }

  .implementation { padding: 100px 0; }
  .timeline { grid-template-columns: 1fr; }
  .timeline li { min-height: 285px; border-right: 0; }
  .implementation-banner { padding: 27px; }
  .architecture-mini { display: grid; grid-template-columns: 1fr auto 1fr; }
  .architecture-mini span { text-align: center; }

  .benefits { padding: 100px 0; }
  .benefit-list article { grid-template-columns: 42px 1fr; gap: 15px; }
  .benefit-list h3 { font-size: 24px; }
  .benefit-list p { font-size: 14px; }

  .faq-section { padding: 20px 0 100px; }
  .faq-list summary { padding-block: 24px; font-size: 16px; }
  .faq-list details p { padding-right: 15px; }

  .contact-section { padding: 105px 0; }
  .contact-inner h2 { font-size: clamp(40px, 12vw, 58px); }
  .contact-inner > p:not(.eyebrow) { font-size: 15px; }

  .site-footer { padding-top: 50px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-contact { grid-column: auto; }
  .footer-main nav { margin-top: 10px; }
  .footer-bottom { display: grid; align-items: start; }
  .footer-bottom p:last-child { text-align: left; }
}

@media (max-width: 390px) {
  .hero h1 { font-size: clamp(40px, 12.5vw, 47px); }
  .section-intro h2, .section-head h2, .panel-head h2, .benefits h2, .faq-intro h2 { font-size: clamp(34px, 10.5vw, 42px); }
  .app-title { max-width: 150px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .status-card:nth-child(3) { display: none; }
  .status-cards { grid-template-columns: repeat(2, 1fr); }
  .sync-line { grid-template-columns: 34px 1fr 34px; }
  .sync-logo { width: 32px; }
  .architecture-mini { grid-template-columns: 1fr; }
  .architecture-mini i { transform: rotate(90deg); text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .hero-grid, .hero-orb, .contact-grid, .nav-toggle { display: none !important; }
  .hero, .direction-section, .implementation, .contact-section, .site-footer { color: #000; background: #fff; }
  .hero { min-height: 0; padding-top: 30px; }
  .reveal { opacity: 1; transform: none; }
  a { text-decoration: underline; }
}
