:root {
  --web-ink: #302a3e;
  --web-soft: #77717e;
  --web-plum: #171223;
  --web-plum-2: #261b35;
  --web-lavender: #7566a8;
  --web-moon: #f6d986;
  --web-mint: #8fd8c7;
  --web-ivory: #fbfaf6;
  --web-surface: #f3f0ed;
  --web-line: rgba(48, 42, 62, 0.13);
  --web-font: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", system-ui, sans-serif;
}

body.v3-web {
  min-width: 960px;
  margin: 0;
  color: var(--web-ink);
  background: var(--web-ivory);
  font-family: var(--web-font);
  font-weight: 400;
  letter-spacing: 0;
}

.v3-web button,
.v3-web textarea,
.v3-web input {
  font-family: inherit;
  letter-spacing: 0;
}

.v3-web .app-shell {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  min-height: 100vh;
  background: var(--web-ivory);
}

.v3-web .sidebar {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  width: 76px;
  height: 100vh;
  flex-direction: column;
  align-items: center;
  padding: 22px 0 20px;
  color: #d9d2e4;
  background: var(--web-plum);
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.v3-web .sidebar .brand {
  display: grid;
  min-height: 44px;
  place-items: center;
  padding: 0;
}

.v3-web .brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--web-moon);
  box-shadow: inset 15px 0 0 #2b213a, 0 0 17px rgba(246, 217, 134, 0.27);
}

.v3-web .brand-mark svg,
.v3-web .brand-text,
.v3-web .sidebar-note {
  display: none;
}

.v3-web .side-nav {
  display: grid;
  gap: 14px;
  width: 100%;
  margin: 40px 0 0;
  padding: 0;
}

.v3-web .side-nav button {
  position: relative;
  display: grid;
  width: 50px;
  height: 50px;
  min-height: 50px;
  place-items: center;
  margin: 0 auto;
  padding: 0;
  color: #a99fb7;
  background: transparent;
  border: 0;
  border-radius: 8px;
}

.v3-web .side-nav button span {
  position: absolute;
  z-index: 5;
  left: 57px;
  display: none;
  width: max-content;
  padding: 7px 9px;
  color: #fff;
  background: #302641;
  border-radius: 6px;
  font-size: 12px;
}

.v3-web .side-nav button:hover span {
  display: block;
}

.v3-web .side-nav button.active {
  color: var(--web-moon);
  background: rgba(255, 255, 255, 0.07);
}

.v3-web .side-nav button.active::before {
  content: "";
  position: absolute;
  left: -13px;
  width: 3px;
  height: 27px;
  border-radius: 2px;
  background: var(--web-moon);
}

.v3-web .side-nav .nav-icon {
  width: 22px;
  height: 22px;
}

.v3-web .main-column {
  min-width: 0;
  margin: 0;
}

.v3-web .topbar {
  position: sticky;
  z-index: 15;
  top: 0;
  display: flex;
  height: 74px;
  align-items: center;
  justify-content: space-between;
  padding: 0 34px;
  color: var(--web-ink);
  background: rgba(251, 250, 246, 0.96);
  border: 0;
  border-bottom: 1px solid var(--web-line);
  backdrop-filter: blur(16px);
}

.v3-web .desktop-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--web-ink);
  text-decoration: none;
}

.v3-web .desktop-brand > span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--web-moon);
  box-shadow: inset 8px 0 0 #ddd6e2;
}

.v3-web .desktop-brand strong {
  font-size: 20px;
  font-weight: 650;
}

.v3-web .desktop-brand small {
  margin-left: 2px;
  color: #898290;
  font-size: 11px;
}

.v3-web .page-title,
.v3-web .moon-widget {
  display: none;
}

.v3-web .top-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.v3-web .ghost-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  color: #645b75;
  background: transparent;
  border: 1px solid var(--web-line);
  border-radius: 8px;
  text-decoration: none;
}

.v3-web .ghost-button.active {
  color: var(--web-plum);
  background: var(--web-moon);
  border-color: var(--web-moon);
}

.v3-web main {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 32px clamp(28px, 4.5vw, 72px) 60px;
}

.v3-web .hero-grid,
.v3-web .workspace-grid,
.v3-web .lower-grid {
  width: min(100%, 1240px);
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
}

.v3-web .hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 24px;
  align-items: stretch;
}

.v3-web[data-has-weekly="false"] .hero-grid {
  grid-template-columns: 1fr;
}

.v3-web[data-has-weekly="false"] .stats-panel {
  display: none;
}

.v3-web .lunar-panel {
  position: relative;
  display: block;
  min-height: 260px;
  padding: 28px 40px 31px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 50% 18%, rgba(128, 108, 174, 0.18), transparent 39%),
    linear-gradient(145deg, var(--web-plum), var(--web-plum-2));
  border: 0;
  border-radius: 8px;
  box-shadow: none;
}

.v3-web .lunar-panel::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--web-moon), transparent);
  opacity: 0.5;
}

.v3-web .lunar-panel::before {
  display: none;
}

.v3-web .moon-scene {
  display: none;
}

.v3-web .desktop-moon-phases {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
  gap: 12px;
  width: min(100%, 650px);
  margin: 0 auto 21px;
}

.v3-web .desktop-moon,
.v3-web .desktop-today {
  position: relative;
  display: grid;
  place-items: center;
}

.v3-web .desktop-moon {
  width: 34px;
  height: 34px;
  margin: auto;
  overflow: hidden;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 31%, rgba(118, 79, 25, 0.2) 0 7%, transparent 8%),
    linear-gradient(135deg, #ffe8a5, #efc66c);
  box-shadow: 0 0 12px rgba(246, 217, 134, 0.23);
}

.v3-web .desktop-moon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--web-plum-2);
}

.v3-web .desktop-moon.phase-1::after { transform: translateX(-11px); }
.v3-web .desktop-moon.phase-2::after { transform: translateX(-21px); }
.v3-web .desktop-moon.phase-3::after { transform: translateX(-29px); }
.v3-web .desktop-moon.phase-5::after { transform: translateX(29px); }
.v3-web .desktop-moon.phase-6::after { transform: translateX(21px); }
.v3-web .desktop-moon.phase-7::after { transform: translateX(11px); }

.v3-web .desktop-moon.full {
  width: 52px;
  height: 52px;
  box-shadow: 0 0 24px rgba(246, 217, 134, 0.4);
}

.v3-web .desktop-moon.full::after {
  display: none;
}

.v3-web .desktop-today small {
  margin-top: 4px;
  color: var(--web-moon);
  font-size: 9px;
  font-weight: 700;
}

.v3-web .hero-copy {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.v3-web .hero-copy > p:first-child {
  margin: 0 0 4px;
  color: #d6cee2;
  font-size: 15px;
}

.v3-web .hero-copy h1 {
  margin: 0;
  color: #fff;
  font-size: 31px;
  font-weight: 650;
  line-height: 1.3;
}

.v3-web .hero-copy > p:last-child {
  margin: 7px 0 0;
  color: #aaa2ba;
  font-size: 13px;
  line-height: 1.55;
}

.v3-web .stats-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-content: start;
  gap: 8px;
  padding: 20px;
  background: var(--web-surface);
  border: 1px solid var(--web-line);
  border-radius: 8px;
  box-shadow: none;
}

.v3-web .stat {
  min-width: 0;
  padding: 12px 5px;
  text-align: center;
  background: var(--web-ivory);
  border: 1px solid var(--web-line);
  border-radius: 8px;
}

.v3-web .stat span {
  color: #817b87;
  font-size: 10px;
}

.v3-web .stat strong {
  display: block;
  margin-top: 5px;
  color: #5d4c95;
  font-size: 24px;
  font-weight: 650;
}

.v3-web .stats-panel > p {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  color: var(--web-soft);
  font-size: 11px;
}

.v3-web .workspace-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 24px;
  align-items: start;
  margin-top: 28px;
}

.v3-web .input-panel,
.v3-web .reflection-panel,
.v3-web .history-panel,
.v3-web .context-panel {
  min-width: 0;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.v3-web .section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 11px;
}

.v3-web .section-head p {
  margin: 0;
  color: var(--web-lavender);
  font-size: 11px;
  font-weight: 700;
}

.v3-web .section-head h2 {
  margin: 4px 0 0;
  color: var(--web-ink);
  font-size: 22px;
  font-weight: 650;
}

.v3-web .subtle-button,
.v3-web .mini-button,
.v3-web .primary-button {
  min-height: 44px;
  border-radius: 8px;
  font-weight: 650;
}

.v3-web .subtle-button,
.v3-web .mini-button {
  color: #62567e;
  background: transparent;
  border: 1px solid var(--web-line);
}

.v3-web .voice-entry {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 12px;
  min-height: 276px;
  padding: 20px;
  background: #f6f3ef;
  border: 1px solid var(--web-line);
  border-radius: 8px;
}

.v3-web .field {
  padding: 0;
  background: transparent;
  border: 0;
}

.v3-web .field > span {
  color: #4c4456;
  font-size: 13px;
  font-weight: 650;
}

.v3-web .field textarea {
  min-height: 216px;
  padding: 13px 0 0;
  resize: none;
  color: var(--web-ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--web-line);
  outline: 0;
  font-size: 16px;
  line-height: 1.8;
}

.v3-web .field textarea::placeholder {
  color: #a39ca8;
}

.v3-web .dictation-card {
  display: grid;
  min-height: 224px;
  place-items: center;
  align-content: center;
  gap: 13px;
  padding: 18px;
  text-align: center;
  background: #eeeaf2;
  border: 0;
  border-radius: 8px;
}

.v3-web .dictation-button {
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  padding: 0;
  color: #fff;
  background: linear-gradient(145deg, #676fe3, #5dcbb9);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 12px rgba(104, 111, 226, 0.08);
}

.v3-web .dictation-button span {
  position: absolute;
  width: 190px;
  margin-top: 130px;
  color: #554a70;
  font-size: 12px;
  font-weight: 650;
}

.v3-web .dictation-card > p {
  margin: 48px 0 0;
  color: var(--web-soft);
  font-size: 10px;
  line-height: 1.5;
}

.v3-web .submit-row.primary-flow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 12px;
}

.v3-web .submit-row.primary-flow .primary-button {
  min-width: 220px;
  padding: 0 20px;
  color: #fff;
  background: var(--web-plum-2);
  border: 1px solid var(--web-plum-2);
}

.v3-web .submit-row.primary-flow > span {
  order: -1;
  margin-right: auto;
  color: var(--web-soft);
  font-size: 11px;
}

.v3-web .self-check-details {
  margin-top: 16px;
  padding: 0;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--web-line);
  border-radius: 0;
}

.v3-web .self-check-details summary {
  min-height: 52px;
  padding: 17px 28px 13px 0;
  color: #5c4f84;
  font-size: 13px;
  font-weight: 650;
}

.v3-web .self-check-body {
  padding: 10px 0 0;
}

.v3-web .listening-note {
  padding: 14px;
  background: #edf7f4;
  border: 0;
  border-left: 3px solid var(--web-mint);
  border-radius: 0;
}

.v3-web .self-rating-grid {
  grid-template-columns: repeat(2, minmax(180px, 250px));
  justify-content: start;
  gap: 10px;
}

.v3-web .rating-field {
  border-radius: 8px;
}

.v3-web .draft-preview {
  display: none !important;
}

.v3-web .reflection-panel {
  min-height: 410px;
  padding: 25px 24px;
  background: var(--web-surface);
  border-left: 1px solid var(--web-line);
}

.v3-web .desktop-trust {
  color: var(--web-ink);
}

.v3-web .desktop-trust > strong {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #514575;
  font-size: 14px;
}

.v3-web .desktop-trust h2 {
  margin: 10px 0 7px;
  font-size: 20px;
  font-weight: 650;
}

.v3-web .desktop-trust p,
.v3-web .desktop-trust li {
  color: var(--web-soft);
  font-size: 12px;
  line-height: 1.7;
}

.v3-web .desktop-trust ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 17px 0 0 18px;
  border-top: 1px solid var(--web-line);
}

.v3-web[data-has-entries="false"] .reflection-panel > .section-head,
.v3-web[data-has-entries="false"] .reflection-area {
  display: none;
}

.v3-web[data-has-entries="true"] .desktop-trust {
  display: none;
}

.v3-web[data-has-entries="true"] .reflection-panel {
  padding-top: 20px;
}

.v3-web .reflection-area {
  display: block;
}

.v3-web .emotion-output,
.v3-web .release-card,
.v3-web .reflection-grid,
.v3-web .action-list,
.v3-web .continuation-panel,
.v3-web .memory-panel,
.v3-web .context-disclosure {
  margin: 0;
  padding: 18px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--web-line);
  border-radius: 0;
  box-shadow: none;
}

.v3-web .emotion-output {
  padding-top: 0;
}

.v3-web .release-head strong {
  color: #493d72;
  font-size: 15px;
  font-weight: 650;
}

.v3-web .release-head span {
  color: var(--web-soft);
  font-size: 11px;
}

.v3-web .echo-primary {
  margin: 11px 0;
  color: #403947;
  font-size: 15px;
  line-height: 1.8;
}

.v3-web .continuity-line {
  margin: 12px 0 2px;
  padding-left: 12px;
  color: #625a69;
  border-left: 2px solid rgba(143, 216, 199, 0.78);
  font-size: 12px;
  line-height: 1.75;
}

.v3-web .continuity-line span {
  display: block;
  margin-bottom: 2px;
  color: #4d746e;
  font-size: 10px;
  font-weight: 650;
}

.v3-web .continuity-card,
.v3-web .echo-details,
.v3-web .context-disclosure {
  padding: 12px 0;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--web-line);
  border-radius: 0;
}

.v3-web .continuity-card summary,
.v3-web .echo-details summary,
.v3-web .context-disclosure summary {
  min-height: 42px;
  padding: 10px 24px 8px 0;
  color: #574b76;
  font-size: 12px;
  font-weight: 650;
}

.v3-web .context-disclosure {
  padding: 10px 0 15px;
  border-top: 0;
}

.v3-web .context-disclosure summary {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 66px;
  padding: 7px 0;
  list-style: none;
  cursor: pointer;
}

.v3-web .context-disclosure summary::-webkit-details-marker,
.v3-web .context-disclosure summary::after {
  display: none;
}

.v3-web .context-symbol {
  align-self: start;
  padding-top: 3px;
  color: #7561aa;
  font-size: 18px;
  line-height: 1;
}

.v3-web .context-summary-copy {
  display: grid;
  gap: 4px;
}

.v3-web .context-summary-copy strong {
  color: #4d416f;
  font-size: 14px;
  font-weight: 650;
}

.v3-web .context-summary-copy small {
  color: var(--web-soft);
  font-size: 12px;
  font-weight: 450;
}

.v3-web .context-peek {
  color: #67578f;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.v3-web .context-peek-close,
.v3-web .context-disclosure[open] .context-peek-open {
  display: none;
}

.v3-web .context-disclosure[open] .context-peek-close {
  display: inline;
}

.v3-web .context-body {
  padding: 2px 0 8px 30px;
  animation: v3-web-context-reveal 180ms ease-out;
}

.v3-web .context-reflection {
  margin: 0;
  color: #4f4857;
  font-size: 13px;
  font-weight: 450;
  line-height: 1.8;
}

.v3-web .context-boundary {
  margin: 12px 0 0;
  padding-left: 12px;
  color: var(--web-soft);
  border-left: 2px solid rgba(87, 175, 156, 0.42);
  font-size: 11px;
  line-height: 1.7;
}

.v3-web .emotion-grid.gentle-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  padding: 4px 0;
}

.v3-web .emotion-grid.gentle-list p {
  margin: 0;
  color: var(--web-soft);
  font-size: 12px;
  line-height: 1.7;
}

.v3-web .self-reflection > summary,
.v3-web .memory-panel > summary {
  display: grid;
  gap: 4px;
  min-height: 52px;
  padding: 8px 28px 8px 0;
  list-style: none;
  cursor: pointer;
}

.v3-web .self-reflection > summary::-webkit-details-marker,
.v3-web .memory-panel > summary::-webkit-details-marker {
  display: none;
}

.v3-web .self-reflection > summary strong,
.v3-web .memory-panel > summary strong {
  color: #493d72;
  font-size: 14px;
  font-weight: 650;
}

.v3-web .self-reflection > summary span,
.v3-web .memory-panel > summary span {
  color: var(--web-soft);
  font-size: 11px;
  line-height: 1.55;
}

.v3-web .self-reflection .post-check {
  margin-top: 8px;
  padding: 14px 0 0;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--web-line);
}

.v3-web .memory-items {
  margin-top: 6px;
  padding-left: 13px;
  border-left: 2px solid rgba(143, 216, 199, 0.62);
}

.v3-web .continuation-panel {
  margin-top: 0;
  padding: 18px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--web-line);
  border-radius: 0;
}

.v3-web .context-intro,
.v3-web .context-caution {
  color: var(--web-soft);
  font-size: 12px;
  line-height: 1.65;
}

.v3-web .context-observations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 13px 0;
  padding: 13px 0;
  border-top: 1px solid var(--web-line);
  border-bottom: 1px solid var(--web-line);
}

.v3-web .context-observation {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.v3-web .context-observation p {
  margin: 0;
  color: #5b5463;
  font-size: 12px;
}

.v3-web .context-observation strong {
  color: #352d43;
  font-size: 16px;
  font-weight: 650;
}

.v3-web .context-observation span,
.v3-web .context-observation a {
  color: var(--web-soft);
  font-size: 11px;
  line-height: 1.55;
}

.v3-web .context-observation a {
  width: fit-content;
  color: #5e5190;
  text-decoration: underline;
  text-decoration-color: rgba(94, 81, 144, 0.28);
  text-underline-offset: 3px;
}

.v3-web .context-empty {
  margin: 0;
  padding: 13px 15px;
  color: #625b69;
  background: rgba(239, 246, 243, 0.72);
  border-left: 2px solid rgba(87, 175, 156, 0.52);
  font-size: 12px;
  line-height: 1.75;
}

@keyframes v3-web-context-reveal {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.v3-web .echo-details .emotion-grid {
  grid-template-columns: 1fr;
  gap: 5px;
}

.v3-web .echo-details .emotion-grid article {
  padding: 10px 0;
  background: transparent;
  border: 0;
}

.v3-web .feedback-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.v3-web .feedback-row > span {
  width: 100%;
  color: var(--web-soft);
  font-size: 11px;
}

.v3-web .memory-panel {
  margin-top: 12px;
  padding: 15px;
  background: #eaf6f2;
  border-left: 3px solid var(--web-mint);
}

.v3-web .release-metrics {
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.v3-web .release-metric {
  padding: 11px 5px;
  background: var(--web-ivory);
  border: 1px solid var(--web-line);
  border-radius: 8px;
}

.v3-web .reflection-grid,
.v3-web .action-list {
  display: none;
}

.v3-web .continuation-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.v3-web .continuation-actions .primary-button {
  color: #fff;
  background: linear-gradient(100deg, #646ce2, #60cbbb);
  border: 0;
}

.v3-web .lower-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 42px;
  margin-top: 50px;
  padding-top: 32px;
  border-top: 1px solid var(--web-line);
}

.v3-web .journal-list,
.v3-web .support-tools {
  display: grid;
  gap: 10px;
}

.v3-web .journal-item,
.v3-web .support-tool {
  padding: 15px;
  background: var(--web-surface);
  border: 1px solid var(--web-line);
  border-radius: 8px;
  box-shadow: none;
}

.v3-web .weekly-map {
  margin-bottom: 15px;
}

body.v3-web[data-dictation-visual="listening"] .lunar-panel,
body.v3-web[data-dictation-visual="listening"] .voice-entry {
  background:
    radial-gradient(circle at 70% 60%, rgba(100, 210, 195, 0.4), transparent 22%),
    radial-gradient(circle at 55% 54%, rgba(105, 108, 231, 0.58), transparent 35%),
    linear-gradient(145deg, var(--web-plum), #343c61);
}

body.v3-web[data-dictation-visual="listening"] .voice-entry,
body.v3-web[data-dictation-visual="listening"] .field > span,
body.v3-web[data-dictation-visual="listening"] .field textarea,
body.v3-web[data-dictation-visual="listening"] .field textarea::placeholder {
  color: #fff;
}

body.v3-web[data-dictation-visual="listening"] .dictation-card {
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 1120px) {
  .v3-web main { padding-inline: 28px; }
  .v3-web .workspace-grid { grid-template-columns: minmax(0, 1fr) 300px; }
  .v3-web .voice-entry { grid-template-columns: 1fr 190px; }
}

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

.v3-web .daily-review-panel {
  margin-top: 48px;
  padding: 34px 0;
  border-block: 1px solid var(--web-line);
  background: rgba(246, 244, 249, 0.58);
}

.v3-web .daily-review-heading {
  display: flex;
  gap: 24px;
  align-items: start;
  justify-content: space-between;
  padding-inline: 30px;
}

.v3-web .daily-review-heading p,
.v3-web .daily-review-heading h2,
.v3-web .daily-review-heading span,
.v3-web .desktop-daily-review p,
.v3-web .desktop-weekly-clues p {
  margin: 0;
}

.v3-web .daily-review-heading p {
  color: #6b5794;
  font-size: 12px;
  font-weight: 700;
}

.v3-web .daily-review-heading h2 {
  margin-top: 4px;
  color: #2e2737;
  font-size: 24px;
  font-weight: 700;
}

.v3-web .daily-review-heading span {
  display: block;
  margin-top: 6px;
  color: #756f79;
  font-size: 14px;
  line-height: 1.65;
}

.v3-web .desktop-daily-review {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 46px;
  margin-top: 28px;
  padding-inline: 30px;
}

.v3-web .desktop-review-empty {
  grid-column: 1 / -1;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  min-height: 90px;
  color: #625d68;
}

.v3-web .desktop-review-story,
.v3-web .desktop-review-choice {
  display: grid;
  gap: 13px;
  align-content: start;
  min-width: 0;
}

.v3-web .desktop-review-story > span,
.v3-web .desktop-review-choice > strong,
.v3-web .desktop-review-sense strong,
.v3-web .desktop-review-threads > span,
.v3-web .desktop-weekly-clues strong {
  color: #554277;
  font-size: 14px;
  font-weight: 700;
}

.v3-web .desktop-review-echo {
  color: #312c35;
  font-size: 18px;
  line-height: 1.72;
}

.v3-web .desktop-review-soft {
  padding-left: 14px;
  border-left: 2px solid rgba(82, 183, 169, 0.72);
  color: #625e67;
  font-size: 14px;
  line-height: 1.7;
}

.v3-web .desktop-review-sense {
  display: grid;
  gap: 7px;
  margin-top: 4px;
  padding-top: 15px;
  border-top: 1px solid var(--web-line);
  color: #6a6570;
  font-size: 14px;
  line-height: 1.65;
}

.v3-web .desktop-review-boundary {
  color: #8a8590;
  font-size: 12px;
  line-height: 1.6;
}

.v3-web .desktop-review-choice > p {
  color: #706a75;
  font-size: 13px;
  line-height: 1.65;
}

.v3-web .desktop-review-threads {
  display: grid;
  gap: 7px;
}

.v3-web .desktop-review-threads button {
  min-width: 0;
  min-height: 46px;
  padding: 10px 12px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.76);
  color: #57515c;
  font-size: 13px;
  line-height: 1.45;
  text-align: left;
  text-overflow: ellipsis;
}

.v3-web .desktop-review-threads button.active {
  border-color: rgba(91, 73, 130, 0.38);
  background: #eeebf5;
  color: #493961;
}

.v3-web .desktop-closure-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.v3-web .desktop-closure-actions button {
  min-width: 0;
  min-height: 48px;
  padding: 9px 12px;
  border: 1px solid rgba(84, 68, 116, 0.23);
  border-radius: 7px;
  background: #fff;
  color: #4f4958;
  font-size: 13px;
  font-weight: 650;
}

.v3-web .desktop-closure-actions button.active {
  border-color: #5e4b82;
  background: #52406f;
  color: #fff;
}

.v3-web .desktop-closure-message {
  padding: 12px 14px;
  border-left: 3px solid #61b9ad;
  background: rgba(218, 242, 238, 0.52);
  color: #3e5551;
  font-size: 13px;
  line-height: 1.6;
}

.v3-web .desktop-evening-checkin,
.v3-web .desktop-evening-hold,
.v3-web .desktop-evening-complete {
  display: grid;
  gap: 11px;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--web-line);
}

.v3-web .desktop-evening-checkin > strong,
.v3-web .desktop-evening-hold > strong,
.v3-web .desktop-evening-complete > strong {
  color: #342d3d;
  font-size: 17px;
  font-weight: 680;
  line-height: 1.5;
}

.v3-web .desktop-evening-checkin > p,
.v3-web .desktop-evening-hold > p,
.v3-web .desktop-evening-complete > p {
  color: #67616d;
  font-size: 13px;
  line-height: 1.7;
}

.v3-web .desktop-felt-state-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.v3-web .desktop-felt-state-actions button,
.v3-web .desktop-evening-actions button {
  min-width: 0;
  min-height: 46px;
  padding: 8px 10px;
  border: 1px solid rgba(84, 68, 116, 0.23);
  border-radius: 7px;
  background: #fff;
  color: #504858;
  font-size: 12px;
  font-weight: 680;
  line-height: 1.35;
}

.v3-web .desktop-felt-state-actions button:disabled {
  border-color: rgba(91, 185, 172, 0.48);
  background: rgba(222, 243, 239, 0.68);
  color: #41635e;
}

.v3-web .desktop-evening-hold {
  padding: 17px 16px;
  border-top: 0;
  border-left: 3px solid #63bbae;
  background: rgba(235, 244, 242, 0.74);
}

.v3-web .desktop-evening-hold > span {
  color: #6d5b8f;
  font-size: 11px;
  font-weight: 700;
}

.v3-web .desktop-evening-hold > p:not(.desktop-evening-prompt) {
  color: #403a45;
  font-size: 14px;
}

.v3-web .desktop-evening-prompt {
  padding-top: 9px;
  border-top: 1px solid rgba(77, 99, 95, 0.13);
}

.v3-web .desktop-evening-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.v3-web .desktop-evening-actions button.primary {
  border-color: #604d86;
  background: #51406f;
  color: #fff;
}

.v3-web .desktop-rechoose-evening {
  justify-self: start;
  min-height: 34px;
  padding: 4px 0;
  border: 0;
  border-bottom: 1px solid rgba(82, 66, 112, 0.26);
  background: transparent;
  color: #746a7d;
  font-size: 11px;
}

.v3-web .desktop-evening-complete {
  padding: 18px 16px;
  border-top: 0;
  border-left: 3px solid #d3b15a;
  background: rgba(249, 245, 232, 0.78);
}

.v3-web .settled-mark {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(196, 154, 53, 0.62);
  border-radius: 50%;
  background: #f3d479;
  box-shadow: 0 0 22px rgba(224, 184, 79, 0.28);
}

.v3-web .settle-overlay {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  align-items: center;
  padding: 32px;
  background: linear-gradient(180deg, #171126 0%, #25214d 56%, #315f68 100%);
  color: #f8f4ff;
}

.v3-web .settle-overlay[hidden] {
  display: none;
}

.v3-web .settle-dialog {
  display: grid;
  gap: 14px;
  width: min(100%, 460px);
  margin-inline: auto;
  text-align: center;
}

.v3-web .settle-moon {
  display: grid;
  place-items: center;
  width: 164px;
  height: 164px;
  margin: 0 auto 18px;
  border: 1px solid rgba(181, 222, 218, 0.26);
  border-radius: 50%;
  animation: web-settle-breathe 8s ease-in-out both;
}

.v3-web .settle-moon span {
  width: 102px;
  height: 102px;
  border-radius: 50%;
  background: radial-gradient(circle at 36% 32%, #fff6c7 0%, #f5d67b 48%, #b89c65 100%);
  box-shadow: 0 0 42px rgba(239, 218, 147, 0.34);
}

.v3-web .settle-overlay[data-stage="complete"] .settle-moon {
  animation: none;
  transform: scale(0.88);
}

.v3-web .settle-dialog > p,
.v3-web .settle-dialog > h2 {
  margin: 0;
}

.v3-web #settlePhase {
  min-height: 20px;
  color: #bcded9;
  font-size: 13px;
}

.v3-web #settleTitle {
  color: #fffaf0;
  font-size: 27px;
  font-weight: 680;
  line-height: 1.48;
}

.v3-web #settleBody {
  color: rgba(248, 244, 255, 0.76);
  font-size: 15px;
  line-height: 1.75;
}

.v3-web .settle-actions {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}

.v3-web .settle-actions button {
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 7px;
  background: transparent;
  color: #f8f4ff;
  font-size: 14px;
  font-weight: 680;
}

.v3-web .settle-actions button.primary {
  border-color: #efe0a4;
  background: #f0dd96;
  color: #2e2940;
}

@keyframes web-settle-breathe {
  0% { transform: scale(0.82); opacity: 0.72; }
  42% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(0.88); opacity: 0.9; }
}

.v3-web .desktop-weekly-clues {
  display: grid;
  grid-template-columns: minmax(250px, 0.55fr) minmax(0, 1.45fr);
  gap: 34px;
  margin-top: 28px;
  padding: 22px 30px 0;
  border-top: 1px solid var(--web-line);
}

.v3-web .desktop-weekly-clues > div:first-child {
  display: grid;
  gap: 5px;
}

.v3-web .desktop-weekly-clues span {
  color: #817b86;
  font-size: 12px;
  line-height: 1.55;
}

.v3-web .desktop-weekly-lines {
  display: grid;
  gap: 8px;
}

.v3-web .desktop-weekly-lines p {
  display: grid;
  grid-template-columns: 8px minmax(0, 1fr);
  gap: 9px;
  color: #625d68;
  font-size: 13px;
  line-height: 1.55;
}

.v3-web .desktop-weekly-lines i {
  width: 5px;
  height: 5px;
  margin-top: 8px;
  border-radius: 50%;
  background: #cda84f;
}

.v3-web .desktop-review-path {
  width: 100%;
  min-height: 44px;
  border: 0;
  border-bottom: 1px solid var(--web-line);
  background: transparent;
  color: #5d497f;
  font-weight: 680;
}

@media (max-width: 1120px) {
  .v3-web .desktop-daily-review {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: 28px;
  }
}
