:root {
  color-scheme: light;
  --ink: #121212;
  --muted: #5c5c5c;
  --line: #e7e7e7;
  --soft: #f6f6f6;
  --paper: #ffffff;
  --blue: #1d4ed8;
  --focus: #1d4ed8;
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.5;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 16px;
  top: -48px;
  background: #000;
  color: #fff;
  padding: 8px 12px;
  z-index: 10;
}

.skip:focus {
  top: 12px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgb(255 255 255 / 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-decoration: none;
  font-size: 1.05rem;
}

.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.logo-mark {
  flex: none;
  width: 40px;
  height: 36px;
}

.wordmark {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.045em;
  color: #0f0f0f;
}

.wordmark span {
  background: linear-gradient(90deg, #8fcb14, #b4ec2c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav {
  display: flex;
  gap: 22px;
  margin-right: auto;
}

.nav a {
  text-decoration: none;
  color: #2a2a2a;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav a[aria-current="page"] {
  color: #000;
  font-weight: 700;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.text-link {
  text-decoration: none;
  font-weight: 600;
  padding: 10px 14px;
  font-size: 0.95rem;
}

.button,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}

.button {
  background: #111;
  color: #fff;
}

.button:hover {
  background: #000;
}

.button-ghost {
  background: #fff;
  color: #111;
  box-shadow: inset 0 0 0 1px #d6d6d6;
}

.button-ghost:hover {
  background: var(--soft);
}

h1,
h2,
.plan-price,
.plan-name {
  letter-spacing: -0.04em;
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1.02;
  font-weight: 800;
}

.lede {
  margin: 0;
  max-width: 38rem;
  color: #3a3a3a;
  font-size: 1.15rem;
}

.section {
  padding: 72px 0;
}

.section h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.1;
}

.section-intro {
  margin: 0 0 28px;
  max-width: 40rem;
  color: #3a3a3a;
}

.prose p {
  margin: 0;
  color: #333;
}

.plans {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.plan {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px 16px 18px;
  display: flex;
  flex-direction: column;
  min-height: 230px;
  background: #fff;
}

.plan-top {
  background: #111;
  color: #fff;
  border-color: #111;
}

.plan .plan-name {
  margin: 0;
  color: inherit;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.1;
}

.plan p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.plan-top p {
  color: #cfcfcf;
}

.plan .plan-price {
  margin-top: auto;
  color: inherit;
  padding-top: 28px;
  font-size: 1.7rem;
  font-weight: 800;
}

.plan-price small {
  display: block;
  margin-top: 2px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--muted);
}

.plan-top .plan-price small {
  color: #cfcfcf;
}

.included {
  margin-top: 22px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.included h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.included ul {
  margin: 0;
  padding-left: 18px;
  columns: 2;
}

.included li {
  margin: 4px 0;
}

.note {
  margin-top: 18px;
  color: #333;
  max-width: 46rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 40px 0 28px;
  background: #fafafa;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 24px;
}

.footer-label {
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #666;
}

.site-footer a {
  display: block;
  text-decoration: none;
  margin: 6px 0;
}

.site-footer .brand {
  display: inline-flex;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-lead {
  margin: 12px 0 0;
  color: #444;
  max-width: 24rem;
}

.footer-bottom {
  margin-top: 28px;
  color: #777;
  font-size: 0.88rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom .disclaimer {
  margin-top: 10px;
  max-width: 60rem;
  font-size: 0.8rem;
  line-height: 1.5;
}

.page-hero {
  padding: 56px 0 12px;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
}

.prose {
  width: min(760px, 100%);
  padding-bottom: 72px;
}

.prose h2 {
  margin: 36px 0 8px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.prose p,
.prose li {
  color: #242424;
}

.prose ul,
.prose ol {
  margin: 8px 0 0;
  padding-left: 20px;
}

.prose li + li {
  margin-top: 6px;
}

.updated {
  color: var(--muted);
  margin-top: 8px;
}

.contact-list {
  list-style: none;
  padding: 0;
}

.contact-list a {
  color: var(--blue);
}

@media (max-width: 980px) {
  .header-inner {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .nav {
    order: 3;
    width: 100%;
    gap: 16px;
    padding-bottom: 8px;
  }

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

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

  .included ul {
    columns: 1;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(1120px, calc(100% - 28px));
  }

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

  .header-actions .text-link {
    display: none;
  }
}
