:root {
  --bg: #06100f;
  --bg-2: #0a1514;
  --panel: rgba(13, 24, 24, 0.74);
  --panel-strong: rgba(16, 29, 29, 0.92);
  --line: rgba(189, 240, 69, 0.22);
  --line-strong: rgba(189, 240, 69, 0.48);
  --text: #f3f6ee;
  --muted: #b9c1b6;
  --muted-2: #819087;
  --lime: #b8ea35;
  --lime-2: #d4ff58;
  --green: #4fd29b;
  --amber: #e6a747;
  --red: #f05c42;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.38);
  --radius: 28px;
  --radius-sm: 18px;
  --container: min(1180px, calc(100vw - 36px));
  --header-h: 80px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(184, 234, 53, 0.08), transparent 34%),
    radial-gradient(circle at 86% 9%, rgba(79, 210, 155, 0.1), transparent 30%),
    linear-gradient(180deg, #06100f 0%, #071312 48%, #050c0b 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(184, 234, 53, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 234, 53, .05) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 30% 20%, #000 0, transparent 56%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 70% 34%, rgba(184, 234, 53, 0.08), transparent 26%),
    linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.06) 60%, rgba(0,0,0,.78));
  opacity: .85;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
button {
  cursor: pointer;
  background: none;
  border: 0;
  color: inherit;
}
::selection { background: rgba(184,234,53,.28); color: var(--text); }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-180%);
  background: var(--lime);
  color: #10200e;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container { width: var(--container); margin-inline: auto; }
.section {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-h) + 54px) 0 112px;
}

.site-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 200;
  background: rgba(255,255,255,.04);
}
.site-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--green), var(--lime), var(--amber));
  box-shadow: 0 0 18px rgba(184,234,53,.48);
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  height: 320px;
  margin: -160px 0 0 -160px;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(184,234,53,.13), transparent 63%);
  transform: translate3d(var(--cursor-x, -500px), var(--cursor-y, -500px), 0);
  transition: opacity .3s ease;
  mix-blend-mode: screen;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  gap: 22px;
  background: #050c0b;
  transition: opacity .6s ease, visibility .6s ease;
}
.loader.is-hidden { opacity: 0; visibility: hidden; }
.loader__mark {
  font-weight: 950;
  font-size: clamp(42px, 8vw, 86px);
  letter-spacing: -.08em;
  color: white;
}
.loader__mark::after {
  content: "";
  display: block;
  width: .8em;
  height: .12em;
  margin: -0.05em 0 0 .25em;
  border-radius: 999px;
  background: var(--lime);
}
.loader__bar {
  position: absolute;
  bottom: 18%;
  width: min(300px, 54vw);
  height: 4px;
  border-radius: 99px;
  background: rgba(255,255,255,.1);
  overflow: hidden;
}
.loader__bar span {
  display: block;
  height: 100%;
  width: 44%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  animation: loader-slide 1.2s ease-in-out infinite;
}
@keyframes loader-slide {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(260%); }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: linear-gradient(180deg, rgba(5, 12, 11, .84), rgba(5, 12, 11, .48));
  backdrop-filter: blur(18px);
  transition: transform .34s ease, background .34s ease, border-color .34s ease;
}
.site-header.is-scrolled {
  background: rgba(5,12,11,.88);
  border-color: rgba(184,234,53,.18);
}
.nav-wrap { display: flex; align-items: center; gap: 28px; }
.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 306px;
  height: 46px;
  flex: 0 0 auto;
  padding: 4px 6px;
  border-radius: 12px;
  background: #000;
  box-shadow: 0 16px 36px rgba(0,0,0,.22), inset 0 0 0 1px rgba(255,255,255,.07);
}
.brand img { width: 100%; height: 100%; object-fit: contain; }
.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 36px);
  margin-left: auto;
  font-size: 15px;
  color: rgba(255,255,255,.86);
}
.site-nav a {
  position: relative;
  padding: 8px 2px;
  transition: color .2s ease;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 2px;
  border-radius: 999px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}
.site-nav a:hover,
.site-nav a.is-active { color: white; }
.site-nav a.is-active::after,
.site-nav a:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  color: white;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.btn {
  --btn-bg: rgba(255,255,255,.04);
  --btn-color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 15px;
  background: var(--btn-bg);
  color: var(--btn-color);
  font-weight: 800;
  letter-spacing: -.01em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
  transition: transform .24s ease, border-color .24s ease, background .24s ease, box-shadow .24s ease;
  isolation: isolate;
  overflow: hidden;
}
.btn svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .24s ease; }
.btn:hover { transform: translateY(-2px); border-color: rgba(184,234,53,.5); box-shadow: 0 18px 42px rgba(0,0,0,.22); }
.btn:hover svg { transform: translateX(4px); }
.btn--primary {
  --btn-bg: linear-gradient(135deg, var(--lime-2), var(--lime));
  --btn-color: #14200d;
  border-color: rgba(220,255,93,.66);
  box-shadow: 0 18px 44px rgba(184,234,53,.2);
}
.btn--outline {
  border-color: rgba(184,234,53,.55);
  color: var(--lime-2);
  background: rgba(184,234,53,.08);
}
.btn--ghost { border-color: rgba(184,234,53,.46); background: rgba(8, 18, 17, .62); }
.btn--download { border-color: rgba(184,234,53,.38); background: rgba(184,234,53,.04); color: var(--lime); }
.nav-cta { margin-left: 10px; min-height: 48px; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 900;
}
.hero h1,
.section h2 {
  margin: 0;
  font-size: clamp(46px, 7vw, 82px);
  line-height: 1.02;
  letter-spacing: -.055em;
  max-width: 900px;
  text-wrap: balance;
}
.section h2 {
  font-size: clamp(38px, 4.8vw, 64px);
  line-height: 1.04;
  letter-spacing: -.04em;
}
.hero h1 span,
.section h2 span,
.sugar-panel h3 span { color: var(--lime); }
.hero__lead,
.section-copy > p,
.section-heading > p,
.capability-copy p,
.partner-card p,
.usecase-detail p,
.process-detail p,
.contact-card p,
.site-footer p {
  color: var(--muted);
  line-height: 1.62;
}

.hero { min-height: 100svh; overflow: hidden; }
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5,12,11,.94) 0%, rgba(5,12,11,.78) 36%, rgba(5,12,11,.2) 100%),
    url('../img/field-grid.svg') right 10% top 70px / min(900px, 70vw) auto no-repeat;
  opacity: .82;
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr);
  align-items: center;
  gap: 40px;
}
.hero__copy { padding-top: 32px; }
.hero__lead { max-width: 660px; margin: 28px 0 0; font-size: clamp(17px, 1.55vw, 20px); }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 30px; }
.trust-chips { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.trust-chip,
.value-badges span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(8, 18, 17, .72);
  color: rgba(255,255,255,.88);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.trust-chip:hover,
.trust-chip:focus-visible,
.trust-chip.active {
  transform: translateY(-2px);
  border-color: rgba(184,234,53,.58);
  background: rgba(184,234,53,.09);
  box-shadow: 0 14px 34px rgba(0,0,0,.18), inset 0 0 0 1px rgba(184,234,53,.22), inset 0 1px 0 rgba(255,255,255,.05);
}
.trust-chip span { text-align: left; }
.hero-insight {
  margin-top: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  background: rgba(255,255,255,.03);
}
.hero-insight strong,
.audience-detail strong {
  display: block;
  color: var(--lime);
  font-size: 17px;
  letter-spacing: -.02em;
}
.hero-insight p,
.audience-detail p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}
[data-icon] { display: inline-grid; place-items: center; flex: 0 0 auto; color: var(--lime); }
[data-icon] svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.hero__visual { position: relative; min-height: 620px; }
.visual-shell,
.about-visual,
.sugar-panel,
.contact-card,
.capability-hero,
.process-wrap,
.usecase-wrap {
  position: relative;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.025));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.08);
  overflow: hidden;
}
.visual-shell {
  min-height: 620px;
  transform-style: preserve-3d;
}
.visual-shell img { width: 100%; height: 620px; object-fit: cover; filter: saturate(1.05) contrast(1.03); }
.visual-shell::after,
.about-visual::after,
.sugar-panel::after,
.contact-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255,255,255,.08), transparent 38%, rgba(184,234,53,.1) 100%);
  opacity: .58;
}
.scan-ring {
  position: absolute;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(79,210,155,.5);
  border-radius: 50%;
  left: 23%;
  bottom: 18%;
  transform: translateZ(40px);
  animation: scan 4.5s ease-in-out infinite;
  box-shadow: 0 0 36px rgba(79,210,155,.18);
}
.scan-ring--two { width: 230px; height: 230px; left: 18%; bottom: 12%; animation-delay: -.9s; opacity: .48; }
@keyframes scan {
  0%,100% { transform: scale(.82) translateZ(40px); opacity: .25; }
  50% { transform: scale(1.05) translateZ(40px); opacity: .85; }
}
.metric-card {
  position: absolute;
  width: 178px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(8, 18, 17, .82);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 50px rgba(0,0,0,.28);
  transform: translateZ(64px);
}
.metric-card--yield { top: 24px; right: 24px; }
.metric-card--health { right: 32px; bottom: 42px; }
.metric-card span { color: var(--muted); font-size: 13px; }
.metric-card strong { display: block; margin: 6px 0; font-size: 30px; letter-spacing: -.04em; }
.metric-card small { color: var(--lime); }
[data-float] { animation: float 7s ease-in-out infinite; }
.metric-card--health { animation-delay: -2.5s; }
@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}

.audience-strip {
  position: relative;
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 22px;
  background: rgba(13,24,24,.76);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.07);
  overflow: hidden;
}
.audience-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 100px;
  padding: 18px;
  color: rgba(255,255,255,.9);
  font-size: clamp(17px, 2vw, 22px);
  border-right: 1px solid rgba(255,255,255,.08);
  transition: background .2s ease, transform .2s ease, color .2s ease;
}
.audience-pill:last-child { border-right: 0; }
.audience-pill:hover,
.audience-pill:focus-visible,
.audience-pill.active {
  background: rgba(184,234,53,.1);
  color: white;
  box-shadow: inset 0 -3px 0 rgba(184,234,53,.78), inset 0 1px 0 rgba(255,255,255,.07);
}
.audience-pill:hover [data-icon],
.audience-pill:focus-visible [data-icon],
.audience-pill.active [data-icon] {
  border-color: rgba(184,234,53,.56);
  background: rgba(184,234,53,.08);
  transform: translateY(-2px);
}
.audience-strip [data-icon] {
  width: 54px;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.03);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.audience-detail {
  margin-top: 14px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  background: rgba(255,255,255,.03);
}

.two-col,
.commercial-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(440px, 1.08fr);
  gap: 44px;
  align-items: center;
}
.section-copy h2 { margin-bottom: 22px; max-width: 12ch; }
.section-copy > p { max-width: 700px; margin: 0 0 26px; font-size: 17px; }
.snapshot-card {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background: rgba(13,24,24,.74);
  overflow: hidden;
}
.snapshot-card article {
  display: grid;
  grid-template-columns: 52px minmax(120px, 180px) 1fr;
  gap: 20px;
  align-items: center;
  min-height: 92px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.snapshot-card article:last-child { border-bottom: 0; }
.snapshot-card [data-icon] { width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 14px; }
.snapshot-card h3 { margin: 0; font-size: 16px; }
.snapshot-card p { margin: 0; color: var(--muted); line-height: 1.5; }
.about-visual { min-height: 590px; }
.about-visual img { width: 100%; height: 590px; object-fit: cover; }
.map-callout {
  position: absolute;
  left: 28px;
  top: 26px;
  z-index: 2;
  padding: 18px;
  min-width: 190px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  background: rgba(8,18,17,.82);
  backdrop-filter: blur(12px);
}
.map-callout small,
.map-callout span { display: block; color: var(--muted); }
.map-callout strong { display: block; margin: 8px 0 4px; font-size: 30px; letter-spacing: -.05em; }
.principle-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  background: rgba(13,24,24,.74);
  overflow: hidden;
}
.principle-card {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 120px;
  padding: 24px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.principle-card:last-child { border-right: 0; }
.principle-card [data-icon] { width: 58px; height: 58px; border: 1px solid var(--line-strong); border-radius: 50%; }
.principle-card span { font-size: 18px; line-height: 1.25; }

.section-heading { max-width: 900px; margin-bottom: 36px; }
.section-heading h2 { margin-bottom: 20px; max-width: 13ch; }
.section-heading p { max-width: 760px; margin: 0; font-size: 17px; }
.solution-layout { display: grid; grid-template-columns: minmax(0, .82fr) minmax(500px, 1.18fr); gap: 28px; align-items: stretch; }
.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.solution-card,
.capability-card,
.partner-card {
  position: relative;
  min-height: 158px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 20px;
  background: rgba(13,24,24,.72);
  overflow: hidden;
  transition: transform .24s ease, border-color .24s ease, background .24s ease;
}
.solution-card:hover,
.capability-card:hover,
.partner-card:hover,
.principle-card:hover { transform: translateY(-4px); border-color: rgba(184,234,53,.42); background: rgba(18,31,29,.82); }
.solution-card h3,
.capability-card h3,
.partner-card h3 { margin: 20px 0 0; font-size: 18px; line-height: 1.28; letter-spacing: -.02em; }
.solution-card span { position: absolute; right: 22px; bottom: 20px; color: var(--muted); }
.solution-card--wide { grid-column: 1 / -1; min-height: 82px; display: flex; align-items: center; gap: 22px; }
.solution-card--wide h3 { margin: 0; }
.solution-card--wide span { position: static; margin-left: auto; }
.sugar-panel { min-height: 584px; isolation: isolate; }
.sugar-panel__image { position: absolute; inset: 0; z-index: -1; }
.sugar-panel__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,12,11,.92), rgba(5,12,11,.42), rgba(5,12,11,.12));
}
.sugar-panel__image img { width: 100%; height: 100%; object-fit: cover; }
.sugar-panel__content { position: relative; max-width: 440px; padding: 34px; z-index: 2; }
.sugar-panel h3 { margin: 0 0 22px; font-size: clamp(30px, 3.7vw, 44px); line-height: 1.1; letter-spacing: -.03em; text-wrap: balance; }
.benefit-list { list-style: none; display: grid; gap: 10px; padding: 0; margin: 0; }
.benefit-list li { display: flex; align-items: center; gap: 14px; padding: 9px 0; border-bottom: 1px dashed rgba(255,255,255,.12); color: rgba(255,255,255,.9); }
.benefit-list [data-icon] { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; }
.usecase-wrap { margin-top: 28px; padding: 26px; }
.usecase-tabs { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; }
.usecase {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  min-height: 96px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  background: rgba(255,255,255,.035);
  color: rgba(255,255,255,.82);
  text-align: left;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.usecase:hover,
.usecase.active { transform: translateY(-2px); border-color: rgba(184,234,53,.55); background: rgba(184,234,53,.08); color: white; }
.usecase [data-icon] svg { width: 24px; height: 24px; }
.usecase-detail {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 18px;
  min-height: 82px;
  padding: 20px;
  border-radius: 18px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.08);
}
.usecase-detail strong { flex: 0 0 270px; color: var(--lime); }
.usecase-detail p { margin: 0; }

.capability-hero {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(360px, .5fr);
  gap: 24px;
  align-items: center;
  padding: 28px;
  margin-bottom: 26px;
}
.capability-copy h3,
.process-head h3,
.contact-card h3 { margin: 0 0 12px; font-size: clamp(27px, 3vw, 38px); letter-spacing: -.03em; line-height: 1.12; text-wrap: balance; }
.capability-copy p { margin: 0; max-width: 690px; }
.capability-image {
  justify-self: end;
  width: min(440px, 100%);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 22px 56px rgba(0,0,0,.28);
}
.capability-image img { width: 100%; height: 220px; object-fit: cover; }
.capability-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
}
.capability-card { min-height: 156px; padding: 22px; text-align: center; display: grid; place-items: center; align-content: center; gap: 14px; }
.capability-card h3 { margin: 0; font-size: 15px; }
.capability-card [data-icon] svg { width: 36px; height: 36px; }
.process-wrap { margin-top: 30px; padding: 28px; }
.process-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 18px; }
.process-head .eyebrow { margin-bottom: 8px; }
.process-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.process-flow::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,234,53,.62), transparent);
  transform: translateY(-50%);
  opacity: .55;
}
.process-step {
  position: relative;
  z-index: 1;
  min-height: 160px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  background: rgba(5,12,11,.78);
  color: white;
  text-align: left;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.process-step:hover,
.process-step.active { border-color: rgba(184,234,53,.52); background: rgba(184,234,53,.08); transform: translateY(-3px); }
.process-step span { color: var(--lime); font-weight: 900; }
.process-step strong { display: block; margin: 14px 0 6px; font-size: 22px; }
.process-step small { color: var(--muted); line-height: 1.4; }
.process-detail { margin-top: 16px; padding: 22px; border: 1px solid rgba(255,255,255,.1); border-radius: 20px; background: rgba(255,255,255,.035); }
.process-detail strong { color: var(--lime); font-size: 18px; }
.process-detail p { margin: 8px 0 0; }
.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 30px; }
.partner-card { min-height: 190px; }
.partner-card p { margin: 12px 0 0; font-size: 14.5px; }
.partner-card [data-icon] { width: 50px; height: 50px; border: 1px solid var(--line); border-radius: 50%; }

.commercial {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 36%, rgba(184,234,53,.1), transparent 26%),
    linear-gradient(180deg, transparent, rgba(0,0,0,.24));
}
.commercial-grid { align-items: start; }
.driver-list { display: grid; gap: 10px; margin-top: 26px; }
.driver-list button {
  width: 100%;
  min-height: 54px;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 8px 18px 8px 8px;
  border: 1px solid rgba(184,234,53,.22);
  border-radius: 14px;
  background: rgba(5,12,11,.72);
  color: rgba(255,255,255,.88);
  text-align: left;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.driver-list button:hover,
.driver-list button:focus-visible {
  border-color: rgba(184,234,53,.55);
  background: rgba(184,234,53,.07);
  box-shadow: inset 4px 0 0 rgba(184,234,53,.62);
}
.driver-list [data-icon] { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 12px; }
.driver-list span { color: var(--muted); font-size: 22px; transition: transform .2s ease, color .2s ease; }
.driver-list button:hover span,
.driver-list button:focus-visible span { color: var(--lime); transform: translateX(4px); }
.value-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 16px; }
.value-badges span { min-height: 72px; justify-content: flex-start; }
.contact-card { padding: 28px; overflow: visible; }
.contact-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(184,234,53,.44), transparent 34%, rgba(79,210,155,.32));
  opacity: .5;
}
.contact-card__head { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 22px; }
.contact-card__head [data-icon] { width: 52px; height: 52px; border: 1px solid var(--line-strong); border-radius: 50%; }
.contact-card__head h3 { margin-bottom: 4px; }
.contact-card__head p { margin: 0; }
.contact-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.contact-form label { display: grid; gap: 8px; position: relative; }
.contact-form label span { font-size: 13px; color: rgba(255,255,255,.86); }
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 13px;
  background: rgba(255,255,255,.055);
  color: white;
  outline: none;
  padding: 15px 16px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: rgba(184,234,53,.65); box-shadow: 0 0 0 4px rgba(184,234,53,.08); background: rgba(255,255,255,.075); }
.contact-form textarea { min-height: 150px; resize: vertical; }
.field-wide { grid-column: 1 / -1; }
.contact-form em { position: absolute; right: 14px; bottom: 10px; color: var(--muted-2); font-style: normal; font-size: 12px; pointer-events: none; }
.form-status { grid-column: 1 / -1; margin: 0; min-height: 24px; color: var(--lime); }
.form-status.is-error { color: #ff9d8b; }

.site-footer {
  padding: 52px 0 28px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(4,10,10,.9);
}
.footer-grid { display: grid; grid-template-columns: 1.3fr .55fr .55fr 1fr; gap: 42px; align-items: start; }
.footer-grid img {
  width: 320px;
  max-width: 100%;
  border-radius: 14px;
  background: #000;
  box-shadow: 0 18px 44px rgba(0,0,0,.25), inset 0 0 0 1px rgba(255,255,255,.06);
}
.footer-grid p { margin: 12px 0 0; }
.footer-grid nav { display: grid; gap: 12px; color: var(--muted); }
.footer-grid nav a:hover { color: var(--lime); }
.socials span { display: block; margin-bottom: 12px; color: white; }
.socials div { display: flex; gap: 12px; flex-wrap: wrap; }
.socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  color: rgba(255,255,255,.86);
  transition: transform .2s ease, border-color .2s ease, color .2s ease;
}
.socials a:hover { transform: translateY(-3px); border-color: var(--lime); color: var(--lime); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding-top: 28px; margin-top: 36px; border-top: 1px solid rgba(255,255,255,.08); color: var(--muted-2); }
.footer-bottom a:hover { color: var(--lime); }
.footer-bottom span { margin: 0 10px; color: rgba(255,255,255,.16); }

.spotlight-card { position: relative; isolation: isolate; }
.spotlight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(184,234,53,.16), transparent 34%);
  opacity: 0;
  transition: opacity .2s ease;
}
.spotlight-card:hover::before { opacity: 1; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .72s ease, transform .72s cubic-bezier(.16, 1, .3, 1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
[data-tilt-card] { transition: transform .18s ease-out; transform-style: preserve-3d; }

@media (max-width: 1120px) {
  :root { --header-h: 74px; }
  .nav-cta { display: none; }
  .hero__grid,
  .two-col,
  .commercial-grid,
  .solution-layout { grid-template-columns: 1fr; }
  .hero__visual { min-height: auto; }
  .visual-shell, .visual-shell img { height: 560px; min-height: 560px; }
  .about-visual, .about-visual img { height: 560px; min-height: 560px; }
  .sugar-panel { min-height: 620px; }
  .capability-grid { grid-template-columns: repeat(4, 1fr); }
  .usecase-tabs { grid-template-columns: repeat(3, 1fr); }
  .principle-grid { grid-template-columns: repeat(2, 1fr); }
  .principle-card:nth-child(2) { border-right: 0; }
  .principle-card:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.08); }
}

@media (max-width: 820px) {
  :root { --container: min(100vw - 26px, 720px); }
  .section { padding: calc(var(--header-h) + 36px) 0 82px; }
  .brand { width: 244px; height: 42px; padding: 4px 6px; }
  .nav-toggle { display: inline-block; margin-left: auto; }
  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 13px;
    right: 13px;
    display: grid;
    gap: 4px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    background: rgba(5,12,11,.96);
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
  }
  .site-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .site-nav a { padding: 14px 16px; border-radius: 12px; }
  .site-nav a:hover, .site-nav a.is-active { background: rgba(184,234,53,.07); }
  .site-nav a::after { display: none; }
  .hero h1, .section h2 { letter-spacing: -.04em; line-height: 1.04; }
  .hero__lead { font-size: 16px; }
  .hero__actions .btn { width: 100%; }
  .trust-chips { display: grid; }
  .trust-chip { width: 100%; justify-content: flex-start; }
  .visual-shell, .visual-shell img, .about-visual, .about-visual img { height: 420px; min-height: 420px; }
  .metric-card { width: 150px; padding: 12px; }
  .metric-card strong { font-size: 23px; }
  .audience-strip { grid-template-columns: 1fr 1fr; }
  .audience-pill { min-height: 86px; justify-content: flex-start; }
  .audience-pill:nth-child(2n) { border-right: 0; }
  .audience-pill:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.08); }
  .snapshot-card article { grid-template-columns: 48px 1fr; gap: 16px; }
  .snapshot-card article p { grid-column: 2; }
  .solution-grid, .partner-grid, .contact-form, .value-badges { grid-template-columns: 1fr; }
  .solution-card--wide { min-height: 112px; }
  .sugar-panel { min-height: 720px; }
  .sugar-panel__image::after { background: linear-gradient(180deg, rgba(5,12,11,.96), rgba(5,12,11,.72), rgba(5,12,11,.2)); }
  .sugar-panel__content { max-width: none; padding: 24px; }
  .usecase-tabs { grid-template-columns: 1fr 1fr; }
  .usecase-detail { display: block; }
  .usecase-detail strong { display: block; margin-bottom: 8px; }
  .capability-hero, .process-flow { grid-template-columns: 1fr; }
  .capability-image { justify-self: stretch; width: 100%; }
  .capability-grid { grid-template-columns: 1fr 1fr; }
  .process-flow::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { display: grid; }
}

@media (max-width: 520px) {
  .section { padding: calc(var(--header-h) + 30px) 0 70px; }
  .brand { width: 210px; height: 38px; }
  .hero h1 { font-size: clamp(42px, 14vw, 58px); }
  .section h2 { font-size: clamp(34px, 11vw, 48px); }
  .btn { width: 100%; }
  .audience-strip, .principle-grid, .usecase-tabs, .capability-grid, .footer-grid { grid-template-columns: 1fr; }
  .audience-pill, .principle-card { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .audience-pill:last-child, .principle-card:last-child { border-bottom: 0; }
  .visual-shell, .visual-shell img, .about-visual, .about-visual img { height: 340px; min-height: 340px; }
  .metric-card--yield { top: 12px; right: 12px; }
  .metric-card--health { right: 12px; bottom: 14px; }
  .snapshot-card article { grid-template-columns: 1fr; }
  .snapshot-card article p { grid-column: auto; }
  .sugar-panel { min-height: 760px; }
  .process-wrap, .contact-card, .usecase-wrap, .capability-hero { padding: 18px; }
}

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