@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: optional;
  src: url("/assets/dm-sans-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500 800;
  font-display: optional;
  src: url("/assets/manrope-latin.woff2") format("woff2");
}

:root {
  --teal-300: #68e1d1;
  --teal-400: #38d6c2;
  --teal-500: #12bba9;
  --teal-600: #079b8d;
  --teal-700: #08776e;
  --teal-900: #073f3a;
  --forest-950: #031512;
  --forest-900: #06211e;
  --forest-850: #092b27;
  --ink-950: #07110f;
  --ink-900: #0d1917;
  --cream-50: #f7faf8;
  --cream-100: #eef5f1;
  --cream-200: #dce9e4;
  --slate-300: #a8bbb5;
  --slate-500: #688079;
  --white: #ffffff;
  --line-dark: rgba(190, 232, 223, .16);
  --line-light: #d7e5e0;
  --shadow: 0 30px 80px rgba(2, 26, 22, .16);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 24px;
  --max: 1240px;
  --display: "Manrope", "DM Sans", system-ui, sans-serif;
  --body: "DM Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--cream-100);
  background: var(--forest-950);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body:has(dialog[open]) { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
button, input, select { font: inherit; }
a { color: inherit; }
.shell { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.skip-link {
  position: fixed;
  z-index: 200;
  inset: 12px auto auto 12px;
  padding: 10px 14px;
  color: var(--forest-950);
  background: var(--teal-300);
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal-400);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--white); font-family: var(--display); letter-spacing: -.035em; }
h1 { font-family: system-ui, -apple-system, "Segoe UI", sans-serif; }
h1 { margin-bottom: 24px; font-size: clamp(46px, 5.4vw, 82px); line-height: .99; font-weight: 800; }
h1 span { color: var(--teal-300); }
h2 { margin-bottom: 22px; font-size: clamp(36px, 4.2vw, 62px); line-height: 1.04; font-weight: 750; }
h3 { line-height: 1.2; }
.section { padding-block: clamp(86px, 10vw, 150px); }
.section-lede { max-width: 700px; color: var(--slate-300); font-size: clamp(17px, 1.6vw, 21px); line-height: 1.6; }
.section-head { max-width: 820px; margin-bottom: 56px; }
.section-head h2 { margin-top: 18px; }
.section-head > p { color: var(--slate-300); font-size: 18px; }
.split-head { max-width: none; display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: end; }
.split-head h2 { margin-bottom: 0; }
.split-head > p { margin-bottom: 0; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 3px solid var(--teal-300);
  outline-offset: 3px;
}
.button-primary { color: var(--forest-950); background: var(--teal-400); }
.button-primary:hover { background: var(--teal-300); }
.button-secondary { color: var(--white); border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.06); }
.button-secondary:hover { border-color: var(--teal-400); background: rgba(56,214,194,.1); }
.button-small { min-height: 42px; padding: 9px 15px; font-size: 13px; }
.button-wide { width: 100%; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }

.announcement { color: #092622; background: var(--teal-300); font-size: 13px; }
.announcement-inner { min-height: 36px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.announcement span { display: flex; align-items: center; gap: 10px; }
.announcement i { width: 3px; height: 3px; border-radius: 50%; background: #092622; }
.announcement a { font-weight: 800; text-decoration: none; }
.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(3, 21, 18, .92);
  backdrop-filter: blur(18px);
}
.nav-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 34px; }
.brand img, .footer-brand img { width: 182px; height: auto; object-fit: contain; object-position: left center; }
.brand { min-height: 44px; display: inline-flex; align-items: center; }
.nav-links { display: flex; align-items: center; gap: 25px; }
.nav-links > a:not(.button) { color: #cae0da; font-size: 13px; font-weight: 700; text-decoration: none; }
.nav-links > a:not(.button):hover { color: var(--teal-300); }
.menu-button { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 8vw, 110px) 0 72px;
  background:
    radial-gradient(circle at 92% 10%, rgba(18,187,169,.22), transparent 34%),
    linear-gradient(165deg, var(--forest-950) 0%, #06211e 62%, #0a302b 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .14;
  background-image: linear-gradient(rgba(104,225,209,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(104,225,209,.12) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, black, transparent 65%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: .94fr 1.06fr; gap: clamp(36px, 5vw, 76px); align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy > .eyebrow { margin-bottom: 22px; }
.hero-lede { max-width: 680px; margin-bottom: 28px; color: #c6dad5; font-size: clamp(17px, 1.45vw, 21px); }
.hero-price-row {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  margin-bottom: 24px;
  border-block: 1px solid var(--line-dark);
}
.hero-price-row > div { padding: 17px 20px 17px 0; }
.hero-price-row > div + div { padding-left: 24px; border-left: 1px solid var(--line-dark); }
.hero-price-row small { display: block; color: var(--slate-300); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero-price-row strong { display: block; color: var(--white); font-family: var(--display); font-size: clamp(21px, 2vw, 31px); line-height: 1.25; }
.hero-form {
  padding: 22px;
  color: var(--forest-950);
  border: 1px solid rgba(104,225,209,.38);
  border-radius: var(--radius);
  background: rgba(247,250,248,.98);
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.form-intro { margin-bottom: 16px; }
.form-intro strong { display: block; font-family: var(--display); font-size: 18px; }
.form-intro span { color: #526a64; font-size: 13px; }
.compact-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hero-form label, .quote-form label, .calculator-inputs label { display: grid; gap: 5px; }
.hero-form label > span, .quote-form label > span, .calculator-inputs label > span { font-size: 11px; font-weight: 800; letter-spacing: .04em; }
.hero-form input, .hero-form select, .quote-form input, .quote-form select, .calculator-inputs input {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--forest-950);
  border: 1px solid #bccdc8;
  border-radius: 6px;
  background: var(--white);
}
.hero-form .button { margin-top: 12px; }
.form-fine { margin: 8px 0 0; color: #667a75; font-size: 11px; line-height: 1.45; }
.form-status { min-height: 22px; margin: 7px 0 0; font-size: 13px; font-weight: 700; }
.form-status[data-state="success"] { color: #08776e; }
.form-status[data-state="error"] { color: #a53030; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.hero-secondary { display: flex; gap: 22px; margin-top: 18px; }
.hero-secondary a { color: #d0e4df; font-size: 13px; font-weight: 800; text-underline-offset: 4px; }
.hero-visual {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(104,225,209,.24);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.04);
  box-shadow: 0 34px 90px rgba(0,0,0,.34);
}
.hero-visual img { width: 100%; border-radius: 14px; }
.hero-visual figcaption {
  position: absolute;
  inset: auto 24px 22px 24px;
  padding: 9px 12px;
  color: #d6e8e4;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 6px;
  background: rgba(3,21,18,.78);
  backdrop-filter: blur(12px);
  font-size: 10px;
  font-weight: 700;
}
.dimension-badge {
  position: absolute;
  top: -18px;
  right: 24px;
  display: flex;
  color: var(--forest-950);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.dimension-badge b { padding: 9px 12px; background: var(--teal-300); font-size: 11px; }
.dimension-badge b + b { border-left: 1px solid rgba(3,21,18,.18); }

.evidence-bar { border-block: 1px solid var(--line-dark); background: #041b18; }
.evidence-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.evidence-grid a { min-height: 105px; display: flex; align-items: center; gap: 16px; padding: 20px; text-decoration: none; }
.evidence-grid a + a { border-left: 1px solid var(--line-dark); }
.evidence-grid b { color: var(--teal-400); font: 800 11px/1 var(--display); }
.evidence-grid span { display: grid; color: var(--slate-300); font-size: 11px; line-height: 1.35; }
.evidence-grid strong { color: var(--white); font-size: 13px; }

.live-proof { background: var(--cream-50); color: var(--forest-950); }
.live-proof h2, .installed h2, .pricing h2, .placements h2, .resources h2 { color: var(--forest-950); }
.proof-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(50px, 8vw, 110px); align-items: center; }
.proof-copy .eyebrow, .installed .eyebrow, .pricing .eyebrow, .placements .eyebrow, .resources .eyebrow { color: var(--teal-700); }
.proof-copy .section-lede, .installed .section-lede { color: #4f6861; }
.check-list { list-style: none; padding: 0; margin: 38px 0; border-top: 1px solid var(--line-light); }
.check-list li { display: grid; grid-template-columns: 36px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line-light); }
.check-list li > span { color: var(--teal-700); font: 800 11px/1.7 var(--display); }
.check-list strong, .check-list small { display: block; }
.check-list strong { color: var(--forest-950); font-family: var(--display); }
.check-list small { color: #60756f; font-size: 13px; }
.live-proof .button-secondary { color: var(--forest-950); border-color: #a8c6be; background: transparent; }
.kiosk-frame {
  position: relative;
  width: min(100%, 480px);
  margin: 0 auto;
  padding: 18px 18px 22px;
  border: 1px solid #cdded8;
  border-radius: 28px;
  background: var(--forest-900);
  box-shadow: 0 34px 80px rgba(5, 60, 52, .2);
}
.kiosk-frame img { width: 100%; max-height: 750px; object-fit: contain; border-radius: 16px; }
.kiosk-frame figcaption { margin-top: 14px; color: #aec3bd; font-size: 10px; text-align: center; }
.kiosk-status {
  position: absolute;
  z-index: 2;
  top: 34px;
  left: -28px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  color: var(--forest-950);
  border-radius: 6px;
  background: var(--teal-300);
  box-shadow: var(--shadow);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.kiosk-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--teal-700); box-shadow: 0 0 0 4px rgba(8,119,110,.14); }

.installed { color: var(--forest-950); background: var(--cream-100); }
.installed-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px, 8vw, 110px); align-items: center; }
.installed-photo { position: relative; margin: 0; padding: 12px; border: 1px solid var(--line-light); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow); }
.installed-photo img { width: 100%; border-radius: 14px; }
.installed-photo figcaption { padding: 12px 8px 2px; color: #5f756e; font-size: 11px; }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 40px; border: 1px solid var(--line-light); background: var(--line-light); }
.spec-grid article { min-height: 170px; padding: 24px; background: var(--white); }
.spec-grid small { display: block; color: var(--teal-700); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.spec-grid strong { display: block; margin: 9px 0; color: var(--forest-950); font: 750 25px/1.2 var(--display); }
.spec-grid p { margin: 0; color: #5f756e; font-size: 13px; }
.site-check { display: grid; grid-template-columns: 140px 1fr; gap: 22px; margin: 22px 0; padding: 20px; color: #d3e7e1; background: var(--forest-900); }
.site-check b { color: var(--teal-300); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.site-check span { font-size: 13px; }
.text-link { color: var(--teal-700); font-weight: 800; text-underline-offset: 5px; }

.flow-section { background: #051b18; }
.journey { list-style: none; display: grid; grid-template-columns: repeat(4,1fr); padding: 0; margin: 0; border: 1px solid var(--line-dark); }
.journey li { min-height: 280px; display: flex; flex-direction: column; justify-content: space-between; padding: 28px; }
.journey li + li { border-left: 1px solid var(--line-dark); }
.journey > li > span { color: var(--teal-400); font: 800 11px/1 var(--display); }
.journey h3 { margin-bottom: 10px; font-size: 22px; }
.journey p { margin: 0; color: var(--slate-300); font-size: 14px; }

.platform { background: var(--forest-900); }
.platform-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(50px, 7vw, 90px); align-items: center; }
.platform-stats { display: grid; grid-template-columns: repeat(3,1fr); margin: 36px 0; border-block: 1px solid var(--line-dark); }
.platform-stats article { padding: 18px 12px 18px 0; }
.platform-stats article + article { padding-left: 16px; border-left: 1px solid var(--line-dark); }
.platform-stats strong, .platform-stats span { display: block; }
.platform-stats strong { color: var(--teal-300); font: 750 21px/1.2 var(--display); }
.platform-stats span { color: var(--slate-300); font-size: 11px; }
.dashboard-frame { margin: 0; border: 1px solid var(--line-dark); border-radius: var(--radius); overflow: hidden; background: #07100f; box-shadow: 0 35px 90px rgba(0,0,0,.35); }
.browser-chrome { min-height: 42px; display: flex; align-items: center; gap: 7px; padding: 0 14px; border-bottom: 1px solid var(--line-dark); background: #0a1715; }
.browser-chrome span { width: 7px; height: 7px; border-radius: 50%; background: #41605a; }
.browser-chrome b { margin-left: auto; color: #718b84; font-size: 10px; font-weight: 500; }
.dashboard-frame img { width: 100%; }
.dashboard-frame figcaption { padding: 12px 16px; color: var(--slate-300); font-size: 10px; letter-spacing: .08em; }

.pricing, .resources { color: var(--forest-950); background: var(--cream-50); }
.pricing .split-head > p, .resources .split-head > p, .placements .section-head > p { color: #5e746e; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr .72fr; gap: 16px; }
.price-card, .finance-card, .quote-scope { padding: clamp(26px, 3vw, 38px); border-radius: var(--radius); }
.price-card { color: var(--cream-100); background: var(--forest-900); box-shadow: var(--shadow); }
.finance-card { border: 1px solid #bad1ca; background: var(--white); }
.quote-scope { border: 1px solid var(--line-light); background: var(--cream-100); }
.price-card > span, .finance-card > span, .quote-scope > span { color: var(--teal-700); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.price-card > span { color: var(--teal-300); }
.price-card h3, .finance-card h3 { margin: 20px 0; font-size: 34px; }
.price-card h3 small { display: block; color: var(--slate-300); font: 700 11px/1.2 var(--body); letter-spacing: .08em; text-transform: uppercase; }
.finance-card h3 { color: var(--forest-950); }
.price-card p { color: var(--slate-300); }
.finance-card p, .quote-scope { color: #587069; }
.price-card ul { padding-left: 20px; margin: 25px 0 30px; color: #d3e4df; font-size: 14px; }
.price-card li + li { margin-top: 8px; }
.finance-steps { margin: 24px 0; border-top: 1px solid var(--line-light); }
.finance-steps > div { display: grid; grid-template-columns: 30px 1fr; gap: 10px; padding: 13px 0; border-bottom: 1px solid var(--line-light); font-size: 13px; }
.finance-steps b { color: var(--teal-700); }
.finance-card .button-secondary { color: var(--forest-950); border-color: #a8c6be; }
.quote-scope ul { list-style: none; padding: 0; margin: 24px 0 0; }
.quote-scope li { padding: 14px 0; border-top: 1px solid var(--line-light); }
.quote-scope b, .quote-scope small { display: block; }
.quote-scope b { color: var(--forest-950); font-size: 13px; }
.quote-scope small { font-size: 11px; }
.calculator { display: grid; grid-template-columns: .92fr 1fr 1.08fr; margin-top: 22px; border: 1px solid var(--line-light); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.calculator-copy, .calculator-inputs, .calculator-results { padding: clamp(24px, 3vw, 38px); }
.calculator-copy { color: var(--cream-100); background: var(--forest-900); }
.pricing .calculator-copy .eyebrow { color: var(--teal-300); }
.calculator-copy h3 { margin: 14px 0; font-size: 26px; }
.calculator-copy p { margin: 0; color: var(--slate-300); font-size: 12px; }
.calculator-inputs { display: grid; gap: 13px; border-right: 1px solid var(--line-light); }
.calculator-results { display: grid; gap: 18px; }
.calculator-results > div { padding-bottom: 16px; border-bottom: 1px solid var(--line-light); }
.calculator-results span, .calculator-results strong { display: block; }
.calculator-results span { color: #5d746d; font-size: 11px; }
.calculator-results strong { color: var(--forest-950); font: 750 31px/1.2 var(--display); }

.placements { color: var(--forest-950); background: var(--cream-100); }
.placement-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.placement-grid a { min-height: 300px; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line-light); border-radius: var(--radius); background: var(--white); text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.placement-grid a:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.placement-grid span { color: var(--teal-700); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.placement-grid h3 { margin: auto 0 12px; color: var(--forest-950); font-size: 25px; }
.placement-grid p { color: #5e746e; font-size: 14px; }
.placement-grid b { color: var(--teal-700); font-size: 13px; }

.resource-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; border: 1px solid var(--line-light); background: var(--line-light); }
.resource-grid a { min-height: 230px; display: flex; flex-direction: column; padding: 26px; background: var(--white); text-decoration: none; transition: background .18s ease; }
.resource-grid a:hover { background: #e5f4ef; }
.resource-grid span { color: var(--teal-700); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.resource-grid h3 { margin: auto 0 8px; color: var(--forest-950); font-size: 21px; }
.resource-grid p { margin: 0; color: #5e746e; font-size: 13px; }

.faq-section { background: #061d1a; }
.faq-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 80px; align-items: start; }
.faq-grid > div:first-child { position: sticky; top: 110px; }
.faq-grid > div:first-child p { color: var(--slate-300); }
.faq-grid > div:first-child a { color: var(--teal-300); font-weight: 800; }
.faq { border-top: 1px solid var(--line-dark); }
.faq details { border-bottom: 1px solid var(--line-dark); }
.faq summary { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; color: var(--white); cursor: pointer; font-family: var(--display); font-weight: 750; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--teal-300); font-size: 24px; }
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 760px; margin: 0 0 24px; color: var(--slate-300); }

.final-quote { color: var(--forest-950); background: var(--teal-300); }
.final-quote .eyebrow { color: var(--teal-900); }
.quote-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 8vw, 110px); align-items: start; }
.quote-copy h2 { color: var(--forest-950); }
.quote-copy > p { max-width: 600px; color: #31534c; font-size: 18px; }
.contact-stack { margin-top: 40px; border-top: 1px solid rgba(3,21,18,.18); }
.contact-stack > * { display: grid; padding: 15px 0; border-bottom: 1px solid rgba(3,21,18,.18); text-decoration: none; }
.contact-stack small { color: #254c44; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.contact-stack strong { color: var(--forest-950); font-family: var(--display); font-size: 18px; }
.quote-form { display: grid; gap: 16px; padding: clamp(26px, 4vw, 44px); color: var(--cream-100); border-radius: var(--radius); background: var(--forest-900); box-shadow: 0 35px 80px rgba(3,21,18,.2); }
.quote-form label > span { color: #c9deda; }
.quote-form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.quote-form .form-fine { color: var(--slate-300); }
.quote-form .form-status[data-state="success"] { color: var(--teal-300); }

.site-footer { padding: 72px 0 100px; background: #020d0b; }
.footer-top { display: grid; grid-template-columns: 1.6fr repeat(4,1fr); gap: 36px; padding-bottom: 50px; border-bottom: 1px solid var(--line-dark); }
.footer-brand p { max-width: 260px; margin-top: 14px; color: var(--slate-300); font-size: 12px; }
.footer-top > div:not(.footer-brand) { display: grid; align-content: start; gap: 10px; }
.footer-top strong { color: var(--white); font-size: 12px; }
.footer-top a { min-height: 30px; color: var(--slate-300); font-size: 12px; text-decoration: none; }
.footer-top a:hover { color: var(--teal-300); }
.footer-bottom { display: grid; grid-template-columns: auto 1fr auto; gap: 40px; align-items: start; padding-top: 28px; color: #779089; font-size: 10px; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 16px; white-space: nowrap; }
.mobile-actions { display: none; }

.proof-dialog {
  width: min(92vw, 920px);
  max-height: 92vh;
  padding: 0;
  color: var(--cream-100);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--forest-900);
  box-shadow: 0 40px 120px rgba(0,0,0,.6);
}
.proof-dialog::backdrop { background: rgba(0,12,10,.85); backdrop-filter: blur(8px); }
.dialog-head { position: sticky; z-index: 2; top: 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 22px; border-bottom: 1px solid var(--line-dark); background: rgba(6,33,30,.96); }
.dialog-head span { color: var(--teal-300); font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.dialog-head h2 { margin: 2px 0 0; font-size: 20px; }
.dialog-head button { min-width: 54px; min-height: 44px; color: var(--white); border: 1px solid var(--line-dark); border-radius: 6px; background: transparent; cursor: pointer; }
.proof-dialog > img { width: min(100%, 540px); margin: 28px auto; }
.proof-dialog > p { padding: 0 24px 24px; color: var(--slate-300); font-size: 12px; text-align: center; }
.consent {
  position: fixed;
  z-index: 150;
  inset: auto 18px 18px auto;
  width: min(calc(100% - 36px), 500px);
  padding: 18px;
  color: var(--cream-100);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(6,33,30,.98);
  box-shadow: 0 24px 70px rgba(0,0,0,.45);
}
.consent p { margin-bottom: 14px; font-size: 13px; }
.consent p strong { color: var(--teal-300); }
.consent > div { display: flex; gap: 8px; }
.consent .button { min-height: 44px; font-size: 12px; }

.guide-hero { padding: 96px 0 72px; border-bottom: 1px solid var(--line-dark); background: radial-gradient(circle at 80% 0, rgba(18,187,169,.18), transparent 35%), var(--forest-950); }
.guide-hero h1 { max-width: 920px; margin: 20px 0; font-size: clamp(42px, 6vw, 76px); }
.guide-hero p { max-width: 780px; color: var(--slate-300); font-size: 19px; }
.breadcrumbs { color: var(--slate-300); font-size: 12px; }
.breadcrumbs a { color: var(--teal-300); }
.guide-layout { display: grid; grid-template-columns: minmax(0,1fr) 280px; gap: 80px; }
.prose { max-width: 820px; }
.prose h2 { margin: 62px 0 18px; font-size: clamp(29px, 4vw, 43px); }
.prose h3 { margin-top: 34px; font-size: 23px; }
.prose p, .prose li { color: #c3d5d0; }
.prose a { color: var(--teal-300); }
.prose table { width: 100%; margin: 30px 0; border-collapse: collapse; font-size: 14px; }
.prose th, .prose td { padding: 13px; border: 1px solid var(--line-dark); text-align: left; vertical-align: top; }
.prose th { color: var(--teal-300); background: rgba(18,187,169,.08); }
.callout { margin: 38px 0; padding: 26px; border-left: 3px solid var(--teal-400); background: var(--forest-900); }
.guide-aside { position: sticky; top: 112px; align-self: start; padding: 24px; border: 1px solid var(--line-dark); background: var(--forest-900); }
.guide-aside strong { display: block; margin-bottom: 14px; color: var(--white); font-family: var(--display); }
.guide-aside a:not(.button) { min-height: 44px; display: flex; align-items: center; padding: 10px 0; color: var(--slate-300); border-bottom: 1px solid var(--line-dark); font-size: 12px; text-decoration: none; }
.guide-aside .button { margin-top: 20px; }

@media (max-width: 1050px) {
  .nav-links { gap: 16px; }
  .nav-links > a:not(.button):nth-child(4), .nav-links > a:not(.button):nth-child(5) { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-visual { max-width: 920px; }
  .proof-layout, .installed-grid, .platform-grid { grid-template-columns: 1fr; }
  .installed-photo { width: min(100%, 620px); }
  .kiosk-frame { width: min(100%, 520px); }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .quote-scope { grid-column: 1 / -1; }
  .calculator { grid-template-columns: 1fr 1fr; }
  .calculator-copy { grid-column: 1 / -1; }
  .resource-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1.5fr repeat(2,1fr); }
}

@media (max-width: 800px) {
  .shell { width: min(calc(100% - 32px), var(--max)); }
  .announcement-inner { min-height: 42px; }
  .announcement a { display: none; }
  .menu-button {
    width: 46px;
    height: 46px;
    display: grid;
    place-content: center;
    gap: 6px;
    color: var(--white);
    border: 1px solid var(--line-dark);
    border-radius: 8px;
    background: transparent;
  }
  .menu-button span { width: 20px; height: 2px; background: currentColor; transition: transform .18s ease; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .nav-links {
    position: fixed;
    inset: 119px 0 auto;
    display: none;
    padding: 20px 16px 26px;
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid var(--line-dark);
    background: rgba(3,21,18,.985);
    box-shadow: 0 26px 60px rgba(0,0,0,.35);
  }
  .nav-links[data-open="true"] { display: flex; }
  .nav-links > a:not(.button), .nav-links > a:not(.button):nth-child(4), .nav-links > a:not(.button):nth-child(5) { min-height: 44px; display: flex; align-items: center; }
  .hero { padding-top: 60px; }
  .hero-grid { gap: 46px; }
  .split-head { grid-template-columns: 1fr; gap: 18px; }
  .evidence-grid { grid-template-columns: 1fr 1fr; }
  .evidence-grid a:nth-child(3) { border-left: 0; border-top: 1px solid var(--line-dark); }
  .evidence-grid a:nth-child(4) { border-top: 1px solid var(--line-dark); }
  .journey { grid-template-columns: 1fr 1fr; }
  .journey li:nth-child(3) { border-left: 0; border-top: 1px solid var(--line-dark); }
  .journey li:nth-child(4) { border-top: 1px solid var(--line-dark); }
  .pricing-grid, .placement-grid { grid-template-columns: 1fr; }
  .quote-scope { grid-column: auto; }
  .calculator { grid-template-columns: 1fr; }
  .calculator-copy { grid-column: auto; }
  .calculator-inputs { border-right: 0; border-bottom: 1px solid var(--line-light); }
  .faq-grid, .quote-grid, .guide-layout { grid-template-columns: 1fr; gap: 50px; }
  .faq-grid > div:first-child, .guide-aside { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { grid-template-columns: 1fr; gap: 14px; }
}

@media (max-width: 560px) {
  .shell { width: min(calc(100% - 26px), var(--max)); }
  .section { padding-block: 78px; }
  .brand img { width: 145px; }
  .nav-inner { min-height: 68px; }
  .nav-links { inset-block-start: 111px; }
  h1 { font-size: clamp(43px, 13vw, 59px); }
  h2 { font-size: clamp(34px, 10vw, 46px); }
  .hero { padding: 48px 0 60px; }
  .hero-price-row { grid-template-columns: 1fr; }
  .hero-price-row > div + div { padding-left: 0; border-left: 0; border-top: 1px solid var(--line-dark); }
  .hero-form { padding: 18px; }
  .compact-fields, .quote-form .field-row, .spec-grid { grid-template-columns: 1fr; }
  .hero-secondary { flex-direction: column; gap: 8px; }
  .hero-visual { margin-inline: -7px; padding: 7px; border-radius: 16px; }
  .hero-visual figcaption { position: static; margin: 7px 5px 2px; background: transparent; border: 0; padding: 0; }
  .dimension-badge { top: -14px; right: 10px; }
  .dimension-badge b { padding: 7px 8px; font-size: 9px; }
  .evidence-grid { grid-template-columns: 1fr; }
  .evidence-grid a + a { border-left: 0; border-top: 1px solid var(--line-dark); }
  .evidence-grid a { min-height: 82px; }
  .kiosk-status { left: -7px; top: 28px; }
  .kiosk-frame { padding: 10px 10px 16px; border-radius: 18px; }
  .site-check { grid-template-columns: 1fr; gap: 8px; }
  .journey { grid-template-columns: 1fr; }
  .journey li + li { border-left: 0; border-top: 1px solid var(--line-dark); }
  .journey li { min-height: 220px; }
  .platform-stats { grid-template-columns: 1fr; }
  .platform-stats article + article { padding-left: 0; border-left: 0; border-top: 1px solid var(--line-dark); }
  .browser-chrome b { max-width: 180px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .resource-grid { grid-template-columns: 1fr; }
  .resource-grid a { min-height: 200px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 30px 18px; }
  .footer-brand { grid-column: 1 / -1; }
  .site-footer { padding-bottom: 120px; }
  .mobile-actions {
    position: fixed;
    z-index: 85;
    inset: auto 8px calc(8px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 6px;
    padding: 6px;
    border: 1px solid var(--line-dark);
    border-radius: 12px;
    background: rgba(3,21,18,.94);
    backdrop-filter: blur(14px);
    box-shadow: 0 15px 50px rgba(0,0,0,.36);
    transition: opacity .18s ease, transform .18s ease;
  }
  .mobile-actions[data-hidden="true"] { opacity: 0; pointer-events: none; transform: translateY(calc(100% + 20px)); }
  .mobile-actions .button { min-height: 46px; padding-inline: 10px; font-size: 12px; }
  .hero-secondary a, .text-link, .footer-top a, .footer-bottom a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .faq-grid > div:first-child a { min-height: 44px; display: inline-flex; align-items: center; }
  .consent { inset: auto 8px calc(76px + env(safe-area-inset-bottom)); width: calc(100% - 16px); }
  .consent > div { flex-direction: column; }
  input, select { font-size: 16px !important; }
}

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