/* vory.dev — design system
   Light #F2F2F7 / dark #000 pairs, system blue accent, Vory blue for the mascot, glass plates
   with a specular rim. SF Pro (system) with rounded display for headings. Mobile first, 16 px
   gutters; a deliberate desktop layout from 900 px. */

:root {
  --bg: #F2F2F7;
  --bg-2: #FFFFFF;
  --text: #0A0A0C;
  --muted: #6E6E73;
  --hair: rgba(0, 0, 0, 0.08);
  --accent: #0A84FF;
  --vory: #3B7BFF;
  --amber: #F5A524;
  --green: #30D158;
  --glass: rgba(255, 255, 255, 0.55);
  --glass-rim: rgba(255, 255, 255, 0.85);
  --glass-shadow: 0 10px 30px rgba(20, 30, 60, 0.08), 0 1px 2px rgba(20, 30, 60, 0.06);
  --shelf: rgba(255, 255, 255, 0.7);
  --bubble: #FFFFFF;
  --gutter: 16px;
  --radius: 22px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Inter, system-ui, sans-serif;
  --font-display: ui-rounded, "SF Pro Rounded", -apple-system, BlinkMacSystemFont, "Helvetica Neue", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  color-scheme: light dark;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #000000;
    --bg-2: #1C1C1E;
    --text: #F5F5F7;
    --muted: #8E8E93;
    --hair: rgba(255, 255, 255, 0.1);
    --glass: rgba(28, 28, 30, 0.62);
    --glass-rim: rgba(255, 255, 255, 0.14);
    --glass-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(255, 255, 255, 0.06) inset;
    --shelf: rgba(44, 44, 46, 0.7);
    --bubble: #1C1C1E;
  }
}
:root[data-theme="dark"] {
  --bg: #000000; --bg-2: #1C1C1E; --text: #F5F5F7; --muted: #8E8E93; --hair: rgba(255, 255, 255, 0.1);
  --glass: rgba(28, 28, 30, 0.62); --glass-rim: rgba(255, 255, 255, 0.14);
  --glass-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(255, 255, 255, 0.06) inset;
  --shelf: rgba(44, 44, 46, 0.7); --bubble: #1C1C1E;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; background: var(--bg); overflow-x: hidden; overflow-x: clip; overscroll-behavior-x: none; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
  overscroll-behavior-x: none;
}
img, canvas { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { font-family: var(--font-display); letter-spacing: -0.02em; margin: 0; }
h1 { font-size: clamp(40px, 10vw, 78px); line-height: 1.02; font-weight: 800; }
h2 { font-size: clamp(30px, 6vw, 48px); line-height: 1.08; font-weight: 700; }
h3 { font-size: 19px; line-height: 1.25; font-weight: 700; }
p { margin: 0; }
p + p { margin-top: 0.75em; }
strong { font-weight: 650; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--accent); color: #fff; padding: 8px 12px; border-radius: 10px; z-index: 100; }
.skip:focus { left: 8px; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 8px; }

/* ---- glass */
.glass {
  background: var(--glass);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  backdrop-filter: blur(20px) saturate(1.6);
  border: 1px solid var(--glass-rim);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius);
}

/* ---- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 20px; border-radius: 999px;
  font-weight: 600; font-size: 17px; text-decoration: none; white-space: nowrap;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s;
  border: 1px solid transparent;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 6px 18px rgba(10, 132, 255, 0.35); }
.btn-primary:hover { box-shadow: 0 8px 24px rgba(10, 132, 255, 0.45); }
.btn-glass { background: var(--glass); color: var(--text); border-color: var(--glass-rim); -webkit-backdrop-filter: blur(16px) saturate(1.5); backdrop-filter: blur(16px) saturate(1.5); box-shadow: var(--glass-shadow); }
.btn-small { min-height: 38px; padding: 0 14px; font-size: 15px; }
.btn-soon { cursor: default; }

/* ---- nav */
.nav {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 10px var(--gutter);
  padding-top: max(10px, env(safe-area-inset-top));
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  -webkit-backdrop-filter: blur(18px) saturate(1.6); backdrop-filter: blur(18px) saturate(1.6);
  border-bottom: 1px solid var(--hair);
}
.brand { display: inline-flex; align-items: center; gap: 8px; color: var(--text); font-weight: 700; font-family: var(--font-display); font-size: 19px; }
.brand img { width: 28px; height: 28px; border-radius: 7px; }
.brand:hover { text-decoration: none; }
.nav-links { display: none; gap: 22px; }
.nav-links a { color: var(--text); font-weight: 500; font-size: 15px; opacity: 0.8; }
.nav-links a:hover { opacity: 1; }

/* ---- layout */
main { display: block; }
.section { padding: 56px var(--gutter); max-width: 1120px; margin: 0 auto; }
.section-head { max-width: 680px; margin-bottom: 28px; }
.section-head .lede { margin-top: 14px; }
.eyebrow { font-size: 13px; font-weight: 650; letter-spacing: 0.02em; color: var(--accent); margin-bottom: 10px; }
.lede { font-size: 19px; line-height: 1.45; color: var(--muted); }
.lede strong { color: var(--text); }
.fineprint { font-size: 14px; color: var(--muted); margin-top: 14px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--accent); background: color-mix(in srgb, var(--accent) 12%, transparent); padding: 2px 7px; border-radius: 999px; vertical-align: middle; margin-left: 4px; }

/* ---- hero */
.hero { position: relative; overflow: hidden; overflow: clip; }
.hero-inner { position: relative; z-index: 1; padding: 24px var(--gutter) 40px; max-width: 1120px; margin: 0 auto; display: grid; gap: 28px; }
.hero-stage { position: relative; display: grid; place-items: center; min-height: 380px; }
.glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(70% 34% at 50% 24%, rgba(62, 196, 238, 0.34), transparent 72%),
    radial-gradient(60% 30% at 22% 44%, rgba(59, 123, 255, 0.26), transparent 72%),
    radial-gradient(55% 28% at 80% 50%, rgba(11, 40, 104, 0.16), transparent 72%);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .glow { opacity: 0.7; }
}
.vory-figure { position: relative; z-index: 1; margin: 0; display: grid; justify-items: center; gap: 14px; }
.bot-seat { position: relative; display: grid; justify-items: center; align-content: start; justify-self: center; }
.bot-seat .bot { position: relative; z-index: 1; }
.bot-seat--hero .bot { width: 220px; height: 220px; }
.shelf {
  position: relative; margin-top: -40px; z-index: -1;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 26px; border-radius: 999px;
  background: var(--shelf); border: 1px solid var(--glass-rim);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  box-shadow: var(--glass-shadow);
  font-weight: 600; font-size: 17px;
}
.shelf--hero { padding: 12px 34px; font-size: 19px; }
.shelf-status { color: var(--muted); font-weight: 500; font-size: 15px; }
.bubble {
  position: relative; max-width: 320px; min-width: 260px; margin: 8px 0 0;
  background: var(--bubble); color: var(--text);
  border: 1.5px solid var(--hair); border-radius: 20px;
  padding: 12px 16px; font-size: 17px; line-height: 1.35; text-align: center;
  min-height: 3.4em; display: grid; place-items: center;
  box-shadow: var(--glass-shadow);
}
.bubble--tail-top::before, .bubble--tail-top::after {
  content: ""; position: absolute; left: 50%; top: -11px; transform: translateX(-50%);
  border: 11px solid transparent; border-top: 0; border-bottom-color: var(--hair);
}
.bubble--tail-top::after { top: -9px; border-bottom-color: var(--bubble); }
.typed::after { content: "|"; opacity: 0.35; margin-left: 1px; animation: caret 1s steps(2) infinite; }
@keyframes caret { to { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .typed::after { display: none; } }
.hero-copy { text-align: center; }
.hero-copy .lede { margin-top: 16px; }
.hero-copy .cta-row { justify-content: center; }

/* ---- cards */
.cards { display: grid; gap: 14px; }
.card { padding: 22px 20px; }
.card h3 { margin-top: 14px; }
.card p { margin-top: 8px; color: var(--muted); }
.bot-card { width: 64px; height: 64px; }

/* ---- steps */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; counter-reset: step; }
.step { display: grid; grid-template-columns: 72px 1fr; gap: 12px; padding: 18px 18px 18px 14px; align-items: start; }
.step > .bot { width: 56px; height: 56px; margin: 0 auto; }
.step-n { display: inline-block; font-size: 12px; font-weight: 700; color: var(--muted); letter-spacing: 0.06em; margin-bottom: 4px; }
.step p { color: var(--muted); margin-top: 6px; font-size: 16px; }
.bot-stack { position: relative; width: 72px; height: 56px; }
.bot-stack .bot { position: absolute; width: 36px; height: 36px; }
.bot-stack .bot:nth-child(1) { left: 0; top: 12px; z-index: 3; }
.bot-stack .bot:nth-child(2) { left: 18px; top: 2px; z-index: 2; }
.bot-stack .bot:nth-child(3) { left: 36px; top: 14px; z-index: 1; }

/* ---- studio */
.section--wide { max-width: 1120px; }
.studio { padding: 22px 16px; display: grid; gap: 22px; }
.studio-stage { display: grid; place-items: center; padding: 8px 0 4px; }
.bot-seat--studio .bot { width: 168px; height: 168px; }
.shelf--studio { padding: 10px 24px; }
.studio-controls { display: grid; gap: 16px; align-content: start; }
.picker { min-width: 0; }
.picker-label { font-size: 13px; font-weight: 650; color: var(--muted); letter-spacing: 0.02em; margin: 0 0 8px; padding: 0; }
.picker-row { display: flex; gap: 8px; overflow-x: auto; overflow-y: hidden; padding: 4px; margin: -4px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.picker-row::-webkit-scrollbar { display: none; }
.pick {
  flex: 0 0 auto; width: 52px; height: 52px; border-radius: 14px; border: 1.5px solid var(--hair);
  background: var(--bg-2); display: grid; place-items: center; padding: 0; cursor: pointer;
  transition: border-color 0.15s, transform 0.15s var(--ease);
}
.pick canvas { width: 40px; height: 40px; }
.pick[aria-pressed="true"] { border-color: var(--accent); box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent) 30%, transparent); }
.swatches { flex-wrap: wrap; overflow: visible; margin: 0; padding: 2px; }
.swatch {
  flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid rgba(0, 0, 0, 0.12);
  padding: 0; cursor: pointer; position: relative; background: var(--sw, #888);
  transition: transform 0.15s var(--ease);
}
.swatch[aria-pressed="true"] { box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--accent); }
.swatch--custom { display: grid; place-items: center; background: conic-gradient(#ff375f, #ff9f0a, #ffd60a, #30d158, #64d2ff, #7c5cff, #ff375f); color: #fff; font-weight: 700; }
.swatch--custom input { position: absolute; inset: 0; opacity: 0; width: 100%; height: 100%; cursor: pointer; }
.segmented { display: inline-flex; background: color-mix(in srgb, var(--text) 8%, transparent); border-radius: 999px; padding: 3px; }
.segmented button, .chips button {
  font: inherit; font-size: 15px; font-weight: 600; color: var(--text); background: transparent; border: 0;
  padding: 8px 14px; border-radius: 999px; cursor: pointer; min-height: 40px;
}
.segmented button[aria-pressed="true"] { background: var(--bg-2); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips button { background: color-mix(in srgb, var(--text) 7%, transparent); }
.chips button[aria-pressed="true"] { background: var(--accent); color: #fff; }
.picker-hint { font-size: 15px; color: var(--muted); margin-top: 10px; min-height: 2.9em; }

.rules { display: grid; gap: 12px; margin-top: 16px; }
.rule { padding: 18px 20px; }
.rule p { color: var(--muted); margin-top: 6px; font-size: 16px; }
.quote { margin: 8px 0 0; padding: 12px 8px; }
.quote p { font-family: var(--font-display); font-size: 22px; font-weight: 700; line-height: 1.25; letter-spacing: -0.01em; }
.quote cite { display: block; font-style: normal; color: var(--muted); font-size: 15px; margin-top: 8px; }

/* ---- approvals */
.split { display: grid; gap: 22px; align-items: start; }
.approval { margin: 0; }
.approval img { border-radius: 18px; box-shadow: var(--glass-shadow); border: 1px solid var(--hair); }
figcaption { font-size: 14px; color: var(--muted); margin-top: 10px; }
.lockscreen { margin: 0; }
.wallpaper {
  border-radius: 28px; padding: 22px 14px 18px; overflow: hidden; position: relative;
  background: linear-gradient(160deg, #0B2868 0%, #1F86C6 55%, #3EC4EE 100%);
  box-shadow: var(--glass-shadow);
}
.clock { color: #fff; text-align: center; margin-bottom: 18px; display: grid; gap: 2px; }
.clock-date { font-size: 15px; font-weight: 600; opacity: 0.9; }
.clock-time { font-family: var(--font-display); font-size: 64px; font-weight: 700; line-height: 1; letter-spacing: -0.02em; }
.la {
  display: grid; grid-template-columns: auto 1fr auto; gap: 10px; align-items: center;
  background: rgba(0, 0, 0, 0.66); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  color: #fff; border-radius: 24px; padding: 14px; border: 1px solid rgba(255, 214, 10, 0.55);
}
.la-mark { position: relative; width: 44px; height: 44px; }
.la-badge {
  position: absolute; right: -4px; bottom: -3px; width: 19px; height: 19px; border-radius: 50%;
  background: linear-gradient(#FFE04D, #E6B800); border: 1.5px solid rgba(0, 0, 0, 0.9);
  display: grid; place-items: center; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.la-text { display: grid; gap: 2px; min-width: 0; }
.la-name { font-weight: 700; font-size: 17px; }
.la-head { display: inline-flex; align-items: center; gap: 5px; font-family: var(--font-display); font-size: 17px; font-weight: 700; white-space: nowrap; }
.la-detail { font-size: 13px; color: rgba(255, 255, 255, 0.75); line-height: 1.3; }
.la-buttons { display: grid; gap: 6px; }
.la-approve, .la-deny { font-size: 13px; font-weight: 600; padding: 6px 10px; border-radius: 999px; text-align: center; min-width: 68px; }
.la-approve { background: #FFD60A; color: #000; }
.la-deny { background: rgba(255, 255, 255, 0.18); color: #fff; }
.notif {
  margin-top: 10px; display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: center;
  background: rgba(255, 255, 255, 0.82); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  color: #000; border-radius: 22px; padding: 10px 12px;
}
.notif-text { display: grid; gap: 1px; min-width: 0; }
.notif-title { font-weight: 650; font-size: 15px; display: flex; justify-content: space-between; }
.notif-title small { font-weight: 400; color: rgba(0, 0, 0, 0.5); font-size: 13px; }
.notif-body { font-size: 15px; line-height: 1.3; }

/* ---- chats & phones */
.split-copy p { color: var(--muted); margin-top: 12px; }
.ticks { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 10px; }
.ticks li { position: relative; padding-left: 28px; color: var(--muted); font-size: 16px; }
.ticks li::before { content: ""; position: absolute; left: 0; top: 5px; width: 16px; height: 16px; border-radius: 50%; background: var(--green); }
.ticks li::after { content: ""; position: absolute; left: 5px; top: 8px; width: 5px; height: 8px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.phones { position: relative; display: grid; justify-items: center; padding-top: 8px; }
.phone { margin: 0; width: min(70vw, 300px); border-radius: 44px; padding: 8px; background: #101012; box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.08) inset; }
.phone img { border-radius: 37px; }
.phone--back { display: none; }
.phones--single .phone { width: min(70vw, 300px); }
.chipset { list-style: none; padding: 0; margin: 18px 0 0; display: flex; flex-wrap: wrap; gap: 8px; }
.chipset li { font-size: 14px; font-weight: 600; padding: 7px 12px; border-radius: 999px; background: var(--glass); border: 1px solid var(--glass-rim); }

/* ---- beta */
.beta-card { display: grid; gap: 18px; padding: 26px 20px; justify-items: center; text-align: center; }
.bot-seat--beta .bot { width: 128px; height: 128px; }
.beta-card p { color: var(--muted); margin-top: 10px; }
.beta-card .cta-row { justify-content: center; }

/* ---- faq */
.faq { display: grid; gap: 10px; max-width: 760px; }
.faq details { padding: 4px 18px; }
.faq summary { cursor: pointer; font-weight: 650; padding: 12px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--muted); font-size: 22px; font-weight: 400; transition: transform 0.2s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); padding-bottom: 14px; }

/* ---- footer */
.footer { padding: 40px var(--gutter) max(40px, env(safe-area-inset-bottom)); border-top: 1px solid var(--hair); }
.footer-inner { max-width: 1120px; margin: 0 auto; display: grid; gap: 6px; justify-items: center; text-align: center; }
#footer-bot { width: 40px; height: 40px; margin-bottom: 6px; }
.footer .muted { color: var(--muted); font-size: 14px; }

/* ---- reveal (fade + rise on scroll; off under Reduce Motion) */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .pick, .swatch { transition: none; }
}
.no-js .reveal { opacity: 1; transform: none; }

/* ============================================================ desktop */
@media (min-width: 700px) {
  .cards.three { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .rules { grid-template-columns: repeat(3, 1fr); }
  .quote { grid-column: 1 / -1; text-align: center; padding: 20px 10% 8px; }
  .faq { margin: 0 auto; }
}
@media (min-width: 900px) {
  :root { --gutter: 32px; }
  .nav { padding-left: 32px; padding-right: 32px; }
  .nav-links { display: flex; }
  .section { padding: 88px var(--gutter); }
  .hero-inner { grid-template-columns: 1.1fr 0.9fr; align-items: center; padding-top: 48px; padding-bottom: 72px; min-height: calc(100vh - 60px); }
  .glow {
    background:
      radial-gradient(38% 60% at 74% 46%, rgba(62, 196, 238, 0.34), transparent 72%),
      radial-gradient(34% 55% at 60% 66%, rgba(59, 123, 255, 0.26), transparent 72%),
      radial-gradient(30% 50% at 90% 70%, rgba(11, 40, 104, 0.16), transparent 72%);
  }
  h1 { font-size: 62px; }
  .hero-stage { order: 2; min-height: 520px; }
  .bot-seat--hero .bot { width: 300px; height: 300px; }
  .shelf--hero { padding: 14px 44px; font-size: 22px; }
  .bubble { font-size: 19px; max-width: 360px; }
  .hero-copy { text-align: left; order: 1; }
  .hero-copy .cta-row { justify-content: flex-start; }
  .studio { grid-template-columns: 340px 1fr; grid-template-areas: "stage controls" "states states"; padding: 28px; gap: 28px; align-items: start; }
  .studio-stage { grid-area: stage; align-self: center; }
  .bot-seat--studio .bot { width: 220px; height: 220px; }
  .shelf--studio { padding: 12px 30px; }
  .studio-controls { grid-area: controls; }
  .studio-states { grid-area: states; border-top: 1px solid var(--hair); padding-top: 22px; }
  .picker-row { flex-wrap: wrap; overflow: visible; margin: 0; padding: 2px; }
  .split { grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
  .split--reverse .split-copy { order: 2; }
  .split--reverse .phones { order: 1; }
  .phones { min-height: 720px; align-items: start; justify-items: start; padding-left: 24px; padding-top: 24px; }
  .phone { width: 300px; }
  .phone--back { display: block; position: absolute; width: 250px; right: 8px; top: 110px; transform: rotate(4deg); z-index: -1; opacity: 0.95; }
  .phones--single { justify-items: center; padding-left: 0; }
  .beta-card { grid-template-columns: auto 1fr; text-align: left; padding: 40px; gap: 40px; align-items: center; }
  .beta-card .cta-row { justify-content: flex-start; }
  .footer-inner { grid-template-columns: auto 1fr auto; align-items: center; justify-items: start; text-align: left; gap: 16px; }
  .footer-inner p:nth-child(3) { grid-column: 2; }
}
@media (min-width: 1200px) {
  h1 { font-size: 70px; }
  .bot-seat--hero .bot { width: 340px; height: 340px; }
}

/* ---- Bots-tab mock (the app's Bots page, drawn live) */
.phone--mock { container-type: inline-size; aspect-ratio: 1206 / 2622; }
.mock { position: relative; height: 100%; border-radius: 37px; overflow: hidden; background: #F2F2F7; color: #0A0A0C; font-family: var(--font); display: flex; flex-direction: column; }
.mock-status { display: flex; align-items: center; justify-content: space-between; padding: 5cqw 8cqw 0; font-size: 5cqw; font-weight: 600; }
.mock-island { width: 30cqw; height: 9cqw; border-radius: 999px; background: #000; }
.mock-signal { width: 8cqw; height: 4cqw; border-radius: 2px; background: #0A0A0C; opacity: 0.9; }
.mock-head { display: flex; justify-content: flex-end; padding: 6cqw 6cqw 0; }
.mock-plus { width: 12cqw; height: 12cqw; border-radius: 50%; background: #fff; display: grid; place-items: center; font-size: 8cqw; font-weight: 300; box-shadow: 0 1px 3px rgba(0,0,0,0.12); }
.mock-title { font-family: var(--font-display); font-size: 11cqw; font-weight: 800; letter-spacing: -0.02em; margin: 2cqw 0 0; padding: 0 6cqw; }
.mock-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6cqw 4cqw; padding: 5cqw 5cqw 0; }
.mock-card { display: grid; justify-items: center; }
.mock-card .bot { position: relative; z-index: 1; width: 62px; height: 62px; }
.mock-pill { margin-top: -18px; width: 100%; padding: 18px 10px 8px; border-radius: 999px; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.08); text-align: center; display: grid; line-height: 1.2; }
.mock-pill b { font-size: 4.6cqw; font-weight: 650; }
.mock-pill span { font-size: 3.6cqw; color: #8E8E93; }
.mock-tabs { margin-top: auto; display: flex; gap: 3cqw; align-items: center; padding: 4cqw 4cqw 5cqw; }
.mock-tabbar { flex: 1; display: flex; justify-content: space-around; align-items: center; height: 15cqw; border-radius: 999px; background: rgba(255,255,255,0.9); box-shadow: 0 2px 8px rgba(0,0,0,0.08); color: #0A0A0C; }
.mock-tab--on { display: grid; justify-items: center; color: var(--accent); }
.mock-tab--on small { font-size: 2.6cqw; font-weight: 600; margin-top: -2px; }
.mock-compose { width: 15cqw; height: 15cqw; border-radius: 50%; background: rgba(255,255,255,0.9); box-shadow: 0 2px 8px rgba(0,0,0,0.08); display: grid; place-items: center; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .mock { background: #000; color: #F5F5F7; }
  :root:not([data-theme="light"]) .mock-plus, :root:not([data-theme="light"]) .mock-pill, :root:not([data-theme="light"]) .mock-tabbar, :root:not([data-theme="light"]) .mock-compose { background: #1C1C1E; color: #F5F5F7; }
  :root:not([data-theme="light"]) .mock-island { outline: 1px solid #333; }
  :root:not([data-theme="light"]) .mock-signal { background: #F5F5F7; }
}

/* ---- quiet links + prose pages (privacy) */
.quiet { color: inherit; text-decoration: underline; text-decoration-color: var(--hair); text-underline-offset: 3px; }
.quiet:hover { text-decoration-color: currentColor; }
.prose { max-width: 720px; margin: 0 auto; padding: 40px var(--gutter) 72px; }
.prose-head { margin-bottom: 22px; }
.prose-head h1 { font-size: clamp(34px, 7vw, 52px); }
.prose-meta { color: var(--muted); font-size: 15px; margin-top: 12px; }
.prose-summary { padding: 20px 22px; margin: 18px 0 30px; font-size: 18px; line-height: 1.5; }
.prose h2 { font-size: 24px; margin: 38px 0 10px; }
.prose p { margin: 0 0 12px; }
.prose ul { padding-left: 22px; margin: 0 0 14px; }
.prose li { margin-bottom: 8px; }
.prose li strong { color: var(--text); }
.prose a { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: color-mix(in srgb, var(--accent) 40%, transparent); }
.prose-note { color: var(--muted); font-size: 15px; margin-top: 36px; }
@media (min-width: 900px) { .prose { padding-top: 64px; } }
