:root {
  --bg: #f6f3ec;
  --ink: #141821;
  --muted: #5d6472;
  --line: #e2d9cb;
  --card: #ffffff;
  --brand: #275efe;
  --brand-dark: #1746ca;
  --green: #15a167;
  --amber: #d88713;
  --shadow: 0 24px 70px rgba(34, 39, 52, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(39, 94, 254, 0.13), transparent 34rem),
    linear-gradient(180deg, #fbf8f2 0%, var(--bg) 52%, #eee8dd 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1120px;
  padding: 22px 24px;
}

.brand {
  align-items: center;
  display: flex;
  font-size: 19px;
  font-weight: 800;
  gap: 10px;
}

.brand img {
  border-radius: 12px;
  height: 34px;
  width: 34px;
}

nav {
  align-items: center;
  display: flex;
  gap: 20px;
}

nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-cta {
  background: var(--ink);
  border-radius: 999px;
  color: #fff;
  padding: 10px 14px;
}

.hero {
  align-items: center;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  margin: 0 auto;
  max-width: 1120px;
  min-height: 650px;
  padding: 48px 24px 84px;
}

.eyebrow {
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(42px, 7vw, 76px);
  letter-spacing: -0.045em;
  line-height: 0.94;
  margin-bottom: 22px;
  max-width: 780px;
}

h2 {
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.035em;
  line-height: 1.04;
  margin-bottom: 16px;
}

h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.lede {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
  max-width: 650px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 12px;
}

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 850;
  justify-content: center;
  min-height: 48px;
  padding: 13px 19px;
}

.primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 14px 28px rgba(39, 94, 254, 0.22);
}

.primary:hover {
  background: var(--brand-dark);
}

.secondary {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
}

.microcopy {
  color: #717785;
  font-size: 13px;
  line-height: 1.5;
}

.product-panel {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(226, 217, 203, 0.9);
  border-radius: 26px;
  box-shadow: var(--shadow);
  padding: 20px;
}

.panel-top {
  display: flex;
  gap: 7px;
  margin-bottom: 22px;
}

.panel-top span {
  background: #d6d0c5;
  border-radius: 50%;
  height: 10px;
  width: 10px;
}

.panel-title {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}

.panel-title strong {
  display: block;
  font-size: 20px;
}

.panel-title small,
.stats small {
  color: var(--muted);
  display: block;
  font-weight: 700;
}

.panel-title b {
  background: #eaf1ff;
  border-radius: 999px;
  color: var(--brand);
  padding: 9px 12px;
}

.check-row {
  align-items: center;
  background: #f8f6f1;
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex;
  gap: 12px;
  margin-top: 10px;
  padding: 14px;
}

.check-row span {
  border-radius: 999px;
  height: 12px;
  width: 12px;
}

.check-row.done span {
  background: var(--green);
}

.check-row.warn span {
  background: var(--amber);
}

.check-row p {
  font-weight: 750;
  margin: 0;
}

.stats {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
}

.stats div {
  background: var(--ink);
  border-radius: 18px;
  color: #fff;
  padding: 16px;
}

.stats strong {
  display: block;
  font-size: 28px;
}

.stats small {
  color: rgba(255, 255, 255, 0.68);
}

.section {
  margin: 0 auto;
  max-width: 1120px;
  padding: 70px 24px;
}

.section-heading {
  max-width: 720px;
}

.feature-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
}

.feature-grid article,
.pricing-card,
.trust,
.legal-card,
.simple-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(34, 39, 52, 0.06);
}

.feature-grid article {
  padding: 22px;
}

.feature-grid p,
.pricing p,
.trust p,
.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.65;
}

.pricing {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: 0.9fr 1.1fr;
}

.pricing-card {
  padding: 28px;
}

.price-line {
  align-items: baseline;
  display: flex;
  gap: 9px;
  margin-bottom: 18px;
}

.price-line strong {
  font-size: 48px;
  letter-spacing: -0.04em;
}

.price-line span {
  color: var(--muted);
  font-weight: 800;
}

ul {
  display: grid;
  gap: 10px;
  margin: 0 0 20px;
  padding-left: 20px;
}

.trust {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 34px;
  padding: 30px;
}

.trust div {
  max-width: 720px;
}

footer {
  align-items: center;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  gap: 16px;
  justify-content: center;
  padding: 34px 24px 44px;
}

footer a {
  font-weight: 800;
}

.legal-page,
.simple-page {
  margin: 0 auto;
  max-width: 860px;
  padding: 48px 24px 80px;
}

.legal-card,
.simple-card {
  padding: 34px;
}

.legal-card h1 {
  font-size: clamp(38px, 6vw, 58px);
}

.legal-card h2 {
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-top: 28px;
}

.simple-page {
  align-items: center;
  display: flex;
  min-height: 100vh;
}

.simple-card {
  text-align: center;
}

.simple-card img {
  border-radius: 22px;
  height: 76px;
  margin-bottom: 24px;
  width: 76px;
}

.simple-card h1 {
  font-size: clamp(36px, 6vw, 58px);
}

.simple-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

@media (max-width: 820px) {
  .site-header,
  .hero,
  .pricing,
  .trust {
    display: block;
  }

  nav {
    flex-wrap: wrap;
    margin-top: 18px;
  }

  .hero {
    min-height: 0;
    padding-top: 28px;
  }

  .product-panel {
    margin-top: 34px;
  }

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

  .pricing-card {
    margin-top: 24px;
  }

  .trust .button {
    margin-top: 18px;
  }
}
