:root {
  --ground: #f6f8fb;
  --surface: #ffffff;
  --ink: #1b1f27;
  --ink-2: #4c5563;
  --ink-3: #7b8595;
  --rule: #1b1f2714;
  --teal: #17958d;
  --blue: #2e7cd6;
  --grad: linear-gradient(90deg, #2ec7bd, #479efa);
  --grad-logo: linear-gradient(90deg, #479efa, #7359f2);
  --shadow: 0 1px 2px #1b1f270a, 0 12px 32px -16px #1b1f2733;
}
@media (prefers-color-scheme: dark) {
  :root {
    --ground: #131519;
    --surface: #1d2027;
    --ink: #ebeef3;
    --ink-2: #a6aebc;
    --ink-3: #737d8d;
    --rule: #ebeef31a;
    --teal: #43d3c6;
    --blue: #6ba8f5;
    --shadow: 0 1px 2px #00000040, 0 12px 32px -16px #00000080;
  }
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font: 17px/1.6 -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--blue); }
a:focus-visible, button:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }
.wrap { max-width: 1040px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 720px; }

/* header */
.site-header { border-bottom: 1px solid var(--rule); background: var(--surface); }
.site-header .wrap { display: flex; align-items: center; gap: 28px; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
/* The icon PNG has Apple's transparent margin (824 of 1024 px is the shape), so
   it is drawn larger to keep the visible square at the intended size. */
.brand img { width: 40px; height: 40px; margin: -4px; }
.wordmark {
  font: 800 24px/1 -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
  letter-spacing: -0.03em;
  background: var(--grad-logo);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.site-nav { display: flex; gap: 22px; margin-left: auto; align-items: center; flex-wrap: wrap; }
.site-nav a { color: var(--ink-2); text-decoration: none; font-size: 15px; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--ink); }

/* buttons */
.btn {
  display: inline-block; border: 0; cursor: pointer; text-decoration: none;
  font: 600 16px/1 -apple-system, BlinkMacSystemFont, sans-serif;
  padding: 14px 26px; border-radius: 999px;
}
.btn-primary { background: var(--grad); color: #fff; }
.btn-primary:hover { filter: brightness(1.05); }
.btn-ghost { color: var(--ink); border: 1px solid var(--rule); background: var(--surface); }
.site-nav .btn { padding: 9px 18px; font-size: 14px; color: #fff; }

/* hero */
.hero { padding: 88px 0 64px; text-align: center; }
.hero img.icon { width: 140px; height: 140px; margin: -14px; }
.hero h1 {
  font: 800 clamp(40px, 6.5vw, 64px)/1.04 -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
  letter-spacing: -0.035em; margin: 28px auto 18px; max-width: 14ch; text-wrap: balance;
}
.hero p.lede { font-size: 21px; color: var(--ink-2); max-width: 36em; margin: 0 auto 32px; text-wrap: balance; }
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.fineprint { color: var(--ink-3); font-size: 14px; margin-top: 18px; }

/* features */
.section { padding: 56px 0; }
.section h2 {
  font: 700 32px/1.15 -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
  letter-spacing: -0.02em; margin: 0 0 12px; text-wrap: balance;
}
.section .sub { color: var(--ink-2); margin: 0 0 36px; max-width: 40em; }
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 18px; }
.feature { background: var(--surface); border: 1px solid var(--rule); border-radius: 18px; padding: 24px; }
.feature .glyph { font-size: 26px; line-height: 1; }
.feature h3 { font-size: 18px; margin: 14px 0 6px; }
.feature p { margin: 0; color: var(--ink-2); font-size: 15.5px; }

/* pricing */
.price-card {
  background: var(--surface); border: 1px solid var(--rule); border-radius: 22px;
  padding: 36px; box-shadow: var(--shadow); max-width: 460px; margin: 0 auto; text-align: center;
}
.price { font: 800 64px/1 -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif; letter-spacing: -0.03em; }
.price-note { color: var(--ink-2); margin: 8px 0 24px; }
.checklist { list-style: none; padding: 0; margin: 0 0 28px; text-align: left; }
.checklist li { padding: 7px 0 7px 30px; position: relative; border-top: 1px solid var(--rule); }
.checklist li:first-child { border-top: 0; }
.checklist li::before { content: "✓"; position: absolute; left: 4px; color: var(--teal); font-weight: 700; }
.faq dt { font-weight: 600; margin-top: 22px; }
.faq dd { margin: 6px 0 0; color: var(--ink-2); }

/* buy */
.status { margin-top: 24px; padding: 18px 20px; border-radius: 14px; background: var(--surface); border: 1px solid var(--rule); text-align: left; }
.status.success { border-color: var(--teal); }
[hidden] { display: none !important; }

/* legal */
.legal { padding: 48px 0 64px; }
.legal h1 { font: 800 38px/1.1 -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif; letter-spacing: -0.025em; }
.legal h2 { font-size: 21px; margin-top: 36px; }
.legal p, .legal li { color: var(--ink-2); }
.legal strong { color: var(--ink); }

/* footer */
.site-footer { border-top: 1px solid var(--rule); padding: 32px 0 48px; color: var(--ink-3); font-size: 14px; }
.site-footer .wrap { display: flex; flex-wrap: wrap; gap: 14px 28px; align-items: center; }
.site-footer nav { display: flex; gap: 20px; flex-wrap: wrap; margin-left: auto; }
.site-footer a { color: var(--ink-2); text-decoration: none; }
.site-footer a:hover { color: var(--ink); }
.btn:disabled { opacity: 0.45; cursor: not-allowed; filter: none; }
