/* Cognitor 分享页 · 共用样式(访客页 visitor.html · 主人页 owner.html)
   品牌令牌与 cognitor.me 一致;字体自托管(/assets/fonts/),⛔任何外部 CDN。
   兼容:微信 X5 / iOS WKWebView —— 不用 flex gap、aspect-ratio、color-mix、:is()、inset、dvh。 */

@font-face {
  font-family: "Cognitor Editorial";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url(/assets/fonts/cormorant-latin.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+20AC, U+2122;
}
@font-face {
  font-family: "Cognitor Sans";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url(/assets/fonts/manrope-latin.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+20AC, U+2122;
}

:root {
  --c-ink: #302d30;
  --c-cloud: #f6f5f1;
  --c-surface: #fffefa;
  --c-olive: #626b3c;
  --c-olive-dark: #46502c;
  --c-olive-soft: #e8eadc;
  --c-olive-mist: #f0f1e9;
  --c-aubergine: #40243d;
  --c-aubergine-soft: #ede5ec;
  --c-muted: #66635f;
  --c-faint: #8f8b84;
  --c-line: #d9d8ce;
  --c-line-soft: #e6e5dd;
  --c-wash: #ecebe4;
  --c-accent: #a94632;
  --c-accent-ink: #fffefa;
  --c-accent-soft: #f4e4de;
  --c-shadow: rgba(48, 45, 48, .07);
  --c-scrim: rgba(38, 35, 36, .32);

  --f-display: "Cognitor Editorial", "Cormorant Garamond", Georgia, "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", serif;
  --f-sans: "Cognitor Sans", "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", "Microsoft YaHei", -apple-system, sans-serif;
  --f-zh: "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", "Microsoft YaHei", sans-serif;

  --r-8: 8px; --r-12: 12px; --r-14: 14px; --r-16: 16px;
  --col: 600px;
  --gut: 20px;
  --bar-h: 52px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --c-ink: #ece8e1;
    --c-cloud: #1a1918;
    --c-surface: #232220;
    --c-olive: #b9c48f;
    --c-olive-dark: #d3dcae;
    --c-olive-soft: #2c2f23;
    --c-olive-mist: #22241d;
    --c-aubergine: #dcbdd6;
    --c-aubergine-soft: #352431;
    --c-muted: #a8a49c;
    --c-faint: #7f7b74;
    --c-line: #3b3935;
    --c-line-soft: #2e2c29;
    --c-wash: #2a2927;
    --c-accent: #cf6a4f;
    --c-accent-ink: #fffefa;
    --c-accent-soft: #3a2621;
    --c-shadow: rgba(0, 0, 0, .3);
    --c-scrim: rgba(0, 0, 0, .55);
  }
}

/* ── 基础 ── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; background: var(--c-cloud); }
body {
  margin: 0;
  min-height: 100vh;
  background: var(--c-cloud);
  color: var(--c-ink);
  font: 400 16px/1.65 var(--f-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
}
[hidden] { display: none !important; }
p, h1, h2, h3, ul, ol, figure { margin: 0; padding: 0; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration-color: var(--c-line); text-underline-offset: 3px; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; margin: 0; cursor: pointer; -webkit-appearance: none; appearance: none; }
button:disabled { cursor: default; }
input, textarea { font: inherit; color: inherit; }
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--c-accent); outline-offset: 2px; border-radius: 6px; }
::selection { background: var(--c-olive-soft); }
.sr { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.col { width: 100%; max-width: var(--col); margin: 0 auto; padding-left: calc(var(--gut) + env(safe-area-inset-left)); padding-right: calc(var(--gut) + env(safe-area-inset-right)); }

/* ── 顶栏 ── */
.bar {
  position: -webkit-sticky; position: sticky; top: 0; z-index: 20;
  padding-top: env(safe-area-inset-top);
  background: rgba(246, 245, 241, 0);
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease);
}
.bar.is-solid { background: var(--c-cloud); box-shadow: 0 1px 0 var(--c-line-soft); }
@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .bar.is-solid { background: rgba(246, 245, 241, .86); -webkit-backdrop-filter: saturate(1.4) blur(14px); backdrop-filter: saturate(1.4) blur(14px); }
  @media (prefers-color-scheme: dark) { .bar.is-solid { background: rgba(26, 25, 24, .84); } }
}
.bar-in { max-width: var(--col); margin: 0 auto; height: var(--bar-h); display: flex; align-items: center; justify-content: space-between; padding: 0 calc(var(--gut) + env(safe-area-inset-right)) 0 calc(var(--gut) + env(safe-area-inset-left)); }
.wordmark { font-family: var(--f-display); font-weight: 500; font-size: 21px; letter-spacing: .01em; line-height: 1; color: var(--c-ink); text-decoration: none; }
.bar-left { position: relative; flex: 1; min-width: 0; height: 100%; display: flex; align-items: center; }
.bar-left > .wordmark { transition: opacity .25s var(--ease); }
.bar-who { position: absolute; left: 0; right: 0; top: 50%; display: flex; align-items: center; min-width: 0; opacity: 0; pointer-events: none; -webkit-transform: translateY(-40%); transform: translateY(-40%); transition: opacity .3s var(--ease), transform .3s var(--ease); }
.bar-who .av { margin-right: 10px; }
.bar-who-n { font-size: 15px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.bar-who-n .latin { font-family: var(--f-display); font-size: 19px; font-weight: 600; }
.bar.show-who .bar-who { opacity: 1; pointer-events: auto; -webkit-transform: translateY(-50%); transform: translateY(-50%); }
.bar.show-who .bar-left > .wordmark { opacity: 0; }
.bar-meta { font-size: 13px; color: var(--c-muted); white-space: nowrap; margin-left: 12px; }
.bar-meta b { font-family: var(--f-display); font-size: 17px; font-weight: 600; color: var(--c-ink); margin: 0 1px; }
.pill-ai { display: inline-block; font: 600 10.5px/1 var(--f-sans); letter-spacing: .12em; color: var(--c-olive); border: 1px solid currentColor; border-radius: 999px; padding: 4px 7px 3px 8px; vertical-align: 2px; margin-left: 8px; opacity: .9; }

/* ── 头像:插画 / 首字母徽记 ── */
.av { position: relative; display: inline-block; flex: none; border-radius: 50%; overflow: hidden; background: var(--c-olive-soft); }
.av .mono { position: absolute; left: 0; top: 0; right: 0; bottom: 0; display: flex; align-items: center; justify-content: center; font-family: var(--f-display); font-weight: 500; color: var(--c-olive); line-height: 1; }
.av .mono.zh { font-family: var(--f-zh); font-weight: 400; }
.av img { position: absolute; left: 0; top: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .4s var(--ease); }
.av.has-img img { opacity: 1; }
.av.has-img .mono { visibility: hidden; }
.av-xs { width: 24px; height: 24px; }
.av-xs .mono { font-size: 13px; }
.av-xs .mono.zh { font-size: 11px; }
.av-sm { width: 30px; height: 30px; }
.av-sm .mono { font-size: 16px; }
.av-sm .mono.zh { font-size: 13px; }
/* 小头像把脸放大一点(插画是半身像) */
.av-xs img, .av-sm img { width: 150%; height: 150%; left: -30%; top: -3%; }
.av-xs, .av-sm { box-shadow: 0 0 0 1px var(--c-line-soft); }

/* 首屏大头像:插画的奶油底和页面融在一起(羽化圆),深色下改清晰圆框 */
.portrait { position: relative; width: 216px; height: 216px; margin: 6px auto 0; }
.portrait .av { width: 100%; height: 100%; background: transparent; overflow: visible; border-radius: 0; }
.portrait .av img {
  -webkit-mask-image: radial-gradient(closest-side, #000 78%, rgba(0,0,0,.6) 88%, transparent 100%);
  mask-image: radial-gradient(closest-side, #000 78%, rgba(0,0,0,.6) 88%, transparent 100%);
}
.portrait .av .mono {
  border-radius: 50%;
  font-size: 92px;
  background:
    radial-gradient(circle at 34% 30%, var(--c-aubergine-soft) 0, rgba(237,229,236,0) 58%),
    radial-gradient(circle at 70% 72%, var(--c-olive-soft) 0, rgba(232,234,220,0) 62%),
    var(--c-olive-mist);
  box-shadow: inset 0 0 0 1px var(--c-line-soft), 0 0 0 10px var(--c-cloud), 0 0 0 11px var(--c-line-soft);
}
.portrait .av .mono.zh { font-size: 64px; color: var(--c-olive-dark); }
@media (prefers-color-scheme: dark) {
  .portrait .av img { -webkit-mask-image: none; mask-image: none; border-radius: 50%; -webkit-filter: brightness(.93); filter: brightness(.93); box-shadow: 0 0 0 1px var(--c-line); }
  .portrait .av .mono { background: var(--c-olive-soft); }
}

/* ── 首屏(访客)── */
.boot { min-height: 70vh; display: flex; align-items: center; justify-content: center; }
.boot .wordmark { font-size: 28px; color: var(--c-muted); -webkit-animation: breathe 2.4s var(--ease) infinite; animation: breathe 2.4s var(--ease) infinite; }

.hero { text-align: center; padding: 4px 0 8px; }
.title { font-family: var(--f-display); font-weight: 500; font-size: 44px; line-height: 1.04; letter-spacing: -.005em; margin-top: 18px; color: var(--c-ink); }
.title .zh-join { font-family: var(--f-zh); font-weight: 300; font-size: .56em; letter-spacing: 0; margin: 0 .22em; vertical-align: .14em; color: var(--c-muted); }
.title .name.zh { font-family: var(--f-zh); font-weight: 500; font-size: .78em; letter-spacing: .02em; }
.tagline { margin: 12px auto 0; max-width: 22em; font-size: 15px; line-height: 1.6; color: var(--c-muted); }
.rule { width: 36px; height: 1px; background: var(--c-line); margin: 22px auto; border: 0; }
.lede { max-width: 21em; margin: 0 auto; font-size: 17px; line-height: 1.75; color: var(--c-ink); }
.lede em { font-style: normal; color: var(--c-olive-dark); }

.notice { text-align: left; margin: 26px 0 0; background: var(--c-surface); border: 1px solid var(--c-line-soft); border-radius: var(--r-16); padding: 16px 18px 6px; box-shadow: 0 1px 2px var(--c-shadow); }
.notice-k { font-size: 12px; letter-spacing: .14em; color: var(--c-olive); font-weight: 600; margin-bottom: 8px; }
.notice-li { display: flex; align-items: flex-start; font-size: 15px; line-height: 1.6; color: var(--c-ink); padding: 5px 0; }
.notice-ic { flex: none; width: 26px; height: 24px; margin-right: 10px; display: flex; align-items: center; justify-content: center; color: var(--c-olive); }
.notice-ic svg { width: 20px; height: 20px; display: block; }
.notice-ic .ai { font: 700 10px/1 var(--f-sans); letter-spacing: .06em; border: 1.2px solid currentColor; border-radius: 6px; padding: 4px 4px 3px 5px; }
.notice-ic .dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.nick { display: flex; align-items: center; border-top: 1px solid var(--c-line-soft); margin-top: 10px; padding: 8px 0 4px; }
.nick label { flex: none; font-size: 14px; color: var(--c-muted); margin-right: 12px; }
.nick input { flex: 1; min-width: 0; height: 40px; border: 0; background: transparent; font-size: 16px; padding: 0; color: var(--c-ink); }
.nick input::placeholder { color: var(--c-faint); }
.nick-ok { flex: none; font-size: 12px; color: var(--c-olive); opacity: 0; transition: opacity .3s; margin-left: 8px; }
.nick-ok.on { opacity: 1; }

/* 分节标题 */
.sec { margin-top: 36px; }
.sec-h { display: flex; align-items: baseline; font-size: 13px; font-weight: 600; letter-spacing: .08em; color: var(--c-muted); margin-bottom: 12px; }
.sec-h .num { font-family: var(--f-display); font-size: 18px; font-weight: 500; letter-spacing: 0; color: var(--c-olive); margin-right: 10px; }
.sec-h .ln { flex: 1; height: 1px; background: var(--c-line-soft); margin-left: 12px; -webkit-transform: translateY(-4px); transform: translateY(-4px); }

/* 聊过的领域:两列小卡(手机上也两列,省出首屏给开场问题) */
.domains { display: flex; flex-wrap: wrap; margin: 0 -5px; }
.dom { width: calc(50% - 10px); margin: 0 5px 10px; padding: 12px 14px 13px; background: var(--c-olive-mist); border-radius: var(--r-14); }
.dom:last-child:nth-child(odd) { width: calc(100% - 10px); }
.dom-i { display: none; }
.dom-l { display: block; font-size: 15px; font-weight: 600; color: var(--c-ink); line-height: 1.45; }
.dom-b { display: block; font-size: 13px; color: var(--c-muted); line-height: 1.55; margin-top: 3px; }
/* 开场问题 */
.starter { display: flex; align-items: center; width: 100%; text-align: left; background: var(--c-surface); border: 1px solid var(--c-line-soft); border-radius: var(--r-14); padding: 14px 14px 14px 16px; margin-bottom: 10px; font-size: 16px; line-height: 1.5; color: var(--c-ink); transition: border-color .2s, background-color .2s, transform .15s; }
.starter span { flex: 1; min-width: 0; }
.starter svg { flex: none; width: 18px; height: 18px; margin-left: 12px; color: var(--c-olive); transition: transform .2s var(--ease); }
.starter:active { -webkit-transform: scale(.99); transform: scale(.99); background: var(--c-olive-mist); }
@media (hover: hover) { .starter:hover { border-color: var(--c-olive); } .starter:hover svg { -webkit-transform: translateX(3px); transform: translateX(3px); } }
.starter:disabled { opacity: .5; }

/* ── 对话 ── */
.thread { padding-top: 8px; }
.turn { margin-top: 30px; }
.turn:first-child { margin-top: 36px; }
.q { display: flex; justify-content: flex-end; }
.q p { max-width: 84%; background: var(--c-wash); color: var(--c-ink); border-radius: 18px 18px 6px 18px; padding: 10px 15px; font-size: 16px; line-height: 1.6; white-space: pre-wrap; word-break: break-word; }
.q-meta { text-align: right; font-size: 12px; color: var(--c-faint); margin-top: 6px; }

.a { margin-top: 20px; }
.a-by { display: flex; align-items: center; font-size: 13px; color: var(--c-muted); margin-bottom: 10px; }
.a-by .av { margin-right: 9px; }
.a-by .latin { font-family: var(--f-display); font-size: 15px; font-weight: 600; color: var(--c-ink); }
.unit { margin-bottom: 18px; }
.unit:last-child { margin-bottom: 0; }
.unit-t { font-size: 17px; line-height: 1.8; color: var(--c-ink); white-space: pre-wrap; word-break: break-word; letter-spacing: .01em; }
.unit.is-note .unit-t { font-size: 15px; line-height: 1.7; color: var(--c-muted); }

/* 出处标签:她说过 / 按她一贯的判断推出 / 她没聊过 / 说明 */
.tag { display: inline-flex; align-items: center; margin-top: 8px; font-size: 12px; line-height: 1; letter-spacing: .02em; border-radius: 999px; padding: 5px 10px 5px 8px; border: 1px solid transparent; }
.tag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; margin-right: 6px; background: currentColor; opacity: .85; }
.tag-said { color: var(--c-olive-dark); background: var(--c-olive-soft); }
.tag-infer { color: var(--c-aubergine); background: var(--c-aubergine-soft); }
.tag-none { color: var(--c-muted); background: transparent; border: 1px dashed var(--c-line); }
.tag-none::before { background: transparent; border: 1px solid currentColor; width: 4px; height: 4px; }
.tag-note { color: var(--c-muted); background: var(--c-wash); }
.tag-note::before { display: none; }
.tag-para { color: var(--c-olive-dark); background: transparent; border-color: var(--c-olive-soft); }
.tag-ask { color: var(--c-aubergine); background: transparent; border-color: var(--c-aubergine-soft); }
.tag-n { font-size: 12px; color: var(--c-faint); margin-left: 8px; }
button.tag { cursor: pointer; }
.tag-x { font-size: 13px; line-height: 1.6; color: var(--c-muted); margin-top: 8px; padding-left: 10px; border-left: 2px solid var(--c-line); }

/* 接着问 */
.more { margin-top: 22px; }
.more-k { font-size: 12px; color: var(--c-faint); letter-spacing: .06em; margin-bottom: 8px; }
.chip { display: inline-block; max-width: 100%; text-align: left; font-size: 14px; line-height: 1.45; color: var(--c-ink); border: 1px solid var(--c-line); border-radius: 999px; padding: 8px 14px; margin: 0 8px 8px 0; background: transparent; transition: border-color .2s, background-color .2s; }
.chip:active { background: var(--c-olive-mist); }
@media (hover: hover) { .chip:hover { border-color: var(--c-olive); } }

/* 正在想 */
.thinking .a-by { margin-bottom: 0; }
.thinking .av { -webkit-animation: breathe 2.2s var(--ease) infinite; animation: breathe 2.2s var(--ease) infinite; }
.think-t { color: var(--c-muted); }
.dots { display: inline-flex; margin-left: 4px; }
.dots i { width: 4px; height: 4px; border-radius: 50%; background: var(--c-olive); margin: 0 2px; opacity: .2; -webkit-animation: dot 1.5s infinite; animation: dot 1.5s infinite; }
.dots i:nth-child(2) { -webkit-animation-delay: .2s; animation-delay: .2s; }
.dots i:nth-child(3) { -webkit-animation-delay: .4s; animation-delay: .4s; }
.think-line { position: relative; height: 1px; margin: 14px 0 0 33px; background: var(--c-line-soft); overflow: hidden; }
.think-line::after { content: ""; position: absolute; top: 0; left: 0; height: 1px; width: 38%; background: var(--c-olive); opacity: .55; -webkit-animation: sweep 2.6s var(--ease) infinite; animation: sweep 2.6s var(--ease) infinite; }
.think-sub { font-size: 13px; color: var(--c-faint); margin: 10px 0 0 33px; min-height: 1.6em; transition: opacity .4s; }
@-webkit-keyframes dot { 0%, 100% { opacity: .2; } 40% { opacity: .9; } }
@keyframes dot { 0%, 100% { opacity: .2; } 40% { opacity: .9; } }
@-webkit-keyframes sweep { 0% { -webkit-transform: translateX(-100%); } 100% { -webkit-transform: translateX(270%); } }
@keyframes sweep { 0% { transform: translateX(-100%); } 100% { transform: translateX(270%); } }
@-webkit-keyframes breathe { 0%, 100% { opacity: 1; } 50% { opacity: .55; } }
@keyframes breathe { 0%, 100% { opacity: 1; } 50% { opacity: .55; } }
@-webkit-keyframes rise { from { opacity: 0; -webkit-transform: translateY(6px); } to { opacity: 1; -webkit-transform: none; } }
@keyframes rise { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.rise { -webkit-animation: rise .45s var(--ease) both; animation: rise .45s var(--ease) both; }

/* 大白话卡片(错误 / 暂停 / 收回 / 次数用完) */
.card { margin-top: 22px; border-radius: var(--r-14); padding: 16px 18px; background: var(--c-surface); border: 1px solid var(--c-line-soft); box-shadow: 0 1px 2px var(--c-shadow); }
.card-t { font-size: 16px; font-weight: 600; color: var(--c-ink); display: flex; align-items: center; }
.card-t::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--c-aubergine); opacity: .6; margin-right: 10px; flex: none; }
.card.is-soft .card-t::before { background: var(--c-olive); }
.card.is-warn .card-t::before { background: var(--c-accent); }
.card-b { font-size: 15px; line-height: 1.65; color: var(--c-muted); margin-top: 6px; padding-left: 17px; }
.card-acts { margin-top: 12px; padding-left: 17px; }

/* 页脚 */
.colophon { text-align: center; font-size: 12px; letter-spacing: .08em; color: var(--c-faint); padding: 48px 0 20px; }
.colophon .wordmark { font-size: 15px; color: var(--c-muted); letter-spacing: .02em; }
.colophon a { color: var(--c-faint); text-decoration: none; }
.colophon .sep { margin: 0 8px; }

/* ── 按钮 ── */
.btn { display: inline-flex; align-items: center; justify-content: center; height: 40px; padding: 0 16px; border-radius: 999px; font-size: 15px; font-weight: 500; line-height: 1; transition: background-color .2s, border-color .2s, color .2s, opacity .2s; white-space: nowrap; }
.btn svg { width: 16px; height: 16px; margin-right: 6px; }
.btn-primary { background: var(--c-accent); color: var(--c-accent-ink); }
.btn-primary:active { opacity: .88; }
.btn-primary:disabled { opacity: .45; }
.btn-line { border: 1px solid var(--c-line); color: var(--c-ink); background: var(--c-surface); }
.btn-line:active { background: var(--c-olive-mist); }
@media (hover: hover) { .btn-line:hover { border-color: var(--c-olive); } }
.btn-ghost { color: var(--c-ink); padding: 0 12px; }
.btn-ghost:active { background: var(--c-wash); }
.btn-danger { background: var(--c-accent); color: var(--c-accent-ink); }
.btn-sm { height: 34px; padding: 0 13px; font-size: 14px; }
.btn + .btn { margin-left: 8px; }
.link-btn { font-size: 13px; color: var(--c-muted); padding: 4px 0; }
.link-btn + .link-btn { margin-left: 14px; }
.link-btn:disabled { color: var(--c-faint); }
.link-btn.is-done { color: var(--c-olive); }

/* ── 输入区 ── */
.composer {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 30;
  background: var(--c-cloud);
  box-shadow: 0 -1px 0 var(--c-line-soft);
  padding: 10px 0 calc(10px + env(safe-area-inset-bottom));
  -webkit-transition: -webkit-transform .18s ease-out; transition: transform .18s ease-out;
}
.composer-in { max-width: var(--col); margin: 0 auto; padding: 0 calc(var(--gut) - 4px + env(safe-area-inset-right)) 0 calc(var(--gut) - 4px + env(safe-area-inset-left)); }
.composer-hint { font-size: 12.5px; color: var(--c-muted); padding: 0 6px 8px; text-align: center; }
.field { display: flex; align-items: flex-end; background: var(--c-surface); border: 1px solid var(--c-line); border-radius: 24px; padding: 5px 5px 5px 16px; transition: border-color .2s, box-shadow .2s; }
.field.is-focus { border-color: var(--c-olive); box-shadow: 0 0 0 3px var(--c-olive-mist); }
.field textarea { flex: 1; min-width: 0; border: 0; background: transparent; resize: none; font-size: 16px; line-height: 1.5; padding: 7px 0; height: 38px; max-height: 144px; color: var(--c-ink); overflow-y: auto; }
.field textarea::placeholder { color: var(--c-faint); }
.send { flex: none; width: 38px; height: 38px; border-radius: 50%; background: var(--c-accent); color: var(--c-accent-ink); display: flex; align-items: center; justify-content: center; margin-left: 8px; transition: opacity .2s, transform .15s, background-color .2s; }
.send svg { width: 18px; height: 18px; }
.send:disabled { background: var(--c-line); color: var(--c-surface); }
.send:not(:disabled):active { -webkit-transform: scale(.94); transform: scale(.94); }
.composer.is-closed .field { display: none; }
.closed-note { display: none; text-align: center; font-size: 14px; color: var(--c-muted); padding: 10px 8px; }
.composer.is-closed .closed-note { display: block; }

/* ── 主人页 ── */
.seg { display: inline-flex; background: var(--c-wash); border-radius: 999px; padding: 3px; }
.seg a { display: block; font-size: 14px; font-weight: 500; line-height: 1; padding: 8px 14px; border-radius: 999px; color: var(--c-muted); text-decoration: none; transition: background-color .2s, color .2s; }
.seg a.is-on { background: var(--c-surface); color: var(--c-ink); box-shadow: 0 1px 2px var(--c-shadow); }
.seg a .count { font-family: var(--f-display); font-weight: 600; font-size: 15px; margin-left: 4px; color: var(--c-olive); }

.o-head { padding: 18px 0 4px; }
.o-kick { font-size: 12px; letter-spacing: .14em; font-weight: 600; color: var(--c-olive); }
.o-title { font-size: 28px; font-weight: 600; line-height: 1.3; letter-spacing: .01em; margin-top: 6px; }
.o-title .latin { font-family: var(--f-display); font-weight: 500; font-size: 34px; }
.o-sub { font-size: 15px; line-height: 1.7; color: var(--c-muted); margin-top: 8px; }
.o-note { font-size: 14px; line-height: 1.7; color: var(--c-muted); margin-top: 14px; padding: 12px 14px; background: var(--c-surface); border: 1px solid var(--c-line-soft); border-radius: var(--r-12); }
.o-actions { display: flex; flex-wrap: wrap; margin: 14px -4px 0; }
.o-actions .btn { margin: 0 4px 8px; }

.fb { margin-top: 6px; }
.recs { margin-top: 12px; background: var(--c-surface); border: 1px solid var(--c-line-soft); border-radius: var(--r-12); padding: 14px 16px 6px; }
.recs-h { font-size: 14px; color: var(--c-muted); margin-bottom: 8px; }
.rec { padding: 10px 0 10px 14px; border-left: 2px solid var(--c-olive-soft); margin-bottom: 10px; }
.rec-t { font-size: 15px; line-height: 1.7; color: var(--c-ink); }
.rec .fb { margin-top: 6px; }

/* 分享面板 */
.panel { background: var(--c-surface); border: 1px solid var(--c-line-soft); border-radius: var(--r-16); padding: 18px; margin-top: 16px; box-shadow: 0 1px 2px var(--c-shadow); }
.panel-h { font-size: 16px; font-weight: 600; }
.panel-d { font-size: 14px; line-height: 1.65; color: var(--c-muted); margin-top: 4px; }
.row { display: flex; align-items: center; }
.row .grow { flex: 1; min-width: 0; }

.switch { position: relative; flex: none; width: 50px; height: 30px; border-radius: 999px; background: var(--c-line); margin-left: 16px; transition: background-color .25s var(--ease); }
.switch::after { content: ""; position: absolute; top: 3px; left: 3px; width: 24px; height: 24px; border-radius: 50%; background: #fffefa; box-shadow: 0 1px 3px rgba(0,0,0,.18); transition: transform .25s var(--ease); }
.switch[aria-checked="true"] { background: var(--c-accent); }
.switch[aria-checked="true"]::after { -webkit-transform: translateX(20px); transform: translateX(20px); }
.panel.is-paused { border-color: var(--c-accent-soft); background: var(--c-accent-soft); }

.form-row { display: flex; margin-top: 14px; }
.input { flex: 1; min-width: 0; height: 44px; border: 1px solid var(--c-line); border-radius: var(--r-12); background: var(--c-cloud); padding: 0 14px; font-size: 16px; color: var(--c-ink); transition: border-color .2s, box-shadow .2s; }
.input:focus { border-color: var(--c-olive); box-shadow: 0 0 0 3px var(--c-olive-mist); }
.input::placeholder { color: var(--c-faint); }
.form-row .btn { height: 44px; margin-left: 10px; border-radius: var(--r-12); }

.fresh { margin-top: 16px; border-radius: var(--r-16); padding: 18px; background: var(--c-olive-mist); border: 1px solid var(--c-olive-soft); }
.fresh-k { font-size: 12px; letter-spacing: .12em; font-weight: 600; color: var(--c-olive); }
.fresh-l { font-size: 18px; font-weight: 600; margin-top: 4px; }
.url { display: block; width: 100%; margin-top: 12px; font: 400 14px/1.5 ui-monospace, "SF Mono", Menlo, monospace; color: var(--c-ink); background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--r-12); padding: 11px 13px; word-break: break-all; -webkit-user-select: all; user-select: all; resize: none; }
.copy-tip { font-size: 13px; color: var(--c-muted); margin-top: 10px; line-height: 1.6; }
.copy-tip.is-hot { color: var(--c-accent); }

.group-h { display: flex; align-items: baseline; font-size: 13px; font-weight: 600; letter-spacing: .08em; color: var(--c-muted); margin: 34px 0 12px; }
.group-h .n { font-family: var(--f-display); font-size: 18px; color: var(--c-olive); letter-spacing: 0; margin-left: 8px; }
.group-h .ln { flex: 1; height: 1px; background: var(--c-line-soft); margin-left: 12px; }

.lk { background: var(--c-surface); border: 1px solid var(--c-line-soft); border-radius: var(--r-16); padding: 16px 18px 12px; margin-bottom: 12px; box-shadow: 0 1px 2px var(--c-shadow); }
.lk.is-revoked { background: transparent; box-shadow: none; }
.lk.is-revoked .lk-l, .lk.is-revoked .stat-n { color: var(--c-muted); }
.lk-top { display: flex; align-items: flex-start; }
.lk-l { flex: 1; min-width: 0; font-size: 17px; font-weight: 600; line-height: 1.4; word-break: break-word; }
.lk-c { font-size: 13px; color: var(--c-faint); margin-top: 2px; }
.status { flex: none; font-size: 12px; line-height: 1; padding: 6px 10px; border-radius: 999px; margin-left: 12px; }
.status-on { color: var(--c-olive-dark); background: var(--c-olive-soft); }
.status-off { color: var(--c-muted); border: 1px solid var(--c-line); }
.status-paused { color: var(--c-accent); background: var(--c-accent-soft); }
.stats { display: flex; margin: 14px 0 4px; padding: 12px 0; border-top: 1px solid var(--c-line-soft); border-bottom: 1px solid var(--c-line-soft); }
.stat { flex: 1; min-width: 0; }
.stat + .stat { padding-left: 14px; border-left: 1px solid var(--c-line-soft); margin-left: 14px; }
.stat-n { display: block; font-family: var(--f-display); font-size: 26px; font-weight: 500; line-height: 1.1; color: var(--c-ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.stat-n.sm { font-family: var(--f-sans); font-size: 15px; font-weight: 600; line-height: 1.9; }
.stat-k { display: block; font-size: 12px; color: var(--c-faint); margin-top: 2px; }
.lk-acts { display: flex; align-items: center; flex-wrap: wrap; margin: 8px -4px 0; }
.lk-acts .btn { margin: 4px; }
.lk-acts .sp { flex: 1; }
.confirm { width: 100%; margin: 6px 4px 2px; padding: 12px 14px; border-radius: var(--r-12); background: var(--c-accent-soft); font-size: 14px; line-height: 1.6; color: var(--c-ink); }
.confirm .acts { margin-top: 10px; }

.empty { text-align: center; padding: 28px 16px; color: var(--c-muted); font-size: 15px; line-height: 1.7; border: 1px dashed var(--c-line); border-radius: var(--r-16); }
.empty .wordmark { display: block; font-size: 22px; color: var(--c-faint); margin-bottom: 6px; }

/* 访客记录 */
.back { display: inline-flex; align-items: center; font-size: 14px; color: var(--c-muted); padding: 8px 0; }
.back svg { width: 16px; height: 16px; margin-right: 4px; }
.vis { background: var(--c-surface); border: 1px solid var(--c-line-soft); border-radius: var(--r-16); margin-bottom: 12px; overflow: hidden; box-shadow: 0 1px 2px var(--c-shadow); }
.vis-h { display: flex; align-items: center; width: 100%; text-align: left; padding: 14px 16px; }
.vis-h .av { width: 36px; height: 36px; margin-right: 12px; }
.vis-h .av .mono { font-size: 15px; }
.vis-n { flex: 1; min-width: 0; }
.vis-name { display: block; font-size: 16px; font-weight: 600; line-height: 1.4; }
.vis-name .anon { color: var(--c-muted); font-weight: 500; }
.vis-name .vid { font: 400 12px/1 ui-monospace, "SF Mono", Menlo, monospace; color: var(--c-faint); margin-left: 6px; }
.vis-meta { display: block; font-size: 13px; color: var(--c-faint); margin-top: 1px; }
.chev { flex: none; width: 18px; height: 18px; color: var(--c-faint); transition: transform .25s var(--ease); margin-left: 10px; }
.vis.is-open .chev { -webkit-transform: rotate(180deg); transform: rotate(180deg); }
.vis-b { border-top: 1px solid var(--c-line-soft); padding: 4px 16px 16px; }
.qa { padding: 14px 0 16px; border-bottom: 1px solid var(--c-line-soft); }
.qa:last-child { border-bottom: 0; padding-bottom: 2px; }
.qa-q { display: flex; font-size: 16px; font-weight: 600; line-height: 1.6; color: var(--c-ink); }
.qa-q .mk { flex: none; font-family: var(--f-display); font-size: 22px; line-height: 1.1; color: var(--c-olive); margin-right: 8px; }
.qa-a { margin-top: 10px; padding-left: 14px; border-left: 2px solid var(--c-line-soft); }
.qa-a .unit { margin-bottom: 12px; }
.qa-a .unit-t { font-size: 15px; line-height: 1.75; color: var(--c-muted); }
.qa-a .tag { margin-top: 6px; }
.qa-ts { font-size: 12px; color: var(--c-faint); margin-top: 8px; }

/* 以前的对话(底部抽屉) */
.scrim { position: fixed; left: 0; top: 0; right: 0; bottom: 0; background: var(--c-scrim); z-index: 50; opacity: 0; transition: opacity .25s var(--ease); }
.scrim.on { opacity: 1; }
.sheet { position: fixed; left: 0; right: 0; bottom: 0; z-index: 51; max-height: 78vh; overflow-y: auto; -webkit-overflow-scrolling: touch; background: var(--c-cloud); border-radius: 20px 20px 0 0; padding: 8px 0 calc(16px + env(safe-area-inset-bottom)); -webkit-transform: translateY(100%); transform: translateY(100%); transition: transform .3s var(--ease); }
.sheet.on { -webkit-transform: none; transform: none; }
.sheet-in { max-width: var(--col); margin: 0 auto; padding: 0 var(--gut); }
.grab { width: 36px; height: 4px; border-radius: 2px; background: var(--c-line); margin: 4px auto 14px; }
.sheet-h { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.sheet-h h2 { font-size: 18px; font-weight: 600; }
.ses { display: block; width: 100%; text-align: left; padding: 14px 0; border-bottom: 1px solid var(--c-line-soft); }
.ses-t { display: block; font-size: 15px; line-height: 1.5; color: var(--c-ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ses-d { display: block; font-size: 12.5px; color: var(--c-faint); margin-top: 2px; }
.ses.is-cur .ses-d::after { content: " · 正在看"; color: var(--c-olive); }

.toast { position: fixed; left: 50%; bottom: calc(96px + env(safe-area-inset-bottom)); z-index: 60; -webkit-transform: translate(-50%, 10px); transform: translate(-50%, 10px); background: var(--c-ink); color: var(--c-cloud); font-size: 14px; padding: 10px 16px; border-radius: 999px; opacity: 0; transition: opacity .25s, transform .25s var(--ease); pointer-events: none; white-space: nowrap; }
.toast.on { opacity: 1; -webkit-transform: translate(-50%, 0); transform: translate(-50%, 0); }

/* ── 桌面 ── */
@media (min-width: 720px) {
  :root { --gut: 28px; }
  .portrait { width: 240px; height: 240px; margin-top: 18px; }
  .title { font-size: 54px; margin-top: 22px; }
  .tagline { font-size: 16px; }
  .lede { font-size: 18px; }
  .starters { display: flex; flex-wrap: wrap; margin: 0 -5px; }
  .starter { width: calc(50% - 10px); margin: 0 5px 10px; }
  .unit-t { font-size: 17.5px; }
  .composer { padding-bottom: calc(16px + env(safe-area-inset-bottom)); }
  .o-title { font-size: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { -webkit-animation-duration: .01ms !important; animation-duration: .01ms !important; -webkit-animation-iteration-count: 1 !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .think-line::after { display: none; }
}

/* 行内「的」:顶栏 / 回答署名里 */
.join { font-family: var(--f-zh); font-weight: 400; font-size: .86em; color: var(--c-muted); margin: 0 .25em; }
.a-by .name.latin { font-family: var(--f-display); font-size: 15px; font-weight: 600; color: var(--c-ink); }
.a-by .name.zh { color: var(--c-ink); font-weight: 600; }
.bar-who-n .name.zh { font-weight: 600; }
.link-sep { color: var(--c-faint); margin: 0 9px; font-size: 13px; }
.fresh-acts { margin-top: 14px; }
.fresh-acts .btn { height: 44px; padding: 0 20px; }
.btn-quiet { color: var(--c-muted); }
.bar-owner .av { margin-right: 10px; }
.lk .url { margin-top: 12px; }
.recs.is-empty { padding-bottom: 14px; }
.recs.is-empty .recs-h { margin-bottom: 0; }
.grow { flex: 1; min-width: 0; }
.field textarea:focus-visible, .nick input:focus-visible, .input:focus-visible { outline: none; }
.unit-meta { display: flex; align-items: center; flex-wrap: wrap; }
.unit-meta .tag { margin-top: 8px; }
.unit-meta .tag-n { margin-top: 8px; }
.unit-meta .fb { margin: 8px 0 0 auto; padding-left: 12px; white-space: nowrap; }
.unit-meta .link-btn { padding: 2px 0; }

/* ── 多段回答 · 出处分组 · 常识 ── */
.unit-t + .unit-t { margin-top: 12px; }
.unit-body { padding-left: 14px; border-left: 2px solid transparent; }
.u-said > .unit-body { border-left-color: var(--c-olive-soft); }
.u-infer > .unit-body { border-left-color: var(--c-aubergine-soft); }
.u-none > .unit-body { border-left: 2px dotted var(--c-line); }
.unit-body + .tag, .unit-body ~ .tag-x { margin-left: 16px; }
.qa-a .unit-body { padding-left: 0; border-left: 0; }
.qa-a .unit-body + .tag { margin-left: 0; }
@media (prefers-color-scheme: dark) {
  .u-said > .unit-body { border-left-color: #3d4230; }
  .u-infer > .unit-body { border-left-color: #4a3345; }
}
.tag-common { color: var(--c-faint); background: transparent; padding-left: 0; letter-spacing: .04em; }
.tag-common::before { width: 12px; height: 1px; border-radius: 0; opacity: .7; margin-right: 7px; }
.unit.u-common .unit-t { color: var(--c-muted); }
.composer-hint.is-hot { color: var(--c-accent); }
.card { text-align: left; }
.fatal-wrap { text-align: center; padding-top: 14vh; }
.fatal-wrap .fatal-mark { font-family: var(--f-display); font-weight: 500; font-size: 40px; line-height: 1; color: var(--c-ink); }
.fatal-wrap .card { margin-top: 0; }
body.is-fatal .bar .wordmark { visibility: hidden; }
.stat-n, .group-h .n, .seg a .count, .sec-h .num, .dom-i, .composer-hint b, .bar-meta b { font-variant-numeric: lining-nums; -webkit-font-feature-settings: "lnum" 1; font-feature-settings: "lnum" 1; }
.composer-hint b { font-family: var(--f-display); font-size: 15px; font-weight: 600; color: var(--c-ink); margin: 0 1px; }
.zh-join.tight, .join.tight { margin-left: .08em; }
.unit { margin-bottom: 22px; }
.qa-a .unit { margin-bottom: 12px; }
.a-disclose { display: flex; align-items: flex-start; font-size: 13px; line-height: 1.6; color: var(--c-muted); background: var(--c-olive-mist); border-radius: var(--r-12); padding: 9px 12px; margin: 0 0 16px; }
.a-disclose .ai { flex: none; font: 700 9.5px/1 var(--f-sans); letter-spacing: .06em; color: var(--c-olive); border: 1px solid currentColor; border-radius: 5px; padding: 3px 3px 2px 4px; margin: 2px 9px 0 0; }

/* ═════════ round3 · 访客页首屏(创意介绍)与移动端整页 ═════════ */
/* 顶栏在访客页不占首屏高度:滚过大标题才从上面滑下来 */
.page-v .bar { position: fixed; left: 0; right: 0; top: 0; -webkit-transform: translateY(-110%); transform: translateY(-110%); transition: transform .32s var(--ease), background-color .3s, box-shadow .3s; }
.page-v .bar.show-who { -webkit-transform: none; transform: none; }
.page-v .bar .bar-left > .wordmark { display: none; }
.page-v .bar .bar-who { opacity: 1; -webkit-transform: translateY(-50%); transform: translateY(-50%); pointer-events: auto; }
.page-v .boot { min-height: 60vh; }

.hero { padding-top: calc(18px + env(safe-area-inset-top)); padding-bottom: 0; }
.hero-in { text-align: center; }
.portrait { width: 40vw; height: 40vw; max-width: 184px; max-height: 184px; margin: 0 auto; }
.eyebrow { margin-top: 12px; font-family: var(--f-display); font-size: 19px; font-weight: 500; line-height: 1.3; color: var(--c-muted); letter-spacing: .01em; }
.eyebrow .name.latin, .eyebrow .latin { font-family: var(--f-display); font-weight: 600; color: var(--c-ink); }
.eyebrow .name.zh { font-family: var(--f-zh); font-size: 15px; font-weight: 600; color: var(--c-ink); }
.headline {
  margin: 10px auto 0;
  font-family: "Songti SC", "STSong", "Noto Serif SC", "Source Han Serif SC", "Source Han Serif CN", "Noto Serif CJK SC", var(--f-display);
  font-weight: 600; font-size: 31px; line-height: 1.34; letter-spacing: .04em; color: var(--c-ink);
}
.oneliner { max-width: 22em; margin: 12px auto 0; font-size: 15px; line-height: 1.75; color: var(--c-muted); }

/* 它怎么回答你 */
.how { text-align: left; margin: 20px 0 0; padding: 14px 16px 12px; background: var(--c-surface); border: 1px solid var(--c-line-soft); border-radius: var(--r-16); box-shadow: 0 1px 2px var(--c-shadow); }
.how-k { font-size: 12.5px; font-weight: 600; letter-spacing: .12em; color: var(--c-olive); margin-bottom: 4px; }
.how-r { display: flex; align-items: flex-start; padding: 8px 0; }
.how-ic { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--c-olive-mist); color: var(--c-olive); display: flex; align-items: center; justify-content: center; margin: 1px 12px 0 0; }
.how-ic svg { width: 17px; height: 17px; display: block; }
.how-t { flex: 1; min-width: 0; }
.how-b { font-size: 15px; font-weight: 600; line-height: 1.5; color: var(--c-ink); }
.how-d { font-size: 14px; line-height: 1.65; color: var(--c-muted); margin-top: 1px; }
.how-see { display: flex; align-items: center; border-top: 1px solid var(--c-line-soft); margin-top: 6px; padding-top: 10px; font-size: 14px; line-height: 1.6; color: var(--c-muted); }
.how-see svg { flex: none; width: 18px; height: 18px; color: var(--c-olive); margin: 0 12px 0 6px; }

/* 常聊的事(小标签,不可点)*/
.chips { display: flex; flex-wrap: wrap; margin: 0 -3px; }
.chip-d { margin: 0 3px 8px; padding: 7px 13px; border-radius: 999px; background: var(--c-olive-mist); color: var(--c-olive-dark); font-size: 14px; line-height: 1.4; }
.intro .sec { margin-top: 26px; }
.intro .sec-h { font-size: 13px; letter-spacing: .08em; margin-bottom: 10px; }
.starter { font-size: 15.5px; line-height: 1.55; padding: 12px 14px 12px 16px; min-height: 48px; margin-bottom: 8px; }

/* 称呼(可不填):一行,不抢戏 */
.intro .nick { margin-top: 10px; padding: 2px 16px; border: 1px dashed var(--c-line); border-top-style: dashed; border-radius: var(--r-14); background: transparent; }
.intro .nick label { font-size: 14px; }
.intro .nick input { height: 44px; }

/* 页脚两行 */
.colophon { padding: 36px 8px 18px; letter-spacing: .02em; line-height: 1.7; font-size: 12.5px; }
.colophon p + p { margin-top: 2px; }
.colophon .wordmark { font-size: 15px; }

/* 中文排版:行尾别剩一个字(支持的浏览器才生效)*/
.headline { text-wrap: balance; }
.oneliner, .how-d, .unit-t, .starter span, .q p, .card-b, .o-sub, .how-see span, .tag-x { text-wrap: pretty; }
.oneliner, .unit-t, .q p { line-break: strict; }

/* 触控目标 ≥ 44px */
.link-btn { min-height: 36px; }
.btn-sm { height: 38px; }
.chip { min-height: 40px; }
.tag { min-height: 26px; }
button.tag { position: relative; }
button.tag::after { content: ""; position: absolute; left: -4px; right: -4px; top: -9px; bottom: -9px; }
.send { width: 40px; height: 40px; }
.field { padding: 4px 4px 4px 16px; min-height: 50px; }

/* 回答正文:移动端舒适行高 */
.unit-t { font-size: 16.5px; line-height: 1.8; }
.q p { font-size: 15.5px; line-height: 1.65; }

/* 窄屏 320 */
@media (max-width: 359px) {
  :root { --gut: 16px; }
  .headline { font-size: 27px; }
  .eyebrow { font-size: 17px; }
  .how { padding: 12px 13px 10px; }
  .how-ic { margin-right: 10px; }
  .unit-t { font-size: 16px; }
}
/* 大屏手机 414 */
@media (min-width: 400px) and (max-width: 719px) {
  .headline { font-size: 33px; }
}
/* 矮屏(iPhone SE / 8 · 微信里再扣掉标题栏):头像再小一点,节奏收紧 */
@media (max-height: 700px) {
  .portrait { width: 36vw; height: 36vw; max-width: 150px; max-height: 150px; }
  .hero { padding-top: calc(12px + env(safe-area-inset-top)); }
  .eyebrow { margin-top: 8px; }
  .headline { margin-top: 6px; }
  .oneliner { margin-top: 8px; line-height: 1.7; }
  .how { margin-top: 16px; }
}
@media (max-height: 600px) {
  .portrait { width: 30vw; height: 30vw; max-height: 118px; max-width: 118px; }
  .headline { font-size: 26px; }
}
@media (min-width: 720px) {
  .portrait { width: 208px; height: 208px; max-width: none; max-height: none; }
  .headline { font-size: 38px; }
  .oneliner { font-size: 16px; }
  .how { padding: 16px 20px 14px; }
}

/* 主人页:页头下一行安静的定位句 · 「朋友会先看到这些」预览 */
.o-tag { text-align: center; font-size: 13px; line-height: 1.6; color: var(--c-muted); padding: 10px 0 0; letter-spacing: .02em; }
.o-tag .latin { font-family: var(--f-display); font-size: 15px; font-weight: 600; color: var(--c-ink); }
.preview { margin-top: 16px; }
.preview-k { display: flex; align-items: baseline; font-size: 13px; font-weight: 600; letter-spacing: .06em; color: var(--c-muted); margin-bottom: 10px; }
.preview-k .ln { flex: 1; height: 1px; background: var(--c-line-soft); margin-left: 12px; }
.phone { position: relative; margin: 0 auto; width: 100%; max-width: 340px; border: 1px solid var(--c-line); border-radius: 26px; background: var(--c-cloud); overflow: hidden; box-shadow: 0 8px 28px var(--c-shadow); }
.phone-in { width: 375px; padding: 0 20px 22px; -webkit-transform-origin: 0 0; transform-origin: 0 0; pointer-events: none; }
.phone-in .hero { padding-top: 22px; }
.phone-in .portrait { width: 150px; height: 150px; }
.phone-fade { position: absolute; left: 0; right: 0; bottom: 0; height: 36px; background: linear-gradient(rgba(246,245,241,0), var(--c-cloud)); }
@media (prefers-color-scheme: dark) { .phone-fade { background: linear-gradient(rgba(26,25,24,0), var(--c-cloud)); } }
.phone-in .headline { font-size: 31px; margin-top: 10px; }
.phone-in .eyebrow { margin-top: 12px; font-size: 19px; }
.phone-in .oneliner { font-size: 15px; margin-top: 12px; }
.phone-in .how { padding: 14px 16px 12px; margin-top: 20px; }
.oneliner { text-wrap: balance; color: var(--c-ink); opacity: .86; }
.colophon a { display: inline-block; padding: 12px 10px; margin: -10px 0 -12px; }
.seg a { padding: 11px 15px; }
.switch::before { content: ""; position: absolute; left: -8px; right: -8px; top: -8px; bottom: -8px; }
.back { min-height: 44px; }
@media (max-width: 359px) {
  .seg a { padding: 11px 12px; }
  .bar-owner .wordmark { font-size: 19px; }
  .o-title { font-size: 25px; }
  .stat + .stat { padding-left: 10px; margin-left: 10px; }
  .stat-n { font-size: 23px; }
  .form-row .btn { padding: 0 12px; }
}
.o-tag { text-wrap: balance; }
.nw { white-space: nowrap; }
@media (max-height: 700px) { .hero { padding-top: calc(18px + env(safe-area-inset-top)); } .portrait .av .mono { box-shadow: inset 0 0 0 1px var(--c-line-soft), 0 0 0 6px var(--c-cloud), 0 0 0 7px var(--c-line-soft); } }
