/* InkTicker marketing site.
   EVERY page is body.stage — the app's always-dark "media surface" world.
   The prose pages (privacy/terms/support) originally followed the system
   theme (Linen by day), which meant clicking a footer link from the dark
   landing page threw you onto a white page; Daniel flagged it 2026-08-02 and
   they were switched to match. Tokens mirror
   inkticker-expo-app/constants/{theme,colors}.ts. */

:root {
  --accent: #2563eb;
  --accent-text: #ffffff;

  --bg: #f8f8f6;
  --surface: #ffffff;
  --text: #191917;
  --muted: #8a8984;
  --border: #ecebe7;

  /* media-surface tokens (never themed) */
  --stage: #0a0b0e;
  --board: #101218;
  --board-edge: #262a30;
  --stage-text: #f3f4f6;
  --stage-muted: #8a8f98;

  /* the app's ink presets */
  --ink-cream: #fff8e7;
  --ink-red: #e23b3b;
  --ink-amber: #f5a623;
  --ink-green: #27c46b;
  --ink-blue: #3b82f6;
  --ink-purple: #8b5cf6;
  --ink-pink: #ec4899;

  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-script: "Dancing Script", cursive;
  --font-ticker: "Baloo 2", system-ui, sans-serif;
  --font-hand: "Caveat", cursive;
  --font-wild: "Rock Salt", cursive;

  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0e0f12;
    --surface: #1a1c20;
    --text: #f3f4f6;
    --muted: #8a8f98;
    --border: #262a30;
    color-scheme: dark;
  }
}

/* the landing page is ALWAYS the night stage */
body.stage {
  --bg: var(--stage);
  --surface: var(--board);
  --text: var(--stage-text);
  --muted: var(--stage-muted);
  --border: #22252c;
  color-scheme: dark;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
body.stage a { color: #6b96f5; }

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

/* ---------- wordmark ---------- */

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  text-decoration: none !important;
  line-height: 1;
}

.wordmark .ink {
  font-family: var(--font-script);
  font-weight: 700;
  color: var(--accent);
}

body.stage .wordmark .ink { color: #5b8bf7; }

.wordmark .ticker {
  font-family: var(--font-ticker);
  font-weight: 700;
  color: var(--text);
}

/* the app's mark PNG is white-on-transparent; recolor with a mask,
   same trick as the app's tintColor */
.logo-mark {
  display: inline-block;
  background: var(--accent);
  -webkit-mask: url("../assets/logo-mark.png") no-repeat center / contain;
  mask: url("../assets/logo-mark.png") no-repeat center / contain;
}

/* ---------- nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}

.nav .wordmark .ink { font-size: 30px; }
.nav .wordmark .ticker { font-size: 24px; }

.nav-links { display: flex; align-items: center; gap: 26px; }

.nav-links a {
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.nav-links a:hover { color: var(--text); text-decoration: none; }

@media (max-width: 720px) {
  .nav-links a:not(.btn) { display: none; }
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.btn:hover { text-decoration: none; }

.btn-primary {
  background: var(--accent);
  color: var(--accent-text) !important;
  box-shadow: 0 0 24px color-mix(in srgb, var(--accent) 35%, transparent);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 40px color-mix(in srgb, var(--accent) 55%, transparent);
}

.btn .apple { width: 16px; height: 16px; fill: currentColor; translate: 0 -1px; }
.btn-lg { font-size: 17px; padding: 15px 30px; }

[data-appstore].coming-soon { cursor: default; }

.cta-note { font-size: 14px; color: var(--muted); margin-top: 14px; }

/* ---------- handwriting helpers ---------- */

.hand {
  font-family: var(--font-hand);
  font-weight: 600;
}

.note {
  font-family: var(--font-hand);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.25;
  color: var(--ink-amber);
  transform: rotate(-2deg);
}

.note.cool { color: var(--stage-muted); }

/* squiggly hand-drawn arrows */
.squiggle { stroke: currentColor; fill: none; stroke-width: 2.4; stroke-linecap: round; }

/* ---------- signs (boards + marquees) ---------- */

.board {
  --ink: var(--ink-cream);
  background: linear-gradient(180deg, #0e1015, #0a0b0e);
  border: 1px solid var(--board-edge);
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}

/* faint LED scanlines */
.board::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(255, 255, 255, 0.016) 3px 4px);
  border-radius: inherit;
}

/* inner vignette so ink looks lit, not printed */
.board::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.65);
  border-radius: inherit;
  z-index: 1;
}

.track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: marquee var(--dur, 24s) linear infinite;
}

.track.rev { animation-direction: reverse; }

.run {
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-family: var(--font-hand);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  text-shadow:
    0 0 14px color-mix(in srgb, var(--ink) 55%, transparent),
    0 0 46px color-mix(in srgb, var(--ink) 28%, transparent);
}

.run .sep {
  display: inline-block;
  width: 0.45em;
  height: 0.45em;
  margin: 0 0.85em;
  flex-shrink: 0;
  background: var(--accent);
  -webkit-mask: url("../assets/logo-mark.png") no-repeat center / contain;
  mask: url("../assets/logo-mark.png") no-repeat center / contain;
  filter: drop-shadow(0 0 10px color-mix(in srgb, var(--accent) 60%, transparent));
}

/* per-phrase ink colors inside one marquee */
.run i {
  font-style: normal;
  color: var(--ink);
  text-shadow:
    0 0 14px color-mix(in srgb, var(--ink) 55%, transparent),
    0 0 46px color-mix(in srgb, var(--ink) 28%, transparent);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* --- effect treatments (the app's actual effect list) --- */

.fx-pulse .run { animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

.fx-flicker .run { animation: flicker 4.2s linear infinite; }
@keyframes flicker {
  0%, 100% { opacity: 1; }
  3% { opacity: 0.3; }
  4% { opacity: 1; }
  7% { opacity: 0.55; }
  8% { opacity: 1; }
  38% { opacity: 1; }
  39% { opacity: 0.35; }
  40.5% { opacity: 1; }
  64% { opacity: 1; }
  65% { opacity: 0.6; }
  66% { opacity: 1; }
  67% { opacity: 0.25; }
  68% { opacity: 1; }
}

.fx-longshadow .run,
.fx-longshadow .run i {
  text-shadow:
    1px 1px 0 color-mix(in srgb, var(--ink) 34%, transparent),
    2px 2px 0 color-mix(in srgb, var(--ink) 30%, transparent),
    3px 3px 0 color-mix(in srgb, var(--ink) 26%, transparent),
    4px 4px 0 color-mix(in srgb, var(--ink) 22%, transparent),
    5px 5px 0 color-mix(in srgb, var(--ink) 18%, transparent),
    6px 6px 0 color-mix(in srgb, var(--ink) 14%, transparent),
    7px 7px 0 color-mix(in srgb, var(--ink) 10%, transparent),
    8px 8px 0 color-mix(in srgb, var(--ink) 7%, transparent),
    0 0 30px color-mix(in srgb, var(--ink) 25%, transparent);
}

.fx-wild .run { font-family: var(--font-wild); font-weight: 400; font-size: 0.62em; }

@media (prefers-reduced-motion: reduce) {
  .track, .fx-pulse .run, .fx-flicker .run { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- scroll reveal ---------- */

.fx { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fx.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .fx { opacity: 1; transform: none; transition: none; }
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  padding: 64px 0 56px;
  text-align: center;
}

/* cobalt light spill behind the big sign */
.hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 46%;
  width: min(900px, 90vw);
  height: 420px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, color-mix(in srgb, var(--accent) 16%, transparent), transparent 65%);
  pointer-events: none;
}

.hero h1 {
  position: relative;
  font-size: clamp(34px, 5.4vw, 56px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 21ch;
  margin: 0 auto;
}

.hero h1 .hand {
  font-family: var(--font-script);
  font-weight: 700;
  color: #5b8bf7;
  font-size: 1.16em;
  letter-spacing: 0;
  text-shadow: 0 0 30px color-mix(in srgb, var(--accent) 45%, transparent);
}

.hero .sub {
  position: relative;
  font-size: clamp(17px, 2.3vw, 20px);
  color: var(--muted);
  max-width: 46ch;
  margin: 18px auto 0;
}

.hero-sign {
  position: relative;
  margin: 48px auto 0;
  max-width: 960px;
}

.hero-sign .board {
  box-shadow:
    0 30px 90px -20px rgba(0, 0, 0, 0.8),
    0 0 80px -10px color-mix(in srgb, var(--accent) 18%, transparent);
}

.hero-sign .track { padding: clamp(30px, 5vw, 52px) 0; }
.hero-sign .run { font-size: clamp(46px, 7.4vw, 88px); }

.hero-annot {
  position: absolute;
  right: 3%;
  top: -44px;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  pointer-events: none;
}

.hero-annot .note { font-size: clamp(18px, 2.4vw, 24px); }
.hero-annot .squiggle { color: var(--ink-amber); margin-top: 22px; }

.hero-cta { position: relative; margin-top: 36px; }

/* ---------- sections ---------- */

section { padding: 60px 0; position: relative; }

.kicker {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5b8bf7;
  margin-bottom: 14px;
}

.section-head { text-align: center; margin-bottom: 32px; }

.section-head h2 {
  font-size: clamp(30px, 4.4vw, 46px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.section-head p { color: var(--muted); margin: 14px auto 0; max-width: 54ch; }

/* ---------- sign wall ---------- */

.wall { display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px 20px; }

.wall .spot { grid-column: span 3; min-width: 0; }
.wall .spot.s2 { grid-column: span 2; }

@media (max-width: 900px) {
  .wall .spot, .wall .spot.s2 { grid-column: span 6; }
}

.wall .board .track { padding: 24px 0; }
.wall .board .run { font-size: clamp(30px, 4vw, 44px); }

.wall .label {
  margin-top: 12px;
  font-family: var(--font-hand);
  font-weight: 600;
  font-size: 21px;
  color: var(--muted);
  text-align: left;
  padding-left: 8px;
  transform: rotate(-1deg);
}

.wall .label .plus {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #5b8bf7;
  border: 1px solid color-mix(in srgb, var(--accent) 45%, transparent);
  border-radius: 999px;
  padding: 1px 8px;
  margin-left: 8px;
  vertical-align: 3px;
}

/* the ten inks */
.inks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 44px;
  flex-wrap: wrap;
}

.inks .chip {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 0 16px -2px currentColor;
}

.inks .note { font-size: 24px; margin-left: 10px; }

/* A post mock in the X layout — the platform whose feed suits a landscape
   card and whose audience the launch targets. Deliberately WITHOUT the X
   logo (that's their trademark) and without like/repost counts (fabricated
   engagement is fake social proof). Handle is "@you": a placeholder, never a
   real person. */
.post {
  width: min(600px, 92vw);
  margin: 0 auto;
  background: var(--board);
  border: 1px solid var(--board-edge);
  border-radius: 18px;
  padding: 16px;
  text-align: left;
  box-shadow: 0 34px 80px -30px rgba(0, 0, 0, 0.95);
}

.post-head {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 12px;
}

.post-head .avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(150deg, #5b8bf7, #2b3550);
  flex-shrink: 0;
}

.post-head .who { font-size: 15px; font-weight: 700; color: var(--stage-text); }
.post-head .handle { font-weight: 400; color: var(--stage-muted); margin-left: 5px; }

/* platforms round the corners of an attached image; the exported PNG itself
   is square-cornered, so the rounding lives here, on the shell */
.post .share-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.post-actions {
  display: flex;
  justify-content: space-between;
  max-width: 300px;
  margin: 13px 2px 2px;
}

.post-actions svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--stage-muted);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.75;
}

/* ---------- share ----------
   Mirrors components/share-card.tsx in the app: the card IS the sign's
   surface — one flat fill, square corners, no frame, watermark drawn inside
   it. Constants are the app's, expressed as ratios of its 1080dp card width:
   h-pad 64, top-pad 78, bottom-pad 24, watermark margin 72 / mark 33 /
   "Ink" 29 / "Ticker" 24 / gap 7 / opacity 0.4. */

.share-card {
  max-width: 100%;
  /* NOTE: no % here — in font-size a percentage resolves against the parent
     font size, not the container width, which silently shrinks the type. */
  --cw: min(568px, 84vw);
  width: var(--cw);
  margin: 0 auto;
  background: #000;
  padding: calc(var(--cw) * 0.0722) calc(var(--cw) * 0.0593) calc(var(--cw) * 0.0222);
  text-align: center;
}

.share-card .still {
  /* the worker splits long text into BALANCED chunks (lib/chunk-text.ts
     minimizes the longest chunk), so rows come out near-even — not the
     browser's default greedy fill */
  text-wrap: balance;
  font-family: var(--font-hand);
  font-weight: 600;
  font-size: calc(var(--cw) * 0.072);
  line-height: 1.5;
  color: #fff;
  filter: drop-shadow(0 0 calc(var(--cw) * 0.0222) rgba(255, 255, 255, 0.85));
}

.share-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(var(--cw) * 0.0065);
  margin-top: calc(var(--cw) * 0.0667);
  opacity: 0.4;
}

.share-mark .logo-mark {
  width: calc(var(--cw) * 0.0306);
  height: calc(var(--cw) * 0.0306);
  background: #fff;
}

/* the exported card draws both words in one flat color, unlike the header */
.share-mark .wordmark .ink { color: #fff; font-size: calc(var(--cw) * 0.0269); }
.share-mark .wordmark .ticker { color: #fff; font-size: calc(var(--cw) * 0.0222); }

/* ---------- founder ---------- */

.founder-board {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(180deg, #0e1015, #0a0b0e);
  border: 1px solid color-mix(in srgb, var(--accent) 38%, var(--board-edge));
  border-radius: 28px;
  padding: clamp(32px, 5vw, 64px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 90px -30px color-mix(in srgb, var(--accent) 45%, transparent);
}

@media (max-width: 860px) {
  .founder-board { grid-template-columns: 1fr; text-align: center; }
}

.founder-board::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(255, 255, 255, 0.014) 3px 4px);
}

.founder-copy h2 {
  font-size: clamp(28px, 3.8vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.14;
}

.founder-copy .sub { color: var(--muted); margin-top: 14px; max-width: 46ch; }

.points-label {
  display: block;
  font-family: var(--font-hand);
  font-weight: 600;
  font-size: 20px;
  color: var(--ink-amber);
  margin: 24px 0 10px;
  transform: rotate(-1deg);
}

.founder-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 860px) { .founder-points { justify-content: center; } }

/* on a phone the copy column is ~230px, and full-size pills each claim a
   row — the cloud collapses into a list. Shrink them so they still flow. */
@media (max-width: 600px) {
  .founder-board { padding: 26px 20px; }
  .founder-points { gap: 6px; }
  .founder-points li { font-size: 12px; padding: 5px 11px; }
}

.founder-points li {
  border: 1px solid var(--board-edge);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 999px;
  padding: 6px 15px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--stage-text);
}

/* future pills: promised, not yet inked */
.founder-points.future li {
  border-style: dashed;
  border-color: color-mix(in srgb, var(--accent) 40%, var(--board-edge));
  background: transparent;
  color: color-mix(in srgb, var(--stage-text) 80%, transparent);
}

.founder-num { text-align: center; position: relative; }

.founder-num .no {
  font-size: clamp(58px, 7vw, 92px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #5b8bf7;
  /* cobalt core glow + a wide warm halo — the amber warmth the old
     handwritten notes used to lend this corner, minus the captions */
  text-shadow:
    0 0 24px color-mix(in srgb, var(--accent) 60%, transparent),
    0 0 90px color-mix(in srgb, var(--accent) 35%, transparent),
    0 0 60px color-mix(in srgb, var(--ink-amber) 50%, transparent),
    0 0 130px color-mix(in srgb, var(--ink-amber) 32%, transparent);
}

.founder-num .price { margin-top: 18px; font-size: 40px; font-weight: 800; }
.founder-num .price small { color: var(--stage-muted); font-weight: 600; font-size: 18px; }

/* ---------- pricing ---------- */

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }

@media (max-width: 820px) {
  .plans { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

.plan {
  background: var(--board);
  border: 1px solid var(--board-edge);
  border-radius: 20px;
  padding: 30px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  position: relative;
}

.plan.featured {
  border-color: color-mix(in srgb, var(--accent) 65%, transparent);
  box-shadow: 0 0 50px -12px color-mix(in srgb, var(--accent) 45%, transparent);
}

.plan .name {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.plan.featured .name { color: #5b8bf7; }

.plan .price { font-size: 42px; font-weight: 800; margin: 12px 0 2px; }
.plan .per { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.plan p { font-size: 14.5px; color: var(--muted); margin-top: auto; }


.plans-note { text-align: center; color: var(--muted); font-size: 13.5px; margin-top: 22px; }

/* ---------- faq ---------- */

.faq { max-width: 720px; margin: 0 auto; }

.faq details { border-bottom: 1px solid var(--border); }
.faq details:first-of-type { border-top: 1px solid var(--border); }

.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 19px 4px;
  font-size: 17px;
  font-weight: 700;
}

.faq summary:hover { color: #5b8bf7; }
.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  font-family: var(--font-hand);
  font-size: 26px;
  font-weight: 600;
  color: var(--muted);
  transition: transform 0.15s ease;
  flex-shrink: 0;
}

.faq details[open] summary::after { transform: rotate(45deg); color: #5b8bf7; }

.faq .answer { padding: 0 4px 20px; color: var(--muted); font-size: 15.5px; max-width: 62ch; }

/* ---------- closing ---------- */

.closing { text-align: center; padding-bottom: 84px; }

.closing .board {
  max-width: 720px;
  margin: 0 auto 44px;
  box-shadow:
    0 26px 80px -20px rgba(0, 0, 0, 0.8),
    0 0 70px -10px color-mix(in srgb, var(--accent) 16%, transparent);
}

.closing .track { padding: 26px 0; }
.closing .run { font-size: clamp(34px, 5vw, 52px); }

/* ---------- footer ---------- */

.footer {
  border-top: 1px solid var(--border);
  padding: 42px 0 58px;
  font-size: 14px;
  color: var(--muted);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer .wordmark .ink { font-size: 26px; }
.footer .wordmark .ticker { font-size: 21px; }

.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--text); }

.footer .fine { margin-top: 18px; font-size: 13px; }

/* ---------- legal / prose pages ---------- */

.prose { max-width: 720px; margin: 0 auto; padding: 56px 24px 80px; }

.prose h1 { font-size: 34px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 6px; }

.prose .updated { color: var(--muted); font-size: 14px; margin-bottom: 28px; }

.prose h2 { font-size: 21px; font-weight: 800; margin: 34px 0 10px; }

.prose p, .prose li { color: var(--text); font-size: 16px; margin-bottom: 12px; }

.prose ul { padding-left: 22px; margin-bottom: 12px; }

.prose .draft-banner {
  background: color-mix(in srgb, #b45309 12%, var(--surface));
  border: 1px solid color-mix(in srgb, #b45309 40%, transparent);
  color: #b45309;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 28px;
}
