:root {
  --navy: #102333;
  --navy-soft: #173447;
  --teal: #0f766e;
  --teal-dark: #0b4e49;
  --mint: #b9f5f0;
  --ink: #16202a;
  --slate: #667085;
  --line: #d6e3e1;
  --amber: #d99b2b;
  --gold-soft: #fff5dc;
  --soft: #f4faf9;
  --white: #ffffff;
  --shadow: 0 22px 62px rgba(16, 35, 51, 0.14);
}

* {
  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.95);
  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: 850;
  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: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: center;
  min-height: calc(100dvh - 132px);
  padding: clamp(44px, 7vw, 82px) clamp(18px, 6vw, 82px) clamp(30px, 5vw, 54px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(244, 250, 249, 0.96) 100%),
    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, 6vw, 72px);
  line-height: 1;
  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;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button.primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 12px 30px rgba(15, 118, 110, 0.22);
}

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

.button:hover {
  transform: translateY(-1px);
}

.hero-dashboard {
  width: 100%;
  padding: clamp(18px, 3vw, 28px);
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    var(--navy);
  border: 1px solid rgba(185, 245, 240, 0.32);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.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;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.readiness-card {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.readiness-card div:first-child {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.readiness-card span,
.readiness-card small {
  color: #aec5c8;
}

.readiness-card strong {
  color: var(--white);
  font-size: 18px;
}

.bar {
  height: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.13);
  border-radius: 999px;
}

.bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--teal) 0%, var(--amber) 100%);
}

.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;
  font-variant-numeric: tabular-nums;
}

.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,
.operator-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

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

.steps article span,
.operator-grid 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,
.operator-grid p {
  margin-bottom: 0;
  color: var(--slate);
}

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

.operator .eyebrow {
  color: var(--mint);
}

.operator h2,
.operator h3 {
  color: var(--white);
}

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

.operator-grid article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.operator-grid article span {
  color: var(--amber);
}

.operator-grid p {
  color: #c0d1d1;
}

.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 {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .proof-band,
  .steps,
  .pilot-grid,
  .operator-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;
  }

  .readiness-card div:first-child {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

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