:root {
  color-scheme: light;
  --ink: #15201e;
  --muted: #5b6562;
  --line: #dce3df;
  --paper: #fbfcf8;
  --band: #eef5f1;
  --teal: #0b7775;
  --teal-dark: #075b59;
  --coral: #c85b42;
  --amber: #f0b84f;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(16, 36, 33, 0.12);
}

* {
  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.55;
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  z-index: 10;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(13, 33, 30, 0.9);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 32px));
  min-height: 64px;
  margin: 0 auto;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

.nav-links a {
  text-decoration: none;
}

.section-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.page-hero {
  padding: 78px 0 54px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 23, 21, 0.92), rgba(7, 23, 21, 0.68)),
    url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1800&q=82");
  background-position: center;
  background-size: cover;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 760px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 22px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 720;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  display: block;
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: var(--amber);
  content: "";
}

section {
  padding: 64px 0;
}

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

.grid-2,
.grid-3,
.sample-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.panel,
.tile,
.workflow {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.panel,
.tile {
  padding: 24px;
}

.tile {
  min-height: 210px;
}

.tile h2,
.tile h3,
.panel h2,
.panel h3 {
  margin: 0 0 12px;
  letter-spacing: 0;
}

.tile p,
.panel p,
.tile li,
.panel li {
  color: var(--muted);
}

.tile p,
.panel p {
  margin: 0 0 14px;
}

.tile ul,
.panel ul,
.workflow ul {
  margin: 0;
  padding-left: 19px;
}

.tile li,
.panel li,
.workflow li {
  margin: 8px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 760;
  text-decoration: none;
}

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

.button.light {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

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

.workflow {
  overflow: hidden;
}

.workflow-row {
  display: grid;
  grid-template-columns: 0.35fr 1fr 1.2fr;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.workflow-row:last-child {
  border-bottom: 0;
}

.workflow-row.header {
  background: var(--teal-dark);
  color: var(--white);
  font-weight: 760;
}

.workflow-row span {
  color: var(--muted);
}

.workflow-row.header span {
  color: var(--white);
}

.notice {
  border-left: 4px solid var(--coral);
  padding: 18px;
  border-radius: 8px;
  background: #fff6f2;
}

.demo-board {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 18px;
  align-items: stretch;
}

.signal-card {
  display: grid;
  min-height: 220px;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 24px;
}

.signal-card h2,
.signal-card h3,
.score-card h3 {
  margin: 0;
}

.lead-message {
  border-left: 4px solid var(--teal);
  padding: 16px;
  border-radius: 8px;
  background: #f5fbf9;
  color: var(--ink);
}

.score-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.score-card {
  min-height: 118px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 18px;
}

.score-card strong {
  display: block;
  margin-top: 10px;
  color: var(--teal-dark);
  font-size: 30px;
  line-height: 1;
}

.mini-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.mini-row {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr 0.8fr 0.9fr;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.mini-row:last-child {
  border-bottom: 0;
}

.mini-row.header {
  background: var(--teal-dark);
  color: var(--white);
  font-weight: 760;
}

.pill {
  display: inline-flex;
  width: fit-content;
  min-height: 26px;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  background: #cceee9;
  color: #17201d;
  font-size: 12px;
  font-weight: 780;
}

.pill.orange {
  background: #ffe4d7;
}

.pill.gold {
  background: #fff0bd;
}

.reply-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf7;
  padding: 22px;
}

.reply-box p {
  color: var(--ink);
}

.deliverables {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.deliverable {
  min-height: 142px;
  border-top: 4px solid var(--teal);
  border-radius: 8px;
  background: var(--white);
  padding: 18px;
  box-shadow: var(--shadow);
}

.deliverable b {
  display: block;
  margin-bottom: 8px;
}

.case-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

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

.case-stat strong {
  display: block;
  color: var(--coral);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
}

.case-stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.quote-block {
  border-left: 4px solid var(--amber);
  border-radius: 8px;
  background: var(--white);
  padding: 22px;
  box-shadow: var(--shadow);
}

.meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.meta-strip span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

footer {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .grid-2,
  .grid-3,
  .sample-grid,
  .workflow-row,
  .demo-board,
  .score-grid,
  .mini-row,
  .deliverables,
  .case-hero {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 58px 0 44px;
  }

  section {
    padding: 46px 0;
  }
}
