:root {
  color-scheme: light;
  --navy-950: #031631;
  --navy-900: #0a1428;
  --navy-800: #061333;
  --navy-700: #102a56;
  --teal-700: #005a4f;
  --teal-800: #00695c;
  --green-500: #00c853;
  --green-600: #00a846;
  --blue-600: #2563eb;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e4e7ec;
  --slate-300: #d0d5dd;
  --slate-500: #667085;
  --slate-600: #475467;
  --slate-700: #344054;
  --white: #ffffff;
  --danger: #d92d20;
  --warning: #b54708;
  --success: #067647;
  --shadow-soft: 0 18px 55px rgba(6, 19, 51, 0.12);
  --shadow-strong: 0 24px 80px rgba(3, 22, 49, 0.34);
  --radius: 20px;
  --radius-small: 12px;
  --container: 1180px;
  --font: Inter, "Inter var", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--slate-50);
  color: var(--navy-800);
  font-family: var(--font);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

picture {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p {
  color: var(--slate-600);
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(0, 200, 83, 0.95);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--green-500);
  color: var(--navy-950);
  font-weight: 800;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(3, 22, 49, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header.is-scrolled {
  box-shadow: 0 14px 40px rgba(3, 22, 49, 0.18);
}

.nav-shell {
  width: min(1280px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 850;
  letter-spacing: 0;
}

.brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(145deg, #0ea5e9 0%, var(--green-500) 100%);
  box-shadow: 0 10px 30px rgba(0, 200, 83, 0.26);
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 7px 12px;
  border-radius: 6px;
  background: var(--navy-950);
  transform: skewX(-20deg);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--green-500);
  color: #042212;
  box-shadow: 0 14px 30px rgba(0, 200, 83, 0.22);
}

.button-primary:hover {
  background: var(--green-600);
  color: var(--white);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.04);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.button-on-light {
  color: var(--navy-800);
  border-color: var(--slate-300);
  background: var(--white);
}

.button-on-light:hover {
  background: var(--slate-100);
}

.button-large {
  min-height: 54px;
  padding-inline: 26px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.menu-toggle span[aria-hidden="true"] {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
}

.section {
  padding: 92px 0;
}

.section-tight {
  padding-top: 56px;
}

.section-dark {
  background:
    linear-gradient(135deg, rgba(0, 200, 83, 0.12), transparent 34%),
    linear-gradient(180deg, var(--navy-950), var(--navy-900));
  color: var(--white);
}

.section-dark p,
.section-dark .section-intro p {
  color: rgba(255, 255, 255, 0.78);
}

.section-soft {
  background: var(--slate-100);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -120px -160px auto;
  width: 420px;
  height: 420px;
  background-image: radial-gradient(circle, rgba(0, 200, 83, 0.24) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.55;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1400px, calc(100vw - 40px));
  grid-template-columns: minmax(460px, 520px) minmax(0, 1fr);
  gap: clamp(38px, 4vw, 70px);
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  color: var(--teal-800);
  font-size: 0.79rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-dark .eyebrow {
  color: #2ef28a;
}

.hero h1 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(2.6rem, 4.35vw, 4.15rem);
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero h1 span {
  color: var(--green-500);
}

.hero-lead {
  max-width: 660px;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 28px 0 18px;
}

.store-badge-row {
  display: flex;
  margin: 0 0 28px;
}

.play-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 8px 16px 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 10px;
  background: #070b12;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.22);
  color: var(--white);
  line-height: 1.05;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.play-store-badge:hover,
.play-store-badge:focus-visible {
  border-color: rgba(92, 242, 160, 0.74);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
  transform: translateY(-1px);
}

.play-store-badge:focus-visible {
  outline: 3px solid rgba(92, 242, 160, 0.36);
  outline-offset: 4px;
}

.play-store-badge small,
.play-store-badge strong {
  display: block;
  letter-spacing: 0;
}

.play-store-badge small {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 700;
}

.play-store-badge strong {
  font-size: 1.22rem;
  font-weight: 780;
}

.play-store-icon {
  position: relative;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: rgba(0, 200, 83, 0.14);
}

.play-store-icon::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 8px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 11px solid #5cf2a0;
}

.value-badges {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: 560px;
  padding: 0;
  margin: 0;
  list-style: none;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 22px 70px rgba(0, 0, 0, 0.16);
}

.value-badges li {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 128px;
  padding: 18px 12px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.25;
}

.value-badges li:last-child {
  border-right: 0;
}

.value-icon,
.proof-icon {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  color: #5cf2a0;
}

.value-icon::before,
.value-icon::after,
.proof-icon::before,
.proof-icon::after {
  content: "";
  position: absolute;
}

.value-icon-paper::before,
.value-icon-pdf::before,
.proof-icon-record::before {
  inset: 3px 7px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.value-icon-paper::after,
.value-icon-pdf::after,
.proof-icon-record::after {
  left: 10px;
  right: 10px;
  top: 11px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 6px 0 currentColor;
}

.value-icon-chat::before {
  inset: 6px 4px 7px;
  border: 2px solid currentColor;
  border-radius: 8px;
}

.value-icon-chat::after {
  left: 8px;
  bottom: 4px;
  width: 8px;
  height: 8px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-20deg);
}

.value-icon-phone::before {
  inset: 2px 8px;
  border: 2px solid currentColor;
  border-radius: 8px;
}

.value-icon-phone::after {
  left: 13px;
  right: 13px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.value-icon-shield::before,
.proof-icon-approval::before {
  inset: 2px 5px 3px;
  border: 2px solid currentColor;
  border-radius: 9px 9px 13px 13px;
  clip-path: polygon(50% 0, 100% 18%, 90% 76%, 50% 100%, 10% 76%, 0 18%);
}

.value-icon-shield::after,
.proof-icon-approval::after {
  left: 11px;
  top: 12px;
  width: 9px;
  height: 5px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.hero-support-line {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}

.hero-support-line::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border: 2px solid var(--green-500);
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 48%, var(--green-500) 49% 56%, transparent 57%) 4px 7px / 9px 6px no-repeat;
}

.hero-visual {
  position: relative;
  min-height: clamp(520px, 41vw, 660px);
  width: 100%;
  isolation: isolate;
}

.dashboard-frame {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: clamp(132px, 9vw, 166px);
  width: clamp(680px, 54vw, 820px);
  max-width: 100%;
  transform: translateX(-50%);
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: clamp(18px, 2vw, 26px);
  background: #f8fafc;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(3, 22, 49, 0.14);
}

.dashboard-frame::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: -18px;
  height: 18px;
  border-radius: 0 0 24px 24px;
  background: linear-gradient(180deg, #272b31, #0b0f18 58%, #747981);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.dashboard-frame figcaption,
.hero-phone figcaption {
  display: none;
}

.dashboard-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
}

.mock-topbar,
.queue-header,
.queue-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.mock-topbar strong,
.queue-header strong {
  color: var(--navy-800);
  letter-spacing: 0;
}

.mock-topbar span,
.queue-header span {
  color: var(--slate-500);
  font-size: 0.76rem;
  font-weight: 700;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(8px, 1vw, 12px);
  margin: clamp(16px, 1.7vw, 22px) 0;
}

.metric-row div {
  padding: clamp(12px, 1.4vw, 16px);
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  background: linear-gradient(180deg, var(--white), #fbfdff);
  box-shadow: 0 10px 30px rgba(6, 19, 51, 0.06);
}

.metric-row span {
  display: block;
  margin-bottom: 6px;
  color: var(--slate-500);
  font-size: 0.72rem;
  font-weight: 750;
}

.metric-row strong {
  color: var(--blue-600);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
}

.queue-card {
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(6, 19, 51, 0.05);
}

.queue-header,
.queue-row {
  padding: clamp(10px, 1.1vw, 14px) clamp(12px, 1.2vw, 16px);
}

.queue-row {
  border-top: 1px solid var(--slate-200);
  color: var(--navy-800);
  font-size: 0.78rem;
}

mark {
  padding: 5px 8px;
  border-radius: 999px;
  background: #fff7e6;
  color: var(--warning);
  font-size: 0.72rem;
  font-weight: 800;
}

mark.approved,
mark.paid {
  background: #dcfae6;
  color: var(--success);
}

.hero-phone {
  position: absolute;
  z-index: 2;
  bottom: clamp(8px, 1vw, 18px);
  width: clamp(210px, 16vw, 260px);
  margin: 0;
  overflow: hidden;
  border-radius: clamp(28px, 3.5vw, 48px);
  background: #f8fafc;
  filter: drop-shadow(0 32px 44px rgba(0, 0, 0, 0.36));
}

.app-phone {
  left: clamp(-4px, 0.8vw, 16px);
}

.chat-phone {
  right: clamp(-6px, 1vw, 18px);
}

.hero-phone img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.section-intro {
  max-width: 780px;
  margin-bottom: 36px;
}

.hero-proof-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 64px);
  align-items: center;
  width: min(1280px, calc(100% - 40px));
  margin-top: clamp(8px, 1vw, 16px);
  padding: 24px 0 26px;
}

.hero-proof-row::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 50%;
  width: 100vw;
  margin-left: -50vw;
  background: rgba(2, 11, 27, 0.32);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-proof-row div {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.hero-proof-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.97rem;
  line-height: 1.35;
}

.hero-proof-row strong,
.hero-proof-row p span {
  display: block;
}

.hero-proof-row strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.hero-proof-row p span {
  color: rgba(255, 255, 255, 0.72);
}

.proof-icon {
  width: 42px;
  height: 42px;
}

.proof-icon-people::before,
.proof-icon-people::after {
  border: 2px solid currentColor;
}

.proof-icon-people::before {
  left: 4px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  box-shadow: 18px 0 0 -2px transparent, 18px 0 0 0 currentColor inset;
}

.proof-icon-people::after {
  left: 2px;
  bottom: 8px;
  width: 30px;
  height: 15px;
  border-radius: 14px 14px 0 0;
  border-bottom: 0;
}

.proof-icon-report::before {
  left: 8px;
  bottom: 6px;
  width: 4px;
  height: 17px;
  background: currentColor;
  box-shadow: 10px -9px 0 currentColor, 20px -17px 0 currentColor;
  border-radius: 999px;
}

.section-intro.centered {
  margin-inline: auto;
  text-align: center;
}

.section-intro.align-start {
  margin-bottom: 0;
}

.section-intro h2,
.final-cta h2 {
  margin-bottom: 16px;
  color: var(--navy-800);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
}

.section-dark .section-intro h2,
.final-cta h2 {
  color: var(--white);
}

.section-intro p {
  font-size: 1.06rem;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.role-card,
.role-mini,
.preview-grid article,
.demo-form {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 36px rgba(6, 19, 51, 0.06);
}

.card,
.role-card,
.role-mini {
  padding: 26px;
}

.card h3,
.role-card h3,
.role-mini h3,
.preview-grid h3 {
  margin-bottom: 10px;
  color: var(--navy-800);
  font-size: 1.12rem;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 44px;
  align-items: start;
}

.role-mini-grid {
  display: grid;
  gap: 16px;
}

.role-mini {
  border-left: 4px solid var(--green-500);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  padding: 0;
  margin: 0;
  counter-reset: timeline-step;
  list-style: none;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 26px;
  height: 2px;
  border-top: 2px dashed var(--slate-300);
}

.timeline li {
  position: relative;
  counter-increment: timeline-step;
  text-align: center;
}

.timeline span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border: 10px solid #e9fbf2;
  border-radius: 50%;
  background: var(--green-500);
  color: var(--white);
  font-weight: 900;
}

.timeline span::before {
  content: counter(timeline-step);
}

.timeline h3 {
  margin-bottom: 8px;
  color: var(--navy-800);
  font-size: 1rem;
}

.timeline p {
  font-size: 0.92rem;
}

.role-card ul {
  display: grid;
  gap: 9px;
  padding-left: 18px;
  margin: 20px 0 0;
  color: var(--slate-700);
}

.role-employee {
  background: linear-gradient(180deg, #f3fffa, var(--white));
}

.role-manager {
  background: linear-gradient(180deg, #f5f9ff, var(--white));
}

.role-finance {
  background: linear-gradient(180deg, #fbf7ff, var(--white));
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.feature-grid article {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 118px;
  padding: 18px;
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  background: var(--white);
}

.feature-grid span {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 7px rgba(0, 200, 83, 0.12);
}

.feature-grid h3 {
  margin: 0 0 6px;
  color: var(--navy-800);
  font-size: 0.98rem;
}

.feature-grid p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
}

.pricing-section {
  background:
    radial-gradient(circle at 50% 0, rgba(0, 200, 83, 0.09), transparent 38%),
    linear-gradient(180deg, var(--white), var(--slate-100));
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 980px;
  margin: 38px auto 0;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(26px, 3vw, 34px);
  border: 1px solid var(--slate-200);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 18px 55px rgba(6, 19, 51, 0.09);
}

.pricing-card-featured {
  border-color: rgba(0, 200, 83, 0.64);
  box-shadow:
    0 26px 80px rgba(0, 200, 83, 0.16),
    0 18px 55px rgba(6, 19, 51, 0.1);
  transform: translateY(-8px);
}

.pricing-card-featured::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0, 200, 83, 0.12), transparent 42%);
  pointer-events: none;
}

.pricing-card > * {
  position: relative;
}

.pricing-card-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.pricing-card h3 {
  margin: 0;
  color: var(--navy-800);
  font-size: 1.35rem;
}

.pricing-badge {
  order: 2;
  padding: 7px 10px;
  border-radius: 999px;
  background: #dcfae6;
  color: var(--success);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.pricing-price,
.pricing-transaction {
  display: grid;
  gap: 4px;
}

.pricing-price strong {
  color: var(--navy-800);
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.pricing-transaction strong {
  color: var(--teal-800);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1;
}

.pricing-price span,
.pricing-transaction span,
.pricing-divider {
  color: var(--slate-600);
  font-weight: 800;
}

.pricing-seat-note {
  width: fit-content;
  margin: 16px 0 0;
  padding: 8px 11px;
  border: 1px solid rgba(0, 105, 92, 0.18);
  border-radius: 999px;
  background: #effff6;
  color: var(--teal-800);
  font-size: 0.86rem;
  font-weight: 850;
}

.pricing-divider {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-divider::before,
.pricing-divider::after {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--slate-300);
}

.pricing-card ul {
  display: grid;
  gap: 12px;
  padding: 22px 0 0;
  margin: 24px 0 28px;
  border-top: 1px solid var(--slate-200);
  list-style: none;
  color: var(--slate-700);
  font-weight: 700;
}

.pricing-card li {
  position: relative;
  padding-left: 30px;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 45%, var(--green-500) 46% 58%, transparent 59%) 5px 9px / 10px 6px no-repeat,
    rgba(0, 200, 83, 0.12);
  box-shadow: inset 0 0 0 1px rgba(0, 200, 83, 0.32);
}

.pricing-card .button {
  margin-top: auto;
  width: 100%;
}

.pricing-note {
  max-width: 980px;
  margin: 20px auto 0;
  padding: 18px 20px;
  border: 1px solid rgba(0, 105, 92, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--slate-700);
  box-shadow: 0 12px 34px rgba(6, 19, 51, 0.06);
}

.pricing-note strong {
  color: var(--navy-800);
}

.pricing-calculator-link {
  display: inline-flex;
  margin: 12px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--teal-800);
  cursor: pointer;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.pricing-dialog {
  width: min(620px, calc(100% - 32px));
  padding: 0;
  border: 0;
  border-radius: 24px;
  background: transparent;
  color: var(--navy-800);
}

.pricing-dialog::backdrop {
  background: rgba(2, 11, 27, 0.7);
  backdrop-filter: blur(6px);
}

.pricing-dialog-card {
  position: relative;
  display: grid;
  gap: 16px;
  padding: clamp(24px, 5vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-strong);
}

.pricing-dialog-card h2 {
  margin-bottom: 0;
  color: var(--navy-800);
  font-size: clamp(1.8rem, 4vw, 2.65rem);
  line-height: 1.05;
}

.pricing-dialog-card p {
  margin-bottom: 0;
}

.pricing-dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  background: var(--slate-50);
  color: var(--navy-800);
  cursor: pointer;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1;
}

.pricing-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.pricing-results div {
  display: grid;
  gap: 5px;
  padding: 16px;
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  background: var(--slate-50);
}

.pricing-results span,
.pricing-results small {
  color: var(--slate-600);
  font-size: 0.78rem;
  font-weight: 800;
}

.pricing-results strong {
  color: var(--navy-800);
  font-size: 1.45rem;
  line-height: 1;
}

.product-section {
  background: var(--white);
}

.preview-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.45fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 24px;
  padding: 20px;
  border: 1px solid var(--slate-200);
  border-radius: 24px;
  background: var(--slate-50);
  box-shadow: var(--shadow-soft);
}

.preview-grid img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.preview-feature h3 {
  margin-bottom: 12px;
  color: var(--navy-800);
  font-size: 1.5rem;
}

.suite-preview {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(0, 200, 83, 0.16), transparent 44%),
    linear-gradient(180deg, var(--navy-950), var(--navy-900));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.suite-dashboard {
  position: absolute;
  left: 19%;
  right: 7%;
  top: 58px;
  padding: 20px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-strong);
}

.suite-phone,
.suite-chat {
  position: absolute;
  z-index: 2;
  width: 170px;
  border: 8px solid #111827;
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.26);
}

.suite-phone {
  left: 20px;
  bottom: 24px;
  padding: 22px 16px;
}

.suite-phone span,
.suite-phone small,
.suite-chat span {
  display: block;
  color: var(--slate-500);
  font-size: 0.72rem;
  font-weight: 800;
}

.suite-phone strong {
  display: block;
  margin: 10px 0;
  color: var(--navy-800);
  font-size: 1.55rem;
}

.suite-phone i {
  display: block;
  height: 8px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green-500) 62%, var(--slate-200) 62%);
}

.suite-chat {
  right: 18px;
  bottom: 26px;
  padding: 18px 14px;
  background: #f5efe8;
}

.suite-chat p {
  margin: 12px 0 0;
  padding: 10px;
  border-radius: 10px;
  background: var(--white);
  color: var(--navy-800);
  font-size: 0.78rem;
  font-weight: 750;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-showcase,
.operations-grid {
  display: grid;
  gap: 18px;
}

.product-showcase {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 22px;
}

.operations-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.preview-grid article,
.showcase-card,
.operations-grid article {
  overflow: hidden;
  padding: 20px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 36px rgba(6, 19, 51, 0.06);
}

.showcase-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.showcase-label {
  width: fit-content;
  margin: 0 0 14px;
  padding: 7px 10px;
  border: 1px solid rgba(0, 105, 92, 0.18);
  border-radius: 999px;
  background: #effff6;
  color: var(--teal-800);
  font-size: 0.78rem;
  font-weight: 850;
}

.preview-grid img,
.showcase-card img {
  width: 100%;
  height: clamp(250px, 27vw, 360px);
  object-fit: contain;
  object-position: top;
  margin-bottom: 18px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 20%, rgba(0, 200, 83, 0.11), transparent 38%),
    var(--slate-100);
}

.dashboard-preview,
.records-preview {
  min-height: clamp(250px, 27vw, 360px);
  margin-bottom: 18px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, var(--white), var(--slate-100));
  border: 1px solid var(--slate-200);
}

.metric-row.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0;
}

.queue-card.light {
  background: var(--white);
}

.records-preview {
  display: grid;
  align-content: center;
  gap: 12px;
}

.records-preview span {
  padding: 13px 14px;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  background: var(--white);
  color: var(--navy-800);
  font-weight: 800;
}

.operations-grid article {
  display: grid;
  align-content: start;
  gap: 4px;
}

.operations-grid h3,
.showcase-card h3 {
  margin-bottom: 8px;
}

.operations-grid p,
.showcase-card p:last-child {
  margin-bottom: 0;
}

.form-preview span:nth-child(1),
.report-preview span:nth-child(2),
.control-preview span:nth-child(3) {
  border-color: rgba(0, 200, 83, 0.34);
  background: #effff6;
}

.section-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px 24px;
  align-items: center;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(0, 105, 92, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f3fffa, var(--white));
}

.section-cta h3,
.section-cta p {
  margin: 0;
}

.section-cta h3 {
  color: var(--navy-800);
}

.section-cta .button {
  grid-row: 1 / span 2;
  grid-column: 2;
}

.faq-section {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
  gap: 44px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  background: var(--slate-50);
  box-shadow: 0 10px 26px rgba(6, 19, 51, 0.05);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--navy-800);
  font-weight: 850;
}

.faq-list summary::marker {
  color: var(--teal-800);
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
}

.security-section .split-layout {
  align-items: center;
}

.control-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.control-grid span {
  position: relative;
  min-height: 74px;
  padding: 18px 18px 18px 50px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 750;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.12);
}

.control-grid span::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 20px;
  width: 18px;
  height: 18px;
  border: 2px solid #2ef28a;
  border-radius: 6px;
  box-shadow: inset 0 0 0 4px rgba(46, 242, 138, 0.12);
}

.demo-section {
  background: var(--slate-100);
}

.demo-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(430px, 1.12fr);
  gap: 42px;
  align-items: start;
}

.demo-note {
  margin-top: 28px;
  padding: 16px;
  border: 1px solid var(--slate-300);
  border-radius: 14px;
  background: var(--white);
  color: var(--slate-700);
  font-size: 0.95rem;
}

.demo-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
}

.form-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row-full {
  grid-column: 1 / -1;
}

label {
  color: var(--navy-800);
  font-size: 0.92rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--slate-300);
  border-radius: 12px;
  background: var(--white);
  color: var(--navy-800);
  padding: 12px 14px;
}

textarea {
  resize: vertical;
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: var(--danger);
}

.field-error {
  min-height: 18px;
  margin: 0;
  color: var(--danger);
  font-size: 0.82rem;
  font-weight: 700;
}

.form-status {
  margin: 0;
  padding: 13px 14px;
  border-radius: 12px;
  font-weight: 750;
}

.form-status:empty {
  display: none;
}

.form-status.is-error {
  background: #fef3f2;
  color: var(--danger);
}

.form-status.is-warning {
  background: #fffaeb;
  color: var(--warning);
}

.form-status.is-success {
  background: #ecfdf3;
  color: var(--success);
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.68;
  transform: none;
}

.final-cta {
  padding: 78px 0;
}

.final-cta-inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.final-cta h2 {
  max-width: 920px;
}

.final-cta p {
  max-width: 650px;
  margin-bottom: 28px;
}

.site-footer {
  padding: 50px 0;
  background: #020b1b;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: 36px;
}

.footer-brand {
  margin-bottom: 14px;
}

.site-footer p {
  max-width: 330px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 22px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--white);
}

.legal {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0 72px;
}

.legal article {
  padding: 32px;
  border: 1px solid var(--slate-200);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 20px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--slate-200);
}

.legal-nav div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.legal-nav a {
  color: var(--navy-700);
  font-weight: 800;
}

.legal-nav a:hover {
  color: var(--teal-700);
}

.legal-nav a[aria-current="page"] {
  color: var(--teal-700);
}

.legal-back-link {
  color: var(--teal-700) !important;
}

.legal h1,
.legal h2 {
  color: var(--navy-800);
}

.legal p,
.legal li {
  color: var(--slate-700);
}

.not-found {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.not-found-card {
  width: min(680px, 100%);
  padding: clamp(28px, 6vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: rgba(3, 22, 49, 0.72);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.not-found-card .brand {
  margin-bottom: 34px;
}

.not-found-card h1 {
  max-width: 560px;
  margin: 12px 0 18px;
  color: var(--white);
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 0.98;
}

.not-found-card p:not(.eyebrow) {
  max-width: 540px;
  margin-bottom: 28px;
}

@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;
  }
}

@media (max-width: 1500px) {
  .hero-grid {
    width: min(1280px, calc(100vw - 40px));
    grid-template-columns: minmax(430px, 500px) minmax(0, 1fr);
    gap: clamp(28px, 3vw, 38px);
  }

  .hero-grid > :first-child {
    max-width: none;
    margin-inline: 0;
    text-align: left;
  }

  .hero-lead {
    margin-inline: 0;
  }

  .hero-actions,
  .value-badges {
    justify-content: flex-start;
  }

  .dashboard-frame {
    width: clamp(660px, 50vw, 760px);
    max-width: 100%;
  }
}

@media (max-width: 1120px) {
  .hero-grid,
  .split-layout,
  .demo-grid,
  .preview-feature {
    grid-template-columns: 1fr;
  }

  .hero-grid > :first-child {
    max-width: 980px;
    margin-inline: auto;
    text-align: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions,
  .value-badges {
    justify-content: center;
  }

  .value-badges {
    margin-inline: auto;
  }

  .hero-support-line {
    justify-content: center;
  }

  .hero-visual {
    display: grid;
    grid-template-columns:
      minmax(160px, 0.28fr)
      minmax(500px, 1fr)
      minmax(160px, 0.28fr);
    min-height: auto;
    gap: clamp(18px, 2vw, 30px);
    align-items: end;
    width: min(100%, 1080px);
    margin: 0 auto;
  }

  .dashboard-frame {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    max-width: 720px;
    transform: none;
    justify-self: center;
  }

  .hero-phone {
    position: relative;
    bottom: auto;
    width: min(100%, 220px);
    justify-self: center;
  }

  .app-phone,
  .chat-phone {
    left: auto;
    right: auto;
  }

  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pricing-grid {
    max-width: 860px;
  }

  .operations-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-proof-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(860px, calc(100% - 40px));
    gap: 20px 34px;
    margin-top: 30px;
  }
}

@media (max-width: 920px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 88px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: var(--navy-950);
    box-shadow: var(--shadow-strong);
  }

  .menu-open .nav-menu {
    display: flex;
  }

  .nav-links,
  .nav-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links a,
  .nav-actions a {
    min-height: 46px;
    display: flex;
    align-items: center;
  }

  .grid-3,
  .preview-grid,
  .product-showcase,
  .operations-grid,
  .faq-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 27px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 2px;
    height: auto;
    border-top: 0;
    border-left: 2px dashed var(--slate-300);
  }

  .timeline li {
    display: grid;
    grid-template-columns: 64px 1fr;
    text-align: left;
  }

  .timeline li span {
    grid-row: 1 / span 2;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
  }

  .pricing-card-featured {
    transform: none;
  }

  .hero-visual {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 700px);
    margin: 0 auto;
    gap: 20px;
  }

  .hero-phone {
    width: min(230px, 100%);
    margin: 0 auto;
  }

  .dashboard-frame {
    grid-column: 1 / -1;
    order: 1;
    width: 100%;
    max-width: 680px;
  }

  .app-phone {
    order: 2;
  }

  .chat-phone {
    order: 3;
  }

  .hero-proof-row {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .container,
  .nav-shell,
  .legal {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 68px 0;
  }

  .hero {
    padding-top: 64px;
  }

  .hero-grid > :first-child {
    width: 100%;
    max-width: 330px;
    margin-inline: 0;
    text-align: left;
  }

  .hero h1 {
    max-width: 330px;
    margin-inline: 0;
    font-size: clamp(1.55rem, 6.7vw, 1.8rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .hero .eyebrow {
    display: block;
    max-width: 100%;
    line-height: 1.45;
  }

  .hero-lead {
    max-width: 330px;
    margin-inline: 0;
  }

  .hero-actions,
  .hero-actions .button,
  .nav-actions .button {
    width: 100%;
  }

  .value-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
    justify-content: flex-start;
    margin-inline: 0;
    border-radius: 16px;
  }

  .value-badges li {
    min-height: auto;
    max-width: 100%;
    padding: 14px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    white-space: normal;
  }

  .value-badges li:nth-last-child(-n + 1) {
    border-bottom: 0;
  }

  .value-badges li:last-child {
    grid-column: 1 / -1;
  }

  .value-badges li:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero-support-line {
    justify-content: flex-start;
  }

  .hero-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    justify-items: center;
  }

  .dashboard-frame {
    order: 2;
    width: 100%;
    max-width: 520px;
  }

  .app-phone {
    order: 1;
    width: min(260px, 86vw);
  }

  .chat-phone {
    order: 3;
    width: min(260px, 86vw);
  }

  .hero-proof-row {
    grid-template-columns: 1fr;
    width: min(100% - 28px, var(--container));
    gap: 18px;
    margin-top: 28px;
    padding: 24px 0;
  }

  .metric-row,
  .metric-row.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid,
  .control-grid,
  .demo-form {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    padding: 24px 20px;
  }

  .pricing-card-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .pricing-results {
    grid-template-columns: 1fr;
  }

  .section-cta {
    grid-template-columns: 1fr;
  }

  .section-cta .button {
    grid-row: auto;
    grid-column: auto;
    width: 100%;
  }

  .preview-feature {
    padding: 14px;
  }

  .suite-preview {
    min-height: 520px;
  }

  .suite-dashboard,
  .suite-phone,
  .suite-chat {
    position: static;
    width: auto;
    margin: 16px;
  }

  .preview-grid article,
  .card,
  .role-card,
  .role-mini,
  .demo-form,
  .legal article {
    padding: 20px;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    max-width: 330px;
    margin-inline: auto;
    font-size: clamp(1.55rem, 6.7vw, 1.8rem);
  }

  .hero-lead {
    max-width: 330px;
  }

  .value-badges {
    grid-template-columns: 1fr;
  }

  .value-badges li,
  .value-badges li:nth-child(odd) {
    border-right: 0;
  }

  .value-badges li:last-child {
    grid-column: auto;
  }

  .value-badges li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .hero-visual .metric-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .queue-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual .queue-row {
    flex-direction: row;
    align-items: center;
  }

  .hero-visual .queue-row span:nth-child(2) {
    display: none;
  }
}
