:root {
  --ink: #0c120a;
  --forest: #283618;
  --moss: #606c38;
  --leaf: #7d8b4e;
  --clay: #bc6c25;
  --cream: #fefae0;
  --paper: #faf8ef;
  --white: #ffffff;
  --muted: #62685d;
  --line: rgba(12, 18, 10, 0.15);
  --line-light: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 60px rgba(6, 10, 5, 0.18);
  --max-width: 1344px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow-x: clip;
  overflow-y: hidden;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

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

h1,
h2,
h3,
.brand,
.button,
.screen-action {
  font-family: "Inter Tight", "Inter", Arial, sans-serif;
  letter-spacing: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 68px;
  background: transparent;
  pointer-events: none;
}

.site-header.is-scrolled {
  background: transparent;
}

.site-header::after {
  display: none;
}

.nav-shell {
  width: 100%;
  height: 68px;
  margin: 0 auto;
  padding: 10px 48px;
  border-radius: 0;
  background: var(--white);
  box-shadow: none;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
  pointer-events: auto;
  transition: width 0.35s ease, transform 0.35s ease, padding 0.35s ease, border-radius 0.35s ease, box-shadow 0.35s ease;
}

@media (min-width: 961px) {
  .site-header.is-scrolled .nav-shell {
    width: min(calc(100% - 32px), 1080px);
    padding-right: 16px;
    padding-left: 16px;
    border-radius: 999px;
    box-shadow: 0 14px 36px rgba(12, 18, 10, 0.14);
    transform: translateY(8px);
  }
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 650;
  white-space: nowrap;
}

.brand img {
  width: auto;
  height: 36px;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.nav-panel-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.primary-nav a {
  position: relative;
  padding: 10px 0;
  color: #22261f;
  font-size: 14px;
  font-weight: 500;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.button {
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.text-link:focus-visible,
.primary-nav a:focus-visible,
.screen-tab:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid rgba(188, 108, 37, 0.45);
  outline-offset: 3px;
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: var(--clay);
}

.button-light {
  background: var(--cream);
  color: var(--ink);
}

.button-light:hover {
  background: var(--white);
}

.hero-actions .button-light {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(6, 10, 5, 0.24);
}

.hero-actions .button-light:hover {
  background: var(--white);
  box-shadow: 0 16px 34px rgba(6, 10, 5, 0.3);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--white);
  background: rgba(12, 18, 10, 0.2);
}

.button-outline-light:hover {
  border-color: var(--white);
  background: rgba(12, 18, 10, 0.58);
}

.menu-toggle {
  width: 46px;
  height: 46px;
  padding: 0;
  border: none;
  border-radius: 6px;
  background: var(--white);
  display: none;
  place-items: center;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-toggle span:nth-child(2) {
  transform: translateY(0);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

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

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

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

.language-select {
  position: relative;
  flex-shrink: 0;
}

.language-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.language-trigger:hover,
.language-trigger[aria-expanded="true"] {
  border-color: var(--clay);
  background: rgba(12, 18, 10, 0.035);
}

.language-icon {
  width: 15px;
  height: 15px;
  color: currentColor;
}

.language-chevron {
  width: 12px;
  height: 12px;
  color: currentColor;
  transition: transform 0.2s ease;
}

.language-trigger[aria-expanded="true"] .language-chevron {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 130;
  width: 164px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 36px rgba(6, 10, 5, 0.16);
}

.language-menu[hidden] {
  display: none;
}

.language-menu button {
  width: 100%;
  min-height: 40px;
  padding: 0 10px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #3f473d;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  text-align: left;
  cursor: pointer;
}

.language-menu button:hover,
.language-menu button:focus-visible {
  background: rgba(12, 18, 10, 0.055);
}

.language-menu button.is-active {
  color: var(--forest);
  font-weight: 700;
}

.language-option-code {
  width: 25px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.nav-panel-header {
  display: none;
}

.nav-panel-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.nav-panel-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-panel-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.nav-panel-close:hover {
  background: rgba(12, 18, 10, 0.06);
}

.hero {
  position: relative;
  min-height: calc(100svh - 88px);
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 18, 10, 0.48);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max-width));
  min-height: calc(100svh - 88px);
  margin: 0 auto;
  padding: 36px 48px 20px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(570px, 1.18fr);
  gap: 24px;
  align-items: end;
}

.hero-copy {
  position: relative;
  z-index: 4;
  min-width: 0;
  max-width: 610px;
  padding-bottom: 8px;
}

.eyebrow {
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--moss);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.74);
}

.eyebrow-mark {
  width: 5px;
  height: 14px;
  background: var(--clay);
}

.hero h1 {
  max-width: 9ch;
  margin-bottom: 20px;
  font-size: 56px;
  font-weight: 600;
  line-height: 0.98;
}

.hero-copy > p {
  max-width: 560px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.55;
}

.hero-actions,
.closing-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  transition: color 0.2s ease;
}

.text-link:hover {
  color: var(--clay);
}

.text-link-light {
  color: rgba(255, 255, 255, 0.84);
}

.text-link-light:hover {
  color: var(--white);
}

.hero-signals {
  margin-top: 28px;
  padding-top: 14px;
  border-top: 1px solid var(--line-light);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.hero-signals span {
  position: relative;
  padding-left: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.hero-signals span::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 4px;
  height: 4px;
  background: var(--clay);
}

.phone-stage {
  --front-x: 0px;
  --front-y: 0px;
  --back-x: 0px;
  --back-y: 0px;
  position: relative;
  z-index: 2;
  width: 100%;
  height: 560px;
  min-width: 0;
  perspective: 1800px;
}

.phone {
  --scale: 1;
  position: absolute;
  width: 416px;
  height: 1024px;
  transform-style: preserve-3d;
  transform-origin: top left;
  will-change: transform;
}

.phone::before {
  content: none;
}

.phone::after {
  content: none;
}

.phone-buttons {
  position: absolute;
  top: 170px;
  left: -5px;
  width: 4px;
  height: 72px;
  border-radius: 3px 0 0 3px;
  background: #8f887d;
  box-shadow: 0 -34px 0 #8f887d, 0 88px 0 #8f887d;
}

.phone-screen,
.showcase-phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 39px;
  background: #f7f7f2;
  color: #182014;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(12, 18, 10, 0.12);
}

.phone-screen::after,
.showcase-phone-screen::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -34%;
  z-index: 25;
  width: 30%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transform: skewX(-10deg);
  pointer-events: none;
}

.phone-map {
  --scale: 0.62;
  top: 80px;
  right: 0;
  z-index: 1;
  transform-origin: top right;
  transform: translate3d(var(--back-x), var(--back-y), 0) scale(var(--scale));
  animation: phone-float-back 8s ease-in-out infinite;
}

.phone-origin {
  --scale: 0.62;
  top: 110px;
  bottom: auto;
  left: 265px;
  z-index: 3;
  transform: translate3d(var(--front-x), var(--front-y), 0) scale(var(--scale));
  animation: phone-float-front 7s ease-in-out infinite;
}

.phone-frame,
.phone-shadow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  pointer-events: none;
}

.phone-shadow {
  z-index: 0;
  opacity: 0.7;
}

.phone-frame {
  z-index: 1;
}

.phone-screen-media {
  position: absolute;
  z-index: 2;
  width: 356px;
  height: 988px;
  border-radius: 42px / 52px;
  background: #f7f7f2;
  overflow: hidden;
  transform-origin: 0 0;
  backface-visibility: hidden;
}

.phone-screen-media-right {
  top: 23px;
  left: 47px;
  transform: matrix3d(1.024569, 0.0549, 0, 0.000063, -0.001381, 0.997028, 0, -0.00000475, 0, 0, 1, 0, 0, -8.44, 0, 1);
}

.phone-screen-media-left {
  top: 25px;
  left: 12px;
  transform: matrix3d(0.976028, -0.053584, 0, -0.00006147, 0.000464, 0.980912, 0, 0.00000467, 0, 0, 1, 0, 0, 12.66, 0, 1);
}

.phone-screen-media img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.phone-island {
  position: absolute;
  top: 11px;
  left: 50%;
  z-index: 20;
  width: 92px;
  height: 25px;
  border-radius: 18px;
  background: #050704;
  transform: translateX(-50%);
}

.phone-island::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #101a16;
  box-shadow: inset 0 0 0 1px rgba(84, 114, 102, 0.62);
  transform: translateY(-50%);
}

.phone-status {
  position: absolute;
  top: 15px;
  right: 18px;
  left: 18px;
  z-index: 18;
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  font-weight: 700;
}

.phone-origin .phone-status {
  color: #004c4e;
  text-shadow: none;
}

.phone-homebar {
  position: absolute;
  bottom: 8px;
  left: 50%;
  z-index: 20;
  width: 98px;
  height: 4px;
  border-radius: 3px;
  background: #0d110b;
  transform: translateX(-50%);
}

.app-bar {
  position: relative;
  z-index: 12;
  height: 60px;
  padding: 32px 16px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(12, 18, 10, 0.08);
}

.app-bar-overlay {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 0;
}

.app-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  font-weight: 700;
}

.app-brand img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.app-brand-light {
  color: var(--white);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
}

.app-avatar {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(12, 18, 10, 0.14);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 6px;
  font-weight: 700;
}

.app-avatar-light {
  border-color: rgba(255, 255, 255, 0.56);
  color: var(--white);
}

.phone-content {
  padding: 16px;
}

.real-app-bar {
  position: relative;
  z-index: 12;
  height: 66px;
  padding: 32px 14px 8px;
  border-bottom: 1px solid rgba(0, 76, 78, 0.12);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.real-menu-icon {
  width: 25px;
  height: 25px;
  border-radius: 6px;
  background: #f4f7f2;
  color: #004c4e;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.real-app-bar .app-avatar {
  border: 0;
  border-radius: 7px;
  background: #c9efc5;
  color: #004c4e;
}

.record-list-content,
.quick-view-content {
  position: relative;
  color: #004c4e;
}

.record-list-content {
  padding: 13px 14px 20px;
}

.real-app-links {
  margin: 0 -2px 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 76, 78, 0.14);
  display: flex;
  gap: 12px;
  font-size: 8px;
}

.real-app-links strong {
  color: #007f16;
}

.record-list-content h2 {
  margin: 4px 0 8px;
  font-size: 19px;
  line-height: 1.05;
}

.mini-record-card {
  padding: 12px 1px;
  border-bottom: 1px solid rgba(0, 76, 78, 0.14);
}

.mini-record-card > span,
.mini-record-card > strong,
.mini-record-card > small,
.mini-record-card > em {
  display: block;
}

.mini-record-card > span {
  color: #008a14;
  font-size: 7px;
  font-weight: 700;
}

.mini-record-card > strong {
  margin-top: 2px;
  font-size: 11px;
}

.mini-record-card > small {
  margin-top: 3px;
  color: #6a7080;
  font-size: 7px;
}

.mini-record-card > em {
  width: max-content;
  margin-top: 4px;
  padding: 3px 6px;
  border-radius: 8px;
  background: #e1f5df;
  color: #126b1f;
  font-size: 6px;
  font-style: normal;
  font-weight: 700;
}

.mini-record-card > div {
  margin-top: 11px;
  display: flex;
  gap: 11px;
}

.mini-record-card b {
  color: #004c4e;
  font-size: 7px;
  font-weight: 700;
}

.real-help-bubble {
  position: absolute;
  right: 12px;
  bottom: 16px;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: #009b08;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(0, 110, 10, 0.22);
}

.quick-view-content {
  padding: 14px;
}

.quick-view-head {
  padding: 14px 13px 13px;
  border-left: 4px solid #58a651;
  background: #f1f8ef;
}

.quick-view-head > span {
  color: #008517;
  font-size: 7px;
  font-weight: 700;
}

.quick-view-head h2,
.quick-view-head h3 {
  margin: 3px 0 4px;
  color: #004c4e;
  font-size: 18px;
  line-height: 1.05;
}

.quick-view-head p {
  margin: 0;
  color: #617080;
  font-size: 8px;
  line-height: 1.35;
}

.next-step-card {
  margin: 13px 5px 0 18px;
  padding: 10px 0 11px 13px;
  border-left: 3px solid #009b08;
}

.next-step-card > strong,
.next-step-card > p {
  display: block;
}

.voice-status {
  display: block;
  margin-bottom: 10px;
  color: #004c4e;
  font-size: 11px;
}

.next-step-card > strong {
  font-size: 10px;
}

.next-step-card > p {
  margin: 3px 0 8px;
  color: #647080;
  font-size: 8px;
  line-height: 1.35;
}

.real-screen-action {
  min-height: 33px;
  padding: 0 12px;
  border-radius: 5px;
  background: #009b08;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 700;
  text-align: center;
}

.quick-facts {
  margin: 14px 18px 0;
}

.quick-facts > div {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 76, 78, 0.14);
}

.quick-facts dt {
  color: #6a7080;
  font-size: 7px;
}

.quick-facts dd {
  margin: 2px 0 0;
  color: #004c4e;
  font-size: 10px;
  font-weight: 700;
}

.quick-facts dd span {
  color: #009b08;
}

.offline-note {
  margin: 12px 18px 0;
  padding: 9px 10px;
  border-radius: 5px;
  background: #f2f7f1;
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 1px 7px;
}

.offline-note > span {
  grid-row: 1 / span 2;
  color: #009b08;
  font-size: 10px;
}

.offline-note strong,
.offline-note small {
  display: block;
}

.offline-note strong {
  font-size: 8px;
}

.offline-note small {
  color: #69717b;
  font-size: 6px;
}

.screen-kicker,
.origin-cover-copy span,
.lot-heading span,
.product-card span,
.trace-panel-head span,
.input-preview span,
.input-row span,
.map-summary span {
  color: var(--moss);
  font-size: 7px;
  font-weight: 700;
  text-transform: uppercase;
}

.map-content h2 {
  margin: 6px 0 14px;
  font-size: 21px;
  line-height: 1.08;
}

.map-preview {
  position: relative;
  height: 248px;
  border: 1px solid rgba(12, 18, 10, 0.09);
  border-radius: 5px;
  background: #d8e7df;
  overflow: hidden;
}

.map-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.map-pin {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 4px solid rgba(188, 108, 37, 0.34);
  border-radius: 50%;
  background: var(--clay);
  box-shadow: 0 0 0 6px rgba(188, 108, 37, 0.15);
}

.map-pin-one {
  top: 58%;
  left: 48%;
}

.map-pin-two {
  top: 40%;
  left: 68%;
}

.map-pin-three {
  top: 70%;
  left: 31%;
}

.map-legend {
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 6px 8px;
  border: 1px solid rgba(12, 18, 10, 0.1);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.88);
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  font-size: 6px;
  font-weight: 600;
  backdrop-filter: blur(6px);
}

.map-legend > span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clay);
}

.mini-stat-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(12, 18, 10, 0.1);
  border-radius: 5px;
}

.mini-stat-grid div {
  min-width: 0;
  padding: 10px;
}

.mini-stat-grid div + div {
  border-left: 1px solid rgba(12, 18, 10, 0.1);
}

.mini-stat-grid strong,
.mini-stat-grid span {
  display: block;
}

.mini-stat-grid strong {
  font-size: 9px;
}

.mini-stat-grid span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 7px;
}

.screen-list-row {
  margin-top: 10px;
  padding: 9px 0;
  border-top: 1px solid rgba(12, 18, 10, 0.1);
  display: grid;
  grid-template-columns: 25px 1fr auto;
  align-items: center;
  gap: 8px;
}

.screen-list-row strong,
.screen-list-row small {
  display: block;
}

.screen-list-row strong {
  font-size: 8px;
}

.screen-list-row small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 7px;
}

.row-index {
  color: var(--clay);
  font-size: 8px;
  font-weight: 700;
}

.origin-cover {
  position: relative;
  height: 310px;
  background: var(--forest);
  overflow: hidden;
}

.origin-cover > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.origin-cover-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 13px 15px 15px;
  background: rgba(12, 18, 10, 0.76);
  color: var(--white);
}

.origin-cover-copy span {
  color: rgba(255, 255, 255, 0.68);
}

.origin-cover-copy h2 {
  margin: 4px 0 0;
  font-size: 20px;
  line-height: 1.1;
}

.origin-content {
  padding-top: 13px;
}

.lot-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.lot-heading div span,
.lot-heading div strong {
  display: block;
}

.lot-heading div strong {
  margin-top: 2px;
  font-size: 12px;
}

.verified-badge {
  padding: 5px 7px;
  border-radius: 3px;
  background: #e6edda;
  color: var(--forest) !important;
  font-size: 7px !important;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.verified-badge i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 7px;
  font-style: normal;
}

.product-card {
  margin-top: 11px;
  padding: 7px;
  border: 1px solid rgba(12, 18, 10, 0.1);
  border-radius: 5px;
  display: grid;
  grid-template-columns: 55px 1fr;
  align-items: center;
  gap: 9px;
}

.product-card img {
  width: 55px;
  height: 48px;
  border-radius: 3px;
  object-fit: cover;
}

.product-card span,
.product-card strong {
  display: block;
}

.product-card strong {
  margin-top: 3px;
  font-size: 9px;
  line-height: 1.25;
}

.trace-steps {
  margin-top: 10px;
}

.trace-steps > div {
  min-height: 37px;
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 8px;
  border-top: 1px solid rgba(12, 18, 10, 0.09);
}

.trace-steps > div > span {
  color: var(--clay);
  font-size: 7px;
  font-weight: 700;
}

.trace-steps p {
  margin: 0;
}

.trace-steps strong,
.trace-steps small {
  display: block;
}

.trace-steps strong {
  font-size: 8px;
}

.trace-steps small {
  color: var(--muted);
  font-size: 7px;
}

@keyframes phone-float-back {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -8px; }
}

@keyframes phone-float-front {
  0%, 100% { margin-bottom: 0; }
  50% { margin-bottom: 10px; }
}

.section {
  padding: 104px 0;
}

.section-inner {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 0 48px;
}

.section-heading h2,
.experience-nav h2,
.events-heading h2 {
  margin-bottom: 26px;
  font-size: 52px;
  font-weight: 550;
  line-height: 1.04;
}

.experience-nav > p {
  max-width: 590px;
  margin-bottom: 46px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.trace-panel {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  width: min(430px, 78%);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(12, 18, 10, 0.94);
  color: var(--white);
  box-shadow: 0 28px 70px rgba(6, 10, 5, 0.3);
  backdrop-filter: blur(16px);
}

.trace-panel-head {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.trace-panel-head span {
  color: rgba(255, 255, 255, 0.5);
}

.trace-panel-head strong {
  font-size: 12px;
}

.trace-line {
  min-height: 62px;
  display: grid;
  grid-template-columns: 12px 1fr auto;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.trace-line:last-child {
  border-bottom: 0;
}

.trace-line > span {
  width: 9px;
  height: 9px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
}

.trace-line > span.is-complete {
  border-color: var(--clay);
  background: var(--clay);
}

.trace-line strong,
.trace-line small {
  display: block;
}

.trace-line strong {
  font-size: 11px;
}

.trace-line small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
}

.trace-line time {
  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
}

.product-story {
  min-height: 940px;
  background: #f3f4ee;
}

.product-story-offline {
  background: var(--paper);
}

.story-grid {
  min-height: 740px;
  display: grid;
  grid-template-columns: minmax(390px, 0.88fr) minmax(560px, 1.12fr);
  align-items: center;
  gap: 92px;
}

.story-grid-reverse {
  grid-template-columns: minmax(560px, 1.12fr) minmax(390px, 0.88fr);
}

.story-copy h2 {
  max-width: 650px;
  margin-bottom: 28px;
  font-size: 68px;
  font-weight: 550;
  line-height: 0.96;
}

.story-copy > p {
  max-width: 590px;
  margin-bottom: 44px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.story-points {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.story-points li {
  min-height: 68px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
}

.story-points span {
  color: var(--clay);
  font-size: 10px;
  font-weight: 700;
}

.story-points strong {
  font-size: 14px;
  font-weight: 550;
}

.story-visual {
  position: relative;
  min-height: 740px;
  background: #e7eadf;
  overflow: hidden;
}

.story-color-field {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 58%;
  background: var(--clay);
}

.confirmation-visual {
  background: #f4f4ef;
}

.confirmation-visual .story-color-field {
  inset: 34px 24px;
  width: auto;
  border-radius: 6px;
  background: linear-gradient(150deg, #c46c24 0%, #bf713e 25%, #9a7d53 48%, #647047 68%, #293d1d 100%);
}

.confirmation-visual::before {
  content: none;
}

.captured-phone,
.offline-phone {
  position: absolute;
  z-index: 2;
  width: 350px;
  height: 710px;
  border: 9px solid #aaa296;
  border-radius: 54px;
  background: #f7f7f2;
  box-shadow: 0 44px 90px rgba(12, 18, 10, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.75);
  overflow: hidden;
}

.captured-phone {
  right: auto;
  left: 50%;
  bottom: 20px;
  width: 416px;
  height: 1024px;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  overflow: visible;
  transform: translateX(-50%) scale(0.66);
  transform-origin: bottom center;
}

.captured-phone .phone-screen-media img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.offline-visual {
  background: var(--ink);
}

.offline-visual .story-color-field {
  right: 0;
  left: auto;
  width: 64%;
  background: url("../images/about-rastro-03.jpeg") center / cover no-repeat;
  opacity: 0.9;
}

.offline-visual::after {
  content: "";
  position: absolute;
  inset: 0 0 0 64%;
  background: rgba(12, 18, 10, 0.42);
}

.offline-phone {
  bottom: -64px;
  left: 10%;
  padding: 0;
  border-color: #b8b0a4;
  transform: rotate(-3deg);
}

.offline-phone .phone-island {
  top: 10px;
  z-index: 8;
  width: 104px;
  height: 28px;
}

.offline-phone .phone-status {
  position: relative;
  z-index: 4;
  height: 48px;
  padding: 16px 20px 0;
  color: var(--ink);
}

.offline-phone .real-app-bar {
  min-height: 64px;
}

.offline-phone-body {
  padding: 30px 22px 60px;
}

.offline-phone-body h3 {
  margin: 8px 0 8px;
  color: #004f54;
  font-size: 25px;
}

.offline-phone-body > p {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 13px;
}

.offline-sync-state {
  margin-bottom: 20px;
  padding: 18px;
  border-left: 4px solid #00a414;
  background: #eff8ec;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
}

.offline-sync-state > span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #00a414;
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 13px;
}

.offline-sync-state strong,
.offline-sync-state small,
.offline-queue-row strong,
.offline-queue-row small {
  display: block;
}

.offline-sync-state strong {
  color: #004f54;
  font-size: 13px;
}

.offline-sync-state small {
  margin-top: 3px;
  color: #56706c;
  font-size: 9px;
}

.offline-queue-row {
  min-height: 78px;
  padding: 12px 0;
  border-bottom: 1px solid #d7dfd7;
  display: grid;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  gap: 10px;
}

.offline-queue-row > span {
  color: var(--clay);
  font-size: 10px;
  font-weight: 700;
}

.offline-queue-row strong {
  color: #004f54;
  font-size: 12px;
}

.offline-queue-row small,
.offline-queue-row em {
  color: #687a75;
  font-size: 9px;
  font-style: normal;
}

.section-dark {
  background: var(--forest);
  color: var(--white);
}

.section-heading,
.events-heading {
  margin-bottom: 70px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: end;
  gap: 80px;
}

.section-heading h2,
.events-heading h2 {
  max-width: 790px;
  margin-bottom: 0;
}

.section-heading > p,
.events-heading > div:last-child > p {
  max-width: 500px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 1.65;
}

.process.section {
  padding: 38px 0 34px;
  background: var(--white);
  color: var(--ink);
}

.flow-layout {
  display: block;
}

.flow-demo {
  position: relative;
  width: min(100%, 900px);
  margin: 0 auto;
  min-width: 0;
  min-height: 470px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 68px;
  row-gap: 18px;
}

.flow-demo:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 8px;
}

.flow-demo-copy {
  position: relative;
  align-self: stretch;
  min-width: 0;
  min-height: 360px;
}

.flow-demo-caption {
  position: absolute;
  inset: 52px 0 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  pointer-events: none;
}

.flow-demo-caption.is-active {
  z-index: 1;
  opacity: 1;
  transform: translateY(0);
}

.flow-demo-caption > span {
  display: block;
  margin-bottom: 16px;
  color: var(--moss);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.flow-demo-caption h3 {
  max-width: 15ch;
  margin-bottom: 14px;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.02;
}

.flow-demo-caption p {
  max-width: 36ch;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.flow-demo-controls {
  grid-column: 1 / -1;
  z-index: 2;
  min-height: 52px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.flow-demo-actions {
  display: flex;
  gap: 8px;
}

.flow-demo-controls button {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(42, 62, 28, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 17px;
  cursor: pointer;
}

.flow-demo-controls button svg,
.audience-carousel-controls button svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flow-demo-controls button:hover,
.flow-demo-controls button:focus-visible {
  border-color: var(--moss);
  background: var(--white);
  outline: none;
}

.flow-demo-device {
  position: relative;
  z-index: 1;
  width: 220px;
  aspect-ratio: 700 / 1322;
  justify-self: end;
  filter: drop-shadow(0 20px 28px rgba(12, 18, 10, 0.18));
}

.flow-demo-screen {
  position: absolute;
  top: 3.55%;
  left: 6.82%;
  z-index: 1;
  width: 85.92%;
  height: 93.65%;
  border-radius: 20px;
  background: var(--white);
  overflow: hidden;
}

.flow-demo-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  object-fit: cover;
  object-position: top center;
  transform: scale(1.018);
  transition: opacity 0.8s ease, transform 1.1s ease;
}

.flow-demo-image.is-active {
  opacity: 1;
  transform: scale(1);
}

.flow-demo-frame {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.experience {
  background: #dfe5d2;
}

.experience-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.75fr) minmax(560px, 1.25fr);
  gap: 80px;
  align-items: start;
}

.experience-nav {
  position: sticky;
  top: 116px;
  padding-top: 26px;
}

.experience-nav h2 {
  max-width: 560px;
}

.experience-nav > p {
  margin-bottom: 40px;
}

.screen-tabs {
  border-top: 1px solid rgba(12, 18, 10, 0.18);
}

.screen-tab {
  width: 100%;
  min-height: 64px;
  padding: 0 8px;
  border: 0;
  border-bottom: 1px solid rgba(12, 18, 10, 0.18);
  background: transparent;
  color: var(--muted);
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 10px;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.screen-tab span {
  color: var(--clay);
  font-size: 10px;
  font-weight: 700;
}

.screen-tab.is-active {
  background: rgba(255, 255, 255, 0.45);
  color: var(--ink);
  font-weight: 600;
}

.screen-stage {
  position: relative;
  min-height: 780px;
  padding: 56px 44px 0;
  background: var(--ink);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
}

.showcase-phone {
  position: relative;
  z-index: 2;
  width: 350px;
  height: 710px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 52px;
  background: #b8b0a4;
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.65);
}

.showcase-phone-screen {
  border-radius: 43px;
}

.showcase-phone .phone-island {
  width: 104px;
  height: 28px;
}

.showcase-screen {
  position: absolute;
  inset: 0;
  padding-top: 48px;
  background: #f7f7f2;
  opacity: 0;
  transform: translateY(16px) scale(0.99);
  transition: opacity 0.28s ease, transform 0.28s ease;
  overflow: hidden;
}

.showcase-screen.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.showcase-screen .real-app-bar {
  height: 56px;
  padding: 8px 14px;
}

.showcase-screen .real-menu-icon,
.showcase-screen .real-app-bar .app-avatar {
  width: 31px;
  height: 31px;
}

.showcase-real-body {
  height: calc(100% - 56px);
  overflow: hidden;
}

.showcase-real-body.quick-view-content,
.showcase-real-body.record-list-content,
.stage-screen-body {
  padding: 18px;
}

.showcase-real-body .quick-view-head {
  padding: 18px 16px;
}

.showcase-real-body .quick-view-head > span,
.stage-screen-body > .screen-kicker,
.showcase-real-body.record-list-content > .screen-kicker {
  font-size: 8px;
}

.showcase-real-body .quick-view-head h3,
.stage-screen-body > h3,
.showcase-real-body.record-list-content > h3 {
  margin: 4px 0 6px;
  color: #004c4e;
  font-size: 22px;
  line-height: 1.05;
}

.showcase-real-body .quick-view-head p {
  font-size: 10px;
  line-height: 1.45;
}

.showcase-real-body .next-step-card {
  margin-top: 17px;
  padding-top: 13px;
  padding-bottom: 14px;
}

.showcase-real-body .next-step-card > strong {
  font-size: 12px;
}

.showcase-real-body .next-step-card > p {
  font-size: 10px;
}

.showcase-real-body .real-screen-action {
  min-height: 42px;
  font-size: 10px;
}

.showcase-real-body .quick-facts dt {
  font-size: 8px;
}

.showcase-real-body .quick-facts dd {
  font-size: 12px;
}

.stage-screen-body {
  color: #004c4e;
}

.real-stage-list {
  margin-top: 15px;
  padding-left: 12px;
  border-left: 3px solid #3c84ad;
}

.real-stage-list > div {
  min-height: 68px;
  padding: 9px 10px;
  border-bottom: 7px solid #f3f7f8;
  background: #fbfcfd;
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 9px;
}

.real-stage-list > div > span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #eef4ef;
  color: #47706c;
  display: grid;
  place-items: center;
  font-size: 9px;
  font-weight: 700;
}

.real-stage-list > div.is-done {
  background: #edf8e9;
}

.real-stage-list > div.is-done > span {
  background: #009b08;
  color: #ffffff;
}

.real-stage-list p {
  margin: 0;
}

.real-stage-list strong,
.real-stage-list small {
  display: block;
}

.real-stage-list strong {
  font-size: 13px;
}

.real-stage-list small {
  margin-top: 2px;
  font-size: 9px;
}

.showcase-real-body .real-app-links {
  margin-bottom: 24px;
  font-size: 10px;
}

.showcase-real-body.record-list-content > h3 {
  margin-bottom: 5px;
}

.showcase-real-body .mini-record-card {
  padding: 16px 1px;
}

.showcase-real-body .mini-record-card > span,
.showcase-real-body .mini-record-card > small,
.showcase-real-body .mini-record-card b {
  font-size: 8px;
}

.showcase-real-body .mini-record-card > strong {
  font-size: 14px;
}

.showcase-real-body .mini-record-card > em {
  font-size: 7px;
}

.showcase-captured-body {
  height: calc(100% - 56px);
  padding: 16px;
  background: #edf1eb;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.showcase-captured-body img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.showcase-success-body img {
  transform: scale(1.08);
}

.showcase-access-body {
  padding: 0;
  background: #142923;
}

.showcase-access-body img {
  object-fit: cover;
}

.showcase-cover {
  height: 290px;
  margin: 0 14px;
  border-radius: 5px;
  overflow: hidden;
}

.showcase-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-map {
  height: 324px;
  margin: 0 14px;
  border-radius: 5px;
  overflow: hidden;
  background: #dbe7df;
}

.showcase-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.showcase-body {
  padding: 20px;
}

.showcase-body h3 {
  margin: 5px 0 18px;
  font-size: 24px;
  line-height: 1.1;
}

.input-preview,
.input-row > div,
.status-preview,
.map-summary {
  border: 1px solid rgba(12, 18, 10, 0.11);
  border-radius: 5px;
  background: var(--white);
}

.input-preview {
  padding: 11px 12px;
}

.input-preview span,
.input-preview strong {
  display: block;
}

.input-preview strong {
  margin-top: 3px;
  font-size: 11px;
}

.input-row {
  margin-top: 9px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.input-row > div {
  min-width: 0;
  padding: 10px;
}

.input-row span,
.input-row strong {
  display: block;
}

.input-row strong {
  margin-top: 3px;
  font-size: 9px;
  overflow-wrap: anywhere;
}

.screen-action {
  min-height: 42px;
  margin-top: 12px;
  padding: 0 13px;
  border-radius: 5px;
  background: var(--forest);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 600;
}

.status-preview {
  margin-bottom: 10px;
  padding: 11px 12px;
  display: grid;
  grid-template-columns: 10px 1fr;
  align-items: center;
  gap: 10px;
}

.status-preview > span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--moss);
}

.status-preview strong,
.status-preview small {
  display: block;
}

.status-preview strong {
  font-size: 10px;
}

.status-preview small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 8px;
}

.map-summary {
  margin-bottom: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.map-summary div {
  min-width: 0;
  padding: 11px;
}

.map-summary div + div {
  border-left: 1px solid rgba(12, 18, 10, 0.11);
}

.map-summary strong,
.map-summary span {
  display: block;
}

.map-summary strong {
  font-size: 10px;
}

.map-summary span {
  margin-top: 3px;
  font-size: 7px;
}

.capabilities {
  background: var(--paper);
}

.capabilities.section {
  padding: 56px 0;
}

.capabilities .section-heading {
  margin-bottom: 28px;
}

.capabilities .section-heading h2 {
  font-size: 44px;
}

.section-heading-dark > p {
  color: var(--muted);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 128px;
  gap: 4px;
}

.capability-card {
  min-height: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #f1f1ed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.capability-card:hover {
  background: var(--white);
  transform: translateY(-4px);
}

.capability-card h3 {
  margin-bottom: 7px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.15;
}

.capability-card p {
  max-width: 310px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.capability-card-feature {
  grid-column: span 2;
  grid-row: span 2;
  padding: 24px;
  background: var(--ink);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(190px, 0.9fr) minmax(210px, 1.1fr);
  align-items: stretch;
  gap: 24px;
  overflow: hidden;
}

.capability-card-feature:hover {
  background: var(--forest);
}

.capability-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.capability-copy h3 {
  max-width: 330px;
  font-size: 28px;
  line-height: 1.02;
}

.capability-copy p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.45;
}

.voice-demo {
  min-width: 0;
  padding: 18px;
  background: #f6f5ef;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.voice-bars {
  height: 72px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.voice-bars i {
  width: 4px;
  height: 34%;
  background: var(--moss);
  animation: voice-pulse 1.15s ease-in-out infinite alternate;
}

.voice-bars i:nth-child(2),
.voice-bars i:nth-child(8) { height: 55%; animation-delay: -0.35s; }
.voice-bars i:nth-child(3),
.voice-bars i:nth-child(7) { height: 78%; animation-delay: -0.7s; }
.voice-bars i:nth-child(4),
.voice-bars i:nth-child(6) { height: 46%; animation-delay: -0.2s; }
.voice-bars i:nth-child(5) { height: 92%; animation-delay: -0.55s; }

@keyframes voice-pulse {
  from { transform: scaleY(0.48); opacity: 0.58; }
  to { transform: scaleY(1); opacity: 1; }
}

.voice-transcript {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.voice-transcript span,
.voice-transcript strong,
.voice-transcript small {
  display: block;
}

.voice-transcript span {
  margin-bottom: 5px;
  color: var(--clay);
  font-size: 8px;
  font-weight: 700;
}

.voice-transcript strong {
  max-width: 330px;
  font-family: "Inter Tight", "Inter", Arial, sans-serif;
  font-size: 15px;
  font-weight: 550;
  line-height: 1.2;
}

.voice-transcript small {
  margin-top: 7px;
  color: var(--muted);
  font-size: 9px;
}

.audiences {
  background: var(--ink);
  overflow: hidden;
}

.section.audiences {
  padding: 44px 0;
}

.audiences-heading {
  max-width: 780px;
  margin: 0 auto 28px;
  text-align: center;
}

.audiences-heading .eyebrow {
  justify-content: center;
}

.audiences-heading h2 {
  margin-bottom: 12px;
  font-size: 42px;
  font-weight: 550;
  line-height: 1.04;
}

.audiences-heading > p {
  max-width: 650px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 1.65;
}

.audience-carousel {
  min-width: 0;
}

.audience-carousel-toolbar {
  min-height: 38px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.audience-carousel-controls {
  display: flex;
  gap: 8px;
}

.audience-carousel-controls button {
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 19px;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.audience-carousel-controls button:hover:not(:disabled),
.audience-carousel-controls button:focus-visible {
  border-color: var(--clay);
  background: var(--clay);
  color: var(--ink);
}

.audience-carousel-controls button:disabled {
  opacity: 0.55;
  cursor: default;
}

.audience-carousel-viewport {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.audience-carousel-viewport::-webkit-scrollbar {
  display: none;
}

.audience-carousel-viewport:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 5px;
}

.audience-carousel-track {
  display: flex;
  gap: 20px;
}

.audience-card {
  flex: 0 0 calc((100% - 40px) / 3);
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: #f7f8f4;
  color: var(--ink);
  overflow: hidden;
  scroll-snap-align: start;
}

.audience-card-media {
  height: 140px;
  background: #e7eadf;
  overflow: hidden;
}

.audience-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.audience-card:hover .audience-card-media img {
  transform: scale(1.025);
}

.audience-card-body {
  padding: 18px 22px 20px;
}

.audience-card-title {
  min-height: 42px;
  margin-bottom: 8px;
}

.audience-card-title h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.12;
}

.audience-card-body > p {
  min-height: 38px;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.audience-card ul {
  margin: 0;
  padding: 12px 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 7px;
  list-style: none;
}

.audience-card li {
  position: relative;
  min-height: 18px;
  padding-left: 21px;
  color: #445044;
  font-size: 12px;
  line-height: 1.4;
}

.audience-card li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: #5f7d38;
  font-size: 11px;
  font-weight: 700;
}

.outputs {
  background: #e7eee1;
}

.outputs-grid {
  display: grid;
  grid-template-columns: minmax(560px, 1.15fr) minmax(390px, 0.85fr);
  align-items: stretch;
  gap: 70px;
}

.label-showcase {
  position: relative;
  min-height: 680px;
  --label-green-dark: #004b50;
  --label-ink: #16372a;
  --label-muted: #52675b;
  --label-border: #a8c5aa;
  background: linear-gradient(150deg, #c46c24 0%, #bf713e 25%, #9a7d53 48%, #647047 68%, #293d1d 100%);
  overflow: hidden;
}

.label-demo {
  position: absolute;
  z-index: 2;
  width: max-content;
  height: max-content;
}

.rv-label {
  position: relative;
  display: grid;
  overflow: hidden;
  border: 0.25mm solid var(--label-border);
  background: #fff;
  color: var(--label-ink);
  font-family: Arial, Helvetica, sans-serif;
}

.rv-label p,
.rv-label dl {
  margin: 0;
}

.rv-label__brand {
  display: flex;
  align-items: center;
}

.rv-label__logo {
  display: block;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.rv-label__qr-shell {
  display: grid;
  padding: 1mm;
  place-items: center;
  background: #fff;
}

.rv-label__qr {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rv-label__product,
.rv-label__lot,
.rv-label__field dd {
  overflow-wrap: anywhere;
}

.rv-label__product {
  color: var(--label-green-dark);
  font-weight: 800;
}

.rv-label__lot {
  color: var(--label-muted);
  font-family: "Courier New", Courier, monospace;
  font-weight: 700;
}

.rv-label--small {
  width: 50mm;
  height: 50mm;
  padding: 2.4mm;
  grid-template-rows: 4mm 28.5mm minmax(0, 1fr);
  gap: 1.2mm;
}

.rv-label--small .rv-label__brand {
  justify-content: center;
}

.rv-label--small .rv-label__logo {
  height: 3.8mm;
}

.rv-label--small .rv-label__qr-shell {
  width: 28.5mm;
  height: 28.5mm;
  margin: 0 auto;
}

.rv-label--small .rv-label__summary {
  display: grid;
  min-height: 0;
  align-content: center;
  gap: 0.7mm;
  text-align: center;
}

.rv-label--small .rv-label__product {
  max-height: 6.5mm;
  overflow: hidden;
  font-size: 7.7pt;
  line-height: 1.12;
}

.rv-label--small .rv-label__lot {
  max-height: 4.6mm;
  overflow: hidden;
  font-size: 5.7pt;
  line-height: 1.05;
}

.rv-label--detailed {
  width: 100mm;
  height: 50mm;
  padding: 2.8mm;
  grid-template-columns: 29mm minmax(0, 1fr);
  grid-template-rows: 5mm minmax(0, 1fr);
  gap: 1.8mm 3mm;
}

.rv-label--detailed .rv-label__brand {
  grid-column: 1 / -1;
  padding-bottom: 1.2mm;
  border-bottom: 0.25mm solid #cfe0cf;
}

.rv-label--detailed .rv-label__logo {
  height: 4mm;
}

.rv-label--detailed .rv-label__seal {
  margin-left: auto;
  color: var(--label-green-dark);
  font-size: 6.8pt;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.rv-label--detailed .rv-label__media {
  display: grid;
  min-height: 0;
  align-content: start;
  justify-items: center;
  gap: 1mm;
}

.rv-label--detailed .rv-label__qr-shell {
  width: 28mm;
  height: 28mm;
}

.rv-label--detailed .rv-label__scan {
  color: var(--label-muted);
  font-size: 6.1pt;
  font-weight: 700;
  line-height: 1.08;
  text-align: center;
}

.rv-label--detailed .rv-label__content {
  display: grid;
  min-width: 0;
  min-height: 0;
  align-content: start;
  gap: 1mm;
}

.rv-label--detailed .rv-label__product {
  max-height: 8mm;
  overflow: hidden;
  font-size: 10.5pt;
  line-height: 1.08;
}

.rv-label--detailed .rv-label__fields {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8mm 2.5mm;
}

.rv-label--detailed .rv-label__field {
  min-width: 0;
}

.rv-label--detailed .rv-label__field--wide {
  grid-column: 1 / -1;
}

.rv-label--detailed .rv-label__field dt {
  margin: 0 0 0.25mm;
  color: var(--label-muted);
  font-size: 5.5pt;
  font-weight: 800;
  letter-spacing: 0.045em;
  line-height: 1;
  text-transform: uppercase;
}

.rv-label--detailed .rv-label__field dd {
  max-height: 4.4mm;
  margin: 0;
  overflow: hidden;
  font-size: 6.8pt;
  font-weight: 700;
  line-height: 1.08;
}

.rv-label--detailed .rv-label__field--lot dd {
  max-height: 5mm;
  font-family: "Courier New", Courier, monospace;
  font-size: 6pt;
}

.rv-label--detailed .rv-label__notice {
  color: var(--label-muted);
  font-size: 5.4pt;
  line-height: 1.12;
}

.label-demo-small {
  top: 82px;
  right: 56px;
  transform: rotate(2deg) scale(1.24);
  transform-origin: top right;
}

.label-demo-large {
  bottom: 104px;
  left: 42px;
  transform: rotate(-2deg) scale(1.43);
  transform-origin: bottom left;
}

.output-list {
  border-top: 1px solid var(--line);
}

.output-list article {
  min-height: 146px;
  padding: 22px 2px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 18px;
}

.output-list article > span {
  color: var(--clay);
  font-size: 10px;
  font-weight: 700;
}

.output-list h3 {
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 550;
}

.output-list p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.events {
  background: var(--white);
}

.events-heading > div:last-child > p {
  margin-bottom: 20px;
  color: var(--muted);
}

.testimonials-section .events-heading {
  margin-bottom: 40px;
}

.testimonials-disclaimer {
  display: block;
  margin: -8px 0 18px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-card {
  min-width: 0;
  min-height: 270px;
  padding: 10px 24px 0;
  display: flex;
  flex-direction: column;
}

.testimonial-card + .testimonial-card {
  border-left: 1px solid var(--line);
}

.testimonial-mark {
  height: 30px;
  color: var(--clay);
  font-family: Georgia, serif;
  font-size: 50px;
  line-height: 0.9;
}

.testimonial-card blockquote {
  margin: 18px 0 24px;
}

.testimonial-card blockquote p {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
}

.testimonial-card footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.testimonial-card footer strong {
  font-size: 14px;
  font-weight: 650;
}

.testimonial-card footer time {
  color: var(--muted);
  font-size: 11px;
  font-weight: 550;
  white-space: nowrap;
}

@media (max-width: 1080px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-card {
    min-height: 230px;
  }
}

@media (max-width: 720px) {
  .testimonials-section .events-heading {
    margin-bottom: 30px;
  }

  .testimonials-grid {
    margin-right: calc(var(--page-pad) * -1);
    padding-right: var(--page-pad);
    padding-bottom: 6px;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .testimonials-grid::-webkit-scrollbar {
    display: none;
  }

  .testimonial-card {
    flex: 0 0 min(84vw, 320px);
    min-height: 260px;
    padding: 8px 20px 0;
    scroll-snap-align: start;
  }

  .testimonial-card blockquote p {
    font-size: 15px;
  }
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.event-card,
.blog-item {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--paper);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.event-card:hover,
.blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(12, 18, 10, 0.1);
}

.event-image,
.blog-image-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #e2e3d9;
  overflow: hidden;
}

.event-image img,
.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-card:hover .event-image img,
.blog-item:hover .blog-image {
  transform: scale(1.03);
}

.event-meta,
.blog-meta-wrap {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.event-meta span,
.blog-category,
.blog-date {
  padding: 6px 8px;
  border-radius: 3px;
  background: rgba(12, 18, 10, 0.82);
  color: var(--white);
  font-size: 9px;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.event-body,
.blog-card-info {
  padding: 22px;
}

.event-body h3,
.blog-title {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.event-body p,
.blog-card-description {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.event-body a,
.blog-read-more {
  color: var(--forest);
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.eventos-loading {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.eventos-loading-card {
  min-height: 410px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #e7e7de;
  animation: loading-pulse 1.3s ease-in-out infinite alternate;
}

@keyframes loading-pulse {
  from { opacity: 0.5; }
  to { opacity: 0.95; }
}

.eventos-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(300px, 1.15fr);
  align-items: center;
  gap: 60px;
  text-align: left;
}

.eventos-empty-mark {
  display: flex;
  align-items: baseline;
  gap: 18px;
}

.eventos-empty-mark span {
  color: var(--clay);
  font-size: 11px;
  font-weight: 700;
}

.eventos-empty-mark strong {
  font-family: "Inter Tight", "Inter", Arial, sans-serif;
  font-size: 28px;
  font-weight: 550;
}

.eventos-empty-copy p {
  max-width: 540px;
  margin-bottom: 14px;
  color: var(--muted);
}

.eventos-empty-copy a {
  color: var(--forest);
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.faq {
  background: #eef0e7;
}

.trace-map-section {
  padding: 78px 0 82px;
  background: var(--white);
}

.trace-map-heading {
  margin-bottom: 38px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: end;
  gap: 72px;
}

.trace-map-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: 52px;
  font-weight: 550;
  line-height: 1.04;
}

.trace-map-heading p {
  max-width: 510px;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.trace-map-heading small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.trace-map-wrap {
  position: relative;
  min-height: 480px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #e8ece3;
  overflow: hidden;
}

#public-trace-map {
  width: 100%;
  height: 480px;
  z-index: 1;
  font-family: "Inter", Arial, sans-serif;
}

#public-trace-map .leaflet-tile-pane {
  filter: saturate(0.72) contrast(0.96);
}

#public-trace-map .leaflet-control-zoom a {
  color: var(--ink);
}

#public-trace-map .leaflet-control-attribution {
  font-size: 9px;
}

.trace-map-status {
  position: absolute;
  z-index: 2;
  inset: 0;
  margin: 0;
  padding: 24px;
  background: #e8ece3;
  color: var(--muted);
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 13px;
}

.trace-map-status[hidden] {
  display: none;
}

.trace-map-popup {
  min-width: 170px;
  display: grid;
  gap: 4px;
}

.trace-map-popup strong {
  color: var(--ink);
  font-size: 13px;
}

.trace-map-popup span {
  color: var(--muted);
  font-size: 11px;
}

@media (max-width: 900px) {
  .trace-map-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 720px) {
  .trace-map-section {
    padding: 62px 0 66px;
  }

  .trace-map-heading {
    margin-bottom: 28px;
  }

  .trace-map-heading h2 {
    max-width: 12ch;
    font-size: 38px;
  }

  .trace-map-heading p {
    font-size: 14px;
  }

  .trace-map-wrap {
    min-height: 360px;
  }

  #public-trace-map {
    height: 360px;
  }
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(520px, 1.22fr);
  align-items: start;
  gap: 110px;
}

.faq-heading {
  position: sticky;
  top: 116px;
  padding-top: 18px;
}

.faq-heading h2 {
  max-width: 520px;
  margin-bottom: 22px;
  font-size: 50px;
  font-weight: 550;
  line-height: 1.04;
}

.faq-heading > p {
  max-width: 430px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  width: 100%;
  min-height: 92px;
  padding: 16px 4px;
  border: 0;
  background: transparent;
  color: var(--ink);
  display: grid;
  grid-template-columns: 38px 1fr 24px;
  align-items: center;
  gap: 18px;
  text-align: left;
  cursor: pointer;
}

.faq-item button > span {
  color: var(--clay);
  font-size: 10px;
  font-weight: 700;
}

.faq-item button strong {
  min-width: 0;
  font-family: "Inter Tight", "Inter", Arial, sans-serif;
  font-size: 20px;
  font-weight: 550;
  overflow-wrap: anywhere;
}

.faq-item button i {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  font-size: 17px;
  font-style: normal;
}

.faq-item button:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 4px;
}

.faq-panel {
  max-height: 0;
  padding: 0 46px 0 60px;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.25s ease;
}

.faq-panel p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.faq-item.is-open .faq-panel {
  max-height: 190px;
  padding-bottom: 28px;
  opacity: 1;
}

.closing-cta {
  position: relative;
  min-height: 600px;
  padding: 84px 48px;
  color: var(--white);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.closing-video,
.closing-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.closing-video {
  object-fit: cover;
}

.closing-overlay {
  background: rgba(12, 18, 10, 0.67);
}

.closing-inner {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.closing-inner h2 {
  max-width: 980px;
  margin-bottom: 22px;
  font-size: 64px;
  font-weight: 550;
  line-height: 1.02;
}

.closing-inner > p {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.6;
}

.error-404 {
  min-height: calc(100svh - 78px);
  padding: 140px 0;
  background: var(--ink);
  color: var(--white);
  display: flex;
  align-items: center;
}

.error-404-inner {
  text-align: center;
}

.error-404-inner h1 {
  max-width: 640px;
  margin: 0 auto 18px;
  font-size: clamp(34px, 6vw, 56px);
  font-weight: 550;
  line-height: 1.05;
}

.error-404-inner > p {
  max-width: 460px;
  margin: 0 auto 34px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.6;
}

.error-404-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 26px;
}

.legal-page {
  padding: 60px 0 100px;
}

.legal-page-inner {
  max-width: 760px;
}

.legal-page h1 {
  margin-bottom: 10px;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  line-height: 1.05;
}

.legal-page-lead {
  margin-bottom: 40px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.legal-page h2 {
  margin: 44px 0 14px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}

.legal-page h2:first-of-type {
  margin-top: 0;
}

.legal-page p {
  max-width: 680px;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.legal-page ul {
  max-width: 680px;
  margin: 0 0 16px;
  padding-left: 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.legal-page li {
  margin-bottom: 6px;
}

.legal-page li strong,
.legal-page p strong {
  color: var(--ink);
}

.legal-page-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.site-footer {
  background: #080c07;
  color: var(--white);
}

.footer-inner {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 82px 48px 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(300px, 1.6fr) repeat(3, minmax(140px, 0.7fr));
  gap: 54px;
}

.brand-footer {
  margin-bottom: 20px;
}

.brand-footer img {
  width: auto;
  height: 44px;
}

.footer-brand > p {
  max-width: 410px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
  line-height: 1.6;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-column > span {
  margin-bottom: 8px;
  color: var(--clay);
  font-size: 10px;
  font-weight: 700;
}

.footer-column a,
.footer-column p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  overflow-wrap: anywhere;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-wordmark {
  margin-top: 88px;
  padding: 26px 0 20px;
  border-top: 1px solid var(--line-light);
  color: var(--cream);
  font-size: 120px;
  font-weight: 600;
  line-height: 0.9;
  white-space: nowrap;
}

.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid var(--line-light);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 20px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.42);
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--white);
}

.reveal {
  opacity: 1;
  transform: none;
}

.motion-ready .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(24px) scale(0.99);
}

.motion-ready .reveal {
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.motion-ready .capability-card:nth-child(2),
.motion-ready .capability-card:nth-child(5) {
  transition-delay: 0.08s;
}

.motion-ready .capability-card:nth-child(3),
.motion-ready .capability-card:nth-child(6) {
  transition-delay: 0.16s;
}

@media (max-width: 1199px) {
  .nav-shell,
  .hero-inner,
  .section-inner,
  .footer-inner {
    padding-right: 32px;
    padding-left: 32px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  }

  .hero h1 {
    font-size: 56px;
  }

  .phone-stage {
    height: 664px;
  }

  .phone-map {
    --scale: 0.678;
    top: 80px;
    right: auto;
    left: 295px;
    transform-origin: top left;
  }

  .phone-origin {
    --scale: 0.678;
    top: 147px;
    right: auto;
    bottom: auto;
    left: 95px;
  }

  .section-heading h2,
  .experience-nav h2,
  .events-heading h2,
  .audiences-heading h2,
  .faq-heading h2,
  .story-copy h2 {
    font-size: 45px;
  }

  .story-grid,
  .story-grid-reverse {
    grid-template-columns: minmax(350px, 0.88fr) minmax(470px, 1.12fr);
    gap: 58px;
  }

  .outputs-grid {
    grid-template-columns: minmax(500px, 1.08fr) minmax(340px, 0.92fr);
    gap: 48px;
  }

  .experience-grid {
    grid-template-columns: minmax(300px, 0.78fr) minmax(500px, 1.22fr);
    gap: 48px;
  }

  .audiences-grid {
    grid-template-columns: minmax(380px, 0.9fr) minmax(470px, 1.1fr);
    gap: 56px;
  }

  .faq-grid {
    gap: 70px;
  }

  .footer-wordmark {
    font-size: 96px;
  }
}

@media (min-width: 961px) and (max-width: 1100px) {
  .phone-map {
    --scale: 0.62;
    top: 153px;
    right: auto;
    left: 265px;
  }

  .phone-origin {
    --scale: 0.622;
    top: 214px;
    right: auto;
    left: 82px;
  }
}

@media (max-width: 960px) {
  .site-header {
    height: 68px;
  }

  .nav-shell {
    height: 68px;
    grid-template-columns: 1fr auto;
    gap: 16px;
    border-bottom: 1px solid rgba(12, 18, 10, 0.08);
  }

  .site-header.is-scrolled .nav-shell {
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    transform: none;
  }

  .language-select-desktop {
    display: none;
  }

  body.nav-open {
    overflow-x: clip;
    overflow-y: hidden;
  }

  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(12, 18, 10, 0.5);
    backdrop-filter: blur(2px);
  }

  .primary-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: min(85%, 380px);
    height: 100vh;
    height: 100dvh;
    z-index: 110;
    padding: 0;
    border: none;
    border-left: 1px solid var(--line);
    border-radius: 0;
    background: var(--white);
    box-shadow: -20px 0 60px rgba(6, 10, 5, 0.18);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    opacity: 1;
    visibility: hidden;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .primary-nav.is-open {
    visibility: visible;
    transform: translateX(0);
  }

  .nav-panel-header {
    width: 100%;
    min-height: 64px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid var(--line);
  }

  .nav-panel-links {
    width: 100%;
    height: calc(100dvh - 64px);
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    overflow-y: auto;
  }

  .primary-nav a {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    text-align: left;
    color: #3f473d;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s ease;
  }

  .primary-nav a::after {
    display: none;
  }

  .primary-nav a:hover,
  .primary-nav a:focus-visible {
    background: rgba(12, 18, 10, 0.045);
    color: var(--forest);
  }


  .menu-toggle {
    position: relative;
    display: grid;
  }

  .hero-inner {
    min-height: auto;
    padding-top: 68px;
    grid-template-columns: minmax(0, 1fr);
    gap: 38px;
  }

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

  .hero h1 {
    max-width: 11ch;
  }

  .phone-stage {
    width: min(100%, 680px);
    height: 574px;
    margin: 0 auto;
  }

  .phone-map {
    --scale: 0.635;
    top: 118px;
    right: auto;
    left: calc(49vw - 198px);
  }

  .phone-origin {
    --scale: 0.635;
    top: 180px;
    right: auto;
    bottom: auto;
    left: calc(49vw - 386px);
  }

  .section {
    padding: 84px 0;
  }

  .experience-grid,
  .audiences-grid,
  .faq-grid,
  .story-grid,
  .story-grid-reverse,
  .outputs-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .story-grid,
  .story-grid-reverse {
    min-height: 0;
    gap: 56px;
  }

  .story-grid-reverse .story-copy {
    order: -1;
  }

  .story-visual {
    min-height: 700px;
  }

  .outputs-grid {
    gap: 56px;
  }

  .experience-nav,
  .screen-stage {
    min-width: 0;
  }

  .section-heading,
  .events-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .flow-demo {
    width: min(100%, 760px);
    min-height: 440px;
    grid-template-columns: minmax(0, 1fr) 200px;
    column-gap: 50px;
  }

  .flow-demo-device {
    width: 200px;
  }

  .audience-carousel-track {
    gap: 18px;
  }

  .audience-card {
    flex-basis: calc((100% - 18px) / 2);
  }

  .experience-nav {
    position: static;
    padding-top: 0;
  }

  .faq-heading {
    position: static;
    padding-top: 0;
  }

  .screen-tabs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border: 1px solid rgba(12, 18, 10, 0.18);
  }

  .screen-tab {
    min-height: 72px;
    padding: 0 6px;
    border-bottom: 0;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 6px;
    font-size: 13px;
    overflow-wrap: anywhere;
  }

  .screen-tab + .screen-tab {
    border-left: 1px solid rgba(12, 18, 10, 0.18);
  }

  .screen-stage {
    min-height: 760px;
  }

  .capability-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 122px;
  }

  .label-showcase {
    min-height: 650px;
  }

  .events-grid,
  .eventos-loading {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .events-grid > :nth-child(3),
  .eventos-loading > :nth-child(3) {
    width: calc((100% - 18px) / 2);
    grid-column: 1 / -1;
  }

  .closing-inner h2 {
    font-size: 54px;
  }

  .footer-top {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-wordmark {
    font-size: 76px;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 68px;
  }

  .nav-shell,
  .hero-inner,
  .section-inner,
  .footer-inner {
    padding-right: 20px;
    padding-left: 20px;
  }

  .site-header {
    height: 68px;
  }

  .brand {
    gap: 8px;
    font-size: 16px;
  }

  .brand img {
    width: auto;
    height: 32px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    border: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-overlay {
    background: rgba(12, 18, 10, 0.55);
  }

  .hero-inner {
    padding-top: 34px;
    padding-bottom: 22px;
    gap: 24px;
  }

  .eyebrow {
    margin-bottom: 16px;
    font-size: 10px;
  }

  .hero h1 {
    max-width: 10ch;
    margin-bottom: 18px;
    font-size: 40px;
    line-height: 1;
  }

  .hero-copy > p {
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.5;
  }

  .hero-actions {
    gap: 16px;
  }

  .button {
    min-height: 44px;
    padding-inline: 14px;
    font-size: 12px;
  }

  .text-link {
    font-size: 12px;
  }

  .hero-signals {
    display: none;
  }

  .phone-stage {
    display: none;
  }

  .phone-map {
    --scale: 0.41;
    top: 8px;
    right: auto;
    left: calc(50% - 35px);
  }

  .phone-origin {
    --scale: 0.41;
    top: 60px;
    right: auto;
    bottom: auto;
    left: 24px;
  }

  .section {
    padding: 68px 0;
  }

  .section-heading h2,
  .experience-nav h2,
  .events-heading h2,
  .audiences-heading h2,
  .faq-heading h2,
  .story-copy h2 {
    margin-bottom: 18px;
    font-size: 36px;
    line-height: 1.06;
  }

  .product-story {
    min-height: 0;
  }

  .story-grid,
  .story-grid-reverse {
    gap: 42px;
  }

  .story-copy > p {
    margin-bottom: 30px;
    font-size: 15px;
  }

  .story-points li {
    min-height: 62px;
  }

  .story-visual {
    min-height: 610px;
  }

  .offline-phone {
    width: 300px;
    height: 608px;
    border-width: 7px;
    border-radius: 46px;
  }

  .captured-phone {
    right: auto;
    left: 50%;
    bottom: 16px;
    width: 416px;
    height: 1024px;
    border-radius: 0;
    transform: translateX(-50%) scale(0.56);
    transform-origin: bottom center;
  }

  .offline-phone {
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%) rotate(-3deg);
  }

  .offline-phone-body {
    padding: 22px 18px 44px;
  }

  .offline-phone-body h3 {
    font-size: 21px;
  }

  .offline-sync-state {
    margin-bottom: 12px;
    padding: 14px;
  }

  .offline-queue-row {
    min-height: 68px;
  }

  .experience-nav > p {
    margin-bottom: 32px;
    font-size: 15px;
    line-height: 1.55;
  }

  .trace-panel {
    right: 10px;
    bottom: 0;
    left: 10px;
    width: auto;
    padding: 16px;
  }

  .trace-line {
    min-height: 54px;
  }

  .section-heading,
  .events-heading {
    margin-bottom: 44px;
  }

  .section-heading > p,
  .events-heading > div:last-child > p {
    font-size: 14px;
  }

  .flow-demo {
    width: 100%;
    min-height: 390px;
    grid-template-columns: minmax(0, 1fr) 126px;
    column-gap: 18px;
    row-gap: 12px;
  }

  .flow-demo-copy {
    min-height: 280px;
  }

  .flow-demo-caption {
    inset: 18px 0 0;
  }

  .flow-demo-caption > span {
    margin-bottom: 9px;
    font-size: 9px;
  }

  .flow-demo-caption h3 {
    max-width: 11ch;
    font-size: 25px;
  }

  .flow-demo-caption p {
    max-width: 24ch;
    font-size: 13px;
    line-height: 1.5;
  }

  .flow-demo-device {
    width: 126px;
  }

  .flow-demo-screen {
    border-radius: 12px;
  }

  .flow-demo-controls {
    min-height: 48px;
    padding-top: 10px;
    gap: 10px;
  }

  .flow-demo-actions {
    gap: 5px;
  }

  .flow-demo-controls button {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .screen-tabs {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .screen-tab {
    flex: 0 0 72%;
    min-width: 0;
    scroll-snap-align: start;
  }

  .screen-stage {
    min-height: 635px;
    padding: 36px 12px 0;
  }

  .showcase-phone {
    width: 286px;
    height: 580px;
    padding: 7px;
    border-radius: 44px;
  }

  .showcase-phone-screen {
    border-radius: 36px;
  }

  .showcase-phone .phone-island {
    width: 86px;
    height: 24px;
  }

  .showcase-cover {
    height: 225px;
  }

  .showcase-map {
    height: 260px;
  }

  .showcase-body {
    padding: 16px;
  }

  .showcase-body h3 {
    margin-bottom: 12px;
    font-size: 20px;
  }

  .showcase-real-body.quick-view-content,
  .showcase-real-body.record-list-content,
  .stage-screen-body {
    padding: 14px;
  }

  .showcase-real-body .quick-view-head {
    padding: 14px;
  }

  .showcase-real-body .next-step-card {
    margin: 12px 3px 0 12px;
    padding-top: 9px;
    padding-bottom: 10px;
  }

  .showcase-real-body .quick-facts {
    margin-top: 10px;
  }

  .real-stage-list {
    margin-top: 10px;
  }

  .real-stage-list > div {
    min-height: 57px;
    border-bottom-width: 5px;
  }

  .capability-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-auto-rows: auto;
    gap: 1px;
  }

  .capability-grid .capability-card-feature {
    min-height: 0;
    padding: 20px;
    grid-column: auto;
    grid-row: auto;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 18px;
  }

  .capability-card-feature .capability-copy h3 {
    font-size: 25px;
  }

  .voice-demo {
    min-height: 0;
    padding: 14px;
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
  }

  .voice-bars {
    height: 60px;
    margin-bottom: 0;
    gap: 4px;
  }

  .voice-transcript {
    padding-top: 0;
    padding-left: 14px;
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .outputs-grid {
    gap: 42px;
  }

  .label-showcase {
    min-height: 540px;
  }

  .label-demo-small {
    top: 78px;
    right: 20px;
    transform: rotate(2deg) scale(0.94);
  }

  .label-demo-large {
    bottom: 136px;
    left: 20px;
    transform: rotate(-2deg) scale(0.77);
  }

  .output-list article {
    min-height: 126px;
  }

  .events-grid,
  .eventos-loading {
    grid-template-columns: 1fr;
  }

  .events-grid > :nth-child(3),
  .eventos-loading > :nth-child(3) {
    display: block;
    width: auto;
    grid-column: auto;
  }

  .capability-card:not(.capability-card-feature) {
    min-height: 92px;
    padding: 16px;
    display: grid;
    grid-template-columns: minmax(112px, 0.8fr) minmax(0, 1.2fr);
    align-items: center;
    gap: 16px;
  }

  .capability-card:not(.capability-card-feature) h3 {
    margin-bottom: 0;
    font-size: 16px;
  }

  .capability-card:not(.capability-card-feature) p {
    font-size: 12px;
  }

  .audiences-heading {
    margin-bottom: 18px;
    text-align: left;
  }

  .section.audiences {
    padding: 32px 0;
  }

  .audiences-heading .eyebrow {
    justify-content: flex-start;
  }

  .audiences-heading h2 {
    margin-bottom: 12px;
    font-size: 32px;
  }

  .audiences-heading > p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
  }

  .audience-carousel-toolbar {
    min-height: 36px;
    margin-bottom: 10px;
    gap: 16px;
  }

  .audience-carousel-viewport {
    margin-right: -18px;
  }

  .audience-carousel-track {
    gap: 14px;
    padding-right: 18px;
  }

  .audience-card {
    flex-basis: min(84vw, 330px);
    height: 376px;
    min-height: 0;
  }

  .audience-card-media {
    height: 104px;
  }

  .audience-card-body {
    padding: 14px 16px 16px;
  }

  .audience-card-title {
    min-height: 34px;
    margin-bottom: 6px;
  }

  .audience-card-title h3 {
    font-size: 18px;
  }

  .audience-card-body > p {
    min-height: 32px;
    margin-bottom: 8px;
    font-size: 12px;
  }

  .audience-card ul {
    padding-top: 9px;
    gap: 5px;
  }

  .audience-card li {
    min-height: 15px;
    padding-left: 19px;
    font-size: 11px;
    line-height: 1.35;
  }

  .eventos-empty {
    padding: 28px 0;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .eventos-empty-mark strong {
    font-size: 23px;
  }

  .faq-grid {
    gap: 48px;
  }

  .faq-heading > p {
    font-size: 14px;
  }

  .faq-item button {
    min-height: 80px;
    padding: 14px 0;
    grid-template-columns: 28px 1fr 22px;
    gap: 10px;
  }

  .faq-item button strong {
    font-size: 17px;
  }

  .faq-panel {
    padding-right: 26px;
    padding-left: 38px;
  }

  .faq-item.is-open .faq-panel {
    padding-bottom: 24px;
  }

  .eventos-loading-card {
    min-height: 330px;
  }

  .closing-cta {
    min-height: 560px;
    padding: 64px 18px;
  }

  .closing-inner h2 {
    font-size: 40px;
  }

  .closing-inner > p {
    font-size: 15px;
  }

  .closing-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .error-404 {
    padding: 90px 0;
  }

  .error-404-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .footer-inner {
    padding-top: 62px;
  }

  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 22px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-column:last-child {
    grid-column: 1 / -1;
  }

  .footer-wordmark {
    margin-top: 56px;
    font-size: 44px;
    white-space: normal;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (min-width: 641px) and (max-width: 960px) {
  .hero-inner {
    min-height: calc(100svh - 108px);
    padding-top: 48px;
    padding-bottom: 38px;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    gap: 14px;
  }

  .hero h1 {
    max-width: 9ch;
    font-size: 48px;
  }

  .hero-copy > p {
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .hero-signals {
    margin-top: 28px;
    gap: 8px 14px;
  }

}

@media (min-width: 641px) and (max-width: 840px) {
  .phone-map {
    top: 112px;
  }

  .phone-origin {
    top: 175px;
  }
}

@media (max-width: 380px) {
  .nav-shell {
    padding-right: 14px;
    padding-left: 14px;
    gap: 10px;
  }

  .brand img {
    height: 30px;
  }

  .nav-actions {
    gap: 7px;
  }

  .hero-inner {
    padding-top: 26px;
    padding-bottom: 16px;
    gap: 14px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-copy > p {
    margin-bottom: 18px;
    font-size: 14px;
  }

  .hero-actions {
    gap: 12px;
  }

  .phone-stage {
    width: calc(100% + 24px);
    height: 235px;
  }

  .phone-map {
    --scale: 0.39;
    top: 6px;
    left: calc(50% - 32px);
  }

  .phone-origin {
    --scale: 0.39;
    top: 52px;
    left: 18px;
  }

  .story-copy h2 {
    font-size: 33px;
  }

  .story-visual {
    min-height: 540px;
  }

  .offline-phone {
    width: 266px;
    height: 540px;
    border-radius: 42px;
  }

  .captured-phone {
    width: 416px;
    height: 1024px;
    bottom: 14px;
    transform: translateX(-50%) scale(0.5);
  }

  .offline-phone .phone-status {
    height: 43px;
  }

  .offline-phone .real-app-bar {
    min-height: 56px;
  }

  .offline-phone-body {
    padding-top: 18px;
  }

  .offline-phone-body > p {
    margin-bottom: 16px;
  }

  .label-showcase {
    min-height: 500px;
  }

  .label-demo-large {
    bottom: 80px;
    transform: rotate(-2deg) scale(0.74);
  }

  .capability-card:not(.capability-card-feature) {
    min-height: 90px;
    padding: 14px;
    grid-template-columns: minmax(96px, 0.78fr) minmax(0, 1.22fr);
    gap: 12px;
  }

  .capability-card:not(.capability-card-feature) h3 {
    font-size: 14px;
  }

  .capability-card:not(.capability-card-feature) p {
    font-size: 11px;
  }

  .capability-grid .capability-card-feature {
    min-height: 0;
    padding: 16px;
  }

  .capability-card-feature .capability-copy h3 {
    font-size: 23px;
  }

  .footer-wordmark {
    font-size: 40px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .motion-ready .reveal:not(.is-visible) {
    opacity: 1;
    transform: none;
  }
}
