  :root {
    --bg: #14100d;
    --bg-soft: #1d1814;
    --bg-card: #221b16;
    --border: #332a22;
    --text: #f2e9df;
    --text-dim: #b3a393;
    --orange: #f97316;
    --orange-soft: #fb923c;
    --orange-glow: rgba(249, 115, 22, 0.15);
    --cream: #fdf3e3;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Inter, Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }
  .mono { font-family: "SF Mono", ui-monospace, Menlo, Consolas, monospace; }

  /* ---- layout ---- */
  .wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
  section { padding: 96px 0; }

  /* ---- nav ---- */
  nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(20,16,13,0.85); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }
  nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; }
  .logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 20px; text-decoration: none; color: var(--text); }
  .logo img { height: 34px; width: auto; }
  .nav-links { display: flex; align-items: center; gap: 28px; }
  .nav-links a { color: var(--text-dim); text-decoration: none; font-size: 15px; transition: color .15s; }
  .nav-links a:hover { color: var(--text); }
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--orange); color: #14100d; font-weight: 600;
    padding: 10px 20px; border-radius: 10px; text-decoration: none;
    font-size: 15px; border: none; cursor: pointer; transition: all .15s;
  }
  .btn:hover { background: var(--orange-soft); transform: translateY(-1px); }
  .btn-ghost {
    background: transparent; color: var(--text); border: 1px solid var(--border);
  }
  .btn-ghost:hover { border-color: var(--orange); color: var(--orange-soft); background: transparent; }

  /* ---- hero ---- */
  .hero { padding: 110px 0 90px; text-align: center; position: relative; overflow: hidden; }
  .hero::before {
    content: ""; position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
    width: 700px; height: 500px; background: radial-gradient(ellipse, var(--orange-glow), transparent 70%);
    pointer-events: none;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1px solid var(--border); border-radius: 999px;
    padding: 6px 16px; font-size: 13px; color: var(--text-dim);
    background: var(--bg-soft); margin-bottom: 28px;
  }
  .hero-fox { display: block; margin: 0 auto 32px; width: 150px; height: auto; filter: drop-shadow(0 12px 32px rgba(249,115,22,0.25)); animation: bob 4s ease-in-out infinite; }
  @keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
  .hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }
  .hero h1 {
    font-size: clamp(42px, 7vw, 72px); font-weight: 800; letter-spacing: -0.03em;
    line-height: 1.05; margin-bottom: 24px; position: relative;
  }
  .hero h1 em { font-style: normal; color: var(--orange); }
  .hero p.sub {
    font-size: clamp(17px, 2.2vw, 21px); color: var(--text-dim);
    max-width: 640px; margin: 0 auto 36px;
  }
  .hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
  .hero-install {
    margin-top: 44px; display: inline-block;
    background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px;
    padding: 14px 22px; font-size: 14.5px; color: var(--text-dim); position: relative;
  }
  .hero-install code { color: var(--cream); }
  .hero-install .prompt { color: var(--orange); user-select: none; }

  /* ---- principles strip ---- */
  .principles { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-soft); padding: 40px 0; }
  .principles .wrap { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
  .principle { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; }
  .principle .icon { font-size: 20px; line-height: 1.4; }
  .principle strong { display: block; font-size: 15px; }
  .principle span { color: var(--text-dim); font-size: 14px; }

  /* ---- features ---- */
  .section-head { text-align: center; margin-bottom: 60px; }
  .section-head .kicker { color: var(--orange); font-weight: 600; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 12px; }
  .section-head h2 { font-size: clamp(30px, 4.5vw, 44px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 14px; }
  .section-head p { color: var(--text-dim); font-size: 18px; max-width: 560px; margin: 0 auto; }

  .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
  .feature {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px;
    padding: 32px 28px; transition: border-color .2s, transform .2s;
  }
  .feature:hover { border-color: var(--orange); transform: translateY(-3px); }
  .feature .f-icon {
    width: 48px; height: 48px; border-radius: 12px; background: var(--orange-glow);
    display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 18px;
  }
  .feature h3 { font-size: 20px; margin-bottom: 10px; letter-spacing: -0.01em; }
  .feature p { color: var(--text-dim); font-size: 15px; }
  .feature .tag {
    display: inline-block; margin-top: 14px; font-size: 12px; font-weight: 600;
    color: var(--orange-soft); background: var(--orange-glow); padding: 3px 10px; border-radius: 999px;
  }

  /* ---- deadhand ---- */
  .deadhand { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .deadhand-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
  @media (max-width: 820px) { .deadhand-inner { grid-template-columns: 1fr; } }
  .deadhand h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 18px; }
  .deadhand p { color: var(--text-dim); font-size: 16.5px; margin-bottom: 16px; }
  .deadhand ul { list-style: none; margin-top: 22px; }
  .deadhand li { display: flex; gap: 12px; margin-bottom: 14px; color: var(--text-dim); font-size: 15.5px; }
  .deadhand li::before { content: "→"; color: var(--orange); flex-shrink: 0; }
  .switch-card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px;
    padding: 28px; font-size: 14.5px;
  }
  .switch-card .sc-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
  .switch-card .sc-title { font-weight: 700; font-size: 16px; }
  .status-ok { color: #4ade80; font-size: 13px; font-weight: 600; }
  .sc-row { display: flex; justify-content: space-between; padding: 10px 0; border-top: 1px solid var(--border); color: var(--text-dim); }
  .sc-row span:last-child { color: var(--cream); }
  .sc-bar { height: 6px; background: var(--border); border-radius: 3px; margin: 16px 0 8px; overflow: hidden; }
  .sc-bar-fill { height: 100%; width: 72%; background: linear-gradient(90deg, var(--orange), var(--orange-soft)); border-radius: 3px; }
  .sc-note { font-size: 12.5px; color: var(--text-dim); }

  /* ---- how it works ---- */
  .steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
  .step { padding: 28px; border: 1px solid var(--border); border-radius: 16px; background: var(--bg-card); }
  .step .num {
    font-size: 13px; font-weight: 700; color: var(--orange);
    border: 1px solid var(--orange); width: 28px; height: 28px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
  }
  .step h3 { font-size: 18px; margin-bottom: 8px; }
  .step p { color: var(--text-dim); font-size: 14.5px; }
  .step code { display: block; margin-top: 14px; background: var(--bg); border: 1px solid var(--border); padding: 10px 14px; border-radius: 8px; font-size: 13px; color: var(--cream); overflow-x: auto; white-space: nowrap; }

  /* ---- privacy callout ---- */
  .privacy-callout {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-soft));
    border: 1px solid var(--border); border-radius: 20px; padding: 56px;
    text-align: center;
  }
  .privacy-callout .big {
    font-size: clamp(24px, 3.5vw, 34px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 16px;
  }
  .privacy-callout .big em { font-style: normal; color: var(--orange); }
  .privacy-callout p { color: var(--text-dim); max-width: 620px; margin: 0 auto; font-size: 16.5px; }

  /* ---- roadmap ---- */
  .roadmap-list { max-width: 680px; margin: 0 auto; }
  .rm-item { display: flex; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--border); }
  .rm-item:last-child { border-bottom: none; }
  .rm-badge {
    flex-shrink: 0; width: 88px; text-align: center; font-size: 12.5px; font-weight: 700;
    padding: 5px 0; border-radius: 8px; height: fit-content;
  }
  .rm-now { background: var(--orange-glow); color: var(--orange-soft); }
  .rm-next { background: var(--bg-card); color: var(--text-dim); border: 1px solid var(--border); }
  .rm-later { background: var(--bg-card); color: var(--text-dim); border: 1px dashed var(--border); }
  .rm-item h4 { font-size: 16.5px; margin-bottom: 4px; }
  .rm-item p { color: var(--text-dim); font-size: 14.5px; }

  /* ---- waitlist ---- */
  .waitlist { text-align: center; }
  .waitlist-form {
    display: flex; gap: 12px; max-width: 460px; margin: 32px auto 0;
  }
  .waitlist-form input {
    flex: 1; background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px;
    padding: 12px 18px; color: var(--text); font-size: 15px; outline: none; transition: border-color .15s;
  }
  .waitlist-form input:focus { border-color: var(--orange); }
  .waitlist-form input::placeholder { color: var(--text-dim); }
  .waitlist-note { margin-top: 16px; font-size: 13.5px; color: var(--text-dim); }
  @media (max-width: 520px) { .waitlist-form { flex-direction: column; } }

  /* ---- footer ---- */
  footer { border-top: 1px solid var(--border); padding: 48px 0; }
  footer .wrap { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
  footer .f-left { display: flex; align-items: center; gap: 10px; color: var(--text-dim); font-size: 14.5px; }
  footer .f-links { display: flex; gap: 24px; }
  footer .f-links a { color: var(--text-dim); text-decoration: none; font-size: 14.5px; }
  footer .f-links a:hover { color: var(--orange-soft); }
/* ---- classes replacing inline style attributes ----
   Extracted so the Content-Security-Policy can stay at style-src 'self' with
   no 'unsafe-inline'. Inline style="" attributes are blocked by that policy,
   so leaving them in place would have silently broken the layout in
   production while looking fine on a local file:// preview. */
.hero-install-note { font-size: 12.5px; margin-top: 6px; }
.section-flush { padding-top: 0; }
.section-head-flush { margin-bottom: 0; }
.link-orange { color: var(--orange-soft); }
.f-mark { height: 26px; width: auto; }

/* The kicker inside Deadhand previously repeated the .section-head .kicker
   rules inline because it sits outside a .section-head. */
.kicker-standalone {
  color: var(--orange);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ---- waitlist form additions ---- */

/* Clipped, not display:none — a bot that skips hidden fields would sail past
   it. Deliberately not named company/organization: password managers autofill
   those, which would silently drop real signups. */
.hp-field {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.waitlist-note.is-success { color: #4ade80; }
.waitlist-note.is-error { color: #fb7185; }
.waitlist-form input:disabled,
.waitlist-form button:disabled { opacity: .6; cursor: default; }

/* ---- accessibility ---- */

:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

.skip { position: absolute; left: -9999px; }
.skip:focus {
  left: 16px; top: 16px; z-index: 100;
  background: var(--bg-card); color: var(--text);
  padding: 10px 16px; border: 1px solid var(--border); border-radius: 10px;
}

/* The hero fox bobs and the status dot pulses. Both are decorative, and
   vestibular disorders make continuous motion genuinely unpleasant. */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-fox { animation: none; }
}

/* ---- responsive fixes ---- */

/* The nav's five inline links forced the document to ~560px wide on a 390px
   phone, so the whole page scrolled sideways. Drop the section links below the
   fold — they are all reachable by scrolling — and keep the wordmark and the
   one CTA that matters. No hamburger, no JavaScript. */
@media (max-width: 760px) {
  .nav-links { gap: 16px; }
  .nav-links a:not(.btn) { display: none; }
  .btn { padding: 9px 16px; font-size: 14px; }
  .logo { font-size: 18px; }
  .logo img { height: 28px; }
}

/* Commands must never be cut off: a half-visible install line is worse than a
   wrapped one, because people copy what they can see. */
.step code,
.hero-install code {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

@media (max-width: 560px) {
  .hero { padding: 72px 0 64px; }
  section { padding: 64px 0; }
  .hero-install { display: block; margin-left: 0; margin-right: 0; text-align: left; }
  .privacy-callout { padding: 36px 24px; }
  .rm-item { flex-direction: column; gap: 12px; }
  .rm-badge { width: auto; align-self: flex-start; padding: 5px 12px; }
  footer .wrap { flex-direction: column; align-items: flex-start; }
}
