:root {
  --bg: #f4f1ed;
  --surface: #fffefa;
  --surface-soft: #ebe7e1;
  --ink: #11100e;
  --muted: #6f6a61;
  --line: rgba(17, 16, 14, 0.12);
  --line-light: rgba(255, 255, 255, 0.24);
  --accent: #fff36d;
  --accent-ink: #15120b;
  --gold: #d4a843;
  --dark-card: #1a1a2e;
  --dark-surface: #16213e;
  --olive: #676152;
  --clay: #9a6442;
  --teal: #1a7770;
  --success: #1f8f56;
  --warning: #946200;
  --shadow: 0 24px 70px rgba(17, 16, 14, 0.16);
  --glass: rgba(255, 255, 255, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--bg);
  font-family: "Avenir Next", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

body.has-drawer,
body.has-drawer .page-shell {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
  border: 0;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.hidden {
  display: none !important;
}

.page-shell {
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #ffb47c, #fffefa);
  box-shadow: 0 0 18px rgba(255, 243, 109, 0.52);
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1880px, calc(100% - 48px));
  transform: translateX(-50%);
  gap: 20px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(17, 16, 14, 0.46);
  backdrop-filter: blur(18px);
  color: white;
  transition: top 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.is-scrolled .site-header {
  top: 10px;
  background: rgba(17, 16, 14, 0.74);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark strong {
  display: block;
  font-size: 25px;
  line-height: 1;
}

.brand-mark p {
  display: inline-flex;
  margin: 0;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  backdrop-filter: blur(16px);
}

.brand-mark__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 900;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 42px;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
}

.site-nav a {
  position: relative;
  transition: color 0.18s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--accent);
}

.site-nav a.is-active::after {
  transform: scaleX(1);
}

.header-actions,
.hero-actions,
.auth-tabs {
  display: flex;
  align-items: center;
  gap: 10px;
}

.primary-button,
.ghost-button,
.auth-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.primary-button {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 14px 34px rgba(255, 243, 109, 0.26);
}

.primary-button--live {
  gap: 8px;
}

.live-dot {
  display: inline-block;
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.48);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }
}

.ghost-button,
.auth-tab {
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  border: 1px solid rgba(17, 16, 14, 0.1);
}

.ghost-button--light {
  color: white;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(18px);
}

.primary-button:hover,
.ghost-button:hover,
.auth-tab:hover {
  transform: translateY(-2px);
}

.primary-button:active,
.ghost-button:active,
.auth-tab:active {
  transform: translateY(0) scale(0.98);
}

.auth-tab.is-active {
  background: var(--ink);
  color: white;
}

.hero-stage {
  position: relative;
  display: grid;
  min-height: 100svh;
  width: 100%;
  overflow: hidden;
  background: #17130e;
}

.hero-stage__image,
.hero-stage__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-stage__image {
  object-fit: cover;
  object-position: 58% center;
  transform: scale(1.01);
}

.hero-stage__shade {
  background:
    linear-gradient(90deg, rgba(10, 9, 8, 0.9) 0%, rgba(10, 9, 8, 0.72) 34%, rgba(10, 9, 8, 0.3) 62%, rgba(10, 9, 8, 0.45) 100%),
    linear-gradient(0deg, rgba(10, 9, 8, 0.68) 0%, rgba(10, 9, 8, 0.08) 42%, rgba(10, 9, 8, 0.44) 100%);
}

.hero-stage__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: min(1680px, calc(100% - 56px));
  margin: 0 auto;
  padding: 132px 0 92px;
  color: white;
}

.hero-copy {
  max-width: 780px;
}

.hero-stage h1 {
  margin: 20px 0 22px;
  font-size: clamp(64px, 7vw, 126px);
  line-height: 0.92;
  font-weight: 500;
}

.hero-stage h1 span {
  display: block;
}

.hero-stage h1 strong {
  display: block;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 6.1vw, 94px);
  font-weight: 700;
  white-space: nowrap;
}

.no-break {
  white-space: nowrap;
}

.hero-stage p {
  width: min(680px, 100%);
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 22px;
  line-height: 1.65;
}

.hero-stage .hero-online {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
  margin: 18px 0 0;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 700;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(680px, 100%);
  margin-top: 16px;
}

.hero-stats span {
  display: grid;
  gap: 2px;
  min-height: 78px;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04));
  color: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(16px);
  font-size: 13px;
}

.hero-stats strong {
  color: white;
  font-size: 22px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(17, 16, 14, 0.06);
  color: var(--olive);
  font-size: 13px;
  font-weight: 800;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.scene-band {
  display: grid;
  place-items: center;
  gap: 42px;
  padding: 70px 24px 78px;
  background: #fffefa;
  border-bottom: 1px solid var(--line);
}

.scene-band p {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  font-weight: 700;
}

.scene-band__track {
  display: grid;
  grid-template-columns: repeat(8, minmax(92px, 1fr));
  gap: 26px;
  width: min(1500px, 100%);
}

.scene-band__track span {
  display: grid;
  place-items: center;
  min-height: 70px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  text-align: center;
}

.story-grid,
.dashboard-grid,
.activities-section,
.live-moments,
.co-creator,
.post-login-journey,
.form-section,
.final-cta,
.safety-promise,
.promise-panel,
.split-panel,
.result-card {
  width: min(1680px, calc(100% - 56px));
  margin: 0 auto;
}

.activities-section {
  padding: 96px 0 108px;
}

.section-heading {
  width: min(920px, 100%);
  margin: 0 auto;
  text-align: center;
}

.section-heading h2,
.admin-hero h1 {
  margin: 14px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4.2vw, 76px);
  line-height: 1;
  font-weight: 700;
}

.section-heading p,
.story-card p,
.support-card p,
.helper-copy,
.form-message,
.quote-card p,
.journey-card p {
  color: var(--muted);
  line-height: 1.7;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 64px;
}

.activity-card {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 620px;
  overflow: hidden;
  padding: 34px;
  border-radius: 8px;
  color: white;
  background: #17130e;
  box-shadow: var(--shadow);
  isolation: isolate;
  transform: translateY(0);
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.activity-card:focus-visible {
  outline: 4px solid rgba(255, 243, 109, 0.72);
  outline-offset: 4px;
}

.activity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 90px rgba(17, 16, 14, 0.24);
}

.activity-card:hover .activity-card__image {
  transform: scale(1.04);
}

.activity-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--activity-position, center);
  opacity: 0.86;
  transform: scale(1);
  transition: transform 0.5s ease, opacity 0.28s ease;
}

.activity-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.04) 44%, rgba(0, 0, 0, 0.72)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.24), rgba(255, 243, 109, 0.06));
}

.activity-card > * {
  position: relative;
  z-index: 1;
}

.activity-card h3 {
  width: min(430px, 100%);
  margin: 16px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3vw, 52px);
  line-height: 1.03;
}

.activity-card p {
  width: min(430px, 100%);
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
}

.activity-meta,
.activity-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.activity-meta span,
.activity-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  font-size: 13px;
}

.activity-card .activity-apply {
  width: 100%;
  margin-top: 24px;
  background: rgba(255, 243, 109, 0.94);
  color: var(--accent-ink);
  border-color: transparent;
}

.activity-card .activity-apply::after {
  content: " →";
}

.live-moments {
  padding: 18px 0 100px;
}

.moment-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 360px);
  gap: 22px;
  margin-top: 54px;
  overflow-x: auto;
  padding: 10px 4px 30px;
  scroll-snap-type: x mandatory;
}

.moment-card {
  scroll-snap-align: start;
  display: grid;
  gap: 14px;
  padding: 15px 15px 18px;
  border-radius: 18px;
  background: #fffefa;
  border: 1px solid rgba(17, 16, 14, 0.09);
  box-shadow: 0 22px 60px rgba(17, 16, 14, 0.13);
  transform: rotate(var(--moment-rotate, 0deg));
  transform-origin: 50% 70%;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.moment-card:hover {
  transform: rotate(0deg) translateY(-6px);
  box-shadow: 0 30px 78px rgba(17, 16, 14, 0.18);
}

.moment-card--tilt-left {
  --moment-rotate: -1.5deg;
}

.moment-card--tilt-right {
  --moment-rotate: 1.4deg;
}

.moment-card img {
  aspect-ratio: 1.12 / 1;
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.moment-card p {
  position: relative;
  margin: 0;
  padding: 13px 15px;
  border-radius: 16px 16px 16px 4px;
  background: #95ec69;
  color: #10280f;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 700;
}

.moment-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 18px 0 90px;
}

.story-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffefa;
}

.story-card span,
.quote-card strong,
.journey-card strong {
  color: var(--olive);
  font-size: 13px;
  font-weight: 900;
}

.story-card h2 {
  margin: 14px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.12;
}

.co-creator {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 32px;
  align-items: center;
  margin-bottom: 32px;
  padding: clamp(34px, 4vw, 64px);
  border: 1px solid rgba(212, 168, 67, 0.32);
  border-radius: 28px;
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 243, 109, 0.18), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(212, 168, 67, 0.22), transparent 26%),
    linear-gradient(135deg, var(--dark-card), var(--dark-surface));
  color: white;
  box-shadow: 0 34px 100px rgba(18, 18, 36, 0.28);
}

.eyebrow--dark {
  color: var(--accent);
  border: 1px solid rgba(255, 243, 109, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.co-creator__copy h2 {
  margin: 16px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 5vw, 88px);
  line-height: 0.95;
}

.co-creator__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  line-height: 1.75;
}

.co-creator__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.co-creator__perks {
  display: grid;
  gap: 14px;
}

.co-creator__perks article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 6px 16px;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.co-creator__perks strong {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(255, 243, 109, 0.16);
  font-size: 25px;
}

.co-creator__perks h3 {
  margin: 0;
  font-size: 22px;
}

.co-creator__perks p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}

.promise-panel {
  padding: 108px 0;
}

.thread-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.76fr) minmax(420px, 1.24fr);
  gap: 28px;
  margin-top: 62px;
}

.thread-steps {
  display: grid;
  gap: 18px;
}

.thread-steps article,
.thread-preview,
.auth-panel,
.dashboard-panel,
.post-login-journey,
.split-panel,
.form-section,
.result-card,
.support-card {
  border-radius: 8px;
  background: rgba(255, 254, 250, 0.92);
  border: 1px solid rgba(17, 16, 14, 0.08);
  box-shadow: 0 18px 55px rgba(17, 16, 14, 0.08);
}

.thread-steps article {
  position: relative;
  min-height: 158px;
  padding: 28px 78px 28px 28px;
}

.thread-steps span {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 20px;
}

.thread-steps h3 {
  margin: 0 0 10px;
  font-size: 25px;
  line-height: 1.16;
}

.thread-steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.thread-toggle {
  position: absolute;
  top: 32px;
  right: 28px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--ink);
  font-size: 27px;
  line-height: 1;
}

.thread-steps article.is-active .thread-toggle {
  background: var(--accent);
}

.thread-preview {
  display: grid;
  align-content: center;
  min-height: 520px;
  padding: 48px;
  background: #ded9d1;
}

.preview-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.preview-tabs span {
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.45);
}

.preview-tabs .is-active {
  color: var(--ink);
  background: white;
}

.preview-card {
  padding: 32px;
  border-radius: 8px;
  background: white;
}

.preview-card small {
  display: block;
  margin-bottom: 18px;
  color: var(--muted);
  font-weight: 800;
}

.preview-card strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  line-height: 1.05;
}

.preview-card p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.preview-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.preview-metrics span {
  display: grid;
  gap: 6px;
  min-height: 84px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--muted);
}

.preview-metrics strong {
  color: var(--ink);
  font-size: 26px;
}

.safety-promise {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(420px, 1.2fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 36px;
  padding: clamp(30px, 4vw, 54px);
  border: 1px solid rgba(141, 105, 152, 0.16);
  border-radius: 30px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 214, 229, 0.42), transparent 34%),
    linear-gradient(135deg, rgba(200, 180, 220, 0.16), rgba(255, 254, 250, 0.92));
  box-shadow: 0 22px 70px rgba(98, 73, 106, 0.1);
}

.safety-promise__copy h2 {
  margin: 14px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 4.2vw, 72px);
  line-height: 1;
}

.safety-promise__copy p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
  font-weight: 300;
}

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

.safety-grid article {
  min-height: 230px;
  padding: 22px;
  border: 1px solid rgba(17, 16, 14, 0.08);
  border-radius: 24px;
  background: rgba(255, 254, 250, 0.78);
  backdrop-filter: blur(18px);
}

.safety-grid span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: rgba(255, 243, 109, 0.45);
  font-size: 24px;
}

.safety-grid h3 {
  margin: 0 0 10px;
  font-size: 23px;
}

.safety-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
}

.dashboard-grid,
.post-login-journey,
.split-panel,
.form-section,
.result-card,
.support-section {
  margin-top: 28px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 22px;
  padding-top: 48px;
}

.auth-panel,
.dashboard-panel,
.post-login-journey,
.split-panel,
.form-section,
.result-card,
.support-card {
  padding: 30px;
}

.auth-intro {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.auth-intro h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 2.8vw, 44px);
  line-height: 1.04;
}

.auth-intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.auth-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.auth-proof span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(17, 16, 14, 0.06);
  color: var(--olive);
  font-size: 12px;
  font-weight: 800;
}

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

.dashboard-head h2,
.split-panel h2,
.form-section h2,
.result-card h2,
.support-section h2 {
  margin: 10px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.08;
}

.status-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.status-pill,
.result-badge,
.activity-fit {
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 243, 109, 0.36);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.mini-cards,
.journey-grid,
.quote-grid {
  display: grid;
  gap: 14px;
}

.mini-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.mini-cards article,
.journey-card {
  padding: 20px;
  border-radius: 8px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
}

.mini-cards strong {
  display: block;
  margin-bottom: 8px;
  font-size: 28px;
}

.post-login-journey {
  background: linear-gradient(135deg, #fffefa 0%, #f0ebe3 100%);
}

.journey-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.journey-card h3 {
  margin: 12px 0 10px;
  font-size: 24px;
}

.journey-card p {
  margin: 0 0 16px;
}

.glass-form {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

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

.full-span {
  grid-column: 1 / -1;
}

label,
.chip-fieldset legend {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(17, 16, 14, 0.12);
  border-radius: 8px;
  background: #fffefa;
  color: var(--ink);
  padding: 14px 15px;
}

.password-field {
  position: relative;
  display: block;
}

.password-field input {
  padding-right: 70px;
}

.password-field button {
  position: absolute;
  top: 50%;
  right: 8px;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(17, 16, 14, 0.07);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  transform: translateY(-50%);
}

input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(255, 243, 109, 0.58);
  border-color: rgba(17, 16, 14, 0.34);
}

.chip-fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  border: 0;
  grid-column: 1 / -1;
}

.chip-fieldset legend {
  width: 100%;
}

.chip-fieldset label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fffefa;
  color: var(--ink);
}

.chip-fieldset input {
  width: auto;
}

.micro-quiz {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.quiz-step {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(17, 16, 14, 0.08);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 254, 250, 0.96), rgba(239, 232, 222, 0.86));
  box-shadow: 0 16px 44px rgba(17, 16, 14, 0.07);
}

.quiz-step__count {
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--accent);
  font-weight: 900;
  font-size: 12px;
}

.quiz-step h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.05;
}

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

.scene-choice {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 2px solid transparent;
  border-radius: 22px;
  background: #fffefa;
  color: var(--ink);
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.scene-choice:hover {
  transform: translateY(-3px);
}

.scene-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.scene-choice:has(input:checked) {
  border-color: var(--accent);
  box-shadow: 0 18px 42px rgba(255, 243, 109, 0.22);
}

.scene-choice:has(input:checked)::after {
  content: "已选择";
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 12px;
  font-weight: 900;
}

.scene-choice img {
  aspect-ratio: 1.18 / 1;
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.scene-choice strong {
  font-size: 22px;
}

.scene-choice span {
  color: var(--muted);
  line-height: 1.5;
}

.pill-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-radio-group label {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fffefa;
  color: var(--ink);
  font-size: 17px;
  cursor: pointer;
}

.pill-radio-group input {
  width: auto;
  accent-color: var(--ink);
}

.quiz-step--contact {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.quiz-step--contact .quiz-step__count,
.quiz-step--contact .helper-copy,
.quiz-step--contact .form-message {
  grid-column: 1 / -1;
}

.result-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 18px;
  margin-top: 20px;
}

.result-main,
.result-side {
  padding: 28px;
  border-radius: 8px;
  background: var(--surface-soft);
}

.result-main h3 {
  margin: 18px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  line-height: 1.1;
}

.result-side h4 {
  margin: 0 0 10px;
}

#result-suggestions,
.support-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.support-section {
  padding-bottom: 90px;
}

.support-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  gap: 24px;
  margin-top: 22px;
}

.support-card img {
  border-radius: 8px;
  background: var(--surface-soft);
}

.final-cta {
  padding: 30px 0 96px;
}

.final-cta__inner {
  display: grid;
  justify-items: center;
  min-height: 430px;
  padding: clamp(34px, 6vw, 82px);
  border: 1px solid rgba(212, 168, 67, 0.28);
  border-radius: 32px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 243, 109, 0.16), transparent 34%),
    linear-gradient(135deg, #111020, #1b243d);
  color: white;
  text-align: center;
  box-shadow: 0 34px 100px rgba(18, 18, 36, 0.24);
}

.final-cta h2 {
  width: min(840px, 100%);
  margin: 20px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 82px);
  line-height: 0.98;
}

.final-cta p {
  width: min(720px, 100%);
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.final-lead-form {
  display: grid;
  grid-template-columns: minmax(260px, 520px) auto;
  gap: 10px;
  width: min(720px, 100%);
}

.final-lead-form input {
  min-height: 58px;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.92);
}

.final-cta small {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.46);
}

code {
  padding: 3px 6px;
  border-radius: 6px;
  background: rgba(17, 16, 14, 0.08);
}

.admin-body {
  background: #f7f7f4;
}

.admin-shell {
  width: min(1240px, calc(100% - 24px));
  margin: 0 auto;
  padding: 96px 0 72px;
}

.admin-body .site-header {
  position: sticky;
  top: 12px;
  transform: none;
  left: auto;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  background: rgba(17, 16, 14, 0.78);
  backdrop-filter: blur(16px);
}

.admin-hero,
.admin-panel {
  padding: 28px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 14px 44px rgba(17, 16, 14, 0.08);
}

.admin-hero {
  margin-top: 24px;
}

.admin-hero__copy {
  max-width: 760px;
}

.admin-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
}

.admin-toolbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.admin-login-form {
  max-width: 560px;
}

.admin-panel {
  margin-top: 24px;
}

.admin-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.admin-filters input {
  flex: 1 1 220px;
}

.table-wrap {
  overflow-x: auto;
  margin-top: 16px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

thead th {
  color: var(--muted);
  font-size: 13px;
}

.table-action {
  display: inline-flex;
  margin-right: 6px;
  margin-bottom: 6px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(17, 16, 14, 0.06);
  border: 1px solid var(--line);
}

.table-empty {
  color: var(--muted);
  text-align: center;
}

.export-link {
  display: inline-flex;
  margin-top: 12px;
}

.social-hub {
  width: min(1680px, calc(100% - 56px));
  margin: 28px auto 0;
  padding: 40px 30px 34px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 243, 109, 0.22), transparent 28%),
    linear-gradient(145deg, #fffefa 0%, #eee8de 100%);
  border: 1px solid rgba(17, 16, 14, 0.08);
  box-shadow: 0 22px 70px rgba(17, 16, 14, 0.1);
}

.social-search {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr auto;
  gap: 10px;
  margin: 26px auto 30px;
  width: min(1120px, 100%);
}

.social-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 20px;
}

.social-main,
.relation-panel {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 254, 250, 0.76);
}

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

.social-panel-head h3,
.relation-block h4,
.chat-drawer__panel h3 {
  margin: 8px 0 0;
  font-family: Georgia, "Times New Roman", serif;
}

.social-panel-head h3 {
  font-size: 34px;
}

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

.social-card {
  display: grid;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  box-shadow: 0 12px 30px rgba(17, 16, 14, 0.06);
}

.social-card__top,
.relation-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 12px;
}

.avatar-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--ink);
  color: var(--accent);
  font-weight: 900;
}

.social-card h4,
.relation-item strong {
  margin: 0;
  font-size: 20px;
}

.social-card p,
.relation-item p,
.chat-drawer__panel > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.social-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.social-tags span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(17, 16, 14, 0.06);
  color: var(--olive);
  font-size: 12px;
  font-weight: 800;
}

.social-card__result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  background: var(--surface-soft);
}

.social-card__result strong {
  font-size: 15px;
}

.social-card__result span {
  color: var(--muted);
  font-size: 12px;
}

.social-action {
  width: 100%;
}

.relation-block + .relation-block {
  margin-top: 20px;
}

.relation-block h4 {
  font-size: 22px;
}

.relation-list {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.relation-item {
  grid-template-columns: 42px 1fr auto;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
}

.relation-item .avatar-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
}

.relation-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.social-empty {
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px dashed rgba(17, 16, 14, 0.2);
  border-radius: 18px;
  color: var(--muted);
  text-align: center;
}

.chat-drawer {
  position: fixed;
  inset: 0;
  z-index: 72;
  display: grid;
  place-items: stretch end;
}

.chat-drawer__panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  width: min(540px, calc(100% - 22px));
  height: calc(100% - 22px);
  margin: 11px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255, 254, 250, 0.98), rgba(235, 231, 225, 0.98));
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.28);
  animation: drawerIn 0.28s ease both;
}

.chat-drawer__panel h3 {
  font-size: 42px;
}

.chat-messages {
  display: grid;
  align-content: start;
  gap: 10px;
  overflow-y: auto;
  margin: 18px 0;
  padding: 18px;
  border-radius: 20px;
  background: rgba(17, 16, 14, 0.06);
}

.chat-bubble {
  justify-self: start;
  max-width: 82%;
  padding: 12px 14px;
  border-radius: 18px 18px 18px 4px;
  background: white;
  box-shadow: 0 8px 20px rgba(17, 16, 14, 0.08);
}

.chat-bubble.is-mine {
  justify-self: end;
  border-radius: 18px 18px 4px 18px;
  background: var(--accent);
}

.chat-bubble p {
  margin: 0;
  line-height: 1.6;
}

.chat-bubble span {
  display: block;
  margin-top: 5px;
  color: rgba(17, 16, 14, 0.52);
  font-size: 11px;
}

.chat-form {
  display: grid;
  gap: 10px;
}

.activity-drawer {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: stretch end;
}

.activity-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 11, 9, 0.54);
  backdrop-filter: blur(8px);
}

.activity-drawer__panel {
  position: relative;
  z-index: 1;
  width: min(640px, calc(100% - 22px));
  height: calc(100% - 22px);
  margin: 11px;
  overflow-y: auto;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 26px;
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 243, 109, 0.22), transparent 30%),
    linear-gradient(145deg, rgba(255, 254, 250, 0.98), rgba(235, 231, 225, 0.96));
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.28);
  animation: drawerIn 0.28s ease both;
}

.drawer-close {
  position: sticky;
  top: 0;
  float: right;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-size: 24px;
}

.activity-drawer__panel h3 {
  margin: 16px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.98;
}

.activity-drawer__panel > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.activity-drawer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0;
}

.activity-drawer__meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
  font-size: 13px;
}

.activity-drawer__promise {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.activity-drawer__promise article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
}

.activity-drawer__promise strong {
  display: block;
  margin-bottom: 6px;
  color: var(--olive);
  font-size: 13px;
}

.activity-drawer__promise p {
  margin: 0;
  color: var(--ink);
  line-height: 1.65;
}

.activity-drawer h4 {
  margin: 0;
  font-size: 20px;
}

.quiz-modal {
  position: fixed;
  inset: 0;
  z-index: 74;
  display: grid;
  place-items: center;
  padding: 18px;
}

.quiz-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 11, 9, 0.58);
  backdrop-filter: blur(10px);
}

.quiz-modal__panel {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 243, 109, 0.22), transparent 30%),
    linear-gradient(145deg, rgba(255, 254, 250, 0.98), rgba(235, 231, 225, 0.98));
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.34);
  animation: modalIn 0.25s ease both;
}

.quiz-modal__panel h3 {
  margin: 16px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4.6vw, 62px);
  line-height: 0.98;
}

.quiz-modal__panel > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.quiz-modal__result {
  display: grid;
  gap: 8px;
  margin: 22px 0;
  padding: 20px;
  border-radius: 22px;
  background: var(--ink);
  color: white;
}

.quiz-modal__result strong {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
}

.quiz-modal__result span {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.quiz-modal__support {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.64);
}

.quiz-modal__support img {
  border-radius: 16px;
  background: var(--surface-soft);
}

.quiz-modal__support h4 {
  margin: 0 0 8px;
  font-size: 20px;
}

.quiz-modal__support p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.quiz-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.sticky-conversion {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 45;
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(620px, calc(100% - 28px));
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(17, 16, 14, 0.76);
  color: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
  transform: translate(-50%, 120%);
  transition: transform 0.28s ease;
}

.is-scrolled .sticky-conversion {
  transform: translate(-50%, 0);
}

.is-logged-in .sticky-conversion,
.has-drawer .sticky-conversion {
  display: none;
}

.sticky-conversion span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  font-size: 14px;
  font-weight: 700;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drawerIn {
  from {
    opacity: 0;
    transform: translateX(28px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1180px) {
  .site-nav {
    display: none;
  }

  .thread-layout,
  .dashboard-grid,
  .co-creator,
  .safety-promise,
  .result-layout,
  .support-card,
  .social-layout,
  .social-search,
  .admin-toolbar {
    grid-template-columns: 1fr;
  }

  .scene-band__track,
  .hero-stats,
  .activity-grid,
  .story-grid,
  .scene-choice-grid,
  .safety-grid,
  .mini-cards,
  .journey-grid,
  .social-grid,
  .form-grid,
  .preview-metrics {
    grid-template-columns: 1fr;
  }

  .quiz-step--contact,
  .final-lead-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    align-items: flex-start;
  }

  .brand-mark p,
  .header-actions .ghost-button {
    display: none;
  }

  .brand-mark strong {
    font-size: 22px;
  }

  .brand-mark__icon {
    width: 40px;
    height: 40px;
  }

  .primary-button,
  .ghost-button,
  .auth-tab {
    min-height: 44px;
    padding: 10px 16px;
  }

  .hero-stage {
    min-height: 100svh;
  }

  .hero-stage__image {
    object-position: 64% center;
  }

  .hero-stage__shade {
    background:
      linear-gradient(180deg, rgba(10, 9, 8, 0.86) 0%, rgba(10, 9, 8, 0.6) 44%, rgba(10, 9, 8, 0.78) 100%);
  }

  .hero-stage__content {
    width: min(100% - 24px, 100%);
    gap: 28px;
    padding: 112px 0 42px;
  }

  .hero-stage h1 {
    font-size: 56px;
  }

  .hero-stage h1 strong {
    font-size: 44px;
    white-space: normal;
  }

  .hero-stage p {
    font-size: 16px;
  }

  .hero-actions,
  .auth-tabs,
  .header-actions {
    flex-wrap: wrap;
  }

  .scene-band {
    padding: 42px 18px;
  }

  .scene-band__track {
    gap: 10px;
  }

  .scene-band__track span {
    min-height: 46px;
    font-size: 16px;
  }

  .story-grid,
  .dashboard-grid,
  .activities-section,
  .live-moments,
  .co-creator,
  .post-login-journey,
  .form-section,
  .final-cta,
  .safety-promise,
  .social-hub,
  .promise-panel,
  .split-panel,
  .result-card {
    width: min(100% - 20px, 100%);
  }

  .activities-section,
  .promise-panel,
  .live-moments {
    padding: 58px 0;
  }

  .co-creator,
  .safety-promise,
  .final-cta__inner {
    border-radius: 22px;
    padding: 24px;
  }

  .co-creator__copy h2,
  .final-cta h2 {
    font-size: 42px;
  }

  .co-creator__perks article,
  .quiz-modal__support {
    grid-template-columns: 1fr;
  }

  .moment-rail {
    grid-auto-columns: minmax(250px, 82vw);
    margin-top: 30px;
  }

  .section-heading {
    text-align: left;
  }

  .section-heading h2 {
    font-size: 38px;
  }

  .activity-grid {
    margin-top: 30px;
  }

  .activity-card {
    min-height: 500px;
    padding: 22px;
  }

  .activity-card h3 {
    font-size: 36px;
  }

  .sticky-conversion {
    align-items: stretch;
    flex-direction: column;
    border-radius: 24px;
    text-align: center;
  }

  .sticky-conversion .primary-button {
    width: 100%;
  }

  .thread-preview,
  .thread-steps article,
  .auth-panel,
  .dashboard-panel,
  .post-login-journey,
  .split-panel,
  .form-section,
  .result-card,
  .support-card,
  .quiz-step,
  .social-hub,
  .social-main,
  .relation-panel,
  .chat-drawer__panel,
  .quiz-modal__panel,
  .admin-panel,
  .admin-hero {
    padding: 20px;
  }

  .relation-item {
    grid-template-columns: 42px 1fr;
  }

  .relation-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .preview-card strong,
  .result-main h3,
  .chat-drawer__panel h3 {
    font-size: 30px;
  }

  .admin-shell {
    width: min(100% - 20px, 100%);
    padding-top: 20px;
  }
}
