:root {
      --ink: #09090c;
      --paper: #f8f0db;
      --gold: #ffd23f;
      --amber: #f09b26;
      --pink: #ff6d9d;
      --cyan: #7be7ff;
      --green: #9df177;
      --glass: rgba(255, 255, 255, 0.12);
      --glass-strong: rgba(255, 255, 255, 0.2);
      --line: rgba(255, 255, 255, 0.22);
      --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
    }

    * {
      box-sizing: border-box;
    }

    body {
      min-height: 100vh;
      margin: 0;
      overflow-x: hidden;
      color: var(--paper);
      background:
        linear-gradient(110deg, rgba(255, 210, 63, 0.2), transparent 28%),
        linear-gradient(215deg, rgba(123, 231, 255, 0.14), transparent 34%),
        linear-gradient(340deg, rgba(255, 109, 157, 0.16), transparent 32%),
        #09090c;
      font-family: "Songti SC", "Noto Serif SC", "STSong", serif;
      letter-spacing: 0;
    }

    body::before,
    body::after {
      position: fixed;
      inset: 0;
      z-index: -2;
      content: "";
      pointer-events: none;
    }

    body::before {
      opacity: 0.42;
      background:
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 86px),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 74px);
      mask-image: linear-gradient(to bottom, black, transparent 78%);
    }

    body::after {
      z-index: -1;
      opacity: 0.36;
      background:
        linear-gradient(90deg, transparent 0 12%, rgba(255, 210, 63, 0.24) 12% 13%, transparent 13% 42%, rgba(123, 231, 255, 0.2) 42% 43%, transparent 43% 76%, rgba(255, 109, 157, 0.18) 76% 77%, transparent 77%),
        radial-gradient(ellipse at top, rgba(255, 255, 255, 0.16), transparent 58%);
      animation: stageShift 15s ease-in-out infinite alternate;
    }

    button,
    input {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    .concept-shell {
      position: relative;
      width: min(1180px, calc(100vw - 36px));
      min-height: 100vh;
      margin: 0 auto;
      padding: 30px 0 52px;
    }

    .topline {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 46px;
      color: rgba(248, 240, 219, 0.76);
      font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
      font-size: 13px;
    }

    .brandmark {
      display: flex;
      align-items: center;
      gap: 12px;
      color: inherit;
      text-decoration: none;
      text-transform: uppercase;
    }

    .brandmark i {
      width: 42px;
      height: 1px;
      background: var(--gold);
      box-shadow: 0 0 18px rgba(255, 210, 63, 0.72);
    }

    .hero {
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
      gap: 28px;
      align-items: stretch;
      margin-bottom: 28px;
    }

    .glass-panel {
      position: relative;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 26px;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.055));
      box-shadow: var(--shadow);
      backdrop-filter: blur(28px) saturate(1.24);
    }

    .glass-panel::before {
      position: absolute;
      top: -34%;
      bottom: -34%;
      left: -48%;
      width: 44%;
      content: "";
      background: linear-gradient(
        106deg,
        transparent 0%,
        transparent 28%,
        rgba(255, 255, 255, 0.02) 36%,
        rgba(255, 255, 255, 0.2) 48%,
        rgba(255, 210, 63, 0.08) 54%,
        rgba(255, 255, 255, 0.04) 62%,
        transparent 74%,
        transparent 100%
      );
      filter: blur(10px);
      transform: translate3d(-30%, 0, 0) skewX(-16deg);
      animation: glassSweep 8.5s cubic-bezier(0.45, 0, 0.2, 1) infinite;
      pointer-events: none;
    }

    .headline-panel {
      min-height: 520px;
      padding: clamp(28px, 5vw, 64px);
    }

    .kicker {
      display: inline-flex;
      gap: 8px;
      align-items: center;
      margin: 0 0 34px;
      padding: 8px 12px;
      border: 1px solid rgba(255, 210, 63, 0.34);
      border-radius: 999px;
      background: rgba(255, 210, 63, 0.08);
      color: rgba(255, 210, 63, 0.9);
      font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
      font-size: 12px;
    }

    h1 {
      position: relative;
      z-index: 1;
      max-width: 720px;
      margin: 0;
      font-size: clamp(80px, 13.6vw, 178px);
      line-height: 0.88;
      font-weight: 900;
      letter-spacing: 0;
      color: var(--paper);
      text-shadow:
        0 1px 0 rgba(255, 210, 63, 0.86),
        0 18px 50px rgba(0, 0, 0, 0.36);
    }

    .title-accent {
      display: block;
      color: transparent;
      -webkit-text-stroke: 2px var(--gold);
      text-shadow: 0 0 28px rgba(255, 210, 63, 0.28);
    }

    .hero-note {
      position: relative;
      z-index: 1;
      max-width: 590px;
      margin: 32px 0 0;
      color: rgba(248, 240, 219, 0.76);
      font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
      font-size: 18px;
      line-height: 1.8;
    }

    .ticker {
      position: absolute;
      right: -120px;
      bottom: 40px;
      left: -120px;
      display: flex;
      gap: 40px;
      width: max-content;
      color: rgba(255, 210, 63, 0.14);
      font-size: 84px;
      font-weight: 900;
      white-space: nowrap;
      transform: rotate(-4deg);
      animation: tickerMove 22s linear infinite;
    }

    .today-panel {
      display: grid;
      align-content: space-between;
      padding: 28px;
      min-height: 520px;
    }

    .today-head {
      position: relative;
      z-index: 1;
      display: flex;
      justify-content: space-between;
      gap: 16px;
      align-items: flex-start;
    }

    .today-head h2 {
      margin: 0 0 10px;
      color: var(--gold);
      font-size: 26px;
    }

    .today-head p,
    .microcopy {
      margin: 0;
      color: rgba(248, 240, 219, 0.66);
      font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
      font-size: 13px;
      line-height: 1.7;
    }

    .date-chip {
      flex: 0 0 auto;
      padding: 9px 12px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 999px;
      background: rgba(0, 0, 0, 0.2);
      color: rgba(248, 240, 219, 0.78);
      font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
      font-size: 12px;
    }

    .people-grid {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 14px;
      margin-top: 24px;
    }

    .person-card {
      position: relative;
      min-height: 132px;
      padding: 18px 20px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 22px;
      overflow: hidden;
      background:
        radial-gradient(circle at 16% 18%, rgba(255, 210, 63, 0.14), transparent 32%),
        rgba(0, 0, 0, 0.22);
      color: var(--paper);
      box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
      transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
      text-align: left;
    }

    .person-card::before {
      position: absolute;
      top: 14px;
      right: 16px;
      width: 42px;
      height: 42px;
      border: 1px solid rgba(255, 210, 63, 0.52);
      border-radius: 50%;
      content: "+";
      display: grid;
      place-items: center;
      color: var(--gold);
      font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
      font-size: 26px;
      line-height: 1;
      background: rgba(255, 210, 63, 0.08);
      box-shadow: 0 0 24px rgba(255, 210, 63, 0.14);
    }

    .person-card::after {
      position: absolute;
      inset: 0;
      content: "";
      background: linear-gradient(110deg, transparent 0 34%, rgba(255, 210, 63, 0.12) 46%, transparent 58%);
      transform: translateX(-115%);
      transition: transform 420ms ease;
      pointer-events: none;
    }

    .person-card:hover {
      transform: translateY(-4px) scale(1.01);
      border-color: rgba(255, 210, 63, 0.8);
      background:
        radial-gradient(circle at 16% 18%, rgba(255, 210, 63, 0.24), transparent 34%),
        rgba(0, 0, 0, 0.32);
      box-shadow:
        0 18px 42px rgba(0, 0, 0, 0.28),
        0 0 0 4px rgba(255, 210, 63, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
    }

    .person-card:hover::after {
      transform: translateX(115%);
    }

    .person-card:active {
      transform: translateY(-1px) scale(0.992);
    }

    .person-card.is-done {
      border-color: rgba(157, 241, 119, 0.66);
      background: rgba(157, 241, 119, 0.09);
    }

    .person-card.is-done::before {
      content: "×";
      border-color: rgba(157, 241, 119, 0.58);
      color: var(--green);
      background: rgba(157, 241, 119, 0.08);
    }

    .person-top {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 18px;
      padding-right: 54px;
    }

    .person-name {
      font-size: 44px;
      line-height: 1;
      font-weight: 900;
    }

    .person-state {
      color: rgba(248, 240, 219, 0.58);
      font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
      font-size: 13px;
    }

    .record-line {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      gap: 12px;
      min-height: 42px;
      margin-top: 18px;
      font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
      font-size: 15px;
      color: rgba(248, 240, 219, 0.76);
    }

    .record-line.is-empty {
      color: var(--gold);
      font-weight: 800;
    }

    .record-line.is-empty::before {
      display: inline-grid;
      width: 28px;
      height: 28px;
      place-items: center;
      border-radius: 50%;
      content: "→";
      background: var(--gold);
      color: var(--ink);
      font-size: 17px;
      box-shadow: 0 0 22px rgba(255, 210, 63, 0.28);
    }

    .level-pill {
      display: inline-grid;
      min-width: 42px;
      height: 42px;
      place-items: center;
      border: 1px solid rgba(255, 210, 63, 0.74);
      border-radius: 14px;
      color: var(--gold);
      font-family: "Songti SC", "STKaiti", serif;
      font-size: 24px;
      font-weight: 900;
    }

    .stats-strip {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 18px;
    }

    .stat-box {
      position: relative;
      z-index: 1;
      min-height: 92px;
      padding: 14px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.08);
    }

    .stat-box strong {
      display: block;
      color: var(--gold);
      font-size: 32px;
      line-height: 1;
    }

    .stat-box span {
      display: block;
      margin-top: 12px;
      color: rgba(248, 240, 219, 0.62);
      font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
      font-size: 12px;
      line-height: 1.5;
    }

    .history-panel {
      padding: 24px;
    }

    .history-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 16px;
    }

    .history-head h2 {
      margin: 0;
      color: var(--paper);
      font-size: 30px;
    }

    .calendar-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: flex-end;
    }

    .empty-state.hidden,
    .calendar-stats-panel.hidden {
      display: none;
    }

    .empty-state {
      padding: 24px;
      border: 1px solid rgba(255, 255, 255, 0.17);
      border-radius: 18px;
      background: rgba(0, 0, 0, 0.18);
      color: rgba(248, 240, 219, 0.66);
      font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
      font-size: 14px;
    }

    .calendar-headline {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 12px;
      font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    }

    .calendar-title {
      color: var(--gold);
      font-size: clamp(28px, 4vw, 46px);
      font-weight: 900;
      line-height: 1;
    }

    .calendar-legend {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      color: rgba(248, 240, 219, 0.7);
      font-size: 13px;
    }

    .calendar-legend span {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .legend-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
    }

    .legend-dot.shasha {
      background: var(--cyan);
    }

    .legend-dot.xiuxiu {
      background: var(--pink);
    }

    .exercise-calendar {
      display: grid;
      grid-template-columns: repeat(7, minmax(0, 1fr));
      border-top: 1px solid rgba(255, 255, 255, 0.18);
      border-left: 1px solid rgba(255, 255, 255, 0.18);
      font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    }

    .calendar-weekday,
    .calendar-day {
      border-right: 1px solid rgba(255, 255, 255, 0.18);
      border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .calendar-weekday {
      padding: 10px 8px;
      color: rgba(248, 240, 219, 0.72);
      background: rgba(255, 255, 255, 0.06);
      font-size: 13px;
      font-weight: 800;
      text-align: center;
    }

    .calendar-day {
      min-height: 118px;
      padding: 10px;
      border-radius: 0;
      background: rgba(0, 0, 0, 0.14);
      color: inherit;
      text-align: left;
      transition:
        background 160ms ease,
        box-shadow 160ms ease,
        transform 160ms ease;
    }

    .calendar-day:not(.is-blank):hover,
    .calendar-day.is-selected {
      background:
        radial-gradient(circle at 50% 86%, rgba(255, 210, 63, 0.16), transparent 44%),
        rgba(255, 255, 255, 0.08);
      box-shadow: inset 0 0 0 2px rgba(255, 210, 63, 0.42);
    }

    .calendar-day.is-today .calendar-date-number {
      display: inline-grid;
      min-width: 30px;
      height: 30px;
      place-items: center;
      border-radius: 50%;
      background: var(--gold);
      color: var(--ink);
    }

    .calendar-day.is-blank {
      pointer-events: none;
      background: rgba(0, 0, 0, 0.08);
    }

    .calendar-date-number {
      display: block;
      color: rgba(248, 240, 219, 0.9);
      font-size: 22px;
      font-weight: 900;
      text-align: right;
    }

    .calendar-marks {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
      align-items: end;
      min-height: 58px;
      margin-top: 14px;
    }

    .calendar-mark {
      display: block;
      min-width: 0;
      font-family: "Songti SC", "STKaiti", serif;
      font-size: clamp(20px, 3.4vw, 34px);
      font-weight: 900;
      line-height: 1;
      letter-spacing: 0;
      text-align: center;
    }

    .calendar-mark.shasha {
      color: var(--cyan);
    }

    .calendar-mark.xiuxiu {
      color: var(--pink);
    }

    .calendar-mark.is-rest {
      font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
      font-size: clamp(12px, 1.7vw, 16px);
      font-weight: 800;
    }

    .calendar-mark.shasha.is-rest {
      color: rgba(123, 231, 255, 0.38);
    }

    .calendar-mark.xiuxiu.is-rest {
      color: rgba(255, 109, 157, 0.38);
    }

    .day-detail {
      display: grid;
      gap: 10px;
      margin-top: 16px;
      padding: 16px;
      border: 1px solid rgba(255, 255, 255, 0.17);
      border-radius: 18px;
      background: rgba(0, 0, 0, 0.18);
      font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    }

    .day-detail h3 {
      margin: 0;
      color: rgba(248, 240, 219, 0.88);
      font-size: 18px;
    }

    .day-detail-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      min-height: 34px;
      color: rgba(248, 240, 219, 0.82);
      font-size: 14px;
    }

    .day-detail-row strong {
      flex: 0 0 auto;
      font-size: 16px;
    }

    .day-detail-row.shasha strong {
      color: var(--cyan);
    }

    .day-detail-row.xiuxiu strong {
      color: var(--pink);
    }

    .day-detail-row span {
      text-align: right;
    }

    .calendar-stats {
      margin-top: 16px;
    }

    .calendar-stats-panel {
      display: grid;
      gap: 14px;
      margin-top: 12px;
      padding: 16px;
      border: 1px solid rgba(255, 255, 255, 0.17);
      border-radius: 18px;
      background: rgba(0, 0, 0, 0.18);
      font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    }

    .stats-summary-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 10px;
    }

    .stats-summary-item {
      min-height: 76px;
      padding: 12px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.06);
    }

    .stats-summary-item strong {
      display: block;
      color: var(--gold);
      font-size: 22px;
    }

    .stats-summary-item span {
      display: block;
      margin-top: 8px;
      color: rgba(248, 240, 219, 0.62);
      font-size: 12px;
    }

    .stats-bars {
      display: grid;
      grid-template-columns: repeat(31, minmax(3px, 1fr));
      align-items: end;
      gap: 3px;
      min-height: 82px;
      padding-top: 10px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stats-bars span {
      height: var(--bar-height);
      min-height: 4px;
      border-radius: 999px 999px 0 0;
      background: linear-gradient(to top, rgba(123, 231, 255, 0.78), rgba(255, 109, 157, 0.82));
    }

    .compact-btn {
      min-height: 38px;
      padding: 9px 13px;
      font-size: 13px;
    }

    .modal {
      position: fixed;
      inset: 0;
      z-index: 10;
      display: grid;
      place-items: center;
      padding: 18px;
      background: rgba(0, 0, 0, 0.34);
      backdrop-filter: blur(18px);
    }

    .modal.hidden {
      display: none;
    }

    .modal-card {
      width: min(760px, 100%);
      max-height: calc(100vh - 36px);
      overflow: auto;
      padding: clamp(20px, 4vw, 34px);
      border: 1px solid rgba(255, 255, 255, 0.24);
      border-radius: 30px;
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.07)),
        rgba(8, 8, 12, 0.72);
      box-shadow: 0 32px 110px rgba(0, 0, 0, 0.58);
      backdrop-filter: blur(34px) saturate(1.35);
    }

    .modal-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 22px;
    }

    .modal-head h2 {
      margin: 0 0 8px;
      color: var(--gold);
      font-size: clamp(30px, 5vw, 54px);
      line-height: 1;
    }

    .close-btn {
      width: 42px;
      height: 42px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.22);
      color: var(--paper);
      font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
      font-size: 22px;
    }

    .level-grid {
      display: grid;
      gap: 14px;
      margin: 22px 0;
    }

    .level-choice {
      position: relative;
      display: grid;
      grid-template-columns: 132px 1fr;
      align-items: center;
      min-height: 112px;
      padding: 16px 22px;
      overflow: hidden;
      border: 2px solid rgba(255, 210, 63, 0.72);
      border-radius: 24px;
      background:
        radial-gradient(circle at 12% 50%, rgba(255, 210, 63, 0.18), transparent 26%),
        linear-gradient(110deg, rgba(255, 255, 255, 0.08), transparent 42%),
        rgba(6, 7, 10, 0.54);
      color: var(--paper);
      box-shadow: 0 16px 38px rgba(0, 0, 0, 0.26);
      text-align: left;
      transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
    }

    .level-choice::before {
      position: absolute;
      inset: 0;
      content: "";
      background: linear-gradient(100deg, transparent, rgba(255, 210, 63, 0.14), transparent);
      transform: translateX(-100%);
      transition: transform 360ms ease;
    }

    .level-choice::after {
      position: absolute;
      inset: auto 20px 12px 22px;
      height: 1px;
      content: "";
      background: linear-gradient(90deg, transparent, rgba(255, 210, 63, 0.9), rgba(123, 231, 255, 0.6), transparent);
      opacity: 0.52;
      transform: scaleX(0.72);
      transform-origin: left;
      animation: levelPulse 3.8s ease-in-out infinite;
    }

    .level-choice:hover,
    .level-choice.is-selected {
      transform: translateY(-2px) scale(1.01);
      border-color: var(--gold);
      background:
        radial-gradient(circle at 12% 50%, rgba(255, 210, 63, 0.28), transparent 28%),
        linear-gradient(110deg, rgba(255, 255, 255, 0.12), transparent 42%),
        rgba(255, 210, 63, 0.1);
      box-shadow:
        0 18px 44px rgba(0, 0, 0, 0.3),
        0 0 0 5px rgba(255, 210, 63, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
    }

    .level-choice:hover::before,
    .level-choice.is-selected::before {
      transform: translateX(100%);
    }

    .level-glyph {
      position: relative;
      color: var(--gold);
      font-family: "STKaiti", "KaiTi", "Songti SC", serif;
      font-size: clamp(70px, 12vw, 104px);
      font-style: italic;
      font-weight: 900;
      line-height: 0.9;
      -webkit-text-stroke: 1px rgba(255, 255, 255, 0.22);
      text-shadow:
        7px 7px 0 rgba(255, 109, 157, 0.26),
        -5px -4px 0 rgba(123, 231, 255, 0.2),
        0 0 30px rgba(255, 210, 63, 0.22);
      transform: rotate(-4deg);
    }

    .level-copy {
      position: relative;
      font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    }

    .level-copy strong {
      display: block;
      color: var(--paper);
      font-size: clamp(20px, 3vw, 30px);
      line-height: 1.25;
    }

    .level-copy span {
      display: block;
      margin-top: 8px;
      color: rgba(248, 240, 219, 0.58);
      font-size: 13px;
    }

    .field {
      margin-top: 24px;
      animation: moodReveal 260ms ease both;
      transform-origin: top;
    }

    .field.hidden {
      display: none;
    }

    .field label {
      display: block;
      margin-bottom: 12px;
      color: rgba(248, 240, 219, 0.82);
      font-size: 24px;
      font-weight: 900;
    }

    .field input {
      width: 100%;
      min-height: 58px;
      padding: 0 18px;
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: 18px;
      outline: none;
      background: rgba(0, 0, 0, 0.24);
      color: var(--paper);
      font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
      font-size: 17px;
    }

    .field input:focus {
      border-color: rgba(255, 210, 63, 0.78);
      box-shadow: 0 0 0 4px rgba(255, 210, 63, 0.12);
    }

    .modal-actions {
      display: flex;
      justify-content: flex-end;
      gap: 12px;
      margin-top: 24px;
    }

    .primary-btn,
    .ghost-btn {
      min-height: 48px;
      padding: 0 22px;
      border-radius: 999px;
      font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
      font-weight: 800;
    }

    .primary-btn {
      border: 0;
      background: var(--gold);
      color: var(--ink);
      box-shadow: 0 12px 34px rgba(255, 210, 63, 0.26);
    }

    .ghost-btn {
      border: 1px solid rgba(255, 255, 255, 0.2);
      background: rgba(255, 255, 255, 0.08);
      color: var(--paper);
    }

    .hint {
      min-height: 20px;
      margin: 12px 0 0;
      color: var(--pink);
      font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
      font-size: 13px;
    }

    @keyframes stageShift {
      from {
        transform: translate3d(-18px, -10px, 0) scale(1.04);
      }
      to {
        transform: translate3d(18px, 16px, 0) scale(1.08);
      }
    }

    @keyframes glassSweep {
      0% {
        transform: translate3d(-34%, 0, 0) skewX(-16deg);
        opacity: 0;
      }
      12% {
        opacity: 0.74;
      }
      52% {
        opacity: 0.58;
      }
      72% {
        transform: translate3d(355%, 0, 0) skewX(-16deg);
        opacity: 0;
      }
      100% {
        transform: translate3d(355%, 0, 0) skewX(-16deg);
        opacity: 0;
      }
    }

    @keyframes tickerMove {
      from {
        transform: translateX(0) rotate(-4deg);
      }
      to {
        transform: translateX(-34%) rotate(-4deg);
      }
    }

    @keyframes levelPulse {
      0%, 100% {
        opacity: 0.32;
        transform: scaleX(0.54);
      }
      50% {
        opacity: 0.86;
        transform: scaleX(1);
      }
    }

    @keyframes moodReveal {
      from {
        opacity: 0;
        transform: translateY(-10px) scaleY(0.96);
      }
      to {
        opacity: 1;
        transform: translateY(0) scaleY(1);
      }
    }

    @media (max-width: 880px) {
      .concept-shell {
        width: min(100% - 24px, 680px);
        padding-top: 18px;
      }

      .hero,
      .stats-summary-grid,
      .stats-strip {
        grid-template-columns: 1fr;
      }

      .history-head,
      .calendar-headline {
        align-items: stretch;
        flex-direction: column;
      }

      .calendar-actions {
        justify-content: flex-start;
      }

      .exercise-calendar {
        overflow: hidden;
      }

      .calendar-weekday {
        padding: 8px 2px;
        font-size: 11px;
      }

      .calendar-day {
        min-height: 84px;
        padding: 7px 4px;
      }

      .calendar-date-number {
        font-size: 16px;
      }

      .calendar-day.is-today .calendar-date-number {
        min-width: 24px;
        height: 24px;
      }

      .calendar-marks {
        gap: 2px;
        min-height: 42px;
        margin-top: 10px;
      }

      .calendar-mark {
        font-size: 20px;
      }

      .calendar-mark.is-rest {
        font-size: 10px;
      }

      .day-detail-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
      }

      .day-detail-row span {
        text-align: left;
      }

      .headline-panel,
      .today-panel {
        min-height: auto;
      }

      .ticker {
        display: none;
      }

      .level-choice {
        grid-template-columns: 92px 1fr;
        min-height: 96px;
        padding: 14px 16px;
      }

      .person-name {
        font-size: 36px;
      }
    }
