:root {
  color-scheme: light;
  --ink: #232a35;
  --muted: #5f6670;
  --line: rgba(84, 70, 47, 0.14);
  --panel: rgba(255, 251, 245, 0.88);
  --panel-strong: #fffaf1;
  --accent: #e99d7c;
  --accent-deep: #b56a49;
  --accent-soft: rgba(233, 157, 124, 0.14);
  --sage: #dfe9d6;
  --shadow: 0 24px 70px rgba(66, 46, 24, 0.08);
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    "Inter",
    "SF Pro Display",
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(247, 196, 170, 0.65), transparent 28%),
    radial-gradient(circle at top right, rgba(233, 220, 180, 0.65), transparent 30%),
    linear-gradient(180deg, #fff9f1 0%, #fffdf8 100%);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

code {
  font-family: "SFMono-Regular", "Menlo", monospace;
  font-size: 0.94em;
}

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 40px 0 64px;
}

.hero,
.section,
.footer {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 420px);
  gap: 36px;
  align-items: center;
  padding: 40px;
}

.eyebrow,
.section-label {
  margin: 0 0 10px;
  color: var(--accent-deep);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero h1,
.section h2 {
  margin: 0;
  line-height: 1.02;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 4.9rem);
}

.section h2 {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
}

.lede {
  margin: 18px 0 0;
  max-inline-size: 62ch;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: var(--muted);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(180deg, #f1b392 0%, #ea9c7b 100%);
  color: #fff;
  box-shadow: 0 16px 28px rgba(233, 157, 124, 0.28);
}

.button-secondary {
  border-color: rgba(181, 106, 73, 0.18);
  background: rgba(255, 255, 255, 0.68);
}

.quick-points {
  margin: 24px 0 0;
  padding-left: 18px;
  color: var(--muted);
  max-inline-size: 58ch;
}

.quick-points li + li {
  margin-top: 10px;
}

.hero-visual img {
  width: min(100%, 420px);
  margin: 0 auto;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--panel-strong);
  box-shadow: 0 16px 32px rgba(66, 46, 24, 0.10);
}

.section {
  margin-top: 28px;
  padding: 32px;
}

.compare-callout {
  background:
    linear-gradient(180deg, rgba(255, 244, 236, 0.94) 0%, rgba(255, 250, 243, 0.94) 100%);
}

.section-copy {
  max-inline-size: 66ch;
}

.compare-callout p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.trust-section .section-copy p:last-child {
  color: var(--muted);
}

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

.trust-grid article {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.trust-grid strong {
  color: var(--accent-deep);
}

.trust-grid span {
  color: var(--muted);
}

.feature-grid {
  display: grid;
  gap: 22px;
}

.feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 420px);
  gap: 24px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.55);
}

.feature-card img {
  width: min(100%, 360px);
  margin-left: auto;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--panel-strong);
}

.feature-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.step-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.step-list li {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.step-list strong {
  display: block;
  margin-bottom: 8px;
}

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

.faq-grid article {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.faq-grid h3 {
  margin: 0 0 10px;
  font-size: 1.06rem;
}

.faq-grid p,
.footer p {
  margin: 0;
  color: var(--muted);
}

.footer {
  margin-top: 28px;
  padding: 24px 28px;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.version-note {
  margin-top: 10px;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .hero,
  .feature-card,
  .faq-grid,
  .trust-grid,
  .step-list {
    grid-template-columns: 1fr;
  }

  .hero,
  .section {
    padding: 28px;
  }

  .feature-card img,
  .hero-visual img {
    margin: 0;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .hero,
  .section,
  .footer {
    border-radius: 24px;
  }

  .hero,
  .section {
    padding: 22px;
  }

  .button {
    width: 100%;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}
