:root {
  color-scheme: light;
  --ink: #13221d;
  --muted: #596962;
  --line: #d9e5de;
  --paper: #fffdf8;
  --soft: #eef6f1;
  --teal: #197a67;
  --teal-dark: #105848;
  --amber: #d8982d;
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  padding: 22px 0;
}

.brand {
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration: none;
}

nav,
.site-footer {
  color: var(--muted);
  font-size: 14px;
}

nav {
  display: flex;
  gap: 18px;
}

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

main {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 40px;
  align-items: center;
  padding: 80px 0 64px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: .96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.lede {
  max-width: 680px;
  color: var(--muted);
  font-size: 19px;
}

.actions {
  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: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
}

.button.primary {
  border-color: var(--teal);
  background: var(--teal);
  color: white;
}

.button.secondary {
  background: white;
  color: var(--teal-dark);
}

.status-card,
.feature-grid article,
.price-card,
.notice {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 50px rgba(25, 122, 103, .08);
}

.status-card {
  padding: 24px;
}

.status-card span,
.price-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.status-card strong,
.status-card b {
  display: block;
}

.status-card strong {
  margin-top: 8px;
  font-size: 30px;
}

.status-card b {
  color: var(--teal-dark);
  font-size: 58px;
  line-height: 1;
}

.status-card p,
.feature-grid p,
.price-card p,
.notice p,
.legal p {
  color: var(--muted);
}

.section {
  padding: 56px 0;
  border-top: 1px solid var(--line);
}

.section-head {
  max-width: 720px;
  margin-bottom: 24px;
}

.feature-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

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

.price-card strong {
  display: block;
  margin: 8px 0 10px;
  font-size: 44px;
  line-height: 1;
}

.price-card.highlighted {
  border-color: rgba(25, 122, 103, .38);
  background: var(--soft);
}

.notice {
  margin-bottom: 48px;
  padding: 24px;
  border-left: 4px solid var(--amber);
}

.legal {
  max-width: 820px;
  padding: 56px 0;
}

.legal h1 {
  font-size: clamp(40px, 6vw, 64px);
}

.legal h2 {
  margin-top: 28px;
  font-size: 24px;
}

.site-footer {
  padding: 24px 0 36px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
  justify-content: flex-start;
}

@media (max-width: 860px) {
  .hero,
  .feature-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 44px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }
}
