:root {
  color-scheme: light;
  --bg: #efe9df;
  --bg-soft: #f6f1e8;
  --ink: #15120e;
  --muted: rgba(21, 18, 14, 0.72);
  --line: rgba(21, 18, 14, 0.09);
  --card: rgba(255, 255, 255, 0.72);
  --shadow: 0 24px 80px rgba(28, 22, 14, 0.1);
  --radius: 24px;
  --max: 1500px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.72), transparent 35%),
    linear-gradient(180deg, #f6f1e8 0%, #ede6da 100%);
  color: var(--ink);
  font-family: "Manrope", system-ui, sans-serif;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(21, 18, 14, 0.08);
  backdrop-filter: blur(18px);
  background: rgba(246, 241, 232, 0.82);
  box-shadow: 0 12px 30px rgba(20, 16, 12, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand img {
  width: 32px;
  height: 32px;
}

.topnav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
}

.topnav a {
  text-decoration: none;
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.topbar__cta {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(21, 18, 14, 0.12);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.56);
  font-weight: 700;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(21, 18, 14, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 16px 20px 0;
}

.section {
  position: relative;
  margin: 0 0 22px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  overflow: hidden;
  scroll-margin-top: 96px;
}

.section--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: start;
}

.section--reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
}

.section__copy,
.section__head,
.cta {
  position: relative;
  z-index: 1;
}

.section__head {
  max-width: 880px;
  margin-bottom: 18px;
}

.section__head--wide {
  max-width: 1100px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #7f6a47;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(38px, 4vw, 68px);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(28px, 2.7vw, 48px);
  line-height: 1;
  letter-spacing: -0.04em;
}

h3 {
  font-size: 18px;
  line-height: 1.1;
}

.lead {
  margin-top: 18px;
  max-width: 42rem;
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(21, 18, 14, 0.12);
  text-decoration: none;
  font-weight: 800;
}

.button--solid {
  background: #18130e;
  color: #f4f0e8;
}

.button--ghost {
  background: rgba(255, 255, 255, 0.58);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

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

.stats > div {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(21, 18, 14, 0.08);
}

.stats dt {
  font-size: 20px;
  font-weight: 800;
}

.stats dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.section__visual {
  margin: 0;
  align-self: start;
}

.visual {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(21, 18, 14, 0.08);
  background: #ddd4c7;
  box-shadow: 0 16px 50px rgba(20, 16, 12, 0.12);
}

.visual img {
  width: 100%;
  height: auto;
}

.cards {
  display: grid;
  gap: 14px;
}

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

.card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(21, 18, 14, 0.08);
}

.card__num {
  display: inline-flex;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #7f6a47;
}

.card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.mini-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.mini-list div {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(21, 18, 14, 0.08);
}

.mini-list strong {
  display: block;
  font-size: 15px;
}

.mini-list span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

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

.bullets li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
}

.bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7f6a47;
}

.feature {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 22px;
  align-items: center;
}

.feature__visual {
  margin: 0;
  min-height: 440px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(21, 18, 14, 0.08);
  box-shadow: 0 18px 60px rgba(20, 16, 12, 0.14);
}

.feature__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature__copy {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.feature__copy .bullets {
  margin-top: 20px;
}

.table-wrap {
  overflow-x: auto;
  border-radius: 20px;
  border: 1px solid rgba(21, 18, 14, 0.08);
  background: rgba(255, 255, 255, 0.62);
}

.compare-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(21, 18, 14, 0.08);
  vertical-align: top;
}

.compare-table th {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #7f6a47;
}

.compare-table td {
  color: var(--muted);
  line-height: 1.55;
}

.cta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}

.cta__logo {
  width: 76px;
  height: 76px;
}

.section--cta h2 {
  max-width: 900px;
}

.section--cta p:last-child {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.footer {
  margin: 20px 0 0;
  padding: 18px 20px 26px;
  color: var(--muted);
  font-size: 14px;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-top: 16px;
  border-top: 1px solid rgba(21, 18, 14, 0.09);
}

.footer__credit a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.footer__credit a:hover {
  opacity: 0.8;
}

@media (max-width: 1200px) {
  .cards--5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature,
  .section--split,
  .section--reverse,
  .cta {
    grid-template-columns: 1fr;
  }

  .feature__visual,
  .visual--hero,
  .visual--medium,
  .visual--tall,
  .visual--wide {
    min-height: 320px;
  }
}

@media (max-width: 900px) {
  html {
    scroll-snap-type: none;
  }

  .topbar {
    gap: 10px;
    padding: 12px 14px;
  }

  .topbar__actions {
    margin-left: auto;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .topnav {
    display: none;
    width: 100%;
    order: 3;
    flex-direction: column;
    gap: 0;
    margin-top: 6px;
    padding: 6px 0 0;
    border-top: 1px solid rgba(21, 18, 14, 0.08);
  }

  .topbar--open .topnav {
    display: flex;
  }

  .topnav a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(21, 18, 14, 0.06);
  }

  .page {
    width: 100%;
    padding: 0;
  }

  .section {
    margin: 0 0 14px;
    padding: 20px 16px;
    border-radius: 0;
    box-shadow: none;
    border-left: 0;
    border-right: 0;
  }

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

  .feature__visual {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
