:root {
  color-scheme: light;
  --ink: #18221f;
  --muted: #62706b;
  --line: #dce5df;
  --paper: #fbfcf8;
  --mist: #eef5f0;
  --teal: #0d7f7a;
  --teal-dark: #075e5d;
  --coral: #d86f5a;
  --gold: #d59b2d;
  --indigo: #5167b7;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(20, 42, 38, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(220, 229, 223, 0.82);
  background: rgba(251, 252, 248, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(13, 127, 122, 0.24);
}

.brand-name {
  font-size: 1.04rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #33443f;
  font-size: 0.95rem;
  font-weight: 600;
}

.site-nav a {
  padding: 8px 0;
}

.nav-cta {
  border: 1px solid var(--teal);
  border-radius: 8px;
  padding: 10px 16px !important;
  color: var(--teal-dark);
}

.nav-login {
  color: var(--teal-dark);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 72px) 36px;
  background:
    linear-gradient(135deg, rgba(238, 245, 240, 0.94), rgba(251, 252, 248, 0.72)),
    radial-gradient(circle at 12% 10%, rgba(216, 111, 90, 0.16), transparent 34%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.2;
}

.hero-lede,
.section p,
.cta-section p,
.site-footer p {
  color: var(--muted);
}

.hero-lede {
  max-width: 680px;
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 18px;
  font-weight: 800;
}

.button.primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(13, 127, 122, 0.24);
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 600px;
  gap: 12px;
  margin: 0;
}

.hero-stats div {
  border-left: 3px solid var(--teal);
  padding: 3px 16px 6px;
}

.hero-stats p {
  margin: 0;
}

.hero-stats strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
}

.hero-stats span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.hero-visual img {
  width: 100%;
  height: min(58vw, 620px);
  min-height: 430px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.product-panel {
  position: absolute;
  right: clamp(12px, 3vw, 34px);
  bottom: -22px;
  width: min(420px, calc(100% - 24px));
  border: 1px solid rgba(220, 229, 223, 0.9);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 56px rgba(22, 38, 34, 0.18);
  backdrop-filter: blur(16px);
}

.panel-topline,
.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.panel-topline span,
.metric-grid span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0;
}

.metric-grid div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: var(--paper);
}

.metric-grid strong {
  display: block;
  margin-top: 5px;
  font-size: 1.35rem;
}

.task-list {
  display: grid;
  gap: 8px;
}

.task-list p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #33443f;
  font-size: 0.9rem;
}

.status {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 999px;
}

.green {
  background: var(--teal);
}

.amber {
  background: var(--gold);
}

.blue {
  background: var(--indigo);
}

.trust-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px clamp(20px, 5vw, 72px);
  border-block: 1px solid var(--line);
  background: var(--white);
}

.trust-band p {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.trust-band div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.trust-band span,
.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: #40514c;
  background: var(--paper);
  font-size: 0.82rem;
  font-weight: 700;
}

.section {
  padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 72px);
}

.split-section,
.workflow-section,
.center-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: start;
}

.split-section > div:first-child {
  position: sticky;
  top: 112px;
}

.insight-grid,
.feature-grid,
.control-grid {
  display: grid;
  gap: 16px;
}

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

article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
}

article p {
  margin-bottom: 0;
  color: var(--muted);
}

.icon-dot {
  display: block;
  width: 32px;
  height: 8px;
  margin-bottom: 20px;
  border-radius: 999px;
}

.teal {
  background: var(--teal);
}

.coral {
  background: var(--coral);
}

.gold {
  background: var(--gold);
}

.indigo {
  background: var(--indigo);
}

.solution-band {
  background: #112824;
  color: var(--white);
}

.solution-band .eyebrow {
  color: #87d8cd;
}

.solution-band p {
  color: #bdd1cc;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

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

.solution-band article {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.workflow-section {
  background: var(--mist);
}

.workflow-copy {
  position: sticky;
  top: 112px;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline article {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  column-gap: 18px;
}

.timeline article span {
  grid-row: span 2;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
  font-weight: 800;
}

.center-section {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: center;
}

.dashboard-preview {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 30px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.dashboard-preview h2 {
  margin-bottom: 0;
}

.location-table {
  display: grid;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.location-table [role="row"] {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.8fr 0.8fr;
  min-width: 620px;
}

.location-table span {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  color: #40514c;
  font-weight: 600;
}

.location-table [role="row"]:last-child span {
  border-bottom: 0;
}

.table-head span {
  background: var(--mist);
  color: var(--ink);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.good,
.watch {
  font-weight: 800 !important;
}

.good {
  color: var(--teal-dark) !important;
}

.watch {
  color: #98670d !important;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #33443f;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  content: "✓";
  color: var(--teal);
  font-weight: 900;
}

.security-section {
  background: #f7f3eb;
}

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

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
  padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 72px);
  background: #173532;
  color: var(--white);
}

.cta-section .eyebrow {
  color: #87d8cd;
}

.cta-section h2 {
  max-width: 820px;
}

.cta-section p {
  max-width: 680px;
  color: #c8d9d5;
}

.demo-form {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.07);
}

.demo-form label {
  display: grid;
  gap: 7px;
  color: #e8f1ee;
  font-size: 0.9rem;
  font-weight: 800;
}

.demo-form input {
  min-height: 48px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font: inherit;
}

.demo-form .button {
  width: 100%;
  margin-top: 4px;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--white);
}

.site-footer p {
  max-width: 420px;
  margin: 12px 0 0;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: #40514c;
  font-weight: 700;
}

@media (max-width: 1050px) {
  .hero,
  .split-section,
  .workflow-section,
  .center-section,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .split-section > div:first-child,
  .workflow-copy {
    position: static;
  }

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

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

@media (max-width: 760px) {
  .site-header {
    align-items: center;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 12px !important;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-actions,
  .trust-band,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-stats,
  .insight-grid,
  .feature-grid,
  .control-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual img {
    height: 430px;
  }

  .product-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: -46px;
  }

  .timeline article {
    grid-template-columns: 1fr;
  }

  .timeline article span {
    grid-row: auto;
    margin-bottom: 14px;
  }

  .dashboard-preview {
    overflow-x: auto;
  }

  .trust-band div,
  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 460px) {
  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2rem;
  }

  .section,
  .cta-section {
    padding-block: 56px;
  }
}
