:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #667085;
  --line: #e4e8f0;
  --soft: #f6f8fc;
  --blue: #5271ff;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.guide-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  min-height: 78px;
  padding: 0 clamp(22px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.guide-header a {
  color: var(--ink);
  text-decoration: none;
  font-size: 22px;
  font-weight: 950;
}
.guide-header span {
  color: var(--muted);
  font-weight: 850;
}
.guide-page {
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 92px) 22px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
h1 {
  max-width: 840px;
  margin: 0 0 18px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.04;
  letter-spacing: 0;
}
.lede {
  max-width: 780px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}
.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
section {
  margin-top: 22px;
}
article, .verdict, section:not(.guide-grid) {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  padding: 24px;
}
h2 {
  margin: 0 0 10px;
  font-size: 26px;
}
p, li {
  color: var(--muted);
  line-height: 1.62;
}
p:last-child {
  margin-bottom: 0;
}
ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}
strong {
  color: var(--ink);
}
.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  gap: 22px;
  align-items: center;
  border-color: rgba(82, 113, 255, 0.22);
  background: linear-gradient(135deg, #ffffff 0%, #eef2ff 100%);
}
.cta-panel .eyebrow {
  margin-bottom: 8px;
}
.cta-panel small {
  display: block;
  margin-top: 12px;
  color: #667085;
  line-height: 1.5;
}
.cta-links {
  display: grid;
  gap: 10px;
}
.cta-links a {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  padding: 0 16px;
  text-decoration: none;
  font-weight: 950;
}
.cta-links a:nth-child(n+2) {
  border: 1px solid rgba(17, 24, 39, 0.12);
  background: #fff;
  color: var(--ink);
}

@media (max-width: 720px) {
  .guide-grid, .cta-panel {
    grid-template-columns: 1fr;
  }
}
