:root {
  color-scheme: light;
  --ink: #151412;
  --muted: #5d5850;
  --paper: #f8f1e7;
  --panel: #fffaf2;
  --line: rgba(21, 20, 18, 0.14);
  --coral: #f36f21;
  --blue: #2d7df6;
  --green: #5da77a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(243, 111, 33, 0.12), transparent 18rem),
    radial-gradient(circle at top right, rgba(45, 125, 246, 0.1), transparent 18rem),
    var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
}

.brand img {
  width: 48px;
  height: auto;
}

.topbar nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero {
  padding: clamp(56px, 9vw, 104px) 0 44px;
}

.eyebrow {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 250, 242, 0.7);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  max-width: 920px;
  margin-top: 18px;
  font-size: clamp(2.45rem, 6vw, 5.8rem);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
  line-height: 1.25;
}

p {
  margin: 0;
}

.lead {
  max-width: 820px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
}

.answer-card {
  margin-top: 32px;
  border: 1px solid rgba(243, 111, 33, 0.28);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 250, 242, 0.86);
  box-shadow: 0 18px 50px rgba(21, 20, 18, 0.08);
}

.answer-card strong {
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  line-height: 1.4;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 10px 18px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.section {
  border-top: 1px solid var(--line);
  padding: clamp(40px, 7vw, 76px) 0;
}

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

.card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 250, 242, 0.72);
}

.card ul,
.section ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.comparison {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.78);
}

.comparison th,
.comparison td {
  border-bottom: 1px solid var(--line);
  padding: 15px 16px;
  text-align: left;
  vertical-align: top;
}

.comparison th {
  background: rgba(21, 20, 18, 0.06);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.faq-list {
  display: grid;
  gap: 14px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 44px;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 720px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar nav {
    justify-content: flex-start;
  }

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

  .comparison {
    display: block;
    overflow-x: auto;
  }
}
