﻿:root {
  --bg: #08060f;
  --bg-soft: #120b1d;
  --surface: #171027;
  --surface-2: #211538;
  --text: #f4f0ff;
  --muted: #b8a9d9;
  --accent: #8f5bff;
  --accent-soft: #b993ff;
  --accent-dark: #6d3fe0;
  --border: #382656;
  --success: #58d39a;
  --error: #ff83a9;
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", "Trebuchet MS", sans-serif;
  color: var(--text);
  position: relative;
  background:
    radial-gradient(1200px 600px at 0% -10%, #3a1f66 0%, transparent 55%),
    radial-gradient(1000px 480px at 100% 0%, #1d1334 0%, transparent 55%),
    var(--bg);
  line-height: 1.6;
}

.vault-global-backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.vault-global-backdrop::before {
  content: "";
  position: absolute;
  inset: -8% -8%;
  background:
    radial-gradient(circle at 20% 25%, rgba(197, 170, 255, .18) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 38%, rgba(159, 204, 255, .14) 0 1px, transparent 2px),
    radial-gradient(circle at 45% 74%, rgba(255, 205, 163, .1) 0 1px, transparent 2px);
  background-size: 280px 280px, 340px 340px, 300px 300px;
  opacity: .56;
  animation: particleFieldDrift 11s linear infinite;
}

.bg-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: .44;
  mix-blend-mode: screen;
  animation: orbDrift 7s ease-in-out infinite;
}

.orb-a {
  width: min(44vw, 580px);
  height: min(44vw, 580px);
  left: -12vw;
  top: -8vh;
  background: radial-gradient(circle at 30% 30%, rgba(178, 131, 255, .42), rgba(67, 38, 109, .08) 60%, transparent 76%);
  animation-delay: 0s;
}

.orb-b {
  width: min(38vw, 520px);
  height: min(38vw, 520px);
  right: -10vw;
  top: 10vh;
  background: radial-gradient(circle at 40% 40%, rgba(118, 209, 255, .28), rgba(41, 73, 133, .07) 60%, transparent 78%);
  animation-delay: -7s;
}

.orb-c {
  width: min(46vw, 640px);
  height: min(46vw, 640px);
  left: 22vw;
  bottom: -24vh;
  background: radial-gradient(circle at 45% 45%, rgba(255, 167, 122, .18), rgba(96, 50, 26, .06) 60%, transparent 78%);
  animation-delay: -12s;
}

.orb-d {
  width: min(34vw, 460px);
  height: min(34vw, 460px);
  right: 20vw;
  bottom: -18vh;
  background: radial-gradient(circle at 45% 45%, rgba(202, 133, 255, .25), rgba(72, 34, 109, .08) 60%, transparent 78%);
  animation-delay: -4s;
}

.bg-beam {
  position: absolute;
  width: min(90vw, 1100px);
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(207, 179, 255, .36), transparent);
  opacity: .3;
  filter: blur(.4px);
  animation: beamSweep 5.5s linear infinite;
}

.beam-a {
  top: 20%;
  left: -30%;
  animation-delay: 0s;
}

.beam-b {
  top: 56%;
  left: -42%;
  animation-delay: -5.2s;
}

.beam-c {
  top: 78%;
  left: -36%;
  animation-delay: -10.1s;
}

.bg-dust {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(227, 214, 255, .56);
  box-shadow: 0 0 16px rgba(167, 136, 255, .34);
  opacity: .42;
  animation: dustFloat 4.8s ease-in-out infinite, dustDriftX 5.4s ease-in-out infinite, dustTwinkle 2.6s ease-in-out infinite;
}

.dust-a { top: 10%; left: 12%; animation-delay: -2.4s; }
.dust-b { top: 26%; left: 78%; animation-delay: -6.1s; }
.dust-c { top: 44%; left: 32%; animation-delay: -1.1s; }
.dust-d { top: 68%; left: 84%; animation-delay: -8.7s; }
.dust-e { top: 80%; left: 18%; animation-delay: -4.8s; }
.dust-f { top: 54%; left: 60%; animation-delay: -11.4s; }
.dust-g { top: 16%; left: 54%; animation-delay: -3.5s; }
.dust-h { top: 34%; left: 8%; animation-delay: -6.8s; }
.dust-i { top: 49%; left: 90%; animation-delay: -1.9s; }
.dust-j { top: 63%; left: 44%; animation-delay: -5.2s; }
.dust-k { top: 74%; left: 66%; animation-delay: -7.9s; }
.dust-l { top: 88%; left: 36%; animation-delay: -2.7s; }

@keyframes orbDrift {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(2.4vw, -1.5vh, 0) scale(1.06); }
  100% { transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes beamSweep {
  from {
    transform: translateX(0) translateY(0);
    opacity: .08;
  }
  50% {
    opacity: .26;
  }
  to {
    transform: translateX(150vw) translateY(-8px);
    opacity: .06;
  }
}

@keyframes dustFloat {
  0% { transform: translateY(0) scale(.92); opacity: .14; }
  50% { transform: translateY(-24px) scale(1.18); opacity: .42; }
  100% { transform: translateY(0) scale(.92); opacity: .14; }
}

@keyframes dustDriftX {
  0% { margin-left: 0; }
  50% { margin-left: 18px; }
  100% { margin-left: 0; }
}

@keyframes dustTwinkle {
  0% { filter: brightness(.9); }
  50% { filter: brightness(1.32); }
  100% { filter: brightness(.9); }
}

@keyframes particleFieldDrift {
  0% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-16px, -10px, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

.home-wind-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: .62;
  mix-blend-mode: screen;
}

.home-anime-backdrop {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.wind-streak {
  position: absolute;
  width: min(48vw, 520px);
  height: 2px;
  opacity: .2;
  background: linear-gradient(90deg, transparent, rgba(212, 196, 247, .42), transparent);
  filter: blur(.35px);
  animation: windSweep 4.6s linear infinite;
}

.streak-1 {
  top: 18%;
  left: -32%;
  animation-delay: 0s;
}

.streak-2 {
  top: 42%;
  left: -40%;
  animation-delay: -4s;
}

.streak-3 {
  top: 70%;
  left: -35%;
  animation-delay: -8s;
}

@keyframes windSweep {
  from {
    transform: translateX(0) translateY(0);
    opacity: .08;
  }
  50% {
    opacity: .22;
  }
  to {
    transform: translateX(170vw) translateY(-14px);
    opacity: .06;
  }
}

a { color: var(--accent-soft); text-decoration: none; }
a:hover { color: #d4c0ff; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 1rem;
  background: rgba(8, 6, 15, 0.2);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(3px);
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}

.site-header.scrolled {
  background: rgba(8, 6, 15, 0.92);
  border-bottom-color: var(--border);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: #fff;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #5f438e;
  box-shadow: 0 0 0 1px rgba(143, 91, 255, .25), 0 8px 18px rgba(0, 0, 0, .35);
}

.brand-text {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 0 1rem;
  flex-wrap: nowrap;
}

.main-nav a,
.link-button {
  color: #dac8ff;
  font-size: 0.92rem;
  font-weight: 600;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.main-nav a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: .22rem .52rem;
}

.main-nav a:hover {
  background: rgba(95, 65, 155, .24);
}

.nav-core-link {
  white-space: nowrap;
}

.nav-dropdown {
  position: relative;
}

.nav-notification {
  position: relative;
}

.nav-dropdown summary {
  list-style: none;
  color: #dac8ff;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  padding: .22rem .55rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(42, 27, 70, 0.28);
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-notification summary {
  list-style: none;
  position: relative;
}

.nav-notification summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + .45rem);
  right: 0;
  min-width: 250px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(150deg, rgba(24, 16, 40, .98), rgba(16, 10, 27, .98));
  box-shadow: var(--shadow);
  padding: .5rem;
  display: grid;
  gap: .45rem;
  z-index: 80;
}

.nav-dropdown:not([open]) .nav-dropdown-menu {
  display: none;
}

.nav-dropdown-group {
  display: grid;
  gap: .15rem;
  padding: .15rem 0;
}

.nav-dropdown-group + .nav-dropdown-group {
  border-top: 1px solid rgba(120, 86, 188, .35);
  padding-top: .45rem;
}

.nav-dropdown-label {
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #bba8e0;
  padding: .1rem .55rem .25rem;
  font-weight: 700;
}

.nav-dropdown-menu a {
  display: block;
  padding: .45rem .55rem;
  border-radius: 10px;
  color: #e9ddff;
  font-size: .88rem;
  font-weight: 600;
}

.nav-dropdown-menu a:hover {
  background: rgba(115, 77, 194, .2);
}

.nav-notification-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(214, 166, 192, .85);
  background: linear-gradient(145deg, rgba(194, 72, 116, .95), rgba(140, 42, 79, .95));
  color: #fff;
  font-size: .66rem;
  font-weight: 800;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.nav-notification-menu {
  position: absolute;
  top: calc(100% + .45rem);
  right: 0;
  width: min(92vw, 360px);
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(150deg, rgba(24, 16, 40, .98), rgba(16, 10, 27, .98));
  box-shadow: var(--shadow);
  padding: .6rem;
  display: grid;
  gap: .45rem;
  z-index: 90;
}

.nav-notification:not([open]) .nav-notification-menu {
  display: none;
}

.nav-notification-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .6rem;
}

.nav-notification-head strong {
  font-size: .9rem;
}

.nav-notification-head a {
  font-size: .78rem;
  color: #ccb7f4;
}

.nav-notification-list {
  display: grid;
  gap: .38rem;
  max-height: 360px;
  overflow: auto;
  padding-right: .1rem;
}

.nav-notification-item {
  border: 1px solid rgba(92, 63, 148, .45);
  border-radius: 10px;
  padding: .42rem .5rem;
  background: rgba(30, 19, 50, .55);
  display: grid;
  gap: .12rem;
}

.nav-notification-item strong {
  font-size: .82rem;
}

.nav-notification-item span {
  font-size: .77rem;
  color: #d7caef;
}

.nav-notification-item small {
  font-size: .7rem;
  color: #ae9ccc;
}

.nav-notification-item.is-unread {
  border-color: rgba(156, 121, 237, .72);
  box-shadow: 0 0 0 1px rgba(122, 86, 199, .28);
}

.nav-notification-actions {
  margin: 0;
  display: flex;
  justify-content: flex-end;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border-radius: 999px;
  padding: .35rem .8rem;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .01em;
  white-space: nowrap;
}

.nav-cta-primary {
  border: 1px solid #8c65db;
  color: #f8f2ff;
  background: linear-gradient(130deg, rgba(124, 79, 214, .92), rgba(95, 57, 184, .9));
  box-shadow: 0 10px 20px rgba(43, 22, 78, .35);
}

.nav-cta-primary:hover {
  color: #fff;
  border-color: #a88bf1;
}

.nav-cta-secondary {
  border: 1px solid #554076;
  color: #ecdfff;
  background: rgba(42, 27, 70, .45);
}

.nav-cta-secondary:hover {
  border-color: #7d5abf;
}

.icon-link,
.profile-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(42, 27, 70, 0.35);
  color: #e6ddff;
  padding: .35rem .7rem;
  font-size: .85rem;
  font-weight: 700;
}

.icon-link {
  width: 36px;
  padding: 0;
}

.icon-link:hover,
.profile-link:hover {
  border-color: #6f4cc3;
  box-shadow: 0 0 0 1px rgba(143, 91, 255, 0.25);
}

.nav-spacer { height: 58px; }

.inline-form { margin: 0; }
.page-wrap { width: min(1180px, 95vw); margin: 1.4rem auto 2.8rem; position: relative; z-index: 1; }
.site-footer { position: relative; z-index: 1; }

@media (prefers-reduced-motion: reduce) {
  .vault-global-backdrop::before,
  .bg-orb,
  .bg-beam,
  .bg-dust,
  .fog-layer {
    animation: none;
  }
}

.vault-hero {
  display: block;
  margin-bottom: 1.4rem;
}

.mood-hero {
  min-height: clamp(340px, 56vw, 520px);
}

.mood-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .55s ease;
}

.mood-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.mood-switch {
  position: absolute;
  top: .85rem;
  right: .85rem;
  display: flex;
  gap: .4rem;
  z-index: 3;
}

.mood-chip {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(20, 12, 34, .72);
  color: #e7d9ff;
  padding: .35rem .62rem;
  font-size: .78rem;
  font-weight: 700;
}

.mood-chip.active {
  border-color: #ad8ef0;
  box-shadow: 0 0 0 1px rgba(173, 142, 240, .32);
}

.ambient-layer {
  background:
    radial-gradient(circle at 24% 40%, rgba(193, 173, 240, .2) 0%, transparent 45%),
    radial-gradient(circle at 70% 55%, rgba(117, 85, 190, .22) 0%, transparent 45%),
    radial-gradient(circle at 52% 74%, rgba(245, 224, 158, .12) 0%, transparent 40%);
  animation: fogDrift 22s linear infinite alternate;
}

.weekly-theme-card {
  border-color: #5d4786;
}

.theme-ocean {
  background: linear-gradient(125deg, rgba(17, 39, 62, .86), rgba(11, 20, 33, .88));
}

.theme-gothic {
  background: linear-gradient(125deg, rgba(43, 21, 53, .86), rgba(17, 10, 25, .9));
}

.theme-ember {
  background: linear-gradient(125deg, rgba(65, 35, 20, .85), rgba(22, 13, 18, .9));
}

.theme-moonlit {
  background: linear-gradient(125deg, rgba(27, 31, 65, .85), rgba(16, 14, 31, .9));
}

.hero-feature-banner {
  position: relative;
  min-height: clamp(320px, 54vw, 520px);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  background: #0f0a1b;
}

.hero-feature-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(7, 5, 13, 0.9) 0%, rgba(12, 8, 20, 0.35) 58%, rgba(8, 6, 14, 0.7) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: .55rem;
  padding: 1.3rem;
}

.fog-layer {
  position: absolute;
  inset: auto -20% -8% -20%;
  height: 45%;
  background: radial-gradient(circle at 30% 50%, rgba(180, 155, 255, .26), transparent 55%),
              radial-gradient(circle at 70% 60%, rgba(126, 88, 218, .2), transparent 55%);
  animation: fogDrift 16s linear infinite alternate, fogPulse 9s ease-in-out infinite;
  pointer-events: none;
}

@keyframes fogDrift {
  from { transform: translateX(-2%); opacity: .7; }
  to { transform: translateX(2%); opacity: .95; }
}

@keyframes fogPulse {
  0% { filter: blur(0px); opacity: .68; }
  50% { filter: blur(1.2px); opacity: .92; }
  100% { filter: blur(0px); opacity: .68; }
}

.hero,
.hero-copy,
.hero-feature,
.card,
.story-card,
.glass-card,
.auth-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(150deg, var(--surface), var(--surface-2));
  box-shadow: var(--shadow);
}

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

.hero,
.hero-copy,
.card,
.auth-card {
  padding: 1.3rem;
}

.hero h1,
.hero-copy h1 {
  margin: 0.2rem 0 0.7rem;
  font-size: clamp(1.8rem, 4vw, 2.9rem);
}

.hero-copy p { max-width: 54ch; }
.hero-actions { display: flex; gap: 0.7rem; flex-wrap: wrap; }

.hero-feature {
  overflow: hidden;
  display: grid;
  grid-template-rows: 260px auto;
  transition: transform .25s ease, box-shadow .25s ease;
}
.hero-feature:hover { transform: translateY(-2px); }
.hero-feature img { width: 100%; height: 100%; object-fit: cover; }
.hero-feature-meta { padding: 1rem; }
.hero-feature-meta h2 { margin: 0 0 .4rem; }

.eyebrow {
  margin: 0;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}

.story-section { margin: 1.4rem 0; }
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  flex-wrap: wrap;
}

.section-header h2,
.section-header h3 {
  margin: 0;
  line-height: 1.2;
}

.section-header > span {
  margin-left: auto;
  color: var(--muted);
  font-size: .86rem;
  text-align: right;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.85rem;
  align-items: stretch;
}

.start-here-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
}

.story-grid > * {
  height: 100%;
}

.h-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 260px);
  gap: .75rem;
  overflow-x: auto;
  padding-bottom: .3rem;
}

.resume-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: .9rem;
  background: linear-gradient(160deg, rgba(30, 18, 52, .95), rgba(20, 13, 34, .95));
  display: grid;
  gap: .45rem;
}

.curated {
  border: 1px solid #5a3a94;
  border-radius: 18px;
  padding: .9rem;
  background: linear-gradient(160deg, rgba(30, 18, 50, .65), rgba(12, 9, 21, .4));
}

.updates-list {
  display: grid;
  gap: .55rem;
}

.countdown {
  color: #d7c5ff;
  font-weight: 700;
  letter-spacing: .01em;
}

.community-hero {
  margin-bottom: 1.2rem;
}

.community-discord-grid .card {
  min-height: 220px;
}

.milestone-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .6rem;
}

.milestone-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(28, 18, 44, .8);
  padding: .75rem;
  display: grid;
  gap: .2rem;
}

.milestone-card strong {
  font-size: 1.2rem;
  color: #f1e9ff;
}

.milestone-card span {
  color: var(--muted);
  font-size: .85rem;
}

.member-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: .65rem;
  align-items: center;
}

.member-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #7049be;
  background: rgba(92, 57, 153, .35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f2ebff;
  font-weight: 800;
}

.member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.creator-hero-banner {
  margin-bottom: 1rem;
}

.creator-profile-grid .card {
  min-height: 280px;
}

.creator-profile-head {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: .8rem;
  align-items: center;
}

.creator-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #7a54cb;
  background: rgba(85, 52, 140, .35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.3rem;
}

.creator-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.creator-stats-grid {
  margin-top: .9rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .6rem;
}

.application-hero {
  margin-bottom: 1rem;
}

.timeline-list {
  display: grid;
  gap: .45rem;
  margin: 0;
  padding-left: 1rem;
}

.app-progress-wrap {
  margin-bottom: .75rem;
}

.app-progress-bar {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(40, 26, 67, .8);
  border: 1px solid var(--border);
  overflow: hidden;
}

.app-progress-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(160deg, var(--accent), var(--accent-dark));
  transition: width .25s ease;
}

.app-step {
  display: grid;
  gap: .8rem;
}

.checkbox-grid {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: .75rem;
  display: grid;
  gap: .55rem;
  background: rgba(18, 12, 31, .7);
}

.checkbox-grid legend {
  padding: 0 .3rem;
  color: #e5d8ff;
  font-weight: 700;
}

.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-weight: 500;
}

.checkbox-grid input[type="checkbox"] {
  width: 16px;
  height: 16px;
}

.support-hero {
  margin-bottom: 1rem;
}

.support-search-main input {
  margin-top: .4rem;
  min-height: 46px;
}

.support-help-card .update-thumb {
  margin-bottom: .5rem;
}

.faq-list {
  display: grid;
  gap: .55rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(20, 14, 33, .78);
  padding: .55rem .7rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-item p {
  margin: .45rem 0 0;
  color: var(--muted);
}

.auth-hero {
  min-height: 260px;
  margin-bottom: 1rem;
}

.auth-overlay {
  justify-content: center;
}

.profile-hero {
  margin-bottom: 1rem;
}

.profile-hero .hero-overlay {
  justify-content: flex-end;
}

.about-hero {
  min-height: clamp(320px, 52vw, 500px);
  margin-bottom: 1rem;
}

.about-cta {
  text-align: center;
  padding: 1.5rem;
}

.contact-hero {
  min-height: clamp(300px, 48vw, 460px);
  margin-bottom: 1rem;
}

.vaultplus-hero {
  min-height: clamp(330px, 54vw, 520px);
  margin-bottom: 1rem;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .8rem;
  align-items: stretch;
}

.tier-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem;
  background: linear-gradient(160deg, rgba(28, 18, 48, .95), rgba(18, 11, 30, .95));
  display: grid;
  gap: .5rem;
  grid-template-rows: auto auto auto auto auto auto 1fr auto;
  align-content: start;
  height: 100%;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.tier-card h3 {
  margin: .15rem 0 .25rem;
  min-height: 2.1rem;
}

.tier-card:hover {
  transform: translateY(-3px);
  border-color: #8f5bff;
  box-shadow: 0 0 0 1px rgba(143, 91, 255, .3), 0 12px 30px rgba(20, 10, 34, .5);
}

.tier-card-highlight {
  border-color: #b993ff;
  box-shadow: 0 0 0 1px rgba(185, 147, 255, .35), 0 14px 34px rgba(34, 16, 58, .45);
  transform: none;
}

.tier-price {
  margin: 0;
  font-size: 1.9rem;
  font-weight: 800;
  color: #f6eeff;
}

.tier-price small {
  font-size: .9rem;
  color: var(--muted);
  margin-left: .2rem;
}

.tier-card ul {
  margin: .1rem 0 .2rem;
  padding-left: 1rem;
  display: grid;
  gap: .25rem;
  align-content: start;
}

.tier-card > .button-link {
  align-self: end;
  min-height: 40px;
  max-height: 44px;
  padding: .55rem .85rem;
}

.tier-annual-line {
  margin: -.2rem 0 0;
  font-size: .92rem;
  color: #d7c8f4;
  min-height: 1.5rem;
  line-height: 1.2;
}

.was-price {
  text-decoration: line-through;
  color: #aa97ca;
  margin-right: .4rem;
}

.deal-price {
  color: #ffd98f;
}

.tier-savings {
  margin: 0;
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.24;
  color: #ffe5a8;
  background: rgba(205, 169, 95, .14);
  border: 1px solid rgba(205, 169, 95, .45);
  border-radius: 10px;
  padding: .35rem .5rem;
  min-height: 3.25rem;
  display: flex;
  align-items: center;
}

.tier-meta-group {
  display: grid;
  gap: .38rem;
  align-content: start;
}

.tier-meta {
  margin: 0;
  line-height: 1.45;
}

.tier-meta-purpose {
  min-height: 3rem;
}

.tier-meta-best {
  min-height: 4.4rem;
}

.tier-meta-identity {
  min-height: 4.4rem;
}

.vault-compare-wrap .dashboard-table td,
.vault-compare-wrap .dashboard-table th {
  text-align: center;
  vertical-align: middle;
  line-height: 1.25;
}

.vault-compare-wrap .dashboard-table td:first-child,
.vault-compare-wrap .dashboard-table th:first-child {
  text-align: left;
  min-width: 230px;
}

.vault-compare-table {
  table-layout: fixed;
}

.vault-compare-table th:not(:first-child),
.vault-compare-table td:not(:first-child) {
  width: 118px;
  white-space: nowrap;
}

.compare-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
}

.compare-flag.yes {
  color: #d4ffe7;
  background: rgba(70, 192, 122, .24);
  border: 1px solid rgba(70, 192, 122, .6);
}

.compare-flag.no {
  color: #ffc6d0;
  background: rgba(201, 84, 116, .24);
  border: 1px solid rgba(201, 84, 116, .6);
}

.progress-track {
  height: 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(20, 12, 34, .7);
}

.progress-track span {
  display: block;
  height: 100%;
  background: linear-gradient(160deg, #cda95f, #8f5bff);
}

.locked-preview {
  position: relative;
  overflow: hidden;
}

.locked-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(13, 8, 22, .15), rgba(13, 8, 22, .55));
  backdrop-filter: blur(1.8px);
}

.vault-originals-hero .hero-overlay,
.vault-original-story-banner .story-banner-overlay {
  background: linear-gradient(105deg, rgba(10, 7, 14, .92) 0%, rgba(20, 11, 25, .6) 55%, rgba(8, 6, 12, .85) 100%);
}

.original-badge {
  border-color: #b89346;
  background: linear-gradient(140deg, rgba(188, 143, 60, .28), rgba(129, 80, 176, .28));
  color: #ffe8b2;
}

.vault-original-card {
  border-color: #5f448a;
  box-shadow: 0 0 0 1px rgba(184, 143, 70, .2), 0 12px 28px rgba(16, 10, 28, .45);
}

.vault-original-feature {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1rem;
}

.vault-original-tracker {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .55rem;
  margin-bottom: .8rem;
}

.tracker-stage {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: .65rem;
  display: grid;
  gap: .2rem;
  background: rgba(26, 17, 42, .8);
}

.tracker-stage.complete {
  border-color: #b89346;
  box-shadow: 0 0 0 1px rgba(184, 143, 70, .22);
}

.tracker-stage.current {
  border-color: #9a6ee4;
  box-shadow: 0 0 0 1px rgba(154, 110, 228, .35), 0 0 18px rgba(154, 110, 228, .25);
}

.update-row {
  display: grid;
  grid-template-columns: 34px 1fr auto auto;
  align-items: center;
  gap: .65rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: .65rem .7rem;
  background: rgba(24, 16, 39, .88);
}

.update-thumb {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid #6544aa;
  background: rgba(120, 80, 210, .2);
}

.update-main { display: grid; line-height: 1.2; }
.update-main small { color: var(--muted); }
.update-chapter, .update-time, .meta-sub { color: var(--muted); font-size: .83rem; }

.genre-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: .7rem;
}

.genre-card {
  min-height: 92px;
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: .7rem;
  display: flex;
  align-items: end;
  justify-content: start;
  font-weight: 700;
  color: #f5f0ff;
  background: linear-gradient(130deg, rgba(38, 22, 62, .9), rgba(20, 14, 34, .9));
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.genre-card:hover {
  transform: translateY(-2px);
  border-color: #7c56d1;
  box-shadow: 0 0 0 1px rgba(143, 91, 255, 0.3);
}

.genre-art-1 { background: linear-gradient(130deg, rgba(88, 50, 150, .65), rgba(16, 12, 30, .92)); }
.genre-art-2 { background: linear-gradient(130deg, rgba(135, 46, 94, .55), rgba(18, 10, 26, .92)); }
.genre-art-3 { background: linear-gradient(130deg, rgba(59, 111, 162, .52), rgba(10, 16, 30, .92)); }
.genre-art-4 { background: linear-gradient(130deg, rgba(80, 140, 108, .52), rgba(10, 22, 24, .9)); }
.genre-art-5 { background: linear-gradient(130deg, rgba(142, 110, 62, .5), rgba(18, 14, 26, .92)); }
.genre-art-6 { background: linear-gradient(130deg, rgba(70, 70, 155, .55), rgba(12, 10, 28, .92)); }

.library-banner {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.2rem;
  background: linear-gradient(120deg, rgba(31, 17, 52, .8), rgba(12, 8, 20, .75));
}

.library-search-wrap {
  margin-top: 1rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1rem;
  background: rgba(18, 12, 30, .75);
}

.library-search-form { display: grid; gap: .75rem; }
.search-label input {
  width: 100%;
  min-height: 50px;
  border-radius: 14px;
  font-size: 1rem;
}

.search-inline-controls {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .65rem;
}

.search-suggestion-row {
  margin-top: .6rem;
  display: flex;
  align-items: center;
  gap: .45rem;
  flex-wrap: wrap;
}
.search-suggestion-row > span { color: var(--muted); font-size: .88rem; }
.recent-search-list { display: flex; gap: .4rem; flex-wrap: wrap; }

.quick-filter-row {
  margin-top: .9rem;
  display: flex;
  gap: .55rem;
  flex-wrap: wrap;
  align-items: center;
}

.quick-filter {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: .4rem .78rem;
  color: #e7ddff;
  background: rgba(39, 25, 64, .56);
  font-size: .88rem;
}

.quick-filter.active,
.quick-filter:hover {
  border-color: #7853cc;
  box-shadow: 0 0 0 1px rgba(143, 91, 255, .3);
}

.view-toggle { margin-left: auto; display: flex; gap: .4rem; }
.view-btn {
  min-width: 70px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: .42rem .65rem;
  background: rgba(39, 25, 64, .56);
  color: #e7ddff;
  font-weight: 700;
}

.view-btn.active {
  border-color: #8c62eb;
  background: rgba(96, 63, 170, .38);
}

.genre-filter-row {
  margin-top: .9rem;
  display: flex;
  gap: .45rem;
  flex-wrap: wrap;
}
.genre-pill {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: .34rem .66rem;
  font-size: .82rem;
  color: #ddd1ff;
}

.library-layout {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: .9rem;
}

.library-sidebar h2 { margin-top: 0; }

.library-main { min-width: 0; }
.library-grid {
  display: grid;
  gap: .85rem;
}
.library-grid.grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.library-grid.compact { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
.library-grid.compact .library-card {
  display: grid;
  grid-template-columns: 130px 1fr;
}
.library-grid.compact .story-cover { height: 100%; min-height: 180px; }

.library-card .synopsis { color: #cbbce9; font-size: .9rem; min-height: 2.4em; }
.library-hidden { display: none; }
.home-hidden { display: none; }

.card-actions button,
.card-actions .button-link {
  min-height: 36px;
  font-size: .82rem;
  padding: .45rem .7rem;
}

.card-actions {
  margin-top: auto;
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.empty-state-card {
  text-align: center;
  padding: 2rem 1rem;
}

.story-card {
  overflow: hidden;
  transition: transform .26s ease, border-color .26s ease, box-shadow .26s ease;
}
.story-card:hover { transform: translateY(-2px); border-color: #6d4ab1; }
.glow-hover:hover { box-shadow: 0 0 0 1px rgba(153, 111, 255, 0.35), 0 15px 30px rgba(38, 20, 66, 0.35); }
.story-cover { width: 100%; height: 250px; object-fit: cover; background: #251a3b; }
.story-content { padding: 0.9rem; }
.story-content h3 { margin: 0 0 0.4rem; font-size: 1rem; }
.meta-row { display: flex; justify-content: space-between; color: var(--muted); font-size: .85rem; }

.card-list {
  display: grid;
  gap: 0.75rem;
  align-items: stretch;
}

.card-list > * {
  height: 100%;
}
.glass-card {
  padding: 0.8rem;
  display: grid;
  gap: .25rem;
  align-content: start;
  background: linear-gradient(160deg, rgba(38, 24, 64, 0.95), rgba(22, 14, 39, 0.95));
}
.glass-card strong { color: #f6f1ff; }

.card h1, .card h2, .card h3, .card h4,
.story-card h1, .story-card h2, .story-card h3, .story-card h4,
.glass-card h1, .glass-card h2, .glass-card h3, .glass-card h4 {
  margin-top: 0;
}

.story-banner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 1rem;
}
.story-banner img { width: 100%; height: clamp(180px, 36vw, 330px); object-fit: cover; display: block; }
.story-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 8, 24, 0.1), rgba(11, 7, 18, 0.88));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
}
.story-banner-overlay h1 { margin: 0.2rem 0 0; }
.story-header {
  display: grid;
  grid-template-columns: 1.3fr .8fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.story-header-cover {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--border);
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  align-items: stretch;
}

.split-grid > * {
  height: 100%;
}

.chip-row { display: flex; flex-wrap: wrap; gap: .45rem; }
.chip {
  display: inline-flex;
  border: 1px solid #5b3b92;
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  color: #e5d7ff;
  font-size: .82rem;
  background: rgba(92, 58, 148, 0.25);
}

.episode-list { display: grid; gap: .65rem; }
.episode-row {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: .8rem;
  background: var(--surface);
  display: flex;
  justify-content: space-between;
  gap: .8rem;
}

.reader-layout { width: min(900px, 96vw); margin: 0 auto; }
.reader-layout {
  --reader-brightness: 1;
  --reader-text-scale: 1;
}
.reader-layout .panel-stack,
.reader-layout .story-body,
.reader-layout .card {
  filter: brightness(var(--reader-brightness));
}
.reader-layout .story-body,
.reader-layout .panel-card figcaption,
.reader-layout .card p,
.reader-layout .card small,
.reader-layout .card li,
.reader-layout .card span {
  font-size: calc(1rem * var(--reader-text-scale));
}
.reader-layout.reader-high-contrast .panel-card,
.reader-layout.reader-high-contrast .card,
.reader-layout.reader-high-contrast .story-body {
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}
.reader-controls-card label {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.reader-actions { margin-top: .75rem; }
.panel-stack { display: grid; gap: .8rem; }
.panel-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #130d20;
}
.panel-card img { width: 100%; display: block; }
.panel-card figcaption { padding: .55rem .75rem; color: var(--muted); }
.story-body {
  margin-top: .9rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
}

.episode-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .6rem;
  margin-top: 1rem;
}
.episode-nav a,
.episode-nav span {
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .7rem;
  background: var(--surface);
}

input, textarea, select, button { font: inherit; }
label { display: grid; gap: .3rem; font-weight: 600; }
.form-grid, .filter-grid { display: grid; gap: .8rem; }
.filter-grid { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
input, textarea, select {
  width: 100%;
  background: #0f0a1a;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .66rem .74rem;
}
button,
.button-link {
  border: 0;
  border-radius: 11px;
  background: linear-gradient(160deg, var(--accent), var(--accent-dark));
  color: #fff;
  font-weight: 700;
  padding: .7rem .95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
button:hover,
.button-link:hover { filter: brightness(1.08); }
.button-link.secondary { background: linear-gradient(160deg, #47306f, #32224e); }

.dashboard-table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: 14px; background: var(--surface); }
.dashboard-table { width: 100%; border-collapse: collapse; }
.dashboard-table th,
.dashboard-table td { border-bottom: 1px solid #2e2247; padding: .75rem; text-align: left; }
.table-actions { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; }
.table-actions form { margin: 0; }
.danger-link { color: #ff9dbb; background: transparent; border: 0; padding: 0; font-weight: 700; }

.flash {
  width: min(1180px, 95vw);
  margin: .8rem auto 0;
  border-radius: 10px;
  padding: .65rem .8rem;
  font-weight: 700;
}
.flash.success { background: #16352a; color: var(--success); }
.flash.error { background: #421a2a; color: var(--error); }

.site-footer {
  width: min(1180px, 95vw);
  margin: 2rem auto;
  color: var(--muted);
}
.footer-links { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: .45rem; }

.reveal { opacity: 0; transform: translateY(12px); transition: opacity .45s ease, transform .45s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

.lazy-section {
  content-visibility: auto;
  contain-intrinsic-size: 780px;
}

.upload-widget {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin: -0.1rem 0 0.5rem;
}

.upload-widget input[type="file"] {
  display: none;
}

.upload-status {
  font-size: 0.82rem;
  color: var(--muted);
}

.upload-status[data-tone="success"] {
  color: #7ce7bd;
}

.upload-status[data-tone="error"] {
  color: #ff9fa8;
}

.post-media {
  display: block;
  width: 100%;
  max-height: 18rem;
  object-fit: cover;
  border-radius: 0.8rem;
  border: 1px solid rgba(180, 140, 255, 0.25);
  margin: 0.4rem 0 0.6rem;
}

#studio-status-line[data-tone="error"] {
  color: #ff9fa8;
}

#studio-status-line[data-tone="success"] {
  color: #79dfb9;
}

.studio-preview-frame {
  width: 100%;
  max-height: 70vh;
  overflow: auto;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(13, 8, 23, 0.96), rgba(10, 6, 18, 0.98));
  padding: 0.55rem;
}

.studio-preview-frame.preview-phone {
  max-width: 390px;
  margin: 0 auto;
}

.studio-preview-frame.preview-tablet {
  max-width: 720px;
  margin: 0 auto;
}

.studio-preview-frame.preview-desktop {
  max-width: 100%;
}

.studio-preview-inner {
  display: grid;
  gap: 0.45rem;
}

.studio-preview-panel {
  margin: 0;
  border: 1px solid rgba(160, 128, 255, 0.22);
  border-radius: 10px;
  overflow: hidden;
  background: #0f0a1a;
}

.studio-preview-mode-btn.active {
  border-color: rgba(180, 140, 255, 0.8);
  box-shadow: 0 0 0 1px rgba(180, 140, 255, 0.35) inset;
}

.studio-slice-viewer {
  min-height: 8rem;
}

.studio-slice-grid {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.studio-slice-card {
  display: grid;
  gap: 0.35rem;
}

.studio-slice-image {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(154, 118, 255, 0.25);
  display: block;
}

.panel-stack-seamless {
  gap: 0.15rem;
}

.panel-stack-seamless .panel-card {
  border-color: rgba(154, 118, 255, 0.2);
}

@media (max-width: 960px) {
  .vault-hero,
  .story-header,
  .split-grid,
  .editor-grid { grid-template-columns: 1fr; }
  .library-layout { grid-template-columns: 1fr; }
  .library-sidebar { order: 2; }
  .library-main { order: 1; }
  .search-inline-controls { grid-template-columns: 1fr; }
  .update-row { grid-template-columns: 34px 1fr; }
  .update-chapter, .update-time { grid-column: 2; }
  .hero-feature { grid-template-rows: 220px auto; }
  .tier-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vault-original-feature { grid-template-columns: 1fr; }
  .vault-original-tracker { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mood-switch { position: static; padding: .7rem; justify-content: flex-start; }
  .start-here-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .site-header { align-items: flex-start; flex-direction: column; gap: .55rem; }
  .main-nav { width: 100%; justify-content: flex-start; overflow-x: auto; padding: 0; }
  .nav-actions { width: 100%; justify-content: flex-end; }
  .nav-cta { display: none; }
  .nav-spacer { height: 92px; }
  .episode-nav { grid-template-columns: 1fr; }
  .story-cover { height: 220px; }
  .hero-overlay { padding: 1rem; }
  .h-scroll { grid-auto-columns: minmax(210px, 220px); }
  .library-grid.grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .library-grid.compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .library-grid.compact .library-card { grid-template-columns: 1fr; }
  .view-toggle { width: 100%; margin-left: 0; }
  .view-btn { flex: 1; }
  .tier-grid { grid-template-columns: 1fr; }
  .tier-card-highlight { transform: none; }
  .vault-original-tracker { grid-template-columns: 1fr; }
  .nav-dropdown-menu { position: static; min-width: 0; margin-top: .45rem; }
  .nav-notification-menu { position: fixed; top: 108px; right: 2.5vw; width: min(95vw, 380px); }
  .vault-global-backdrop { opacity: .72; }
  .bg-beam { opacity: .18; }
  .bg-dust { opacity: .26; }
  .home-wind-canvas { opacity: .42; }
  .story-section { margin: 1rem 0; }
  .hero-actions .button-link,
  .table-actions .button-link { min-height: 42px; }
  .chip-row { gap: .42rem; }
}

@media (prefers-reduced-motion: reduce) {
  .home-wind-canvas,
  .home-anime-backdrop {
    display: none;
  }
}
