:root {
  --page: #f7f7f2;
  --surface: #ffffff;
  --surface-strong: #f1f3f5;
  --ink: #121722;
  --muted: #5d6675;
  --muted-strong: #3c4656;
  --line: #e2e6ea;
  --dark: #111722;
  --dark-soft: #1c2533;
  --accent: #e82127;
  --accent-dark: #b9151a;
  --accent-soft: #fff0f1;
  --success: #127a55;
  --warning: #a45c00;
  --info: #1e5f99;
  --shadow: 0 22px 60px rgba(18, 23, 34, 0.1);
  --shadow-soft: 0 12px 32px rgba(18, 23, 34, 0.08);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 20px;
}

p {
  margin: 0;
}

figure {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

:focus-visible {
  outline: 3px solid #f2b705;
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -90px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--accent);
  color: #ffffff;
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(226, 230, 234, 0.86);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px);
}

.nav-shell {
  position: relative;
  width: min(var(--container), calc(100% - 32px));
  min-height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
}

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

.desktop-nav,
.desktop-actions {
  display: none;
}

.mobile-menu {
  position: fixed;
  top: 14px;
  left: min(300px, calc(100vw - 88px));
  right: auto;
  z-index: 140;
  margin-left: 0;
  flex: 0 0 auto;
}

.mobile-menu summary {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-panel {
  position: fixed;
  top: 70px;
  left: 16px;
  right: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.mobile-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 8px 10px;
  border-radius: var(--radius);
  color: var(--muted-strong);
  font-weight: 800;
}

.mobile-panel a:hover {
  background: var(--surface-strong);
  color: var(--ink);
}

.mobile-panel .mobile-cta {
  margin-top: 8px;
  justify-content: center;
  background: var(--accent);
  color: #ffffff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

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

.button-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(232, 33, 39, 0.22);
}

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

.button-secondary {
  border-color: #cfd5dc;
  background: #ffffff;
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.button-dark {
  background: #ffffff;
  color: var(--dark);
}

.button-small {
  min-height: 40px;
  padding: 10px 14px;
  font-size: 14px;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.section {
  padding: 72px 0;
}

.section-shell,
.hero-shell,
.proof-shell,
.footer-shell {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--page);
}

.hero-shell {
  padding: 64px 0 48px;
}

.hero-grid {
  display: grid;
  gap: 42px;
  align-items: center;
}

.hero-copy {
  min-width: 0;
  max-width: 360px;
}

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

.hero-lede {
  max-width: 34ch;
  margin-top: 20px;
  color: var(--muted-strong);
  font-size: 19px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 36ch;
  margin-top: 20px;
}

.hero-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 800;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-line {
  max-width: 34ch;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 22px;
  color: var(--muted-strong);
  font-weight: 800;
}

.trust-line::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(18, 122, 85, 0.12);
}

.product-visual {
  min-width: 0;
}

.visual-shell {
  position: relative;
  display: grid;
  gap: 14px;
}

.product-browser {
  overflow: hidden;
  border: 1px solid rgba(18, 23, 34, 0.12);
  border-radius: var(--radius);
  background: var(--dark);
  box-shadow: var(--shadow);
}

.browser-bar {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  background: #161e2a;
}

.browser-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
}

.product-browser img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 58%;
  background: #070d18;
}

.status-rail {
  display: grid;
  gap: 10px;
}

.signal-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.signal-dot {
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.signal-card strong {
  display: block;
  line-height: 1.25;
}

.signal-card span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.proof-bar {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.proof-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.proof-item {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted-strong);
  font-weight: 800;
  text-align: center;
  background: #ffffff;
}

.section-white {
  background: #ffffff;
}

.section-muted {
  background: var(--page);
}

.pain-grid,
.feature-grid,
.industry-grid,
.multi-grid,
.integration-grid,
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.pain-card,
.feature-card,
.industry-card,
.multi-card,
.integration-card,
.trust-card,
.customer-card {
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(18, 23, 34, 0.05);
}

.pain-card p,
.feature-card p,
.industry-card p,
.multi-card p,
.integration-card p,
.trust-card p,
.customer-card p {
  margin-top: 10px;
  color: var(--muted);
}

.card-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: var(--radius);
  background: var(--accent-soft);
  color: var(--accent);
}

.card-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.operation-link {
  display: grid;
  gap: 20px;
  margin-top: 22px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--dark);
  color: #ffffff;
}

.operation-link h3 {
  color: #ffffff;
}

.operation-link p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
}

.platform-showcase {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.screenshot-card {
  overflow: hidden;
  border: 1px solid rgba(18, 31, 52, 0.1);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  padding: 12px;
}

.screenshot-card picture,
.screenshot-card img {
  display: block;
}

.screenshot-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 58%;
  border: 1px solid rgba(18, 31, 52, 0.1);
  border-radius: calc(var(--radius) - 6px);
  background: #f7f9fc;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.homepage-platform-showcase .screenshot-card img {
  height: auto;
  aspect-ratio: auto;
  object-fit: initial;
  object-position: center;
}

.screenshot-card figcaption {
  padding: 14px 4px 4px;
  color: var(--muted);
  font-weight: 700;
}

.workflow-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.workflow-step {
  position: relative;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(18, 23, 34, 0.05);
}

.step-number {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--dark);
  color: #ffffff;
  font-weight: 800;
}

.workflow-step p {
  color: var(--muted);
}

.mid-cta {
  padding: 34px 0;
  background: var(--dark);
  color: #ffffff;
}

.mid-cta .section-shell {
  display: grid;
  gap: 18px;
  align-items: center;
}

.mid-cta h2 {
  color: #ffffff;
  font-size: 28px;
}

.mid-cta p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
}

.customer-layout,
.demo-layout {
  display: grid;
  gap: 24px;
  align-items: start;
}

.customer-panel {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.customer-copy .hero-lede {
  margin-bottom: 22px;
}

.customer-panel img {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center 58%;
  background: #070d18;
}

.customer-image-panel {
  padding: 14px;
}

.customer-image-panel h3,
.customer-image-panel p {
  padding-right: 8px;
  padding-left: 8px;
}

.customer-image-panel img {
  aspect-ratio: 4 / 3;
  object-position: center;
}

.customer-list {
  display: grid;
  gap: 12px;
}

.customer-list-compact {
  margin-top: 0;
}

.customer-card strong {
  display: block;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-bottom: 10px;
  padding: 4px 8px;
  border-radius: var(--radius);
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-workflow-proof {
  display: grid;
  gap: 8px;
  max-width: 560px;
  margin-top: 22px;
}

.hero-workflow-proof span {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(18, 23, 34, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(18, 23, 34, 0.06);
}

.hero-workflow-proof strong {
  flex: 0 0 auto;
  color: var(--ink);
}

.proof-evaluation {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.proof-evaluation-shell {
  display: grid;
  gap: 20px;
  align-items: center;
}

.proof-evaluation h2 {
  font-size: 30px;
}

.proof-evaluation p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 12px;
  color: var(--muted);
}

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

.module-card {
  position: relative;
  display: grid;
  align-content: start;
}

.module-card .card-icon {
  margin-bottom: 18px;
}

.module-card h3 {
  margin-top: 2px;
}

.module-card strong {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  line-height: 1.35;
}

.module-status,
.setup-status {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 26px;
  padding: 4px 8px;
  border: 1px solid rgba(18, 122, 85, 0.18);
  border-radius: var(--radius);
  background: rgba(18, 122, 85, 0.08);
  color: var(--success);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

.module-link {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  margin-top: 16px;
  color: var(--accent-dark);
  font-weight: 900;
}

.module-link:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.product-screen-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.product-screen-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.product-screen-media {
  min-height: 230px;
  padding: 12px;
  border-bottom: 1px solid var(--line);
  background: #f6f8fa;
}

.product-screen-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(18, 31, 52, 0.12);
  border-radius: calc(var(--radius) - 2px);
  object-fit: contain;
  object-position: center;
  background: #ffffff;
}

.product-screen-copy {
  padding: 18px;
}

.product-screen-copy p {
  margin-top: 10px;
  color: var(--muted);
}

.screen-mock {
  min-height: 100%;
  aspect-ratio: 4 / 3;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(18, 31, 52, 0.12);
  border-radius: calc(var(--radius) - 2px);
  background: #ffffff;
  color: var(--ink);
}

.mock-topbar,
.mock-order-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mock-topbar {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.mock-topbar span,
.mock-order-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.mock-topbar strong {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 4px 9px;
  border-radius: var(--radius);
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 13px;
}

.mock-order-row {
  min-height: 52px;
  padding: 12px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  background: #fbfcfd;
}

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

.mock-location-grid span {
  min-width: 0;
  padding: 12px 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfd;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.mock-location-grid strong {
  color: var(--success);
}

.mock-report-line {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}

.mock-report-line span {
  height: 12px;
  border-radius: var(--radius);
  background: linear-gradient(90deg, rgba(232, 33, 39, 0.16), rgba(18, 122, 85, 0.22));
}

.roi-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(247, 247, 242, 0.98)),
    linear-gradient(90deg, rgba(232, 33, 39, 0.06), rgba(18, 122, 85, 0.06));
}

.roi-layout {
  display: grid;
  gap: 24px;
  align-items: center;
}

.roi-copy p:not(.eyebrow) {
  max-width: 600px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
}

.roi-copy .button {
  margin-top: 26px;
}

.roi-calculator {
  display: grid;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.calculator-inputs {
  display: grid;
  gap: 12px;
}

.calculator-inputs label {
  display: grid;
  gap: 6px;
  color: var(--muted-strong);
  font-weight: 850;
}

.calculator-inputs input {
  min-height: 46px;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #cfd5dc;
  border-radius: var(--radius);
  color: var(--ink);
}

.calculator-inputs input:focus {
  border-color: var(--accent);
  outline: 3px solid rgba(232, 33, 39, 0.16);
}

.calculator-results {
  display: grid;
  gap: 12px;
}

.calculator-results div {
  padding: 16px;
  border: 1px solid rgba(18, 31, 52, 0.1);
  border-radius: var(--radius);
  background: var(--page);
}

.calculator-results span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.calculator-results strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.05;
}

.calculator-results p {
  color: var(--muted-strong);
  font-weight: 750;
}

.calculator-disclaimer {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.setup-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.setup-card {
  min-width: 0;
  display: grid;
  align-content: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(18, 23, 34, 0.05);
}

.setup-card h3 {
  margin-top: 12px;
}

.setup-card p {
  margin-top: 10px;
  color: var(--muted);
}

.support-layout {
  display: grid;
  gap: 28px;
  align-items: start;
}

.support-layout .section-heading {
  margin-bottom: 0;
}

.support-note {
  display: inline-flex;
  margin-top: 18px;
  padding: 9px 12px;
  border: 1px solid rgba(18, 122, 85, 0.2);
  border-radius: var(--radius);
  background: rgba(18, 122, 85, 0.08);
  color: var(--success) !important;
  font-weight: 900;
}

.support-layout .button {
  margin-top: 24px;
}

.demo-next-steps {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.demo-next-steps h3 {
  margin-bottom: 8px;
}

.demo-next-steps p {
  color: rgba(255, 255, 255, 0.72);
}

.placeholder {
  border-style: dashed;
  background: #fffdfd;
}

.proof-policy {
  background: var(--dark);
  color: #ffffff;
}

.proof-policy h3 {
  color: #ffffff;
}

.proof-policy p {
  color: rgba(255, 255, 255, 0.74);
}

.proof-policy .tag {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.privacy-link {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.demo-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(20, 184, 166, 0.105) 0 1px, transparent 1px 92px),
    linear-gradient(0deg, rgba(56, 189, 248, 0.075) 0 1px, transparent 1px 92px),
    linear-gradient(135deg, #061017 0%, #0b171f 45%, #10222e 100%);
  color: #ffffff;
}

.demo-section::before,
.demo-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.demo-section::before {
  top: -38%;
  right: 0;
  left: 0;
  z-index: 0;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(56, 189, 248, 0.13), rgba(20, 184, 166, 0.1), transparent);
  animation: dz-demo-login-scan 7s linear infinite;
}

.demo-section::after {
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 78% 22%, rgba(20, 184, 166, 0.22), transparent 30%),
    radial-gradient(circle at 18% 82%, rgba(232, 33, 39, 0.18), transparent 34%),
    linear-gradient(140deg, rgba(7, 16, 22, 0.84), rgba(8, 29, 38, 0.34));
  opacity: 0.88;
}

.demo-section > .section-shell {
  position: relative;
  z-index: 2;
}

.demo-section h2,
.demo-section h3 {
  color: #ffffff;
}

.demo-section .eyebrow {
  color: #7dd3fc;
}

.demo-copy p:not(.eyebrow),
.demo-section .contact-card p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-card {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: var(--radius);
  background: rgba(7, 16, 22, 0.42);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
}

.contact-card a {
  color: #ffffff;
  font-weight: 800;
}

.demo-ops-background {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.demo-ops-background::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.065) 0 1px, transparent 1px 76px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 76px);
  opacity: 0.58;
}

.demo-ops-background::after {
  content: "";
  position: absolute;
  top: 26%;
  right: -30%;
  left: -30%;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.24), rgba(125, 211, 252, 0.2), transparent);
  transform: rotate(-12deg);
  animation: dz-demo-brand-sweep 6.5s ease-in-out infinite;
}

.demo-scanline,
.demo-ambient-line,
.demo-radar,
.demo-light-field {
  position: absolute;
  pointer-events: none;
}

.demo-scanline {
  top: 0;
  left: -45%;
  z-index: 2;
  width: 65%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.48), rgba(125, 211, 252, 0.42), transparent);
  animation: dz-demo-card-scan 5.5s ease-in-out infinite;
}

.demo-ambient-line {
  left: -45%;
  z-index: 1;
  width: 58%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.52), rgba(20, 184, 166, 0.42), transparent);
  opacity: 0.7;
  animation: dz-demo-data-line 8s linear infinite;
}

.demo-ambient-line-one { top: 18%; }
.demo-ambient-line-two { top: 54%; animation-delay: 2.2s; }
.demo-ambient-line-three { top: 78%; animation-delay: 4.5s; }

.demo-radar {
  z-index: 1;
  border: 1px solid rgba(125, 211, 252, 0.2);
  border-radius: 50%;
  opacity: 0.62;
  animation: dz-demo-signal-orbit 7s linear infinite;
}

.demo-radar::before,
.demo-radar::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(125, 211, 252, 0.12);
  border-radius: inherit;
}

.demo-radar::before { inset: 18%; }
.demo-radar::after { inset: 36%; }

.demo-radar-one {
  right: 7%;
  bottom: 12%;
  width: 168px;
  height: 168px;
}

.demo-radar-two {
  top: 10%;
  right: 28%;
  width: 96px;
  height: 96px;
  animation-delay: -3.5s;
  opacity: 0.36;
}

.demo-light-field {
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 70% 14%, rgba(125, 211, 252, 0.12), transparent 24%),
    radial-gradient(circle at 86% 72%, rgba(20, 184, 166, 0.12), transparent 26%),
    radial-gradient(circle at 6% 72%, rgba(232, 33, 39, 0.1), transparent 28%);
  opacity: 0.86;
}

@keyframes dz-demo-login-scan {
  from { transform: translateY(0); }
  to { transform: translateY(440%); }
}

@keyframes dz-demo-brand-sweep {
  0%, 100% { transform: translateX(-16%) rotate(-12deg); opacity: 0.28; }
  50% { transform: translateX(16%) rotate(-12deg); opacity: 0.78; }
}

@keyframes dz-demo-card-scan {
  0%, 100% { transform: translateX(0); opacity: 0.08; }
  45%, 55% { opacity: 0.72; }
  100% { transform: translateX(230%); }
}

@keyframes dz-demo-data-line {
  from { transform: translateX(0); }
  to { transform: translateX(260%); }
}

@keyframes dz-demo-signal-orbit {
  from { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.08); }
  to { transform: rotate(360deg) scale(1); }
}

.demo-form {
  display: grid;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.demo-form label {
  display: grid;
  gap: 7px;
  color: var(--muted-strong);
  font-weight: 800;
}

.demo-form input,
.demo-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid #cfd5dc;
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
}

.demo-form textarea {
  min-height: 118px;
  resize: vertical;
}

.demo-form input:focus,
.demo-form textarea:focus {
  border-color: var(--accent);
  outline: 3px solid rgba(232, 33, 39, 0.18);
}

.consent {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  font-weight: 700;
}

.consent input {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin-top: 4px;
  accent-color: var(--accent);
}

.form-note {
  color: var(--muted);
  font-size: 14px;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.final-cta {
  padding: 72px 0;
  background: #ffffff;
}

.final-card {
  display: grid;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--page);
  box-shadow: var(--shadow-soft);
}

.final-card p:not(.eyebrow) {
  margin-top: 14px;
  color: var(--muted);
  font-size: 18px;
}

.reassurance {
  display: block;
  margin-top: 14px;
  color: var(--muted-strong);
  font-weight: 800;
}

.site-footer {
  padding: 48px 0 24px;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  gap: 26px;
}

.footer-logo {
  width: 190px;
  margin-bottom: 14px;
}

.site-footer h2 {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 16px;
}

.site-footer a {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: space-between;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}

@media (min-width: 620px) {
  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 40px;
  }

  .proof-shell,
  .pain-grid,
  .feature-grid,
  .industry-grid,
  .multi-grid,
  .integration-grid,
  .trust-grid,
  .customer-list,
  .form-grid,
  .platform-showcase,
  .product-screen-grid,
  .setup-grid,
  .calculator-inputs,
  .calculator-results {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .final-card,
  .operation-link,
  .mid-cta .section-shell {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .hero-copy,
  .hero h1,
  .hero-lede,
  .hero-pills,
  .trust-line {
    max-width: 720px;
  }

  .mobile-menu {
    left: auto;
    right: 24px;
  }
}

@media (min-width: 900px) {
  .hero-shell {
    padding: 88px 0 74px;
  }

  .hero-grid,
  .customer-layout,
  .demo-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
  }

  .customer-layout-featured {
    grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
    align-items: center;
  }

  .customer-list-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-shell {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .pain-grid,
  .feature-grid,
  .industry-grid,
  .multi-grid,
  .integration-grid,
  .trust-grid,
  .product-screen-grid,
  .setup-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .workflow-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .workflow-step::after {
    display: none;
  }

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

  .proof-evaluation-shell,
  .roi-layout,
  .support-layout {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  }

  .proof-evaluation-actions {
    justify-self: end;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

@media (min-width: 1100px) {
  h1 {
    font-size: 66px;
  }

  h2 {
    font-size: 44px;
  }

  .desktop-nav,
  .desktop-actions {
    display: flex;
    align-items: center;
    gap: 18px;
  }

  .desktop-nav a,
  .desktop-actions .login-link {
    color: var(--muted-strong);
    font-size: 14px;
    font-weight: 800;
  }

  .desktop-nav a:hover,
  .desktop-actions .login-link:hover {
    color: var(--ink);
  }

  .mobile-menu {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  }

  .module-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .setup-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

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

  .button:hover {
    transform: none;
  }

  .demo-section::before,
  .demo-ops-background::after,
  .demo-scanline,
  .demo-ambient-line,
  .demo-radar {
    animation: none !important;
  }
}


/* DeliveryZone POS 2026 premium homepage additions */
body.menu-open {
  overflow: hidden;
}

.menu-toggle {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.menu-toggle-bars {
  width: 18px;
  display: grid;
  gap: 4px;
}

.menu-toggle-bars span {
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.mobile-nav {
  position: fixed;
  top: 70px;
  left: 16px;
  right: 16px;
  z-index: 120;
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 9px 10px;
  border-radius: var(--radius);
  color: var(--muted-strong);
  font-weight: 800;
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  background: var(--surface-strong);
  color: var(--ink);
}

.mobile-nav .mobile-cta {
  justify-content: center;
  margin-top: 6px;
  background: var(--accent);
  color: #ffffff;
}

.hero-premium {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(247, 247, 242, 0.96)),
    radial-gradient(circle at 85% 12%, rgba(232, 33, 39, 0.12), transparent 32%);
}

.hero-premium .hero-copy {
  max-width: 680px;
}

.hero-premium h1 {
  max-width: 780px;
}

.hero-premium .hero-lede,
.hero-premium .trust-line {
  max-width: 700px;
}

.hero-image-hero {
  min-height: clamp(700px, calc(100vh - 70px), 860px);
  background: #ffffff;
}

.hero-image-hero::before,
.hero-image-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-image-hero::before {
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 30%, rgba(255, 255, 255, 0.96) 42%, rgba(255, 255, 255, 0.72) 51%, rgba(255, 255, 255, 0.16) 63%, rgba(255, 255, 255, 0) 74%);
}

.hero-image-hero::after {
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 20%;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.84) 0%, rgba(255, 255, 255, 0) 100%);
}

.hero-image-hero .hero-shell {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  align-items: center;
  padding-top: 68px;
  padding-bottom: 58px;
}

.hero-image-hero .premium-hero-grid {
  width: 100%;
  display: block;
}

.hero-image-hero .hero-copy {
  position: relative;
  z-index: 3;
  max-width: 585px;
}

.hero-image-hero h1 {
  max-width: 585px;
  font-weight: 900;
}

.hero-image-hero .hero-lede,
.hero-image-hero .trust-line {
  max-width: 570px;
}

.hero-restaurant-visual {
  position: absolute;
  top: clamp(28px, 5vh, 52px);
  right: clamp(-130px, calc((100vw - var(--container)) / 2 - 260px), 28px);
  bottom: 0;
  z-index: 0;
  width: min(64vw, 1040px);
  margin: 0;
  overflow: visible;
}

.hero-restaurant-visual::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 30%;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.76) 38%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.hero-restaurant-visual img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
  transform: none;
  filter: none;
}

.hero-console {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(18, 23, 34, 0.1);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.console-topbar {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  background: #fbfbf8;
}

.console-topbar span {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #d8dde3;
}

.console-topbar strong {
  margin-left: 6px;
  color: var(--muted-strong);
  font-size: 13px;
}

.console-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 14px;
  background: linear-gradient(180deg, #ffffff, #f7f8fa);
}

.ui-card {
  min-width: 0;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(18, 23, 34, 0.06);
}

.ui-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.ui-card-head,
.ui-total,
.order-lines {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.ui-card-head span,
.ui-total span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.ui-card-head strong {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 12px;
  line-height: 1;
}

.order-lines {
  margin-top: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted-strong);
  font-weight: 750;
}

.order-lines strong,
.ui-total strong {
  color: var(--ink);
}

.ui-total {
  margin-top: 14px;
}

.chart-bars {
  min-height: 90px;
  display: flex;
  align-items: end;
  gap: 8px;
  margin-top: 16px;
  padding: 12px;
  border-radius: var(--radius);
  background: var(--surface-strong);
}

.chart-bars span {
  flex: 1;
  min-width: 18px;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, var(--accent), var(--accent-dark));
}

.chart-bars span:nth-child(1) { height: 44%; }
.chart-bars span:nth-child(2) { height: 68%; }
.chart-bars span:nth-child(3) { height: 52%; }
.chart-bars span:nth-child(4) { height: 82%; }
.chart-bars span:nth-child(5) { height: 58%; }

.proof-shell-premium .proof-item {
  justify-content: flex-start;
  text-align: left;
}

.outcome-matrix {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.outcome-row {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.outcome-row:last-child {
  border-bottom: 0;
}

.outcome-row strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.35;
}

.outcome-row span {
  color: var(--muted);
}

.onboarding-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.onboarding-step {
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(18, 23, 34, 0.05);
}

.onboarding-step > span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: var(--radius);
  background: var(--dark);
  color: #ffffff;
  font-weight: 900;
}

.onboarding-step p {
  margin-top: 10px;
  color: var(--muted);
}

.privacy-link {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-reassurance {
  margin-top: 14px;
  color: var(--muted-strong);
  font-weight: 800;
}

.form-error-page {
  min-height: 100vh;
  background: var(--page);
}

.form-error-shell {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0;
}

.error-summary {
  margin: 20px 0;
  padding: 18px;
  border: 1px solid #f1b8bb;
  border-radius: var(--radius);
  background: #fff5f5;
  color: #7d1116;
}

.error-summary h2 {
  margin-bottom: 10px;
  color: #7d1116;
  font-size: 20px;
}

.error-summary li {
  list-style: disc;
  margin-left: 18px;
}

@media (min-width: 620px) {
  .console-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ui-card-large,
  .ui-card-chart {
    grid-column: span 2;
  }

  .outcome-row {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: 22px;
  }

  .onboarding-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .hero-image-hero {
    min-height: 0;
  }

  .hero-image-hero::before {
    background: linear-gradient(90deg, #ffffff 0%, #ffffff 44%, rgba(255, 255, 255, 0.72) 58%, rgba(255, 255, 255, 0) 76%);
  }

  .hero-image-hero .hero-shell {
    display: block;
    min-height: 0;
    padding-top: 58px;
    padding-bottom: 48px;
  }

  .hero-image-hero .premium-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
    gap: 16px;
    align-items: center;
  }

  .hero-image-hero .hero-copy {
    max-width: 560px;
  }

  .hero-image-hero h1,
  .hero-image-hero .hero-lede,
  .hero-image-hero .trust-line {
    max-width: 100%;
  }

  .hero-restaurant-visual {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    min-height: 430px;
    overflow: hidden;
  }

  .hero-restaurant-visual::before {
    width: 44%;
  }

  .hero-restaurant-visual img {
    position: static;
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    transform: none;
  }
}

@media (max-width: 899px) {
  .hero-image-hero {
    min-height: 0;
  }

  .hero-image-hero::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, #ffffff 54%, rgba(255, 255, 255, 0) 100%);
  }

  .hero-image-hero::after {
    display: none;
  }

  .hero-image-hero .hero-shell {
    display: block;
    min-height: 0;
    padding-top: 48px;
    padding-bottom: 36px;
  }

  .hero-image-hero .premium-hero-grid {
    display: grid;
    gap: 28px;
  }

  .hero-image-hero .hero-copy,
  .hero-image-hero h1,
  .hero-image-hero .hero-lede,
  .hero-image-hero .trust-line {
    max-width: 100%;
  }

  .hero-restaurant-visual {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fbf7f2;
    box-shadow: var(--shadow-soft);
  }

  .hero-restaurant-visual::before {
    width: 36%;
    opacity: 0.75;
  }

  .hero-restaurant-visual img {
    position: static;
    width: 100%;
    max-width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: contain;
    object-position: center;
  }
}

@media (min-width: 900px) {
  .premium-hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(460px, 1.05fr);
  }

  .proof-shell-premium {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (min-width: 1100px) {
  .menu-toggle,
  .mobile-nav {
    display: none;
  }
}

@media (min-width: 1200px) {
  .proof-shell-premium {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (max-width: 1099px) {
  .desktop-nav,
  .desktop-actions {
    display: none;
  }
}

@media (max-width: 760px) {
  .demo-section {
    background:
      linear-gradient(90deg, rgba(20, 184, 166, 0.08) 0 1px, transparent 1px 72px),
      linear-gradient(0deg, rgba(56, 189, 248, 0.055) 0 1px, transparent 1px 72px),
      linear-gradient(135deg, #061017 0%, #0b171f 54%, #10222e 100%);
  }

  .demo-section::after {
    opacity: 0.72;
  }

  .demo-ops-background::before {
    opacity: 0.36;
  }

  .demo-radar-one {
    right: -54px;
    bottom: 10%;
  }

  .demo-radar-two {
    display: none;
  }

  .demo-ambient-line {
    width: 86%;
  }
}

@media (max-width: 619px) {
  .brand img {
    width: 150px;
  }

  .nav-shell {
    width: min(var(--container), calc(100% - 24px));
  }

  .section-shell,
  .hero-shell,
  .proof-shell,
  .footer-shell {
    width: min(var(--container), calc(100% - 24px));
    max-width: calc(100vw - 24px);
  }

  .hero-shell {
    padding-top: 48px;
  }

  .hero-image-hero .hero-copy {
    width: 100%;
    min-width: 0;
  }

  .hero-image-hero,
  .hero-image-hero .premium-hero-grid,
  .hero-image-hero .hero-pills,
  .hero-image-hero .hero-actions {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero-image-hero h1 {
    max-width: 100%;
    font-size: clamp(30px, 8vw, 34px);
    line-height: 1.08;
  }

  .hero-image-hero .hero-lede,
  .hero-image-hero .trust-line {
    max-width: calc(100vw - 36px);
    font-size: 16px;
  }

  .section-heading p,
  .pain-card p,
  .feature-card p {
    max-width: calc(100vw - 56px);
  }

  .pain-card,
  .feature-card,
  .screenshot-card {
    max-width: calc(100vw - 24px);
  }

  .pain-card h3,
  .feature-card h3 {
    max-width: calc(100vw - 72px);
  }

  .hero-actions,
  .cta-actions {
    display: grid;
  }

  .hero-actions .button,
  .cta-actions .button,
  .demo-form .button {
    width: 100%;
  }

  .hero-pills span,
  .proof-item {
    width: 100%;
  }

  .section-heading h2 {
    max-width: 14ch;
    margin-right: auto;
    margin-left: auto;
  }

  .console-grid {
    padding: 10px;
  }

  .ui-card {
    padding: 13px;
  }

  .order-lines {
    font-size: 14px;
  }
}

/* Shared marketing page support */
.page-note {
  max-width: 820px;
  margin: 22px auto 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--muted-strong);
  font-weight: 700;
}

.marketing-page .page-hero .hero-shell {
  padding-bottom: 58px;
}

.standard-showcase .screenshot-card img {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}

@media (min-width: 1100px) {
  :root {
    --container: 1240px;
  }

  .desktop-nav,
  .desktop-actions {
    gap: 11px;
  }

  .desktop-nav a,
  .desktop-actions .login-link {
    font-size: 13px;
    white-space: nowrap;
  }

  .brand img {
    width: 158px;
  }
}

/* Managed customer proof content */
.proof-data-note {
  display: inline-flex;
  margin-top: 16px;
  padding: 9px 12px;
  border: 1px dashed #d8a0a3;
  border-radius: var(--radius);
  background: #fff8f8;
  color: #8c2227;
  font-size: 14px !important;
  font-weight: 800;
}

.proof-data-embed {
  margin-top: 32px;
  padding-top: 30px;
  border-top: 1px solid rgba(18, 31, 52, 0.12);
}

.proof-data-embed .proof-data-heading {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
}

.proof-data-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

.proof-data-panel {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.proof-data-panel h3 {
  margin-bottom: 16px;
}

.proof-logo-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.proof-logo-card {
  min-height: 148px;
  height: 100%;
  display: grid;
  place-items: center;
  grid-template-rows: 1fr auto;
  gap: 9px;
  padding: 16px 14px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--page);
  text-align: center;
}

.proof-logo-card img {
  max-width: 92%;
  max-height: 88px;
  width: auto;
  object-fit: contain;
}

.proof-logo-card span {
  color: var(--muted-strong);
  font-size: 10.5px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0;
}

.proof-logo-placeholder {
  width: 86px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--accent-dark) !important;
  box-shadow: inset 0 0 0 1px var(--line);
  font-size: 22px !important;
}

.proof-panel-head {
  display: grid;
  gap: 14px;
  align-items: end;
  margin-bottom: 16px;
}

.proof-panel-head h3 {
  margin-bottom: 4px;
}

.proof-panel-head p {
  color: var(--muted);
  font-weight: 650;
}

.proof-carousel-controls {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-self: start;
}

.proof-carousel-btn {
  min-width: 68px;
  min-height: 40px;
  border: 1px solid rgba(18, 31, 52, 0.14);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(18, 23, 34, 0.06);
}

.proof-carousel-btn[data-proof-toggle] {
  min-width: 78px;
}

.proof-carousel-btn:hover {
  border-color: rgba(232, 33, 39, 0.38);
  color: var(--accent-dark);
}

.proof-carousel-btn:disabled {
  cursor: not-allowed;
  opacity: 0.42;
  box-shadow: none;
}

.proof-carousel-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding: 2px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding-bottom: 4px;
}

.proof-carousel.is-continuous-ready .proof-carousel-viewport {
  scroll-snap-type: none;
}

.proof-carousel.is-autoplaying .proof-carousel-track {
  will-change: transform;
}

.proof-carousel-clone {
  scroll-snap-align: none;
}

.proof-carousel-track {
  display: grid;
  grid-auto-flow: column;
  gap: 12px;
  width: max-content;
  min-width: 100%;
}

.proof-carousel-card {
  scroll-snap-align: start;
  scroll-margin-left: 2px;
}

.proof-logo-track {
  grid-auto-columns: minmax(156px, 190px);
}

.proof-testimonial-track {
  grid-auto-columns: minmax(280px, min(84vw, 520px));
  align-items: stretch;
}

.proof-metric-list,
.proof-story-list {
  display: grid;
  gap: 12px;
}

.proof-metric-list div,
.proof-story-list div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--page);
}

.proof-metric-list strong {
  display: block;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.1;
}

.proof-metric-list span,
.proof-metric-list small,
.proof-story-list p,
.proof-testimonial cite {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.proof-testimonial {
  min-height: 100%;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--page);
}

.proof-testimonial p {
  color: var(--muted-strong);
  font-weight: 750;
}

@media (min-width: 760px) {
  .proof-panel-head {
    grid-template-columns: 1fr auto;
  }

  .proof-carousel-controls {
    justify-self: end;
  }

  .proof-logo-track {
    grid-auto-columns: minmax(178px, 220px);
  }

  .proof-testimonial-track {
    grid-auto-columns: minmax(360px, 520px);
  }

  .proof-data-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-data-panel-wide {
    grid-column: span 2;
  }

  .proof-logo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
