:root {
  --green-950: #03291d;
  --green-900: #063f2b;
  --green-800: #0a5238;
  --green-700: #126847;
  --green-600: #27815c;
  --green-500: #4b9a70;
  --green-300: #a9d0ba;
  --green-200: #d4e7dc;
  --green-100: #edf6f0;
  --cream: #fbfaf6;
  --sand: #f3efe7;
  --ink: #10221a;
  --muted: #5d6b64;
  --line: rgba(6, 63, 43, .13);
  --white: #fff;
  --red: #a9463b;
  --orange: #d67a20;
  --shadow-sm: 0 12px 30px rgba(11, 45, 33, .08);
  --shadow-md: 0 25px 70px rgba(11, 45, 33, .13);
  --shadow-lg: 0 35px 110px rgba(5, 35, 25, .18);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 36px;
  --container: min(1180px, calc(100% - 40px));
  --ease: cubic-bezier(.2,.75,.25,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, Aptos, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
svg { width: 1em; height: 1em; display: block; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.container { width: var(--container); margin-inline: auto; }
.skip-link { position: fixed; z-index: 999; top: 12px; left: 12px; padding: 10px 16px; background: var(--white); border-radius: 999px; transform: translateY(-160%); transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); }

.topline { background: var(--green-950); color: rgba(255,255,255,.78); font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; }
.topline__inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topline span { display: inline-flex; align-items: center; gap: 7px; }
.topline svg { color: #8bc69f; }

.site-header { position: sticky; top: 0; z-index: 80; background: rgba(251,250,246,.84); backdrop-filter: blur(18px); border-bottom: 1px solid transparent; transition: box-shadow .3s ease, border-color .3s ease, background .3s ease; }
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 12px 34px rgba(5, 35, 25, .07); background: rgba(251,250,246,.94); }
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: 215px; }
.brand__mark { width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center; color: var(--white); background: var(--green-900); box-shadow: 0 10px 22px rgba(6,63,43,.18); }
.brand__mark svg { font-size: 1.65rem; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__text strong { font-size: 1.18rem; letter-spacing: .035em; color: var(--green-900); }
.brand__text strong i { font-style: normal; font-weight: 500; }
.brand__text small { margin-top: 6px; font-size: .57rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }
.main-nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 28px); }
.main-nav > a:not(.button) { font-size: .88rem; font-weight: 650; color: #34473e; position: relative; }
.main-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--green-600); transition: right .25s ease; }
.main-nav > a:not(.button):hover::after, .main-nav > a:not(.button):focus-visible::after { right: 0; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: var(--white); place-items: center; cursor: pointer; }
.nav-toggle svg { font-size: 1.35rem; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 0; cursor: pointer; background: var(--green-900); color: var(--white); border-radius: 999px; padding: 14px 22px; font-size: .88rem; font-weight: 750; box-shadow: 0 12px 28px rgba(6,63,43,.22); transition: transform .25s var(--ease), background .25s ease, box-shadow .25s ease; }
.button svg { font-size: 1.05rem; }
.button:hover, .button:focus-visible { transform: translateY(-2px); background: var(--green-700); box-shadow: 0 18px 34px rgba(6,63,43,.25); }
.button--small { padding: 11px 18px; font-size: .79rem; }
.button--ghost { color: var(--green-900); background: rgba(255,255,255,.76); border: 1px solid var(--green-200); box-shadow: none; }
.button--ghost:hover { background: var(--white); box-shadow: var(--shadow-sm); }
.button--light { background: var(--white); color: var(--green-950); box-shadow: 0 12px 30px rgba(0,0,0,.14); }
.button--light:hover { background: #eef8f1; color: var(--green-950); }
.button--full { width: 100%; }

.hero {
  position: relative;
  min-height: calc(100svh - 78px);
  padding: 92px 0 34px;
  overflow: clip;
  background: url('../assets/images/hero-header-clean.webp') center center / cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.42) 0%, rgba(255,255,255,.36) 100%);
}
.hero__glow,
.hero__glow--one,
.hero__glow--two,
.hero__media,
.hero__visual,
.hero__image-frame,
.floating-card { display: none; }
.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  min-height: calc(100svh - 190px);
}
.hero__content {
  max-width: min(1080px, 100%);
  padding: clamp(20px, 2vw, 30px) clamp(12px, 2vw, 22px);
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-align: center;
  backdrop-filter: none;
}

.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--green-700); font-size: .74rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow svg { font-size: 1rem; }
.eyebrow--light { color: #9bd0ae; }
.hero h1, .section-heading h2, .products-copy h2, .contact-copy h2, .faq-intro h2 { margin: 18px 0 20px; font-size: clamp(2.75rem, 5.7vw, 5.5rem); line-height: .98; letter-spacing: -.055em; font-weight: 790; color: var(--green-950); }
.hero h1 span, .section-heading h2 span, .products-copy h2 span { color: var(--green-600); }
.hero__lead { max-width: 860px; margin: 0 auto; color: #111111; font-size: clamp(1rem, 1.4vw, 1.18rem); line-height: 1.72; }

.hero h1 { text-shadow: 0 10px 20px rgba(255,255,255,.45); }
.hero__lead { text-shadow: 0 4px 10px rgba(255,255,255,.35); }
.hero__actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.hero__proof { margin-top: 38px; display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.hero__proof > div { min-width: 0; display: grid; grid-template-columns: 42px 1fr; grid-template-rows: auto auto; align-items: center; column-gap: 9px; padding: 10px 6px; justify-self: center; text-align: left; width: 100%; max-width: 210px; background: transparent; border: 0; border-radius: 0; }
.hero__proof span { grid-row: 1 / 3; width: 40px; height: 40px; border: 1px solid var(--green-200); border-radius: 50%; color: var(--green-700); display: grid; place-items: center; background: rgba(255,255,255,.9); }
.hero__proof b { font-size: .78rem; line-height: 1.15; }
.hero__proof small { font-size: .64rem; color: #111111; line-height: 1.2; margin-top: 3px; }
.hero__footer { position: relative; z-index: 2; margin-top: 24px; min-height: 56px; padding: 0 10px; border: 0; border-radius: 0; display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; color: #111111; background: transparent; font-size: .68rem; font-weight: 800; letter-spacing: .11em; box-shadow: none; }
.hero__footer i { width: 1px; height: 18px; background: var(--line); }
.hero__footer span { display: inline-flex; align-items: center; justify-content: center; min-height: 38px; padding: 0 14px; border: 1px solid rgba(17,17,17,.18); border-radius: 999px; background: rgba(255,255,255,.62); box-shadow: 0 8px 20px rgba(7,39,28,.06); }
.hero__footer i { display: none; }


.section { position: relative; padding: clamp(88px, 10vw, 145px) 0; }
.section-heading { margin-bottom: 48px; }
.section-heading--center { max-width: 840px; margin-inline: auto; text-align: center; }
.section-heading--split { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 70px; }
.section-heading h2, .products-copy h2, .contact-copy h2, .faq-intro h2 { font-size: clamp(2.3rem, 4.6vw, 4.35rem); line-height: 1.03; margin-top: 14px; }
.section-heading p { max-width: 720px; margin: 0 auto; color: var(--muted); font-size: 1.02rem; }
.section-heading--split p { margin: 0 0 8px; }

.problem-section { background: #fff; }
.comparison-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.comparison-card { position: relative; overflow: hidden; border-radius: var(--radius); padding: clamp(26px, 4vw, 42px); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.comparison-card::after { content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%; right: -95px; bottom: -125px; opacity: .4; }
.comparison-card--problem { background: linear-gradient(145deg, #fff 0%, #fff8f4 100%); }
.comparison-card--problem::after { background: rgba(169,70,59,.14); }
.comparison-card--solution { background: linear-gradient(145deg, #fbfffc 0%, var(--green-100) 100%); }
.comparison-card--solution::after { background: rgba(75,154,112,.16); }
.comparison-card__top { display: flex; gap: 16px; align-items: center; margin-bottom: 26px; }
.comparison-card__icon { width: 48px; height: 48px; border-radius: 50%; flex: 0 0 auto; display: grid; place-items: center; font-size: 1.55rem; font-weight: 400; }
.comparison-card--problem .comparison-card__icon { color: var(--red); background: #fff0ec; }
.comparison-card--solution .comparison-card__icon { color: var(--green-800); background: #dff1e6; }
.comparison-card__top small { display: block; margin-bottom: 4px; font-size: .66rem; font-weight: 850; letter-spacing: .12em; color: var(--muted); }
.comparison-card__top h3 { margin: 0; font-size: clamp(1.25rem, 2.2vw, 1.75rem); }
.feature-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.feature-list li { position: relative; padding-left: 26px; color: #425249; }
.feature-list li::before { content: ""; position: absolute; left: 0; top: .45em; width: 14px; height: 14px; border-radius: 50%; background: var(--green-700); box-shadow: inset 0 0 0 4px #dff1e6; }
.feature-list--negative li::before { background: var(--red); box-shadow: inset 0 0 0 4px #fae8e3; }

.journey-section { background: linear-gradient(180deg, var(--cream), #f2f7f4); }
.journey-steps { list-style: none; padding: 0; margin: 48px 0 36px; display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.journey-steps li { position: relative; min-height: 270px; padding: 22px 18px 20px; border-radius: 22px; background: rgba(255,255,255,.76); border: 1px solid var(--line); box-shadow: 0 10px 28px rgba(5,35,25,.045); }
.journey-steps li:not(:last-child)::after { content: ""; position: absolute; z-index: 2; right: -18px; top: 81px; width: 20px; height: 20px; border-top: 2px solid var(--green-300); border-right: 2px solid var(--green-300); transform: rotate(45deg); }
.journey-steps__number { display: block; color: var(--green-600); font-size: .66rem; font-weight: 900; letter-spacing: .14em; }
.journey-steps__icon { width: 54px; height: 54px; margin: 18px 0 22px; display: grid; place-items: center; border-radius: 18px; color: var(--green-800); background: var(--green-100); font-size: 1.55rem; }
.journey-steps h3 { margin: 0 0 10px; font-size: 1.05rem; line-height: 1.2; }
.journey-steps p { margin: 0; font-size: .81rem; color: var(--muted); }
.journey-visual { position: relative; width: 100%; margin-top: 10px; padding: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); cursor: zoom-in; box-shadow: var(--shadow-md); }
.journey-visual img { width: 100%; height: auto; display: block; }
.journey-visual::after { content: ""; position: absolute; inset: auto 0 0; height: 30%; background: linear-gradient(transparent, rgba(3,41,29,.62)); pointer-events: none; }
.journey-visual > span { position: absolute; z-index: 2; right: 22px; bottom: 18px; display: inline-flex; align-items: center; gap: 9px; color: var(--white); font-size: .8rem; font-weight: 750; }
.journey-visual > span svg { border: 1px solid rgba(255,255,255,.55); border-radius: 50%; padding: 4px; box-sizing: content-box; }

.platform-section { background: #fff; }
.platform-bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.bento-card { position: relative; min-height: 390px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--cream); box-shadow: var(--shadow-sm); }
.bento-card__copy { position: relative; z-index: 2; }
.bento-card__copy h3 { margin: 8px 0 12px; font-size: clamp(1.45rem, 2.5vw, 2.2rem); line-height: 1.08; letter-spacing: -.025em; }
.bento-card__copy p { margin: 0; color: var(--muted); }
.card-kicker { color: var(--green-700); font-size: .65rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.bento-card--app { grid-column: span 7; min-height: 0; padding: 0; display: block; background: linear-gradient(135deg, #f7fbf8, #edf4ef); }
.bento-card--app img { width: 100%; max-width: 100%; height: auto; transform: none; border-radius: inherit; }
.mini-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 9px; color: var(--green-800); font-size: .78rem; font-weight: 700; }
.mini-list li { display: flex; align-items: center; gap: 8px; }
.mini-list li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green-600); }
.bento-card--kiosk { grid-column: span 5; min-height: 520px; background: var(--green-950); color: var(--white); }
.bento-card--kiosk .bento-card__copy { padding: 36px 36px 0; }
.bento-card--kiosk .card-kicker { color: #8ed0a6; }
.bento-card--kiosk .bento-card__copy p { color: rgba(255,255,255,.68); }
.kiosk-crop { position: relative; inset: auto; overflow: hidden; margin: 18px 26px 26px; border-radius: 24px; background: rgba(255,255,255,.04); display: flex; align-items: flex-end; justify-content: center; flex: 1; min-height: 280px; }
.kiosk-crop::after { display: none; }
.kiosk-crop img { width: 100%; max-width: 100%; height: auto; object-fit: contain; transform: none; object-position: center; }
.bento-card--dashboard { grid-column: span 8; min-height: 500px; padding: 38px 38px 0; background: linear-gradient(150deg, #fbfcfb, #f4f7f5); }
.bento-card--dashboard .bento-card__copy { max-width: 640px; }
.bento-card--dashboard img { width: 100%; max-width: 100%; height: auto; margin-top: 25px; border-radius: 20px 20px 0 0; box-shadow: 0 -4px 26px rgba(5,35,25,.08); }
.bento-card--engine { grid-column: span 4; min-height: 500px; padding: 38px; display: flex; flex-direction: column; justify-content: flex-end; background: linear-gradient(155deg, var(--green-900), var(--green-950)); color: var(--white); }
.bento-card--engine .card-kicker { color: #91d1a9; }
.bento-card--engine .bento-card__copy p { color: rgba(255,255,255,.7); }
.engine-orbit { position: absolute; width: 240px; height: 240px; top: 20px; left: 50%; transform: translateX(-50%); border: 1px dashed rgba(255,255,255,.28); border-radius: 50%; }
.engine-orbit::after, .engine-orbit::before { content: ""; position: absolute; inset: 28px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; }
.engine-orbit::before { inset: 62px; }
.engine-orbit__center { position: absolute; inset: 50%; width: 78px; height: 78px; margin: -39px; display: grid; place-items: center; color: var(--green-950); background: #e8f4ec; border-radius: 24px; font-size: 2rem; box-shadow: 0 12px 28px rgba(0,0,0,.25); }
.engine-orbit i { position: absolute; width: 14px; height: 14px; border-radius: 50%; background: #8ed0a6; box-shadow: 0 0 0 6px rgba(142,208,166,.12); }
.engine-orbit i:nth-of-type(1) { left: 22px; top: 50%; }
.engine-orbit i:nth-of-type(2) { right: 22px; top: 50%; }
.engine-orbit i:nth-of-type(3) { top: 22px; left: 50%; }
.engine-orbit i:nth-of-type(4) { bottom: 22px; left: 50%; }
.engine-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 20px; }
.engine-tags span { padding: 7px 10px; border-radius: 999px; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.06); color: rgba(255,255,255,.82); font-size: .64rem; }

.products-section { background: linear-gradient(180deg, #f2f7f4, var(--cream)); }
.products-grid { display: grid; grid-template-columns: .83fr 1.17fr; align-items: center; gap: clamp(40px, 7vw, 92px); }
.products-copy p { color: var(--muted); font-size: 1.02rem; }
.product-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.product-pills span { display: inline-flex; align-items: center; gap: 8px; padding: 9px 13px; border: 1px solid var(--line); background: rgba(255,255,255,.74); border-radius: 999px; color: #31443a; font-size: .78rem; font-weight: 700; }
.pill-dot { width: 9px; height: 9px; border-radius: 50%; }
.pill-dot--green { background: #75973e; }
.pill-dot--red { background: #9d2630; }
.pill-dot--orange { background: #f08b25; }
.pill-dot--oat { background: #b99569; }
.product-note { display: flex; align-items: flex-start; gap: 14px; margin-top: 28px; padding: 18px; border-radius: 17px; background: var(--green-100); color: var(--green-900); }
.product-note svg { flex: 0 0 auto; font-size: 1.4rem; margin-top: 3px; }
.product-note p { margin: 0; font-size: .8rem; color: #345245; }
.products-visual { margin: 0; border-radius: 36px; overflow: hidden; box-shadow: var(--shadow-lg); background: var(--white); }
.products-visual img { width: 100%; height: auto; display: block; }

.use-cases-section { background: #fff; }
.use-case-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.use-case { border-radius: var(--radius); border: 1px solid var(--line); overflow: hidden; }
.use-case--image { position: relative; background: var(--green-950); }
.use-case--image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(3,41,29,.92) 100%); }
.use-case--image img { width: 100%; height: auto; object-fit: cover; transition: transform .8s var(--ease); }
.use-case--image:hover img { transform: scale(1.035); }
.use-case__overlay { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; padding: 30px; color: var(--white); }
.use-case__icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 16px; background: rgba(255,255,255,.92); color: var(--green-900); font-size: 1.35rem; }
.use-case__overlay small, .use-case--compact small { display: block; margin-top: 15px; color: #9fd4b1; font-size: .64rem; font-weight: 850; letter-spacing: .12em; }
.use-case__overlay h3, .use-case--compact h3 { margin: 5px 0 8px; font-size: 1.65rem; }
.use-case__overlay p { max-width: 470px; margin: 0; color: rgba(255,255,255,.74); }
.use-case--compact { display: flex; gap: 20px; align-items: flex-start; padding: 28px; background: var(--green-100); }
.use-case--compact .use-case__icon { flex: 0 0 auto; background: var(--white); }
.use-case--compact small { margin-top: 0; color: var(--green-700); }
.use-case--compact p { margin: 0; color: var(--muted); }

.difference-section { overflow: hidden; background: var(--green-950); color: var(--white); }
.difference-section__pattern { position: absolute; inset: 0; opacity: .24; background-image: radial-gradient(rgba(255,255,255,.14) 1px, transparent 1px); background-size: 28px 28px; mask-image: linear-gradient(to bottom, transparent, #000 25%, #000); }
.section-heading--light { position: relative; z-index: 2; max-width: 820px; }
.section-heading--light h2 { color: var(--white); }
.section-heading--light h2 span { color: #8fcea6; }
.section-heading--light p { margin: 0; color: rgba(255,255,255,.66); }
.difference-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.difference-grid article { min-height: 300px; padding: 26px; border-radius: 22px; border: 1px solid rgba(255,255,255,.13); background: linear-gradient(155deg, rgba(255,255,255,.085), rgba(255,255,255,.025)); backdrop-filter: blur(8px); transition: transform .3s var(--ease), border-color .3s ease; }
.difference-grid article:hover { transform: translateY(-5px); border-color: rgba(159,212,177,.4); }
.difference-grid article > span { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 18px; color: var(--green-950); background: #cce5d5; font-size: 1.45rem; }
.difference-grid article > small { display: block; margin-top: 28px; color: #84be99; font-weight: 900; letter-spacing: .14em; }
.difference-grid h3 { margin: 8px 0 12px; font-size: 1.32rem; line-height: 1.15; }
.difference-grid p { margin: 0; color: rgba(255,255,255,.64); font-size: .88rem; }

.pilot-section { background: linear-gradient(180deg, #f7faf8, #eef5f1); }
.pilot-layout { display: grid; grid-template-columns: 1.12fr .88fr; gap: 26px; align-items: stretch; }
.metrics-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.metrics-grid article { min-height: 255px; padding: 26px; border-radius: 22px; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.metrics-grid article > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; color: var(--green-800); background: var(--green-100); font-size: 1.35rem; }
.metrics-grid b { display: block; margin: 18px 0 2px; color: var(--green-900); font-size: clamp(2.15rem, 4vw, 3.35rem); line-height: 1; letter-spacing: -.04em; }
.metrics-grid h3 { margin: 8px 0 8px; font-size: 1rem; }
.metrics-grid p { margin: 0; color: var(--muted); font-size: .78rem; }
.readiness-card { padding: 30px; border-radius: var(--radius); background: var(--green-900); color: var(--white); box-shadow: var(--shadow-md); }
.readiness-card__header { display: flex; gap: 14px; align-items: center; }
.readiness-card__header > span { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 16px; background: rgba(255,255,255,.1); color: #b9ddc6; font-size: 1.35rem; }
.readiness-card__header small { display: block; color: #9fd0b0; font-size: .64rem; font-weight: 850; letter-spacing: .13em; }
.readiness-card__header h3 { margin: 4px 0 0; font-size: 1.45rem; }
.status-list { list-style: none; padding: 0; margin: 28px 0; display: grid; gap: 20px; }
.status-list li { display: grid; grid-template-columns: 26px 1fr; gap: 12px; align-items: start; }
.status-list svg { padding: 5px; box-sizing: content-box; border-radius: 50%; background: #a4d3b4; color: var(--green-950); }
.status-list b, .status-list span { display: block; }
.status-list b { margin-bottom: 3px; font-size: .9rem; }
.status-list span { color: rgba(255,255,255,.68); font-size: .77rem; }
.readiness-card__next { margin: 0 0 22px; padding: 17px; border-radius: 15px; background: rgba(255,255,255,.08); }
.readiness-card__next small { color: #95c9a6; font-size: .61rem; font-weight: 850; letter-spacing: .12em; }
.readiness-card__next p { margin: 6px 0 0; color: rgba(255,255,255,.72); font-size: .75rem; }
.readiness-card .button { background: var(--white); color: var(--green-950); box-shadow: none; }

.partnership-section { background: #fff; }
.partnership-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.partnership-grid article { position: relative; min-height: 300px; padding: 28px 24px; border: 1px solid var(--line); border-radius: 22px; background: linear-gradient(150deg, var(--white), #f8fbf9); overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s ease; }
.partnership-grid article:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.partnership-grid article > svg { width: 50px; height: 50px; padding: 12px; box-sizing: border-box; border-radius: 15px; color: var(--green-800); background: var(--green-100); }
.partnership-grid__number { position: absolute; top: 22px; right: 22px; color: #bacac1; font-size: .72rem; font-weight: 900; letter-spacing: .13em; }
.partnership-grid h3 { margin: 22px 0 10px; font-size: 1.18rem; }
.partnership-grid p { margin: 0; color: var(--muted); font-size: .83rem; }
.partnership-grid a { position: absolute; left: 24px; bottom: 24px; display: inline-flex; align-items: center; gap: 8px; color: var(--green-700); font-weight: 800; font-size: .77rem; }

.faq-section { background: var(--cream); }
.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; align-items: start; }
.faq-intro { position: sticky; top: 130px; }
.faq-intro p { color: var(--muted); }
.text-link { margin-top: 20px; display: inline-flex; align-items: center; gap: 8px; color: var(--green-700); font-weight: 800; font-size: .85rem; }
.accordion { border-top: 1px solid var(--line); }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__item h3 { margin: 0; }
.accordion__item button { width: 100%; padding: 24px 0; border: 0; background: transparent; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; text-align: left; font-weight: 750; }
.accordion__item button svg { flex: 0 0 auto; color: var(--green-700); transition: transform .25s ease; }
.accordion__item button[aria-expanded="true"] svg { transform: rotate(45deg); }
.accordion__panel { padding: 0 42px 22px 0; color: var(--muted); }
.accordion__panel p { margin: 0; }

.contact-section { padding: 30px 0 100px; background: var(--cream); }
.contact-card { position: relative; overflow: hidden; display: grid; grid-template-columns: .87fr 1.13fr; gap: 56px; padding: clamp(34px, 6vw, 72px); border-radius: var(--radius-lg); background: linear-gradient(140deg, var(--green-800), var(--green-950)); color: var(--white); box-shadow: var(--shadow-lg); }
.contact-card::after { content: ""; position: absolute; width: 430px; height: 430px; border-radius: 50%; right: -180px; top: -220px; border: 1px solid rgba(255,255,255,.12); box-shadow: 0 0 0 50px rgba(255,255,255,.025), 0 0 0 100px rgba(255,255,255,.018); }
.contact-copy, .pilot-form { position: relative; z-index: 2; }
.contact-copy h2 { color: var(--white); margin-bottom: 16px; }
.contact-copy > p { color: rgba(255,255,255,.7); }
.contact-points { margin-top: 26px; display: grid; gap: 10px; }
.contact-points span { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,.8); font-size: .82rem; }
.contact-points svg { padding: 3px; box-sizing: content-box; border-radius: 50%; background: #a4d3b4; color: var(--green-950); }
.contact-downloads { display: flex; gap: 18px; margin-top: 30px; }
.contact-downloads a { display: inline-flex; align-items: center; gap: 7px; color: #a9d9ba; font-weight: 750; font-size: .78rem; }
.pilot-form { padding: 26px; border-radius: 22px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.13); backdrop-filter: blur(10px); }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.pilot-form label { display: block; margin-bottom: 14px; color: rgba(255,255,255,.74); font-size: .7rem; font-weight: 750; }
.pilot-form input, .pilot-form textarea, .pilot-form select { width: 100%; margin-top: 7px; padding: 13px 14px; border: 1px solid rgba(255,255,255,.16); border-radius: 12px; color: var(--white); background: rgba(255,255,255,.08); outline: none; transition: border-color .2s ease, background .2s ease; }
.pilot-form select option { color: var(--ink); }
.pilot-form input::placeholder, .pilot-form textarea::placeholder { color: rgba(255,255,255,.4); }
.pilot-form input:focus, .pilot-form textarea:focus, .pilot-form select:focus { border-color: #98d0ab; background: rgba(255,255,255,.12); }
.pilot-form [aria-invalid="true"] { border-color: #ff9d8d; }
.form-note { margin: 12px 2px 0; color: rgba(255,255,255,.44); font-size: .62rem; }
.form-note code { color: rgba(255,255,255,.65); }
.form-message { min-height: 1.2em; margin-top: 9px; font-size: .72rem; color: #b8e6c8; }

.site-footer { padding: 62px 0 24px; background: #021e15; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.5fr .65fr .65fr 1fr; gap: 54px; }
.brand--footer .brand__mark { background: rgba(255,255,255,.1); box-shadow: none; }
.brand--footer .brand__text strong { color: var(--white); }
.brand--footer .brand__text small { color: rgba(255,255,255,.48); }
.footer-grid > div:first-child > p { margin: 18px 0 0; color: rgba(255,255,255,.55); }
.footer-grid > div:first-child > p b { color: #9ed0ae; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links h3 { margin: 0 0 10px; color: #8fc8a2; font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; }
.footer-links a { color: rgba(255,255,255,.64); font-size: .78rem; }
.footer-links a:hover { color: var(--white); }
.footer-status { align-self: start; padding: 18px; border-radius: 16px; border: 1px solid rgba(255,255,255,.09); background: rgba(255,255,255,.04); }
.footer-status span { display: flex; align-items: center; gap: 8px; color: #a4d3b4; font-size: .73rem; font-weight: 750; }
.footer-status i { width: 8px; height: 8px; border-radius: 50%; background: #7bca96; box-shadow: 0 0 0 5px rgba(123,202,150,.12); }
.footer-status p { margin: 10px 0 0; color: rgba(255,255,255,.45); font-size: .68rem; }
.footer-bottom { margin-top: 45px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.35); font-size: .66rem; }

.lightbox { position: fixed; inset: 0; z-index: 150; display: none; place-items: center; padding: 28px; background: rgba(2,20,14,.9); backdrop-filter: blur(12px); }
.lightbox.is-open { display: grid; }
.lightbox img { max-width: min(1500px, 96vw); max-height: 90vh; border-radius: 18px; box-shadow: 0 25px 80px rgba(0,0,0,.5); }
.lightbox button { position: fixed; top: 22px; right: 22px; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.12); color: var(--white); cursor: pointer; }
.toast { position: fixed; z-index: 180; left: 50%; bottom: 22px; transform: translate(-50%, 120px); opacity: 0; max-width: min(520px, calc(100% - 40px)); padding: 13px 18px; border-radius: 999px; background: var(--green-950); color: var(--white); box-shadow: var(--shadow-md); font-size: .78rem; transition: transform .3s var(--ease), opacity .3s ease; }
.toast.is-visible { transform: translate(-50%, 0); opacity: 1; }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .75s var(--ease), transform .75s var(--ease); transition-delay: var(--reveal-delay, 0ms); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .topline { display: none; }
  .main-nav { position: fixed; inset: 78px 0 auto; padding: 26px 20px 34px; background: rgba(251,250,246,.98); border-bottom: 1px solid var(--line); box-shadow: 0 28px 50px rgba(5,35,25,.12); flex-direction: column; align-items: stretch; transform: translateY(-130%); opacity: 0; pointer-events: none; transition: transform .35s var(--ease), opacity .25s ease; }
  .main-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav a { padding: 10px 4px; }
  .main-nav .button { margin-top: 8px; }
  .nav-toggle { display: grid; }
  .hero__media { min-height: 360px; max-height: 68svh; }
  .hero__content { max-width: 720px; }
  .journey-steps { grid-template-columns: repeat(3, 1fr); }
  .journey-steps li:not(:last-child)::after { display: none; }
  .bento-card--app, .bento-card--dashboard { grid-column: span 12; }
  .bento-card--kiosk, .bento-card--engine { grid-column: span 6; }
  .difference-grid, .partnership-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-status { grid-column: 1 / -1; }
}

@media (max-width: 780px) {
  :root { --container: min(100% - 28px, 1180px); --radius: 20px; --radius-lg: 26px; }
  .nav-wrap { min-height: 68px; }
  .main-nav { inset: 68px 0 auto; }
  .brand__mark { width: 38px; height: 38px; }
  .brand__text strong { font-size: 1rem; }
  .brand__text small { font-size: .5rem; }
  .hero__media { min-height: 300px; max-height: 56svh; background-position: center center; }
  .hero__content { padding: 28px; }
  .hero h1 { font-size: clamp(2.65rem, 14vw, 4.4rem); }
  .hero__lead { font-size: .96rem; }
  .hero__actions { align-items: stretch; flex-direction: column; }
  .hero__actions .button { width: 100%; }
  .hero__proof { grid-template-columns: repeat(2, 1fr); }
  .hero__proof > div { padding: 12px; }
  .hero__footer { overflow-x: auto; justify-content: flex-start; white-space: nowrap; padding-inline: 18px; }
  .section { padding: 82px 0; }
  .section-heading--split { grid-template-columns: 1fr; gap: 15px; }
  .section-heading h2, .products-copy h2, .contact-copy h2, .faq-intro h2 { font-size: clamp(2.2rem, 10.8vw, 3.5rem); }
  .comparison-grid { grid-template-columns: 1fr; }
  .journey-steps { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 14px; }
  .journey-steps li { flex: 0 0 78%; scroll-snap-align: start; min-height: 240px; }
  .journey-visual span { font-size: .7rem; }
  .bento-card--app, .bento-card--kiosk, .bento-card--dashboard, .bento-card--engine { grid-column: span 12; }
  .bento-card--app { padding: 0; min-height: 0; }
  .bento-card--app img { width: 100%; height: auto; transform: none; }
  .bento-card--kiosk { min-height: 540px; }
  .kiosk-crop { inset: auto; min-height: 250px; margin: 18px 18px 18px; }
  .bento-card--dashboard { padding: 26px 26px 0; min-height: 420px; }
  .bento-card--dashboard img { width: 100%; transform: none; }
  .products-grid { grid-template-columns: 1fr; }
  .use-case-grid { grid-template-columns: 1fr; }
  .use-case--image { min-height: 0; }
  .difference-grid, .partnership-grid { grid-template-columns: 1fr; }
  .pilot-layout { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-intro { position: static; }
  .contact-card { grid-template-columns: 1fr; gap: 34px; padding: 30px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-grid > div:first-child, .footer-status { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 520px) {
  .hero__proof { grid-template-columns: 1fr 1fr; gap: 2px 10px; }
  .hero__proof > div { grid-template-columns: 36px 1fr; }
  .hero__proof span { width: 34px; height: 34px; }
  .journey-steps li { flex-basis: 88%; }
  .metrics-grid { grid-template-columns: 1fr; }
  .use-case--image { min-height: 0; }
  .use-case__overlay { padding: 22px; }
  .contact-downloads { flex-direction: column; gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child, .footer-status { grid-column: auto; }
}


@media (max-width: 1080px) {
  .hero__content { max-width: 720px; }
}
@media (max-width: 780px) {
  .hero { padding-top: 46px; background-position: center center; }
  .hero__content { max-width: 100%; padding: 18px 8px; background: transparent; text-align: center; }
  .hero h1 { font-size: clamp(2.65rem, 14vw, 4.4rem); }
  .hero__lead { font-size: .96rem; }
  .hero__actions { align-items: stretch; flex-direction: column; }
  .hero__actions .button { width: 100%; }
  .hero__proof { grid-template-columns: repeat(2, 1fr); }
  .hero__footer { overflow-x: auto; justify-content: flex-start; white-space: nowrap; padding-inline: 18px; }
}
@media (max-width: 520px) {
  .hero__proof { grid-template-columns: 1fr 1fr; gap: 2px 10px; }
  .hero__proof > div { grid-template-columns: 36px 1fr; }
  .hero__proof span { width: 34px; height: 34px; }
}

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

.contact-downloads a { padding: 12px 16px; border-radius: 999px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.08); }
.contact-downloads a:hover { background: rgba(255,255,255,.14); }


/* Secure contact form helpers */
.website-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.pilot-form button[disabled] {
  cursor: wait;
  opacity: .72;
  transform: none;
}
.form-message[data-state="success"] { color: #b8e6c8; }
.form-message[data-state="error"] { color: #ffc1b8; }
