:root {
  --green: #7acb32;
  --green-bright: #8be23a;
  --ink: #07090a;
  --panel: #111619;
  --panel-2: #161d21;
  --line: #2c383d;
  --white: #f7f8f7;
  --muted: #aeb7ba;
  --header: 86px;
  --pad: clamp(24px, 5vw, 76px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-snap-type: y mandatory; background: var(--ink); }
body { margin: 0; background: var(--ink); color: var(--white); font-family: Inter, "Segoe UI", Arial, sans-serif; -webkit-font-smoothing: antialiased; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header { position: fixed; inset: 0 0 auto 0; z-index: 50; height: var(--header); display: flex; align-items: center; justify-content: space-between; padding: 12px clamp(18px,3.4vw,54px); background: linear-gradient(180deg,rgba(7,9,10,.96),rgba(7,9,10,.62) 76%,transparent); }
.brand img { width: 142px; height: 62px; object-fit: contain; }
.header-actions { display: flex; align-items: center; gap: 20px; }
.counter { display: flex; align-items: baseline; gap: 4px; color: #697479; font-variant-numeric: tabular-nums; font-size: 12px; letter-spacing: .12em; }
.counter b { color: var(--green); font-size: 18px; }
.header-contact { color: var(--white); text-decoration: none; font-size: 13px; font-weight: 800; letter-spacing: .02em; border-bottom: 2px solid var(--green); padding: 9px 0 7px; }
.menu-button { width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: rgba(17,22,25,.8); display: grid; place-content: center; gap: 4px; cursor: pointer; }
.menu-button span:not(.sr-only) { display: block; width: 16px; height: 2px; background: var(--white); transition: .25s; }
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.menu-panel { position: fixed; inset: 0 0 0 auto; width: min(430px,100%); z-index: 45; padding: 112px 38px 42px; background: rgba(11,15,17,.985); border-left: 1px solid var(--line); transform: translateX(102%); transition: transform .35s ease; overflow: auto; }
.menu-panel.open { transform: translateX(0); }
.menu-panel > p { margin: 0 0 20px; color: var(--green); font-weight: 900; letter-spacing: .13em; font-size: 12px; text-transform: uppercase; }
.menu-panel ol { list-style: none; margin: 0; padding: 0; }
.menu-panel a { display: flex; gap: 16px; align-items: baseline; padding: 12px 0; text-decoration: none; border-bottom: 1px solid #1f292d; color: #bac2c4; font-size: 17px; }
.menu-panel a b { color: #59666b; width: 24px; font-size: 11px; letter-spacing: .1em; }
.menu-panel a:hover, .menu-panel a.active { color: var(--white); }
.menu-panel a.active b { color: var(--green); }

.slide-rail { position: fixed; right: 24px; top: 50%; transform: translateY(-50%); z-index: 30; }
.slide-rail ol { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.slide-rail a { display: block; width: 5px; height: 5px; border-radius: 50%; background: #465156; transition: .2s; }
.slide-rail a:hover { transform: scale(1.8); background: #a1aaad; }
.slide-rail a.active { height: 21px; border-radius: 5px; background: var(--green); }
.progress { position: fixed; z-index: 55; left: 0; right: 0; bottom: 0; height: 3px; background: rgba(255,255,255,.07); }
.progress span { display: block; width: 0; height: 100%; background: var(--green); transition: width .2s; }

.slide { position: relative; min-height: 100svh; scroll-snap-align: start; overflow: hidden; border-bottom: 1px solid #141a1d; background: var(--ink); }
.slide:nth-child(even) { background: #090c0d; }
.slide::before { content: ""; position: absolute; top: 0; left: var(--pad); width: 86px; height: 3px; background: var(--green); opacity: .75; }
.slide-inner { position: relative; z-index: 2; min-height: 100svh; max-width: 1500px; margin: auto; padding: calc(var(--header) + 36px) var(--pad) 58px; display: flex; flex-direction: column; justify-content: center; }
.split { display: grid; grid-template-columns: minmax(0,1fr) minmax(350px,.88fr); gap: clamp(42px,6vw,96px); align-items: center; }
.copy { max-width: 760px; }
.eyebrow { color: var(--green); font-size: clamp(11px,1vw,14px); font-weight: 900; letter-spacing: .14em; margin: 0 0 20px; }
h1,h2,h3,p { margin-top: 0; }
h1 { font-size: clamp(48px,6.2vw,102px); line-height: .93; letter-spacing: -.055em; margin-bottom: 28px; }
h2 { font-size: clamp(38px,4.4vw,72px); line-height: .98; letter-spacing: -.045em; margin-bottom: 28px; }
h1 span, h2 span { color: var(--green); }
.lead { max-width: 780px; color: var(--muted); font-size: clamp(18px,1.45vw,24px); line-height: 1.45; margin-bottom: 34px; }
.section-heading { max-width: 980px; margin-bottom: clamp(30px,4vw,58px); }

.hero { background: radial-gradient(circle at 79% 45%,#16220e 0,rgba(16,30,14,.15) 30%,transparent 55%),var(--ink); }
.hero::before { display: none; }
.hero-grid { display: grid; grid-template-columns: minmax(0,.93fr) minmax(450px,1.07fr); gap: 32px; align-items: center; }
.hero-copy { position: relative; z-index: 4; }
.hero-copy .lead { max-width: 650px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 0 20px; border-radius: 3px; text-decoration: none; font-size: 13px; font-weight: 900; }
.button.primary { background: var(--green); color: #071005; }
.button.secondary { border: 1px solid #445057; background: #11171a; }
.socials { display: flex; flex-wrap: wrap; gap: 18px; }
.socials a { display: inline-flex; align-items: center; gap: 8px; color: #c5ccce; text-decoration: none; font-size: 13px; font-weight: 700; }
.socials img { width: 24px; height: 24px; object-fit: contain; border-radius: 5px; }
.socials.subtle { opacity: .72; }
.web-icon { display: grid; place-items: center; width: 24px; height: 24px; color: var(--green); border: 1px solid var(--green); border-radius: 50%; }
.product-stage { position: relative; min-height: min(72vh,680px); }
.stage-orbit { position: absolute; width: 72%; aspect-ratio: 1; border: 1px solid rgba(122,203,50,.27); border-radius: 50%; top: 8%; right: 3%; box-shadow: 0 0 120px rgba(122,203,50,.08), inset 0 0 80px rgba(122,203,50,.04); }
.stage-laptop { position: absolute; width: 78%; right: 0; top: 8%; filter: drop-shadow(0 34px 38px rgba(0,0,0,.65)); }
.stage-pos { position: absolute; width: 45%; left: 2%; bottom: 2%; filter: drop-shadow(0 30px 30px rgba(0,0,0,.8)); }
.stage-mobile { position: absolute; height: 52%; right: 1%; bottom: 2%; filter: drop-shadow(0 28px 26px rgba(0,0,0,.65)); }
.scroll-cue { position: absolute; left: 50%; bottom: 20px; transform: translateX(-50%); display: flex; align-items: center; gap: 10px; text-decoration: none; color: #697377; font-size: 11px; letter-spacing: .11em; text-transform: uppercase; z-index: 5; }
.scroll-cue i { width: 1px; height: 26px; background: linear-gradient(var(--green),transparent); }

.proof-row { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin: 38px 0 26px; }
.proof-row div { padding: 24px 22px 24px 0; }
.proof-row div + div { border-left: 1px solid var(--line); padding-left: 22px; }
.proof-row strong { display: block; color: var(--green); font-size: clamp(34px,3vw,52px); line-height: 1; margin-bottom: 9px; }
.proof-row span { color: #a8b1b4; font-size: 13px; line-height: 1.35; }
.award-line { color: var(--white); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.photo-stack { position: relative; min-height: 560px; }
.photo-main { width: 100%; height: 100%; min-height: 560px; object-fit: cover; border-radius: 4px; filter: saturate(.94) contrast(1.05); }
.photo-stack::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,transparent 55%,rgba(0,0,0,.65)); }
.floating-note { position: absolute; z-index: 2; left: -28px; bottom: 38px; background: var(--green); color: #0b1308; padding: 18px 22px; box-shadow: 0 18px 40px rgba(0,0,0,.35); }
.floating-note b, .floating-note span { display: block; }
.floating-note b { font-size: 18px; }.floating-note span { font-size: 13px; margin-top: 3px; }

.market-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.market { min-height: 310px; padding: 32px; border: 1px solid var(--line); background: linear-gradient(145deg,#141a1d,#0d1113); position: relative; overflow: hidden; isolation: isolate; }
.market::before { content: ""; position: absolute; inset: 0; z-index: -2; background-position: right 24px center; background-repeat: no-repeat; background-size: 48% auto; opacity: .17; filter: drop-shadow(0 0 18px rgba(126,203,49,.22)); }
.market::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg,rgba(8,11,12,.98) 0%,rgba(8,11,12,.88) 50%,rgba(8,11,12,.46) 100%), radial-gradient(circle at 90% 85%,rgba(126,203,49,.22),transparent 40%); }
.market-hospitality::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 220' fill='none' stroke='%237ecb31' stroke-width='5'%3E%3Cpath d='M75 24h70l-8 119H83L75 24Z M84 61h52 M90 101h40 M110 24V8 M62 151h96 M52 181h116'/%3E%3C/svg%3E"); }
.market-retail::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 220' fill='none' stroke='%237ecb31' stroke-width='5'%3E%3Cpath d='M36 83h148v102H36V83Z M25 83 45 29h130l20 54 M59 83V60m34 23V60m34 23V60m34 23V60 M59 116h47v69m26-69h29v35h-29v-35Z'/%3E%3C/svg%3E"); }
.market-public::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 220' fill='none' stroke='%237ecb31' stroke-width='5'%3E%3Ccircle cx='110' cy='88' r='64'/%3E%3Ccircle cx='110' cy='88' r='7'/%3E%3Cpath d='M110 24v128M46 88h128M65 43l90 90m0-90-90 90M80 190h60M92 151l-14 39m50-39 14 39'/%3E%3C/svg%3E"); }
.market-icon { display: grid; place-items: center; width: 64px; height: 64px; color: var(--green); border: 1px solid #4b613f; background: rgba(18,26,19,.88); margin-bottom: 52px; box-shadow: 0 0 24px rgba(126,203,49,.08); }
.market-icon svg { width: 37px; height: 37px; fill: none; stroke: currentColor; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.market h3, .market p { position: relative; z-index: 1; max-width: 82%; }
.market h3 { font-size: 26px; margin-bottom: 13px; }.market p { color: var(--muted); line-height: 1.6; margin: 0; font-size: 15px; }

.ecosystem-layout { display: grid; grid-template-columns: minmax(360px,.75fr) minmax(480px,1.25fr); gap: 54px; align-items: center; }
.numbered-points { display: grid; gap: 22px; margin-top: 38px; }
.numbered-points > div { display: grid; grid-template-columns: 48px 1fr; gap: 15px; border-top: 1px solid var(--line); padding-top: 18px; }
.numbered-points span { color: var(--green); font-size: 13px; font-weight: 900; }.numbered-points p { color: var(--muted); line-height: 1.45; margin: 0; }.numbered-points b { display: block; color: var(--white); font-size: 20px; margin-bottom: 4px; }
.ecosystem-visual { position: relative; display: grid; place-items: center; min-height: 580px; background: radial-gradient(circle,rgba(45,103,156,.13),transparent 65%); }
.ecosystem-visual img { max-height: 70vh; width: 100%; object-fit: contain; }
.visual-caption { position: absolute; left: 20px; bottom: 18px; background: rgba(15,20,22,.92); padding: 14px 18px; border-left: 3px solid var(--green); }
.visual-caption b, .visual-caption span { display: block; }.visual-caption span { color: var(--muted); font-size: 13px; margin-top: 4px; }

.retail-visual { min-height: 600px; display: grid; place-items: center; background: radial-gradient(circle,rgba(45,103,156,.12),transparent 65%); }
.retail-visual img { max-height: 70vh; width: 100%; object-fit: contain; }
.feature-list { display: grid; gap: 23px; }
.feature-list > div { position: relative; padding-left: 23px; }
.feature-list > div::before { content: ""; position: absolute; width: 8px; height: 8px; border-radius: 50%; left: 0; top: 8px; background: var(--green); box-shadow: 0 0 0 5px rgba(122,203,50,.08); }
.feature-list b, .feature-list span { display: block; }.feature-list b { font-size: 18px; margin-bottom: 5px; }.feature-list span { color: var(--muted); line-height: 1.45; font-size: 15px; }
.feature-list.compact { gap: 18px; }
.tag-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 34px; }.tag-row span { border: 1px solid var(--line); color: #b8c0c2; padding: 7px 11px; font-size: 12px; }

.product-grid { display: grid; grid-template-columns: repeat(5,1fr); border: 1px solid var(--line); }
.product-grid > div { position: relative; min-height: 150px; padding: 23px; background: linear-gradient(145deg,#141a1d,#0c1012); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.product-grid > div:nth-child(5n) { border-right: 0; }.product-grid > div:nth-last-child(-n+5) { border-bottom: 0; }
.product-grid em { display: block; color: var(--green); font-style: normal; font-size: 12px; font-weight: 900; margin-bottom: 32px; }.product-grid b,.product-grid span { display: block; }.product-grid b { font-size: 17px; }.product-grid span { color: var(--muted); font-size: 13px; margin-top: 5px; }

.journey { display: grid; grid-template-columns: repeat(6,1fr); position: relative; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.journey article { min-height: 260px; padding: 30px 22px; display: flex; flex-direction: column; justify-content: flex-end; border-right: 1px solid var(--line); transition: .25s; }
.journey article:last-child { border-right: 0; }.journey article:hover { background: #131a1d; transform: translateY(-8px); border-top: 3px solid var(--green); }
.journey span { color: var(--green); font-size: 11px; font-weight: 900; letter-spacing: .11em; margin-bottom: auto; }.journey b { font-size: 20px; }.journey p { color: var(--muted); font-size: 13px; line-height: 1.35; margin: 7px 0 0; }

.product-focus { display: grid; grid-template-columns: minmax(420px,1fr) minmax(440px,.92fr); gap: 70px; align-items: center; }
.product-focus-wide { grid-template-columns: minmax(430px,.85fr) minmax(500px,1.15fr); }
.product-image { background: #e9edef; min-height: 580px; display: grid; place-items: center; border-radius: 4px; overflow: hidden; }
.product-image img { width: 94%; max-height: 68vh; object-fit: contain; }
.flow-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 38px; }
.flow-steps div { min-height: 140px; padding: 18px; background: #111619; }.flow-steps span,.flow-steps b,.flow-steps small { display: block; }.flow-steps span { color: var(--green); font-weight: 900; font-size: 12px; margin-bottom: 24px; }.flow-steps b { font-size: 19px; }.flow-steps small { color: var(--muted); margin-top: 6px; line-height: 1.4; }
.highlight-line { border: 1px solid #507d2f; background: #111812; color: var(--white); padding: 15px 18px; text-align: center; font-weight: 800; margin: 28px 0 0; }
.laptop-visual { position: relative; display: grid; place-items: center; min-height: 590px; }.laptop-visual img { position: relative; z-index: 2; width: 100%; filter: drop-shadow(0 30px 30px rgba(0,0,0,.7)); }.halo { position: absolute; width: 82%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle,rgba(122,203,50,.2),transparent 70%); }

.pos-showcase { display: grid; grid-template-columns: minmax(560px,1.35fr) minmax(300px,.65fr); gap: 56px; align-items: center; }
.dual-pos { display: grid; grid-template-columns: 1fr 1fr; background: #e9edef; padding: 28px 20px; min-height: 500px; align-items: center; border-radius: 4px; }.dual-pos img { width: 100%; max-height: 58vh; object-fit: contain; }

.hardware-layout { display: grid; grid-template-columns: minmax(390px,.82fr) minmax(500px,1.18fr); gap: 64px; align-items: center; }
.install-photo { height: min(72vh,670px); overflow: hidden; border-radius: 4px; }.install-photo img { width: 100%; height: 100%; object-fit: cover; }
.hardware-model { display: grid; grid-template-columns: 210px 1fr; gap: 20px; align-items: center; background: #eef1f2; color: #0c1113; padding: 14px 18px; margin: 28px 0; }.hardware-model img { height: 145px; width: 100%; object-fit: contain; }.hardware-model b,.hardware-model span { display: block; }.hardware-model span { color: #455056; font-size: 13px; line-height: 1.4; margin-top: 5px; }

.payments-layout { display: grid; grid-template-columns: minmax(420px,.9fr) minmax(470px,1.1fr); gap: 72px; align-items: center; }
.payment-stage { min-height: 590px; position: relative; background: radial-gradient(circle at 55% 45%,rgba(122,203,50,.13),transparent 55%); }.preferred { position: absolute; top: 6%; right: 7%; background: white; padding: 16px 24px; width: 250px; }.preferred span { display: block; color: #384448; font-size: 10px; font-weight: 900; letter-spacing: .12em; margin-bottom: 9px; }.preferred img { width: 170px; margin: auto; }.payment-device { position: absolute; height: 63%; left: 7%; bottom: 16%; filter: drop-shadow(0 28px 25px rgba(0,0,0,.7)); }.payment-logos { position: absolute; right: 2%; bottom: 17%; width: 52%; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 10px; }.payment-logos img { width: 100%; height: 70px; object-fit: contain; background: white; padding: 9px; }.payment-stage small { position: absolute; bottom: 7%; right: 3%; color: var(--muted); }

.integration-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.integration-grid > div { background: #11171a; border: 1px solid var(--line); padding: 28px; }.integration-grid h3 { color: var(--green); font-size: 18px; margin-bottom: 24px; }.integration-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }.integration-grid li { padding: 13px 14px; background: #171e22; border-left: 3px solid #344148; font-weight: 800; font-size: 14px; }.integration-grid .development { border-color: #56852e; background: linear-gradient(145deg,#142015,#0f1612); }.integration-grid .development li { border-left-color: var(--green); }.development a { display: inline-flex; margin-top: 24px; padding-bottom: 5px; color: var(--green); font-weight: 900; text-decoration: none; border-bottom: 1px solid var(--green); }.section-footnote { margin: 24px 0 0; color: var(--muted); font-size: 14px; }

/* Three distinct integration areas: deep blue, muted pink and County green. */
.integration-grid > div:nth-child(1) { border-color: #234665; background: radial-gradient(circle at 50% 0,rgba(38,91,139,.24),transparent 58%),linear-gradient(145deg,#101820,#0d1216); box-shadow: 0 0 42px rgba(28,83,132,.13), inset 0 0 38px rgba(32,85,132,.08); }
.integration-grid > div:nth-child(1) h3 { color: #72b5ed; }
.integration-grid > div:nth-child(1) li { border-left-color: #3b78a8; }
.integration-grid > div:nth-child(2) { border-color: #6d2f50; background: radial-gradient(circle at 50% 0,rgba(173,53,112,.22),transparent 58%),linear-gradient(145deg,#1d1219,#111116); box-shadow: 0 0 42px rgba(170,44,104,.12), inset 0 0 38px rgba(157,43,95,.08); }
.integration-grid > div:nth-child(2) h3 { color: #f07ab0; }
.integration-grid > div:nth-child(2) li { border-left-color: #a74876; }
.integration-grid .development { box-shadow: 0 0 46px rgba(122,203,50,.12), inset 0 0 40px rgba(122,203,50,.07); }

#support { background: #080b0c; }
.support-gallery { position: absolute; inset: 0; display: grid; grid-template-columns: repeat(3,1fr); opacity: .46; }.support-gallery img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.95) contrast(1.1); }.support-shade { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(7,9,10,.98) 0,rgba(7,9,10,.85) 44%,rgba(7,9,10,.72)),linear-gradient(0deg,rgba(7,9,10,.88),transparent 45%); }
.support-layout { display: grid; grid-template-columns: 1fr .75fr; gap: 90px; align-items: center; }.emergency { display: flex; align-items: center; gap: 24px; margin-top: 34px; }.emergency strong { color: var(--green); font-size: clamp(64px,7vw,106px); line-height: .9; letter-spacing: -.06em; }.emergency p { margin: 0; max-width: 360px; }.emergency b,.emergency span { display: block; }.emergency b { font-size: 19px; }.emergency span { color: #c4cbcd; font-size: 14px; line-height: 1.45; margin-top: 5px; }
.support-list { background: rgba(12,17,19,.9); backdrop-filter: blur(9px); border: 1px solid #415048; }.support-list div { padding: 18px 22px; border-bottom: 1px solid #2c373a; }.support-list div:last-child { border-bottom: 0; }.support-list b,.support-list span { display: block; }.support-list b { font-size: 15px; }.support-list span { color: var(--muted); font-size: 13px; line-height: 1.4; margin-top: 4px; }

.training-layout { display: grid; grid-template-columns: minmax(400px,.82fr) minmax(540px,1.18fr); gap: 64px; align-items: center; }.training-photo { height: min(70vh,650px); overflow: hidden; border-radius: 4px; }.training-photo img { width: 100%; height: 100%; object-fit: cover; }.training-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }.training-grid div { background: #111619; padding: 18px; min-height: 140px; }.training-grid b,.training-grid span { display: block; }.training-grid b { font-size: 15px; }.training-grid span { color: var(--muted); font-size: 13px; line-height: 1.4; margin-top: 7px; }.training-layout blockquote { margin: 22px 0 0; padding: 20px 22px; border-left: 4px solid var(--green); background: #121912; color: #bac3c5; line-height: 1.52; font-size: 14px; }.training-layout blockquote b { color: var(--white); }

.customer-layout { justify-content: center; }.customer-mosaic { display: grid; grid-template-columns: 1fr 1.1fr 1fr; gap: 14px; height: min(56vh,530px); }.customer-mosaic figure { margin: 0; position: relative; overflow: hidden; }.customer-mosaic figure:nth-child(2) { transform: translateY(-22px); }.customer-mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }.customer-mosaic figure:hover img { transform: scale(1.035); }.customer-mosaic figure::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent,rgba(0,0,0,.86)); }.customer-mosaic figcaption { position: absolute; z-index: 2; left: 20px; right: 20px; bottom: 18px; font-size: 14px; font-weight: 800; }

.final-slide { background: radial-gradient(circle at 72% 43%,#18280f 0,rgba(16,31,11,.14) 34%,transparent 58%),#07090a; }.final-slide::before { display: none; }.final-layout { display: grid; grid-template-columns: 1fr minmax(360px,.58fr); gap: 70px; align-items: center; }.question-list { display: grid; gap: 0; margin-top: 40px; border-top: 1px solid var(--line); max-width: 690px; }.question-list span { padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--muted); }.contact-panel { border: 1px solid #4d7334; background: rgba(17,24,18,.86); padding: clamp(28px,4vw,48px); box-shadow: 0 32px 90px rgba(0,0,0,.35); }.contact-panel > p { color: var(--green); font-size: 11px; font-weight: 900; letter-spacing: .14em; }.contact-panel h3 { font-size: clamp(25px,2.5vw,38px); line-height: 1.15; margin-bottom: 30px; }.contact-line { display: block; width: fit-content; text-decoration: none; font-size: clamp(16px,1.45vw,21px); font-weight: 800; margin: 13px 0; }.contact-line:hover { color: var(--green); }.contact-panel .socials { border-top: 1px solid #33412f; padding-top: 22px; margin-top: 28px; }.final-slide footer { position: absolute; z-index: 3; left: var(--pad); bottom: 20px; color: #667176; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }

/* PowerPoint-led Pro-Touch composition. */
.hardware-slide { justify-content: center; }
.hardware-heading { max-width: none; margin-bottom: 26px; }
.hardware-heading h2 { margin-bottom: 0; }
.hardware-board { display: grid; grid-template-columns: minmax(610px,1.45fr) minmax(380px,.82fr); gap: clamp(38px,5vw,74px); align-items: stretch; }
.hardware-gallery { display: grid; grid-template-columns: minmax(360px,1.55fr) minmax(210px,.75fr); gap: 12px; padding: 14px; background: #11171a; border-radius: 5px; }
.hardware-gallery .install-photo { height: min(61vh,552px); }
.hardware-detail { display: flex; flex-direction: column; gap: 24px; padding: 8px 8px 12px; }
.hardware-detail > img { width: 100%; height: 200px; object-fit: cover; border-top: 2px solid var(--green); }
.hardware-detail p { margin: 0; }
.hardware-detail b,.hardware-detail span { display: block; }
.hardware-detail b { color: var(--green); font-size: 12px; letter-spacing: .035em; margin-bottom: 9px; }
.hardware-detail span { color: var(--muted); font-size: 15px; line-height: 1.4; }
.hardware-copy { align-self: center; }
.hardware-copy > h3 { font-size: clamp(30px,3vw,45px); line-height: 1.05; margin-bottom: 34px; }
.hardware-copy .feature-list { gap: 30px; }
.hardware-closing { margin: 38px 0 0; padding: 18px 22px; border: 1px solid var(--green); border-radius: 10px; background: #151b1e; font-weight: 900; text-align: center; }

/* PowerPoint-led Merchant Services composition. */
.merchant-slide { justify-content: center; }
.merchant-heading { max-width: none; margin-bottom: 26px; }
.merchant-heading h2 { margin-bottom: 0; }
.merchant-board { display: grid; grid-template-columns: minmax(330px,.9fr) minmax(420px,1.08fr) minmax(245px,.62fr); gap: clamp(28px,4vw,58px); align-items: stretch; }
.dojo-card { position: relative; min-height: 530px; padding: 28px 24px 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; background: #f2f4f4; border-radius: 7px; overflow: hidden; }
.preferred-label { position: absolute; left: 28px; top: 20px; min-width: 165px; padding: 8px 18px; border-radius: 11px; background: var(--green); color: #071005; font-size: 11px; font-weight: 950; line-height: 1.08; text-align: center; }
.dojo-device { max-height: 430px; width: auto; object-fit: contain; margin-top: 15px; }
.dojo-logo { width: 112px; height: 42px; object-fit: contain; margin-top: -6px; }
.merchant-options { align-self: center; }
.merchant-options > h3 { font-size: clamp(30px,2.8vw,42px); margin-bottom: 34px; }
.merchant-options .feature-list { gap: 24px; }
.merchant-options > p { margin: 34px 0 0; font-size: 17px; font-weight: 900; }
.other-providers > h3 { color: var(--green); font-size: 13px; letter-spacing: .05em; margin: 22px 0 20px; }
.provider-logos { display: grid; gap: 18px; }
.provider-logos > div { height: 118px; display: grid; place-items: center; padding: 18px; background: white; border-radius: 7px; }
.provider-logos img { max-width: 100%; max-height: 78px; object-fit: contain; }

/* Closing page QR strip, retained alongside clickable web links. */
.contact-side { align-self: center; }
.contact-side .contact-panel { padding: clamp(26px,3vw,42px); }
.qr-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; padding: 12px 16px 0; }
.qr-strip > a { min-width: 0; color: var(--green); text-decoration: none; font-size: 11px; font-weight: 900; text-align: center; }
.qr-strip > a > span { display: flex; align-items: center; justify-content: center; gap: 7px; margin-bottom: 8px; }
.qr-strip span img { width: 19px; height: 19px; object-fit: contain; }
.qr-strip span i { width: 19px; height: 19px; display: grid; place-items: center; border: 1px solid var(--green); border-radius: 50%; font-style: normal; }
.qr-code { width: 92px; height: 92px; object-fit: contain; margin: auto; padding: 4px; background: white; }

.slide-controls { position: fixed; z-index: 35; right: 48px; bottom: 28px; display: flex; gap: 7px; }.slide-controls button { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); color: #c7cdcf; background: rgba(12,16,18,.83); cursor: pointer; font-size: 17px; }.slide-controls button:hover { border-color: var(--green); color: var(--green); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }.reveal.delay-1 { transition-delay: .12s; }.reveal.delay-2 { transition-delay: .24s; }.slide.in-view .reveal { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  html { scroll-snap-type: none; }
  .slide-rail, .slide-controls { display: none; }
  .slide { min-height: auto; }
  .slide-inner { min-height: auto; padding-top: calc(var(--header) + 46px); padding-bottom: 82px; }
  .hero .slide-inner { min-height: 100svh; }
  .hero-grid, .split, .ecosystem-layout, .product-focus, .product-focus-wide, .pos-showcase, .hardware-layout, .payments-layout, .support-layout, .training-layout, .final-layout { grid-template-columns: 1fr; }
  .hero-grid { padding-top: 125px; }
  .product-stage { min-height: 480px; }
  .stage-laptop { width: 72%; }.stage-pos { width: 40%; }.stage-mobile { height: 48%; }
  .photo-stack, .photo-main { min-height: 460px; }
  .market-grid { grid-template-columns: 1fr; }.market { min-height: 220px; }.market-icon { margin-bottom: 24px; }
  .ecosystem-visual, .retail-visual { min-height: 480px; }
  .product-grid { grid-template-columns: repeat(2,1fr); }.product-grid > div:nth-child(5n) { border-right: 1px solid var(--line); }.product-grid > div:nth-child(2n) { border-right: 0; }.product-grid > div:nth-last-child(-n+5) { border-bottom: 1px solid var(--line); }.product-grid > div:nth-last-child(-n+2) { border-bottom: 0; }
  .journey { grid-template-columns: repeat(3,1fr); }.journey article:nth-child(3) { border-right: 0; }.journey article:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .product-image { min-height: 460px; }.laptop-visual { min-height: 470px; }.dual-pos { min-height: 430px; }
  .install-photo { height: 620px; }.payment-stage { min-height: 560px; }
  .support-gallery { grid-template-columns: 1fr 1fr; }.support-gallery img:last-child { display: none; }.support-shade { background: rgba(7,9,10,.76); }
  .training-photo { height: 560px; }.customer-mosaic { height: 480px; }
}

@media (max-width: 680px) {
  :root { --header: 72px; --pad: 20px; }
  .site-header { padding: 9px 15px; }.brand img { width: 103px; height: 50px; }.header-contact { display: none; }.header-actions { gap: 12px; }.menu-button { width: 40px; height: 40px; }
  .slide::before { width: 54px; }.slide-inner { padding-top: 108px; padding-bottom: 68px; }
  h1 { font-size: clamp(44px,14vw,64px); } h2 { font-size: clamp(36px,11vw,52px); }.lead { font-size: 17px; margin-bottom: 28px; }
  .hero-grid { display: flex; flex-direction: column; align-items: stretch; padding-top: 105px; }.hero .slide-inner { min-height: 100svh; }.hero-actions { margin-bottom: 28px; }.button { width: 100%; }.socials.subtle { gap: 13px; }.socials.subtle a { font-size: 11px; }.product-stage { min-height: 350px; margin-top: 10px; }.stage-laptop { width: 82%; top: 2%; }.stage-pos { width: 48%; left: 0; bottom: 0; }.stage-mobile { height: 49%; }.scroll-cue { display: none; }
  .proof-row { grid-template-columns: 1fr; }.proof-row div { padding: 16px 0; }.proof-row div + div { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; }.proof-row strong { font-size: 38px; }
  .photo-stack, .photo-main { min-height: 350px; }.floating-note { left: -5px; bottom: 16px; }
  .market { padding: 24px; }.market h3 { font-size: 23px; }
  .ecosystem-visual, .retail-visual { min-height: 340px; }.visual-caption { position: relative; left: auto; bottom: auto; width: 100%; margin-top: -20px; }
  .product-grid { grid-template-columns: 1fr; }.product-grid > div { min-height: 116px; }.product-grid > div:nth-child(n) { border-right: 0; border-bottom: 1px solid var(--line); }.product-grid > div:last-child { border-bottom: 0; }.product-grid em { margin-bottom: 17px; }
  .journey { grid-template-columns: 1fr 1fr; }.journey article { min-height: 190px; }.journey article:nth-child(n) { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }.journey article:nth-child(2n) { border-right: 0; }.journey article:nth-last-child(-n+2) { border-bottom: 0; }
  .product-image { min-height: 330px; }.flow-steps { grid-template-columns: 1fr; }.flow-steps div { min-height: 110px; }.laptop-visual { min-height: 340px; }
  .dual-pos { grid-template-columns: 1fr; min-height: 560px; padding: 12px; }.dual-pos img { max-height: 280px; }
  .install-photo { height: 480px; }.hardware-model { grid-template-columns: 1fr; }.hardware-model img { height: 170px; }
  .payment-stage { min-height: 530px; }.preferred { width: 200px; right: 0; }.payment-device { height: 55%; left: 0; bottom: 17%; }.payment-logos { width: 58%; right: 0; bottom: 14%; }.payment-logos img { height: 55px; }.payment-stage small { bottom: 4%; }
  .integration-grid { grid-template-columns: 1fr; }.integration-grid > div { padding: 22px; }
  .support-gallery { grid-template-columns: 1fr; }.support-gallery img:nth-child(n+2) { display: none; }.support-shade { background: linear-gradient(rgba(7,9,10,.6),rgba(7,9,10,.96)); }.emergency { align-items: flex-start; }.emergency strong { font-size: 72px; }.support-list { margin-top: 10px; }
  .training-photo { height: 400px; }.training-grid { grid-template-columns: 1fr; }.training-grid div { min-height: 0; }
  .customer-mosaic { height: auto; grid-template-columns: 1fr; }.customer-mosaic figure, .customer-mosaic figure:nth-child(2) { height: 360px; transform: none; }.final-layout { padding-bottom: 100px; }.contact-panel { margin-top: 10px; }.question-list span { font-size: 14px; }
  .menu-panel { padding: 95px 24px 34px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }.reveal { opacity: 1; transform: none; transition: none; }.product-grid > div, .journey article, .customer-mosaic img { transition: none; }
}

@media (max-width: 1050px) {
  .hardware-board { grid-template-columns: 1fr; }
  .hardware-gallery { grid-template-columns: minmax(380px,1.35fr) minmax(230px,.65fr); }
  .hardware-gallery .install-photo { height: 590px; }
  .hardware-copy { width: 100%; }
  .merchant-board { grid-template-columns: 1fr 1fr; }
  .other-providers { grid-column: 1 / -1; }
  .provider-logos { grid-template-columns: repeat(3,1fr); }
  .final-layout { padding-bottom: 125px; }
  .contact-side { max-width: 620px; }
}

@media (max-width: 680px) {
  .hardware-heading,.merchant-heading { margin-bottom: 24px; }
  .hardware-gallery { grid-template-columns: 1fr; padding: 10px; }
  .hardware-gallery .install-photo { height: 470px; }
  .hardware-detail { padding: 4px 8px 14px; }
  .hardware-detail > img { height: 210px; }
  .hardware-copy > h3 { margin-top: 30px; }
  .merchant-board { grid-template-columns: 1fr; }
  .dojo-card { min-height: 500px; }
  .dojo-device { max-height: 400px; }
  .merchant-options { padding-top: 18px; }
  .other-providers { grid-column: auto; }
  .provider-logos { grid-template-columns: 1fr; }
  .provider-logos > div { height: 105px; }
  .contact-side { width: 100%; }
  .qr-strip { gap: 8px; padding: 14px 0 0; }
  .qr-strip > a { font-size: 10px; }
  .qr-strip > a > span { gap: 4px; }
  .qr-code { width: 78px; height: 78px; }
}
