/* AuthentiCat site — shared styles. Follows the OS light/dark setting.
   The cat masks are inlined as data URIs (copies of assets/cat-open.svg and cat-closed.svg)
   so they also work when the page is opened straight from disk. */
:root {
  color-scheme: light dark;
  --bg: #fbfbfa;
  --fg: #1d1d1f;
  --muted: #6e6e73;
  --faint: #86868b;
  --line: rgba(0, 0, 0, 0.12);
  --line-soft: rgba(0, 0, 0, 0.08);
  --accent: #8f6300;
  --btn-bg: #1d1d1f;
  --btn-fg: #fbfbfa;
  --nav-bg: rgba(251, 251, 250, 0.8);
  --card: #ffffff;
  --stage: radial-gradient(ellipse at 80% 0%, #f6dfa6 0%, transparent 55%),
           radial-gradient(ellipse at 0% 100%, #cfd6e6 0%, transparent 60%), #ece9e3;
  --panel: #2b2f3a;
  --gold: #f2c14e;
  --ph-bg: #fff1c2;
  --ph-fg: #6b4a00;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, monospace;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #111214;
    --fg: #f5f5f7;
    --muted: #a1a1a6;
    --faint: #7c7c82;
    --line: rgba(255, 255, 255, 0.14);
    --line-soft: rgba(255, 255, 255, 0.1);
    --accent: #f2c14e;
    --btn-bg: #f5f5f7;
    --btn-fg: #1d1d1f;
    --nav-bg: rgba(17, 18, 20, 0.8);
    --card: #1a1b1f;
    --stage: radial-gradient(ellipse at 80% 0%, #3b3322 0%, transparent 55%),
             radial-gradient(ellipse at 0% 100%, #1f2638 0%, transparent 60%), #17181c;
    --ph-bg: #4a3a0f;
    --ph-fg: #ffe28a;
  }
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 64px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
a:hover { opacity: 0.75; }
p a, dd a, li a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
img { max-width: 100%; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.wrap-text { max-width: 760px; margin: 0 auto; padding: 0 24px; }

/* Placeholders: obvious on purpose. Search the source for class="ph" before launch. */
.ph {
  background: var(--ph-bg);
  color: var(--ph-fg);
  border-radius: 4px;
  padding: 0 4px;
  font-weight: 600;
}

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 20;
  background: var(--nav-bg);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner { height: 52px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15px; }
.brand img { width: 26px; height: 26px; }
.nav-links { display: flex; align-items: center; gap: 24px; font-size: 13px; color: var(--muted); }
.nav-links .links { display: flex; gap: 24px; }
@media (max-width: 720px) { .nav-links .links { display: none; } }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--btn-bg); color: var(--btn-fg);
  padding: 14px 26px; border-radius: 980px;
  font-size: 17px; font-weight: 500; white-space: nowrap;
}
.btn-sm { padding: 6px 14px; font-size: 13px; }
.btn svg { width: 18px; height: 18px; fill: currentColor; }
.link-accent { color: var(--accent); font-size: 17px; font-weight: 500; padding: 14px 4px; white-space: nowrap; }

.eyebrow { font-size: 15px; font-weight: 600; color: var(--accent); margin: 0 0 18px; }

/* Hero */
.hero {
  padding-top: 64px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  gap: 56px; align-items: stretch;
}
.hero-copy { display: flex; flex-direction: column; padding-top: 8px; }
.hero h1 {
  margin: 0; font-size: clamp(42px, 5.4vw, 68px); line-height: 1.02;
  letter-spacing: -0.04em; font-weight: 700; text-wrap: balance;
}
.hero .lede {
  margin: 26px 0 32px; max-width: 500px;
  font-size: clamp(18px, 1.8vw, 20px); line-height: 1.45; color: var(--muted); text-wrap: pretty;
}
.cta-row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.price-line { margin: 16px 0 0; font-size: 14px; color: var(--muted); }
.price-line strong { color: var(--fg); font-weight: 600; }
.req { margin: 6px 0 0; font-size: 13px; color: var(--faint); }

/* Menu bar demo */
.stage {
  position: relative; min-height: 560px; border-radius: 22px; overflow: hidden;
  background: var(--stage);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.3);
}
.menubar {
  height: 30px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 14px; font-size: 13px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
}
@media (prefers-color-scheme: dark) { .menubar { background: rgba(20, 21, 24, 0.55); } }
.menubar .left { display: flex; gap: 20px; align-items: center; overflow: hidden; white-space: nowrap; min-width: 0; }
.menubar .left .apple { flex: none; width: 13px; height: 13px; border-radius: 50%; background: currentColor; }
.menubar .left b { font-weight: 600; }
.menubar .right { display: flex; gap: 18px; align-items: center; flex: none; padding-left: 16px; white-space: nowrap; }
.battery { width: 22px; height: 11px; border: 1.5px solid currentColor; border-radius: 3px; opacity: 0.85; }
@media (max-width: 520px) { .menubar .hide-sm { display: none; } }

.cat-btn {
  width: 32px; height: 22px; border: 0; border-radius: 6px; cursor: pointer;
  display: grid; place-items: center; color: inherit; background: transparent;
}
.cat-btn[aria-expanded="true"] { background: rgba(127, 127, 127, 0.25); }
.cat-glyph {
  width: 17px; height: 17px; background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='-60 -60 120 120'%3E%3Cpath fill='black' fill-rule='evenodd' d='M -50 -10 L -48 -55 L -18 -35 Q 0 -40 18 -35 L 48 -55 L 50 -10 Q 55 45 0 50 Q -55 45 -50 -10 Z M -26.8 -7.6 A 8 8 0 1 1 -17.2 -7.6 L -14 8 L -30 8 Z M 17.2 -7.6 A 8 8 0 1 1 26.8 -7.6 L 30 8 L 14 8 Z M -5 18 L 5 18 L 0 24 Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='-60 -60 120 120'%3E%3Cpath fill='black' fill-rule='evenodd' d='M -50 -10 L -48 -55 L -18 -35 Q 0 -40 18 -35 L 48 -55 L 50 -10 Q 55 45 0 50 Q -55 45 -50 -10 Z M -26.8 -7.6 A 8 8 0 1 1 -17.2 -7.6 L -14 8 L -30 8 Z M 17.2 -7.6 A 8 8 0 1 1 26.8 -7.6 L 30 8 L 14 8 Z M -5 18 L 5 18 L 0 24 Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.cat-glyph.blink {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='-60 -60 120 120'%3E%3Cpath fill='black' fill-rule='evenodd' d='M -50 -10 L -48 -55 L -18 -35 Q 0 -40 18 -35 L 48 -55 L 50 -10 Q 55 45 0 50 Q -55 45 -50 -10 Z M -31 -2 Q -22 8 -13 -2 Q -22 3 -31 -2 Z M 13 -2 Q 22 8 31 -2 Q 22 3 13 -2 Z M -5 18 L 5 18 L 0 24 Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='-60 -60 120 120'%3E%3Cpath fill='black' fill-rule='evenodd' d='M -50 -10 L -48 -55 L -18 -35 Q 0 -40 18 -35 L 48 -55 L 50 -10 Q 55 45 0 50 Q -55 45 -50 -10 Z M -31 -2 Q -22 8 -13 -2 Q -22 3 -31 -2 Z M 13 -2 Q 22 8 31 -2 Q 22 3 13 -2 Z M -5 18 L 5 18 L 0 24 Z'/%3E%3C/svg%3E");
}

.popover {
  position: absolute; top: 36px; right: min(48px, 4%);
  width: 360px; max-width: calc(100% - 24px);
  background: rgba(246, 246, 247, 0.88);
  backdrop-filter: blur(30px) saturate(180%); -webkit-backdrop-filter: blur(30px) saturate(180%);
  border-radius: 14px; border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 24px 60px -16px rgba(0, 0, 0, 0.4);
  overflow: hidden; text-align: left;
}
@media (prefers-color-scheme: dark) {
  .popover { background: rgba(38, 40, 46, 0.88); border-color: rgba(255, 255, 255, 0.1); }
}
.popover[hidden] { display: none; }
.pop-head { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px 10px; font-size: 14px; font-weight: 700; }
.switch { width: 38px; height: 22px; border-radius: 11px; background: #0a84ff; position: relative; }
.switch::after { content: ""; position: absolute; right: 2px; top: 2px; width: 18px; height: 18px; border-radius: 50%; background: #fff; }
.pop-rule { margin: 0 12px; border-top: 1px solid var(--line-soft); }
.pop-search { padding: 10px 12px 6px; }
.pop-search input {
  width: 100%; border: 1px solid var(--line-soft); outline: 0;
  background: rgba(127, 127, 127, 0.08); border-radius: 7px; padding: 6px 10px;
  font: inherit; font-size: 13px; color: inherit;
}
.pop-list { padding: 2px 6px 6px; display: flex; flex-direction: column; }
.acct {
  display: flex; align-items: center; gap: 12px; padding: 9px 10px;
  border: 0; background: transparent; border-radius: 9px; cursor: pointer;
  text-align: left; font: inherit; color: inherit; width: 100%;
}
.acct:hover { background: rgba(127, 127, 127, 0.12); }
.acct[hidden] { display: none; }
.acct .avatar {
  width: 30px; height: 30px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-size: 12px; font-weight: 700;
  background: #d9d9dc; color: #1d1d1f;
}
@media (prefers-color-scheme: dark) { .acct .avatar { background: #5a5c63; color: #f5f5f7; } }
.acct .who { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.acct .who b { font-size: 13px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.acct .who span { font-size: 11px; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.acct .code { font-family: var(--mono); font-size: 17px; font-weight: 700; white-space: nowrap; }
.acct .code.expiring { color: #ff453a; }
.acct .copied { font-size: 13px; font-weight: 700; color: #0a84ff; }
.ring {
  width: 22px; height: 22px; border-radius: 50%; flex: none; display: grid; place-items: center;
  background: conic-gradient(var(--ring, #0a84ff) var(--pct, 100%), rgba(127, 127, 127, 0.25) 0);
}
.ring span {
  width: 18px; height: 18px; border-radius: 50%; display: grid; place-items: center;
  font-size: 9px; font-weight: 700; background: #f4f4f5;
}
@media (prefers-color-scheme: dark) { .ring span { background: #2a2c32; } }
.pop-empty { padding: 18px; text-align: center; font-size: 13px; color: var(--muted); }
.pop-actions { padding: 6px 6px 8px; display: flex; flex-direction: column; }
.pop-actions div { display: flex; align-items: center; gap: 12px; padding: 7px 10px; font-size: 13px; font-weight: 600; }
.pop-actions i {
  width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(127, 127, 127, 0.18); font-style: normal; font-size: 16px; font-weight: 400;
}
.demo-col { display: flex; flex-direction: column; min-width: 0; }
.demo-col .stage { flex: 1; }
.stage-hint { margin: 12px 4px 0; font-size: 13px; color: var(--faint); }

/* Sections */
section { scroll-margin-top: 64px; }
.section { padding-top: 150px; }
.h2 { margin: 0; font-size: clamp(36px, 4.5vw, 56px); line-height: 1.02; letter-spacing: -0.04em; font-weight: 700; text-wrap: balance; }
.h2 span { display: block; }
.sub { margin: 18px 0 0; max-width: 520px; font-size: 18px; line-height: 1.5; color: var(--muted); }

.import-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); gap: 64px; align-items: center; }
.illo { border-radius: 24px; background: var(--stage); aspect-ratio: 1 / 1; display: grid; place-items: center; overflow: hidden; }
.illo svg { width: 88%; height: auto; }
.steps { list-style: none; margin: 32px 0 0; padding: 0; border-top: 1px solid var(--line); counter-reset: step; }
.steps li {
  display: grid; grid-template-columns: 48px minmax(0, 1fr); padding: 20px 0;
  border-bottom: 1px solid var(--line); font-size: 18px; line-height: 1.45;
}
.steps li::before { counter-increment: step; content: counter(step); font-size: 17px; font-weight: 700; color: var(--faint); }
.steps small { display: block; margin-top: 6px; font-size: 15px; color: var(--muted); }
.note { margin: 20px 0 0; font-size: 15px; color: var(--muted); }

.ccp { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.ccp > div { padding: 32px 32px 0; display: flex; flex-direction: column; gap: 14px; border-left: 1px solid var(--line); }
.ccp > div:first-child { padding-left: 0; border-left: 0; }
.ccp > div:last-child { padding-right: 0; }
.ccp .word { font-size: clamp(40px, 7vw, 88px); font-weight: 700; letter-spacing: -0.05em; line-height: 1; }
.ccp .word.gold { color: var(--accent); }
.ccp p { margin: 0; font-size: 17px; color: var(--muted); }
.ccp-foot { margin: 40px 0 0; font-size: 15px; color: var(--muted); }
@media (max-width: 640px) {
  .ccp { grid-template-columns: 1fr; }
  .ccp > div { padding: 28px 0 0; border-left: 0; }
}

.panel { background: var(--panel); color: #f5f5f7; border-radius: 28px; padding: clamp(36px, 7vw, 80px); }
.panel-head { display: flex; align-items: center; gap: clamp(20px, 4vw, 40px); }
.panel-head .mark {
  flex: none; width: clamp(64px, 11vw, 129px); aspect-ratio: 129 / 113; background: var(--gold);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='-60 -60 120 120'%3E%3Cpath fill='black' fill-rule='evenodd' d='M -50 -10 L -48 -55 L -18 -35 Q 0 -40 18 -35 L 48 -55 L 50 -10 Q 55 45 0 50 Q -55 45 -50 -10 Z M -26.8 -7.6 A 8 8 0 1 1 -17.2 -7.6 L -14 8 L -30 8 Z M 17.2 -7.6 A 8 8 0 1 1 26.8 -7.6 L 30 8 L 14 8 Z M -5 18 L 5 18 L 0 24 Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='-60 -60 120 120'%3E%3Cpath fill='black' fill-rule='evenodd' d='M -50 -10 L -48 -55 L -18 -35 Q 0 -40 18 -35 L 48 -55 L 50 -10 Q 55 45 0 50 Q -55 45 -50 -10 Z M -26.8 -7.6 A 8 8 0 1 1 -17.2 -7.6 L -14 8 L -30 8 Z M 17.2 -7.6 A 8 8 0 1 1 26.8 -7.6 L 30 8 L 14 8 Z M -5 18 L 5 18 L 0 24 Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.panel h2 { margin: 0; font-size: clamp(30px, 4.4vw, 56px); line-height: 1.06; letter-spacing: -0.03em; font-weight: 700; }
.facts { margin-top: 56px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px 40px; }
@media (max-width: 820px) { .facts { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 480px) { .facts { grid-template-columns: 1fr; } }
.facts h3 { margin: 0 0 8px; font-size: 18px; font-weight: 600; color: var(--gold); }
.facts p { margin: 0; font-size: 15px; line-height: 1.5; color: #b4b6bd; }

.pricing { text-align: center; }
.pricing .h2 { margin: 0 auto; }
.price-points { margin: 48px auto 0; max-width: 900px; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr)); gap: 32px; text-align: left; }
.price-points h3 { margin: 0 0 8px; font-size: 19px; font-weight: 600; }
.price-points p { margin: 0; font-size: 16px; color: var(--muted); }

/* FAQ */
.faq h2 { margin: 0 0 28px; font-size: clamp(30px, 3.6vw, 40px); letter-spacing: -0.025em; font-weight: 700; }
.faq-list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 22px 0; font-size: 19px; font-weight: 600;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 22px; font-weight: 300; color: var(--faint); }
.faq details[open] summary::after { content: "\2212"; }
.faq summary h3 { margin: 0; font-size: inherit; font-weight: inherit; }
.faq details p { margin: 0; padding: 0 0 24px; max-width: 640px; font-size: 17px; line-height: 1.55; color: var(--muted); }

/* Download */
.download { padding: 160px 24px 120px; text-align: center; }
.download img { width: 112px; height: 112px; display: block; margin: 0 auto 28px; }
.download h2 { margin: 0; font-size: clamp(38px, 5vw, 60px); line-height: 1.04; letter-spacing: -0.035em; font-weight: 700; }
.download .cta-row { justify-content: center; margin-top: 32px; }

/* Footer */
.footer { border-top: 1px solid var(--line-soft); }
.footer-inner { padding: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12px; color: var(--faint); }
.footer-inner nav { display: flex; gap: 20px; flex-wrap: wrap; }

/* Long-form pages (About, Privacy) */
.doc { padding: 72px 0 40px; }
.doc h1 { margin: 0; font-size: clamp(40px, 5vw, 60px); line-height: 1.04; letter-spacing: -0.04em; font-weight: 700; }
.doc .lede { margin: 22px 0 0; font-size: 20px; line-height: 1.5; color: var(--muted); }
.doc h2 { margin: 72px 0 8px; font-size: clamp(28px, 3.4vw, 36px); letter-spacing: -0.025em; line-height: 1.1; font-weight: 700; }
.doc h3 { margin: 32px 0 6px; font-size: 20px; letter-spacing: -0.01em; font-weight: 600; }
.doc p, .doc li { font-size: 17px; line-height: 1.6; color: var(--muted); }
.doc p { margin: 0 0 12px; }
.doc ul { padding-left: 20px; margin: 12px 0 0; }
.doc li { margin: 6px 0; }
.doc strong { color: var(--fg); font-weight: 600; }
.person { display: grid; grid-template-columns: 112px minmax(0, 1fr); gap: 24px; align-items: start; margin-top: 24px; }
.person .photo {
  width: 112px; height: 112px; border-radius: 50%; display: grid; place-items: center; text-align: center;
  background: var(--ph-bg); color: var(--ph-fg); font-size: 12px; font-weight: 600; padding: 12px;
}
@media (max-width: 520px) { .person { grid-template-columns: 1fr; } }
.keyfacts { margin: 20px 0 0; border-top: 1px solid var(--line); }
.keyfacts div { display: grid; grid-template-columns: minmax(140px, 220px) minmax(0, 1fr); gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.keyfacts dt { font-size: 15px; font-weight: 600; }
.keyfacts dd { margin: 0; font-size: 15px; color: var(--muted); }
@media (max-width: 520px) { .keyfacts div { grid-template-columns: 1fr; gap: 4px; } }
.callout { margin-top: 20px; padding: 18px 20px; border-radius: 14px; background: var(--card); border: 1px solid var(--line-soft); }
.callout p:last-child { margin-bottom: 0; }

.skip { position: absolute; left: -9999px; top: 8px; z-index: 50; background: var(--btn-bg); color: var(--btn-fg); padding: 8px 14px; border-radius: 8px; }
.skip:focus { left: 8px; }

/* Added with the SEO restructure */
.how-title { margin-bottom: 24px; }
.crumbs { font-size: 13px; color: var(--faint); margin: 0 0 20px; }
.crumbs a { color: var(--muted); }
.doc .meta { font-size: 14px; color: var(--faint); margin-top: 14px; }
.toc { margin-top: 32px; }
.toc ul { margin: 6px 0 0; }
.toc li { margin: 4px 0; font-size: 16px; }
.steps-doc { margin-top: 16px; }
.steps-doc li { font-size: 17px; color: var(--muted); }
.steps-doc li strong { color: var(--fg); }
.table-wrap { overflow-x: auto; margin: 20px 0; }
table.errors { width: 100%; border-collapse: collapse; font-size: 15px; }
table.errors th, table.errors td { text-align: left; vertical-align: top; padding: 12px 12px 12px 0; border-bottom: 1px solid var(--line); }
table.errors thead th { font-size: 13px; color: var(--faint); font-weight: 600; }
table.errors tbody th { font-family: var(--mono); font-weight: 700; white-space: nowrap; }
table.errors td { color: var(--muted); }
table.errors td:nth-child(2) { color: var(--fg); min-width: 180px; }
table.errors tr:target { background: var(--ph-bg); }
@media (max-width: 560px) {
  table.errors thead { display: none; }
  table.errors tr { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); }
  table.errors th, table.errors td { display: block; border: 0; padding: 2px 0; }
}

/* Pre-launch waitlist */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.launch-note { margin: 0 0 16px; font-size: 15px; color: var(--muted); }
.launch-note strong { color: var(--fg); font-weight: 600; }
.waitlist { display: flex; gap: 10px; flex-wrap: wrap; max-width: 480px; }
.waitlist input[type=email] {
  flex: 1 1 220px; min-width: 0; font: inherit; font-size: 17px; color: var(--fg);
  background: var(--card); border: 1px solid var(--line); border-radius: 980px; padding: 13px 20px;
}
.waitlist input[type=email]:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.waitlist button { border: 0; cursor: pointer; font-family: inherit; }
.waitlist-center { margin: 32px auto 0; justify-content: center; }
.form-note { margin: 10px 0 0; font-size: 13px; color: var(--faint); }
.download .form-note { text-align: center; }
.download .launch-note { margin-top: 18px; }
.hero-more { margin: 14px 0 0; }
.hero-more .link-accent { padding: 0; }
.hero-more a { text-decoration: none; }
