:root {
  --navy: #12324a;
  --teal: #2f7d75;
  --copper: #b56a3a;
  --paper: #f8f7f2;
  --white: #ffffff;
  --ink: #242424;
  --muted: #5f6b70;
  --line: #d9dedb;
  --soft: #eef3f1;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 10;
  background: var(--white);
  padding: 10px 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 48px);
  background: rgba(248, 247, 242, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.brand {
  display: grid;
  min-width: 190px;
  text-decoration: none;
  color: var(--navy);
  line-height: 1.1;
}

.brand span {
  font-family: Georgia, serif;
  font-size: 1.05rem;
}

.brand strong {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
  font-size: 0.92rem;
}

nav a {
  text-decoration: none;
  color: var(--navy);
}

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

.hero,
.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  min-height: 620px;
  padding: clamp(48px, 8vw, 92px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(18, 50, 74, 0.92), rgba(18, 50, 74, 0.58)),
    url("https://images.unsplash.com/photo-1589551968299-9eea8f822d12?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.page-hero.compact {
  display: block;
  min-height: 0;
  padding: clamp(44px, 7vw, 78px) clamp(18px, 5vw, 72px);
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.12;
  color: var(--navy);
  margin: 0 0 14px;
}

.hero h1,
.page-hero h1,
.hero h2,
.page-hero h2 {
  color: var(--white);
}

h1 {
  max-width: 860px;
  font-size: clamp(2.3rem, 5.2vw, 5rem);
}

h2 {
  font-size: clamp(1.65rem, 3vw, 2.7rem);
}

h3 {
  font-size: 1.28rem;
}

p {
  margin: 0 0 16px;
}

.lead {
  max-width: 760px;
  color: inherit;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.eyebrow {
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: #f1c9aa;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
}

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

.button.secondary {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}

.button.amazon {
  width: fit-content;
  background: var(--teal);
  color: var(--white);
}

.hero-panel {
  padding: 26px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--radius);
  color: var(--ink);
}

.hero-panel h2 {
  color: var(--navy);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip span {
  padding: 18px;
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  text-align: center;
}

.section {
  padding: clamp(44px, 7vw, 82px) clamp(18px, 5vw, 72px);
}

.band {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 26px;
}

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

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

.decision-tile,
.card,
.product-card,
.notice,
.checklist {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.decision-tile {
  display: grid;
  min-height: 154px;
  padding: 22px;
  text-decoration: none;
}

.decision-tile span {
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.decision-tile small {
  color: var(--muted);
  font-size: 0.96rem;
}

.card {
  padding: 22px;
}

.product-card {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 22px;
}

.fine-card-copy {
  color: var(--muted);
  font-size: 0.94rem;
}

.card a {
  color: var(--navy);
  text-decoration-color: var(--teal);
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.meta-row span,
.chips span {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: clamp(24px, 5vw, 54px);
}

.checklist {
  display: grid;
  gap: 0;
  overflow: hidden;
}

.checklist a,
.checklist span {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}

.checklist a:last-child,
.checklist span:last-child {
  border-bottom: 0;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

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

th,
td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--navy);
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

td {
  background: var(--white);
}

.roadmap-table {
  max-height: 760px;
}

.ranked-list {
  margin: 0;
  padding-left: 20px;
}

.ranked-list li {
  margin-bottom: 10px;
}

.ranked-list span {
  color: var(--muted);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.article {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(44px, 7vw, 82px) 18px;
}

.article section {
  margin-top: 34px;
}

.notice {
  margin: 28px 0;
  padding: 18px;
  background: #fff8ed;
  border-color: #e8c7a6;
}

.columns {
  columns: 2;
  column-gap: 42px;
}

code {
  padding: 2px 5px;
  border-radius: 5px;
  background: var(--soft);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 72px);
  background: var(--navy);
  color: var(--white);
}

.site-footer a {
  color: var(--white);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.fine-print {
  grid-column: 1 / -1;
  color: #c9d5d2;
  font-size: 0.9rem;
}

@media (max-width: 920px) {
  .site-header {
    display: block;
  }

  nav {
    justify-content: flex-start;
    margin-top: 16px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .trust-strip,
  .decision-grid,
  .card-grid,
  .product-grid,
  .split,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .columns {
    columns: 1;
  }
}

@media (max-width: 560px) {
  nav {
    gap: 10px 12px;
    font-size: 0.86rem;
  }

  .hero-actions {
    display: grid;
  }

  .decision-tile {
    min-height: 0;
  }
}
