:root {
  color-scheme: light;
  --ink: #141821;
  --muted: #596579;
  --line: #d8dee8;
  --panel: #ffffff;
  --paper: #f6f8fb;
  --blue: #1263ff;
  --green: #0d8a6a;
  --amber: #b7791f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 0 32px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  font-weight: 800;
  text-decoration: none;
  font-size: 20px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 15px;
}

nav a {
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  align-items: center;
  gap: 48px;
  min-height: calc(100vh - 68px);
  padding: 64px 32px 40px;
  background: #eef4ff;
  overflow: hidden;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
}

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

h1 {
  margin-bottom: 18px;
  font-size: 64px;
  line-height: 1;
  letter-spacing: 0;
}

.lead {
  max-width: 650px;
  color: #30394a;
  font-size: 21px;
  line-height: 1.48;
}

.hero-actions,
.center-action {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
}

.button.primary {
  color: #fff;
  background: var(--blue);
}

.button.secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}

.product-visual {
  margin: 0;
}

.product-visual img {
  display: block;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  filter: drop-shadow(0 22px 35px rgba(20, 24, 33, 0.18));
}

.band {
  padding: 72px 32px;
  background: #fff;
}

.band.muted {
  background: var(--paper);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-head h2,
.document h1 {
  margin-bottom: 12px;
  font-size: 36px;
  line-height: 1.15;
}

.section-head p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.feature-grid,
.plans {
  display: grid;
  max-width: 1120px;
  margin: 0 auto;
  gap: 16px;
}

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

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

.feature-grid article,
.plan {
  min-height: 170px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.feature-grid h3,
.plan h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.feature-grid p,
.plan p {
  color: var(--muted);
  line-height: 1.5;
}

.plan.highlight {
  border-color: #8bb5ff;
  box-shadow: inset 0 0 0 1px #8bb5ff;
}

.price {
  margin: 8px 0 12px;
  color: var(--ink) !important;
  font-size: 30px;
  font-weight: 800;
}

.center-action {
  justify-content: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e7f6f1;
  color: var(--green);
  font-weight: 800;
}

.steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.legal-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 1040px;
  margin: 0 auto;
}

.legal-links a {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #fff;
}

.site-footer p {
  margin: 0;
}

.document {
  max-width: 820px;
  min-height: calc(100vh - 140px);
  margin: 0 auto;
  padding: 56px 24px 72px;
  line-height: 1.65;
}

.document h2 {
  margin: 32px 0 8px;
  font-size: 22px;
}

.document p {
  color: #3d4758;
}

.doc-meta {
  color: var(--muted);
  font-size: 14px;
}

.document ul {
  padding-left: 22px;
  color: #3d4758;
}

.document li + li {
  margin-top: 8px;
}

.document table {
  width: 100%;
  margin: 18px 0 20px;
  border-collapse: collapse;
  overflow-wrap: anywhere;
}

.document th,
.document td {
  padding: 12px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.document th {
  background: #eef4ff;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  h1 {
    font-size: 48px;
  }

  .feature-grid,
  .plans,
  .steps,
  .legal-links {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 20px;
  }

  nav {
    gap: 12px;
    font-size: 14px;
  }

  .hero,
  .band {
    padding-left: 20px;
    padding-right: 20px;
  }

  h1 {
    font-size: 40px;
  }

  .lead {
    font-size: 18px;
  }

  .feature-grid,
  .plans,
  .steps,
  .legal-links {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    padding: 24px 20px;
  }
}
