/* ============================================================
   π 计划 · AMC8  —— 设计令牌与基础层
   方向：Soft/Organic + 数学网格肌理
   暖米白底 / 深墨字 / 暖橙主色 / 松绿辅色

   设计系统版本：v1.4.0  （v1.2.1 内联间距收口到 --s* 令牌；v1.3.0 品牌 glow 令牌族；v1.4.0 字号阶梯 --fs-* 令牌收口内联 font-size）
   --brand-glow / --brand-glow-soft / --brand-glow-strong，消除硬编码品牌 rgba。
   令牌定义见 :root，变更见 web/DESIGN_SYSTEM.md）
   ============================================================ */

:root {
  /* --- 表面 --- */
  --bg: #FAF6EF;
  --bg-2: #F3ECE1;
  --surface: #FFFFFF;
  --surface-2: #FFFCF7;
  --surface-3: #F7F1E8;

  /* --- 墨色文字 --- */
  --ink: #241F19;
  --ink-2: #4C453B;
  --ink-3: #7C7365;
  --ink-4: #A79C8C;

  /* --- 描边 --- */
  --line: #E9E0D2;
  --line-2: #D9CDBA;

  /* --- 主色 暖橙 --- */
  --brand: #E3702C;
  --brand-ink: #B9500F;
  --brand-soft: #FDEDE1;
  --brand-line: #F6C9A8;

  /* --- 辅色 --- */
  --teal: #1F7A6C;
  --teal-soft: #E1F0EC;
  --blue: #2E6CA8;
  --blue-soft: #E6EFF8;
  --violet: #6A5AA8;
  --violet-soft: #EDEAF7;
  --gold: #C9920F;
  --gold-soft: #FAF0D5;
  --green: #3D8A5B;
  --green-soft: #E4F1E7;
  --red: #C2483A;
  --red-soft: #FBE6E3;

  /* --- 圆角 --- */
  --r-xs: 8px;
  --r-sm: 12px;
  --r: 16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-pill: 999px;

  /* --- 间距 --- */
  --s1: 4px;
  --s2: 8px;
  --s3: 12px;
  --s4: 16px;
  --s5: 24px;
  --s6: 32px;
  --s7: 48px;
  --s8: 64px;

  /* --- 阴影 --- */
  --sh-1: 0 1px 2px rgba(36, 31, 25, .05);
  --sh-2: 0 2px 8px rgba(36, 31, 25, .06), 0 1px 2px rgba(36, 31, 25, .04);
  --sh-3: 0 10px 30px rgba(36, 31, 25, .09), 0 2px 8px rgba(36, 31, 25, .05);
  --sh-4: 0 24px 60px rgba(36, 31, 25, .14);
  --sh-brand: 0 8px 22px rgba(227, 112, 44, .26);

  /* --- 字体 --- */
  --font: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC',
          'Hiragino Sans GB', 'Microsoft YaHei', 'Source Han Sans SC', sans-serif;
  --font-num: 'Outfit', var(--font);

  /* --- 字号阶梯（v1.4.0 新增）：语义 7 档 + 英雄/统计大数 2 档 + 微标 3 档 --- */
  --fs-display: 48px;   /* 大标题 / 英雄数字 */
  --fs-h1: 36px;        /* 页面主标题 */
  --fs-h2: 28px;        /* 区块标题 / stat 大数 */
  --fs-h3: 20px;        /* 三级标题 / 题面正文基准 */
  --fs-body: 16px;      /* 正文 */
  --fs-sm: 14px;        /* 卡片 / 列表正文 */
  --fs-xs: 12.5px;      /* 标签 / 提示 */
  --fs-hero: 46px;      /* 积分英雄大数（保持原值，避免可见回流） */
  --fs-stat: 24px;      /* 统计大数（保持原值） */
  --fs-12: 12px;        /* 密集元信息 */
  --fs-11: 11px;        /* uppercase eyebrow / badge 字 */
  --fs-10: 10px;        /* 微标 */

  /* --- 低龄友好（4.7）：最小触控尺寸 / 描边色 --- */
  --tap: 44px;
  --line-3: #CFC2AD;
  --green-line: #BFE0D2;

  --sidebar-w: 248px;
  --topbar-h: 68px;

  /* --- 品牌渐变端 / 加深（新增） --- */
  --brand-deep: #C2410C;
  --brand-tint: #FFB27A;
  --brand-soft-2: #FBDFCB;
  --brand-glow: color-mix(in srgb, var(--brand) 42%, transparent);
  --brand-glow-soft: color-mix(in srgb, var(--brand) 20%, transparent);
  --brand-glow-strong: color-mix(in srgb, var(--brand) 50%, transparent);

  /* --- 辅色文字(ink)/描边(line) 变体：补全 *-soft 的语义三元组（新增） --- */
  --teal-ink: #14574C;   --teal-line: #BFE0D8;
  --blue-ink: #1F5488;   --blue-line: #C6DCF0;
  --violet-ink: #4A3E82; --violet-line: #D9D2EF;
  --gold-ink: #8A6308;   --gold-line: #EFDCA8;
  --green-ink: #1F5A34;  --green-line: #BFE0D2;   /* 与既有 --green-line 一致 */
  --red-ink: #8F3127;    --red-line: #F2C7C0;
  --red-soft-2: #F7D5D0;

  /* --- 深咖色表面渐变阶：收敛原本散落、彼此近似的多组渐变（新增） --- */
  --espresso-B: #3A2E1C;
  --espresso-C: #5A3A17;
  --espresso-warm-B: #4A3418;
  --espresso-warm-C: #6B4415;
  --ink-hover: #3A332A;
  --alert-active: #F0796A;

  /* --- 深底文字 / 暖白（新增） --- */
  --on-dark: #FFF8EE;       /* 落于 --ink / 品牌深底 */
  --on-espresso: #FFF6E9;   /* 落于深咖渐变 */
  --cream-eyebrow: #E9A277;
  --cream-accent: #FFD1AC;

  /* --- 终端 / 骨架 / 滚动条（新增） --- */
  --log-bg: #1E1A14; --log-text: #C9C0B2; --log-dim: #6E6559;
  --log-ok: #7BD6A6;  --log-warn: #E8C36A;
  --skeleton-a: #EFE7DA; --skeleton-b: #F7F1E8;
  --scroll: #DED3C3;
}

/* ============ 重置 ============ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, h5, p, figure, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; padding: 0; }
a { color: inherit; text-decoration: none; }
table { border-collapse: collapse; width: 100%; }
:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ============ 背景肌理：数学网格 + 暖光 ============ */
body::before, body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
body::before {
  background-image:
    linear-gradient(to right, rgba(36, 31, 25, .045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(36, 31, 25, .045) 1px, transparent 1px);
  background-size: 30px 30px;
}
body::after {
  background:
    radial-gradient(900px 520px at 8% -12%, rgba(227, 112, 44, .12), transparent 62%),
    radial-gradient(760px 480px at 102% 4%, rgba(31, 122, 108, .09), transparent 60%);
}

/* ============ 排版 ============ */
.h-display {
  font-size: clamp(30px, 4.6vw, 52px);
  line-height: 1.08;
  letter-spacing: -.03em;
  font-weight: 700;
}
.h1 { font-size: clamp(24px, 2.6vw, 32px); line-height: 1.2; letter-spacing: -.02em; font-weight: 700; }
.h2 { font-size: var(--fs-h3); line-height: 1.3; letter-spacing: -.015em; font-weight: 650; }
.h3 { font-size: var(--fs-body); line-height: 1.4; font-weight: 650; }
.h4 { font-size: var(--fs-sm); line-height: 1.4; font-weight: 650; }
.t-sm { font-size: var(--fs-xs); }
.t-xs { font-size: var(--fs-12); }
.muted { color: var(--ink-3); }
.muted-2 { color: var(--ink-4); }
.strong { font-weight: 650; }
.num { font-family: var(--font-num); font-variant-numeric: tabular-nums; letter-spacing: -.01em; }
.mono { font-variant-numeric: tabular-nums; }
.center { text-align: center; }
.right { text-align: right; }
.nowrap { white-space: nowrap; }

.eyebrow {
  font-size: var(--fs-11);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-4);
}

/* ============ 布局工具 ============ */
.row { display: flex; align-items: center; gap: var(--s3); }
.row-t { display: flex; align-items: center; justify-content: space-between; gap: var(--s3); }
.row-wrap { display: flex; flex-wrap: wrap; gap: var(--s3); }
.col { display: flex; flex-direction: column; gap: var(--s3); }
.grow { flex: 1 1 auto; min-width: 0; }
.spacer { flex: 1 1 auto; }
.g2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s4); }
.g3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s4); }
.g4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--s4); }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: var(--s4); }
.grid-auto-lg { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: var(--s4); }
.stack { display: flex; flex-direction: column; gap: var(--s5); }
.stack-sm { display: flex; flex-direction: column; gap: var(--s3); }

/* ============ 卡片 ============ */
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s5);
  box-shadow: var(--sh-1);
}
.card-pad-sm { padding: var(--s4); }
.card-flat { box-shadow: none; }
.card-tint { background: var(--surface-2); }
.card-hover { transition: transform .22s cubic-bezier(.2,.7,.3,1), box-shadow .22s ease, border-color .22s ease; }
.card-hover:hover { transform: translateY(-3px); box-shadow: var(--sh-3); border-color: var(--line-2); }

.card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--s3); margin-bottom: var(--s4); }
.card-title { font-size: var(--fs-body); font-weight: 650; letter-spacing: -.01em; }
.card-sub { font-size: var(--fs-xs); color: var(--ink-3); margin-top: 2px; }

/* ============ 按钮 ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 18px;
  border-radius: var(--r-pill);
  font-size: var(--fs-sm);
  font-weight: 600;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform .16s cubic-bezier(.2,.7,.3,1), box-shadow .2s ease,
              background-color .2s ease, border-color .2s ease, color .2s ease;
  user-select: none;
}
.btn:active { transform: scale(.97); }
.btn[disabled] { opacity: .5; pointer-events: none; }
.btn .ic { width: 17px; height: 17px; flex: none; }

.btn-primary { background: var(--brand-deep); color: #fff; box-shadow: var(--sh-brand); }
.btn-primary:hover { background: var(--brand-deep); filter: brightness(.92); box-shadow: 0 10px 26px rgba(194, 65, 12, .36); }
.btn-dark { background: var(--ink); color: var(--on-dark); }
.btn-dark:hover { background: var(--ink-hover); }
.btn-outline { border-color: var(--line-2); color: var(--ink-2); background: var(--surface); }
.btn-outline:hover { border-color: var(--ink-3); color: var(--ink); background: var(--surface-3); }
.btn-ghost { color: var(--ink-2); }
.btn-ghost:hover { background: var(--bg-2); color: var(--ink); }
.btn-soft { background: var(--brand-soft); color: var(--brand-ink); }
.btn-soft:hover { background: var(--brand-soft-2); }
.btn-danger { background: var(--red-soft); color: var(--red); }
.btn-danger:hover { background: var(--red-soft-2); }

.btn-sm { height: 32px; padding: 0 14px; font-size: var(--fs-xs); }
.btn-lg { height: 48px; padding: 0 26px; font-size: var(--fs-body); }
.btn-block { width: 100%; }
.btn-icon { width: 40px; padding: 0; }
.btn-icon.btn-sm { width: 32px; }

.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: var(--r-pill);
  color: var(--ink-3); transition: background-color .18s ease, color .18s ease;
}
.icon-btn:hover { background: var(--bg-2); color: var(--ink); }
.icon-btn .ic { width: 18px; height: 18px; }

/* ============ 徽章 / 标签 ============ */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  height: 24px; padding: 0 10px; border-radius: var(--r-pill);
  font-size: var(--fs-12); font-weight: 650; letter-spacing: .01em;
  background: var(--bg-2); color: var(--ink-2); white-space: nowrap;
}
.badge-dot::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.b-brand { background: var(--brand-soft); color: var(--brand-ink); }
.b-teal { background: var(--teal-soft); color: var(--teal); }
.b-blue { background: var(--blue-soft); color: var(--blue); }
.b-violet { background: var(--violet-soft); color: var(--violet); }
.b-gold { background: var(--gold-soft); color: var(--gold); }
.b-green { background: var(--green-soft); color: var(--green); }
.b-red { background: var(--red-soft); color: var(--red); }
.b-gray { background: var(--bg-2); color: var(--ink-3); }

.chip {
  display: inline-flex; align-items: center; gap: 6px;
  height: 32px; padding: 0 14px; border-radius: var(--r-pill);
  border: 1px solid var(--line); background: var(--surface);
  font-size: var(--fs-xs); font-weight: 550; color: var(--ink-2);
  transition: all .18s ease;
}
.chip:hover { border-color: var(--line-2); color: var(--ink); }
.chip[aria-pressed="true"], .chip.is-active {
  background: var(--ink); border-color: var(--ink); color: var(--on-dark);
}
.chip-sm { height: 28px; padding: 0 11px; font-size: var(--fs-12); }

/* ============ 表单 ============ */
.field { display: flex; flex-direction: column; gap: 7px; }
.label { font-size: var(--fs-xs); font-weight: 650; color: var(--ink-2); }
.label-hint { font-weight: 450; color: var(--ink-4); }
.input, .select, .textarea {
  width: 100%;
  height: 42px;
  padding: 0 14px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line-2);
  background: var(--surface);
  font-size: var(--fs-sm);
  color: var(--ink);
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.textarea { height: auto; min-height: 96px; padding: 12px 14px; line-height: 1.6; resize: vertical; }
.input::placeholder, .textarea::placeholder { color: var(--ink-4); }
.input:hover, .select:hover, .textarea:hover { border-color: var(--ink-4); }
.input:focus, .select:focus, .textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(227, 112, 44, .16);
}
.select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237C7365' stroke-width='2.2' stroke-linecap='round'><path d='m6 9 6 6 6-6'/></svg>");
  background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px;
}
/* ============ 图标默认尺寸 ============ */
.ic { width: 18px; height: 18px; flex: none; }

.input-affix { position: relative; }
.input-affix .input { padding-left: 40px; }
.input-affix > .ic {
  position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
  width: 17px; height: 17px; color: var(--ink-4); pointer-events: none;
}
.input-affix .suffix { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); }

.check { display: inline-flex; align-items: center; gap: 9px; cursor: pointer; font-size: var(--fs-sm); color: var(--ink-2); }
.check input { position: absolute; opacity: 0; pointer-events: none; }
.check-box {
  width: 18px; height: 18px; border-radius: 6px; border: 1.5px solid var(--line-2);
  background: var(--surface); display: grid; place-items: center; flex: none;
  transition: all .16s ease;
}
.check-box .ic { width: 12px; height: 12px; color: #fff; opacity: 0; transform: scale(.6); transition: all .16s ease; }
.check input:checked + .check-box { background: var(--brand); border-color: var(--brand); }
.check input:checked + .check-box .ic { opacity: 1; transform: scale(1); }
.check input:focus-visible + .check-box { outline: 2px solid var(--brand); outline-offset: 2px; }

.switch { display: inline-flex; align-items: center; gap: 10px; cursor: pointer; }
.switch input { position: absolute; opacity: 0; pointer-events: none; }
.switch-track {
  width: 40px; height: 23px; border-radius: var(--r-pill); background: var(--line-2);
  position: relative; transition: background-color .2s ease; flex: none;
}
.switch-track::after {
  content: ""; position: absolute; top: 2.5px; left: 2.5px; width: 18px; height: 18px;
  border-radius: 50%; background: #fff; box-shadow: var(--sh-1);
  transition: transform .22s cubic-bezier(.2,.7,.3,1);
}
.switch input:checked + .switch-track { background: var(--brand); }
.switch input:checked + .switch-track::after { transform: translateX(17px); }

.range { -webkit-appearance: none; appearance: none; width: 100%; height: 5px; border-radius: var(--r-pill); background: var(--line); outline: none; }
.range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 19px; height: 19px; border-radius: 50%;
  background: var(--brand); border: 3px solid #fff; box-shadow: var(--sh-2); cursor: pointer;
}
.range::-moz-range-thumb {
  width: 15px; height: 15px; border-radius: 50%; background: var(--brand);
  border: 3px solid #fff; box-shadow: var(--sh-2); cursor: pointer;
}

/* ============ 进度 ============ */
.bar { height: 8px; border-radius: var(--r-pill); background: var(--bg-2); overflow: hidden; }
.bar > i { display: block; height: 100%; border-radius: var(--r-pill); background: var(--brand); transition: width .8s cubic-bezier(.2,.7,.3,1); }
.bar-sm { height: 6px; }
.bar-lg { height: 12px; }

/* ============ 表格 ============ */
.table-wrap { overflow-x: auto; margin: 0 calc(-1 * var(--s5)); padding: 0 var(--s5); }
.tbl { font-size: var(--fs-sm); }
.tbl th {
  text-align: left; font-size: var(--fs-12); font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--ink-4); padding: 0 12px 10px;
  border-bottom: 1px solid var(--line); white-space: nowrap;
}
.tbl td { padding: 13px 12px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.tbl tbody tr { transition: background-color .16s ease; }
.tbl tbody tr:hover { background: var(--surface-3); }
.tbl tbody tr:last-child td { border-bottom: 0; }
.tbl .num { font-weight: 600; }

/* ============ 头像 ============ */
.avatar {
  width: 36px; height: 36px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-size: var(--fs-xs); font-weight: 700; color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  box-shadow: 0 2px 8px rgba(227, 112, 44, .3);
}
.avatar-sm { width: 28px; height: 28px; font-size: var(--fs-11); }
.avatar-lg { width: 60px; height: 60px; font-size: var(--fs-h3); border-radius: 20px; }

/* ============ 分割 / 空态 ============ */
.hr { height: 1px; background: var(--line); border: 0; margin: 0; }
.divider-dashed { height: 0; border-top: 1px dashed var(--line-2); }

/* ============ 提示条 ============ */
.note {
  display: flex; gap: 11px; padding: 13px 15px; border-radius: var(--r);
  background: var(--surface-3); border: 1px solid var(--line);
  font-size: var(--fs-xs); color: var(--ink-2); line-height: 1.6;
}
.note .ic { width: 17px; height: 17px; flex: none; margin-top: 2px; }
.note-brand { background: var(--brand-soft); border-color: var(--brand-line); color: var(--brand-ink); }
.note-teal { background: var(--teal-soft); border-color: var(--teal-line); color: var(--teal-ink); }
.note-gold { background: var(--gold-soft); border-color: var(--gold-line); color: var(--gold-ink); }
.note-red { background: var(--red-soft); border-color: var(--red-line); color: var(--red-ink); }
.note-blue { background: var(--blue-soft); border-color: var(--blue-line); color: var(--blue-ink); }

/* ============ Toast ============ */
#toast-host {
  position: fixed; z-index: 9999; top: 18px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; gap: 10px; align-items: center; pointer-events: none;
}
.toast {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 18px; border-radius: var(--r-pill);
  background: var(--ink); color: var(--on-dark); font-size: var(--fs-sm); font-weight: 550;
  box-shadow: var(--sh-4); animation: toast-in .32s cubic-bezier(.2,.9,.3,1);
}
.toast .ic { width: 16px; height: 16px; }
.toast-ok .ic { color: var(--log-ok); }
.toast-err { background: var(--red); color: #fff; }
.toast-out { animation: toast-out .26s ease forwards; }
@keyframes toast-in { from { opacity: 0; transform: translateY(-14px) scale(.96); } to { opacity: 1; transform: none; } }
@keyframes toast-out { to { opacity: 0; transform: translateY(-10px) scale(.97); } }

/* ============ 动画 ============ */
.reveal { opacity: 0; transform: translateY(16px); animation: reveal-up .58s cubic-bezier(.2,.7,.3,1) forwards; }
@keyframes reveal-up { to { opacity: 1; transform: none; } }
.d1 { animation-delay: .06s; } .d2 { animation-delay: .12s; } .d3 { animation-delay: .18s; }
.d4 { animation-delay: .24s; } .d5 { animation-delay: .30s; } .d6 { animation-delay: .36s; }
.d7 { animation-delay: .42s; } .d8 { animation-delay: .48s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============ 滚动条 ============ */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--scroll); border-radius: 99px; border: 3px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--ink-4); }

/* ============ 响应式 ============ */
@media (max-width: 1100px) {
  .g4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .g3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .g2, .g3, .g4 { grid-template-columns: minmax(0, 1fr); }
  .card { padding: var(--s4); border-radius: var(--r); }
  .table-wrap { margin: 0 calc(-1 * var(--s4)); padding: 0 var(--s4); }
}

/* ============ 低龄适配（4.7）：孩子端字号更大、触控目标更大 ============ */
body[data-audience="kid"] { font-size: var(--fs-body); line-height: 1.72; }
body[data-audience="kid"] .h1 { font-size: clamp(26px, 3vw, 36px); }
body[data-audience="kid"] .h2 { font-size: var(--fs-h3); }
body[data-audience="kid"] .h3 { font-size: var(--fs-body); }
body[data-audience="kid"] .btn { height: 46px; font-size: var(--fs-body); }
body[data-audience="kid"] .btn-sm { height: 40px; }
body[data-audience="kid"] .icon-btn { width: 44px; height: 44px; }
body[data-audience="kid"] .icon-btn .ic { width: 20px; height: 20px; }
body[data-audience="kid"] .nav-item { min-height: 48px; font-size: var(--fs-body); }
body[data-audience="kid"] .chip { height: 38px; font-size: var(--fs-sm); }
body[data-audience="kid"] .input,
body[data-audience="kid"] .select,
body[data-audience="kid"] .textarea { font-size: var(--fs-body); }
body[data-audience="kid"] .input,
body[data-audience="kid"] .select { height: 48px; }
body[data-audience="kid"] .opt { min-height: 58px; padding: 15px 18px; font-size: var(--fs-body); }
body[data-audience="kid"] .check { font-size: var(--fs-body); }
body[data-audience="kid"] .todo-main b { font-size: var(--fs-body); }
body[data-audience="kid"] .speak-rec { height: 58px; font-size: var(--fs-body); }
