:root {
  color-scheme: light;
  --bg: #ffffff;
  --text: #080808;
  --muted: #555555;
  --line: #d8d8d8;
  --soft: #f5f5f5;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.25;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
}

.wordmark {
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 15px;
}

nav a {
  text-decoration: none;
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(56px, 9vw, 112px) 0;
  border-bottom: 1px solid var(--line);
}

.narrow {
  max-width: 900px;
}

.hero {
  padding-top: clamp(72px, 11vw, 140px);
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 700;
}

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

h1 {
  max-width: 1050px;
  margin-bottom: 34px;
  font-size: clamp(52px, 8.2vw, 118px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  max-width: 960px;
  margin-bottom: 28px;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(21px, 2.4vw, 30px);
  line-height: 1.08;
}

p,
li,
td,
th {
  font-size: clamp(19px, 2vw, 25px);
  letter-spacing: 0;
}

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

.hero-copy p,
.section-lede,
.final p {
  color: var(--text);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.12;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 18px;
  border: 2px solid var(--text);
  background: var(--text);
  color: var(--bg);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.button.secondary {
  background: var(--bg);
  color: var(--text);
}

.proof-list {
  display: grid;
  gap: 18px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.proof-list li {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.table-wrap {
  overflow-x: auto;
  margin-top: 34px;
  border: 1px solid var(--line);
}

table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
}

th,
td {
  width: 33.33%;
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--soft);
  font-weight: 700;
}

tr:last-child td {
  border-bottom: 0;
}

th:last-child,
td:last-child {
  border-right: 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
  border: 1px solid var(--line);
}

.cards article {
  min-height: 220px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--bg);
}

.cards p {
  color: var(--muted);
}

.segments {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0;
}

.segment {
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--text);
  background: var(--bg);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-size: 17px;
}

.segment.active {
  background: var(--text);
  color: var(--bg);
}

.timeline {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.timeline li {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 26px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.timeline strong {
  font-size: clamp(18px, 1.8vw, 22px);
}

.timeline p {
  margin: 0;
}

.site-footer {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 28px 0 46px;
  color: var(--muted);
}

.site-footer p {
  font-size: 16px;
}

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

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

  .cards {
    grid-template-columns: 1fr;
  }

  .table-wrap {
    overflow: visible;
    border: 0;
  }

  table,
  thead,
  tbody,
  tr,
  th,
  td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  thead {
    display: none;
  }

  tr {
    margin-bottom: 14px;
    border: 1px solid var(--line);
  }

  td {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 14px;
  }

  tr:last-child td {
    border-bottom: 1px solid var(--line);
  }

  td:last-child {
    border-bottom: 0;
  }

  td::before {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
  }

  .checklist-table td:nth-child(1)::before {
    content: "Question to ask";
  }

  .checklist-table td:nth-child(2)::before {
    content: "Typical risk";
  }

  .checklist-table td:nth-child(3)::before {
    content: "Rank Consultants answer";
  }

  .comparison-table td:nth-child(1)::before {
    content: "What buyers see now";
  }

  .comparison-table td:nth-child(2)::before {
    content: "Where it breaks";
  }

  .comparison-table td:nth-child(3)::before {
    content: "What we do instead";
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .button {
    width: 100%;
  }
}
