:root {
  --ink: #1d1d27; --muted: #5c5c6e; --bg: #fbfaf8; --card: #ffffff;
  --brand-a: #4a54f2; --brand-b: #8f45e6; --line: #e8e6e1;
  --beta: #b45309; --beta-bg: #fef3c7;
}
@media (prefers-color-scheme: dark) {
  :root { --ink: #f2f1f6; --muted: #a3a1b0; --bg: #131318; --card: #1c1c24;
          --line: #2a2a34; --beta: #fbbf24; --beta-bg: #3a2e10; }
}
* { margin: 0; box-sizing: border-box; }
body {
  font: 17px/1.6 -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  color: var(--ink); background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
main { max-width: 720px; margin: 0 auto; padding: 0 24px 96px; }
main a:not(.cta) { color: var(--brand-a); }
@media (prefers-color-scheme: dark) { main a:not(.cta) { color: #8f96ff; } }
.hero { text-align: center; padding: 72px 0 56px; }
.hero img { width: 128px; height: 128px; }
h1 {
  font-size: 56px; line-height: 1.05; letter-spacing: -0.02em; margin: 18px 0 14px;
  background: linear-gradient(120deg, var(--brand-a), var(--brand-b));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: inline-block;
}
.beta-pill {
  display: inline-block; padding: 4px 14px; border-radius: 999px;
  background: var(--beta-bg); color: var(--beta); font-weight: 700; font-size: 13px;
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: 14px;
}
.tagline { font-size: 24px; font-weight: 600; margin-bottom: 10px; }
.sub { color: var(--muted); max-width: 560px; margin: 0 auto 30px; }
.cta {
  display: inline-block; padding: 14px 30px; border-radius: 12px; text-decoration: none;
  color: #fff; font-weight: 650; font-size: 18px;
  background: linear-gradient(120deg, var(--brand-a), var(--brand-b));
  box-shadow: 0 6px 24px rgba(94, 70, 235, .35);
}
.cta-note { display: block; margin-top: 12px; font-size: 14px; color: var(--muted); }
h2 { font-size: 28px; letter-spacing: -0.01em; margin: 72px 0 20px; }
h3 { font-size: 19px; margin: 34px 0 6px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 14px; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 20px; }
.card b { display: block; margin-bottom: 6px; font-size: 17px; }
.card p { font-size: 15px; color: var(--muted); }
.steps { counter-reset: step; }
.steps .card { position: relative; padding-left: 58px; margin-bottom: 12px; }
.steps .card::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 18px; top: 20px; width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(120deg, var(--brand-a), var(--brand-b)); color: #fff;
  font-weight: 700; font-size: 14px; display: grid; place-items: center;
}
.beta-box {
  background: var(--card); border: 1px solid var(--line); border-left: 4px solid var(--beta);
  border-radius: 14px; padding: 22px; margin-top: 8px;
}
.beta-box ul { margin: 10px 0 0 20px; color: var(--muted); font-size: 15px; }
.beta-box li { margin: 6px 0; }
/* Screenshots and the hero clip */
.shot { margin: 14px 0 0; }
.shot img, .shot video {
  display: block; width: 100%; height: auto; max-width: 100%;
  border: 1px solid var(--line); border-radius: 12px; background: var(--card);
}
.shot figcaption { font-size: 13px; color: var(--muted); margin-top: 8px; }
.shot-hero { margin: 32px auto 0; max-width: 720px; }
.shot-hero figcaption { text-align: center; }
/* Hidden until the media actually loads, so a missing file leaves no gap. */
.shot[hidden] { display: none; }

/* Beta signup form */
.signup {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  padding: 24px; margin-top: 14px; display: flex; flex-direction: column; gap: 16px;
}
.signup .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .signup .row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 14px; font-weight: 600; }
.field .req {
  font-weight: 500; font-size: 12px; color: var(--muted);
  text-transform: uppercase; letter-spacing: .05em; margin-left: 4px;
}
.signup input[type=text], .signup input[type=email], .signup select, .signup textarea {
  font: inherit; font-size: 16px; color: var(--ink); background: var(--bg);
  border: 1px solid var(--line); border-radius: 10px; padding: 11px 13px; width: 100%;
}
.signup textarea { resize: vertical; }
.signup input:focus-visible, .signup select:focus-visible, .signup textarea:focus-visible,
.signup button:focus-visible {
  outline: 2px solid var(--brand-a); outline-offset: 2px;
}
.check { display: flex; align-items: center; gap: 9px; font-size: 15px; color: var(--muted); }
.signup button.cta { border: 0; cursor: pointer; font-family: inherit; align-self: flex-start; }
.signup button.cta:disabled { opacity: .6; cursor: default; }
.formnote { font-size: 13px; color: var(--muted); margin: 0; }
/* Honeypot: off-screen for bots, gone for people and screen readers. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.thanks b { font-size: 19px; }
.thanks p { color: var(--muted); font-size: 15px; margin-top: 8px; }

.price {
  text-align: center; background: var(--card); border: 1px solid var(--line);
  border-radius: 18px; padding: 40px 24px; margin-top: 8px;
}
.price .amount { font-size: 54px; font-weight: 750; letter-spacing: -0.02em; }
.price .amount .strike { text-decoration: line-through; color: var(--muted); font-size: 30px; font-weight: 600; }
.price .amount span { font-size: 20px; font-weight: 500; color: var(--muted); }
.price ul { list-style: none; padding: 0; margin: 18px 0 26px; color: var(--muted); font-size: 15px; }
.price li { margin: 4px 0; }
details { border-bottom: 1px solid var(--line); padding: 14px 0; }
summary { font-weight: 600; cursor: pointer; }
details p { margin-top: 8px; color: var(--muted); font-size: 15px; }
code { font-size: 14px; background: var(--line); padding: 1px 6px; border-radius: 5px; }
footer { margin-top: 88px; font-size: 13px; color: var(--muted); text-align: center; }
footer a { color: var(--muted); }
.trademarks { margin-top: 14px; font-size: 12px; line-height: 1.5; opacity: .8; max-width: 620px;
  margin-left: auto; margin-right: auto; }
.fineprint { font-size: 13px; color: var(--muted); text-align: center; margin-top: 14px; }

/* Prose pages: terms, privacy, notices */
.page-header { display: flex; align-items: center; gap: 12px; padding: 28px 0 0; }
.page-header img { width: 40px; height: 40px; }
.page-header a { font-weight: 700; font-size: 18px; text-decoration: none;
  background: linear-gradient(120deg, var(--brand-a), var(--brand-b));
  -webkit-background-clip: text; background-clip: text; color: transparent; }
.prose h1 { font-size: 34px; margin: 44px 0 6px; -webkit-text-fill-color: currentColor;
  background: none; color: var(--ink); }
.prose .updated { color: var(--muted); font-size: 14px; margin-bottom: 28px; }
.prose h2 { font-size: 21px; margin: 34px 0 10px; }
.prose p, .prose li { font-size: 16px; margin: 10px 0; }
.prose ul { margin: 10px 0 10px 22px; }
.prose pre {
  font: 12px/1.5 ui-monospace, "SF Mono", Menlo, monospace; white-space: pre-wrap;
  background: var(--card); border: 1px solid var(--line); border-radius: 10px;
  padding: 16px; color: var(--muted); overflow-x: auto;
}
