:root {
  --teal: #0f766e;
  --teal-dark: #0b4e49;
  --mint: #b9f5f0;
  --ink: #16202a;
  --slate: #667085;
  --line: #d6e3e1;
  --amber: #f2b84b;
  --soft: #f4faf9;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  display: block;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 30px);
  color: var(--slate);
  font-size: 15px;
  font-weight: 650;
}

nav a {
  text-decoration: none;
}

nav a:hover {
  color: var(--teal);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: clamp(30px, 5vw, 56px);
  align-items: stretch;
  min-height: calc(100vh - 72px);
  padding: clamp(44px, 8vw, 88px) clamp(18px, 6vw, 82px) clamp(28px, 5vw, 52px);
  background: var(--soft);
}

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

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

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-text {
  max-width: 660px;
  margin-bottom: 30px;
  color: #44515f;
  font-size: clamp(18px, 2vw, 22px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--teal);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

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

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

.hero-dashboard {
  width: 100%;
  max-width: 1120px;
  padding: 22px;
  color: var(--white);
  background: #132a34;
  border: 1px solid rgba(185, 245, 240, 0.32);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(19, 42, 52, 0.22);
}

.dashboard-topline,
.metric-row,
.lead-list li,
.proof-band,
.pilot-grid {
  display: grid;
}

.dashboard-topline {
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-bottom: 18px;
  color: #d7eeec;
}

.dashboard-topline strong {
  color: var(--amber);
}

.metric-row {
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.metric-row div {
  min-width: 0;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.metric-row span,
.lead-list span {
  display: block;
  color: #aec5c8;
  font-size: 12px;
}

.metric-row strong {
  display: block;
  margin-top: 4px;
  font-size: 28px;
  line-height: 1;
}

.lead-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lead-list li {
  grid-template-columns: 12px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.lead-list strong {
  display: block;
  margin-bottom: 2px;
  color: #f8fbfb;
}

.lead-list em {
  color: var(--mint);
  font-style: normal;
  font-weight: 800;
}

.status {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.status.hot {
  background: var(--amber);
}

.status.warm {
  background: var(--mint);
}

.status.cool {
  background: #8fb0b4;
}

.proof-band {
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-band div {
  padding: 24px clamp(18px, 4vw, 56px);
  background: var(--white);
}

.proof-band strong,
.proof-band span {
  display: block;
}

.proof-band strong {
  margin-bottom: 5px;
  color: var(--teal-dark);
}

.proof-band span {
  color: var(--slate);
}

.section {
  padding: clamp(56px, 8vw, 92px) clamp(18px, 6vw, 82px);
}

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

h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4.5vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

.steps,
.pilot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.steps article,
.pilot-grid div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.steps article span {
  display: inline-flex;
  margin-bottom: 32px;
  color: var(--teal);
  font-weight: 900;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.steps p,
.pilot-grid p {
  margin-bottom: 0;
  color: var(--slate);
}

.pilot {
  background: var(--soft);
}

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

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 28px clamp(18px, 6vw, 82px);
  border-top: 1px solid var(--line);
}

.site-footer img {
  display: block;
  max-width: min(240px, 60vw);
  height: auto;
}

.site-footer a {
  color: var(--teal);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 920px) {
  .hero {
    min-height: auto;
  }

  .proof-band,
  .steps,
  .pilot-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    padding-top: 34px;
  }

  h1 {
    font-size: 42px;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .lead-list li {
    grid-template-columns: 10px 1fr;
  }

  .lead-list em {
    grid-column: 2;
  }

  .button {
    width: 100%;
  }

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