:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ink: #102820;
  --green: #176b4f;
  --leaf: #dce6e1;
  --gold: #f2b84b;
  --paper: #f5f7f8;
  --white: #ffffff;
  --line: #d8e2de;
  --muted: #5d6c67;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--white);
  color: var(--ink);
  border: 2px solid var(--gold);
  border-radius: 6px;
  padding: 10px 12px;
  font-weight: 850;
}

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

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  font-size: 18px;
}

.brand img {
  width: 44px;
  height: 32px;
  object-fit: cover;
  object-position: left center;
  border-radius: 5px;
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.header-cta,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 6px;
  padding: 0 16px;
  font-weight: 800;
}

.header-cta,
.primary-action {
  background: var(--ink);
  color: var(--white);
}

.secondary-action {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
}

.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 80px 32px;
  background: var(--ink);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 92px;
  background: var(--paper);
  clip-path: polygon(0 68%, 100% 18%, 100% 100%, 0 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: var(--gold);
}

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

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(44px, 8vw, 88px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-content > p {
  max-width: 630px;
  color: #eaf1ee;
  font-size: 20px;
  line-height: 1.5;
}

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

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 96px 6vw 60px;
  opacity: 0.9;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 40, 32, 0.44);
}

.queue-preview {
  position: relative;
  width: min(520px, 46vw);
  min-height: 420px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
  transform: rotate(-2deg);
}

.preview-topline,
.preview-row,
.preview-message {
  border-radius: 7px;
}

.preview-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  padding: 16px;
  background: var(--ink);
  color: var(--white);
}

.preview-topline span,
.preview-row span {
  color: inherit;
  font-weight: 750;
}

.preview-topline strong {
  color: var(--gold);
  font-size: 24px;
}

.preview-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 58px;
  margin-bottom: 12px;
  padding: 0 16px;
  background: var(--paper);
  color: var(--ink);
}

.preview-row b {
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  text-transform: uppercase;
}

.preview-row.hot b {
  background: #ffe0d6;
  color: #8a270f;
}

.preview-row.warm b {
  background: #fff1c7;
  color: #6d4b00;
}

.preview-row.review b {
  background: #e3e8ef;
  color: #354154;
}

.preview-message {
  margin-top: 18px;
  padding: 18px;
  background: #eef6f2;
  color: #24483d;
  font-weight: 700;
  line-height: 1.45;
}

.signal-band {
  padding: 22px 32px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.signal-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 1120px;
  margin: 0 auto;
}

.signal-inner span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  background: var(--paper);
}

.section {
  padding: 84px 32px;
}

.section-heading {
  max-width: 850px;
  margin: 0 auto 32px;
  text-align: center;
}

.section-heading h2,
.pilot-section h2 {
  margin-bottom: 14px;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.03;
  letter-spacing: 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1120px;
  margin: 0 auto;
}

.steps article,
.proof-list > div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-weight: 900;
}

.steps h3,
.proof-list h3 {
  margin-bottom: 9px;
  font-size: 21px;
}

.steps p,
.proof-list p,
.pilot-section p,
figcaption span {
  color: var(--muted);
  line-height: 1.55;
}

.split-section {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
  align-items: stretch;
}

.proof-list {
  display: grid;
  gap: 12px;
}

.proof-list > div {
  background: var(--paper);
}

.report-preview {
  margin: 0;
  display: grid;
  align-content: center;
  gap: 20px;
  padding: 24px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
}

.report-preview img {
  width: 100%;
  max-width: 340px;
  border-radius: 8px;
  background: var(--white);
}

figcaption {
  display: grid;
  gap: 8px;
}

figcaption strong {
  font-size: 24px;
}

figcaption span {
  color: #dce6e1;
}

.pilot-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 28px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: 84px 32px;
}

.pilot-section > div:first-child {
  max-width: 760px;
}

.pilot-actions {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.pilot-actions p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 32px;
  border-top: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  font-weight: 750;
}

footer span {
  color: var(--ink);
}

@media (max-width: 880px) {
  .site-header {
    position: sticky;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    min-height: 68px;
    padding: 12px 18px;
  }

  nav {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .brand span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
    padding: 44px 18px 32px;
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .hero::after {
    display: none;
  }

  .hero-visual {
    position: relative;
    inset: auto;
    order: 2;
    width: 100%;
    opacity: 1;
    justify-content: center;
    padding: 0;
  }

  .hero-visual::before {
    display: none;
  }

  .queue-preview {
    width: min(460px, 92vw);
    min-height: 0;
    transform: none;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  }

  .hero-content {
    order: 1;
  }

  .hero-content > p {
    font-size: 18px;
  }

  .section,
  .pilot-section {
    padding: 58px 18px;
  }

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

  footer {
    flex-direction: column;
    padding: 24px 18px;
  }
}

@media (max-width: 560px) {
  .hero-actions,
  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 13px;
    white-space: nowrap;
  }

  .queue-preview {
    transform: none;
  }
}
