/* ============================================================
   LIGHTHOUSE · 灯塔
   "Details are not the details. They make the design." — C. Eames
   ============================================================ */

/* ── 1. Custom Properties ─────────────────────────────────── */
:root {
  --bg:         #F6F3EE;
  --surface:    #FDFCF9;
  --surface-2:  #EDEAE3;
  --surface-3:  #E4E0D8;

  --ink-900:    #111008;
  --ink-700:    #2C2A24;
  --ink-500:    #68645C;
  --ink-300:    #A49F96;
  --ink-100:    #D5D0C8;

  --gold:       #B08A50;
  --gold-lt:    #D4AE78;
  --gold-glow:  rgba(176,138,80,0.14);
  --gold-ring:  rgba(176,138,80,0.22);

  /* Circle palette */
  --c1: #527A66;
  --c2: #4A6B8A;
  --c3: #8A5A4C;
  --c4: #664E80;
  --c5: #7A4C4C;

  --serif: 'DM Serif Display', 'Noto Serif SC', Georgia, serif;
  --sans:  'Noto Sans SC', 'PingFang SC', system-ui, sans-serif;

  --ease-expo:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth:  cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);

  --r-sm:   6px;
  --r-md:   14px;
  --r-lg:   22px;
  --r-xl:   32px;
  --r-full: 999px;

  --shadow-sm:  0 1px 4px rgba(17,16,8,0.06), 0 1px 2px rgba(17,16,8,0.04);
  --shadow-md:  0 4px 20px rgba(17,16,8,0.08), 0 1px 6px rgba(17,16,8,0.04);
  --shadow-lg:  0 12px 48px rgba(17,16,8,0.11), 0 4px 16px rgba(17,16,8,0.06);
  --shadow-xl:  0 28px 80px rgba(17,16,8,0.16), 0 8px 24px rgba(17,16,8,0.08);
  --shadow-2xl: 0 48px 120px rgba(17,16,8,0.22), 0 16px 40px rgba(17,16,8,0.1);
}

/* ── 2. Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  font-size: 16px;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
}
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink-900);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: none; /* custom cursor */
}
button { font-family: inherit; cursor: none; border: none; background: none; }
input  { font-family: inherit; cursor: none; }
a      { cursor: none; }

/* ── 3. Custom Cursor ─────────────────────────────────────── */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 6px; height: 6px;
  background: var(--ink-900);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.15s var(--ease-smooth),
              height 0.15s var(--ease-smooth),
              background 0.15s;
  will-change: transform;
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(17,16,8,0.25);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  will-change: transform;
  transition: width 0.35s var(--ease-expo),
              height 0.35s var(--ease-expo),
              border-color 0.2s,
              background 0.2s;
}

/* Hover states */
body.cursor-hover .cursor-dot {
  width: 8px; height: 8px;
  background: var(--gold);
}
body.cursor-hover .cursor-ring {
  width: 52px; height: 52px;
  border-color: var(--gold-ring);
  background: var(--gold-glow);
}
body.cursor-text .cursor-dot {
  width: 3px; height: 20px;
  border-radius: 2px;
  background: var(--ink-700);
}
body.cursor-text .cursor-ring {
  width: 2px; height: 2px;
  opacity: 0;
}

/* ── 4. Noise Canvas ──────────────────────────────────────── */
#noise-canvas {
  position: fixed;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.032;
  mix-blend-mode: multiply;
}

/* ── 5. Header ────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 62px;
  background: rgba(246,243,238,0.82);
  backdrop-filter: saturate(200%) blur(24px);
  -webkit-backdrop-filter: saturate(200%) blur(24px);
  border-bottom: 1px solid rgba(17,16,8,0.06);
  transition: box-shadow 0.4s var(--ease-smooth);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  user-select: none;
  text-decoration: none;
  color: var(--ink-900);
}
.logo-mark {
  width: 24px; height: 24px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.6s var(--ease-spring);
}
.logo:hover .logo-mark { transform: rotate(45deg); }

.logo-wordmark {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
}
.logo-divider { color: var(--ink-300); font-size: 13px; line-height: 1; }
.logo-cn {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--ink-500);
  letter-spacing: 0.1em;
  line-height: 1;
}

/* Nav */
.header-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--surface-2);
  padding: 4px;
  border-radius: var(--r-full);
  border: 1px solid var(--ink-100);
}
.nav-pill {
  position: relative;
  padding: 7px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-300);
  border-radius: var(--r-full);
  letter-spacing: 0.03em;
  transition: color 0.2s;
  display: flex; align-items: center; gap: 6px;
  white-space: nowrap;
}
.nav-pill:hover { color: var(--ink-700); }
.nav-pill.active {
  background: var(--surface);
  color: var(--ink-900);
  box-shadow: var(--shadow-sm);
}
.nav-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.nav-pill.active .nav-dot { opacity: 1; }

/* ── 6. Layout ────────────────────────────────────────────── */
.main-content {
  max-width: 1120px;
  margin: 0 auto;
  padding: 62px 32px 80px;
  position: relative;
  z-index: 1;
}

/* ── 7. Views ─────────────────────────────────────────────── */
.view { display: none; }
.view.active {
  display: block;
  animation: viewIn 0.6s var(--ease-expo) both;
}
@keyframes viewIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── 8. Hero ──────────────────────────────────────────────── */
.daily-hero, .view-hero {
  text-align: center;
  padding: 72px 0 56px;
}
.hero-eyebrow { margin-bottom: 14px; }
.hero-date {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-300);
  font-weight: 500;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 400;
  color: var(--ink-900);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  /* Subtle text shimmer */
  background: linear-gradient(135deg, var(--ink-900) 0%, var(--ink-700) 60%, var(--ink-900) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 8s linear infinite;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.hero-sub {
  font-size: 15px;
  color: var(--ink-500);
  letter-spacing: 0.01em;
  line-height: 1.7;
}

/* ── 9. Card Stage ────────────────────────────────────────── */
.card-stage {
  display: flex;
  justify-content: center;
  padding-bottom: 48px;
  perspective: 1200px;
}

/* ── 10. Full Card (Daily) ────────────────────────────────── */
.card-full {
  width: 100%;
  max-width: 660px;
  background: var(--surface);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  position: relative;
  outline: 1px solid rgba(17,16,8,0.06);
  outline-offset: -1px;
  animation: cardReveal 0.7s var(--ease-expo) both;
  transform-style: preserve-3d;
  will-change: transform;
}
@keyframes cardReveal {
  from { opacity: 0; transform: translateY(32px) scale(0.97) rotateX(4deg); }
  to   { opacity: 1; transform: translateY(0) scale(1) rotateX(0); }
}

/* Gradient glow on top-left corner */
.card-full::after {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--cc-color, rgba(176,138,80,0.12)) 0%, transparent 70%);
  pointer-events: none;
  transition: opacity 0.4s;
}

.card-full-bar {
  height: 3px;
  background: var(--cc-color, var(--gold));
  opacity: 0.9;
  position: relative;
}
/* Shimmer on bar */
.card-full-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  animation: barShimmer 3s ease-in-out infinite;
}
@keyframes barShimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.card-full-body {
  padding: 44px 52px 48px;
}

.card-full-meta {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 24px;
}
.cf-num {
  font-size: 10px; letter-spacing: 0.2em;
  color: var(--ink-300); font-weight: 600;
}
.cf-badge {
  font-size: 11px; padding: 3px 10px;
  border-radius: var(--r-full);
  background: var(--surface-2);
  color: var(--ink-500);
  border: 1px solid var(--ink-100);
  letter-spacing: 0.03em;
}

.card-full-title {
  font-family: var(--serif);
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 400;
  color: var(--ink-900);
  line-height: 1.22;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}

.cf-section { margin-bottom: 24px; }
.cf-label {
  font-size: 9px; letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-300); font-weight: 700;
  margin-bottom: 10px;
}
.cf-body {
  font-size: 15px; line-height: 1.9;
  color: var(--ink-700);
  font-family: var(--serif); font-weight: 300;
}

/* Action box */
.cf-action {
  margin-top: 28px;
  background: linear-gradient(135deg, var(--gold-glow) 0%, rgba(176,138,80,0.06) 100%);
  border: 1px solid var(--gold-ring);
  border-radius: var(--r-md);
  padding: 20px 24px;
  position: relative;
  overflow: hidden;
}
.cf-action::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
  opacity: 0.6;
}
.cf-action-label {
  font-size: 9px; letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold); font-weight: 700;
  margin-bottom: 10px;
  padding-left: 10px;
}
.cf-action-body {
  font-size: 15px; line-height: 1.8;
  color: var(--ink-900);
  font-family: var(--serif); font-weight: 400;
  padding-left: 10px;
}

/* CTA Button */
.cf-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 32px;
  padding: 16px;
  background: var(--ink-900);
  color: var(--bg);
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s var(--ease-expo),
              box-shadow 0.2s var(--ease-expo);
}
/* Hover shimmer sweep */
.cf-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; bottom: 0;
  width: 60%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
  transition: left 0.5s var(--ease-expo);
}
.cf-cta:hover::before { left: 150%; }
.cf-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(17,16,8,0.28);
}
.cf-cta:active { transform: translateY(-1px); }

/* Daily footer */
.daily-footer {
  display: flex;
  justify-content: center;
  padding-bottom: 64px;
}

/* Ghost button */
.ghost-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 22px;
  font-size: 13px;
  color: var(--ink-500);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-full);
  letter-spacing: 0.03em;
  transition:
    color 0.2s,
    border-color 0.2s,
    background 0.2s,
    transform 0.3s var(--ease-expo),
    box-shadow 0.3s;
}
.ghost-btn:hover {
  color: var(--ink-900);
  border-color: var(--ink-300);
  background: var(--surface);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.ghost-btn:active { transform: translateY(0); }

/* ── 11. Filter Bar ───────────────────────────────────────── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 56px;
}
.filter-chip {
  padding: 8px 20px;
  font-size: 13px;
  color: var(--ink-500);
  background: var(--surface);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-full);
  letter-spacing: 0.03em;
  transition:
    color 0.2s,
    background 0.2s,
    border-color 0.2s,
    transform 0.25s var(--ease-expo),
    box-shadow 0.25s;
}
.filter-chip em {
  font-style: normal; font-size: 11px;
  color: var(--ink-300); margin-left: 4px;
}
.filter-chip:hover {
  color: var(--ink-900); border-color: var(--ink-300);
  transform: translateY(-2px); box-shadow: var(--shadow-sm);
}
.filter-chip.active {
  background: var(--ink-900); color: var(--bg);
  border-color: var(--ink-900); box-shadow: var(--shadow-md);
}
.filter-chip.active em { color: rgba(246,243,238,0.4); }

/* ── 12. Cards Grid ───────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 16px;
}

/* ── 13. Thumb Card ───────────────────────────────────────── */
.card-thumb {
  position: relative;
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 28px 26px 24px;
  cursor: none;
  border: 1px solid rgba(17,16,8,0.07);
  display: flex; flex-direction: column; gap: 12px;
  overflow: hidden;
  transition:
    transform 0.4s var(--ease-expo),
    box-shadow 0.4s var(--ease-expo),
    border-color 0.2s;
  animation: thumbIn 0.5s var(--ease-expo) both;
  will-change: transform;
}
@keyframes thumbIn {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Left accent strip */
.card-thumb::before {
  content: '';
  position: absolute;
  left: 0; top: 16px; bottom: 16px;
  width: 3px;
  background: var(--cc-color, var(--gold));
  border-radius: 0 3px 3px 0;
  opacity: 0.7;
  transition: opacity 0.2s, top 0.3s var(--ease-expo), bottom 0.3s var(--ease-expo);
}
/* Hover glow behind the card */
.card-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%,
    rgba(255,255,255,0.5) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.card-thumb:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.card-thumb:hover::before { top: 10px; bottom: 10px; opacity: 1; }
.card-thumb:hover::after  { opacity: 1; }
.card-thumb:active { transform: translateY(-3px) scale(1.005); }

/* Thumbnail internals */
.ct-meta {
  display: flex; align-items: center; gap: 8px;
  padding-left: 14px;
}
.ct-num {
  font-size: 10px; letter-spacing: 0.2em;
  color: var(--ink-300); font-weight: 600;
}
.ct-badge {
  font-size: 10px; padding: 2px 9px;
  border-radius: var(--r-full);
  background: var(--surface-2);
  color: var(--ink-500);
  letter-spacing: 0.02em;
}
.ct-title {
  font-family: var(--serif);
  font-size: 17px; font-weight: 400;
  color: var(--ink-900); line-height: 1.35;
  letter-spacing: 0.01em;
  padding-left: 14px;
  transition: color 0.2s;
}
.card-thumb:hover .ct-title { color: var(--ink-900); }
.ct-preview {
  font-size: 13px; color: var(--ink-500);
  line-height: 1.75; padding-left: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ct-tags {
  display: flex; flex-wrap: wrap; gap: 5px;
  padding-left: 14px; margin-top: 4px;
}
.ct-tag {
  font-size: 10px; color: var(--ink-300);
  background: var(--surface-2);
  padding: 2px 9px; border-radius: var(--r-full);
}

/* ── 14. Search View ──────────────────────────────────────── */
.search-wrap {
  max-width: 660px;
  margin: 0 auto 64px;
}
.search-field-wrap {
  position: relative;
  display: flex; align-items: center;
  background: var(--surface);
  border: 1.5px solid var(--ink-100);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-bottom: 20px;
  transition: border-color 0.2s, box-shadow 0.3s;
}
.search-field-wrap:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-glow), var(--shadow-md);
}
.search-icon {
  position: absolute; left: 18px;
  color: var(--ink-300); pointer-events: none;
  transition: color 0.2s;
}
.search-field-wrap:focus-within .search-icon { color: var(--gold); }
.search-field {
  flex: 1;
  padding: 18px 16px 18px 48px;
  font-size: 15px; color: var(--ink-900);
  background: transparent; border: none; outline: none;
  letter-spacing: 0.01em;
}
.search-field::placeholder { color: var(--ink-300); }
.search-submit {
  padding: 10px 22px; margin: 6px;
  background: var(--ink-900); color: var(--bg);
  border-radius: var(--r-md);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.05em;
  white-space: nowrap; flex-shrink: 0;
  transition: transform 0.2s var(--ease-expo), opacity 0.2s;
}
.search-submit:hover { opacity: 0.84; transform: scale(0.97); }

.scenario-shelf {
  display: flex; align-items: center;
  gap: 12px; flex-wrap: wrap;
}
.shelf-label {
  font-size: 11px; color: var(--ink-300);
  letter-spacing: 0.12em; white-space: nowrap; font-weight: 500;
}
.shelf-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.s-tag {
  padding: 6px 15px; font-size: 12px;
  color: var(--ink-500); background: var(--surface);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-full); letter-spacing: 0.02em;
  transition: color 0.2s, background 0.2s, border-color 0.2s,
              transform 0.25s var(--ease-expo);
}
.s-tag:hover {
  color: var(--ink-900); background: var(--surface-2);
  border-color: var(--ink-300); transform: translateY(-2px);
}

.search-results { min-height: 200px; }
.search-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 16px;
}
.search-placeholder {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px; padding: 80px 0;
}
.placeholder-ring {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1.5px solid var(--ink-100);
  animation: ringPulse 2.5s ease-in-out infinite;
}
@keyframes ringPulse {
  0%,100% { transform: scale(1); opacity: 0.5; }
  50%     { transform: scale(1.08); opacity: 1; }
}
.search-placeholder p {
  font-size: 14px; color: var(--ink-300);
  letter-spacing: 0.03em;
}
.search-empty-msg {
  text-align: center; padding: 80px 0;
  color: var(--ink-500); font-size: 14px;
  line-height: 2.2;
}
.search-empty-msg strong { color: var(--ink-900); font-weight: 500; }

/* ── 15. Drawer ───────────────────────────────────────────── */
.drawer-overlay {
  position: fixed; inset: 0; z-index: 400;
  display: flex; align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  padding: 0 16px 16px;
}
.drawer-overlay.active { pointer-events: all; }

/* Backdrop */
.drawer-overlay::before {
  content: '';
  position: fixed; inset: 0;
  background: rgba(17,16,8,0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.35s var(--ease-smooth);
}
.drawer-overlay.active::before { opacity: 1; }

.drawer {
  position: relative;
  width: 100%; max-width: 700px;
  max-height: 90vh;
  background: var(--surface);
  border-radius: var(--r-xl) var(--r-xl) var(--r-lg) var(--r-lg);
  box-shadow: var(--shadow-2xl);
  overflow: hidden;
  display: flex; flex-direction: column;
  transform: translateY(110%) scale(0.97);
  opacity: 0;
  transition:
    transform 0.55s var(--ease-expo),
    opacity 0.35s var(--ease-smooth);
  outline: 1px solid rgba(17,16,8,0.06);
}
.drawer-overlay.active .drawer {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Drag handle */
.drawer::before {
  content: '';
  display: block; flex-shrink: 0;
  width: 36px; height: 4px;
  background: var(--ink-100);
  border-radius: var(--r-full);
  margin: 14px auto 0;
}

.drawer-close {
  position: absolute; top: 14px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-500); background: var(--surface-2);
  z-index: 1;
  transition: background 0.2s, color 0.2s, transform 0.2s var(--ease-expo);
}
.drawer-close:hover {
  background: var(--ink-100); color: var(--ink-900);
  transform: rotate(90deg);
}

.drawer-content {
  overflow-y: auto; flex: 1;
  padding: 8px 52px 56px;
  scrollbar-width: thin;
  scrollbar-color: var(--ink-100) transparent;
}

/* Drawer inner */
.drawer-bar {
  height: 3px;
  margin: 14px -52px 24px;
  background: var(--cc-color, var(--gold));
  opacity: 0.85;
}
.drawer-meta {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 20px;
}
.dm-num { font-size: 10px; letter-spacing: 0.2em; color: var(--ink-300); font-weight: 600; }
.dm-badge {
  font-size: 11px; padding: 3px 10px;
  border-radius: var(--r-full);
  background: var(--surface-2); color: var(--ink-500);
  border: 1px solid var(--ink-100);
}
.drawer-title {
  font-family: var(--serif);
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 400; color: var(--ink-900);
  line-height: 1.22; letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.drawer-section { margin-bottom: 22px; }
.ds-label {
  font-size: 9px; letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-300); font-weight: 700;
  margin-bottom: 10px;
}
.ds-body {
  font-size: 15px; line-height: 1.9;
  color: var(--ink-700);
  font-family: var(--serif); font-weight: 300;
}
.drawer-action {
  background: linear-gradient(135deg, var(--gold-glow), rgba(176,138,80,0.05));
  border: 1px solid var(--gold-ring);
  border-radius: var(--r-md);
  padding: 18px 22px 18px 30px;
  margin: 20px 0;
  position: relative; overflow: hidden;
}
.drawer-action::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--gold); opacity: 0.6;
}
.da-label {
  font-size: 9px; letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 10px;
}
.da-body {
  font-size: 15px; line-height: 1.8;
  color: var(--ink-900);
  font-family: var(--serif); font-weight: 400;
}
.drawer-footer {
  display: flex; gap: 10px;
  margin-top: 24px; padding-top: 24px;
  border-top: 1px solid rgba(17,16,8,0.07);
}
.drawer-cta-primary {
  flex: 1; padding: 15px;
  background: var(--ink-900); color: var(--bg);
  border-radius: var(--r-md);
  font-size: 14px; font-weight: 500; letter-spacing: 0.05em;
  position: relative; overflow: hidden;
  transition: transform 0.2s var(--ease-expo), box-shadow 0.2s;
}
.drawer-cta-primary::before {
  content: '';
  position: absolute; top: 0; left: -100%; bottom: 0;
  width: 60%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  transition: left 0.5s var(--ease-expo);
}
.drawer-cta-primary:hover::before { left: 150%; }
.drawer-cta-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.drawer-cta-secondary {
  padding: 15px 20px;
  color: var(--ink-500); border: 1px solid var(--ink-100);
  border-radius: var(--r-md); font-size: 14px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.drawer-cta-secondary:hover {
  color: var(--ink-900); border-color: var(--ink-300);
  background: var(--surface-2);
}

/* ── 16. Silence Screen ───────────────────────────────────── */
.silence-screen {
  position: fixed; inset: 0; z-index: 600;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s var(--ease-smooth);
}
.silence-screen.active { pointer-events: all; opacity: 1; }

.silence-bg {
  position: absolute; inset: 0;
  background: #0C0B09;
}
/* Animated glow */
.silence-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 50% 50%,
      rgba(176,138,80,0.09) 0%, transparent 65%);
  animation: silenceGlow 5s ease-in-out infinite;
}
@keyframes silenceGlow {
  0%,100% { opacity: 0.7; transform: scale(1); }
  50%     { opacity: 1;   transform: scale(1.08); }
}

/* Particle dots */
.silence-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(176,138,80,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 20%, rgba(176,138,80,0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 70%, rgba(176,138,80,0.25) 0%, transparent 100%),
    radial-gradient(1px 1px at 40% 80%, rgba(176,138,80,0.15) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 60%, rgba(176,138,80,0.2) 0%, transparent 100%);
  animation: particleDrift 12s linear infinite;
}
@keyframes particleDrift {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-20px); }
}

.silence-body {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; gap: 44px;
  text-align: center; padding: 64px 48px;
  animation: silenceIn 0.8s var(--ease-expo) both;
}
@keyframes silenceIn {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.silence-ring-wrap {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.silence-svg {
  width: 130px; height: 130px;
  transform: rotate(-90deg);
  filter: drop-shadow(0 0 16px rgba(176,138,80,0.25));
}
.s-track {
  fill: none;
  stroke: rgba(255,255,255,0.05);
  stroke-width: 1.5;
}
.s-prog {
  fill: none;
  stroke: url(#goldGrad);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 326.7;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1s linear;
}

.silence-num {
  position: absolute;
  font-family: var(--serif);
  font-size: 36px; font-weight: 300;
  color: rgba(255,255,255,0.88);
  line-height: 1; letter-spacing: -0.03em;
}

.silence-quote {
  font-family: var(--serif);
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.7; letter-spacing: 0.01em;
  max-width: 320px;
}

.silence-cta {
  padding: 13px 30px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-full);
  font-size: 13px; font-weight: 400;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.08em; background: transparent;
  transition: color 0.3s, border-color 0.3s, box-shadow 0.3s,
              transform 0.25s var(--ease-expo);
}
.silence-cta:hover {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.28);
  transform: translateY(-2px);
}
.silence-cta.ready {
  color: rgba(255,255,255,0.95);
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(176,138,80,0.25);
  animation: readyPulse 2s ease-in-out infinite;
}
@keyframes readyPulse {
  0%,100% { box-shadow: 0 0 24px rgba(176,138,80,0.25); }
  50%     { box-shadow: 0 0 40px rgba(176,138,80,0.4); }
}

/* ── 17. Circle Color Helpers ─────────────────────────────── */
.cc-1 { --cc-color: var(--c1); }
.cc-2 { --cc-color: var(--c2); }
.cc-3 { --cc-color: var(--c3); }
.cc-4 { --cc-color: var(--c4); }
.cc-5 { --cc-color: var(--c5); }

/* ── 18. Accessibility ────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── 19. Scrollbar ────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--ink-100); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--ink-300); }

/* ── 20. Responsive ───────────────────────────────────────── */
@media (max-width: 700px) {
  .header-inner { padding: 0 18px; }
  .main-content  { padding: 62px 16px 72px; }
  .logo-cn, .logo-divider { display: none; }
  .nav-pill { padding: 7px 14px; font-size: 12px; }
  .daily-hero, .view-hero { padding: 52px 0 40px; }
  .card-full-body { padding: 28px 24px 32px; }
  .cards-grid, .search-results-grid { grid-template-columns: 1fr; }
  .drawer-content { padding: 4px 24px 48px; }
  .drawer-bar { margin: 14px -24px 20px; }
  .silence-body { padding: 48px 24px; gap: 36px; }
  .search-box { flex-direction: column; }
}
@media (min-width: 701px) and (max-width: 960px) {
  .cards-grid, .search-results-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════════════════════════
   21. GOALS VIEW
   ══════════════════════════════════════════════════════════════ */

/* Stats bar */
.goals-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-xl);
  padding: 20px 40px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}
.stat-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 36px;
}
.stat-num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--ink-900);
  line-height: 1;
  letter-spacing: -0.02em;
  transition: color 0.3s;
}
.stat-label {
  font-size: 11px;
  color: var(--ink-300);
  letter-spacing: 0.12em;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--ink-100);
}

/* Toolbar */
.goals-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
}
.goals-filter-tabs {
  display: flex;
  gap: 2px;
  background: var(--surface-2);
  padding: 4px;
  border-radius: var(--r-full);
  border: 1px solid var(--ink-100);
}
.gtab {
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-300);
  border-radius: var(--r-full);
  letter-spacing: 0.02em;
  transition: color 0.2s, background 0.2s, box-shadow 0.2s;
}
.gtab:hover { color: var(--ink-700); }
.gtab.active {
  background: var(--surface);
  color: var(--ink-900);
  box-shadow: var(--shadow-sm);
}

/* Primary button (shared) */
.primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: var(--ink-900);
  color: var(--bg);
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s var(--ease-expo), box-shadow 0.2s, opacity 0.2s;
}
.primary-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; bottom: 0; width: 60%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
  transition: left 0.5s var(--ease-expo);
}
.primary-btn:hover::before { left: 150%; }
.primary-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.primary-btn:active { transform: translateY(0); }
.primary-btn:disabled { opacity: 0.4; pointer-events: none; }

/* Goals list */
.goals-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 200px;
  padding-bottom: 60px;
}

/* Empty state */
.goals-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 80px 0;
  text-align: center;
}
.empty-icon {
  font-size: 32px;
  color: var(--ink-100);
  line-height: 1;
  animation: ringPulse 3s ease-in-out infinite;
}
.empty-title {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink-300);
  font-weight: 400;
}
.empty-desc {
  font-size: 14px;
  color: var(--ink-300);
  max-width: 320px;
  line-height: 1.7;
}

/* Goal card */
.goal-card {
  display: grid;
  grid-template-columns: 4px 1fr auto;
  align-items: stretch;
  background: var(--surface);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.3s var(--ease-expo), box-shadow 0.3s, border-color 0.2s;
  animation: thumbIn 0.4s var(--ease-expo) both;
}
.goal-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.goal-card.done .gc-title { text-decoration: line-through; color: var(--ink-300); }
.goal-card.done { opacity: 0.7; }

.gc-bar { background: var(--cat-color, var(--gold)); opacity: 0.8; }

.gc-body {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.gc-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}
.gc-cat {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cat-color, var(--gold));
  font-weight: 700;
  white-space: nowrap;
  padding-top: 2px;
}
.gc-title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--ink-900);
  line-height: 1.35;
  flex: 1;
}
.gc-why {
  font-size: 13px;
  color: var(--ink-500);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gc-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.gc-deadline {
  font-size: 11px;
  color: var(--ink-300);
  letter-spacing: 0.04em;
}
.gc-deadline.overdue { color: #C0553A; }
.gc-woop-badge {
  font-size: 11px;
  color: var(--ink-500);
  background: var(--surface-2);
  padding: 2px 9px;
  border-radius: var(--r-full);
}

/* Progress bar */
.gc-progress-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.gc-progress-track {
  flex: 1;
  height: 4px;
  background: var(--surface-2);
  border-radius: 2px;
  overflow: hidden;
}
.gc-progress-fill {
  height: 100%;
  border-radius: 2px;
  background: var(--cat-color, var(--gold));
  opacity: 0.7;
  transition: width 0.5s var(--ease-expo);
}
.gc-progress-pct {
  font-size: 11px;
  color: var(--ink-300);
  font-weight: 600;
  min-width: 30px;
  text-align: right;
}

/* Goal actions */
.gc-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 16px 16px;
  border-left: 1px solid var(--ink-100);
}
.gc-action-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-300);
  background: transparent;
  transition: background 0.2s, color 0.2s, transform 0.2s var(--ease-expo);
  font-size: 13px;
}
.gc-action-btn:hover { background: var(--surface-2); color: var(--ink-900); transform: scale(1.1); }
.gc-action-btn.woop { color: var(--gold); }
.gc-action-btn.done-btn { color: var(--c1); }
.gc-action-btn.delete-btn:hover { background: rgba(192,85,58,0.08); color: #C0553A; }

/* ══════════════════════════════════════════════════════════════
   22. GOAL MODAL
   ══════════════════════════════════════════════════════════════ */

.modal-overlay {
  position: fixed; inset: 0; z-index: 500;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; opacity: 0;
  padding: 20px;
  transition: opacity 0.3s var(--ease-smooth);
}
.modal-overlay::before {
  content: '';
  position: fixed; inset: 0;
  background: rgba(17,16,8,0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.modal-overlay.active,
.modal-overlay.open   { pointer-events: all; opacity: 1; }

.modal-box {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--surface);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-2xl);
  outline: 1px solid rgba(17,16,8,0.07);
  transform: translateY(20px) scale(0.98);
  opacity: 0;
  transition: transform 0.45s var(--ease-expo), opacity 0.3s;
}
.modal-overlay.active .modal-box,
.modal-overlay.open   .modal-box {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px 0;
  margin-bottom: 24px;
}
.modal-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink-900);
}
.modal-close-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-500);
  background: var(--surface-2);
  transition: background 0.2s, color 0.2s, transform 0.2s var(--ease-expo);
}
.modal-close-btn:hover {
  background: var(--ink-100); color: var(--ink-900);
  transform: rotate(90deg);
}

/* Form */
.goal-form { padding: 0 32px 32px; }

.form-group { margin-bottom: 20px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink-500);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.req { color: var(--gold); }

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg);
  border: 1.5px solid var(--ink-100);
  border-radius: var(--r-md);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink-900);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--ink-300); }
.form-textarea { resize: vertical; line-height: 1.7; }
.form-hint { font-size: 12px; color: var(--ink-300); margin-top: 5px; }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%23A49F96' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: default;
}

/* Progress slider */
.progress-slider-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}
.progress-slider {
  flex: 1;
  -webkit-appearance: none;
  height: 4px;
  background: var(--surface-2);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  border: none;
  padding: 0;
}
.progress-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--ink-900);
  border: 2px solid var(--bg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease-spring);
}
.progress-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }
.progress-val {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-500);
  min-width: 36px;
  text-align: right;
}

/* Modal footer */
.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 24px;
  border-top: 1px solid var(--ink-100);
  margin-top: 8px;
}

/* ══════════════════════════════════════════════════════════════
   23. WOOP VIEW
   ══════════════════════════════════════════════════════════════ */

/* WOOP Intro Card */
.woop-intro-card {
  background: var(--surface);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-xl);
  padding: 32px 40px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 40px;
  align-items: center;
}
.wic-letters {
  display: flex;
  gap: 2px;
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.wic-letter { line-height: 1; }
.wic-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wic-step {
  font-size: 14px;
  color: var(--ink-700);
  line-height: 1.5;
}
.wic-step strong { font-weight: 600; }

/* WOOP Launcher */
.woop-launcher {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 56px;
  background: var(--surface);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-xl);
  padding: 32px 36px;
  box-shadow: var(--shadow-sm);
}
.wl-col { display: flex; flex-direction: column; gap: 16px; }
.wl-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-300);
}
.wl-goal-picker {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wl-empty-hint {
  font-size: 13px;
  color: var(--ink-300);
  line-height: 1.6;
  padding: 14px 16px;
  background: var(--surface-2);
  border-radius: var(--r-md);
  border: 1px dashed var(--ink-100);
}
.wl-goal-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1.5px solid var(--ink-100);
  border-radius: var(--r-md);
  background: var(--bg);
  text-align: left;
  transition: border-color 0.2s, background 0.2s, transform 0.2s var(--ease-expo);
}
.wl-goal-btn:hover {
  border-color: var(--gold);
  background: var(--gold-glow);
  transform: translateY(-2px);
}
.wlg-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cat-color, var(--gold));
  flex-shrink: 0;
}
.wlg-title {
  font-size: 14px;
  color: var(--ink-900);
  font-weight: 400;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wl-or {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--ink-300);
  letter-spacing: 0.1em;
  padding-top: 30px;
}
.wl-free-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 20px;
  border: 1.5px solid var(--ink-900);
  border-radius: var(--r-md);
  color: var(--ink-900);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: transparent;
  transition: background 0.2s, color 0.2s, transform 0.2s var(--ease-expo), box-shadow 0.2s;
}
.wl-free-btn:hover {
  background: var(--ink-900);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* WOOP History */
.woop-history-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ink-100);
}
.wh-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--ink-900);
}
.wh-count {
  font-size: 12px;
  color: var(--ink-300);
  letter-spacing: 0.08em;
}
.woop-history-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 60px;
}
.woop-history-empty {
  padding: 48px 0;
  text-align: center;
  color: var(--ink-300);
  font-size: 14px;
  line-height: 1.7;
}
.woop-hist-card {
  background: var(--surface);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
  animation: thumbIn 0.4s var(--ease-expo) both;
  transition: box-shadow 0.3s, transform 0.3s var(--ease-expo);
  position: relative;
  overflow: hidden;
}
.woop-hist-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
  opacity: 0.6;
}
.woop-hist-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.whc-goal-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  color: var(--ink-500);
  background: var(--surface-2);
  padding: 2px 9px;
  border-radius: var(--r-full);
  margin-bottom: 8px;
}
.whc-wish {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--ink-900);
  line-height: 1.4;
  margin-bottom: 6px;
}
.whc-ifthen {
  font-size: 13px;
  color: var(--gold);
  font-style: italic;
  line-height: 1.5;
}
.whc-date {
  font-size: 11px;
  color: var(--ink-300);
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.whc-del {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  color: var(--ink-300);
  transition: background 0.2s, color 0.2s;
}
.whc-del:hover { background: rgba(192,85,58,0.08); color: #C0553A; }

/* ══════════════════════════════════════════════════════════════
   24. WOOP WIZARD
   ══════════════════════════════════════════════════════════════ */

.woop-wizard-overlay {
  position: fixed; inset: 0; z-index: 600;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  pointer-events: none; opacity: 0;
  transition: opacity 0.3s var(--ease-smooth);
}
.woop-wizard-overlay::before {
  content: '';
  position: fixed; inset: 0;
  background: rgba(17,16,8,0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.woop-wizard-overlay.active,
.woop-wizard-overlay.open   { pointer-events: all; opacity: 1; }

.woop-wizard {
  position: relative;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--surface);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-2xl);
  outline: 1px solid rgba(17,16,8,0.07);
  padding: 0;
  transform: translateY(24px) scale(0.97);
  opacity: 0;
  transition: transform 0.5s var(--ease-expo), opacity 0.35s;
}
.woop-wizard-overlay.active .woop-wizard,
.woop-wizard-overlay.open   .woop-wizard {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Top progress bar */
.ww-progress-bar {
  height: 3px;
  background: var(--surface-2);
  border-radius: var(--r-full) var(--r-full) 0 0;
  overflow: hidden;
}
.ww-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--c4), var(--gold));
  border-radius: var(--r-full);
  transition: width 0.5s var(--ease-expo);
}

.ww-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-500); background: var(--surface-2);
  z-index: 1;
  transition: background 0.2s, color 0.2s, transform 0.2s var(--ease-expo);
}
.ww-close:hover { background: var(--ink-100); color: var(--ink-900); transform: rotate(90deg); }

/* Step dots */
.ww-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 24px 32px 0;
}
.ww-step-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--ink-100);
  transition: background 0.3s, transform 0.3s var(--ease-spring);
  flex-shrink: 0;
}
.ww-step-dot.active {
  background: var(--ink-900);
  transform: scale(1.3);
}
.ww-step-dot.done,
.ww-step-dot.completed { background: var(--gold); }
.ww-step-line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--ink-100);
  margin: 0 6px;
}

/* Step body */
.ww-body {
  padding: 32px 40px 16px;
  min-height: 280px;
}

/* Step letter */
.ww-step-letter {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.ww-step-name {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 4px;
}
.ww-step-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink-900);
  margin-bottom: 8px;
  line-height: 1.3;
}
.ww-step-hint {
  font-size: 13px;
  color: var(--ink-500);
  line-height: 1.7;
  margin-bottom: 24px;
}
.ww-step-hint strong { color: var(--ink-900); font-weight: 500; }

.ww-textarea {
  width: 100%;
  padding: 16px 18px;
  background: var(--bg);
  border: 1.5px solid var(--ink-100);
  border-radius: var(--r-md);
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink-900);
  line-height: 1.75;
  resize: none;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  min-height: 120px;
}
.ww-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}
.ww-textarea::placeholder { color: var(--ink-300); font-style: italic; font-family: var(--serif); }

/* Breather / visualization prompt */
.ww-breathe {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
  text-align: center;
}
.ww-breathe-ring {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-ring);
  animation: breatheRing 4s ease-in-out infinite;
}
@keyframes breatheRing {
  0%,100% { transform: scale(1); border-color: var(--gold-ring); }
  50%      { transform: scale(1.12); border-color: var(--gold); }
}
.ww-breathe-text {
  font-size: 13px;
  color: var(--ink-500);
  letter-spacing: 0.04em;
  line-height: 1.6;
}

/* WOOP wizard nav */
.ww-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px 32px;
  border-top: 1px solid var(--ink-100);
  margin-top: 8px;
}

/* Step transition animation */
@keyframes stepIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
.ww-body { animation: stepIn 0.35s var(--ease-expo); }

/* ══════════════════════════════════════════════════════════════
   25. WOOP DONE CARD
   ══════════════════════════════════════════════════════════════ */

.woop-done-overlay {
  position: fixed; inset: 0; z-index: 700;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  pointer-events: none; opacity: 0;
  transition: opacity 0.4s var(--ease-smooth);
}
.woop-done-overlay::before {
  content: '';
  position: fixed; inset: 0;
  background: rgba(17,16,8,0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.woop-done-overlay.active,
.woop-done-overlay.open   { pointer-events: all; opacity: 1; }

.woop-done-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: 52px 48px;
  box-shadow: var(--shadow-2xl);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transform: scale(0.94) translateY(16px);
  opacity: 0;
  transition: transform 0.55s var(--ease-expo), opacity 0.35s;
}
.woop-done-overlay.active .woop-done-card,
.woop-done-overlay.open   .woop-done-card {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.wdc-check {
  animation: checkPop 0.6s var(--ease-spring) 0.2s both;
}
@keyframes checkPop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.wdc-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--ink-900);
}
.wdc-desc {
  font-size: 15px;
  color: var(--ink-500);
  line-height: 1.75;
}
.wdc-ifthen {
  background: var(--gold-glow);
  border: 1px solid var(--gold-ring);
  border-radius: var(--r-md);
  padding: 16px 20px;
  font-family: var(--serif);
  font-size: 15px;
  color: var(--ink-700);
  line-height: 1.7;
  width: 100%;
  text-align: left;
}

/* ══════════════════════════════════════════════════════════════
   26. Category Color Tokens
   ══════════════════════════════════════════════════════════════ */
[data-cat="执行"] { --cat-color: #527A66; }
[data-cat="赚钱"] { --cat-color: #B08A50; }
[data-cat="成长"] { --cat-color: #4A6B8A; }
[data-cat="关系"] { --cat-color: #8A5A4C; }
[data-cat="健康"] { --cat-color: #5A7A3C; }
[data-cat="创作"] { --cat-color: #664E80; }
[data-cat="其他"] { --cat-color: #7A4C4C; }

/* ── Responsive additions ─────────────────────────────────── */
@media (max-width: 700px) {
  .goals-stats { padding: 16px 20px; }
  .stat-pill   { padding: 0 16px; }
  .goals-toolbar { flex-direction: column; align-items: stretch; }
  .primary-btn  { justify-content: center; }
  .woop-intro-card { flex-direction: column; gap: 24px; padding: 24px; }
  .wic-letters  { justify-content: center; font-size: 40px; }
  .woop-launcher { grid-template-columns: 1fr; }
  .wl-or        { padding: 0; }
  .ww-body      { padding: 24px 24px 12px; }
  .ww-nav       { padding: 16px 24px 28px; }
  .ww-steps     { padding: 20px 24px 0; }
  .woop-done-card { padding: 36px 28px; }
  .form-row     { grid-template-columns: 1fr; }
  .goal-form    { padding: 0 20px 28px; }
  .modal-header { padding: 22px 20px 0; }
  .nav-pill     { padding: 7px 10px; font-size: 11px; }
}

/* ══════════════════════════════════════════════════════════════
   27. GOAL CARD — 重构版（匹配 goals.js buildGoalCard）
   ══════════════════════════════════════════════════════════════ */

/* 重置旧的 grid 布局，改为 flex 列布局 */
.goal-card {
  display: flex !important;
  flex-direction: column;
  gap: 0;
  grid-template-columns: unset;
  padding: 0;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--ink-100);
  overflow: hidden;
  transition: transform 0.3s var(--ease-expo), box-shadow 0.3s, border-color 0.2s;
  animation: thumbIn 0.42s var(--ease-expo) both;
}
.goal-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(176,138,80,0.25);
}

/* Header row */
.gc-header {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 16px 20px 0;
}

/* Category badge */
.gc-cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cat-color, var(--gold));
  background: color-mix(in srgb, var(--cat-color, var(--gold)) 10%, transparent);
  padding: 3px 9px;
  border-radius: var(--r-full);
  border: 1px solid color-mix(in srgb, var(--cat-color, var(--gold)) 20%, transparent);
}

/* Deadline */
.gc-deadline {
  font-size: 11px;
  color: var(--ink-300);
  letter-spacing: 0.04em;
  margin-left: auto;
}
.gc-deadline.dl-overdue { color: #C0553A; font-weight: 600; }
.gc-deadline.dl-soon    { color: #B08A50; font-weight: 600; }

/* Done badge */
.gc-done-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--c1);
  background: rgba(82,122,102,0.1);
  padding: 3px 9px;
  border-radius: var(--r-full);
  margin-left: auto;
}

/* Title */
.gc-title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--ink-900);
  line-height: 1.4;
  padding: 10px 20px 0;
}
.gc-title--done {
  text-decoration: line-through;
  color: var(--ink-300);
}

/* Why excerpt */
.gc-why {
  font-size: 13px;
  color: var(--ink-500);
  line-height: 1.65;
  padding: 6px 20px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Progress row */
.gc-progress-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px 0;
}
/* gc-progress-track & gc-progress-fill 已在 §21 定义 */

/* Footer */
.gc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px 16px;
  margin-top: 4px;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid var(--surface-2);
}

.gc-woop-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--ink-300);
  letter-spacing: 0.04em;
}

/* Action buttons row */
.gc-actions {
  display: flex;
  align-items: center;
  flex-direction: row !important;
  gap: 4px !important;
  padding: 0 !important;
  border-left: none !important;
}

.gc-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-300);
  background: transparent;
  transition: background 0.2s, color 0.2s, transform 0.18s var(--ease-expo);
  white-space: nowrap;
  width: auto !important;
  height: auto !important;
}
.gc-action-btn:hover { background: var(--surface-2); color: var(--ink-700); transform: none; }

.gc-woop-btn  { }
.gc-woop-btn:hover  { background: var(--gold-glow); color: var(--gold); }
.gc-done-btn:hover  { background: rgba(82,122,102,0.1); color: var(--c1); }
.gc-edit-btn:hover  { background: var(--surface-2); color: var(--ink-900); }
.gc-delete-btn:hover { background: rgba(192,85,58,0.08); color: #C0553A; }

/* Done goal style */
.goal-card[data-status="done"] { opacity: 0.7; }
.goal-card[data-status="done"]:hover { opacity: 1; }

/* Input error shake */
@keyframes shake {
  0%,100% { transform: translateX(0); }
  20%,60% { transform: translateX(-6px); }
  40%,80% { transform: translateX(6px); }
}
.input-error { animation: shake 0.5s var(--ease-smooth); border-color: #C0553A !important; }
.shake       { animation: shake 0.5s var(--ease-smooth); }

/* ══════════════════════════════════════════════════════════════
   28. TOAST NOTIFICATIONS
   ══════════════════════════════════════════════════════════════ */

.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: var(--ink-900);
  color: var(--bg);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  padding: 12px 22px;
  border-radius: var(--r-full);
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.3s var(--ease-expo);
  white-space: nowrap;
  max-width: calc(100vw - 40px);
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}
.toast.toast-error {
  background: #C0553A;
}
.toast.toast-confirm {
  background: var(--surface);
  color: var(--ink-900);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  bottom: 40px;
  font-size: 14px;
  line-height: 1.5;
  box-shadow: var(--shadow-xl);
  text-align: center;
}
.toast-actions {
  display: flex;
  gap: 10px;
}
.toast-cancel, .toast-ok {
  padding: 8px 20px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.toast-cancel {
  background: var(--surface-2);
  color: var(--ink-500);
}
.toast-cancel:hover { background: var(--ink-100); color: var(--ink-900); }
.toast-ok {
  background: #C0553A;
  color: #fff;
}
.toast-ok:hover { background: #a84431; }

/* ══════════════════════════════════════════════════════════════
   29. WOOP — Goal Picker Buttons (wlgb-*)
   ══════════════════════════════════════════════════════════════ */

.wl-goal-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1.5px solid var(--ink-100);
  border-radius: var(--r-md);
  background: var(--bg);
  text-align: left;
  transition: border-color 0.2s, background 0.2s, transform 0.2s var(--ease-expo), box-shadow 0.2s;
}
.wl-goal-btn:hover {
  border-color: var(--gold);
  background: var(--gold-glow);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.wlgb-icon {
  font-size: 16px;
  flex-shrink: 0;
  line-height: 1;
}
.wlgb-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.wlgb-title {
  font-size: 14px;
  color: var(--ink-900);
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wlgb-prog {
  font-size: 11px;
  color: var(--ink-300);
  letter-spacing: 0.04em;
}
.wlgb-arrow {
  flex-shrink: 0;
  color: var(--ink-300);
  transition: color 0.2s, transform 0.2s;
}
.wl-goal-btn:hover .wlgb-arrow {
  color: var(--gold);
  transform: translateX(3px);
}

/* ══════════════════════════════════════════════════════════════
   30. WOOP WIZARD — Step Content (ww-*)
   ══════════════════════════════════════════════════════════════ */

.ww-step-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ww-letter-wrap {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.ww-big-letter {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
}
.ww-step-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.ww-prompt {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink-900);
  line-height: 1.3;
  margin: 0;
}
.ww-subprompt {
  font-size: 14px;
  color: var(--ink-500);
  line-height: 1.7;
  margin: 0;
}
.ww-goal-ref {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--gold);
  background: var(--gold-glow);
  border: 1px solid var(--gold-ring);
  border-radius: var(--r-full);
  padding: 4px 12px;
  letter-spacing: 0.03em;
  width: fit-content;
}
.ww-example {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 12px;
  color: var(--ink-300);
  line-height: 1.65;
  background: var(--surface-2);
  border-radius: var(--r-md);
  padding: 10px 14px;
}
.ww-example svg { flex-shrink: 0; margin-top: 1px; }

/* Finish button variant */
.ww-finish {
  background: linear-gradient(135deg, var(--c4) 0%, var(--gold) 100%);
  box-shadow: 0 4px 16px var(--gold-glow);
}
.ww-finish:hover { box-shadow: 0 6px 24px rgba(176,138,80,0.3); }

/* ══════════════════════════════════════════════════════════════
   31. WOOP HISTORY — 重构版 (whc-*)
   ══════════════════════════════════════════════════════════════ */

.woop-hist-card {
  display: flex !important;
  flex-direction: column;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--ink-100);
  border-left: 3px solid var(--gold);
  border-radius: var(--r-lg);
  padding: 18px 22px;
  animation: thumbIn 0.42s var(--ease-expo) both;
  transition: box-shadow 0.3s, transform 0.3s var(--ease-expo);
}
.woop-hist-card::before { display: none; } /* 移除旧的 ::before 左线 */
.woop-hist-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.whc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.whc-date {
  font-size: 11px;
  color: var(--ink-300);
  letter-spacing: 0.06em;
  font-feature-settings: "tnum";
}
.whc-goal-label {
  font-size: 11px;
  color: var(--ink-500);
  background: var(--surface-2);
  padding: 2px 10px;
  border-radius: var(--r-full);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}

.whc-wish, .whc-ifthen {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-700);
}
.whc-wish { font-family: var(--serif); font-size: 15px; color: var(--ink-900); }
.whc-ifthen { font-style: italic; color: var(--gold); font-size: 13px; }

.whc-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}
.whc-tag--w {
  background: rgba(82,122,102,0.12);
  color: var(--c1);
}
.whc-tag--p {
  background: var(--gold-glow);
  color: var(--gold);
}

.whc-detail {
  border-top: 1px solid var(--surface-2);
  padding-top: 8px;
  margin-top: 2px;
}
.whc-detail summary {
  font-size: 12px;
  color: var(--ink-300);
  cursor: pointer;
  list-style: none;
  user-select: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.whc-detail summary:hover { color: var(--ink-700); }
.whc-detail[open] summary { color: var(--ink-500); margin-bottom: 10px; }
.whc-detail-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.whc-field {
  font-size: 13px;
  color: var(--ink-500);
  line-height: 1.65;
}
.whc-field strong { color: var(--ink-900); font-weight: 600; margin-right: 4px; }

/* ── Responsive additions for §27-31 ─────────────────────── */
@media (max-width: 700px) {
  .gc-actions  { flex-wrap: wrap; }
  .gc-action-btn { padding: 5px 8px; font-size: 10px; }
  .ww-big-letter { font-size: 44px; }
  .ww-prompt   { font-size: 18px; }
  .toast       { font-size: 13px; padding: 11px 18px; }
  .toast.toast-confirm { padding: 18px 20px; }
}
