:root {
  --bg: #fbfbfc;
  --paper: rgba(255, 255, 255, .78);
  --paper-solid: #ffffff;
  --ink: #111216;
  --muted: #777a82;
  --faint: #a7aab2;
  --line: rgba(17, 18, 22, .14);
  --line-strong: rgba(17, 18, 22, .26);
  --cyan: #bcecf1;
  --pink: #f4ccd9;
  --violet: #ddd1fb;
  --yellow: #f4e6a8;
  --red: #e54e59;
  --green: #2b8a69;
  --shadow: 0 20px 60px rgba(33, 38, 53, .10);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { min-width: 320px; background: var(--bg); overflow-x: clip; }
body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  font-family: Arial, "Helvetica Neue", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 500;
  background-color: var(--bg);
  background-image:
    radial-gradient(circle, rgba(70, 75, 87, .22) 1.3px, transparent 1.5px),
    linear-gradient(115deg, rgba(188, 236, 241, .12), transparent 31%, rgba(244, 204, 217, .10) 68%, transparent);
  background-size: 78px 78px, 100% 100%;
  background-position: 0 0, var(--light-x, 0px) var(--light-y, 0px);
  transition: background-position .45s ease;
}
body::before,
body::after {
  content: "";
  position: fixed;
  inset: -25vh -15vw;
  pointer-events: none;
  z-index: -1;
}
body::before {
  background:
    radial-gradient(42vw 28vw at 10% 12%, rgba(188, 236, 241, .25), transparent 70%),
    radial-gradient(38vw 32vw at 87% 22%, rgba(244, 204, 217, .20), transparent 70%),
    radial-gradient(36vw 34vw at 52% 93%, rgba(221, 209, 251, .18), transparent 72%);
  filter: blur(26px);
  animation: refraction-drift 18s ease-in-out infinite alternate;
}
body::after {
  background: linear-gradient(120deg, transparent 36%, rgba(255,255,255,.65) 49%, transparent 62%);
  transform: translateX(-45%);
  animation: light-sweep 15s ease-in-out infinite;
  opacity: .34;
}

button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 4px; }

@keyframes refraction-drift {
  0% { transform: translate3d(-2%, -1%, 0) scale(1); }
  100% { transform: translate3d(4%, 3%, 0) scale(1.08); }
}
@keyframes light-sweep {
  0%, 35% { transform: translateX(-55%) skewX(-14deg); }
  70%, 100% { transform: translateX(55%) skewX(-14deg); }
}
@keyframes page-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
@keyframes page-out {
  to { opacity: 0; transform: translateY(-16px) scale(.985); filter: blur(5px); }
}
@keyframes title-rise {
  from { opacity: 0; transform: translateY(1.1em) rotate(3deg); }
  to { opacity: 1; transform: none; }
}
@keyframes letter-float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-.06em) rotate(.6deg); }
}
@keyframes option-rise {
  from { opacity: 0; transform: translateY(32px); clip-path: inset(100% 0 0 0); }
  to { opacity: 1; transform: none; clip-path: inset(0); }
}
@keyframes scan-line {
  0%, 100% { transform: translateX(-110%); opacity: 0; }
  15%, 70% { opacity: .7; }
  86% { transform: translateX(110%); opacity: 0; }
}

.page-shell { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 18px;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  min-height: 66px;
  padding: 10px 14px 10px 20px;
  margin: 18px auto 0;
  border: 1px solid rgba(17, 18, 22, .12);
  border-radius: 999px;
  background: rgba(255,255,255,.64);
  box-shadow: 0 12px 34px rgba(34, 39, 52, .08), inset 0 1px 0 rgba(255,255,255,.9);
  backdrop-filter: blur(24px) saturate(1.25);
  animation: page-in .75s cubic-bezier(.2,.8,.2,1) both;
}
.logo {
  width: max-content;
  color: var(--ink);
  font-size: 21px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: 0;
}
.logo small { color: var(--muted); font-size: 10px; font-weight: 700; margin-left: 7px; letter-spacing: 0; }
.nav-pills { display: flex; align-items: center; gap: 4px; }
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  text-decoration: none;
  transition: color .25s ease, border-color .25s ease, background .25s ease, transform .25s ease;
}
.nav-link:hover, .nav-link.active { color: var(--ink); border-color: var(--line); background: rgba(255,255,255,.7); transform: translateY(-1px); }
.header-actions { display: flex; justify-content: flex-end; align-items: center; gap: 7px; }
.header-button, .back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255,255,255,.48);
  font-size: 12px;
  text-decoration: none;
  transition: .25s ease;
}
.header-button:hover, .back-link:hover { border-color: var(--ink); background: var(--paper-solid); transform: translateY(-1px); }

.cursor-field {
  position: fixed;
  left: var(--pointer-x, 50vw);
  top: var(--pointer-y, 50vh);
  width: 230px;
  height: 230px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transform: translate(-50%, -50%) scale(.7);
  background: radial-gradient(circle, rgba(255,255,255,.72), rgba(188,236,241,.16) 36%, transparent 70%);
  mix-blend-mode: screen;
  transition: opacity .35s ease, transform .45s cubic-bezier(.2,.8,.2,1);
}
body.pointer-ready .cursor-field { opacity: .8; transform: translate(-50%, -50%) scale(1); }

body.leaving main, body.leaving .page-main, body.leaving .site-header { animation: page-out .28s ease forwards; }
main, .page-main { position: relative; z-index: 2; animation: page-in .8s .08s cubic-bezier(.2,.8,.2,1) both; }
.hero {
  min-height: min(820px, calc(100vh - 90px));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 92px 0 80px;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 34px;
  height: 1px;
  background: var(--line);
  transform-origin: left;
  animation: title-rise 1.4s .6s both;
}
.eyebrow, .micro-label {
  margin: 0 0 24px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0;
}
.hero-title {
  max-width: 1050px;
  margin: 0;
  font-size: 170px;
  font-weight: 900;
  line-height: .82;
  letter-spacing: 0;
  text-wrap: balance;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span { display: inline-block; animation: title-rise 1s cubic-bezier(.2,.8,.2,1) both, letter-float 8s 1.4s ease-in-out infinite; }
.hero-title .line > span i { display: inline-block; font-style: normal; animation: letter-float 5.8s ease-in-out infinite; }
.hero-title .line:nth-child(2) > span { animation-delay: .13s, 1.8s; }
.hero-title .accent { color: #24262d; text-shadow: .035em .035em 0 var(--cyan), -.02em -.02em 0 var(--pink); }
.hero-mark {
  position: absolute;
  right: 4%;
  top: 19%;
  width: 28vw;
  max-width: 340px;
  min-width: 170px;
  aspect-ratio: 1;
  border: 1px solid rgba(17,18,22,.16);
  border-radius: 50%;
  opacity: .7;
  transform: rotate(-17deg);
  animation: mark-spin 20s linear infinite;
}
.hero-mark::before, .hero-mark::after { content: ""; position: absolute; inset: 13%; border: 1px solid rgba(17,18,22,.12); border-radius: 50%; }
.hero-mark::after { inset: 28%; border-color: rgba(17,18,22,.2); }
@keyframes mark-spin { to { transform: rotate(343deg); } }
.rotating-line { display: inline-block; min-width: 12ch; color: var(--muted); font-size: 22px; font-weight: 700; line-height: 1.3; overflow: hidden; vertical-align: baseline; }
.rotating-line.swap { animation: title-rise .45s both; }
.hero-footer { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-top: 64px; color: var(--muted); font-size: 12px; }
.scroll-cue { display: inline-flex; align-items: center; gap: 10px; }
.scroll-cue::before { content: ""; width: 38px; height: 1px; background: var(--ink); animation: scan-line 4s ease-in-out infinite; }

.home-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0 0 110px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}
.home-option {
  position: relative;
  min-height: 178px;
  padding: 25px 24px 22px 0;
  border-right: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  overflow: hidden;
  opacity: 0;
  animation: option-rise .9s cubic-bezier(.2,.8,.2,1) forwards;
}
.home-option:nth-child(1) { animation-delay: .72s; }
.home-option:nth-child(2) { animation-delay: .88s; }
.home-option:nth-child(3) { animation-delay: 1.04s; border-right: 0; }
.home-option::before { content: ""; position: absolute; inset: auto 0 0; height: 3px; background: linear-gradient(90deg, var(--cyan), var(--pink), var(--violet)); transform: translateX(-102%); transition: transform .45s cubic-bezier(.2,.8,.2,1); }
.home-option:hover::before { transform: none; }
.home-option:hover .option-arrow { transform: translate(5px, -5px); }
.option-number { color: var(--muted); font: 700 11px ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.option-title { display: block; margin-top: 28px; font-size: 26px; font-weight: 800; }
.option-note { display: block; margin-top: 9px; color: var(--muted); font-size: 12px; }
.option-arrow { position: absolute; right: 23px; bottom: 22px; font-size: 22px; transition: transform .35s ease; }

.page-main { padding: 74px 0 110px; }
.page-heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin: 55px 0 52px; }
.page-heading h1 { margin: 0; font-size: 132px; font-weight: 900; line-height: .82; letter-spacing: 0; }
.page-heading p { max-width: 240px; margin: 0 0 8px; color: var(--muted); font-size: 12px; line-height: 1.6; }
.page-heading h1 span { display: inline-block; animation: title-rise 1s .15s both; }
.toolbar { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 18px; }
.toolbar-label { color: var(--muted); font: 700 11px ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; text-transform: uppercase; }

.meeting-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; position: relative; min-height: 250px; }
.meeting-card {
  position: relative;
  min-height: 280px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.58);
  box-shadow: 0 9px 30px rgba(30, 33, 45, .04);
  cursor: pointer;
  transition: opacity .45s ease, transform .55s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, border-color .35s ease;
  animation: option-rise .75s cubic-bezier(.2,.8,.2,1) both;
}
.meeting-card:nth-child(2) { animation-delay: .1s; }
.meeting-card:nth-child(3) { animation-delay: .2s; }
.meeting-card:hover { border-color: var(--line-strong); box-shadow: var(--shadow); transform: translateY(-5px); }
.meeting-card h2 { margin: 0; font-size: 26px; font-weight: 800; }
.meeting-card .card-meta { margin-top: 8px; color: var(--muted); font: 11px ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.meeting-card .card-rule { height: 1px; margin: 25px 0 16px; background: var(--line); }
.people-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; }
.person-button { display: block; width: 100%; padding: 10px 8px; border: 1px solid transparent; border-top-color: var(--line); color: var(--ink); background: transparent; text-align: left; transition: .22s ease; }
.person-button:hover { border-color: var(--line-strong); background: rgba(255,255,255,.84); transform: translateX(3px); }
.person-button strong { display: block; font-size: 15px; }
.person-button small { display: block; margin-top: 4px; color: var(--muted); font: 11px ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.card-open { position: absolute; right: 20px; top: 20px; color: var(--muted); font-size: 17px; }
.meeting-grid.focusing .meeting-card.away { opacity: 0; transform: scale(.88) translateY(30px); pointer-events: none; }
.meeting-grid.focused { display: block; min-height: 500px; }
.meeting-grid.focused .meeting-card { display: none; }
.meeting-grid.focused .meeting-card.focused-card {
  display: block;
  min-height: 480px;
  max-width: 820px;
  margin: 0 auto;
  cursor: default;
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
  animation: focus-in .55s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes focus-in { from { opacity: 0; transform: scale(.91) translateY(24px); } to { opacity: 1; transform: none; } }
.focus-close { position: absolute; right: 19px; top: 17px; z-index: 2; width: 32px; height: 32px; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); background: var(--paper-solid); font-size: 17px; }
.focused-card .people-list { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.focused-card .person-button { padding: 14px 11px; background: rgba(255,255,255,.5); border: 1px solid var(--line); border-radius: 5px; }
.empty-state { padding: 40px 0; color: var(--muted); border-top: 1px solid var(--line); }

.detail-layer { position: fixed; inset: 0; z-index: 50; display: none; align-items: center; justify-content: center; padding: 22px; background: rgba(246,247,249,.64); backdrop-filter: blur(18px); }
.detail-layer.on { display: flex; animation: page-in .35s ease both; }
.detail-panel { position: relative; width: min(940px, 100%); max-height: min(900px, 94vh); overflow: auto; padding: 32px; border: 1px solid var(--line-strong); border-radius: 8px; background: rgba(255,255,255,.9); box-shadow: 0 30px 100px rgba(21, 26, 38, .18); }
.detail-close { position: absolute; top: 18px; right: 18px; width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 50%; background: transparent; font-size: 21px; }
.detail-kicker { color: var(--muted); font: 700 11px ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; text-transform: uppercase; }
.detail-panel h2 { margin: 11px 45px 25px 0; font-size: 64px; line-height: .9; }
.metrics { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.metric { min-height: 83px; padding: 15px 10px 13px 0; border-right: 1px solid var(--line); }
.metric:last-child { border-right: 0; }
.metric strong { display: block; font: 700 22px ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.metric span { display: block; margin-top: 5px; color: var(--muted); font-size: 11px; }
.score-legend { display: flex; flex-wrap: wrap; gap: 15px; margin: 28px 0 12px; color: var(--muted); font-size: 11px; }
.legend-item { display: inline-flex; align-items: center; gap: 7px; }
.legend-swatch { width: 16px; height: 16px; border: 1px solid var(--line-strong); position: relative; background: #fff; }
.legend-swatch.slash::after { content: ""; position: absolute; left: 1px; right: 1px; top: 7px; border-top: 2px solid var(--ink); transform: rotate(-45deg); }
.legend-swatch.cross::before, .legend-swatch.cross::after { content: ""; position: absolute; left: 2px; right: 2px; top: 7px; border-top: 2px solid var(--red); transform: rotate(45deg); }
.legend-swatch.cross::after { transform: rotate(-45deg); }
.score-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 5px; width: min(100%, 650px); }
.score-cell { position: relative; display: flex; align-items: center; justify-content: center; aspect-ratio: 1; min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 3px; color: var(--ink); background: rgba(255,255,255,.8); font: 700 16px ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.score-cell.empty { border-style: dashed; color: transparent; background: transparent; }
.score-cell.high, .score-cell.low { background: rgba(244,230,168,.28); }
.score-cell.high::after, .score-cell.low::after { content: ""; position: absolute; left: -10%; right: -10%; top: 50%; border-top: 2px solid var(--ink); transform: rotate(-43deg); }
.score-cell.low::after { border-color: #6e7279; }
.score-cell.invalid { color: #aeb1b8; background: rgba(229,78,89,.05); }
.score-cell.invalid::before, .score-cell.invalid::after { content: ""; position: absolute; left: 12%; right: 12%; top: 50%; border-top: 2px solid var(--red); transform: rotate(45deg); }
.score-cell.invalid::after { transform: rotate(-45deg); }
.score-cell em { position: absolute; bottom: 3px; right: 4px; color: var(--muted); font: 7px Arial, sans-serif; font-style: normal; }
.detail-foot { margin-top: 17px; color: var(--muted); font-size: 11px; line-height: 1.6; }

.rank-list { border-top: 1px solid var(--line-strong); }
.rank-row { display: grid; grid-template-columns: 86px 1fr 160px 110px 90px; align-items: center; min-height: 84px; border-bottom: 1px solid var(--line); transition: .28s ease; animation: option-rise .6s both; }
.rank-row:hover { padding: 0 16px; background: rgba(255,255,255,.63); }
.rank-number { color: var(--muted); font: 700 13px ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.rank-name { font-size: 22px; font-weight: 800; }
.rank-avg { font: 700 25px ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; text-align: right; }
.rank-stat { color: var(--muted); font: 11px ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; text-align: right; line-height: 1.7; }
.rank-trend { color: var(--muted); font-size: 13px; text-align: right; }
.rank-row.top-one .rank-number, .rank-row.top-two .rank-number { color: var(--ink); font-size: 22px; }
.rank-row.top-one .rank-name { font-size: 34px; }
.rank-row.top-two .rank-name { font-size: 28px; }
.rank-row.top-one { background: linear-gradient(90deg, rgba(188,236,241,.22), transparent); }
.rank-row.top-two { background: linear-gradient(90deg, rgba(244,204,217,.18), transparent); }

.record-tabs { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 24px; }
.record-tab { min-height: 36px; padding: 0 14px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: rgba(255,255,255,.48); font-size: 12px; transition: .25s; }
.record-tab:hover, .record-tab.active { color: var(--ink); border-color: var(--ink); background: var(--paper-solid); }
.feed { max-width: 860px; border-top: 1px solid var(--line-strong); }
.feed-post { padding: 28px 0; border-bottom: 1px solid var(--line); animation: option-rise .65s both; }
.feed-meta { display: flex; justify-content: space-between; gap: 15px; color: var(--muted); font: 11px ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.feed-block { margin-top: 18px; }
.feed-block.text { max-width: 700px; color: #454851; font-size: 15px; line-height: 1.9; white-space: pre-wrap; }
.feed-block img, .feed-block video { display: block; width: min(100%, 680px); max-height: 580px; object-fit: cover; border: 1px solid var(--line); border-radius: 5px; background: #eef0f2; }
.feed-block.video::before { content: "VIDEO"; display: block; margin-bottom: 6px; color: var(--muted); font: 10px ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }

.export-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.export-box { padding: 22px; border: 1px solid var(--line); border-radius: 8px; background: rgba(255,255,255,.56); }
.export-box h2 { margin: 0 0 18px; font-size: 16px; }
.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.check-item { display: flex; align-items: center; gap: 9px; min-height: 43px; padding: 8px 10px; border: 1px solid var(--line); border-radius: 4px; color: var(--muted); font-size: 12px; transition: .2s; }
.check-item:has(input:checked) { color: var(--ink); border-color: var(--line-strong); background: rgba(255,255,255,.85); }
.check-item input { accent-color: var(--ink); }
.export-actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 17px; }

.admin-shell { padding-bottom: 100px; }
.admin-login { width: min(430px, 100%); margin: 18vh auto 0; padding: 30px; border: 1px solid var(--line); border-radius: 8px; background: rgba(255,255,255,.76); box-shadow: var(--shadow); animation: page-in .8s both; }
.admin-login h1 { margin: 10px 0 26px; font-size: 34px; line-height: .95; }
.admin-login .micro-label { margin-bottom: 0; }
.admin-form input, .admin-form select, .admin-form textarea, .text-input, .select-input {
  width: 100%; min-height: 42px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 4px; outline: 0; color: var(--ink); background: rgba(255,255,255,.78); font-size: 13px; transition: .2s;
}
.admin-form textarea, .text-input.textarea { min-height: 106px; resize: vertical; }
.admin-form input:focus, .admin-form select:focus, .admin-form textarea:focus, .text-input:focus, .select-input:focus { border-color: var(--ink); box-shadow: 0 0 0 3px rgba(17,18,22,.07); }
.admin-button { min-height: 39px; padding: 0 15px; border: 1px solid var(--ink); border-radius: 4px; color: var(--paper-solid); background: var(--ink); font-size: 12px; transition: .25s; }
.admin-button:hover { color: var(--ink); background: var(--paper-solid); }
.admin-button.ghost { color: var(--ink); border-color: var(--line); background: rgba(255,255,255,.56); }
.admin-button.ghost:hover { border-color: var(--ink); }
.admin-button.danger { color: var(--red); border-color: rgba(229,78,89,.4); background: transparent; }
.admin-button.danger:hover { color: #fff; border-color: var(--red); background: var(--red); }
.admin-dashboard { display: none; }
.admin-dashboard.on { display: block; animation: page-in .65s both; }
.admin-top { display: flex; align-items: center; gap: 16px; padding: 46px 0 22px; border-bottom: 1px solid var(--line-strong); }
.admin-top .spacer { flex: 1; }
.admin-title { margin: 52px 0 28px; font-size: 96px; font-weight: 900; line-height: .84; }
.admin-stats { display: grid; grid-template-columns: repeat(5, 1fr); margin-bottom: 30px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.admin-stat { min-height: 88px; padding: 15px 13px; border-right: 1px solid var(--line); }
.admin-stat:last-child { border-right: 0; }
.admin-stat strong { display: block; font: 700 24px ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.admin-stat span { display: block; margin-top: 6px; color: var(--muted); font-size: 11px; }
.admin-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 14px; }
.admin-section { padding: 21px; border: 1px solid var(--line); border-radius: 8px; background: rgba(255,255,255,.56); }
.admin-section.full { grid-column: 1 / -1; }
.admin-section h2 { display: flex; align-items: baseline; gap: 9px; margin: 0 0 20px; font-size: 17px; }
.admin-section h2 small { color: var(--muted); font: 700 10px ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; text-transform: uppercase; }
.field-label { display: block; margin: 13px 0 6px; color: var(--muted); font-size: 11px; }
.field-label:first-of-type { margin-top: 0; }
.inline-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.action-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 15px; }
.admin-list { border-top: 1px solid var(--line); }
.admin-item { display: flex; align-items: center; gap: 10px; min-height: 57px; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.admin-item .grow { flex: 1; min-width: 0; }
.admin-item strong { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.admin-item small { display: block; margin-top: 3px; color: var(--muted); font-size: 10px; }
.status-pill { flex: none; padding: 4px 8px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font: 10px ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.status-pill.invalid { color: var(--red); border-color: rgba(229,78,89,.4); }
.status-pill.valid { color: var(--green); border-color: rgba(43,138,105,.35); }
.score-entry { display: grid; grid-template-columns: 90px 1fr; align-items: center; gap: 9px; margin-bottom: 8px; }
.score-entry label { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 13px; }
.entry-warning { min-height: 17px; margin-top: 8px; color: var(--red); font-size: 11px; }
.import-hint { margin: 9px 0 0; color: var(--muted); font-size: 11px; line-height: 1.6; }
.post-editor { display: grid; gap: 8px; }
.post-row { display: grid; grid-template-columns: 112px 1fr auto; gap: 8px; align-items: start; padding: 9px; border: 1px solid var(--line); border-radius: 4px; background: rgba(255,255,255,.54); }
.post-row select { min-height: 39px; padding: 0 8px; border: 1px solid var(--line); border-radius: 3px; background: #fff; }
.post-row .remove-post { width: 32px; height: 32px; border: 1px solid var(--line); border-radius: 50%; background: transparent; }
.post-row .remove-post:hover { color: var(--red); border-color: var(--red); }
.admin-modal { position: fixed; inset: 0; z-index: 80; display: none; align-items: center; justify-content: center; padding: 22px; background: rgba(245,246,248,.7); backdrop-filter: blur(18px); }
.admin-modal.on { display: flex; }
.admin-modal-box { width: min(520px, 100%); max-height: 90vh; overflow: auto; padding: 24px; border: 1px solid var(--line-strong); border-radius: 8px; background: #fff; box-shadow: var(--shadow); }
.admin-modal-box h3 { margin: 0 0 17px; font-size: 20px; }
.error-text { min-height: 18px; margin-top: 8px; color: var(--red); font-size: 12px; }
.toast { position: fixed; left: 50%; bottom: 26px; z-index: 100; padding: 11px 17px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink); background: rgba(255,255,255,.92); box-shadow: var(--shadow); opacity: 0; transform: translate(-50%, 14px); pointer-events: none; transition: .3s; font-size: 12px; }
.toast.on { opacity: 1; transform: translate(-50%, 0); }
.toast.error { color: var(--red); }

@media (max-width: 860px) {
  .site-header { grid-template-columns: 1fr auto; }
  .nav-pills { grid-column: 1 / -1; grid-row: 2; justify-content: center; padding-top: 4px; border-top: 1px solid var(--line); }
  .header-actions { grid-column: 2; }
  .site-header { border-radius: 18px; }
  .hero { min-height: 670px; }
  .hero-mark { right: -8%; top: 15%; }
  .meeting-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .admin-layout, .export-grid { grid-template-columns: 1fr; }
  .admin-section.full { grid-column: auto; }
}
@media (max-width: 600px) {
  .page-shell { width: min(var(--max), calc(100% - 28px)); }
  .site-header { top: 8px; margin-top: 8px; padding: 8px 10px 10px 14px; }
  .logo { font-size: 18px; }
  .logo small { display: none; }
  .nav-pills { justify-content: flex-start; overflow-x: auto; }
  .nav-link { padding: 0 9px; font-size: 11px; }
  .header-button, .back-link { min-height: 32px; padding: 0 9px; font-size: 11px; }
  .hero { min-height: 640px; padding: 80px 0 48px; }
  .hero-title { font-size: 82px; }
  .page-heading h1 { font-size: 78px; }
  .detail-panel h2 { font-size: 48px; }
  .score-cell { font-size: 13px; }
  .admin-title { font-size: 62px; }
  .hero-mark { right: 0; top: 22%; opacity: .45; }
  .hero-footer { align-items: flex-start; flex-direction: column; margin-top: 45px; }
  .home-options { grid-template-columns: 1fr; margin-bottom: 60px; }
  .home-option { min-height: 125px; padding: 20px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .home-option:last-child { border-bottom: 0; }
  .option-title { margin-top: 18px; }
  .option-arrow { right: 0; bottom: 21px; }
  .page-main { padding-top: 40px; }
  .page-heading { display: block; margin: 50px 0 34px; }
  .page-heading p { margin-top: 19px; }
  .meeting-grid { grid-template-columns: 1fr; }
  .meeting-card { min-height: 235px; }
  .focused-card .people-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .detail-layer { padding: 10px; }
  .detail-panel { padding: 24px 15px 20px; max-height: 96vh; }
  .metrics { grid-template-columns: repeat(3, 1fr); }
  .metric { min-height: 70px; padding: 11px 6px 9px 0; }
  .metric strong { font-size: 17px; }
  .metric span { font-size: 9px; }
  .score-grid { gap: 3px; }
  .rank-row { grid-template-columns: 47px 1fr 78px; min-height: 70px; }
  .rank-name { font-size: 18px; }
  .rank-row.top-one .rank-name { font-size: 24px; }
  .rank-avg { font-size: 19px; }
  .rank-stat, .rank-trend { display: none; }
  .check-list { grid-template-columns: 1fr; }
  .admin-top { padding-top: 30px; flex-wrap: wrap; }
  .admin-top .spacer { display: none; }
  .admin-title { margin-top: 38px; }
  .admin-stats { grid-template-columns: repeat(3, 1fr); }
  .admin-stat:nth-child(3) { border-right: 0; }
  .admin-stat:nth-child(n+4) { border-top: 1px solid var(--line); }
  .inline-fields, .post-row { grid-template-columns: 1fr; }
  .score-entry { grid-template-columns: 72px 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
