:root {
  --bg: #07080c;
  --bg-card: #0e1018;
  --bg-elevated: #151822;
  --text: #f4f1ea;
  --muted: #a39eb8;
  --line: rgba(244, 241, 234, 0.1);
  --accent: #c9a0ff;
  --accent-warm: #ff8fab;
  --radius: 14px;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.55);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 45% at 50% -8%, rgba(201, 160, 255, 0.09), transparent 58%),
    radial-gradient(ellipse 50% 35% at 100% 10%, rgba(255, 143, 171, 0.05), transparent 50%),
    radial-gradient(ellipse 40% 30% at 0% 80%, rgba(88, 166, 255, 0.04), transparent 55%);
  pointer-events: none;
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(10, 11, 16, 0.82);
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand span {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  display: block;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.92rem;
}

.nav a {
  color: var(--muted);
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--text);
}

.hero {
  padding: 4.5rem 0 3rem;
  position: relative;
}

.hero --with-art {
  overflow: hidden;
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.35;
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero --with-art .wrap {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.08;
  margin: 0 0 1rem;
  font-weight: 500;
}

.hero .lede {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 42rem;
  margin: 0 0 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid transparent;
  transition: transform 0.15s, background 0.2s, border-color 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, #d4b3ff 0%, var(--accent) 40%, #8b6fd4 100%);
  color: #0a0812;
  box-shadow: 0 8px 28px rgba(201, 160, 255, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 12px 36px rgba(201, 160, 255, 0.4);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.stat {
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.stat span {
  color: var(--muted);
  font-size: 0.85rem;
}

.section {
  padding: 3.5rem 0;
}

.section-head {
  margin-bottom: 2rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin: 0 0 0.5rem;
  font-weight: 500;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 38rem;
}

.library {
  display: grid;
  gap: 1.5rem;
}

/* Horizontal story selector */
.story-slider-wrap {
  margin-top: 1.25rem;
}
.story-slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.story-slider-hint {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  text-align: center;
  flex: 1;
}
.story-slider-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  color: var(--text);
  font-size: 1.25rem;
  cursor: pointer;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.story-slider-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: scale(1.05);
}
.story-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 78%);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.35rem 0.15rem 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.story-slider .story-slide {
  scroll-snap-align: center;
  min-height: 100%;
}
@media (min-width: 900px) {
  .story-slider {
    grid-auto-columns: minmax(320px, 42%);
  }
}

.book-card {
  display: grid;
  grid-template-columns: 6px 1fr;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow);
  transition: border-color 0.2s, transform 0.2s;
}

.book-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.16);
}

.book-accent {
  width: 6px;
}

.book-body {
  padding: 1.5rem 1.5rem 1.25rem;
}

.book-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.book-meta .pill {
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.book-body h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  margin: 0 0 0.35rem;
  font-weight: 500;
}

.hook-lead {
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.5rem;
  line-height: 1.45;
}

.tagline {
  font-style: italic;
  color: var(--accent-warm);
  margin: 0 0 1rem;
  font-size: 0.98rem;
}

.synopsis {
  color: #d8d4e6;
  margin: 0 0 1rem;
  max-width: 62ch;
}

.hooks {
  margin: 0 0 1.25rem;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.hooks li {
  margin-bottom: 0.35rem;
}

.hooks li::marker {
  color: var(--accent);
}

.book-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.book-actions .btn {
  font-size: 0.85rem;
  padding: 0.6rem 1rem;
}

.btn-soon {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 760px) {
  .about-grid {
  grid-template-columns: 1fr;
  }

  .nav {
  display: none;
  }
}

.panel {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-elevated);
}

.panel h3 {
  font-family: var(--font-display);
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
}

.panel p,
.panel li {
  color: var(--muted);
  font-size: 0.95rem;
}

.panel ul {
  margin: 0;
  padding-left: 1.1rem;
}

.panel li {
  margin-bottom: 0.4rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 3rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

/* --- Creative Studio hub zazz --- */

#ambient-canvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

body[data-mode="library"],
body.library-page { --accent: #c9a248; --accent-warm: #b22a30;
}

body[data-mode="library"]::before,
body.library-page::before {
  background:
  radial-gradient(ellipse 70% 45% at 20% 0%, rgba(178, 42, 48, 0.12), transparent 55%),
  radial-gradient(ellipse 60% 40% at 90% 10%, rgba(201, 162, 72, 0.1), transparent 50%);
}

.brand a {
  color: inherit;
}

.brand a:hover {
  color: var(--accent);
}

.hero --hub {
  padding-top: 3.5rem;
}

.hero --compact {
  padding: 1.5rem 0 0;
  margin-bottom: 1.5rem;
}

.eyebrow --gold {
  color: var(--accent);
}

.hub-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.hub-switch-btn {
  font: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.hub-switch-btn:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.hub-switch-btn.is-active {
  color: #0a0812;
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), #8b6fd4);
}

body[data-mode="library"] .hub-switch-btn.is-active,
body.library-page .hub-switch-btn.is-active {
  background: linear-gradient(135deg, #c9a248, #b22a30);
}

.hub-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 700px) {
  .hub-duo {
  grid-template-columns: 1fr;
  }
}

.hub-tile {
  display: block;
  padding: 1.5rem;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid var(--line);
  background: var(--bg-card);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.hub-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
}

.hub-tile-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.hub-tile strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.hub-tile span:last-child {
  color: var(--muted);
  font-size: 0.88rem;
}

.hub-tile --fiction {
  border-left: 4px solid #c9a0ff;
}

.hub-tile --library {
  border-left: 4px solid #b22a30;
}

.section --library {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(178, 42, 48, 0.04), transparent 30%);
}

.mwl-hero-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.5rem;
  padding: 1.75rem;
  border: 1px solid rgba(201, 162, 72, 0.2);
  border-radius: calc(var(--radius) + 4px);
  background: rgba(18, 20, 28, 0.85);
}

@media (max-width: 860px) {
  .mwl-hero-panel {
  grid-template-columns: 1fr;
  }
}

.mwl-typed {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.95rem;
  color: #c9a248;
  min-height: 1.5em;
  margin-bottom: 0.75rem;
}

.mwl-hero-copy h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin: 0 0 0.75rem;
}

.btn-library {
  background: linear-gradient(135deg, #c9a248, #b22a30);
  color: #0a0812;
  margin-top: 1rem;
}

.mwl-funnel-cover {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s;
}

.mwl-funnel-cover:hover {
  transform: scale(1.02) rotate(-0.5deg);
}

.mwl-funnel-cover img {
  width: min(360px, 100%);
  height: auto;
}

.mwl-funnel-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(10, 11, 16, 0.88);
  font-size: 0.78rem;
  font-weight: 600;
  color: #c9a248;
  border: 1px solid rgba(201, 162, 72, 0.35);
}

.path-picker {
  margin-bottom: 2rem;
}

.path-label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.75rem;
}

.path-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.path-chip {
  font: inherit;
  font-size: 0.85rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}

.path-chip.is-active,
.path-chip:hover {
  color: var(--text);
  border-color: rgba(201, 162, 72, 0.45);
  background: rgba(201, 162, 72, 0.1);
}

.path-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  min-height: 2.5rem;
}

.path-step {
  font-size: 0.82rem;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  animation: path-in 0.45s ease backwards;
}

.path-arrow {
  color: #c9a248;
  font-size: 0.9rem;
}

@keyframes path-in {
  from {
  opacity: 0;
  transform: translateY(6px);
  }
}

.mwl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.mwl-card { --mwl-accent: #b22a30;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  background: var(--bg-card);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.2s;
  transform-style: preserve-3d;
}

.mwl-card:hover {
  transform: translateY(-4px) perspective(800px) rotateX(2deg);
  border-color: color-mix(in srgb, var(--mwl-accent) 40%, transparent);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.mwl-card --funnel {
  grid-column: span 1;
  border-color: rgba(201, 162, 72, 0.35);
  box-shadow: 0 0 0 1px rgba(201, 162, 72, 0.15);
}

.mwl-card-cover {
  position: relative;
  aspect-ratio: 1.6;
  overflow: hidden;
  background: #1a2332;
}

.mwl-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mwl-num {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  background: rgba(10, 11, 16, 0.82);
  color: var(--mwl-accent);
  border: 1px solid color-mix(in srgb, var(--mwl-accent) 50%, transparent);
}

.mwl-card-body {
  padding: 1rem 1.1rem 1.2rem;
}

.mwl-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.mwl-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.35rem;
}

.mwl-tag {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  color: var(--mwl-accent);
  margin: 0 0 0.5rem;
}

.mwl-sub {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.45;
}

.panel --library {
  border-color: rgba(201, 162, 72, 0.2);
  background: linear-gradient(145deg, rgba(178, 42, 48, 0.06), rgba(18, 20, 28, 0.9));
}

.funnel-spotlight {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  margin-top: 2rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-card);
}

@media (max-width: 760px) {
  .funnel-spotlight {
  grid-template-columns: 1fr;
  }
}

.funnel-spotlight img {
  border-radius: 8px;
  max-width: 100%;
}

.price-tag {
  font-weight: 700;
  color: #c9a248;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.muted {
  color: var(--muted);
}

/* --- Polish pass: method, lens, badges, start grid --- */

.nav a[aria-current="page"] {
  color: var(--text);
  font-weight: 600;
}

.nav a:focus-visible,
.hub-switch-btn:focus-visible,
.path-chip:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.method-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin: 1.5rem 0 0.5rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 162, 72, 0.2);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.9rem;
}

.method-step strong {
  color: #c9a248;
  font-weight: 600;
}

.method-arrow {
  color: var(--muted);
  font-size: 0.85rem;
}

.section --lens {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(140, 108, 200, 0.08), transparent 70%);
}

.lens-spotlight {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  padding: 1.75rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(140, 108, 200, 0.35);
  background: linear-gradient(135deg, rgba(140, 108, 200, 0.1), rgba(18, 20, 28, 0.92));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

@media (max-width: 760px) {
  .lens-spotlight {
  grid-template-columns: 1fr;
  }
}

.lens-spotlight-cover {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s;
}

.lens-spotlight-cover:hover {
  transform: scale(1.02);
}

.lens-spotlight-cover img {
  width: min(280px, 100%);
  height: auto;
}

.eyebrow --lens {
  color: #b8a0e8;
}

.lens-spotlight h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin: 0 0 0.5rem;
}

.lens-tag {
  font-family: "IBM Plex Mono", monospace;
  color: #8c6cc8;
  margin: 0 0 1rem;
}

.bundle-panel {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.75rem;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(201, 162, 72, 0.25);
  background: var(--bg-card);
}

.bundle-stats {
  display: flex;
  gap: 1.5rem;
}

.bundle-stats .stat {
  text-align: center;
}

.bundle-stats .stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #c9a248;
}

.bundle-stats .stat span {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mwl-badges {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: flex-end;
}

.mwl-badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  background: rgba(10, 11, 16, 0.88);
  border: 1px solid var(--line);
}

.mwl-badge --funnel {
  color: #c9a248;
  border-color: rgba(201, 162, 72, 0.4);
}

.mwl-badge --passion {
  color: #b8a0e8;
  border-color: rgba(140, 108, 200, 0.45);
}

.mwl-badge --ship {
  color: #60a878;
  border-color: rgba(96, 168, 120, 0.4);
}

.mwl-card --passion {
  border-color: rgba(140, 108, 200, 0.35);
}

.mwl-card --passion:hover {
  border-color: rgba(140, 108, 200, 0.55);
}

.mwl-hook {
  font-size: 0.86rem;
  color: var(--text);
  opacity: 0.88;
  margin: 0 0 0.45rem;
  line-height: 1.4;
}

.path-step {
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, background 0.2s;
}

.path-step:hover {
  border-color: rgba(201, 162, 72, 0.45);
  background: rgba(201, 162, 72, 0.08);
}

.mwl-card --pulse {
  animation: card-pulse 1.2s ease;
}

@keyframes card-pulse {
  0%,
  100% {
  box-shadow: none;
  }
  50% {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--mwl-accent) 45%, transparent);
  }
}

.coming-soon {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  border: 1px dashed var(--line);
  font-size: 0.9rem;
}

.start-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 800px) {
  .start-grid {
  grid-template-columns: 1fr;
  }

  .nav {
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.85rem;
  }
}

.start-card {
  display: block;
  padding: 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-card);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.start-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.start-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.start-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.start-card span:last-child {
  font-size: 0.85rem;
  color: var(--muted);
}

.start-card --fiction {
  border-left: 4px solid #c9a0ff;
}

.start-card --normie {
  border-left: 4px solid #c9a248;
}

.start-card --lens {
  border-left: 4px solid #8c6cc8;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
  opacity: 1;
  transform: none;
  transition: none;
  }

  .mwl-card:hover,
  .hub-tile:hover,
  .start-card:hover {
  transform: none;
  }
}

/* Wave A  --  product job on story cards */
.job-line {
  margin: 0.35rem 0 0.5rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.4;
}
.job-line strong {
  color: var(--text);
  font-weight: 600;
}
