:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #526170;
  --line: #d9e2ea;
  --paper: #f7f8f4;
  --white: #ffffff;
  --navy: #101828;
  --teal: #137c76;
  --lime: #c8e36e;
  --blue: #3568d4;
  --orange: #d96c2c;
  --shadow: 0 24px 60px rgba(16, 24, 40, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 16px clamp(18px, 5vw, 72px);
  background: rgba(247, 248, 244, 0.92);
  border-bottom: 1px solid rgba(217, 226, 234, 0.72);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav,
.hero-actions,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: var(--navy);
  color: var(--lime);
  border-radius: 8px;
  font-size: 0.84rem;
}

.site-nav {
  gap: 8px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 8px;
  color: #344054;
  font-size: 0.95rem;
  font-weight: 650;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: #edf2f5;
  outline: none;
}

.site-nav .nav-app {
  background: var(--navy);
  color: var(--white);
  margin-left: 4px;
}

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

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(56px, 8vw, 112px) clamp(18px, 5vw, 72px) 42px;
  background:
    linear-gradient(115deg, rgba(19, 124, 118, 0.12), transparent 42%),
    linear-gradient(35deg, rgba(200, 227, 110, 0.28), transparent 34%);
}

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

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

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(4rem, 12vw, 8.5rem);
  line-height: 0.92;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.hero-lede,
.section-heading p,
.split-section p,
.contact-section p {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.26rem);
  max-width: 680px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 750;
  cursor: pointer;
}

.button-primary {
  background: var(--teal);
  color: var(--white);
}

.button-secondary {
  background: var(--white);
  border-color: var(--line);
  color: var(--navy);
}

.product-panel {
  padding: 18px;
  background: var(--navy);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.panel-topbar,
.route-card,
.timeline article,
.feature-grid article,
.workflow-columns article {
  border-radius: 8px;
}

.panel-topbar,
.route-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.panel-topbar {
  padding: 4px 2px 18px;
  color: #cbd5e1;
}

.panel-topbar strong {
  color: var(--lime);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.signal-grid article,
.route-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.signal-grid article {
  min-height: 118px;
  padding: 16px;
}

.metric {
  display: block;
  margin-bottom: 10px;
  color: var(--lime);
  font-size: clamp(1.8rem, 4vw, 2.55rem);
  font-weight: 850;
  line-height: 1;
}

.signal-grid span:last-child,
.route-card span,
.workflow-list span {
  color: #cbd5e1;
  font-size: 0.87rem;
}

.route-card {
  gap: 14px;
  margin: 14px 0;
  padding: 16px;
}

.route-card div {
  display: grid;
  gap: 3px;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: var(--lime);
  border-radius: 50%;
}

.time-pill {
  padding: 8px 10px;
  background: rgba(200, 227, 110, 0.16);
  border-radius: 8px;
}

.workflow-list {
  display: grid;
  gap: 10px;
}

.workflow-list span {
  position: relative;
  overflow: hidden;
  padding: 12px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
}

.workflow-list span::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  width: var(--fill);
  height: 3px;
  background: var(--orange);
}

.section,
.split-section,
.contact-section {
  padding: clamp(64px, 9vw, 116px) clamp(18px, 5vw, 72px);
}

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

.feature-grid,
.timeline,
.workflow-columns {
  display: grid;
  gap: 16px;
}

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

.feature-grid article,
.workflow-columns article,
.timeline article,
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
}

.feature-grid article,
.workflow-columns article,
.timeline article {
  padding: 22px;
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  background: #e6f1ef;
  color: var(--teal);
  border-radius: 8px;
  font-weight: 850;
}

.feature-grid p,
.workflow-columns li,
.timeline p {
  color: var(--muted);
}

.split-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

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

ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

li + li {
  margin-top: 10px;
}

.muted {
  background: #edf2f5;
}

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

.timeline span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--orange);
  font-weight: 850;
}

.contact-section {
  background: var(--navy);
  color: var(--white);
}

.contact-section .eyebrow {
  color: var(--lime);
}

.contact-section p {
  color: #cbd5e1;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  color: var(--ink);
  border-radius: 8px;
}

label {
  display: grid;
  gap: 7px;
  color: #344054;
  font-size: 0.93rem;
  font-weight: 750;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(19, 124, 118, 0.16);
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-footer {
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  background: #0b1220;
  color: #d1d7e0;
}

.site-footer a {
  color: var(--lime);
}

@media (max-width: 980px) {
  .hero,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .product-panel {
    max-width: 640px;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 18px;
    left: 18px;
    display: none;
    align-items: stretch;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .site-nav .nav-app {
    margin-left: 0;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding-top: 52px;
  }

  h1 {
    font-size: clamp(3.5rem, 18vw, 5.7rem);
  }

  .signal-grid,
  .feature-grid,
  .workflow-columns,
  .timeline {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
