/* ============================================================
   AIGG Design System
   ------------------------------------------------------------
   共享给所有前端入口:
     - landing/index.html         项目主页
     - device-sim-web/index.html  设备模拟器
     - pgc-studio/index.html      PGC 内容工作室
     - ugc-studio/index.html      UGC 创作者工作室
     - buyer-portal/index.html    家庭买家市场
     - parent_app/...             家长 App
   
   设计哲学:
     温暖明亮的米白底,胶囊按钮 + 大圆角卡片 + 糖果色 art,
     强调 Nunito 字体的厚重无衬线 → "温馨的实体玩具感"。
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;600;700;800;900&family=Nunito:wght@400;600;700;800;900&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  /* 色板 - 中性 */
  --bg: #FFFFFF;
  --surface: #F4F5F7;
  --surface-2: #EAECEF;
  --line: #E2E4E8;
  --line-2: #CFD2D7;
  --ink: #1B1B1F;
  --ink-2: #3D3F45;
  --ink-3: #6E7079;
  --ink-4: #A4A6AC;

  /* 色板 - 品牌(温暖糖果色) */
  --red: #E63946;
  --red-2: #C92633;
  --coral: #FF7A59;
  --amber: #FFB23F;
  --mint: #3CCB8B;
  --mint-2: #1B7A4F;
  --blue: #4F8DEF;
  --blue-2: #3158BD;
  --purple: #9B6FE8;
  --purple-2: #6B3FB8;
  --pink: #FF6FA8;
  --pink-2: #B83A7A;
  --sky: #5BC8E6;

  /* 字体 */
  --sans: 'Inter', 'Nunito', 'Noto Sans SC', sans-serif;
  --display: 'Nunito', 'Noto Sans SC', sans-serif;

  /* 阴影 */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 6px 18px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 14px 32px rgba(0, 0, 0, 0.10);
  --shadow-red: 0 6px 16px rgba(230, 57, 70, 0.30);
}

/* ============================================================
   Reset
   ============================================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img, svg { display: block; max-width: 100%; }

/* ============================================================
   Layout
   ============================================================ */
.page { max-width: 1480px; margin: 0 auto; background: var(--bg); }

/* 全局可用的滚动渐入 */
.scroll-fx {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s, transform 0.6s;
}
.scroll-fx.in { opacity: 1; transform: translateY(0); }

/* ============================================================
   Brand mark — 全局复用
   ============================================================ */
.aigg-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.aigg-brand-mark {
  height: 42px;
  padding: 0 14px;
  border-radius: 13px;
  background: linear-gradient(155deg, #FFF6EE 0%, #FBE7D6 55%, #F5D5B8 100%);
  display: grid;
  place-items: center;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 0 0 1px rgba(230, 57, 70, 0.10),
    0 6px 18px rgba(180, 90, 50, 0.18);
  position: relative;
  overflow: hidden;
}
.aigg-brand-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.6) 0%, transparent 40%);
  pointer-events: none;
}
.aigg-brand-mark .wm {
  font-family: var(--display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(155deg, #E63946 0%, #D2453A 55%, #A82E27 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
}
.aigg-brand-mark .wm-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--red);
  margin-left: 2px;
  align-self: flex-start;
  margin-top: 3px;
  box-shadow: 0 0 0 2px rgba(230, 57, 70, 0.18);
}
.aigg-brand-name {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  color: var(--ink-2);
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.aigg-brand-name .sub {
  display: block;
  font-size: 9.5px;
  font-weight: 600;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
/* 暗底版本(放在 footer / 暗色 hero) */
.aigg-brand.on-dark .aigg-brand-mark {
  background: linear-gradient(155deg, #1F1A16 0%, #2A2320 55%, #1A1613 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 0 0 1px rgba(230, 57, 70, 0.18),
    0 6px 18px rgba(0, 0, 0, 0.4);
}
.aigg-brand.on-dark .aigg-brand-mark .wm {
  background: linear-gradient(155deg, #FBE7D6 0%, #F5D5B8 55%, #E8B98E 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.aigg-brand.on-dark .aigg-brand-mark .wm-dot { background: #FFB89A; }
.aigg-brand.on-dark .aigg-brand-name { color: #fff; }
.aigg-brand.on-dark .aigg-brand-name .sub { color: var(--ink-4); }

/* ============================================================
   Topbar
   ============================================================ */
.aigg-topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 14px 28px;
}
.aigg-topnav { display: flex; gap: 2px; justify-self: start; }
.aigg-topnav a {
  font-size: 14.5px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 99px;
  color: var(--ink-2);
  font-family: var(--display);
  transition: all 0.15s;
}
.aigg-topnav a:hover { color: var(--ink); background: var(--surface); }
.aigg-topnav a.active { color: #fff; background: var(--red); }
.aigg-topcta { display: flex; gap: 10px; align-items: center; }
.aigg-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 9px 14px;
  border-radius: 99px;
  font-size: 13px;
  color: var(--ink-3);
  min-width: 220px;
  transition: all .15s;
}
.aigg-search:focus-within {
  background: #fff;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.10);
}
.aigg-search input {
  border: 0;
  outline: 0;
  background: transparent;
  flex: 1;
  font-size: 13px;
  color: var(--ink);
  font-family: inherit;
  padding: 0;
  min-width: 0;
}
.aigg-search input::placeholder { color: var(--ink-3); }
.aigg-search .ico {
  width: 14px; height: 14px;
  border: 1.8px solid var(--ink-3);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.aigg-search .ico::after {
  content: "";
  position: absolute;
  width: 5px; height: 1.8px;
  background: var(--ink-3);
  bottom: -3px; right: -3px;
  transform: rotate(45deg);
  transform-origin: left;
}

/* ============ 搜索建议下拉 ============ */
.search-suggest {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  max-height: 460px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
}
.search-suggest.on { display: block; }

.search-suggest .suggest-head {
  padding: 10px 16px 6px;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 800;
}

.search-suggest .suggest-item {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--line);
  transition: background 0.12s;
}
.search-suggest .suggest-item:last-child { border-bottom: 0; }
.search-suggest .suggest-item:hover,
.search-suggest .suggest-item.active {
  background: var(--surface);
}

.search-suggest .suggest-glyph {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 900; font-size: 14px;
  color: #fff;
  background: var(--red);
  flex-shrink: 0;
}
.search-suggest .suggest-glyph.companion { background: #1B7A4F; }
.search-suggest .suggest-glyph.mystery   { background: #7A2DB5; }
.search-suggest .suggest-glyph.party     { background: #E68722; }
.search-suggest .suggest-glyph.learning  { background: #2A6BD8; }
.search-suggest .suggest-glyph.fitness   { background: #E63946; }
.search-suggest .suggest-glyph.wellness  { background: #3CCB8B; }
.search-suggest .suggest-glyph.creator   { background: #FF6B9D; }

.search-suggest .suggest-text {
  min-width: 0;
}
.search-suggest .suggest-title {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-suggest .suggest-title em {
  color: var(--red);
  font-style: normal;
  font-weight: 900;
  background: rgba(230, 57, 70, 0.10);
  padding: 1px 3px;
  border-radius: 3px;
}
.search-suggest .suggest-meta {
  font-size: 11.5px;
  color: var(--ink-3);
  margin-top: 2px;
  font-family: var(--display);
  font-weight: 700;
}

.search-suggest .suggest-tag {
  font-family: var(--display);
  font-size: 10px;
  font-weight: 800;
  color: var(--ink-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-suggest .suggest-empty {
  padding: 24px 16px;
  text-align: center;
  color: var(--ink-3);
  font-size: 13px;
  font-family: var(--display);
}

.search-suggest .suggest-footer {
  padding: 12px 16px;
  background: var(--surface);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  color: var(--red);
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.search-suggest .suggest-footer:hover { background: var(--surface-2); }
.search-suggest .suggest-footer .arr { margin-left: 6px; }

/* ============================================================
   Buttons - 胶囊型,温暖红主调
   ============================================================ */
.btn {
  font-size: 14px;
  font-weight: 800;
  padding: 10px 18px;
  border-radius: 99px;
  font-family: var(--display);
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-ghost {
  color: var(--ink);
  border: 1.5px solid var(--line-2);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--ink); background: var(--surface); }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-2); box-shadow: var(--shadow-red); }
.btn-light { background: #fff; color: var(--red); font-weight: 900; }
.btn-light:hover { background: var(--surface); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-2); }
.btn-line {
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  background: transparent;
}
.btn-line:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; }
.btn-sm { font-size: 12px; padding: 7px 14px; }
.btn-lg { font-size: 15px; padding: 12px 22px; }

/* 箭头图标 */
.btn .arr {
  width: 14px; height: 14px;
  display: inline-block;
  position: relative;
}
.btn .arr::before {
  content: "";
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 2px;
  background: currentColor;
  transform: translateY(-50%);
}
.btn .arr::after {
  content: "";
  position: absolute;
  top: 50%; right: 0;
  width: 7px; height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

/* ============================================================
   Section header — 序号 + 大标题 + en 字幕
   ============================================================ */
.aigg-section { padding: 64px 28px; border-top: 1px solid var(--line); position: relative; }
.aigg-section.no-top { border-top: none; }
.aigg-section.bg-surface { background: var(--surface); }
.sec-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}
.sec-num {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.sec-num .bar { width: 24px; height: 2px; background: var(--red); border-radius: 2px; }
.sec-title {
  font-family: var(--display);
  font-size: 46px;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.02;
  color: var(--ink);
}
.sec-title em { font-style: normal; color: var(--red); }
.sec-title .en {
  display: block;
  font-size: 0.32em;
  font-weight: 600;
  color: var(--ink-3);
  margin-top: 8px;
}
.sec-meta {
  font-family: var(--display);
  font-size: 12px;
  color: var(--ink-3);
  text-align: right;
  line-height: 1.7;
}
.sec-meta b { color: var(--ink); font-weight: 800; }

/* ============================================================
   Eyebrow / Pills / Chips
   ============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  padding: 7px 14px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.9);
}
.eyebrow .dot {
  width: 7px; height: 7px;
  background: var(--red);
  border-radius: 50%;
  animation: aigg-blink 1.6s infinite;
}
@keyframes aigg-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.pill {
  font-family: var(--display);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 6px 12px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink-2);
  border: 1px solid rgba(255, 255, 255, 0.95);
  display: inline-block;
}
.pill-solid { background: var(--ink); color: #fff; border-color: var(--ink); }
.pill-red { background: var(--red); color: #fff; border-color: var(--red); }
.pill-mint { background: var(--mint); color: #fff; border-color: var(--mint); }

/* Chip group(可点击的过滤器) */
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chips button {
  padding: 9px 16px;
  border-radius: 99px;
  font-family: var(--display);
  font-size: 13.5px;
  font-weight: 800;
  color: var(--ink-2);
  background: var(--surface);
  border: 1.5px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.15s;
}
.chips button:hover { background: var(--surface-2); }
.chips button.on { background: var(--ink); color: #fff; }
.chips button .ct { font-size: 11px; opacity: 0.55; font-weight: 700; }
.chips button.on .ct { color: #fff; opacity: 0.7; }

/* ============================================================
   Cards 通用
   ============================================================ */
.aigg-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.aigg-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.aigg-card .art {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.aigg-card .art .glow {
  position: absolute;
  width: 60%;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.65;
  pointer-events: none;
}
.aigg-card .art .deco {
  position: absolute;
  inset: 14%;
  border: 2px dashed rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  pointer-events: none;
}
.aigg-card .art .deco::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}
.aigg-card .art .glyph {
  position: relative;
  z-index: 2;
  font-family: var(--display);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* 渐变 art 背景 - 给所有 card 复用 */
.bg-coral { background: linear-gradient(135deg, #FF6F4A 0%, #E63946 100%); }
.bg-mint  { background: linear-gradient(135deg, #7CDDA8 0%, #1B9D6A 100%); }
.bg-blue  { background: linear-gradient(135deg, #7B9CFF 0%, #3158BD 100%); }
.bg-purple{ background: linear-gradient(135deg, #A98AE6 0%, #7544C5 100%); }
.bg-amber { background: linear-gradient(135deg, #FFC169 0%, #E68722 100%); }
.bg-pink  { background: linear-gradient(135deg, #FF9DC4 0%, #E63B85 100%); }
.bg-sky   { background: linear-gradient(135deg, #7BD9F2 0%, #2A92BD 100%); }
.bg-warm  { background: linear-gradient(135deg, #FFE2D0 0%, #FFAA80 100%); }
.bg-fresh { background: linear-gradient(135deg, #D4F1E6 0%, #6FCFA3 100%); }
.bg-cool  { background: linear-gradient(135deg, #E0E8FF 0%, #8FA8FF 100%); }

.glow-amber { background: #FFD66B; }
.glow-mint  { background: #5DE2A3; }
.glow-pink  { background: #FF7BB3; }
.glow-blue  { background: #9DB7FF; }
.glow-coral { background: #FFB089; }
.glow-purple{ background: #B58FF0; }

/* ============================================================
   Toast(全局通知)
   ============================================================ */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 12px 20px;
  border-radius: 99px;
  background: var(--ink);
  color: #fff;
  z-index: 9999;
  font-weight: 700;
  font-family: var(--display);
  font-size: 13px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transition: all 0.3s;
}
.toast.success { background: var(--mint); }
.toast.error   { background: var(--red); }
.toast.warn    { background: var(--amber); color: var(--ink); }
.toast.hide    { opacity: 0; transform: translateY(20px); }

/* ============================================================
   Footer 暗底
   ============================================================ */
.aigg-footer { padding: 54px 28px 28px; background: var(--ink); color: #E5E6E9; }
.aigg-footer .foot-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}
.aigg-footer .foot-brand p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-4);
  max-width: 340px;
  margin: 16px 0;
}
.aigg-footer .newsletter {
  display: flex;
  border-radius: 99px;
  overflow: hidden;
  margin-top: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.aigg-footer .newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  padding: 11px 18px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
}
.aigg-footer .newsletter input::placeholder { color: #777; }
.aigg-footer .newsletter button {
  padding: 11px 18px;
  background: var(--red);
  color: #fff;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 900;
  cursor: pointer;
  border-radius: 99px;
}
.aigg-footer .foot-col h5 {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 16px;
  font-weight: 900;
}
.aigg-footer .foot-col ul { list-style: none; }
.aigg-footer .foot-col li { margin-bottom: 9px; }
.aigg-footer .foot-col li a {
  font-family: var(--display);
  font-size: 14px;
  color: #D5D6DA;
  font-weight: 700;
  transition: color 0.15s;
}
.aigg-footer .foot-col li a:hover { color: var(--coral); }
.aigg-footer .foot-col li a small {
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--coral);
  background: rgba(255, 122, 89, 0.18);
  padding: 2px 6px;
  margin-left: 6px;
  border-radius: 4px;
  font-weight: 900;
  text-transform: uppercase;
}
.aigg-footer .foot-col li a small.green {
  color: var(--mint);
  background: rgba(60, 203, 139, 0.18);
}
.aigg-footer .foot-bot {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  font-size: 11px;
  color: #777;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.aigg-footer .foot-bot .links { display: flex; gap: 24px; }
.aigg-footer .foot-bot .links a:hover { color: #fff; }

/* ============================================================
   Form Controls — 输入框/选择器,保持胶囊圆润
   ============================================================ */
.field {
  display: block;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 6px;
}
.input, .select, .textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 14px;
  padding: 11px 16px;
  border: 1.5px solid var(--line-2);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.10);
}
.textarea { resize: vertical; line-height: 1.55; min-height: 80px; }
.field-row { display: flex; gap: 12px; align-items: end; }
.field-row > * { flex: 1; min-width: 120px; }

/* ============================================================
   Status pills(订单/审核/创作者 tier)
   ============================================================ */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 99px;
  font-family: var(--display);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.status-pill.success    { background: rgba(60, 203, 139, 0.15); color: var(--mint-2); }
.status-pill.warn       { background: rgba(255, 178, 63, 0.18); color: #B5751B; }
.status-pill.error      { background: rgba(230, 57, 70, 0.12); color: var(--red); }
.status-pill.info       { background: rgba(79, 141, 239, 0.12); color: var(--blue-2); }
.status-pill.neutral    { background: var(--surface); color: var(--ink-3); }

/* ============================================================
   Empty hint
   ============================================================ */
.empty-hint {
  text-align: center;
  padding: 36px 20px;
  color: var(--ink-3);
  font-size: 14px;
  font-style: normal;
  font-family: var(--display);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1100px) {
  .aigg-topnav { display: none; }
  .sec-title { font-size: 36px; }
  .aigg-section { padding: 48px 20px; }
  .aigg-footer .foot-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .aigg-topbar { padding: 12px 16px; gap: 12px; }
  .aigg-search { display: none; }
  .sec-head { grid-template-columns: 1fr; }
  .sec-meta { text-align: left; }
  .aigg-footer .foot-top { grid-template-columns: 1fr; }
}
