:root {
  color-scheme: dark;
  --bg: #120909;
  --bg-elevated: rgba(31, 14, 14, 0.78);
  --bg-strong: #1b1010;
  --bg-soft: #261313;
  --text: #f8efef;
  --text-muted: #d8b9b9;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.18);
  --primary: #ff2f2f;
  --primary-deep: #ff6b6b;
  --primary-soft: rgba(255, 56, 56, 0.18);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1280px, calc(100vw - 64px));
  --blur: blur(28px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans SC", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 80, 80, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 0, 0, 0.08), transparent 22%),
    var(--bg);
  color: var(--text);
  transition: background 240ms var(--ease), color 240ms var(--ease);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-shell {
  min-height: 100dvh;
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 32px;
  background: rgba(20, 9, 9, 0.82);
  backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.topbar.compact {
  position: sticky;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 12px 30px rgba(255, 46, 46, 0.24));
}

.brand-copy {
  display: grid;
  align-content: center;
  gap: 2px;
}

.brand-title {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-subtitle {
  margin: 0;
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.2;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.theme-chip,
.identity-pill,
.mode-pill {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: transparent;
  color: var(--text-muted);
  transition: all 180ms var(--ease);
}

.theme-chip.is-active,
.identity-pill.is-active,
.mode-pill.is-active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 0, 0, 0.24);
}

.primary-button,
.pill-button,
.ghost-button,
.button-link {
  min-height: 48px;
  border-radius: 999px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  white-space: nowrap;
  font-weight: 700;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease), color 180ms var(--ease);
}

.primary-button,
.pill-button,
.button-link {
  background: linear-gradient(135deg, var(--primary), #ff5252);
  color: #fff;
  box-shadow: 0 18px 34px rgba(255, 0, 0, 0.22);
}

.primary-button:hover,
.pill-button:hover,
.button-link:hover,
.ghost-button:hover,
.ghost-link:hover,
.theme-chip:hover,
.identity-pill:hover,
.mode-pill:hover {
  transform: translateY(-1px) scale(1.01);
}

.primary-button:active,
.pill-button:active,
.button-link:active,
.ghost-button:active,
.ghost-link:active {
  transform: scale(0.98);
}

.ghost-button,
.ghost-link {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  color: var(--text);
}

.nav-login {
  min-width: 116px;
}

.text-link {
  color: var(--text);
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 100dvh;
  padding: 124px 0 126px;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center 20%;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 180px;
  background: linear-gradient(180deg, rgba(18, 9, 9, 0) 0%, rgba(18, 9, 9, 0.88) 64%, var(--bg) 100%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 4, 4, 0.48), rgba(7, 4, 4, 0.72)),
    linear-gradient(120deg, rgba(10, 5, 5, 0.82) 0%, rgba(14, 7, 7, 0.54) 36%, rgba(14, 7, 7, 0.28) 100%);
}

.hero-content,
.hero-status {
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100dvh - 212px);
  text-align: center;
}

.hero-copy {
  width: min(1320px, calc(100vw - 40px));
  min-height: 420px;
  padding: 38px 42px;
}

.hero-copy-minimal {
  display: grid;
  gap: 28px;
  justify-items: center;
  align-content: center;
}

.glass-panel {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: var(--blur);
  border-radius: var(--radius-xl);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

:root[data-theme="dark"] .eyebrow {
  color: #ffd6d6;
}

.headline-note {
  margin: 0 0 10px;
  color: var(--primary-deep);
  font-size: 13px;
  font-weight: 700;
}

.hero h1,
.dashboard-hero h1,
.agreement-shell h1 {
  margin: 0;
  font-size: clamp(48px, 6.2vw, 108px);
  line-height: 0.94;
  letter-spacing: -0.08em;
  font-weight: 900;
}

.hero h1 {
  white-space: nowrap;
}

.hero-description,
.section-heading p,
.intro-block p,
.footer-column p,
.footer-brand p,
.dashboard-hero p,
.agreement-shell p,
.record-item p,
.form-tip {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.78;
  font-size: 15px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
}

.hero-actions-center {
  justify-content: center;
}

.hero-actions.vertical {
  flex-direction: column;
  align-items: flex-start;
}

.hero-points,
.bullet-list,
.ordered-list {
  margin: 28px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: var(--text);
}

.hero-status {
  position: absolute;
  right: 32px;
  bottom: 36px;
  width: min(360px, calc(100vw - 48px));
  padding: 24px;
}

.status-label {
  margin: 0 0 16px;
  color: var(--text-muted);
  font-size: 13px;
}

.status-grid,
.hero-metrics {
  display: grid;
  gap: 14px;
}

.status-grid div,
.hero-metrics article,
.qr-card,
.dashboard-card,
.record-item {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid var(--line);
}

:root[data-theme="dark"] .status-grid div,
:root[data-theme="dark"] .hero-metrics article,
:root[data-theme="dark"] .qr-card,
:root[data-theme="dark"] .dashboard-card,
:root[data-theme="dark"] .record-item {
  background: rgba(255, 255, 255, 0.03);
}

.status-grid span,
.hero-metrics span,
.record-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 13px;
}

.status-grid strong,
.hero-metrics strong,
.record-item strong {
  font-size: 20px;
}

.cosmos-section,
.star-creator-section,
.anniversary-section,
.intro-section,
.dashboard-shell {
  padding: 72px 0 40px;
}

.cosmos-section,
.star-creator-section,
.anniversary-section {
  position: relative;
}

.cosmos-section {
  margin-top: -34px;
  z-index: 1;
}

.cosmos-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(420px, 1.08fr);
  gap: 28px;
  padding: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 60, 60, 0.18), transparent 34%),
    radial-gradient(circle at 82% 16%, rgba(255, 140, 61, 0.16), transparent 28%),
    linear-gradient(145deg, rgba(23, 10, 10, 0.98), rgba(11, 7, 10, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 30px 80px rgba(0, 0, 0, 0.28);
}

.cosmos-shell::before,
.cosmos-shell::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.cosmos-shell::before {
  width: 520px;
  height: 520px;
  right: -160px;
  top: -140px;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.14), transparent 66%);
  filter: blur(6px);
}

.cosmos-shell::after {
  width: 360px;
  height: 360px;
  left: -120px;
  bottom: -140px;
  background: radial-gradient(circle, rgba(255, 129, 64, 0.12), transparent 68%);
}

.cosmos-copy,
.cosmos-visual {
  position: relative;
  z-index: 1;
  opacity: 1;
  transform: none;
  transition: opacity 680ms cubic-bezier(0.16, 1, 0.3, 1), transform 680ms cubic-bezier(0.16, 1, 0.3, 1);
}

.cosmos-shell.is-visible .cosmos-copy,
.cosmos-shell.is-visible .cosmos-visual {
  opacity: 1;
  transform: translateY(0);
}

.cosmos-copy {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 16px 8px 16px 2px;
}

.cosmos-copy h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.06;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

.cosmos-copy p {
  margin: 0;
  max-width: 560px;
  color: rgba(255, 235, 235, 0.76);
  line-height: 1.86;
}

.cosmos-metric-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.cosmos-metric-item {
  position: relative;
  min-height: 118px;
  padding: 18px 18px 16px;
  border-radius: 24px;
  display: grid;
  align-content: space-between;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 36px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.cosmos-metric-item::after {
  content: "";
  position: absolute;
  inset: auto -24px -38px auto;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 87, 87, 0.18), transparent 70%);
}

.cosmos-metric-item span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 215, 215, 0.66);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cosmos-metric-item strong {
  display: block;
  margin-bottom: 0;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1;
  letter-spacing: -0.05em;
  color: #fff3f3;
}

.cosmos-metric-item p {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 2.9em;
  margin: 0;
  color: rgba(255, 232, 232, 0.74);
  font-size: 12px;
  line-height: 1.45;
  max-width: none;
}

.cosmos-visual {
  min-height: 620px;
  display: grid;
  place-items: center;
}

.cosmos-visual--engine {
  overflow: visible;
}

.cosmos-engine-scene {
  position: relative;
  width: min(100%, 580px);
  min-height: 620px;
  display: grid;
  place-items: center;
}

.cosmos-engine-scene--minimal {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 42, 42, 0.08), transparent 18%),
    radial-gradient(circle at 24% 26%, rgba(255, 56, 56, 0.06), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(255, 86, 86, 0.06), transparent 22%),
    linear-gradient(180deg, rgba(14, 8, 8, 0.1), rgba(8, 6, 6, 0));
}

.cosmos-engine-scene::before,
.cosmos-engine-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cosmos-engine-scene::before {
  background: radial-gradient(circle at 50% 50%, rgba(255, 38, 38, 0.06), transparent 58%);
  filter: blur(24px);
}

.cosmos-engine-scene::after {
  inset: 10% 8%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04), transparent 72%);
  filter: blur(22px);
  opacity: 0.58;
}

.cosmos-engine-ambient,
.cosmos-engine-starfield,
.cosmos-engine-logo-stage,
.cosmos-engine-dust {
  position: absolute;
}

.cosmos-engine-ambient {
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 30, 30, 0.1), transparent 22%),
    radial-gradient(circle at 24% 18%, rgba(255, 40, 40, 0.06), transparent 24%),
    radial-gradient(circle at 78% 26%, rgba(255, 64, 64, 0.05), transparent 22%),
    radial-gradient(circle at 52% 74%, rgba(255, 24, 24, 0.04), transparent 28%);
  filter: blur(18px);
  animation: cosmosNebulaFloat 16s ease-in-out infinite;
}

.cosmos-engine-starfield {
  inset: 0;
  opacity: 0.82;
}

.cosmos-engine-starfield--far {
  background:
    radial-gradient(circle at 8% 16%, rgba(255, 245, 245, 0.24) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 18% 72%, rgba(255, 82, 82, 0.22) 0 1.1px, transparent 1.1px 100%),
    radial-gradient(circle at 38% 12%, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 62% 18%, rgba(255, 92, 92, 0.22) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 82% 12%, rgba(255, 244, 244, 0.18) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 88% 72%, rgba(255, 74, 74, 0.2) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 52% 88%, rgba(255, 240, 240, 0.14) 0 1px, transparent 1px 100%);
  background-size: 220px 220px, 260px 260px, 240px 240px, 280px 280px, 260px 260px, 300px 300px, 320px 320px;
  animation: cosmosTwinkle 11s linear infinite;
}

.cosmos-engine-starfield--mid {
  background:
    radial-gradient(circle at 12% 40%, rgba(255, 102, 102, 0.3) 0 1.3px, transparent 1.3px 100%),
    radial-gradient(circle at 26% 86%, rgba(255, 246, 246, 0.18) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 48% 22%, rgba(255, 86, 86, 0.24) 0 1.2px, transparent 1.2px 100%),
    radial-gradient(circle at 74% 38%, rgba(255, 242, 242, 0.18) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 84% 82%, rgba(255, 88, 88, 0.24) 0 1.2px, transparent 1.2px 100%);
  background-size: 240px 240px, 270px 270px, 220px 220px, 260px 260px, 300px 300px;
  animation: cosmosDrift 18s linear infinite;
}

.cosmos-engine-starfield--near {
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 244, 244, 0.3) 0 1.5px, transparent 1.5px 100%),
    radial-gradient(circle at 36% 62%, rgba(255, 66, 66, 0.34) 0 1.6px, transparent 1.6px 100%),
    radial-gradient(circle at 66% 58%, rgba(255, 236, 236, 0.22) 0 1.4px, transparent 1.4px 100%),
    radial-gradient(circle at 80% 28%, rgba(255, 60, 60, 0.3) 0 1.6px, transparent 1.6px 100%);
  background-size: 260px 260px, 320px 320px, 280px 280px, 340px 340px;
  animation: cosmosDriftReverse 20s linear infinite;
}

.cosmos-engine-logo-stage {
  inset: 4px 0 12px;
  display: grid;
  align-content: space-between;
  padding: 26px 28px 18px;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 46, 46, 0.05), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0));
}

.cosmos-logo-matrix {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  height: 100%;
  align-content: stretch;
}

.cosmos-logo-item {
  margin: 0;
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 38px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.cosmos-logo-item img {
  display: block;
  width: 100%;
  height: 52px;
  object-fit: contain;
  object-position: center;
  opacity: 0.98;
  filter: brightness(1.32) saturate(1.08) drop-shadow(0 0 12px rgba(255, 255, 255, 0.2));
}

.cosmos-engine-dust {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.98) 0%, rgba(255, 238, 238, 0.86) 18%, rgba(255, 116, 116, 0.52) 48%, rgba(255, 64, 64, 0.14) 74%, transparent 100%);
  box-shadow:
    0 0 12px rgba(255, 255, 255, 0.26),
    0 0 28px rgba(255, 82, 82, 0.18);
  animation: cosmosNodeFloat 5.2s ease-in-out infinite;
}

.cosmos-engine-dust--one { top: 12%; left: 18%; animation-delay: 0.3s; }
.cosmos-engine-dust--two { top: 18%; right: 12%; animation-delay: 1.1s; }
.cosmos-engine-dust--three { top: 32%; left: 38%; animation-delay: 1.8s; }
.cosmos-engine-dust--four { top: 38%; right: 28%; animation-delay: 2.6s; }
.cosmos-engine-dust--five { bottom: 28%; left: 14%; width: 12px; height: 12px; animation-delay: 0.9s; }
.cosmos-engine-dust--six { bottom: 20%; right: 18%; width: 11px; height: 11px; animation-delay: 1.5s; }
.cosmos-engine-dust--seven { bottom: 10%; left: 44%; width: 9px; height: 9px; animation-delay: 2.2s; }
.cosmos-engine-dust--eight { top: 10%; left: 62%; width: 13px; height: 13px; animation-delay: 3s; }

.cosmos-ai-badge {
  position: absolute;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(7, 12, 22, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 12px 24px rgba(0, 0, 0, 0.18);
  color: rgba(236, 247, 255, 0.9);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
}

.cosmos-ai-badge--left { top: 90px; left: 30px; }
.cosmos-ai-badge--right { top: 126px; right: 28px; }
.cosmos-ai-badge--bottom { bottom: 42px; left: 50%; transform: translateX(-50%); }

@keyframes cosmosPulseRing {
  0% { transform: translate(-50%, -50%) scale(0.72); opacity: 0.46; }
  70% { transform: translate(-50%, -50%) scale(1.18); opacity: 0.12; }
  100% { transform: translate(-50%, -50%) scale(1.28); opacity: 0; }
}

@keyframes cosmosPulseCore {
  0%, 100% { transform: translate(-50%, -50%) scale(0.92); opacity: 0.2; }
  45% { transform: translate(-50%, -50%) scale(1.08); opacity: 0.38; }
  100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}

@keyframes cosmosTwinkle {
  0%, 100% { opacity: 0.24; }
  50% { opacity: 0.62; }
}


.star-creator-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(560px, 1.1fr);
  gap: 24px;
  padding: 26px 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 70, 70, 0.16), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(255, 146, 92, 0.14), transparent 28%),
    linear-gradient(145deg, rgba(23, 10, 10, 0.98), rgba(11, 7, 10, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 30px 80px rgba(0, 0, 0, 0.28);
}

.star-creator-shell::before,
.star-creator-shell::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.star-creator-shell::before {
  width: 420px;
  height: 420px;
  left: -120px;
  top: -110px;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.14), transparent 66%);
}

.star-creator-shell::after {
  width: 320px;
  height: 320px;
  right: -96px;
  bottom: -128px;
  background: radial-gradient(circle, rgba(255, 129, 64, 0.12), transparent 68%);
}

.star-creator-copy,
.star-creator-visual {
  position: relative;
  z-index: 1;
  opacity: 1;
  transform: none;
  transition: opacity 680ms cubic-bezier(0.16, 1, 0.3, 1), transform 680ms cubic-bezier(0.16, 1, 0.3, 1);
}

.star-creator-shell.is-visible .star-creator-copy,
.star-creator-shell.is-visible .star-creator-visual {
  opacity: 1;
  transform: translateY(0);
}

.star-creator-copy {
  display: grid;
  align-content: end;
  gap: 14px;
  padding: 4px 2px 0;
}

.star-creator-copy h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.06;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

.star-creator-copy p {
  margin: 0;
  max-width: 500px;
  color: rgba(255, 235, 235, 0.76);
  line-height: 1.74;
}

.star-creator-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 2px;
}

.star-creator-benefit-card {
  position: relative;
  min-height: 116px;
  padding: 16px 18px 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 36px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.star-creator-benefit-card::after {
  content: "";
  position: absolute;
  inset: auto -20px -34px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 87, 87, 0.18), transparent 72%);
}

.star-creator-benefit-card span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 215, 215, 0.66);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.star-creator-benefit-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 0;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #fff2f2;
}

.star-creator-benefit-card p {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 2.9em;
  margin: 0;
  color: rgba(255, 232, 232, 0.72);
  font-size: 12px;
  line-height: 1.45;
  max-width: none;
}

.star-creator-visual {
  min-height: 610px;
  display: grid;
  align-items: end;
  padding-left: 0;
  overflow: visible;
}

.star-creator-group-shot {
  position: relative;
  width: min(100%, 790px);
  height: 620px;
  margin: -18px 0 0 auto;
  display: flex;
  align-items: end;
  justify-content: flex-start;
  overflow: visible;
}

.star-creator-group-shot img {
  width: 790px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left bottom;
  transform: translate(-10px, 0);
  transform-origin: left bottom;
  filter: drop-shadow(0 32px 54px rgba(0, 0, 0, 0.26));
}

.star-creator-gmv-badge {
  position: absolute;
  left: 50%;
  bottom: 66px;
  transform: translateX(-50%);
  padding: 0 8px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.08em;
  color: rgba(255, 244, 244, 0.92);
  text-shadow: 0 18px 34px rgba(0, 0, 0, 0.34);
  white-space: nowrap;
  pointer-events: none;
}

.star-creator-name-tags {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.star-creator-name-tag {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  background: #571F1C;
  border: 1px solid rgba(255, 188, 188, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 242, 242, 0.12),
    0 10px 18px rgba(82, 7, 7, 0.16);
  color: rgba(255, 244, 244, 0.94);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  backdrop-filter: blur(20px) saturate(145%);
  -webkit-backdrop-filter: blur(20px) saturate(145%);
  white-space: nowrap;
}

.star-creator-name-tag--left {
  left: 86px;
  bottom: 176px;
}

.star-creator-name-tag--center {
  left: 362px;
  bottom: 252px;
}

.star-creator-name-tag--right {
  right: 66px;
  bottom: 186px;
}

.star-creator-benefit-card {
  position: relative;
  display: grid;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 36px rgba(0, 0, 0, 0.18);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}

.anniversary-shell {
  position: relative;
  display: grid;
  gap: 28px;
  padding: 32px;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 70, 70, 0.12), transparent 30%),
    radial-gradient(circle at 84% 18%, rgba(255, 146, 92, 0.12), transparent 26%),
    linear-gradient(145deg, rgba(23, 10, 10, 0.98), rgba(11, 7, 10, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 30px 80px rgba(0, 0, 0, 0.28);
}

.anniversary-shell::before,
.anniversary-shell::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.anniversary-shell::before {
  width: 420px;
  height: 420px;
  right: -140px;
  top: -130px;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.12), transparent 66%);
}

.anniversary-shell::after {
  width: 320px;
  height: 320px;
  left: -110px;
  bottom: -140px;
  background: radial-gradient(circle, rgba(255, 129, 64, 0.1), transparent 68%);
}

.anniversary-head,
.anniversary-content {
  position: relative;
  z-index: 1;
  opacity: 1;
  transform: none;
  transition: opacity 680ms cubic-bezier(0.16, 1, 0.3, 1), transform 680ms cubic-bezier(0.16, 1, 0.3, 1);
}

.anniversary-shell.is-visible .anniversary-head,
.anniversary-shell.is-visible .anniversary-content {
  opacity: 1;
  transform: translateY(0);
}

.anniversary-head {
  display: grid;
  gap: 16px;
}

.anniversary-head h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.06em;
}

.anniversary-content {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 24px;
  align-items: stretch;
}

.anniversary-story {
  display: grid;
  gap: 16px;
  padding: 24px 24px 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 36px rgba(0, 0, 0, 0.18);
}

.anniversary-story p {
  margin: 0;
  color: rgba(255, 236, 236, 0.74);
  font-size: 15px;
  line-height: 1.9;
}

.anniversary-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: stretch;
}

.anniversary-highlight-card {
  position: relative;
  min-height: 168px;
  padding: 18px 18px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 36px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}

.anniversary-highlight-card::after {
  content: "";
  position: absolute;
  inset: auto -20px -34px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 87, 87, 0.18), transparent 72%);
}

.anniversary-highlight-card span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 215, 215, 0.66);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.anniversary-highlight-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 10px;
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #fff2f2;
}

.anniversary-highlight-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 232, 232, 0.68);
  font-size: 13px;
  line-height: 1.72;
}

.cosmos-starfield--1 {
  inset: 12% 10%;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.88) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(255, 130, 130, 0.74) 0 1.2px, transparent 1.8px),
    radial-gradient(circle, rgba(255, 206, 165, 0.68) 0 1px, transparent 1.6px);
  background-size: 110px 110px, 150px 150px, 190px 190px;
  background-position: 0 0, 40px 62px, 80px 28px;
  opacity: 0.72;
  animation: cosmosDrift 24s linear infinite;
}

.cosmos-starfield--2 {
  inset: 18% 18%;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.92) 0 1.2px, transparent 1.8px),
    radial-gradient(circle, rgba(255, 98, 98, 0.54) 0 1px, transparent 1.4px);
  background-size: 130px 130px, 170px 170px;
  background-position: 20px 16px, 70px 84px;
  opacity: 0.42;
  animation: cosmosDriftReverse 20s linear infinite;
}

@keyframes cosmosPulse {
  0%, 100% { transform: scale(0.94); opacity: 0.82; }
  50% { transform: scale(1.08); opacity: 1; }
}

@keyframes cosmosDrift {
  from { transform: rotate(0deg) scale(1); }
  to { transform: rotate(360deg) scale(1.04); }
}

@keyframes cosmosDriftReverse {
  from { transform: rotate(360deg) scale(1); }
  to { transform: rotate(0deg) scale(1.06); }
}

@keyframes cosmosNebulaFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(18px, -14px, 0) scale(1.08); }
}

@keyframes cosmosNebulaFloatReverse {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-22px, 14px, 0) scale(1.06); }
}

@keyframes solarOrbitSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes solarOrbitSpinReverse {
  from { transform: translate(-50%, -50%) rotate(360deg); }
  to { transform: translate(-50%, -50%) rotate(0deg); }
}

@keyframes cosmosBlink {
  0%, 100% { opacity: 0.34; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.28); }
}

.section-heading {
  max-width: 800px;
  margin-bottom: 28px;
}

.section-heading h2,
.dashboard-card h2,
.footer-brand h3,
.footer-column h4,
.agreement-shell h2 {
  margin: 0 0 12px;
  letter-spacing: -0.05em;
}

.section-heading h2 {
  font-size: clamp(28px, 4vw, 50px);
}

.intro-card,
.dashboard-grid,
.footer-grid {
  display: grid;
  gap: 24px;
}

.intro-card {
  grid-template-columns: minmax(300px, 1.05fr) minmax(320px, 0.95fr);
  padding: 24px;
  align-items: stretch;
}

.intro-card-split {
  grid-template-columns: minmax(360px, 1.08fr) minmax(340px, 0.92fr);
  padding: 20px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(57, 18, 18, 0.52), rgba(22, 10, 10, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 28px 70px rgba(0, 0, 0, 0.26);
}

.intro-carousel-split {
  position: relative;
  min-height: 480px;
  padding: 18px 18px 24px;
  overflow: hidden;
  border-radius: calc(var(--radius-xl) - 8px);
  background: linear-gradient(180deg, rgba(39, 15, 15, 0.96), rgba(24, 11, 11, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.intro-split-stage {
  position: relative;
  min-height: 438px;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 16px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(34px) scale(0.978);
  filter: blur(6px);
  transition:
    opacity 460ms var(--ease),
    transform 520ms var(--ease),
    filter 520ms var(--ease);
}

.carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
  filter: blur(0);
}

.intro-carousel-image {
  position: relative;
  width: 100%;
  min-height: 372px;
  border-radius: calc(var(--radius-lg) - 2px);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 22px 48px rgba(0, 0, 0, 0.22);
}

.intro-carousel-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 8, 8, 0.02), rgba(10, 8, 8, 0.16)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 32%);
  pointer-events: none;
}

.intro-image-pill {
  position: relative;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff3a3a, #d31818);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 16px 30px rgba(132, 9, 9, 0.3);
  color: #fff8f8;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  transform: translateY(10px) scale(0.96);
  opacity: 0;
  transition:
    transform 420ms var(--ease),
    opacity 360ms var(--ease),
    box-shadow 260ms var(--ease);
}

.carousel-slide.is-active .intro-image-pill {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.intro-copy-card {
  min-height: 480px;
  padding: 34px 30px;
  border-radius: calc(var(--radius-xl) - 8px);
  background: linear-gradient(180deg, rgba(50, 17, 17, 0.88), rgba(24, 11, 11, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.intro-showcase-copy {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 10px 6px;
  background: transparent;
  border: 0;
}

.placeholder-badge,
.placeholder-lines span,
.chip,
.qr-placeholder {
  border-radius: 999px;
}

.intro-block {
  display: none;
  min-height: 100%;
  padding: 8px 4px;
  background: transparent;
  border: 0;
}

.intro-block.is-active {
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: 100%;
}

.intro-block h3 {
  margin: 0;
  font-size: 38px;
  line-height: 1.12;
  letter-spacing: -0.06em;
}

.slide-badge,
.placeholder-badge,
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 14px;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.placeholder-lines {
  width: min(320px, 80%);
  display: grid;
  gap: 14px;
}

.placeholder-lines span {
  display: block;
  height: 14px;
  background: rgba(255, 0, 0, 0.18);
}

.intro-showcase-copy p,
.intro-block p {
  margin: 0;
  color: #e5cccc;
  line-height: 2;
  font-size: 15px;
}

.number-highlight {
  color: var(--primary);
  font-weight: 800;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 46px;
  height: 46px;
  margin-top: -36px;
  border-radius: 999px;
  background: rgba(14, 10, 10, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.carousel-arrow-left {
  left: 36px;
}

.carousel-arrow-right {
  right: 36px;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 2;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  transition: width 220ms var(--ease), background 220ms var(--ease), transform 220ms var(--ease);
}

.carousel-dot.is-active {
  width: 28px;
  background: var(--primary);
  transform: scale(1.02);
}

.card-title-row h2 {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.footer-info {
  padding: 0 0 64px;
}

.footer-grid {
  grid-template-columns: 1.2fr 1fr 0.9fr 1.1fr;
  align-items: start;
}

.footer-grid-single {
  grid-template-columns: 1fr;
}

.footer-brand,
.footer-column,
.footer-contact-card {
  padding: 24px;
  border-radius: var(--radius-xl);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 100%;
}

.footer-brand img {
  width: 160px;
  margin-bottom: 18px;
  filter: drop-shadow(0 12px 28px rgba(255, 46, 46, 0.2));
}

.footer-brand-compact {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  margin-bottom: 18px;
}

.footer-brand-compact h3 {
  margin: 0;
}

.footer-brand-compact img {
  width: 30px;
  height: 30px;
  margin-bottom: 0;
  flex: 0 0 auto;
  object-fit: contain;
}

.footer-contact-card {
  display: grid;
  gap: 18px;
  background: linear-gradient(180deg, rgba(31, 14, 14, 0.88), rgba(20, 10, 10, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-contact-body {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  gap: 28px;
  align-items: end;
}

.footer-column-plain {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.footer-column-plain h4 {
  margin-bottom: 10px;
}

.footer-column-plain p {
  margin: 0;
}

.footer-column-plain p + p {
  margin-top: 8px;
}

.qr-grid,
.dashboard-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dashboard-grid.single {
  grid-template-columns: 1fr;
}

.qr-grid {
  display: grid;
  gap: 14px;
}

.qr-grid-single {
  grid-template-columns: 1fr;
}

.qr-column {
  display: grid;
  justify-items: start;
  text-align: left;
  padding-left: 18px;
  align-content: start;
}

.qr-column .qr-grid {
  margin-top: 2px;
  justify-items: start;
}

.qr-intro {
  margin-top: 2px;
  color: #e5cccc;
}


.qr-card {
  display: grid;
  place-items: center;
  gap: 12px;
  min-height: 184px;
  padding: 20px 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.qr-card-single {
  width: 135px;
  min-height: 135px;
  margin-top: -10px;
  padding: 2px;
}

.qr-placeholder {
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.16), rgba(255, 255, 255, 0.9));
  color: var(--primary-deep);
  font-size: 12px;
  text-align: center;
  line-height: 1.5;
}

.qr-image {
  width: 120px;
  height: 120px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.qr-image-business {
  width: 130px;
  height: 130px;
  aspect-ratio: 1;
  object-fit: cover;
}

.modal-layer {
  position: fixed;
  inset: 0;
  z-index: 80;
}

.hidden {
  display: none !important;
}

.modal-mask {
  position: absolute;
  inset: 0;
  background: rgba(11, 8, 8, 0.54);
}

.auth-modal {
  position: relative;
  z-index: 1;
  width: min(640px, calc(100vw - 32px));
  margin: 80px auto;
  padding: 28px;
}

.close-button {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--text);
}

.auth-header {
  margin-bottom: 20px;
}

.auth-header h2 {
  margin: 0 0 10px;
  font-size: 34px;
  letter-spacing: -0.05em;
}

.identity-switch,
.mode-switch {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.form-card {
  display: grid;
  gap: 14px;
}

.form-card label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
}

.form-card input {
  height: 50px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  color: var(--text);
  outline: none;
}

:root[data-theme="dark"] .form-card input {
  background: rgba(255, 255, 255, 0.04);
}

.form-card input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255, 0, 0, 0.12);
}

.inline-field {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.agreement-row {
  grid-template-columns: auto 1fr;
  align-items: start;
}

.agreement-row input {
  margin-top: 5px;
  width: 16px;
  height: 16px;
}

.captcha-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.captcha-row input {
  flex: 1;
  min-width: 0;
}

.captcha-image {
  width: 120px;
  height: 44px;
  border-radius: 10px;
  cursor: pointer;
  flex: 0 0 auto;
  background: #1a0d0d;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(16px);
  z-index: 90;
  min-width: 220px;
  max-width: calc(100vw - 32px);
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(19, 17, 17, 0.92);
  color: #fff;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: all 180ms var(--ease);
}

.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.dashboard-page {
  padding-top: 24px;
}

.operator-page {
  background:
    radial-gradient(circle at top left, rgba(255, 80, 80, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 0, 0, 0.08), transparent 22%),
    var(--bg);
}

.operator-topbar {
  position: fixed;
  inset: 0 0 auto;
}

.operator-topbar-actions {
  gap: 18px;
}

.operator-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.operator-nav-link,
.operator-module-tab {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  background: transparent;
  transition: all 180ms var(--ease);
}

.operator-nav-link:hover,
.operator-nav-link.is-active,
.operator-module-tab:hover,
.operator-module-tab.is-active {
  color: #fff;
  background: rgba(255, 47, 47, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.operator-shell {
  padding: 126px 0 72px;
}

.operator-stage {
  padding: 28px;
  display: grid;
  gap: 24px;
}

.operator-stage,
.operator-grid,
.operator-task-list,
.operator-activity-list,
.operator-checklist,
.operator-funnel-board,
.operator-alert-list,
.operator-filter-actions,
.operator-filter-chips,
.operator-mapping-list,
.operator-monitor-list,
.operator-monitor-grid {
  display: grid;
  gap: 16px;
}

.operator-card p,
.operator-task-item p,
.operator-check-item p,
.operator-alert-item p,
.operator-funnel-copy p,
.operator-activity-footer,
.operator-activity-meta span {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.8;
}

.operator-card,
.operator-task-item,
.operator-activity-item,
.operator-check-item,
.operator-funnel-item,
.operator-alert-item,
.operator-monitor-item {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.operator-task-index,
.operator-activity-footer,
.operator-funnel-value span,
.operator-check-item span {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.operator-module-panel {
  display: none;
}

.operator-module-panel.is-active {
  display: block;
}

.operator-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
}

.operator-card-wide {
  grid-column: 1 / -1;
}

.operator-evaluation-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.operator-evaluation-metric {
  padding: 24px 20px 18px;
  border-radius: 30px;
  text-align: center;
  display: grid;
  gap: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255,255,255,0.08);
  color: inherit;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease), box-shadow 180ms var(--ease);
}

.operator-evaluation-metric.is-clickable {
  cursor: pointer;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease);
}

.operator-evaluation-metric.is-clickable:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 47, 47, 0.22);
  background: linear-gradient(180deg, rgba(255, 47, 47, 0.12), rgba(255,255,255,0.04));
}

.operator-evaluation-metric.is-active {
  transform: translateY(-2px);
  border-color: rgba(255, 47, 47, 0.5);
  background: linear-gradient(180deg, rgba(255, 47, 47, 0.22), rgba(255, 47, 47, 0.08));
  box-shadow: 0 22px 42px rgba(255, 47, 47, 0.18), inset 0 1px 0 rgba(255,255,255,0.12);
}

.operator-evaluation-metric.is-active span {
  color: #ffd1d1;
}

.operator-evaluation-metric.is-active strong {
  color: #fff5f5;
}

.operator-evaluation-metric:disabled {
  cursor: default;
  opacity: 1;
}

.operator-evaluation-metric span {
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.operator-evaluation-metric strong {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  color: #ff4d5a;
}

.operator-card {
  overflow: hidden;
}

.operator-evaluation-card {
  display: grid;
  gap: 22px;
}

.operator-card-title-row {
  align-items: flex-start;
}

.operator-batch-actions,
.operator-filter-chips,
.operator-filter-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.operator-filter-bar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}

.operator-filter-chip {
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: var(--text-muted);
  font-weight: 700;
  transition: all 180ms var(--ease);
}

.operator-filter-chip:hover,
.operator-filter-chip.is-active {
  color: #fff;
  border-color: rgba(255, 47, 47, 0.26);
  background: rgba(255, 47, 47, 0.14);
}

.operator-search-field,
.operator-filter-select {
  display: grid;
  gap: 8px;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.operator-search-field input,
.operator-filter-select select,
.operator-table-input {
  min-height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: #fff;
  padding: 0 12px;
}

.operator-search-field input {
  min-width: 220px;
}

.operator-table-shell {
  overflow: auto;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(7, 7, 7, 0.16);
}

.operator-data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 1520px;
  table-layout: fixed;
}

.operator-col-xs {
  width: 68px;
}

.operator-col-sm {
  width: 110px;
}

.operator-col-md {
  width: 160px;
}

.operator-col-lg {
  width: 220px;
}

.operator-col-xl {
  width: 260px;
}

.operator-data-table th,
.operator-data-table td {
  padding: 14px 12px;
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  text-align: center;
  vertical-align: middle;
}

.operator-data-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  min-height: 72px;
  height: 72px;
  padding: 16px 10px;
  background: #111111;
  color: #fff;
  white-space: normal;
  line-height: 1.35;
}

.operator-data-row {
  background: rgba(255,255,255,0.02);
}

.operator-data-row.is-active {
  background: rgba(255, 47, 47, 0.08);
}

.operator-data-row.is-highlighted {
  background: linear-gradient(90deg, rgba(255, 47, 47, 0.18), rgba(255, 47, 47, 0.06));
  box-shadow: inset 3px 0 0 #ff2f2f;
}

.operator-checkbox-wrap {
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}

.operator-checkbox-wrap input {
  position: absolute;
  opacity: 0;
}

.operator-checkbox-wrap span {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  display: block;
}

.operator-checkbox-wrap input:checked + span {
  background: #ff2f2f;
  border-color: #ff2f2f;
  box-shadow: 0 0 0 3px rgba(255, 47, 47, 0.14);
}

.operator-table-chip,
.operator-action-link {
  border: none;
  background: rgba(255, 47, 47, 0.14);
  color: #fff;
  border-radius: 999px;
  min-height: 32px;
  padding: 0 12px;
  font-weight: 700;
}

.operator-table-chip[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

.operator-story-cell {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.operator-story-cell .operator-table-chip,
.operator-score-action-group .operator-action-link {
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
  text-align: center;
  line-height: 1.35;
}

.operator-score-action-group .operator-action-link {
  max-width: 100%;
}

.operator-base-tag-list,
.operator-base-tag-list span {
  min-width: 0;
}

.operator-base-tag-list span {
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.operator-story-popover,
.operator-score-script-box {
  word-break: break-word;
  overflow-wrap: anywhere;
}

.operator-story-popover {
  width: min(360px, calc(100vw - 48px));
}

.operator-score-script-box {
  max-width: 100%;
}

.operator-base-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 100%;
}

.operator-base-tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  line-height: 1.4;
}

.operator-base-tag-list span.is-empty {
  color: rgba(255, 255, 255, 0.56);
}

.operator-story-popover {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  transform: translateX(-50%) translateY(8px);
  width: 280px;
  max-height: 220px;
  overflow: auto;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(17, 17, 17, 0.96);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  color: #f6f6f6;
  line-height: 1.7;
  text-align: left;
  white-space: pre-wrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
  z-index: 3;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 47, 47, 0.5) rgba(255,255,255,0.06);
}

.operator-story-cell:hover .operator-story-popover {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.operator-story-popover.is-empty {
  color: var(--text-muted);
}

.operator-story-popover::-webkit-scrollbar {
  width: 8px;
}

.operator-story-popover::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.05);
  border-radius: 999px;
}

.operator-story-popover::-webkit-scrollbar-thumb {
  background: rgba(255, 47, 47, 0.48);
  border-radius: 999px;
}

.operator-story-popover::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 47, 47, 0.72);
}

.operator-score-action-group {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.operator-score-value {
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.operator-grade-select {
  min-width: 92px;
  text-align: center;
  text-align-last: center;
}

.operator-action-stack {
  display: grid;
  gap: 6px;
  justify-items: center;
}

.operator-action-link.is-history,
.operator-action-link.is-export,
.operator-action-link.is-save {
  background: transparent;
  color: #ff8a8a;
  text-decoration: underline;
}

.operator-action-link.is-history {
  color: #ffd2d2;
}

.operator-action-link.is-save {
  color: #fff0f0;
}

.operator-monitor-head,
.operator-monitor-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.operator-monitor-head p,
.operator-monitor-footer span {
  margin: 0;
  color: var(--text-muted);
}

.operator-monitor-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.operator-monitor-grid label {
  display: grid;
  gap: 8px;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.operator-score-modal[hidden] {
  display: none;
}

.operator-score-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
}

.operator-score-modal__mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.56);
  backdrop-filter: blur(8px);
}

.operator-score-modal__dialog {
  position: relative;
  width: min(1080px, calc(100vw - 40px));
  max-height: calc(100vh - 72px);
  margin: 36px auto 0;
  padding: 28px;
  display: grid;
  gap: 22px;
  border-radius: 32px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
  overflow: auto;
}

.operator-score-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 24px;
  line-height: 1;
}

.operator-score-modal__head,
.operator-score-modal__body,
.operator-score-modal__field,
.operator-score-modal__footer,
.operator-score-modal__ticks,
.operator-score-modal__video-head,
.operator-score-modal__dimension-head,
.operator-score-modal__dimension-list,
.operator-score-dimension-item {
  display: grid;
  gap: 12px;
}

.operator-score-modal__body {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: start;
  gap: 22px;
}

.operator-score-modal__body.is-script-mode {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
}

.operator-score-modal__head h3 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.operator-score-modal__head p {
  margin: 0;
  color: var(--text-muted);
}

.operator-score-modal__field span {
  color: var(--text-muted);
  font-size: 13px;
}

.operator-score-modal__input {
  min-height: 52px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: #fff;
  padding: 0 16px;
  font-size: 22px;
  font-weight: 800;
}

.operator-score-modal__slider-wrap {
  display: grid;
  gap: 10px;
}

.operator-score-modal__slider {
  width: 100%;
  accent-color: #ff2f2f;
}

.operator-score-modal__ticks {
  grid-template-columns: repeat(5, 1fr);
  color: var(--text-muted);
  font-size: 12px;
  text-align: center;
}

.operator-score-modal__footer {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.operator-score-modal__video-panel,
.operator-score-modal__script-panel,
.operator-score-modal__dimension-panel {
  padding: 22px;
  border-radius: 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}

.operator-score-modal__video-head,
.operator-score-modal__script-head,
.operator-score-modal__dimension-head {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
}

.operator-score-modal__body.is-script-mode .operator-score-modal__script-head,
.operator-score-modal__body.is-script-mode .operator-score-modal__dimension-head {
  align-items: center;
}

.operator-score-modal__video-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.operator-video-refresh-button {
  min-width: 132px;
  padding-inline: 16px;
}

.operator-video-status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #f5dede;
}

.operator-video-status-pill.is-playable {
  background: rgba(255, 47, 47, 0.14);
  border-color: rgba(255, 47, 47, 0.32);
  color: #ffffff;
}

.operator-video-status-pill.is-uploaded {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.operator-video-status-pill.is-empty {
  opacity: 0.72;
}

.operator-score-modal__video-head h4,
.operator-score-modal__script-head h4,
.operator-score-modal__dimension-head h4 {
  margin: 0 0 6px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.operator-score-modal__video-head p,
.operator-score-modal__script-head p,
.operator-score-modal__dimension-head p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.operator-score-script-box {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: #fff;
  line-height: 1.9;
  white-space: pre-wrap;
  max-height: 280px;
  overflow: auto;
}

.operator-score-modal__body.is-script-mode .operator-score-script-box {
  min-height: 360px;
  max-height: 520px;
  padding: 22px;
}

.operator-environment-modal-content,
.operator-environment-preview-grid,
.operator-environment-photo-grid,
.operator-environment-meta-list,
.operator-environment-shape-list {
  display: grid;
  gap: 14px;
}

.operator-environment-preview-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.operator-environment-preview-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.operator-environment-preview-card.is-full-width {
  grid-column: 1 / -1;
}

.operator-environment-preview-card h5 {
  margin: 0 0 14px;
  font-size: 18px;
}

.operator-environment-photo-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.operator-environment-photo-grid figure,
.operator-environment-video-thumb,
.operator-environment-drawing-snapshot {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.operator-environment-photo-grid img,
.operator-environment-video-thumb img,
.operator-environment-drawing-snapshot {
  width: 100%;
  display: block;
  object-fit: cover;
}

.operator-environment-photo-grid figcaption,
.operator-environment-meta-list span,
.operator-environment-shape-list span,
.operator-environment-photo-empty {
  color: #e4cccc;
  line-height: 1.75;
}

.operator-environment-photo-empty {
  min-height: 160px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.operator-score-modal__video-shell {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 10;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(10,10,10,0.82), rgba(24,24,24,0.94));
  border: 1px solid rgba(255,255,255,0.08);
}

.operator-score-modal__video {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  display: block;
  background: rgba(0, 0, 0, 0.72);
}

.operator-score-modal__video-empty {
  min-height: 0;
  display: grid;
  place-items: center;
  padding: 0;
  text-align: center;
  color: #fff;
}

.operator-score-modal__video-empty strong {
  display: block;
  margin-bottom: 10px;
  font-size: 24px;
}

.operator-score-modal__video-empty p {
  margin: 0;
  max-width: 420px;
  color: var(--text-muted);
  line-height: 1.8;
}

.operator-score-modal__inline-total {
  margin: 0;
  font-size: 34px;
  line-height: 1;
  color: #ff4b4b;
  justify-self: end;
}

.operator-score-modal__dimension-list {
  gap: 14px;
}


.operator-score-dimension-item {
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
}

.operator-score-dimension-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
}

.operator-score-dimension-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.operator-score-dimension-top strong {
  display: block;
  font-size: 16px;
}

.operator-score-dimension-top p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 13px;
}

.operator-score-dimension-top span {
  font-size: 15px;
  font-weight: 800;
  color: #ffe1e1;
}

.operator-score-dimension-slider {
  width: 100%;
  accent-color: #ff2f2f;
}

.operator-score-dimension-item.is-live-dimension {
  background: linear-gradient(180deg, rgba(255, 47, 47, 0.08), rgba(255,255,255,0.03));
  border-color: rgba(255, 47, 47, 0.18);
}

.operator-score-dimension-item.is-single-score {
  min-height: 152px;
  align-content: start;
}

.operator-status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 176, 0, 0.12);
  color: #ffcf76;
}

.operator-status-pill.is-complete {
  background: rgba(255, 47, 47, 0.16);
  color: #ffd0d0;
}

.operator-empty-cell {
  padding: 28px 20px;
  color: var(--text-muted);
}

.operator-grid-evaluation-detail {
  grid-template-columns: minmax(0, 1fr);
}

.operator-card .card-title-row {
  margin-bottom: 18px;
}

.operator-card .card-title-row h2 {
  margin: 0 0 8px;
  font-size: 28px;
  letter-spacing: -0.05em;
}

.operator-task-item,
.operator-check-item,
.operator-funnel-item,
.operator-activity-item {
  display: grid;
  gap: 12px;
}

.operator-task-item {
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: start;
}

.operator-task-index,
.operator-check-item span {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 47, 47, 0.12);
  border: 1px solid rgba(255, 47, 47, 0.18);
  color: #ffd0d0;
}

.operator-task-item strong,
.operator-activity-item strong,
.operator-funnel-copy strong,
.operator-alert-item strong {
  color: #fff;
}

.operator-activity-head,
.operator-activity-meta,
.operator-funnel-item {
  display: grid;
  gap: 10px;
}

.operator-activity-meta {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.operator-funnel-item {
  grid-template-columns: minmax(0, 1fr) minmax(140px, 0.55fr);
  align-items: center;
}

.operator-funnel-value {
  display: grid;
  gap: 12px;
}

.operator-funnel-bar {
  position: relative;
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.operator-funnel-fill {
  position: absolute;
  inset: 0 auto 0 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff0000, #ff7a7a);
}

.operator-alert-item.is-warning {
  border-color: rgba(255, 47, 47, 0.3);
  background: linear-gradient(180deg, rgba(79, 20, 20, 0.72), rgba(35, 13, 13, 0.92));
}

.creator-home-page,
.creator-inner-page {
  background:
    radial-gradient(circle at top left, rgba(255, 80, 80, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 0, 0, 0.08), transparent 22%),
    var(--bg);
}

.creator-home-shell {
  min-height: 100dvh;
}

.creator-topbar,
.creator-inner-topbar {
  position: fixed;
  inset: 0 0 auto;
}

.creator-topbar-actions {
  gap: 18px;
}

.creator-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.creator-nav-link,
.creator-login-badge {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  transition: all 180ms var(--ease);
}

.creator-nav-link {
  color: var(--text-muted);
}

.creator-nav-link:hover,
.creator-nav-link.is-active {
  color: #fff;
  background: rgba(255, 47, 47, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.creator-login-badge {
  min-width: 146px;
  background: linear-gradient(135deg, rgba(255, 47, 47, 0.18), rgba(255, 47, 47, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff4f4;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.logout-button {
  min-height: 42px;
  padding: 0 16px;
  margin-left: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 180ms var(--ease);
}

.logout-button:hover {
  color: #fff;
  border-color: rgba(255, 47, 47, 0.5);
  background: rgba(255, 47, 47, 0.14);
}

.creator-hero-banner {
  min-height: 100dvh;
  padding: 132px 0 76px;
  background-position: center 18%;
}

.creator-hero-overlay {
  background:
    linear-gradient(180deg, rgba(7, 4, 4, 0.54), rgba(7, 4, 4, 0.76)),
    linear-gradient(120deg, rgba(10, 5, 5, 0.84) 0%, rgba(14, 7, 7, 0.58) 36%, rgba(14, 7, 7, 0.32) 100%);
}

.creator-hero-content {
  min-height: calc(100dvh - 208px);
  align-items: center;
}

.creator-hero-copy {
  width: min(1180px, 100%);
  gap: 34px;
}

.creator-entry-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.creator-entry-card {
  min-height: 220px;
  padding: 26px 24px;
  display: grid;
  align-content: space-between;
  gap: 16px;
  text-align: left;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(43, 17, 17, 0.82), rgba(23, 11, 11, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 56px rgba(0, 0, 0, 0.24);
}

.creator-entry-card strong {
  font-size: 26px;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.creator-entry-card.is-completed {
  border-color: rgba(255, 47, 47, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 56px rgba(108, 16, 16, 0.2);
}

.creator-entry-card p {
  margin: 0;
  color: #e3c9c9;
  line-height: 1.8;
  font-size: 14px;
}

.creator-entry-kicker {
  color: #ffb5b5;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.creator-sections {
  padding: 24px 0 72px;
}

.creator-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.creator-detail-card {
  min-height: 240px;
  padding: 28px;
}

.creator-detail-card h2 {
  margin: 0 0 14px;
  font-size: 28px;
  letter-spacing: -0.05em;
}

.creator-detail-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.9;
}

.creator-business-shell {
  padding: 126px 0 72px;
}

.creator-business-grid,
.business-activity-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 22px;
}

.business-activity-panel-wide {
  grid-column: 1 / -1;
}

.creator-business-grid {
  margin-bottom: 22px;
}

.business-card,
.business-activity-card {
  padding: 28px;
}

.business-card-head,
.business-card-head-wide,
.business-rank-row,
.business-product-row,
.business-goal-footer,
.business-pk-user {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.business-card-head,
.business-card-head-wide {
  margin-bottom: 20px;
}

.business-card-head h2,
.business-card-head-wide h2,
.business-activity-headline h3 {
  margin: 0 0 10px;
  letter-spacing: -0.05em;
}

.business-card-head p,
.business-card-head-wide p,
.business-rank-copy small,
.business-product-main small,
.business-activity-headline p,
.business-goal-metrics small,
.business-sync-note,
.business-pk-user small,
.business-rank-score small {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.8;
}

.business-rule-chip,
.business-cash-tag,
.business-product-badge,
.business-reward-tag,
.business-activity-deadline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #ffd4d4;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.business-rank-list,
.business-product-list,
.business-goal-metrics {
  display: grid;
  gap: 14px;
}

.business-rank-row,
.business-product-row,
.business-goal-metrics article,
.business-pk-card,
.business-activity-panel {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.business-rank-row {
  position: relative;
  align-items: center;
  padding: 20px 18px;
}


.business-rank-row.is-top-1 {
  border-color: rgba(255, 196, 75, 0.42);
  box-shadow: 0 20px 44px rgba(147, 92, 11, 0.18);
}

.business-rank-row.is-top-2 {
  border-color: rgba(233, 240, 255, 0.28);
}

.business-rank-row.is-top-3 {
  border-color: rgba(255, 170, 129, 0.28);
}

.business-rank-main,
.business-product-main {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex: 1;
}

.business-rank-copy,
.business-product-main,
.business-pk-user div {
  min-width: 0;
}

.business-rank-name-line,
.business-product-title-line {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.business-rank-copy {
  display: grid;
  gap: 4px;
}

.business-rank-copy strong {
  font-size: 18px;
  letter-spacing: -0.03em;
}

.business-rank-index,
.business-rank-score span,
.business-product-rank span,
.business-goal-metrics span,
.business-activity-deadline strong {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.business-rank-index {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  flex: 0 0 auto;
}

.business-avatar {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
  flex: 0 0 auto;
}

.business-rank-copy strong,
.business-product-main strong,
.business-goal-metrics strong,
.business-pk-user strong,
.business-pk-value {
  color: #fff;
}

.business-rank-score,
.business-product-rank {
  text-align: right;
  flex: 0 0 auto;
}

.business-rank-score {
  display: grid;
  gap: 4px;
  justify-items: end;
  padding-right: 2px;
}

.business-rank-score span {
  font-size: 11px;
  letter-spacing: 0.12em;
}

.business-rank-score strong {
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.business-rank-score strong,
.business-product-rank strong {
  display: block;
  margin-top: 6px;
  font-size: 22px;
}


.business-product-row.is-new {
  border-color: rgba(255, 70, 70, 0.36);
  background: linear-gradient(180deg, rgba(79, 20, 20, 0.72), rgba(35, 13, 13, 0.92));
}

.business-activity-card {
  display: grid;
  gap: 24px;
}

.business-activity-deadline {
  display: grid;
  gap: 4px;
  height: fit-content;
  padding-block: 12px;
}

.business-activity-deadline span {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.business-activity-panel {
  display: grid;
  gap: 18px;
}

.business-activity-headline {
  display: grid;
  gap: 8px;
}

.business-goal-metrics article {
  display: grid;
  gap: 10px;
}

.business-progress-bar {
  position: relative;
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.business-progress-fill {
  position: absolute;
  inset: 0 auto 0 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff0000, #ff7a7a);
}

.business-progress-bar.is-refund .business-progress-fill {
  background: linear-gradient(90deg, #ff8f8f, #ffd5d5);
}

.business-pk-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 88px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.business-pk-card {
  display: grid;
  gap: 14px;
}

.business-pk-card.is-champion {
  border-color: rgba(255, 196, 75, 0.42);
}

.business-pk-card.is-challenger {
  border-color: rgba(255, 47, 47, 0.32);
}

.business-pk-vs {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.2), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.business-pk-value {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.business-camp-pk-topbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: stretch;
}

.business-camp-pk-metric,
.business-camp-bonus-card {
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 6px;
}

.business-camp-pk-metric span,
.business-camp-bonus-card span,
.business-camp-card__head span {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.business-camp-pk-metric strong,
.business-camp-bonus-card strong,
.business-camp-card__head strong,
.business-camp-director-item strong {
  color: #fff;
}

.business-camp-pk-metric strong {
  font-size: 22px;
  letter-spacing: -0.04em;
}

.business-camp-pk-metric small,
.business-camp-bonus-card small,
.business-camp-card__head em,
.business-camp-director-item small,
.business-camp-director-score {
  color: var(--text-muted);
}

.business-camp-bonus-card {
  background: linear-gradient(180deg, rgba(88, 16, 16, 0.88), rgba(49, 11, 11, 0.94));
  border-color: rgba(255, 71, 71, 0.28);
  box-shadow: 0 24px 54px rgba(107, 15, 15, 0.26);
}

.business-camp-bonus-card strong {
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.06em;
  color: #fff;
}

.business-camp-stage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.business-camp-card {
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 16px;
}

.business-camp-card.is-left {
  border-color: rgba(255, 112, 112, 0.24);
}

.business-camp-card.is-right {
  border-color: rgba(122, 170, 255, 0.22);
}

.business-camp-card.is-winner {
  box-shadow: 0 24px 52px rgba(134, 22, 22, 0.22);
  background: linear-gradient(180deg, rgba(73, 16, 16, 0.84), rgba(33, 12, 12, 0.96));
}

.business-camp-card__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.business-camp-card__head strong {
  display: block;
  margin-top: 6px;
  font-size: 24px;
  letter-spacing: -0.05em;
}

.business-camp-card__head em {
  font-style: normal;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  white-space: nowrap;
}

.business-camp-card__value {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: #fff;
}

.business-camp-director-list {
  display: grid;
  gap: 12px;
}

.business-camp-director-item {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.business-camp-director-main {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.business-avatar.is-small {
  width: 46px;
  height: 46px;
  border-radius: 16px;
}

.business-camp-director-score {
  flex: 0 0 auto;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
}

.business-goal-footer.is-camp-pk-footer {
  align-items: center;
}

.creator-center-shell-wrap,
.creator-offline-shell {
  padding: 132px 0 84px;
  display: grid;
  gap: 28px;
}

.creator-center-profile-card,
.creator-center-activity-card,
.creator-center-compliance-card {
  position: relative;
  overflow: hidden;
}

.questionnaire-dimension-chip,
.business-rule-chip,
.business-cash-tag,
.business-product-badge,
.business-reward-tag,
.creator-login-badge,
.creator-nav-link,
.operator-nav-link,
.operator-module-tab,
.operator-filter-chip,
.operator-table-chip,
.operator-action-link,
.operator-video-status-pill,
.operator-status-pill,
.questionnaire-dimension-kicker,
.questionnaire-question-index,
.creator-center-compliance-step,
.assessment-step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 229, 229, 0.86);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  word-break: keep-all;
  flex-shrink: 0;
}

.creator-offline-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px;
  display: grid;
  gap: 22px;
  text-align: center;
}

.creator-offline-card h1 {
  margin: 0;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.creator-offline-card p {
  margin: 0;
  color: rgba(255, 225, 225, 0.72);
  font-size: 15px;
  line-height: 1.9;
}

.creator-offline-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.creator-center-shell {
  display: grid;
  gap: 22px;
}

.creator-center-profile-card,
.creator-center-activity-card,
.creator-center-compliance-card,
.creator-center-certificate-card {
  padding: 28px;
}

.creator-center-profile-card {
  display: grid;
  gap: 24px;
}

.creator-center-profile-top,
.creator-center-grade-board,
.creator-center-lower-grid,
.creator-center-identity-grid,
.creator-center-activity-compact,
.creator-center-upload-grid {
  display: grid;
  gap: 22px;
}

.creator-center-profile-top {
  grid-template-columns: 128px minmax(0, 1fr);
  align-items: center;
}

.creator-center-avatar {
  position: relative;
  width: 128px;
  height: 128px;
  border-radius: 36px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at top, rgba(255, 67, 67, 0.32), rgba(0, 0, 0, 0.7));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.28);
  cursor: pointer;
}

.creator-center-avatar span {
  position: absolute;
  inset: auto 10px 10px;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.creator-center-avatar-image,
.creator-center-avatar-fallback {
  width: 100%;
  height: 100%;
}

.creator-center-avatar-image {
  object-fit: cover;
}

.creator-center-avatar-fallback {
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 46px;
  font-weight: 900;
}

.creator-center-file-input {
  display: none;
}

.creator-center-identity-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.creator-center-identity-grid article,
.creator-center-activity-compact article,
.creator-center-progress-item,
.creator-center-upload-box,
.creator-center-review-state {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.creator-center-identity-grid article {
  display: grid;
  gap: 10px;
  position: relative;
}

.creator-center-certificate-inline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.creator-center-certificate-trigger {
  min-height: 56px;
  padding: 0 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  display: grid;
  place-items: center;
  gap: 2px;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease);
}

.creator-center-certificate-trigger:hover:not(:disabled) {
  transform: translateY(-2px);
  border-color: rgba(255, 124, 124, 0.4);
  background: rgba(255, 56, 56, 0.12);
}

.creator-center-certificate-trigger span {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.creator-center-certificate-trigger small {
  color: rgba(255, 225, 225, 0.72);
  font-size: 11px;
}

.creator-center-certificate-trigger:disabled {
  opacity: 0.48;
  cursor: not-allowed;
}

.creator-center-certificate-floating-card {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: min(420px, 58vw);
  padding: 16px;
  border-radius: 26px;
  background: rgba(17, 9, 9, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.34);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms var(--ease), transform 180ms var(--ease), visibility 180ms var(--ease);
  z-index: 7;
  display: grid;
  gap: 14px;
  cursor: pointer;
}

.creator-center-certificate-inline:hover + .creator-center-certificate-floating-card,
.creator-center-certificate-inline:focus-within + .creator-center-certificate-floating-card,
.creator-center-certificate-floating-card:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.creator-center-certificate-floating-preview {
  padding: 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.creator-center-certificate-floating-copy {
  display: grid;
  gap: 6px;
}

.creator-center-certificate-floating-copy p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.creator-center-identity-grid span,
.creator-center-progress-copy span,
.creator-center-progress-copy small,
.creator-center-activity-compact small,
.creator-center-upload-box small,
.creator-center-review-state span,
.creator-center-growth-note,
.creator-center-compliance-hint,
.creator-center-grade-tooltip p {
  color: var(--text-muted);
}

.creator-center-identity-grid strong,
.creator-center-progress-copy strong,
.creator-center-activity-compact strong,
.creator-center-block-head h3,
.creator-center-growth-head h2,
.creator-center-review-state strong,
.creator-center-grade-tooltip strong {
  color: #fff;
}

.creator-center-grade-board {
  grid-template-columns: 326px minmax(0, 1fr);
  align-items: stretch;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 10px;
}

.creator-center-grade-panel {
  position: relative;
  width: 326px;
  display: grid;
  gap: 16px;
  align-content: stretch;
}

.creator-center-grade-panel > span {
  width: 326px;
  min-height: 186px;
  padding: 0 12px;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 52px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.06em;
  text-align: center;
}

.creator-center-grade-badge {
  width: 100%;
  min-height: 100%;
  padding: 24px 20px;
  border-radius: 36px;
  display: grid;
  place-items: center;
  align-content: center;
  background: radial-gradient(circle at 50% 16%, rgba(255, 76, 76, 0.4), rgba(95, 12, 12, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), border-color 180ms var(--ease);
}

.creator-center-grade-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(255, 0, 0, 0.18);
  border-color: rgba(255, 132, 132, 0.4);
}

.creator-center-grade-badge em {
  font-style: normal;
  font-size: 108px;
  line-height: 0.9;
  font-weight: 900;
}

.creator-center-grade-tooltip {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  width: 280px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(18, 10, 10, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.32);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
  z-index: 5;
}

.creator-center-grade-panel:hover .creator-center-grade-tooltip {
  opacity: 1;
  transform: translateY(0);
}

.creator-center-growth-panel,
.creator-center-progress-list,
.creator-center-compliance-card,
.creator-center-compliance-panel,
.creator-center-review-state,
.creator-center-block-head,
.creator-center-growth-head,
.creator-center-certificate-card,
.creator-center-certificate-layout,
.creator-center-certificate-meta,
.creator-center-certificate-empty {
  display: grid;
  gap: 16px;
}

.creator-center-growth-head {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 18px;
}

.creator-center-growth-target {
  min-width: 320px;
  padding: 18px 20px;
  border-radius: 28px;
  display: grid;
  gap: 6px;
  align-items: start;
  text-align: left;
  background: linear-gradient(180deg, rgba(255, 54, 54, 0.14), rgba(38, 15, 15, 0.92));
  border: 1px solid rgba(255, 116, 116, 0.2);
  color: #fff;
  box-shadow: 0 20px 40px rgba(18, 6, 6, 0.28);
}

.creator-center-growth-target span {
  color: #ffb0b0;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.creator-center-growth-target strong {
  color: #fff;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.creator-center-growth-target small {
  color: rgba(255, 230, 230, 0.72);
  line-height: 1.6;
}

.creator-center-growth-target:disabled {
  opacity: 1;
  cursor: default;
}

.creator-center-progress-item {
  display: grid;
  gap: 12px;
}

.creator-center-progress-bar {
  height: 8px;
}

.creator-center-progress-fill {
  background: linear-gradient(90deg, #8a0d0d, #ff2f2f 58%, #ff8888);
  box-shadow: 0 10px 20px rgba(255, 46, 46, 0.18);
}

.creator-center-progress-copy {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.creator-center-certificate-layout {
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  align-items: start;
}

.creator-center-certificate-preview {
  padding: 16px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.creator-center-certificate-artboard {
  border-radius: 20px;
}

.creator-center-certificate-meta {
  align-content: start;
}

.creator-center-certificate-meta article,
.creator-center-certificate-empty {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.creator-center-certificate-meta article {
  display: grid;
  gap: 10px;
}

.creator-center-certificate-meta span,
.creator-center-certificate-empty p {
  color: var(--text-muted);
}

.creator-center-certificate-meta strong,
.creator-center-certificate-empty strong {
  color: #fff;
}

.creator-center-certificate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.creator-center-lower-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.creator-center-activity-card,
.creator-center-compliance-card {
  min-height: 100%;
}

.creator-center-activity-compact,
.creator-center-upload-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.creator-center-activity-compact article,
.creator-center-upload-box,
.creator-center-review-state {
  display: grid;
  gap: 12px;
}

.creator-center-activity-compact span {
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.creator-center-compliance-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}

.creator-center-compliance-step {
  min-height: 120px;
  padding: 18px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  position: relative;
}

.creator-center-compliance-step span {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 800;
}

.creator-center-compliance-step.is-current {
  border-color: rgba(255, 47, 47, 0.42);
  background: linear-gradient(180deg, rgba(79, 20, 20, 0.82), rgba(35, 13, 13, 0.94));
}

.creator-center-compliance-step.is-completed span,
.creator-center-compliance-step.is-current span {
  background: linear-gradient(180deg, #ff3d3d, #b61010);
}

.creator-center-compliance-step.is-locked {
  opacity: 0.46;
}

.creator-center-compliance-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.creator-center-upload-box {
  cursor: pointer;
  min-height: 144px;
  align-content: center;
}

.creator-center-upload-box strong,
.creator-center-upload-box small {
  pointer-events: none;
}

.creator-center-review-state.is-approved {
  border-color: rgba(255, 82, 82, 0.38);
  background: linear-gradient(180deg, rgba(79, 20, 20, 0.72), rgba(35, 13, 13, 0.92));
}

.creator-center-review-state.is-rejected {
  border-color: rgba(255, 134, 134, 0.32);
  background: rgba(255, 0, 0, 0.06);
}

.creator-center-compliance-hint.is-error {
  color: #ffb2b2;
}

.assessment-shell {
  padding: 128px 0 72px;
}

.assessment-shell-compact {
  padding-top: 108px;
}

.assessment-step p,
.report-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 13px;
}

.assessment-hero-meta strong,
.report-card strong {
  font-size: 24px;
}

.assessment-workspace {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 24px;
  align-items: start;
}

.assessment-sidebar {
  position: sticky;
  top: 96px;
  padding: 24px;
}

.assessment-sidebar-head h2,
.assessment-stage-head h2,
.report-summary-block h3 {
  margin: 0 0 10px;
  letter-spacing: -0.05em;
}

.assessment-sidebar-head p,
.assessment-stage-head p,
.assessment-lock-tip,
.report-summary-block p,
.assessment-field span,
.assessment-check span {
  color: var(--text-muted);
}

.assessment-sidebar-head {
  margin-bottom: 4px;
}

.assessment-step-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.assessment-step {
  width: 100%;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  text-align: left;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease), box-shadow 180ms var(--ease), opacity 180ms var(--ease);
}

.assessment-step:disabled {
  cursor: not-allowed;
}

.assessment-step strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 16px;
}

.assessment-step-index {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.04);
  color: #f7d9d9;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.assessment-step.is-current {
  background: linear-gradient(180deg, rgba(79, 20, 20, 0.88), rgba(35, 13, 13, 0.94));
  border-color: rgba(255, 47, 47, 0.46);
  box-shadow: 0 20px 42px rgba(111, 14, 14, 0.18);
  transform: translateY(-1px);
}

.assessment-step.is-current .assessment-step-index {
  background: linear-gradient(180deg, #ff4141, #cf1515);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
}

.assessment-step.is-completed {
  border-color: rgba(255, 47, 47, 0.22);
}

.assessment-step.is-completed .assessment-step-index {
  background: rgba(255, 47, 47, 0.16);
  color: #fff3f3;
}

.assessment-step.is-viewable {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.assessment-step.is-viewable .assessment-step-index {
  background: rgba(255, 255, 255, 0.08);
  color: #fff2f2;
}

.assessment-step.is-locked {
  opacity: 0.56;
}

.assessment-lock-tip {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  line-height: 1.8;
  font-size: 14px;
}

.assessment-stage {
  min-width: 0;
}

.assessment-stage-card {
  padding: 30px;
}

.is-academy-stage {
  overflow: hidden;
}

.assessment-stage-head {
  margin-bottom: 24px;
}

.assessment-stage-head.is-persona-head {
  margin-bottom: 18px;
}

.assessment-stage-head.is-persona-head h2 {
  margin-bottom: 0;
}

.assessment-form,
.report-summary {
  display: grid;
  gap: 20px;
}


.is-questionnaire-stage {
  overflow: hidden;
}

.questionnaire-shell,
.questionnaire-stage-panel {
  display: grid;
  gap: 22px;
}

.questionnaire-shell {
  position: relative;
}

.questionnaire-shell.has-group-gate,
.live-submit-shell.has-reward-card-gate {
  min-height: 820px;
}

.questionnaire-progress-meta h2,
.report-dimension-item strong {
  margin: 0;
  letter-spacing: -0.05em;
}

.questionnaire-progress-summary,
.report-dimension-item small {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.8;
}

.questionnaire-question-list,
.report-dimension-list {
  display: grid;
  gap: 12px;
}

.questionnaire-progress-overview {
  display: grid;
  gap: 18px;
  padding: 8px 2px 0;
}

.questionnaire-progress-meta {
  display: grid;
  gap: 8px;
}

.questionnaire-step-pill {
  width: fit-content;
  margin-bottom: 12px;
}

.questionnaire-progress-meta h2 {
  font-size: 28px;
}

.questionnaire-progress-track {
  display: grid;
  gap: 10px;
}

.questionnaire-progress-bar {
  position: relative;
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.questionnaire-progress-bar.is-overview {
  height: 6px;
}

.questionnaire-progress-fill {
  position: absolute;
  inset: 0 auto 0 0;
  background: linear-gradient(90deg, #7a0000, #ff0000 42%, #ff5a5a);
  border-radius: inherit;
}

.questionnaire-progress-summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
}

.questionnaire-dimension-strip {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.questionnaire-dimension-chip {
  position: relative;
  padding: 0 0 12px;
  border: 0;
  background: transparent;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.questionnaire-dimension-chip::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  border-radius: 999px;
  background: transparent;
}

.questionnaire-dimension-chip:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.questionnaire-dimension-chip.is-current,
.questionnaire-dimension-chip.is-completed,
.questionnaire-dimension-chip:not(:disabled):hover {
  color: #ffffff;
}

.questionnaire-dimension-chip.is-current::after,
.questionnaire-dimension-chip.is-completed::after,
.questionnaire-dimension-chip:not(:disabled):hover::after {
  background: #ff0000;
}

.questionnaire-form {
  display: grid;
  gap: 14px;
}

.questionnaire-dimension-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 6px;
}

.questionnaire-dimension-head > div {
  display: grid;
  justify-items: start;
  gap: 8px;
}

.questionnaire-dimension-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 0, 0, 0.14);
  border: 1px solid rgba(255, 0, 0, 0.18);
  color: #ffd6d6;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.questionnaire-dimension-note {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
}

.questionnaire-question-card {
  padding: 24px 24px 22px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.questionnaire-question-card.is-error {
  border-color: rgba(255, 0, 0, 0.86);
  background: rgba(255, 0, 0, 0.1);
  box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.08), 0 18px 40px rgba(107, 0, 0, 0.16);
}

.questionnaire-question-card.is-shaking {
  animation: questionnaireErrorShake 460ms cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

.questionnaire-question-head {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.questionnaire-question-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 0, 0, 0.12);
  border: 1px solid rgba(255, 0, 0, 0.28);
  color: #ff6b6b;
  font-size: 12px;
  font-weight: 700;
}

.questionnaire-question-title {
  margin: 0;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.65;
  color: #ffffff;
}

.questionnaire-option-list {
  display: grid;
  gap: 10px;
  border-radius: 14px;
  transition: box-shadow 220ms var(--ease), border-color 220ms var(--ease), background 220ms var(--ease);
}

.questionnaire-option-list.is-breathing {
  animation: questionnaireOptionBreath 1.6s ease-in-out infinite;
}

.questionnaire-option {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 15px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: border-color 180ms var(--ease), background 180ms var(--ease), transform 180ms var(--ease);
}

.questionnaire-option:hover,
.questionnaire-option.is-selected {
  border-color: rgba(255, 0, 0, 0.48);
  background: rgba(255, 0, 0, 0.1);
}

.questionnaire-option input {
  margin: 0;
  accent-color: #ff0000;
}

.questionnaire-option-main {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.questionnaire-option-main strong {
  flex: 0 0 auto;
  font-size: 14px;
  color: #ff4d4d;
}

.questionnaire-option-main em {
  font-style: normal;
  color: #f3f3f3;
  line-height: 1.7;
}

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

.questionnaire-gate-modal {
  position: absolute;
  inset: 0;
  z-index: 12;
  display: grid;
  place-items: center;
  padding: 28px;
}

.questionnaire-gate-mask {
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background: rgba(7, 7, 9, 0.76);
  backdrop-filter: blur(18px);
}

.questionnaire-gate-card {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 22px;
  padding: 24px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(18, 18, 22, 0.94), rgba(10, 10, 12, 0.96));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
  align-items: stretch;
}

.questionnaire-gate-card.is-live-reward-card-gate {
  grid-template-columns: 300px minmax(0, 1fr);
}

.questionnaire-gate-qr-column {
  display: grid;
  align-content: start;
  gap: 14px;
}

.questionnaire-gate-qr-column.is-text-card-column {
  align-content: stretch;
}

.questionnaire-gate-qr-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 0, 0, 0.14);
  border: 1px solid rgba(255, 0, 0, 0.22);
  color: #ffd0d0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.questionnaire-gate-qr-box {
  display: grid;
  place-items: center;
  min-height: 252px;
  padding: 16px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.questionnaire-gate-qr-box.is-text-card-box {
  align-content: center;
  justify-items: start;
  gap: 14px;
  min-height: 100%;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 0, 0, 0.14), rgba(255, 255, 255, 0.03));
}

.questionnaire-gate-card-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffd6d6;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.questionnaire-gate-qr-box.is-text-card-box strong {
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.05em;
}

.questionnaire-gate-qr-box.is-text-card-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.questionnaire-gate-qr-image {
  width: 100%;
  max-width: 212px;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 22px;
  background: #ffffff;
  padding: 10px;
}

.questionnaire-gate-content {
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr) auto;
  align-items: start;
  gap: 12px;
  min-height: 100%;
  padding: 6px 0;
}

.questionnaire-gate-content h3 {
  margin: 0;
  font-size: 32px;
  line-height: 1.18;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

.questionnaire-gate-content p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.85;
  align-self: stretch;
}

.questionnaire-gate-divider {
  width: 72px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff0000, rgba(255, 0, 0, 0.16));
}

.questionnaire-gate-actions {
  margin-top: 0;
  justify-content: center;
  align-self: end;
}

.questionnaire-gate-actions .primary-button {
  min-width: 220px;
}
.report-dimension-list {
  margin-top: 16px;
}

.report-dimension-item {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.report-dimension-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 13px;
}

.academy-shell,
.academy-shell-compact {
  display: grid;
  gap: 22px;
}

.academy-progress-overview {
  display: grid;
  gap: 18px;
  padding: 8px 2px 0;
}

.academy-progress-meta {
  display: grid;
  gap: 8px;
}

.academy-progress-meta h2,
.academy-video-meta h3,
.academy-homework-head h3,
.academy-certificate-card h3 {
  display: block;
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.academy-progress-track {
  display: grid;
  gap: 10px;
}

.academy-progress-summary,
.academy-certificate-code,
.academy-option span,
.academy-upload-box small {
  color: var(--text-muted);
}

.academy-progress-summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
}

.academy-course-strip {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.academy-course-chip {
  position: relative;
  padding: 0 0 12px;
  border: 0;
  background: transparent;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.academy-course-chip::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  border-radius: 999px;
  background: transparent;
}

.academy-course-chip:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.academy-course-chip.is-current,
.academy-course-chip.is-completed,
.academy-course-chip:not(:disabled):hover {
  color: #ffffff;
}

.academy-course-chip.is-current::after,
.academy-course-chip.is-completed::after,
.academy-course-chip:not(:disabled):hover::after {
  background: #ff0000;
}

.academy-panel,
.academy-video-card,
.academy-homework-card,
.academy-question-list {
  display: grid;
  gap: 18px;
}

.academy-video-card,
.academy-homework-card,
.academy-script-homework-card,
.academy-certificate-card {
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(43, 17, 17, 0.82), rgba(23, 11, 11, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.academy-video-head {
  display: block;
}

.academy-video-head h3 {
  margin: 0;
}

.academy-video-frame.is-empty {
  display: grid;
  place-items: center;
}

.academy-video-empty-state {
  display: grid;
  gap: 10px;
  max-width: 440px;
  padding: 32px;
  text-align: center;
}

.academy-video-empty-state strong {
  font-size: 20px;
}

.is-academy-stage .assessment-stage-head {
  display: none;
}

.academy-video-frame {
  position: relative;
  min-height: 320px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(20, 12, 12, 0.98), rgba(40, 14, 14, 0.9));
}

.academy-video-frame:hover {
  filter: brightness(1.08);
}

.academy-video {
  width: 100%;
  min-height: 320px;
  background: #090606;
}

.academy-video::-webkit-media-controls-fullscreen-button,
.academy-video::-webkit-media-controls-volume-slider,
.academy-video::-webkit-media-controls-mute-button {
  filter: brightness(1.15);
  transition: filter 180ms var(--ease), opacity 180ms var(--ease);
}

.academy-video:hover::-webkit-media-controls-fullscreen-button,
.academy-video:hover::-webkit-media-controls-volume-slider,
.academy-video:hover::-webkit-media-controls-mute-button {
  filter: brightness(1.45);
}

.academy-video-fullscreen {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(10, 7, 7, 0.7);
  color: #fff;
  transition: transform 180ms var(--ease), filter 180ms var(--ease), background 180ms var(--ease);
}

.academy-video-fullscreen:hover {
  filter: brightness(1.15);
  background: rgba(40, 10, 10, 0.84);
  transform: translateY(-1px);
}

.academy-homework-head p,
.academy-video-meta p,
.academy-certificate-card p,
.academy-spec-item {
  color: #e4cccc;
  line-height: 1.8;
}

.academy-video-meta--compact {
  display: flex;
  justify-content: flex-start;
}

.academy-video-actions,
.academy-homework-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.academy-video-actions--single {
  width: 100%;
}

.academy-video-actions--single .ghost-button {
  min-width: 220px;
}

.academy-video-actions .ghost-button,
.academy-homework-head .primary-button,
.academy-homework-head .ghost-button,
.academy-upload-shell .primary-button,
.assessment-actions .primary-button,
.assessment-actions .ghost-button {
  flex: 0 0 auto;
}

.academy-homework-card.is-locked {
  opacity: 0.7;
}

.academy-disabled-button {
  background: rgba(255, 255, 255, 0.05);
  color: #d4baba;
  box-shadow: none;
}

.academy-homework-body {
  display: none;
}

.academy-homework-body.is-open {
  display: grid;
  gap: 18px;
}

.academy-question-card {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.academy-question-card.is-error {
  border-color: rgba(255, 47, 47, 0.8);
  background: rgba(255, 47, 47, 0.08);
  box-shadow: 0 0 0 4px rgba(255, 47, 47, 0.08);
}

.academy-question-title {
  margin-bottom: 14px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
}

.academy-option-list {
  display: grid;
  gap: 12px;
}

.academy-option {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.academy-option input {
  margin-top: 4px;
  accent-color: #ff0000;
}

.academy-script-homework-card,
.academy-script-requirements,
.academy-upload-shell,
.academy-upload-specs {
  display: grid;
  gap: 14px;
}

.academy-script-homework-head h4 {
  margin: 6px 0 0;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.academy-script-requirements {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.academy-script-tip-card {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.academy-script-tip-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}

.academy-script-tip-card p {
  margin: 0;
  color: #e4cccc;
  line-height: 1.7;
}

.academy-script-textarea-wrap {
  display: grid;
  gap: 10px;
}

.academy-script-textarea-wrap span {
  font-size: 14px;
  font-weight: 700;
  color: #fff1f1;
}

.academy-script-textarea {
  min-height: 220px;
  resize: vertical;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  padding: 16px 18px;
  line-height: 1.8;
  font: inherit;
}

.academy-script-alert {
  margin: 0;
}

.academy-spec-item {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.academy-upload-box {
  position: relative;
  display: grid;
  gap: 8px;
  place-items: center;
  min-height: 180px;
  padding: 24px;
  border-radius: 24px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}

.academy-upload-box.has-file {
  border-style: solid;
  border-color: rgba(255, 47, 47, 0.36);
  background: rgba(255, 47, 47, 0.08);
}

.academy-upload-box input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.is-content-stage .assessment-stage-head {
  margin-bottom: 24px;
}

.content-assessment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 22px;
}

.content-assessment-layout.is-single-column {
  grid-template-columns: 1fr;
}

.content-upload-card,
.content-sync-card {
  display: grid;
  gap: 18px;
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(43, 17, 17, 0.82), rgba(23, 11, 11, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.content-upload-card.is-full-width {
  width: 100%;
}

.content-upload-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.content-upload-head--stacked {
  display: grid;
}

.content-upload-head h3,
.content-sync-card h3 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.content-upload-head p,
.content-sync-card p,
.content-sync-item span {
  color: #e4cccc;
  line-height: 1.8;
}

.content-story-panel,
.content-requirement-panel {
  display: grid;
  gap: 16px;
}

.content-story-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.content-story-head h3 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.content-story-box {
  padding: 22px 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  max-height: 320px;
  overflow-y: auto;
  overflow-x: hidden;
}

.content-story-box p {
  margin: 0;
  color: #fff1f1;
  line-height: 1.95;
  white-space: pre-wrap;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.content-tips-entry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.content-tips-entry span {
  color: #e4cccc;
  line-height: 1.8;
}

.content-tips-button {
  flex-shrink: 0;
  background: linear-gradient(135deg, #ff2f2f, #ff0000);
  border-color: rgba(255, 78, 78, 0.7);
  color: #fff6f6;
  box-shadow: 0 14px 32px rgba(255, 0, 0, 0.22);
}

.content-tips-button:hover {
  background: linear-gradient(135deg, #ff4a4a, #ff1414);
  border-color: rgba(255, 120, 120, 0.9);
}

.content-requirement-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.content-requirement-card {
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  gap: 12px;
  min-height: 176px;
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.content-requirement-card span {
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.content-requirement-card strong {
  display: flex;
  align-items: flex-start;
  min-height: 58px;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -0.03em;
  color: #fff;
}

.content-requirement-card p {
  margin: 0;
  color: #e4cccc;
  line-height: 1.72;
  font-size: 13px;
  word-break: break-word;
}

.content-upload-box {
  min-height: 220px;
}

.content-upload-feedback {
  display: none;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 47, 47, 0.08);
  border: 1px solid rgba(255, 47, 47, 0.22);
  color: #ffd5d5;
  line-height: 1.75;
}

.content-upload-feedback.is-visible {
  display: block;
}

.content-assessment-actions {
  justify-content: flex-end;
}

.content-score-status {
  display: grid;
  gap: 6px;
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.content-score-status span,
.content-score-status small {
  color: #e4cccc;
}

.content-score-status strong {
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.content-score-status.is-scored strong {
  color: #ffffff;
}

.content-thumbnail-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.content-thumbnail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.content-thumbnail-head strong {
  font-size: 18px;
}

.content-thumbnail-frame {
  overflow: hidden;
  border-radius: 20px;
  min-height: 240px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.content-thumbnail-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-tips-modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  padding: 24px;
}

.content-tips-modal__mask {
  position: absolute;
  inset: 0;
  background: rgba(8, 5, 5, 0.78);
}

.content-tips-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(780px, calc(100vw - 32px));
  max-height: min(82vh, 920px);
  overflow: auto;
  padding: 28px;
  border-radius: 30px;
  display: grid;
  gap: 20px;
}

.content-tips-modal__close {
  position: absolute;
  right: 20px;
  top: 18px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.content-tips-modal__head {
  display: grid;
  gap: 10px;
  padding-right: 36px;
}

.content-tips-modal__head h3 {
  margin: 0;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.content-tips-modal__head p {
  margin: 0;
  color: #e4cccc;
  line-height: 1.8;
}

.content-tips-modal__list {
  margin: 0;
  padding-left: 24px;
  display: grid;
  gap: 14px;
  color: #fff1f1;
  line-height: 1.9;
}

.content-tips-modal__list li {
  padding-left: 4px;
}

.content-tips-modal__footer {
  display: flex;
  justify-content: flex-end;
}

.content-thumbnail-empty {
  min-height: 240px;
  display: grid;
  place-items: center;
  color: #e4cccc;
}

.content-sync-list {
  display: grid;
  gap: 12px;
}

.content-sync-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.content-sync-item strong {
  color: #ffffff;
  text-align: right;
}

.content-sync-card .chip {
  justify-self: start;
}

.content-stage-head p {
  max-width: 820px;
}

.environment-assessment-layout {
  display: grid;
  gap: 18px;
}

.environment-card {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(43, 17, 17, 0.82), rgba(23, 11, 11, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.environment-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.environment-photo-box {
  position: relative;
  min-height: 220px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  cursor: pointer;
}

.environment-photo-box input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.environment-photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.environment-photo-empty,
.environment-drawing-empty {
  min-height: 120px;
  display: grid;
  place-content: center;
  gap: 8px;
  text-align: center;
  color: #f1d9d9;
  padding: 16px;
}

.environment-photo-meta {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 1;
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(9, 5, 5, 0.72);
  backdrop-filter: blur(12px);
}

.environment-photo-meta strong,
.environment-drawing-item strong,
.environment-drawing-summary strong {
  color: #fff6f6;
}

.environment-photo-meta small,
.environment-drawing-item span,
.environment-drawing-summary small {
  color: #e6c9c9;
}

.environment-area-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.environment-drawing-card {
  gap: 14px;
}

.environment-drawing-head {
  gap: 6px;
}

.environment-drawing-toolbar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ead2d2;
}

.environment-drawing-toolbar .chip {
  flex: 0 0 auto;
  white-space: nowrap;
}

.environment-drawing-toolbar-text {
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 13px;
}

.environment-drawing-canvas-wrap {
  position: relative;
  padding: 56px 16px 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.environment-drawing-canvas-actions {
  position: absolute;
  top: 14px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.environment-canvas-mini-button {
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
}

.environment-drawing-canvas {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  cursor: crosshair;
}

.environment-drawing-list {
  display: grid;
  gap: 10px;
}

.environment-drawing-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.environment-actions {
  justify-content: flex-end;
  margin-top: 2px;
}

.academy-certificate-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
}

.academy-certificate-mask {
  position: absolute;
  inset: 0;
  background: rgba(8, 5, 5, 0.7);
}

.academy-certificate-card {
  position: relative;
  z-index: 1;
  width: min(560px, calc(100vw - 32px));
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}

.academy-certificate-code {
  margin: 14px 0 24px;
  font-size: 16px;
  letter-spacing: 0.08em;
}

.academy-certificate-card-template {
  width: min(1100px, calc(100vw - 48px));
  padding: 18px;
  text-align: left;
  background: linear-gradient(180deg, rgba(34, 16, 16, 0.96), rgba(20, 10, 10, 0.98));
}

.academy-certificate-artboard {
  position: relative;
  width: 100%;
  aspect-ratio: 1080 / 744;
  border-radius: 24px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.academy-certificate-template-code,
.academy-certificate-template-name,
.academy-certificate-template-date {
  position: absolute;
  line-height: 1;
}

.academy-certificate-template-code {
  left: 82.3%;
  top: 5.6%;
  font-size: clamp(15px, 1.28vw, 24px);
  font-weight: 600;
  color: #b21f1f;
  letter-spacing: 0.03em;
}

.academy-certificate-template-name {
  left: 50%;
  top: 53.2%;
  transform: translate(-50%, -50%);
  font-size: clamp(28px, 2.4vw, 46px);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #5a4a40;
}

.academy-certificate-template-date {
  left: 12.3%;
  bottom: 9.1%;
  font-size: clamp(15px, 1.38vw, 26px);
  font-weight: 500;
  color: #b44733;
}

.academy-certificate-actions {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 18px;
  padding: 18px 10px 4px;
}

.academy-certificate-button-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.academy-certificate-button-row--compact .ghost-button,
.academy-certificate-button-row--compact .primary-button {
  width: 148px;
  min-width: 148px;
  justify-content: center;
}

.live-assessment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: 18px;
  margin-bottom: 20px;
  align-items: stretch;
}

.live-recorder-panel,
.live-sku-panel,
.live-result-card {
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(43, 17, 17, 0.82), rgba(23, 11, 11, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.live-recorder-panel.is-iphone-frame {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
}

.live-phone-shell {
  position: relative;
  width: min(100%, 420px);
  height: 700px;
  margin: 0 auto;
  padding: 14px 12px 16px;
  border-radius: 42px;
  background: linear-gradient(180deg, #1a1212, #090707);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 60px rgba(0, 0, 0, 0.28);
}

.live-phone-notch {
  width: 118px;
  height: 28px;
  margin: 0 auto 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.live-recorder-screen {
  position: relative;
  min-height: 628px;
  height: 628px;
  overflow: hidden;
  border-radius: 32px;
  background: radial-gradient(circle at top, rgba(255, 79, 79, 0.15), transparent 26%), #0d0909;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.live-recorder-screen.is-iphone {
  min-height: 628px;
  height: 628px;
}

.live-preview-video {
  width: 100%;
  height: 628px;
  object-fit: cover;
  background: #050404;
}

.live-preview-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 12px;
  padding: 28px;
  text-align: center;
}

.live-preview-placeholder span,
.live-recorder-meta span,
.live-result-card span {
  color: var(--text-muted);
  font-size: 13px;
}

.live-preview-placeholder strong,
.live-recorder-meta strong,
.live-result-card strong {
  font-size: 18px;
  line-height: 1.4;
}

.live-preview-placeholder p,
.live-recorder-meta p,
.live-result-card p {
  margin: 0;
  color: #e4cccc;
  line-height: 1.8;
}


.live-overlay-top {
  position: absolute;
  top: 14px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  z-index: 3;
}

.live-overlay-top.is-wechat-style {
  align-items: flex-start;
}

.live-overlay-top.is-compact-wechat-top {
  right: 12px;
}

.live-host-card {
  min-width: 0;
  max-width: 74%;
  padding: 8px 10px 8px 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
}

.live-host-card.is-wechat-live {
  max-width: 76%;
  padding-right: 8px;
}

.live-host-card.is-compact-wechat-live {
  max-width: 210px;
  padding: 6px 8px 6px 6px;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  gap: 6px;
}

.live-host-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff4f4f, #ff8a73);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.live-host-card.is-compact-wechat-live .live-host-card__avatar {
  width: 28px;
  height: 28px;
  font-size: 12px;
}

.live-host-card__meta {
  display: grid;
  min-width: 0;
}

.live-host-card__meta strong {
  color: #fff;
  font-size: 13px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.live-host-card.is-compact-wechat-live .live-host-card__meta strong {
  font-size: 11px;
}

.live-host-card__meta span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  line-height: 1.3;
}

.live-host-card.is-compact-wechat-live .live-host-card__meta span {
  font-size: 9px;
}

.live-host-card button,
.live-badge,
.live-countdown {
  min-height: 34px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.live-host-card button {
  background: #15c062;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.live-host-card.is-compact-wechat-live button {
  min-height: 24px;
  padding: 0 10px;
  font-size: 10px;
}

.live-top-pills {
  display: contents;
}

.live-top-pills--notch-sides {
  position: absolute;
  top: 2px;
  left: 50%;
  width: 160px;
  transform: translateX(-50%);
  pointer-events: none;
}

.live-top-pills--notch-sides .live-badge,
.live-top-pills--notch-sides .live-countdown {
  position: absolute;
  top: 0;
  background: rgba(7, 7, 7, 0.7);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.live-top-pills--notch-sides .live-badge {
  left: 0;
}

.live-top-pills--notch-sides .live-countdown {
  right: 0;
}

.live-badge,
.live-countdown {
  background: rgba(7, 7, 7, 0.6);
}

.live-badge.is-live {
  color: #fff;
  min-width: 54px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.live-countdown {
  color: #ffd2d2;
  font-weight: 800;
  min-width: 72px;
  font-size: 11px;
}

.live-overlay-scene {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}


.live-overlay-comments {
  position: absolute;
  left: 14px;
  bottom: 58px;
  width: min(72%, 286px);
  display: grid;
  gap: 6px;
  align-content: end;
}

.live-overlay-comments.is-hidden {
  opacity: 0;
}

.live-overlay-hearts {
  position: absolute;
  right: 8px;
  bottom: 92px;
  width: 104px;
  height: 192px;
  pointer-events: none;
}

.live-heart {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle at 30% 30%, #ffd7df, #ff5c84 72%);
  transform: rotate(-45deg) scale(0.8);
  opacity: 0;
  filter: drop-shadow(0 6px 16px rgba(255, 85, 127, 0.32));
}

.live-heart::before,
.live-heart::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: inherit;
}

.live-heart::before {
  top: -10px;
  left: 0;
}

.live-heart::after {
  left: 10px;
  top: 0;
}

.live-heart--1 { right: 0; animation-delay: 0s; }
.live-heart--2 { right: 16px; animation-delay: 0.22s; }
.live-heart--3 { right: 34px; animation-delay: 0.48s; }
.live-heart--4 { right: 8px; animation-delay: 0.74s; }
.live-heart--5 { right: 28px; animation-delay: 1.02s; }
.live-heart--6 { right: 44px; animation-delay: 1.28s; }

@keyframes live-heart-float {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(-45deg) scale(0.7);
  }
  20% {
    opacity: 0.92;
  }
  100% {
    opacity: 0;
    transform: translate3d(-20px, -118px, 0) rotate(-45deg) scale(1.05);
  }
}

@keyframes live-comment-fade {
  0% {
    opacity: 0;
    transform: translate3d(0, 14px, 0) scale(0.96);
  }
  55% {
    opacity: 1;
    transform: translate3d(0, -1px, 0) scale(1.01);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.live-overlay-hearts.is-burst-1 .live-heart--1,
.live-overlay-hearts.is-burst-2 .live-heart--1,
.live-overlay-hearts.is-burst-2 .live-heart--2,
.live-overlay-hearts.is-burst-3 .live-heart--1,
.live-overlay-hearts.is-burst-3 .live-heart--2,
.live-overlay-hearts.is-burst-3 .live-heart--3,
.live-overlay-hearts.is-burst-3 .live-heart--4,
.live-overlay-hearts.is-burst-4 .live-heart {
  animation: live-heart-float 2.4s ease-out infinite;
}

.live-comment-bubble {
  max-width: 100%;
  padding: 9px 11px 10px;
  border-radius: 16px;
  background: rgba(8, 8, 8, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  display: grid;
  gap: 4px;
  transform-origin: left bottom;
  will-change: transform, opacity;
}

.live-comment-bubble.is-wechat-comment {
  background: rgba(84, 70, 90, 0.5);
  border-color: rgba(255, 255, 255, 0.06);
}

.live-comment-bubble.is-comment-enter {
  animation: live-comment-fade 0.58s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.live-comment-bubble strong {
  color: #ffb0b0;
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.live-comment-bubble span {
  color: #fff7f7;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.live-recorder-meta,
.live-result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.live-recorder-meta.is-single-line {
  grid-template-columns: 1fr;
  margin-top: 12px;
}

.live-recorder-meta.is-single-line span,
.live-recorder-meta.is-single-line strong,
.live-recorder-meta.is-single-line p {
  font-size: 13px;
}

.live-recorder-meta.is-single-line strong {
  word-break: break-all;
}

.live-bottom-bar {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.live-bottom-bar.is-wechat-bottom {
  bottom: 10px;
}

.live-bottom-bar__input {
  min-height: 36px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  backdrop-filter: blur(12px);
}

.live-bottom-bar__actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.live-bottom-bar__actions span {
  min-width: 32px;
  min-height: 32px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
}

.live-bottom-bar__actions.is-wechat-icon-actions {
  gap: 7px;
}

.live-bottom-icon {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.live-bottom-icon::before,
.live-bottom-icon::after {
  content: "";
  position: absolute;
}

.live-bottom-icon--bag::before {
  left: 9px;
  top: 11px;
  width: 13px;
  height: 10px;
  border: 1.8px solid #fff;
  border-radius: 4px 4px 5px 5px;
}

.live-bottom-icon--bag::after {
  left: 12px;
  top: 8px;
  width: 8px;
  height: 5px;
  border: 1.8px solid #fff;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
}

.live-bottom-icon--share::before {
  left: 15px;
  top: 8px;
  width: 1.8px;
  height: 12px;
  background: #fff;
  border-radius: 999px;
}

.live-bottom-icon--share::after {
  left: 11px;
  top: 8px;
  width: 8px;
  height: 8px;
  border-top: 1.8px solid #fff;
  border-right: 1.8px solid #fff;
  transform: rotate(-45deg);
}

.live-bottom-icon--like::before {
  left: 10px;
  top: 10px;
  width: 12px;
  height: 12px;
  border: 1.8px solid #fff;
  border-top-color: transparent;
  border-left-color: transparent;
  transform: rotate(45deg);
  border-radius: 2px 2px 4px 2px;
  background: transparent;
}

.live-bottom-icon--like::after {
  left: 10px;
  top: 7px;
  width: 12px;
  height: 12px;
  background: radial-gradient(circle at 30% 38%, transparent 0 4px, #fff 4.2px 5.4px, transparent 5.6px), radial-gradient(circle at 70% 38%, transparent 0 4px, #fff 4.2px 5.4px, transparent 5.6px);
}

.live-result-grid.is-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.live-result-card.is-compact strong {
  font-size: 16px;
}

.live-result-card.is-compact p,
.live-result-card.is-compact span {
  font-size: 13px;
}

.live-sku-panel {
  display: grid;
  align-content: start;
  align-self: stretch;
  gap: 14px;
  min-height: 700px;
}

.live-sku-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: nowrap;
}

.live-sku-panel h3 {
  margin: 8px 0 2px;
  font-size: 22px;
  letter-spacing: -0.04em;
  white-space: nowrap;
  line-height: 1.2;
}

.live-ppt-button {
  flex-shrink: 0;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  background: linear-gradient(135deg, #ff3b3b, #ff0000);
  border-color: rgba(255, 122, 122, 0.45);
  box-shadow: 0 10px 18px rgba(255, 0, 0, 0.12);
}

.live-sku-section {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.live-sku-section:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}

.live-sku-label {
  display: inline-flex;
  margin-bottom: 7px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffb5b5;
}

.live-sku-points {
  margin: 0;
  padding-left: 17px;
  color: #efe1e1;
  display: grid;
  gap: 6px;
  line-height: 1.65;
  font-size: 13px;
}

.live-sku-copy {
  margin: 0;
  color: #f5e4e4;
  line-height: 1.7;
  font-size: 13px;
}

.live-action-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.live-action-flow.is-pill-flow {
  margin-top: 8px;
}

.live-action-button {
  min-height: 72px;
  padding: 14px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  color: #fff7f7;
  border-radius: 999px;
  border: 1px solid rgba(255, 92, 92, 0.34);
  background: linear-gradient(135deg, rgba(120, 18, 18, 0.95), rgba(255, 0, 0, 0.88));
  box-shadow: 0 16px 38px rgba(255, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.live-action-button strong {
  display: block;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.live-action-button.is-active {
  border-color: rgba(255, 120, 120, 0.5);
  background: linear-gradient(135deg, #ff3b3b, #ff0000);
}

.live-action-button.is-done {
  border-color: rgba(255, 130, 130, 0.52);
  background: linear-gradient(135deg, #ff5a5a, #ff1f1f);
  box-shadow: 0 18px 40px rgba(255, 25, 25, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.live-action-button.is-locked {
  opacity: 0.45;
  box-shadow: none;
}

.live-action-button:disabled {
  cursor: not-allowed;
}

.live-action-button.is-loading {
  opacity: 0.72;
}

.live-action-index {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.16);
  font-weight: 800;
  flex-shrink: 0;
}

.live-inline-alert {
  margin-top: 18px;
}

.live-result-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 12px;
}

.assessment-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.assessment-field-grid.single {
  grid-template-columns: 1fr;
}

.assessment-field-grid.persona-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.assessment-field-unified {
  align-content: start;
}

.assessment-field-unified input,
.assessment-field-unified select,
.assessment-field-unified textarea {
  height: 56px;
  min-height: 56px;
}

.assessment-field-unified textarea {
  resize: none;
  overflow: hidden;
  padding-top: 16px;
  padding-bottom: 16px;
}

.assessment-field-grid.persona-grid .assessment-field-long {
  grid-column: 1 / -1;
}

.assessment-field-grid.persona-grid .assessment-field-long:not(.assessment-field-story) textarea {
  height: 56px;
  min-height: 56px;
}

.assessment-field-grid.persona-grid .assessment-field-story {
  grid-column: 1 / -1;
}

.assessment-field-grid.persona-grid .assessment-field-story textarea {
  height: auto;
  min-height: 220px;
  resize: vertical;
  overflow: auto;
}

.assessment-field {
  display: grid;
  gap: 8px;
}

.assessment-field-tip {
  color: #cfa8a8;
  font-size: 12px;
  line-height: 1.6;
}

.assessment-field-inline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: stretch;
}

.assessment-field-link {
  min-width: 108px;
  min-height: 56px;
  justify-content: center;
  padding-inline: 18px;
  white-space: nowrap;
  background: #FF0000;
  color: #fff;
  border-color: #FF0000;
  box-shadow: 0 16px 32px rgba(255, 0, 0, 0.22);
}

.assessment-field-link:hover {
  background: #ff2a2a;
  border-color: #ff2a2a;
  color: #fff;
  box-shadow: 0 20px 36px rgba(255, 0, 0, 0.28);
}

.assessment-field span,
.assessment-check span {
  font-size: 14px;
  font-weight: 700;
}

.assessment-field input,
.assessment-field select,
.assessment-field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  outline: none;
  resize: vertical;
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease);
}

.assessment-field input:focus,
.assessment-field select:focus,
.assessment-field textarea:focus {
  border-color: rgba(255, 47, 47, 0.66);
  box-shadow: 0 0 0 4px rgba(255, 47, 47, 0.12);
}

.assessment-check {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.assessment-field.is-error input,
.assessment-field.is-error select,
.assessment-field.is-error textarea,
.assessment-check.is-error {
  border-color: rgba(255, 47, 47, 0.82);
  box-shadow: 0 0 0 4px rgba(255, 47, 47, 0.12);
  background: rgba(255, 47, 47, 0.08);
}

.assessment-check input {
  width: 18px;
  height: 18px;
}

.assessment-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.academy-homework-head .primary-button,
.academy-homework-head .ghost-button {
  align-self: flex-start;
}

.assessment-actions.is-centered {
  justify-content: center;
  margin-top: 10px;
}

.assessment-form-alert {
  display: none;
  margin: 0;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 47, 47, 0.1);
  border: 1px solid rgba(255, 47, 47, 0.24);
  color: #ffd2d2;
  line-height: 1.7;
}

.assessment-form-alert.is-visible {
  display: block;
}

.assessment-form-alert.is-pulsing {
  animation: questionnaireAlertPulse 1.2s ease-in-out infinite;
}

@keyframes questionnaireErrorShake {
  0%,
  100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(5px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(3px); }
}

@keyframes questionnaireAlertPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.12);
    border-color: rgba(255, 47, 47, 0.24);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(255, 0, 0, 0.05);
    border-color: rgba(255, 47, 47, 0.5);
  }
}

@keyframes questionnaireOptionBreath {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.08), inset 0 0 0 1px rgba(255, 0, 0, 0.2);
    background: rgba(255, 0, 0, 0.02);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(255, 0, 0, 0.04), inset 0 0 0 1px rgba(255, 0, 0, 0.44);
    background: rgba(255, 0, 0, 0.05);
  }
}

.assessment-stage-card.is-report {
  display: grid;
  gap: 24px;
}

.report-shell,
.report-score-breakdown,
.report-score-list,
.report-intent-panel,
.report-hero-panel,
.creator-center-head,
.report-document-panel,
.report-document-head,
.report-document-actions,
.report-section,
.report-section-head,
.report-radar-layout,
.report-radar-summary,
.report-incubation-panel,
.report-mini-list {
  display: grid;
  gap: 18px;
}

.report-document-panel {
  padding: 28px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(43, 17, 17, 0.82), rgba(23, 11, 11, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.report-document-head,
.report-hero-panel,
.report-intent-panel {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.report-document-head {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.report-document-head.is-report-stage-head {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
  align-items: end;
  gap: 28px;
}

.report-document-head.is-report-stage-head.is-actions-only-head {
  grid-template-columns: minmax(0, 1fr);
}

.report-document-head.is-report-stage-head.is-actions-only-head .report-document-actions.is-report-primary-actions {
  width: 100%;
}

.report-document-head__main {
  min-width: 0;
  display: grid;
  align-content: end;
}

.report-document-head h3,
.report-hero-panel h3,
.report-intent-panel h3,
.intent-card h3,
.report-section-head h4 {
  margin: 6px 0 10px;
  letter-spacing: -0.05em;
}

.report-document-head h3,
.report-hero-panel h3,
.report-intent-panel h3,
.intent-card h3 {
  font-size: 30px;
}

.report-document-actions {
  grid-auto-flow: column;
  align-items: center;
  gap: 12px;
}

.report-document-actions.is-report-primary-actions {
  grid-template-columns: 1fr;
  grid-auto-flow: row;
  justify-items: stretch;
  gap: 10px;
  padding: 16px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.report-download-button {
  width: 100%;
  min-height: 56px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #ff1f1f, #ff5a5a);
  box-shadow: 0 22px 42px rgba(255, 0, 0, 0.28);
}

.report-secondary-button {
  width: 100%;
  min-height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: #f7dddd;
  font-weight: 700;
}

.report-secondary-button:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}

.report-document-head p,
.report-grade-badge small,
.report-hero-panel p,
.report-intent-panel p,
.intent-card p,
.report-section-head p,
.report-radar-total,
.report-mini-list span,
.report-progress-item small {
  color: #e4cccc;
  line-height: 1.8;
}

.report-section {
  padding-top: 8px;
}

.report-section-head {
  grid-template-columns: auto 1fr;
  align-items: start;
}

.report-section-index {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 800;
  background: rgba(255, 47, 47, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.report-grade-badge,
.report-card,
.report-summary-block,
.report-radar-card,
.report-radar-summary {
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.report-grade-badge {
  min-width: 168px;
  padding: 22px 18px;
  text-align: center;
}

.report-grade-icon,
.creator-level-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 12px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  font-size: 30px;
  font-weight: 900;
  background: linear-gradient(180deg, #ff4444, #b91111);
  color: #fff;
  box-shadow: 0 18px 34px rgba(255, 0, 0, 0.24);
}

.creator-level-icon {
  width: 58px;
  height: 58px;
  margin: 0;
  font-size: 24px;
}

.report-grade-badge strong {
  display: block;
  margin-bottom: 4px;
  font-size: 28px;
}

.report-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.report-grid-base {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.report-grid-review,
.report-grid-academy {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.report-card,
.report-summary-block,
.report-radar-card,
.report-radar-summary,
.report-radar-panel {
  padding: 20px;
}

.report-card.emphasis,
.report-card-grade {
  border-color: rgba(255, 47, 47, 0.32);
  background: linear-gradient(180deg, rgba(79, 20, 20, 0.78), rgba(35, 13, 13, 0.92));
}

.report-card p,
.report-summary-block p {
  margin: 0;
  line-height: 1.8;
}

.report-section.is-single-card {
  padding-top: 0;
}

.report-radar-panel,
.report-base-card {
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.report-base-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 16px;
  align-items: stretch;
}

.report-base-card__main {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.report-base-card__meta--tags {
  grid-column: 1 / -1;
}

.report-base-detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.report-base-detail-item {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  display: grid;
  gap: 8px;
}

.report-base-detail-item strong {
  color: #fff2f2;
  font-size: 13px;
  line-height: 1.6;
}

.report-base-detail-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.75;
  white-space: pre-wrap;
  word-break: break-word;
}

.report-base-detail-item.is-empty {
  grid-column: 1 / -1;
  border-style: dashed;
}

.report-base-card__meta {
  padding: 14px 14px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: grid;
  gap: 6px;
  min-width: 0;
}

.report-base-card__meta span,
.report-grade-hero__label {
  color: #e4cccc;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.report-base-card__meta strong {
  font-size: 15px;
  line-height: 1.45;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-all;
}

.report-grade-hero {
  border-radius: 24px;
  padding: 18px 14px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  text-align: center;
  border: 1px solid rgba(255, 47, 47, 0.32);
  background: linear-gradient(180deg, rgba(79, 20, 20, 0.78), rgba(35, 13, 13, 0.92));
  min-width: 0;
}

.report-grade-hero strong {
  font-size: 30px;
  letter-spacing: -0.04em;
}

.report-grade-hero small {
  color: #f0dcdc;
  font-size: 12px;
}

.report-radar-layout {
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  align-items: stretch;
}

.report-radar-layout.is-single-card-layout {
  gap: 24px;
}

.report-radar-card {
  display: grid;
  place-items: center;
  gap: 14px;
  padding: 10px 0;
}

.report-radar-svg {
  width: min(100%, 468px);
  height: auto;
  overflow: visible;
}

.report-radar-halo {
  fill: rgba(255, 56, 56, 0.1);
  stroke: rgba(255, 110, 110, 0.24);
  stroke-width: 1.4;
}

.report-radar-grid,
.report-radar-axis {
  fill: none;
  stroke: rgba(255, 255, 255, 0.16);
  stroke-width: 1.15;
}

.report-radar-shape-shadow {
  fill: rgba(255, 30, 30, 0.14);
  stroke: rgba(255, 90, 90, 0.22);
  stroke-width: 14;
  filter: blur(14px);
}

.report-radar-shape {
  fill: rgba(255, 47, 47, 0.34);
  stroke: rgba(255, 105, 105, 1);
  stroke-width: 3.4;
}

.report-radar-dot {
  fill: #fff8f8;
  stroke: rgba(255, 62, 62, 0.96);
  stroke-width: 2.8;
}

.report-radar-label,
.report-radar-score,
.report-radar-tick {
  font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
  text-anchor: middle;
}

.report-radar-label {
  fill: #ffffff;
  font-size: 11px;
  font-weight: 700;
}

.report-radar-score {
  fill: #ffc8c8;
  font-size: 11px;
}

.report-radar-tick {
  fill: rgba(255, 214, 214, 0.72);
  font-size: 10px;
}

.report-radar-total strong {
  font-size: 22px;
}

.report-mini-list {
  gap: 12px;
}

.report-mini-list div,
.report-score-list div {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.report-mini-list strong,
.report-score-list strong {
  display: block;
  margin-top: 6px;
  font-size: 18px;
}

.report-score-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.report-score-list span {
  display: block;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 13px;
}

.report-score-list.is-creative-score-list {
  grid-template-columns: 1fr;
  align-content: start;
}

.report-score-list.is-creative-score-inline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: stretch;
  gap: 16px;
}

.report-score-list.is-creative-score-inline div {
  min-height: 116px;
  display: grid;
  align-content: space-between;
}

.report-tag-list.is-secondary-metric {
  margin-top: 12px;
}

.report-script-summary-block {
  margin-top: 18px;
  display: grid;
  gap: 16px;
}

.report-script-summary-block__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.report-script-summary-block__head h3 {
  margin: 6px 0 0;
}

.report-script-summary-block__head strong {
  font-size: 28px;
  line-height: 1;
  color: #ffe1e1;
  white-space: nowrap;
}

.report-script-summary-block p {
  white-space: pre-wrap;
}

.report-summary-rich,
.report-summary {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.report-summary-block.wide {
  width: 100%;
}

.report-incubation-panel {
  grid-template-columns: minmax(0, 1fr);
}

.report-radar-summary.is-flat {
  background: transparent;
  border: none;
  padding: 0;
  gap: 14px;
}

.report-summary-block.is-flat-block {
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(255, 255, 255, 0.06);
}

.report-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.report-tag-list span {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 13px;
}

.report-tag-list.is-weakness span {
  border-color: rgba(255, 107, 107, 0.24);
  color: #ffd1d1;
}

.report-creative-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 18px;
}

.report-creative-grid.is-six-dimensions-layout {
  grid-template-columns: 1fr;
  gap: 22px;
}

.report-creative-progress {
  display: grid;
  gap: 18px;
}

.report-creative-grid.is-six-dimensions-layout .report-creative-progress {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.report-creative-column {
  display: grid;
  gap: 16px;
}

.report-creative-column__head {
  display: grid;
  gap: 5px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.report-creative-column__head p {
  margin: 0;
  color: #bfa3a3;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.report-creative-column__head span {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.report-creative-column__head small {
  color: #d8b9b9;
  line-height: 1.6;
  font-size: 12px;
}

.report-creative-dimension-list {
  display: grid;
  gap: 12px;
}

.report-progress-item {
  padding: 15px 18px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.report-progress-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 10px;
}

.report-progress-label {
  color: #fff;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
}

.report-progress-value {
  min-width: 56px;
  display: inline-flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 4px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.report-progress-value em {
  font-style: normal;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.report-progress-value small {
  color: #f4d2d2;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.report-progress-note {
  display: block;
  min-height: 19px;
  font-size: 11px;
}

.report-progress-track {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 6px;
}

.report-progress-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff6b6b, #ff2323);
  box-shadow: 0 8px 22px rgba(255, 38, 38, 0.28);
}

.report-section-head.is-compact {
  grid-template-columns: 1fr;
  margin-bottom: 4px;
}

.report-section-head.is-compact h4 {
  margin: 0 0 4px;
}

.report-intent-panel {
  padding: 24px;
  border-radius: 28px;
}

.report-intent-panel-centered {
  justify-items: center;
  text-align: center;
  grid-template-columns: 1fr;
}

.report-intent-button {
  min-width: min(100%, 420px);
  min-height: 54px;
  font-size: 16px;
}

.intent-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 24px;
}

.intent-mask {
  position: absolute;
  inset: 0;
  background: rgba(8, 5, 5, 0.76);
}

.intent-card {
  position: relative;
  z-index: 1;
  width: min(620px, calc(100vw - 32px));
  padding: 30px;
}

.intent-card--split {
  width: min(920px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.intent-card__qr-column {
  display: grid;
  align-content: start;
  gap: 16px;
}

.intent-card__qr-label {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.intent-card__qr-box {
  display: grid;
  place-items: center;
  min-height: 300px;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.intent-card__qr-image {
  width: min(100%, 240px);
  aspect-ratio: 1;
  display: block;
}

.intent-card__content {
  display: grid;
  align-content: start;
  gap: 14px;
}

.intent-card__content h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 36px);
  letter-spacing: -0.03em;
}

.intent-card__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.9;
}

.intent-card__divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.04));
}

.intent-card__actions {
  margin-top: 6px;
}

.report-intent-panel.is-disabled {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.report-intent-panel.is-disabled .report-intent-button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
}

.report-summary {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.assessment-lock-note {
  color: #ffb9b9;
  font-size: 14px;
  line-height: 1.8;
}

.dashboard-shell {
  padding-top: 44px;
}

.dashboard-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(250px, 0.75fr);
  gap: 24px;
  padding: 34px;
  margin-bottom: 24px;
}

.dashboard-card {
  min-height: 260px;
}

.card-title-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.record-list {
  display: grid;
  gap: 14px;
}

.record-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.record-item h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.record-meta {
  display: grid;
  gap: 6px;
  margin-top: 10px;
}

.record-archive {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.agreement-page {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.agreement-shell {
  max-width: 860px;
  padding: 40px;
}

.agreement-shell h2 {
  font-size: 24px;
  margin-top: 28px;
}

.button-link {
  margin-top: 24px;
}

@media (max-width: 1100px) {
  .creator-center-lower-grid,
  .operator-monitor-grid {
    grid-template-columns: 1fr;
  }

  .topbar,
  .topbar.compact,
  .creator-topbar,
  .creator-inner-topbar,
  .operator-topbar {
    padding-inline: 18px;
  }

  .hero-content {
    align-items: center;
  }

  .hero-status {
    position: relative;
    inset: auto;
    margin: 24px auto 0;
  }

  .intro-card,
  .footer-grid,
  .dashboard-hero,
  .dashboard-grid,
  .footer-contact-body,
  .creator-detail-grid,
  .creator-business-grid,
  .business-activity-grid,
  .creator-center-profile-top,
  .creator-center-grade-board,
  .creator-center-lower-grid,
  .creator-center-activity-compact,
  .creator-center-upload-grid,
  .assessment-hero,
  .assessment-workspace,
  .report-grid,
  .report-summary,
  .assessment-field-grid,
  .assessment-field-grid.persona-grid,
  .record-archive,
  .academy-shell,
  .questionnaire-shell,
  .live-assessment-layout,
  .live-action-flow,
  .live-recorder-meta,
  .live-result-grid,
  .report-score-list,
  .report-summary-rich,
  .report-base-detail-list,
  .report-hero-panel,
  .report-intent-panel,
  .report-document-head,
  .report-document-actions,
  .report-intent-panel-compact,
  .business-pk-stage,
  .cosmos-shell,
  .star-creator-shell,
  .anniversary-content {
    grid-template-columns: 1fr;
  }

  .report-score-list.is-creative-score-inline,
  .report-creative-grid.is-six-dimensions-layout .report-creative-progress,
  .business-camp-stage,
  .business-camp-pk-topbar,
  .questionnaire-gate-card,
  .questionnaire-gate-card.is-live-reward-card-gate {
    grid-template-columns: 1fr;
  }

  .report-script-summary-block__head {
    flex-direction: column;
  }

  .questionnaire-gate-modal {
    padding: 20px;
  }

  .questionnaire-gate-qr-column {
    justify-items: center;
  }

  .questionnaire-gate-content {
    align-content: start;
  }

  .creator-topbar,
  .creator-inner-topbar,
  .operator-topbar {
    flex-wrap: wrap;
  }

  .operator-evaluation-metrics,
  .operator-grid-evaluation-detail,
  .content-assessment-layout,
  .content-assessment-layout.is-single-column,
  .content-requirement-grid,
  .environment-photo-grid,
  .environment-area-grid,
  .operator-environment-preview-grid,
  .operator-environment-photo-grid,
  .report-radar-layout,
  .report-grid-base,
  .report-grid-review,
  .report-grid-academy,
  .report-base-card,
  .report-base-card__main,
  .report-base-detail-list,
  .report-creative-grid,
  .intent-card--split,
  .cosmos-metric-list,
  .star-creator-benefit-grid,
  .star-creator-figure-grid,
  .anniversary-highlight-grid {
    grid-template-columns: 1fr;
  }

  .report-base-card__meta strong {
    font-size: 14px;
  }

  .report-grade-hero strong {
    font-size: 28px;
  }

  .intent-card__qr-column {
    justify-items: center;
  }

  .intent-card__content {
    gap: 12px;
  }

  .cosmos-visual {
    min-height: 560px;
  }

  .cosmos-engine-scene {
    min-height: 560px;
  }

  .cosmos-engine-logo-stage {
    inset: 12px 0 10px;
    padding: 34px 18px 26px;
  }

  .cosmos-logo-matrix {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .cosmos-logo-item {
    min-height: 72px;
    padding: 12px 14px;
  }

  .cosmos-logo-item img {
    height: 34px;
  }

  .cosmos-engine-dust {
    width: 9px;
    height: 9px;
  }

  .cosmos-engine-dust--five,
  .cosmos-engine-dust--six,
  .cosmos-engine-dust--eight {
    width: 10px;
    height: 10px;
  }

  .star-creator-visual {
    min-height: auto;
    padding-left: 0;
  }

  .star-creator-group-shot {
    width: min(100%, 680px);
    margin: 0 -12px 0 auto;
  }

  .star-creator-name-tag {
    min-width: 70px;
    height: 30px;
    padding: 0 14px;
    font-size: 11px;
  }

  .star-creator-name-tag--left {
    left: 72px;
    bottom: 180px;
  }

  .star-creator-name-tag--center {
    left: 314px;
    bottom: 256px;
  }

  .star-creator-name-tag--right {
    right: 48px;
    bottom: 188px;
  }
}

@media (max-width: 720px) {
  .cosmos-shell,
  .star-creator-shell,
  .anniversary-shell {
    padding: 22px;
  }

  .cosmos-section {
    margin-top: -18px;
  }

  .cosmos-copy h2,
  .star-creator-copy h2,
  .anniversary-head h2 {
    font-size: 30px;
  }

  .cosmos-copy h2,
  .star-creator-copy h2 {
    white-space: normal;
  }

  .cosmos-copy p,
  .cosmos-metric-item p,
  .star-creator-copy p,
  .star-creator-meta p,
  .anniversary-story p,
  .anniversary-highlight-card p {
    font-size: 13px;
  }

  .cosmos-visual {
    min-height: 440px;
  }

  .cosmos-engine-scene {
    min-height: 440px;
  }

  .cosmos-engine-logo-stage {
    padding: 22px 10px 18px;
  }

  .cosmos-logo-matrix {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .cosmos-logo-item {
    min-height: 64px;
    padding: 10px 12px;
    border-radius: 16px;
  }

  .cosmos-logo-item img {
    height: 28px;
  }

  .cosmos-engine-logo-stage {
    inset: 10px 0 8px;
  }

  .cosmos-engine-dust {
    width: 8px;
    height: 8px;
  }

  .cosmos-engine-dust--five,
  .cosmos-engine-dust--six,
  .cosmos-engine-dust--eight {
    width: 9px;
    height: 9px;
  }

  .cosmos-engine-orbit--three,
  .cosmos-engine-planet-wrap--three {
    width: 390px;
    height: 336px;
  }

  .cosmos-engine-planet-wrap--four {
    width: 252px;
    height: 252px;
  }

  .cosmos-engine-star::after {
    width: 46px;
  }

  .star-creator-group-shot {
    width: 100%;
  }

  .star-creator-group-shot img {
    max-height: 390px;
    width: auto;
    max-width: 100%;
    margin-left: auto;
  }

  .star-creator-name-tag {
    min-width: 60px;
    height: 26px;
    padding: 0 12px;
    font-size: 10px;
  }

  .star-creator-name-tag--left {
    left: 44px;
    bottom: 138px;
  }

  .star-creator-name-tag--center {
    left: 194px;
    bottom: 196px;
  }

  .star-creator-name-tag--right {
    right: 26px;
    bottom: 146px;
  }

  .questionnaire-shell.has-group-gate {
    min-height: 960px;
  }

  .questionnaire-gate-card {
    padding: 22px;
    border-radius: 24px;
  }

  .questionnaire-gate-qr-box {
    min-height: auto;
  }

  .questionnaire-gate-qr-image {
    max-width: 176px;
  }

  .questionnaire-gate-content h3 {
    font-size: 28px;
  }

  .questionnaire-gate-actions .primary-button {
    width: 100%;
  }

  .operator-score-modal__body,
  .operator-score-modal__body.is-script-mode,
  .operator-score-modal__video-head,
  .operator-score-modal__dimension-head,
  .operator-score-modal__footer {
    grid-template-columns: 1fr;
  }

  .operator-score-modal__video-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .operator-video-refresh-button {
    width: 100%;
  }

  .operator-score-modal__dialog {
    width: min(100vw - 24px, 1080px);
    max-height: calc(100vh - 24px);
    margin-top: 12px;
    padding: 20px;
  }

  .content-tips-modal__dialog {
    width: min(100vw - 24px, 780px);
    max-height: calc(100vh - 24px);
    padding: 22px;
  }

  .operator-score-modal__video-shell,
  .operator-score-modal__video,
  .operator-score-modal__video-empty {
    min-height: 220px;
  }

  .operator-filter-bar,
  .operator-mapping-head,
  .operator-mapping-summary {
    flex-direction: column;
    align-items: stretch;
  }

  .operator-filter-bar {
    padding: 16px;
  }

  .operator-filter-chips {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .operator-filter-chips::-webkit-scrollbar {
    display: none;
  }

  .operator-filter-chip {
    flex: 0 0 auto;
  }

  .creator-topbar-actions,
  .operator-topbar-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .creator-nav,
  .operator-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .creator-login-badge,
  .operator-topbar .creator-login-badge {
    width: 100%;
  }

  .operator-nav-link,
  .creator-nav-link {
    width: 100%;
    min-height: 44px;
  }

  .operator-grid,
  .operator-funnel-item,
  .operator-activity-meta,
  .operator-monitor-grid {
    grid-template-columns: 1fr;
  }

  .operator-table-shell {
    margin-inline: -6px;
    border-radius: 20px;
  }

  .operator-data-table {
    min-width: 1160px;
  }

  .operator-col-xs {
    width: 56px;
  }

  .operator-col-sm {
    width: 76px;
  }

  .operator-col-md {
    width: 106px;
  }

  .operator-col-lg {
    width: 140px;
  }

  .operator-col-xl {
    width: 168px;
  }

  .operator-data-table th,
  .operator-data-table td {
    padding: 9px 7px;
    font-size: 11px;
  }

  .operator-table-input {
    min-height: 36px;
    padding-inline: 8px;
    font-size: 11px;
  }

  .operator-story-cell,
  .operator-base-tag-list,
  .operator-score-action-group,
  .operator-action-stack {
    min-width: 0;
  }

  .operator-story-cell {
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
    line-height: 1.45;
  }

  .operator-base-tag-list {
    justify-content: flex-start;
    gap: 3px;
  }

  .operator-base-tag-list span {
    padding: 2px 6px;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.64);
  }

  .operator-score-action-group {
    justify-items: start;
    gap: 4px;
  }

  .operator-score-value {
    font-size: 12px;
    font-weight: 800;
  }

  .operator-status-pill {
    font-size: 10px;
    padding: 4px 8px;
  }

  .operator-grade-select {
    min-width: 84px;
    font-size: 11px;
  }

  .operator-action-stack {
    gap: 4px;
    align-items: flex-start;
  }

  .operator-action-link {
    font-size: 10px;
    color: rgba(255, 210, 210, 0.82);
  }

  .creator-entry-grid {
    grid-template-columns: 1fr;
  }

  .creator-center-growth-head,
  .creator-center-progress-copy,
  .creator-center-compliance-actions,
  .academy-certificate-actions,
  .creator-center-certificate-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .creator-center-grade-board {
    grid-template-columns: 1fr;
  }

  .creator-center-grade-badge {
    min-height: 168px;
  }

  .creator-center-certificate-floating-card {
    width: min(100%, 360px);
    left: 0;
    right: auto;
  }

  .creator-center-certificate-layout {
    grid-template-columns: 1fr;
  }

  .academy-certificate-card-template {
    width: min(100%, calc(100vw - 24px));
    padding: 14px;
  }

  .academy-certificate-button-row {
    justify-content: stretch;
  }

  .academy-certificate-button-row .ghost-button,
  .academy-certificate-button-row .primary-button,
  .creator-center-certificate-actions .ghost-button,
  .creator-center-certificate-actions .primary-button {
    width: 100%;
  }

  .business-card-head,
  .business-card-head-wide,
  .business-rank-row,
  .business-product-row,
  .business-goal-footer,
  .business-pk-user,
  .card-title-row,
  .content-tips-entry {
    flex-direction: column;
    align-items: stretch;
  }

  .business-rank-score,
  .business-product-rank {
    text-align: left;
  }

  .business-pk-vs {
    width: 72px;
    height: 72px;
    margin: 0 auto;
  }

  .assessment-sidebar {
    position: relative;
    top: auto;
  }

  .assessment-field-grid {
    grid-template-columns: 1fr;
  }

  .intro-copy-card,
  .intro-carousel-split {
    min-height: auto;
  }

  .intro-split-stage,
  .intro-carousel-image {
    min-height: 340px;
  }

  .intro-image-pill {
    min-height: 44px;
    padding: 0 18px;
    font-size: 13px;
    width: calc(100% - 8px);
  }

  .footer-brand-compact {
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100vw - 24px, 1280px);
  }

  .topbar,
  .topbar.compact,
  .creator-topbar,
  .creator-inner-topbar,
  .operator-topbar {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 12px;
    padding-block: 14px;
  }

  .topbar-actions,
  .theme-switcher,
  .identity-switch,
  .mode-switch,
  .hero-actions,
  .creator-nav,
  .operator-nav {
    flex-wrap: wrap;
  }

  .topbar-actions,
  .creator-topbar-actions,
  .operator-topbar-actions {
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
  }

  .brand {
    width: 100%;
    gap: 12px;
    align-items: flex-start;
  }

  .brand-copy {
    min-width: 0;
  }

  .brand-title {
    font-size: 14px;
    line-height: 1.3;
  }

  .brand-subtitle {
    font-size: 10px;
    line-height: 1.3;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .nav-login,
  .primary-button,
  .pill-button,
  .ghost-button,
  .button-link {
    width: 100%;
  }

  .hero,
  .creator-hero-banner {
    min-height: auto;
    padding-top: 168px;
    padding-bottom: 72px;
  }

  .hero-content,
  .creator-hero-content {
    min-height: auto;
  }

  .hero-copy,
  .dashboard-hero,
  .auth-modal,
  .agreement-shell,
  .footer-brand,
  .footer-column,
  .creator-detail-card,
  .creator-entry-card,
  .assessment-hero,
  .assessment-sidebar,
  .assessment-stage-card,
  .business-card,
  .business-activity-card,
  .business-activity-panel {
    padding: 22px;
  }

  .hero-copy {
    width: 100%;
    min-height: auto;
    padding-inline: 8px;
  }

  .hero-copy-minimal {
    gap: 20px;
  }

  .hero-copy-minimal h1,
  .creator-hero-copy h1 {
    font-size: clamp(32px, 10vw, 44px);
    line-height: 1.16;
    letter-spacing: -0.06em;
  }

  .auth-modal {
    width: min(100vw - 24px, 640px);
    margin: 48px auto;
    max-height: calc(100vh - 32px);
    overflow: auto;
  }

  .inline-field {
    grid-template-columns: 1fr;
  }

  .identity-switch,
  .mode-switch {
    flex-direction: column;
  }

  .identity-pill,
  .mode-pill,
  .theme-chip {
    width: 100%;
    justify-content: center;
  }

  .creator-entry-grid,
  .creator-center-identity-grid,
  .creator-center-compliance-steps,
  .creator-center-activity-compact,
  .creator-center-upload-grid,
  .operator-evaluation-metrics {
    grid-template-columns: 1fr;
  }

  .operator-evaluation-metric {
    padding: 18px 16px;
    border-radius: 22px;
    text-align: left;
    gap: 6px;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.04);
  }

  .operator-evaluation-metric strong {
    font-size: 28px;
  }

  .creator-entry-card {
    min-height: 180px;
  }

  .creator-business-shell,
  .creator-center-shell-wrap,
  .operator-shell,
  .assessment-shell {
    padding-top: 158px;
  }

  .assessment-shell-compact {
    padding-top: 144px;
  }

  .operator-stage {
    padding: 18px;
    gap: 18px;
  }

  .operator-filter-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .operator-search-field,
  .operator-filter-select {
    width: 100%;
  }

  .operator-search-field input,
  .operator-filter-select select {
    min-width: 0;
    width: 100%;
  }

  .operator-table-shell {
    border-radius: 22px;
    -webkit-overflow-scrolling: touch;
  }

  .operator-data-table th,
  .operator-data-table td {
    padding: 12px 10px;
    font-size: 12px;
  }

  .operator-data-table th {
    min-height: 64px;
    height: 64px;
    padding: 12px 8px;
  }

  .business-rank-main,
  .business-product-main {
    flex-direction: column;
    align-items: flex-start;
  }

  .business-rule-chip,
  .business-cash-tag,
  .business-product-badge,
  .business-reward-tag,
  .business-activity-deadline,
  .creator-nav-link,
  .creator-login-badge,
  .operator-nav-link {
    white-space: normal;
  }

  .creator-detail-card h2 {
    font-size: 24px;
  }

  .assessment-hero h1,
  .assessment-stage-head h2 {
    font-size: 34px;
  }

  .assessment-workspace {
    gap: 18px;
  }

  .assessment-step-list {
    gap: 10px;
    margin-top: 18px;
  }

  .assessment-step {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 14px;
  }

  .assessment-step strong {
    font-size: 15px;
  }

  .assessment-step-index {
    width: 48px;
    height: 48px;
  }

  .assessment-stage-card {
    padding: 20px;
  }

  .assessment-field,
  .assessment-check {
    gap: 8px;
  }

  .questionnaire-progress-meta h2,
  .academy-progress-meta h2,
  .assessment-stage-head h2,
  .report-document-head h3,
  .report-hero-panel h3,
  .report-intent-panel h3 {
    font-size: 24px;
  }

  .questionnaire-progress-summary,
  .academy-progress-summary {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .questionnaire-dimension-strip,
  .academy-course-strip {
    gap: 18px;
    padding-bottom: 10px;
  }

  .questionnaire-dimension-head,
  .academy-video-actions,
  .academy-homework-head,
  .content-upload-head,
  .content-sync-item,
  .content-thumbnail-head,
  .report-document-head,
  .report-hero-panel,
  .report-intent-panel,
  .report-section-head,
  .business-course-modal__head {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .questionnaire-question-card,
  .academy-video-card,
  .academy-homework-card,
  .academy-certificate-card,
  .content-upload-card,
  .content-sync-card,
  .report-document-panel,
  .report-card,
  .report-summary-block,
  .report-radar-card,
  .report-radar-summary {
    padding: 18px;
    border-radius: 22px;
    box-shadow: none;
  }

  .content-upload-success {
    padding: 12px 14px;
    border-radius: 14px;
    line-height: 1.6;
  }

  .questionnaire-question-title {
    font-size: 18px;
    line-height: 1.55;
  }

  .questionnaire-option {
    grid-template-columns: 18px minmax(0, 1fr);
    padding: 14px;
  }

  .questionnaire-option-main {
    align-items: flex-start;
  }

  .questionnaire-option-main em {
    line-height: 1.6;
  }

  .academy-video-frame,
  .academy-video {
    min-height: 220px;
  }

  .content-upload-specs {
    grid-template-columns: 1fr;
  }

  .content-upload-box,
  .academy-upload-box,
  .environment-photo-box {
    min-height: 160px;
    padding: 18px;
    border-style: dashed;
  }

  .content-sync-card {
    gap: 14px;
  }

  .content-upload-head p,
  .content-sync-card p,
  .live-recorder-meta p,
  .report-section-head p,
  .report-radar-summary p,
  .report-progress-item small {
    line-height: 1.6;
  }

  .content-sync-item {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  .content-assessment-actions {
    gap: 10px;
  }

  .content-assessment-actions .ghost-button,
  .content-assessment-actions .primary-button {
    width: 100%;
    min-height: 44px;
    justify-content: center;
  }

  .content-score-status {
    gap: 4px;
    padding-top: 4px;
  }

  .content-score-status strong {
    font-size: 22px;
    line-height: 1.05;
  }

  .content-score-status span,
  .content-score-status small {
    font-size: 11px;
    line-height: 1.5;
  }

  .report-document-head.is-report-stage-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .report-document-actions,
  .report-document-actions.is-report-primary-actions {
    width: 100%;
    gap: 8px;
  }

  .report-progress-item {
    padding: 11px 13px;
    border-radius: 15px;
  }

  .report-progress-head {
    gap: 8px;
    margin-bottom: 8px;
  }

  .report-progress-label {
    font-size: 13px;
    line-height: 1.45;
  }

  .report-progress-value {
    min-width: 48px;
    font-size: 12px;
  }

  .live-action-button {
    grid-template-columns: 1fr;
    min-height: 56px;
    padding: 11px 13px;
  }

  .live-action-button strong {
    font-size: 14px;
  }

  .live-phone-shell {
    width: 100%;
    max-width: 348px;
    height: 620px;
    margin-inline: auto;
    box-shadow: none;
  }

  .live-recorder-meta,
  .live-result-grid {
    gap: 12px;
  }

  .live-recorder-meta {
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  .live-overlay-comments {
    width: calc(100% - 96px);
    bottom: 48px;
  }

  .live-overlay-hearts {
    right: 8px;
    width: 68px;
  }

  .live-recorder-screen,
  .live-preview-video {
    min-height: 344px;
    height: 344px;
  }

  .report-download-button,
  .report-secondary-button {
    min-height: 44px;
    font-size: 13px;
    box-shadow: none;
  }

  .report-section-index {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .report-radar-summary,
  .report-progress-item {
    gap: 10px;
  }

  .report-progress-head {
    grid-template-columns: 1fr;
    gap: 4px;
    align-items: flex-start;
  }

  .report-progress-value {
    justify-content: flex-start;
    text-align: left;
  }

  .report-progress-item {
    padding: 12px 14px;
    border-radius: 14px;
  }

  .intro-visual {
    min-height: 280px;
  }

  .inline-field {
    grid-template-columns: 1fr;
  }
}

.operator-grid-business-system {
  grid-template-columns: 1fr;
}

.operator-business-system-grid,
.operator-business-preview-list,
.operator-business-product-grid,
.operator-business-target-grid,
.operator-business-monthly-grid,
.operator-business-modal__form,
.business-course-detail-grid {
  display: grid;
  gap: 16px;
}

.operator-business-upload-card,
.operator-business-product-card,
.operator-business-target-card,
.operator-business-monthly-item,
.operator-business-preview-card,
.operator-business-empty-card {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.operator-business-products-head,
.operator-business-upload-card,
.operator-business-meta-row,
.operator-business-target-actions,
.operator-business-monthly-head,
.operator-business-monthly-foot,
.operator-business-product-top,
.operator-business-product-meta {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: flex-start;
}

.operator-business-preview-list,
.operator-business-product-grid,
.operator-business-monthly-list {
  margin-top: 16px;
}

.operator-business-preview-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.operator-business-preview-card span,
.operator-business-system-stamp,
.operator-business-product-meta span,
.operator-business-target-actions span,
.operator-business-monthly-head p,
.operator-business-monthly-foot span,
.operator-business-source {
  color: var(--text-muted);
}

.operator-business-product-meta.is-doc-meta {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.operator-business-preview-card strong,
.operator-business-product-card strong,
.operator-business-target-card h3,
.operator-business-monthly-item strong,
.business-course-modal__head h3,
.business-course-detail-grid strong {
  color: #fff;
}

.operator-business-product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.operator-business-product-card.is-new {
  border-color: rgba(255, 76, 76, 0.4);
  background: linear-gradient(180deg, rgba(74, 20, 20, 0.82), rgba(28, 12, 12, 0.95));
}

.operator-business-target-grid,
.operator-business-monthly-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.operator-business-monthly-grid label,
.operator-business-target-grid label,
.operator-business-modal__form label {
  display: grid;
  gap: 8px;
}

.operator-business-file-field small {
  color: var(--text-muted);
  line-height: 1.6;
}

.operator-business-modal[hidden],
.business-course-modal[hidden] {
  display: none;
}

.operator-business-modal,
.business-course-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
}

.operator-business-modal__mask,
.business-course-modal__mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.operator-business-modal__dialog,
.business-course-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(860px, calc(100vw - 32px));
  margin: 48px auto;
  padding: 28px;
}

.operator-business-modal__head,
.business-course-modal__head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.business-course-modal__head-actions {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.business-course-download-button {
  min-height: 42px;
  justify-content: center;
}

.business-course-download-button.is-disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.operator-business-textarea {
  min-height: 96px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: #fff;
  padding: 12px 14px;
  resize: vertical;
}

.operator-business-modal__footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.business-product-button {
  width: 100%;
  text-align: left;
  color: inherit;
  cursor: pointer;
}

.business-product-button.is-pinned-new {
  border-color: rgba(255, 90, 90, 0.48);
  box-shadow: 0 18px 40px rgba(117, 24, 24, 0.22);
}

.business-product-badge.is-library {
  color: #ffe4e4;
  background: rgba(255, 255, 255, 0.05);
}

.business-course-detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.business-course-detail-grid article {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 10px;
}

.business-course-detail-grid article.is-wide {
  grid-column: 1 / -1;
}

.business-course-detail-grid span,
.business-course-detail-grid li,
.business-course-modal__head p,
.business-course-detail-grid small {
  color: var(--text-muted);
}

.business-course-detail-grid ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

@media (max-width: 1100px) {
  .operator-business-preview-list,
  .operator-business-product-grid,
  .operator-business-target-grid,
  .operator-business-monthly-grid,
  .business-course-detail-grid,
  .academy-video-head {
    grid-template-columns: 1fr;
  }

  .business-course-modal__head-actions {
    width: 100%;
    justify-items: stretch;
  }
}
