:root {
  color-scheme: light;
  --bg: #f7f6f2;
  --surface: #ffffff;
  --ink: #141820;
  --muted: #5e6673;
  --line: #d9dce3;
  --blue: #168bff;
  --blue-dark: #0b5fb7;
  --gold: #d69b2b;
  --gold-soft: #fff4d9;
  --dark: #11151c;
  --dark-muted: #c7ced8;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header,
.site-footer,
.hero,
.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  object-fit: cover;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 6px;
  background: var(--dark);
  color: #fff;
  font-size: 13px;
  letter-spacing: 0;
}

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

.nav a,
.site-footer a {
  text-decoration: none;
}

.nav a:hover,
.site-footer a:hover {
  color: var(--blue-dark);
}

.hero {
  padding: 54px 0 44px;
}

.hero-logo {
  width: 132px;
  height: 132px;
  border-radius: 8px;
  object-fit: cover;
}

.hero h1 {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: clamp(52px, 8vw, 92px);
  line-height: 0.98;
  letter-spacing: 0;
}

.eyebrow {
  margin: 22px 0 0;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.lead {
  max-width: 780px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 20px;
}

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

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

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

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

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.76);
}

.button.full {
  width: 100%;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 800px;
  margin: 40px 0 0;
}

.facts div {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.facts dt {
  color: var(--muted);
  font-size: 13px;
}

.facts dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.section {
  padding: 68px 0;
}

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

.section h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p:last-child {
  margin: 14px 0 0;
  color: var(--muted);
}

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

.plan-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 418px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 28px;
}

.plan-card.featured {
  border-color: rgba(22, 139, 255, 0.48);
}

.badge {
  width: fit-content;
  margin: 0;
  border-radius: 999px;
  background: #e9f3ff;
  color: var(--blue-dark);
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 800;
}

.plan-card h3 {
  margin: 0;
  font-size: 26px;
}

.price {
  margin: 0;
  font-size: 42px;
  font-weight: 850;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
}

.plan-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-card li {
  border-top: 1px solid var(--line);
  padding: 10px 0;
}

.band {
  width: 100%;
  max-width: none;
  background: var(--dark);
  color: #fff;
  padding-inline: max(16px, calc((100% - 1120px) / 2));
}

.band .eyebrow,
.band p {
  color: var(--dark-muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(1120px, 100%);
}

.steps article {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 24px;
}

.steps span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  font-weight: 850;
}

.steps h3 {
  margin: 20px 0 8px;
}

.details {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 32px;
  align-items: start;
}

.details.compact p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 24px;
  color: var(--ink);
}

.check-list li::marker {
  color: var(--blue-dark);
  font-weight: 800;
}

.check-list a {
  color: var(--blue-dark);
  font-weight: 750;
}

.note {
  grid-column: 2;
  margin: 6px 0 0;
  border-left: 4px solid var(--gold);
  background: var(--gold-soft);
  padding: 14px 16px;
  color: #6c4810;
}

.faq {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

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

.site-footer p {
  margin: 6px 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.legal-page {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 46px 0 80px;
}

.legal-page h1 {
  margin: 0 0 20px;
  font-size: clamp(38px, 6vw, 56px);
  line-height: 1.05;
  letter-spacing: 0;
}

.legal-page h2 {
  margin: 32px 0 10px;
  font-size: 24px;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
}

.legal-page section {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.notice {
  border: 1px solid #ddb67c;
  border-radius: 8px;
  background: var(--gold-soft);
  padding: 16px;
  color: #6c4810;
}

@media (max-width: 820px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav,
  .site-footer nav {
    justify-content: flex-start;
  }

  .plans,
  .steps,
  .details {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 32px;
  }

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

  .note {
    grid-column: 1;
  }
}

@media (max-width: 420px) {
  .site-header,
  .site-footer,
  .hero,
  .section,
  .legal-page {
    width: min(100% - 20px, 1120px);
  }

  .hero-logo {
    width: 96px;
    height: 96px;
  }

  .hero {
    padding-bottom: 24px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .facts {
    display: none;
  }

  .lead,
  .details.compact p {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .plan-card,
  .steps article {
    padding: 20px;
  }
}
