:root {
  --primary: #2f6b4f;
  --primary-pressed: #285c44;
  --text-strong: #213f32;
  --text-muted: #536459;
  --surface-soft: #eef5ed;
  --bg: #f7f8f0;
  --card: #ffffff;
  --card-alt: #fcfbf8;
  --border: #dfe5d9;
  --surface-proof: #e8f2ea;
  --success-bg: #e7f1ea;
  --success-text: #2f6b4f;
  --ink: var(--text-strong);
  --ink-soft: #456250;
  --muted: var(--text-muted);
  --paper: var(--surface-soft);
  --panel: var(--card);
  --blue: #7fa88d;
  --blue-deep: var(--primary);
  --blue-soft: #edf2e7;
  --mint: #cfe6d6;
  --line: var(--border);
  --shadow: 0 16px 32px rgba(33, 63, 50, 0.08);
  --motion-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --motion-ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-duration: 720ms;
  --motion-duration-fast: 420ms;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 8%, rgba(207, 230, 214, 0.44), transparent 30%),
    radial-gradient(circle at 0% 24%, rgba(231, 241, 234, 0.82), transparent 28%),
    linear-gradient(180deg, var(--bg) 0%, #f4f7ef 48%, #eef5ed 100%);
  font-family: "Bai Jamjuree", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
  line-break: strict;
  word-break: keep-all;
  overflow-wrap: break-word;
  hyphens: none;
}

.keep {
  white-space: nowrap;
}

.copy-block {
  text-wrap: pretty;
  hyphens: none;
}

.section-heading p,
.value-item p,
.flow-list p,
.pilot-copy p,
.cta-band-copy p,
.audience-card p,
.collage-panel p {
  text-wrap: pretty;
  hyphens: none;
}

h1,
h2,
h3,
.cta-band h2,
.pilot-copy h2,
.section-heading h2 {
  text-wrap: balance;
  hyphens: none;
}

.br-sm,
.br-lg {
  display: none;
}

.br-md {
  display: inline;
}

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

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

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

button {
  font: inherit;
}

:where(a, button):focus-visible {
  outline: 3px solid color-mix(in srgb, var(--primary) 42%, #ffffff);
  outline-offset: 4px;
}

section[id] {
  scroll-margin-top: 96px;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  padding: 14px 0;
  background: rgba(247, 246, 239, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.brand-logo {
  display: block;
  width: 132px;
  height: auto;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #f8f6f0;
  background: var(--ink);
  font-size: 0.7rem;
  font-weight: 800;
}

.footer-brand .brand-logo {
  width: 142px;
  filter: brightness(0) invert(1);
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.9rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--ink) 72%, transparent);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span[aria-hidden="true"] {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span[aria-hidden="true"]:nth-child(2) {
  transform: translateY(-6px);
}

.menu-toggle span[aria-hidden="true"]:nth-child(4) {
  transform: translateY(6px);
}

.menu-toggle[aria-expanded="true"] span[aria-hidden="true"]:nth-child(2) {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span[aria-hidden="true"]:nth-child(3) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span[aria-hidden="true"]:nth-child(4) {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  z-index: 12;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(252, 251, 248, 0.98);
  box-shadow: 0 24px 60px rgba(33, 63, 50, 0.16);
}

.mobile-menu nav {
  display: grid;
  gap: 6px;
}

.mobile-menu a:not(.button) {
  min-height: 46px;
  border-radius: 8px;
  padding: 12px;
  color: var(--ink);
  font-weight: 800;
}

.mobile-menu a:not(.button):focus-visible,
.mobile-menu a:not(.button):hover {
  background: var(--success-bg);
}

.nav-links a,
.site-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  transition:
    color 220ms var(--motion-ease-soft),
    opacity 220ms var(--motion-ease-soft);
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--blue-deep);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
  transition:
    transform 220ms var(--motion-ease-soft),
    box-shadow 220ms var(--motion-ease-soft),
    border-color 220ms var(--motion-ease-soft),
    background 220ms var(--motion-ease-soft),
    color 220ms var(--motion-ease-soft);
}

.nav-cta,
.button.primary {
  color: #f8f6f0;
  background: var(--primary);
  box-shadow: 0 10px 20px rgba(47, 107, 79, 0.18);
}

.button.secondary {
  color: var(--ink);
  background: var(--card);
  border-color: var(--line);
}

.button.primary:hover,
.nav-cta:hover {
  transform: translateY(-1px);
  background: var(--primary-pressed);
  box-shadow: 0 14px 28px rgba(47, 107, 79, 0.2);
}

.button.secondary:hover {
  color: var(--primary);
  border-color: color-mix(in srgb, var(--primary) 42%, var(--line));
  background: #ffffff;
  box-shadow: none;
  transform: translateY(-2px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(430px, 1.12fr);
  gap: 56px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100svh - 108px);
  margin: 0 auto;
  padding: 52px 0 80px;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: none;
}

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

h1,
h2 {
  font-family: "Chonburi", "Bai Jamjuree", sans-serif;
  font-weight: 400;
  line-height: 1.05;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 3.3vw, 3.65rem);
  line-height: 1.08;
  word-break: keep-all;
  overflow-wrap: normal;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: 1.15rem;
  line-height: 1.75;
}

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

.cta-support-line {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
}

.pilot-clarity-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 650px;
  margin-top: 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pilot-clarity-strip div {
  display: grid;
  align-content: start;
  gap: 7px;
  min-height: 92px;
  padding: 16px 18px 16px 0;
}

.pilot-clarity-strip div:not(:first-child) {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.pilot-clarity-strip span,
.pilot-fast-facts span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.3;
}

.pilot-clarity-strip strong,
.pilot-fast-facts strong {
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.45;
}

.pilot-clarity-strip a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 560px;
  margin: 34px 0 0;
}

.hero-metrics div {
  border-top: 3px solid var(--ink);
  padding-top: 12px;
}

.hero-metrics dt {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: none;
}

.hero-metrics dd {
  margin: 0;
  font-weight: 800;
  line-height: 1.35;
}

.hero-collage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(240px, 0.82fr);
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  min-height: 540px;
  --hero-parallax: 0px;
  --hero-depth: 0;
  --hero-phone-y: 0px;
  --hero-dashboard-y: 0px;
  --hero-dashboard-opacity: 1;
  --hero-qr-y: 0px;
  --hero-screenshot-y: 0px;
  --hero-chip-y: 0px;
  --hero-receipt-y: 0px;
}

.collage-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 230px;
  padding: 24px;
  border: 1px solid color-mix(in srgb, var(--border) 85%, #ffffff);
  border-radius: 8px;
  background: linear-gradient(180deg, #fffef8 0%, #eef5ed 100%);
  box-shadow: none;
}

.collage-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  z-index: 1;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent 64%);
  opacity: 0.85;
}

.collage-panel::after {
  content: "";
  position: absolute;
  inset: auto -28px -34px auto;
  width: 128px;
  height: 128px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--mint) 52%, transparent);
}

.collage-panel-phone {
  grid-row: span 2;
  min-height: 540px;
  justify-content: flex-start;
  background:
    linear-gradient(90deg, rgba(47, 107, 79, 0.09), transparent 42%),
    linear-gradient(180deg, #fffef8 0%, #ecf5ed 100%);
}

.collage-panel-dashboard {
  background:
    linear-gradient(135deg, rgba(207, 230, 214, 0.28), transparent 46%),
    linear-gradient(135deg, #fffef8 0%, #f2f5ea 100%);
}

.collage-panel-qr {
  background: var(--text-strong);
  color: #eef4ed;
}

.collage-kicker {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-bottom: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--success-bg);
  color: var(--primary);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: none;
}

.collage-panel-qr .collage-kicker {
  background: rgba(231, 241, 234, 0.14);
  color: #dcebdd;
}

.collage-panel strong {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 310px;
  margin-bottom: 8px;
  font-size: 1.5rem;
  line-height: 1.15;
}

.collage-panel p {
  position: relative;
  z-index: 1;
  max-width: 310px;
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.6;
}

.collage-panel-qr p {
  color: rgba(238, 244, 237, 0.72);
}

.collage-screenshot {
  position: relative;
  z-index: 1;
  align-self: center;
  overflow: hidden;
  width: min(330px, 92%);
  aspect-ratio: 9 / 19.5;
  margin: 22px 0 0;
  border: 6px solid var(--ink);
  border-radius: 30px;
  background: #101110;
  box-shadow: 0 20px 36px rgba(33, 63, 50, 0.18);
  transform: rotate(-1.4deg);
}

.collage-screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 16%;
}

.collage-chip-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: center;
  margin-top: auto;
  padding-top: 18px;
}

.collage-panel-phone .collage-chip-row {
  margin-top: 18px;
  padding-top: 0;
}

.collage-chip-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 900;
}

.collage-evidence-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
  font-weight: 800;
  line-height: 1.45;
}

.collage-evidence-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--line) 78%, #ffffff);
}

.collage-evidence-list .evidence-dot {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 5px rgba(47, 107, 79, 0.1);
}

.receipt-row span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.checkin-receipt {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-top: 22px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(246, 251, 245, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.receipt-status,
.receipt-row,
.receipt-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.receipt-status {
  justify-content: flex-start;
  color: #f5fbf4;
  font-size: 0.78rem;
  font-weight: 900;
}

.receipt-status span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #80e0a0;
  box-shadow: 0 0 0 5px rgba(128, 224, 160, 0.16);
}

.receipt-row {
  padding-top: 10px;
  border-top: 1px dashed rgba(255, 255, 255, 0.14);
}

.receipt-row b,
.receipt-bottom strong {
  color: #f5fbf4;
  font-size: 0.82rem;
}

.collage-panel-qr .receipt-row span {
  color: rgba(238, 244, 237, 0.62);
}

.collage-qr-blank {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100px;
  aspect-ratio: 1;
  border-radius: 18px;
  background:
    linear-gradient(90deg, var(--text-strong) 8px, transparent 8px) 0 0 / 21px 21px,
    linear-gradient(var(--text-strong) 8px, transparent 8px) 0 0 / 21px 21px,
    #f6fbf5;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.collage-qr-blank span {
  width: 38px;
  height: 38px;
  border: 8px solid var(--primary);
  background: #f6fbf5;
}

.audience-band,
.demo-section,
.value-section,
.flow-section,
.pilot-section,
.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.audience-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 88px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.demo-section {
  padding: 6px 0 92px;
}

.demo-device-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(210px, 1fr));
  gap: 18px;
  align-items: start;
}

.demo-device-card {
  display: grid;
  justify-items: center;
  gap: 18px;
  margin: 0;
}

.phone-shell {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 248px);
  aspect-ratio: 9 / 19.5;
  border: 10px solid var(--ink);
  border-radius: 34px;
  background: var(--ink);
  box-shadow: 0 24px 54px rgba(33, 63, 50, 0.16);
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  width: 42%;
  height: 25px;
  border-radius: 0 0 16px 16px;
  background: var(--ink);
  transform: translateX(-50%);
}

.screen-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background:
    radial-gradient(circle at 28% 22%, rgba(231, 241, 234, 0.9), transparent 28%),
    linear-gradient(180deg, #fffdf7 0%, #f2f4e8 58%, #e8f0e3 100%);
}

.screen-placeholder span {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid color-mix(in srgb, var(--border) 88%, #ffffff);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--blue-deep);
  font-weight: 800;
}

.phone-screen-image {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: contain;
  object-position: top center;
  background: #f6f4ec;
}

.demo-carousel-controls,
.demo-carousel-dots {
  display: none;
}

.demo-carousel-button {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  cursor: pointer;
  touch-action: manipulation;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.demo-carousel-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.demo-carousel-button:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

.demo-carousel-button:not(:disabled):active {
  transform: scale(0.96);
}

.demo-scroll-hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.demo-device-card figcaption {
  display: grid;
  gap: 6px;
  width: min(100%, 248px);
  padding: 0 4px;
}

.demo-device-card strong {
  font-size: 1.02rem;
  line-height: 1.25;
}

.demo-device-card span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.45;
}

.audience-card,
.value-item {
  position: relative;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 30px 28px;
  box-shadow: none;
  transition: transform 200ms ease-out, background 200ms ease-out, border-color 200ms ease-out;
}

.audience-card:not(:first-child) {
  border-left: 1px solid var(--line);
}

.audience-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 18px;
  color: var(--primary);
}

.card-label,
.value-number {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  color: var(--blue-deep);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: none;
}

.value-number {
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--surface-proof);
}

.audience-card h2,
.value-item h3 {
  margin-bottom: 12px;
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 1.4rem;
  line-height: 1.25;
}

.audience-card p,
.value-item p,
.section-heading p,
.pilot-copy p,
.flow-list p,
.site-footer p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.value-section,
.flow-section,
.pilot-section {
  padding: 92px 0;
}

.cta-band {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, auto);
  gap: 32px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0;
  background: var(--text-strong);
  color: #eef4ed;
}

.cta-band .eyebrow {
  margin-bottom: 10px;
  color: #c8dece;
}

.cta-band h2 {
  margin-bottom: 0;
  color: #fbfaf5;
  font-size: 2.15rem;
}

.cta-band-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 12px 0 0;
  color: rgba(238, 244, 237, 0.82);
  font-weight: 600;
  line-height: 1.65;
}

.cta-band-copy .cta-fallback {
  color: rgba(238, 244, 237, 0.92);
  font-size: 0.92rem;
}

.cta-fallback a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #fbfaf5;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.button.primary.inverse {
  color: var(--text-strong);
  background: var(--success-bg);
  box-shadow: none;
}

.button.secondary.inverse {
  color: #fbfaf5;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.36);
}

.button.primary.inverse:hover,
.button.secondary.inverse:hover {
  color: #fbfaf5;
  background: var(--primary);
}

.button.secondary.inverse:hover {
  border-color: rgba(255, 255, 255, 0.64);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading.compact {
  display: block;
  max-width: 760px;
}

.section-heading h2,
.pilot-copy h2 {
  margin-bottom: 0;
  font-size: 3rem;
}

.value-section .section-heading h2 {
  line-height: 1.12;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.value-flow-cue {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: -8px 0 22px;
}

.value-flow-cue span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
}

.value-flow-cue span:not(:last-child)::after {
  content: "";
  width: 18px;
  height: 1px;
  margin-left: 12px;
  background: var(--primary);
}

.value-flow-cue span {
  transition:
    opacity var(--motion-duration-fast) var(--motion-ease-soft),
    transform var(--motion-duration-fast) var(--motion-ease-soft);
}

.value-flow-cue[data-reveal]:not(.is-visible) span {
  opacity: 0.62;
  transform: translate3d(0, 6px, 0);
}

.value-flow-cue.is-visible span:nth-child(2) {
  transition-delay: 70ms;
}

.value-flow-cue.is-visible span:nth-child(3) {
  transition-delay: 140ms;
}

.value-flow-cue.is-visible span:nth-child(4) {
  transition-delay: 210ms;
}

.value-item {
  min-height: 260px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.46);
}

.flow-section,
.pilot-section,
.site-footer {
  position: relative;
  isolation: isolate;
  background: var(--text-strong);
  color: #eef4ed;
}

.cta-band::before,
.flow-section::before,
.pilot-section::before,
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 50%;
  z-index: -1;
  width: 100vw;
  margin-left: -50vw;
  background: var(--text-strong);
}

.flow-section .eyebrow {
  color: #c8dece;
}

.flow-section .section-heading h2,
.pilot-copy h2 {
  color: #fbfaf5;
}

.flow-section .section-heading p,
.pilot-copy p {
  color: rgba(238, 244, 237, 0.84);
}

.flow-list {
  --flow-border: rgba(255, 255, 255, 0.22);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--flow-border);
  border-left: 1px solid var(--flow-border);
}

.flow-list li {
  position: relative;
  min-height: 300px;
  padding: 26px;
  border-right: 1px solid var(--flow-border);
  border-bottom: 1px solid var(--flow-border);
}

.flow-list li > span {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 60px;
  color: var(--ink);
  background: var(--success-bg);
  font-weight: 800;
  transition:
    transform 680ms var(--motion-ease),
    box-shadow 680ms var(--motion-ease);
}

.flow-list li.is-visible > span {
  transform: translate3d(0, -4px, 0);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.flow-list h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
  line-height: 1.2;
}

.flow-list p {
  color: rgba(238, 244, 237, 0.82);
}

.pilot-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 0.75fr);
  gap: 54px;
  align-items: center;
}

.pilot-copy h2 {
  margin-bottom: 22px;
}

.pilot-fast-facts {
  display: grid;
  gap: 0;
  max-width: 560px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.pilot-fast-facts div {
  display: grid;
  gap: 8px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.pilot-fast-facts span {
  color: rgba(238, 244, 237, 0.72);
}

.pilot-fast-facts strong {
  color: #fbfaf5;
}

.pilot-table {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  overflow: hidden;
}

.pilot-table div {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 18px;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.pilot-table div:last-child {
  border-bottom: 0;
}

.pilot-table span {
  color: #c8dece;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: none;
}

.pilot-table strong {
  color: #fbfaf5;
  line-height: 1.45;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  gap: 32px;
  padding: 38px 0 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: #c6d3cb;
}

.footer-brand {
  margin-bottom: 14px;
  color: #fbfaf5;
}

.site-footer address {
  display: grid;
  align-content: start;
  gap: 12px;
  color: #e4ece5;
  font-style: normal;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.86rem;
}

[data-reveal] {
  --reveal-x: 0px;
  --reveal-y: 18px;
  --reveal-scale: 1;
  --reveal-duration: var(--motion-duration);
  opacity: 0;
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale));
  transform-origin: center top;
  animation: reveal-failsafe 1ms ease 1600ms forwards;
  transition:
    opacity var(--reveal-duration) var(--motion-ease),
    transform var(--reveal-duration) var(--motion-ease);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  animation: none;
}

@keyframes reveal-failsafe {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.section-heading[data-reveal],
.cta-band-copy[data-reveal],
.pilot-copy[data-reveal] {
  --reveal-y: 14px;
  --reveal-scale: 1;
}

.audience-card[data-reveal],
.value-item[data-reveal] {
  --reveal-y: 16px;
  --reveal-scale: 0.992;
}

.demo-device-card[data-reveal] {
  --reveal-y: 24px;
  --reveal-scale: 0.986;
  --reveal-duration: 780ms;
}

.flow-list > [data-reveal],
.pilot-table > [data-reveal] {
  --reveal-x: 10px;
  --reveal-y: 0px;
  --reveal-duration: 640ms;
}

.value-flow-cue[data-reveal],
.pilot-fast-facts[data-reveal],
.cta-band .hero-actions[data-reveal] {
  --reveal-y: 12px;
  --reveal-scale: 1;
  --reveal-duration: 620ms;
}

.audience-band > [data-reveal]:nth-child(2),
.demo-device-grid > [data-reveal]:nth-child(2),
.value-grid > [data-reveal]:nth-child(2),
.flow-list > [data-reveal]:nth-child(2),
.pilot-table > [data-reveal]:nth-child(2) {
  --reveal-delay: 60ms;
}

.audience-band > [data-reveal]:nth-child(3),
.demo-device-grid > [data-reveal]:nth-child(3),
.value-grid > [data-reveal]:nth-child(3),
.flow-list > [data-reveal]:nth-child(3),
.pilot-table > [data-reveal]:nth-child(3) {
  --reveal-delay: 120ms;
}

.demo-device-grid > [data-reveal]:nth-child(4),
.value-grid > [data-reveal]:nth-child(4),
.flow-list > [data-reveal]:nth-child(4),
.pilot-table > [data-reveal]:nth-child(4) {
  --reveal-delay: 180ms;
}

@media (hover: hover) and (pointer: fine) {
  .audience-card:hover,
  .value-item:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
  }
}

@media (min-width: 981px) {
  .br-lg {
    display: inline;
  }
}

@media (min-width: 981px) and (prefers-reduced-motion: no-preference) {
  .hero-copy > .eyebrow,
  .hero-copy > h1,
  .hero-copy > .hero-lede,
  .hero-copy > .cta-support-line,
  .hero-copy > .pilot-clarity-strip,
  .hero-copy > .hero-metrics {
    animation: trusted-fade-up 780ms var(--motion-ease) both;
  }

  .hero-copy > h1 {
    animation-delay: 70ms;
  }

  .hero-copy > .hero-lede {
    animation-delay: 140ms;
  }

  .hero-copy > .hero-actions {
    animation: trusted-fade-in 760ms var(--motion-ease) 210ms both;
  }

  .hero-copy > .cta-support-line {
    animation-delay: 260ms;
  }

  .hero-copy > .pilot-clarity-strip {
    animation-delay: 330ms;
  }

  .hero-copy > .hero-metrics {
    animation-delay: 400ms;
  }

  .hero.is-motion-ready .hero-collage {
    perspective: 1200px;
    transform-style: preserve-3d;
  }

  .hero.is-motion-ready .collage-panel,
  .hero.is-motion-ready .collage-screenshot,
  .hero.is-motion-ready .collage-chip-row,
  .hero.is-motion-ready .checkin-receipt {
    will-change: transform, opacity;
  }

  .hero.is-motion-ready .collage-panel-phone {
    transform: translate3d(0, var(--hero-phone-y), 0);
  }

  .hero.is-motion-ready .collage-panel-dashboard {
    opacity: var(--hero-dashboard-opacity);
    transform: translate3d(0, var(--hero-dashboard-y), 0);
  }

  .hero.is-motion-ready .collage-panel-qr {
    transform: translate3d(0, var(--hero-qr-y), 0);
  }

  .hero.is-motion-ready .collage-screenshot {
    transform: translate3d(0, var(--hero-screenshot-y), 0) rotate(-1.4deg);
  }

  .hero.is-motion-ready .collage-chip-row {
    transform: translate3d(0, var(--hero-chip-y), 0);
  }

  .hero.is-motion-ready .checkin-receipt {
    transform: translate3d(0, var(--hero-receipt-y), 0);
  }

  .demo-device-card .phone-shell {
    transition:
      transform 760ms var(--motion-ease),
      box-shadow 760ms var(--motion-ease);
  }

  .demo-device-card.is-visible .phone-shell {
    transform: translate3d(0, -4px, 0);
    box-shadow: 0 28px 60px rgba(33, 63, 50, 0.17);
  }
}

@keyframes trusted-fade-up {
  from {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes trusted-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    position: sticky;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    display: inline-flex;
  }

  .hero,
  .section-heading,
  .pilot-section,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  h1 {
    font-size: clamp(2.35rem, 5.6vw, 3.25rem);
  }

  .section-heading h2,
  .pilot-copy h2,
  .cta-band h2 {
    font-size: 2.35rem;
  }

  .br-md {
    display: inline;
  }

  .audience-band,
  .demo-device-grid,
  .value-grid,
  .flow-list {
    grid-template-columns: 1fr 1fr;
  }

  .audience-band {
    grid-template-columns: 1fr;
  }

  .audience-card {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .audience-card:first-child {
    border-top: 0;
  }

  .hero-collage {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: 100%;
    min-height: 68px;
    padding: 14px 20px;
    background: rgba(247, 246, 239, 0.94);
  }

  .mobile-menu {
    right: 12px;
    left: 12px;
  }

  .hero {
    gap: 28px;
    width: min(100% - 24px, 1180px);
    padding-bottom: 46px;
  }

  .hero-collage {
    display: flex;
    gap: 12px;
    width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding: 0 max(24px, calc((100vw - min(78vw, 310px)) / 2)) 12px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: max(24px, calc((100vw - min(78vw, 310px)) / 2));
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
  }

  .hero-collage::-webkit-scrollbar {
    display: none;
  }

  .collage-panel,
  .collage-panel-phone {
    flex: 0 0 min(78vw, 312px);
    grid-row: auto;
    min-height: 392px;
    padding: 18px;
    scroll-snap-align: center;
  }

  .collage-panel-phone {
    min-height: 560px;
  }

  .collage-panel strong {
    font-size: 1.28rem;
  }

  .collage-screenshot {
    width: min(226px, 86%);
    aspect-ratio: 9 / 19.5;
    margin-top: 18px;
    border-width: 5px;
    border-radius: 24px;
  }

  .collage-qr-blank {
    width: 112px;
    border-radius: 20px;
    background:
      linear-gradient(90deg, var(--text-strong) 8px, transparent 8px) 0 0 / 22px 22px,
      linear-gradient(var(--text-strong) 8px, transparent 8px) 0 0 / 22px 22px,
      #f6fbf5;
  }

  h1 {
    font-size: clamp(1.58rem, 6.6vw, 1.84rem);
    line-height: 1.12;
  }

  .br-sm {
    display: inline;
  }

  .hero-lede {
    font-size: 1rem;
    line-height: 1.62;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
  }

  .cta-support-line {
    font-size: 0.86rem;
  }

  .hero-metrics {
    display: none;
  }

  .audience-band,
  .value-grid,
  .flow-list,
  .site-footer,
  .pilot-table div {
    grid-template-columns: 1fr;
  }

  .demo-device-grid {
    display: flex;
    gap: 18px;
    width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding: 0 max(28px, calc((100vw - min(82vw, 332px)) / 2)) 12px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: max(28px, calc((100vw - min(82vw, 332px)) / 2));
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
  }

  .demo-device-grid::-webkit-scrollbar {
    display: none;
  }

  .demo-device-card {
    flex: 0 0 min(74vw, 292px);
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .demo-device-card .phone-shell {
    width: min(100%, 252px);
  }

  .demo-device-card figcaption {
    justify-items: center;
    padding: 18px 10px 0;
    text-align: center;
  }

  .demo-carousel-controls {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) 46px;
    align-items: center;
    gap: 12px;
    max-width: 360px;
    margin: 16px auto 0;
  }

  .demo-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 12px;
  }

  .demo-carousel-dots span {
    position: relative;
    width: 22px;
    height: 7px;
  }

  .demo-carousel-dots span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--primary) 18%, #ffffff);
    transform: translateX(-50%) scaleX(1);
    transition:
      transform 220ms var(--motion-ease-soft),
      background 220ms var(--motion-ease-soft);
  }

  .demo-carousel-dots span.is-active::before {
    background: var(--primary);
    transform: translateX(-50%) scaleX(3.14);
  }

  .audience-band,
  .demo-section,
  .value-section,
  .cta-band,
  .flow-section,
  .pilot-section,
  .site-footer {
    width: min(100% - 24px, 1180px);
  }

  .audience-band {
    margin-bottom: 54px;
  }

  .value-section,
  .demo-section,
  .cta-band,
  .flow-section,
  .pilot-section {
    padding: 66px 0;
  }

  .section-heading h2,
  .pilot-copy h2,
  .cta-band h2 {
    font-size: 2rem;
  }

  .cta-band h2,
  .flow-section .section-heading h2,
  .pilot-copy h2 {
    max-width: 100%;
    line-height: 1.16;
  }

  .pilot-copy h2 {
    font-size: 1.86rem;
  }

  .value-section .section-heading h2 {
    padding-bottom: 0.08em;
  }

  .demo-section .section-heading {
    text-align: center;
  }

  .cta-band {
    padding: 42px 0;
  }

  .audience-card,
  .value-item,
  .flow-list li {
    padding: 22px;
  }

  .audience-card {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .audience-card:first-child {
    border-top: 0;
  }

  .flow-list li > span {
    margin-bottom: 22px;
  }

  .flow-list {
    gap: 12px;
    border: 0;
  }

  .flow-list li {
    min-height: auto;
    border: 1px solid rgba(255, 255, 255, 0.22);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
    transition-delay: 0ms !important;
  }

  [data-reveal] {
    animation: none;
    opacity: 1;
    transform: none;
    transition-property: opacity;
  }

  .value-flow-cue[data-reveal] span,
  .flow-list li > span,
  .demo-device-card .phone-shell {
    opacity: 1;
    transform: none;
    box-shadow: none;
  }

  .hero-collage,
  .collage-panel,
  .collage-screenshot,
  .collage-chip-row,
  .checkin-receipt {
    transform: none !important;
  }
}
