:root {
  --bg: #f3f4f6;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: #ffffff;
  --surface-soft: #f8fafc;
  --text: #101113;
  --muted: #505967;
  --line: rgba(80, 89, 103, 0.18);
  --line-strong: rgba(80, 89, 103, 0.3);
  --primary: #202124;
  --primary-hover: #383e47;
  --accent: #266df0;
  --accent-soft: #e8f0ff;
  --focus-ring: rgba(38, 109, 240, 0.22);
  --focus-outline: #1f5bd9;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 20px 50px -24px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 40px 120px -60px rgba(0, 0, 0, 0.3);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, #ffffff 0, rgba(255, 255, 255, 0.4) 25%, transparent 52%),
    radial-gradient(circle at top right, rgba(38, 109, 240, 0.1) 0, transparent 32%),
    linear-gradient(180deg, #fcfcfd 0%, #eff1f5 100%);
}

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

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

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 56px 0;
}

.section-sm {
  padding: 28px 0;
}

.site-shell {
  position: relative;
  min-height: 100vh;
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 60;
  padding: 12px 16px;
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  border: 1px solid rgba(80, 89, 103, 0.16);
  box-shadow: var(--shadow-md);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 25;
  backdrop-filter: blur(24px);
  background: rgba(250, 250, 251, 0.86);
  border-bottom: 1px solid rgba(80, 89, 103, 0.1);
}

.site-header.menu-open {
  border-bottom-color: transparent;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--text);
}

.brand-logo {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.desktop-nav,
.header-actions,
.hero-actions,
.logos,
.stats-strip,
.feature-grid,
.meeting-grid,
.workflow-steps,
.tag-row,
.mini-stats,
.tab-row,
.contact-cards,
.how-grid,
.object-grid,
.footer-grid {
  display: flex;
}

.desktop-nav {
  gap: 28px;
  font-size: 15px;
  color: var(--muted);
}

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

.header-actions {
  align-items: center;
  gap: 12px;
}

.text-link {
  font-size: 14px;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 20px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: 160ms ease;
}

.button-primary {
  color: #fff;
  background: radial-gradient(circle at 50% -30%, #505967 0%, #202124 64%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.button-primary:hover {
  background: radial-gradient(circle at 50% -30%, #6f7988 0%, #202124 64%);
  transform: translateY(-1px);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--line);
  color: var(--text);
}

.button-secondary:hover {
  border-color: var(--line-strong);
  background: #fff;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
.tab:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid var(--focus-outline);
  outline-offset: 3px;
}

.hero-phone-field:focus-within,
.contact-form input:focus,
.contact-form textarea:focus {
  box-shadow:
    0 0 0 4px var(--focus-ring),
    0 14px 30px -24px rgba(38, 109, 240, 0.28);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 13px;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  transition: 160ms ease;
}

.menu-toggle span:first-child {
  top: 18px;
}

.menu-toggle span:last-child {
  top: 26px;
}

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

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

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 0 20px 20px;
  border-top: 1px solid rgba(80, 89, 103, 0.1);
}

.mobile-nav.is-open {
  display: flex;
}

.hero {
  padding-top: 52px;
}

.hero-grid,
.model-grid,
.cta-panel {
  display: grid;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  align-items: center;
  gap: 128px;
}

.eyebrow,
.section-intro,
.feature-kicker,
.panel-label,
.object-type {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow,
.feature-kicker,
.panel-label {
  color: var(--accent);
}

.section-heading .platform {
  color: var(--accent);
}

.section-intro {
  color: #454d59;
  text-align: center;
}

h1,
h2,
h3,
p,
blockquote {
  margin: 0;
}

h1,
h2 {
  font-weight: 600;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.3rem, 6vw, 5.5rem);
  line-height: 0.94;
}

h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.98;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.hero-lead,
.section-heading p,
.feature-card p,
.footer-copy,
.tab-panel li,
.object-card li {
  color: var(--muted);
}

.hero-lead {
  max-width: 52ch;
  margin-top: 22px;
  font-size: 1.07rem;
  line-height: 1.7;
}

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

.hero-capture {
  align-items: stretch;
  max-width: 38rem;
}

.hero-phone-field {
  flex: 1 1 320px;
  display: flex;
  align-items: center;
  height: 46px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid rgba(38, 109, 240, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 248, 255, 0.98) 100%);
  box-shadow:
    0 14px 30px -24px rgba(38, 109, 240, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.hero-phone-field input {
  width: 100%;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  appearance: none;
  -webkit-appearance: none;
}

.hero-phone-field input::placeholder {
  color: #646f7e;
  opacity: 1;
}

.hero-phone-field:focus-within {
  border-color: rgba(38, 109, 240, 0.42);
  box-shadow:
    0 20px 36px -26px rgba(38, 109, 240, 0.5),
    0 0 0 4px rgba(38, 109, 240, 0.12);
  transform: translateY(-1px);
}

.hero-capture .button {
  flex: 0 0 auto;
  align-self: stretch;
  min-width: 156px;
  height: 46px;
  min-height: 46px;
  padding: 0 26px;
}

.hero-phone-field input:-webkit-autofill,
.hero-phone-field input:-webkit-autofill:hover,
.hero-phone-field input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--text);
  box-shadow: 0 0 0 1000px rgba(244, 248, 255, 0.98) inset;
  transition: background-color 9999s ease-out 0s;
}

.hero-quote {
  margin-top: 34px;
  max-width: 38rem;
  padding: 24px 26px;
  border-radius: 24px;
  border: 1px solid rgba(80, 89, 103, 0.12);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow-sm);
}

.hero-quote p {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.hero-quote footer {
  margin-top: 14px;
  font-size: 0.95rem;
  color: var(--muted);
}

.logo-strip .section-intro {
  margin-bottom: 32px;
}

.hero-visual {
  position: relative;
  min-height: 610px;
}

.product-frame,
.floating-card,
.feature-card,
.model-panel,
.cta-panel,
.site-footer,
.tab-panel,
.object-card {
  border: 1px solid rgba(80, 89, 103, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 247, 250, 0.9) 100%);
  box-shadow: var(--shadow-md);
}

.main-frame {
  display: grid;
  grid-template-columns: 178px 1fr;
  overflow: hidden;
  min-height: 520px;
  border-radius: 32px;
}

.frame-sidebar {
  padding: 24px 20px;
  border-right: 1px solid rgba(80, 89, 103, 0.12);
  background: linear-gradient(180deg, rgba(16, 17, 19, 0.98) 0%, rgba(32, 33, 36, 0.96) 100%);
  color: #dfe4eb;
}

.frame-brand {
  display: block;
  margin-bottom: 20px;
  font-weight: 700;
}

.frame-sidebar ul,
.bullet-list,
.meeting-list,
.object-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.frame-sidebar li {
  padding: 9px 12px;
  border-radius: 12px;
  color: #aeb6c2;
  font-size: 13px;
}

.frame-sidebar li.active {
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}

.frame-main {
  padding: 20px;
}

.command-bar {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(244, 247, 252, 0.94);
  border: 1px solid rgba(80, 89, 103, 0.12);
}

.command-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.command-search {
  color: var(--muted);
  font-size: 14px;
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}

.preset-group {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.preset-group span,
.range-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(80, 89, 103, 0.12);
  background: rgba(255, 255, 255, 0.74);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.preset-group .is-active {
  background: rgba(16, 17, 19, 0.96);
  border-color: rgba(16, 17, 19, 0.96);
  color: #fff;
}

.stats-strip {
  gap: 12px;
  margin-top: 14px;
}

.stat-tile {
  flex: 1 1 0;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(80, 89, 103, 0.12);
  background: rgba(255, 255, 255, 0.84);
}

.stat-tile span,
.stat-tile small {
  display: block;
}

.stat-tile span,
.stat-tile small {
  color: var(--muted);
  font-size: 12px;
}

.stat-tile strong {
  display: block;
  margin: 6px 0 4px;
  font-size: 1.25rem;
  letter-spacing: -0.04em;
}

.stat-tile.accent {
  background: linear-gradient(180deg, rgba(232, 240, 255, 0.92) 0%, rgba(255, 255, 255, 0.94) 100%);
}

.meeting-grid {
  gap: 18px;
  margin-top: 14px;
}

.dashboard-grid > .panel:first-child {
  flex: 1.15;
}

.dashboard-grid > .panel:last-child {
  flex: 0.85;
}

.meeting-grid > .panel {
  flex: 1;
  min-height: 244px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(80, 89, 103, 0.12);
  background: #fff;
}

.meeting-list {
  margin-top: 16px;
}

.meeting-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0;
  border-top: 1px solid rgba(80, 89, 103, 0.12);
}

.meeting-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.meeting-list strong {
  font-size: 15px;
}

.meeting-list span,
.panel p,
.object-card li,
.mini-stats span {
  color: var(--muted);
}

.mini-stats strong {
  color: var(--accent);
}

.hero-visual .panel-label,
.hero-visual .floating-card .panel-label {
  color: #55606f;
}

.line-chart {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: end;
  gap: 12px;
  height: 108px;
  margin: 16px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(80, 89, 103, 0.08);
}

.line-chart::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  height: 2px;
  background: linear-gradient(90deg, rgba(38, 109, 240, 0.12), rgba(38, 109, 240, 0.32));
}

.line-chart span {
  position: relative;
  display: block;
  height: var(--point);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(112, 159, 245, 0.34) 0%, rgba(38, 109, 240, 0.95) 100%);
}

.line-chart span::after {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  border-radius: 50%;
  background: #266df0;
  box-shadow: 0 0 0 4px rgba(38, 109, 240, 0.14);
}

.departures-list li strong,
.status-stack span {
  font-size: 14px;
}

.status-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.status-stack div {
  display: grid;
  gap: 8px;
}

.status-stack b {
  position: relative;
  display: block;
  height: 14px;
  border-radius: 999px;
  background: rgba(80, 89, 103, 0.12);
  color: transparent;
  overflow: hidden;
}

.status-stack b::before {
  content: "";
  position: absolute;
  inset: 0;
  width: var(--fill);
  border-radius: inherit;
  background: linear-gradient(90deg, #709ff5 0%, #266df0 100%);
}

.route-tags span:nth-child(1) {
  background: linear-gradient(135deg, #266df0, #709ff5);
}

.route-tags span:nth-child(2) {
  background: linear-gradient(135deg, #0fc27b, #5bd7aa);
}

.route-tags span:nth-child(3) {
  background: linear-gradient(135deg, #f5b900, #ffd865);
}

.participant-row {
  display: flex;
  align-items: center;
  margin-top: 18px;
}

.participant-row span,
.participant-row b {
  width: 36px;
  height: 36px;
  margin-right: -10px;
  border-radius: 50%;
  border: 2px solid #fff;
}

.participant-row span:nth-child(1) {
  background: linear-gradient(135deg, #709ff5, #266df0);
}

.participant-row span:nth-child(2) {
  background: linear-gradient(135deg, #f5b900, #ff8e3c);
}

.participant-row span:nth-child(3) {
  background: linear-gradient(135deg, #0fc27b, #0db472);
}

.participant-row b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eef2f7;
  color: var(--text);
  margin-left: 6px;
}

.floating-card {
  position: absolute;
  padding: 18px;
  border-radius: 22px;
}

.workflows-card {
  width: 306px;
  left: -34px;
  bottom: 46px;
}

.reporting-card {
  width: 282px;
  right: -30px;
  top: 48px;
}

.workflow-steps {
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.workflow-steps div {
  padding: 12px;
  border-radius: 16px;
  background: rgba(244, 247, 252, 0.96);
}

.workflow-steps span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
}

.chart-bars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 8px;
  height: 126px;
  margin-top: 16px;
}

.chart-bars span {
  display: block;
  height: var(--bar);
  border-radius: 999px 999px 12px 12px;
  background: linear-gradient(180deg, #709ff5 0%, #266df0 100%);
}

.logos {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px 32px;
  opacity: 0.9;
  filter: grayscale(1);
}

.logo-slot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 164px;
  height: 44px;
}

.logos img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.logos .logo-google {
  width: 116px;
}

.logos .logo-maib {
  width: 118px;
}

.logos .logo-paynet {
  width: 136px;
}

.logos .logo-amazon {
  width: 124px;
}

.section-heading {
  max-width: 720px;
}

.section-heading h2 {
  margin-bottom: 16px;
}

.section-heading p:last-child {
  font-size: 1.05rem;
  line-height: 1.7;
}

.feature-grid {
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 46px;
}

.feature-card {
  flex: 1 1 260px;
  min-height: 290px;
  padding: 28px;
  border-radius: 28px;
}

.bullet-list.compact {
  margin-top: 18px;
  gap: 10px;
}

.how-section .bullet-list.compact li {
  display: grid;
  grid-template-columns: 7px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding-left: 0;
}

.how-section .bullet-list.compact li::before {
  position: static;
  width: 7px;
  height: 7px;
  margin-top: 0;
}

.company-columns .bullet-list.compact li {
  display: grid;
  grid-template-columns: 7px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding-left: 0;
}

.company-columns .bullet-list.compact li::before {
  position: static;
  width: 7px;
  height: 7px;
  margin-top: 0;
}

.feature-card h3 {
  margin-bottom: 14px;
}

.feature-card > p:last-of-type {
  margin-top: 0;
  line-height: 1.65;
}

.bullet-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.bullet-list li {
  display: grid;
  grid-template-columns: 7px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  color: var(--text);
}

.bullet-list li::before {
  content: "";
  position: static;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.tag-row {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tag-row span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(38, 109, 240, 0.08);
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
}

.accent-card {
  background:
    radial-gradient(circle at top right, rgba(38, 109, 240, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 247, 250, 0.92) 100%);
}

.mini-stats {
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.mini-stats div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(80, 89, 103, 0.12);
}

.mini-stats div:first-child {
  padding-top: 0;
  border-top: 0;
}

.mini-stats strong {
  font-size: 1.05rem;
}

.model-grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 36px;
  align-items: start;
}

.section-heading.compact {
  position: sticky;
  top: 132px;
}

.model-panel {
  padding: 28px;
  border-radius: 32px;
}

.company-card {
  border: 1px solid rgba(80, 89, 103, 0.12);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 247, 250, 0.9) 100%);
  box-shadow: var(--shadow-md);
}

.how-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: start;
}

.how-overview {
  position: sticky;
  top: 132px;
}

.how-overview > p:last-of-type {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.7;
}

.how-overview-card,
.journey-card {
  border: 1px solid rgba(80, 89, 103, 0.12);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 247, 250, 0.92) 100%);
  box-shadow: var(--shadow-md);
}

.how-overview-card {
  margin-top: 26px;
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(38, 109, 240, 0.12), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 247, 250, 0.92) 100%);
}

.how-overview-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.how-overview-card strong {
  display: block;
  max-width: 18ch;
  font-size: 1.35rem;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.how-overview-card p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.how-journey {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.how-journey::before {
  content: "";
  position: absolute;
  left: 35px;
  top: 22px;
  bottom: 22px;
  width: 2px;
  background: linear-gradient(180deg, rgba(38, 109, 240, 0.18) 0%, rgba(38, 109, 240, 0.05) 100%);
}

.journey-step {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.journey-marker {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.journey-marker span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(232, 240, 255, 0.96) 100%);
  border: 1px solid rgba(38, 109, 240, 0.18);
  color: var(--accent);
  font-weight: 700;
  box-shadow: 0 12px 30px -20px rgba(38, 109, 240, 0.35);
}

.journey-card {
  padding: 24px 26px;
}

.journey-card p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.journey-tags,
.company-flow,
.company-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.journey-tags {
  margin-top: 20px;
}

.journey-tags span,
.company-flow span,
.company-chip-grid span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(38, 109, 240, 0.08);
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
}

.how-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.how-stack div {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(244, 247, 252, 0.96);
}

.how-stack b,
.company-columns strong {
  display: block;
  margin-bottom: 6px;
}

.how-stack span {
  color: var(--muted);
  font-size: 0.95rem;
}

.companies-shell {
  display: grid;
  gap: 42px;
}

.compact-shell {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

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

.company-card {
  padding: 28px;
}

.company-card p:last-of-type {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.company-card-dark {
  background: linear-gradient(180deg, rgba(16, 17, 19, 0.98) 0%, rgba(32, 33, 36, 0.96) 100%);
  color: #fff;
}

.company-card-dark p,
.company-card-dark .feature-kicker {
  color: rgba(255, 255, 255, 0.76);
}

.company-chip-grid {
  margin-top: 24px;
}

.company-card-dark .company-chip-grid span {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.company-flow {
  margin-top: 24px;
}

.company-card.wide {
  grid-column: 1 / -1;
}

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

/*.contact-grid {*/
/*  display: grid;*/
/*  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);*/
/*  gap: 28px;*/
/*  align-items: start;*/
/*}*/

.contact-copy > p:last-of-type {
  max-width: 58ch;
  font-size: 1.03rem;
  line-height: 1.7;
  color: var(--muted);
}

.contact-copy {
  text-align: center;
}

.contact-copy .eyebrow,
.contact-copy h2,
.contact-copy > p:last-of-type {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
}

.contact-copy .eyebrow,
.contact-copy h2{
  margin-bottom: 16px;
}

.contact-copy > p:last-of-type{
  margin-bottom: 42px;
}

.contact-cards {
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.contact-card,
.contact-form {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(80, 89, 103, 0.12);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(245, 247, 250, 0.9) 100%);
  box-shadow: var(--shadow-md);
}

.contact-card {
  padding: 22px 24px;
  text-align: center;
}

.contact-card span,
.contact-form label span {
  color: var(--muted);
}

.contact-card span,
.contact-form label span {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.contact-card p {
  line-height: 1.6;
}

.contact-form {
  padding: 20px;
}

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

.contact-form label {
  display: block;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  font: inherit;
  border: 1px solid rgba(80, 89, 103, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  padding: 12px 14px;
  color: var(--text);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.contact-form input,
.contact-form select {
  min-height: 46px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 126px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(38, 109, 240, 0.45);
  box-shadow: 0 0 0 4px rgba(38, 109, 240, 0.08);
  background: #fff;
}

.full-width {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 18px;
  margin-top: 16px;
}

.form-actions .button {
  min-width: 170px;
}

.form-actions p {
  max-width: 34ch;
  line-height: 1.6;
}

.tab-row {
  flex-wrap: wrap;
  gap: 10px;
}

.tab {
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(80, 89, 103, 0.15);
  background: rgba(255, 255, 255, 0.74);
  color: var(--muted);
  cursor: pointer;
}

.tab.active {
  color: #fff;
  background: var(--primary);
}

.tab-panels {
  margin-top: 22px;
}

.tab-panel {
  display: none;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: none;
}

.tab-panel.active {
  display: block;
}

.object-grid {
  flex-wrap: wrap;
  gap: 18px;
}

.object-card {
  flex: 1 1 180px;
  min-height: 210px;
  padding: 20px;
  border-radius: 22px;
  box-shadow: none;
  background: #fff;
}

.object-card h3 {
  margin-bottom: 14px;
}

.object-card ul {
  display: grid;
  gap: 10px;
}

.object-card-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 20px;
  align-items: start;
}

.object-card-split:has(.object-visual-clients) {
  grid-template-columns: minmax(0, 1fr) 214px;
}

.object-card-copy {
  min-width: 0;
}

.object-visual {
  margin-top: 0;
}

.object-visual-users {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.object-visual-users div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 10px;
  align-items: center;
  padding: 10px 12px 12px;
  border-radius: 14px;
  background: rgba(244, 247, 252, 0.96);
}

.object-visual-users span,
.object-visual-users b,
.object-legend span {
  font-size: 0.9rem;
}

.object-visual-users i {
  grid-column: 1 / -1;
  display: block;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #266df0 var(--fill), rgba(38, 109, 240, 0.14) var(--fill));
}

.object-card-split:has(.object-visual-users) {
  grid-template-columns: minmax(0, 1fr) 250px;
}

.object-visual-monitor {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  align-items: end;
  gap: 7px;
  height: 128px;
  align-self: start;
}

.object-visual-monitor span {
  display: block;
  height: var(--level);
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(180deg, rgba(112, 159, 245, 0.42) 0%, rgba(38, 109, 240, 0.95) 100%);
}

.object-visual-clients {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  align-self: start;
  flex-direction: row;
  min-height: 126px;
  min-width: 0;
}

.object-ring {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #fff 54%, transparent 55%),
    conic-gradient(#266df0 0 62%, rgba(38, 109, 240, 0.16) 62% 100%);
}

.object-ring b {
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.object-ring span {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.object-legend {
  display: grid;
  gap: 10px;
  min-width: 72px;
}

.object-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

.object-legend i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #266df0;
}

.object-legend span:last-child i {
  background: rgba(38, 109, 240, 0.28);
}

@media (max-width: 720px) {
  .object-card-split {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .object-card-split:has(.object-visual-users),
  .object-card-split:has(.object-visual-clients) {
    grid-template-columns: 1fr;
  }

  .object-visual-users,
  .object-visual-monitor,
  .object-visual-clients {
    align-self: stretch;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .object-visual-users div {
    padding: 9px 10px 10px;
  }

  .object-visual-monitor {
    grid-template-columns: repeat(9, minmax(0, 1fr));
    gap: 5px;
    height: 108px;
  }

  .object-visual-clients {
    gap: 12px;
    min-height: 0;
  }

  .object-ring {
    width: 92px;
    height: 92px;
    flex: 0 0 92px;
  }

  .object-ring b {
    font-size: 1rem;
  }

  .object-ring span {
    font-size: 0.62rem;
  }

  .object-legend {
    min-width: 0;
    gap: 8px;
  }

  .object-legend span,
  .object-visual-users span,
  .object-visual-users b {
    font-size: 0.82rem;
  }
}

.cta-section {
  padding-top: 56px;
}

.cta-panel {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: 38px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(38, 109, 240, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(245, 247, 250, 0.9) 100%);
}

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

.site-footer {
  margin: 0 20px 20px;
  padding: 36px 0;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(38, 109, 240, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(16, 17, 19, 0.98) 0%, rgba(24, 26, 30, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 30px 80px -48px rgba(0, 0, 0, 0.55);
  color: #f3f4f6;
}

.footer-grid {
  justify-content: space-between;
  align-items: start;
  gap: 28px;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  color: rgba(243, 244, 246, 0.58);
  font-size: 0.9rem;
  text-align: center;
}

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

.footer-brand .brand-logo{
  margin-bottom: 24px;
}

.footer-copy {
  max-width: 34ch;
  line-height: 1.65;
  color: rgba(243, 244, 246, 0.74);
}

.footer-grid h3 {
  margin-bottom: 14px;
  font-size: 0.98rem;
  color: #fff;
}

.footer-grid a {
  display: block;
  margin-bottom: 10px;
  color: rgba(243, 244, 246, 0.4);
}

.footer-grid a:hover {
  color: #fff;
}

@media (max-width: 1120px) {
  .hero-grid,
  .model-grid,
  .how-layout,
  .companies-grid,
  .company-columns,
  /*.contact-grid,*/
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .section-heading.compact {
    position: static;
  }

  .how-overview {
    position: static;
  }

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

  .workflows-card,
  .reporting-card {
    position: relative;
    width: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin-top: 18px;
  }
}

@media (max-width: 920px) {
  .desktop-nav,
  .header-actions .text-link,
  .header-actions .button {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-header {
    position: sticky;
  }

  .header-row {
    position: relative;
    min-height: 68px;
  }

  .mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 24;
    gap: 14px;
    padding: 18px 20px 24px;
    background: linear-gradient(180deg, rgba(250, 250, 251, 0.98) 0%, rgba(243, 244, 246, 0.98) 100%);
    backdrop-filter: blur(24px);
    border-top: 1px solid rgba(80, 89, 103, 0.08);
    border-bottom: 1px solid rgba(80, 89, 103, 0.1);
    box-shadow: 0 26px 70px -42px rgba(0, 0, 0, 0.45);
    min-height: calc(100dvh - 68px);
    justify-content: flex-start;
    overflow-y: auto;
  }

  .mobile-nav a {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0 4px;
    border-bottom: 1px solid rgba(80, 89, 103, 0.08);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.02em;
  }

  .mobile-nav a:last-child {
    margin-top: 10px;
    justify-content: center;
    border-bottom: 0;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 14px;
    background: radial-gradient(circle at 50% -30%, #505967 0%, #202124 64%);
    color: #fff;
  }

  .main-frame {
    grid-template-columns: 1fr;
  }

  .stats-strip {
    flex-wrap: wrap;
  }

  .frame-sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .frame-sidebar ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .frame-sidebar li {
    padding: 9px 12px;
    background: rgba(255, 255, 255, 0.06);
  }
}

@media (max-width: 720px) {
  .hidden {
    display: none;
  }

  .form-actions button {
    width: 100%;
  }

  .hero-grid {
    gap: 42px;
  }

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

  .section {
    padding: 32px 0;
  }

  .hero {
    padding-top: 28px;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(2.7rem, 12vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .hero-actions,
  .meeting-grid,
  .form-actions,
  .cta-actions,
  .footer-grid {
    flex-direction: column;
  }

  .dashboard-topbar {
    flex-direction: column;
    align-items: stretch;
  }

  .stats-strip {
    flex-direction: column;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-quote {
    padding: 22px;
  }

  .hero-capture .button,
  .hero-phone-field {
    flex: 0 0 auto;
    width: 100%;
  }

  .hero-phone-field,
  .hero-capture .button {
    height: 46px;
    min-height: 46px;
  }

  .hero-quote p {
    font-size: 1.2rem;
  }

  .frame-main,
  .feature-card,
  .model-panel,
  .cta-panel {
    padding: 20px;
  }

  .site-footer {
    margin: 0 14px 14px;
  }

  .footer-grid > div {
    flex: 1 1;
  }

  .journey-step {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .journey-marker {
    display: none;
  }

  .journey-card,
  .how-overview-card {
    padding: 20px;
  }

  .how-overview-card {
    display: none;
  }

  .how-journey::before {
    display: none;
  }

  .logo-slot {
    width: auto;
    height: 24px;
  }

  .logos {
    gap: 12px 12px;
  }
}
