/* ==========================================================================
   CANARY.GDC Main Style
   Core layout, typography, brand tone, and reusable components.
   ========================================================================== */

:root {
  --color-bg: #05070d;
  --color-bg-soft: #0a1020;
  --color-panel: rgba(10, 16, 32, 0.74);
  --color-panel-strong: rgba(9, 14, 27, 0.92);
  --color-line: rgba(195, 218, 255, 0.18);
  --color-text: #f7f8fb;
  --color-muted: #c2cad8;
  --color-dim: #72809a;
  --color-blue: #89b8ff;
  --color-aqua: #9de9f6;
  --color-violet: #c8b8ff;
  --color-gold: #e8d7aa;
  --shadow-soft: 0 24px 70px rgba(0, 0, 0, 0.36);
  --shadow-card: 0 18px 48px rgba(0, 0, 0, 0.28);
  --container: min(1120px, calc(100% - 48px));
  --header-height: 78px;
  --font-serif: "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --font-sans: "Segoe UI", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

body {
  background:
    radial-gradient(circle at top left, rgba(86, 129, 205, 0.16), transparent 34rem),
    radial-gradient(circle at 85% 18%, rgba(157, 233, 246, 0.08), transparent 26rem),
    var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.42;
}

body.nav-open {
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--color-text);
  color: var(--color-bg);
  padding: 10px 14px;
  border-radius: 4px;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  background: linear-gradient(180deg, rgba(4, 6, 12, 0.88), rgba(4, 6, 12, 0.42));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transition: background 280ms ease, min-height 280ms ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  background: rgba(4, 6, 12, 0.88);
}

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

.brand__mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(232, 215, 170, 0.54);
  color: var(--color-gold);
  font-family: var(--font-serif);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.brand__text {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  letter-spacing: 0.12em;
  line-height: 1;
  white-space: nowrap;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.8vw, 36px);
  color: rgba(247, 248, 251, 0.78);
  font-size: 0.83rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.global-nav a {
  position: relative;
  padding: 8px 0;
}

.global-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: linear-gradient(90deg, var(--color-blue), var(--color-gold));
  transition: transform 260ms ease;
}

.global-nav a:hover::after,
.global-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 140;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-line);
  border-radius: 4px;
  place-items: center;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--color-text);
  transition: transform 240ms ease, opacity 240ms ease;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 96svh;
  display: grid;
  align-items: center;
  padding: calc(var(--header-height) + 28px) 0 62px;
  overflow: hidden;
}

.hero__video,
.hero__shade,
.star-field {
  position: absolute;
  inset: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: -4;
  filter: saturate(0.86) contrast(1.04) brightness(0.76);
}

.hero__shade {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(5, 7, 13, 0.78) 0%, rgba(5, 7, 13, 0.36) 50%, rgba(5, 7, 13, 0.72) 100%),
    linear-gradient(180deg, rgba(5, 7, 13, 0.16), rgba(5, 7, 13, 0.82));
}

.hero__shade::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 4px);
  opacity: 0.38;
}

.hero__content {
  width: var(--container);
  margin: 0 auto;
  padding-top: 2vh;
}

.eyebrow {
  color: var(--color-gold);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__title {
  margin-top: 16px;
  font-family: var(--font-serif);
  font-size: clamp(3.1rem, 7.5vw, 6.9rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0.035em;
  text-shadow: 0 0 38px rgba(137, 184, 255, 0.22);
}

.hero__title span {
  display: block;
  margin-top: 8px;
  font-size: 0.42em;
  letter-spacing: 0.08em;
}

.hero__subtitle {
  margin-top: 20px;
  color: rgba(247, 248, 251, 0.82);
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  letter-spacing: 0.08em;
}

.hero__copy {
  max-width: 620px;
  margin-top: 24px;
  color: rgba(247, 248, 251, 0.88);
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  line-height: 1.92;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}

.button--primary {
  background: rgba(247, 248, 251, 0.94);
  color: #070a12;
}

.button--ghost {
  border: 1px solid rgba(247, 248, 251, 0.26);
  color: var(--color-text);
  background: rgba(5, 7, 13, 0.22);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: rgba(232, 215, 170, 0.72);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: 24px;
  height: 38px;
  transform: translateX(-50%);
  border: 1px solid rgba(247, 248, 251, 0.3);
  border-radius: 999px;
}

.scroll-cue span {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 3px;
  height: 7px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--color-text);
}

/* Sections */
.section {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(76px, 10vw, 124px) 0;
}

.section__heading {
  max-width: 720px;
  margin-bottom: clamp(34px, 6vw, 62px);
}

.section__heading h2,
.page-hero h1,
.text-panel h2 {
  margin-top: 12px;
  font-family: var(--font-serif);
  font-size: clamp(2.15rem, 5vw, 4.35rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.03em;
}

.section__heading p:not(.eyebrow),
.page-hero p:not(.eyebrow),
.text-panel p {
  margin-top: 18px;
  color: var(--color-muted);
  line-height: 1.95;
}

.feature-grid,
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card,
.work-card,
.community-banner,
.sound-panel,
.text-panel {
  border: 1px solid var(--color-line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(16px);
}

.feature-card {
  min-height: 270px;
  padding: 28px;
}

.feature-card__number {
  display: block;
  color: var(--color-blue);
  font-family: var(--font-serif);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
}

.feature-card h3,
.feature-card h2,
.community-banner h3,
.community-banner h2,
.sound-panel strong {
  margin-top: 42px;
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.32;
}

.feature-card p,
.work-card p,
.community-banner p,
.sound-panel span {
  color: var(--color-muted);
  line-height: 1.85;
}

.feature-card p {
  margin-top: 18px;
}

/* Statement */
.statement {
  display: grid;
  gap: clamp(28px, 5vw, 54px);
  border-bottom: 1px solid rgba(195, 218, 255, 0.1);
}

.statement__inner {
  max-width: 880px;
}

.statement__inner h2 {
  margin-top: 16px;
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5.6vw, 4.9rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0.03em;
}

.statement__inner p:not(.eyebrow) {
  max-width: 900px;
  margin-top: clamp(24px, 3vw, 36px);
  color: rgba(247, 248, 251, 0.86);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 2.08;
}

.author-note {
  max-width: 760px;
  padding-left: 22px;
  border-left: 1px solid rgba(232, 215, 170, 0.5);
}

.author-note p:not(.eyebrow) {
  margin-top: 12px;
  color: var(--color-muted);
  line-height: 1.95;
}

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

.work-card {
  overflow: hidden;
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
}

.work-card:hover {
  transform: translateY(-7px);
  border-color: rgba(232, 215, 170, 0.42);
}

.work-card__visual {
  position: relative;
  min-height: 420px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #0d1730;
}

.work-card__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 48%, rgba(5, 7, 13, 0.34)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 4px);
  pointer-events: none;
}

.work-card__visual a {
  display: block;
  width: 100%;
  height: 100%;
}

.work-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease;
}

.work-card:hover .work-card__visual img {
  transform: scale(1.035);
}

.work-card__body {
  padding: 28px;
}

.work-card__tag {
  color: var(--color-gold);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.work-card h3,
.work-card h2 {
  margin-top: 12px;
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.35;
}

.work-card h3 span,
.work-card h2 span {
  display: block;
  margin-top: 6px;
  color: var(--color-muted);
  font-size: 0.74em;
}

.work-card p:not(.work-card__tag) {
  margin-top: 16px;
  color: rgba(247, 248, 251, 0.82);
  font-size: 0.96rem;
  line-height: 1.88;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(195, 218, 255, 0.16);
  color: rgba(247, 248, 251, 0.72);
  background: rgba(255, 255, 255, 0.034);
  font-size: 0.78rem;
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--color-aqua);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(36px, 8vw, 90px);
  align-items: center;
}

.sound-panel {
  padding: 34px;
}

.sound-panel__line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--color-line);
  transition: transform 220ms ease, color 220ms ease, border-color 220ms ease;
}

.sound-panel__line:hover {
  transform: translateX(6px);
  border-color: rgba(232, 215, 170, 0.38);
}

.sound-panel__line:last-child {
  border-bottom: 0;
}

.sound-panel strong {
  margin-top: 0;
  text-align: right;
}

.sound-panel__link {
  margin-top: 26px;
}

.community-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: clamp(30px, 5vw, 56px);
}

.community-banner h3,
.community-banner h2 {
  margin-top: 14px;
}

.community-banner p:not(.eyebrow) {
  margin-top: 14px;
  max-width: 650px;
}

.vtuber-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 0.78fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
  min-height: 560px;
  overflow: hidden;
  padding: clamp(24px, 5vw, 54px);
  border: 1px solid rgba(232, 215, 170, 0.26);
  background: rgba(5, 7, 13, 0.78);
  box-shadow: var(--shadow-soft);
}

.vtuber-panel__video,
.vtuber-panel__shade {
  position: absolute;
  inset: 0;
}

.vtuber-panel__video {
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04) brightness(0.54);
}

.vtuber-panel__shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 7, 13, 0.92), rgba(5, 7, 13, 0.58) 52%, rgba(5, 7, 13, 0.86)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 4px);
}

.vtuber-panel__visual {
  overflow: hidden;
  border: 1px solid rgba(247, 248, 251, 0.2);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
}

.vtuber-panel__visual img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.vtuber-panel__body {
  max-width: 620px;
}

.vtuber-panel__body h3 {
  margin-top: 14px;
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0.03em;
}

.vtuber-panel__body p:not(.eyebrow) {
  margin-top: 20px;
  color: rgba(247, 248, 251, 0.82);
  line-height: 1.95;
}

.vtuber-panel__body .button {
  margin-top: 30px;
}

.community-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.community-actions .button {
  margin-top: 0;
}

.friend-vtuber-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 0.78fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
  min-height: 560px;
  margin-top: 26px;
  padding: clamp(24px, 5vw, 54px);
  border: 1px solid rgba(255, 180, 218, 0.28);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 180, 218, 0.18), transparent 20rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(5, 7, 13, 0.78);
  box-shadow: var(--shadow-soft);
}

.friend-vtuber-panel__visual {
  overflow: hidden;
  border: 1px solid rgba(255, 214, 236, 0.32);
  background: rgba(255, 180, 218, 0.08);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.36);
}

.friend-vtuber-panel__visual img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.friend-vtuber-panel__body {
  max-width: 650px;
}

.friend-vtuber-panel__body .eyebrow {
  color: #ffd3e8;
}

.friend-vtuber-panel__body h3 {
  margin-top: 14px;
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  font-weight: 400;
  line-height: 1.04;
}

.friend-vtuber-panel__office {
  margin-top: 10px;
  color: rgba(247, 248, 251, 0.92);
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4.2vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: 0.04em;
}

.friend-vtuber-panel__body p:not(.eyebrow) {
  margin-top: 18px;
  color: rgba(247, 248, 251, 0.84);
  line-height: 1.92;
}

.tool-release {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: clamp(26px, 5vw, 56px);
  align-items: center;
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid rgba(157, 233, 246, 0.22);
  background:
    radial-gradient(circle at 82% 12%, rgba(157, 233, 246, 0.14), transparent 22rem),
    radial-gradient(circle at 8% 100%, rgba(232, 215, 170, 0.08), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.022)),
    rgba(5, 7, 13, 0.82);
  box-shadow: var(--shadow-soft);
}

.tool-release__body {
  max-width: 720px;
}

.tool-release__body h2 {
  margin-top: 14px;
  font-family: var(--font-serif);
  font-size: clamp(2.15rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.03em;
}

.tool-release__body p:not(.eyebrow) {
  margin-top: 20px;
  color: rgba(247, 248, 251, 0.82);
  line-height: 1.95;
}

.tool-release__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.tool-release__status {
  min-height: 300px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(232, 215, 170, 0.22);
  background: rgba(9, 14, 27, 0.72);
}

.tool-release__status img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border: 1px solid rgba(247, 248, 251, 0.18);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
}

.tool-release__status strong {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.25;
}

.tool-release__status ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--color-muted);
  line-height: 1.7;
}

.tool-release__status li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--color-aqua);
  box-shadow: 0 0 14px rgba(157, 233, 246, 0.62);
}

.button.is-disabled {
  opacity: 0.52;
  pointer-events: none;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
}

.link-grid a {
  min-height: 126px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--color-line);
  background: rgba(255, 255, 255, 0.035);
  color: var(--color-text);
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}

.link-grid strong {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.link-grid span {
  color: var(--color-muted);
  font-size: 0.86rem;
  line-height: 1.7;
}

.link-grid a:hover,
.link-grid a:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(232, 215, 170, 0.5);
  background: rgba(255, 255, 255, 0.07);
}

/* Lower Pages */
.page-hero {
  position: relative;
  min-height: 58svh;
  display: grid;
  align-items: end;
  padding: calc(var(--header-height) + 72px) 0 80px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5, 7, 13, 0.36), rgba(5, 7, 13, 0.98)),
    radial-gradient(circle at 72% 30%, rgba(137, 184, 255, 0.23), transparent 26rem),
    #070b15;
}

.page-hero--music {
  background:
    linear-gradient(180deg, rgba(5, 7, 13, 0.36), rgba(5, 7, 13, 0.98)),
    radial-gradient(circle at 72% 30%, rgba(157, 233, 246, 0.2), transparent 26rem),
    #061017;
}

.page-hero--community {
  background:
    linear-gradient(180deg, rgba(5, 7, 13, 0.36), rgba(5, 7, 13, 0.98)),
    radial-gradient(circle at 72% 30%, rgba(232, 215, 170, 0.16), transparent 26rem),
    #0b0d15;
}

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

.page-hero h1 {
  font-size: clamp(3rem, 8vw, 6.4rem);
}

.text-panel {
  max-width: 850px;
  padding: clamp(30px, 5vw, 58px);
}

/* Novel Page */
.novel-hero {
  position: relative;
  min-height: 78svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: calc(var(--header-height) + 76px) 0 86px;
  background:
    linear-gradient(180deg, rgba(5, 7, 13, 0.2), rgba(5, 7, 13, 0.96)),
    radial-gradient(circle at 72% 26%, rgba(137, 184, 255, 0.18), transparent 30rem),
    radial-gradient(circle at 12% 74%, rgba(232, 215, 170, 0.12), transparent 28rem),
    #060914;
}

.novel-hero__inner {
  width: var(--container);
  margin: 0 auto;
  max-width: 880px;
}

.novel-hero h1 {
  margin-top: 14px;
  font-family: var(--font-serif);
  font-size: clamp(4rem, 11vw, 9.4rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.04em;
}

.novel-hero__lead {
  margin-top: 24px;
  color: var(--color-text);
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  line-height: 1.72;
}

.novel-hero p:not(.eyebrow):not(.novel-hero__lead) {
  max-width: 700px;
  margin-top: 22px;
  color: var(--color-muted);
  line-height: 1.95;
}

.featured-novel .section__heading h2 span {
  display: block;
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 0.48em;
}

.featured-story {
  display: grid;
  grid-template-columns: minmax(320px, 0.64fr) minmax(0, 0.76fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
  padding: clamp(20px, 4vw, 38px);
  border: 1px solid rgba(232, 215, 170, 0.24);
  background:
    linear-gradient(145deg, rgba(137, 184, 255, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.032);
  box-shadow: var(--shadow-soft);
}

.featured-story__visual {
  overflow: hidden;
  border: 1px solid var(--color-line);
  background: #0d1730;
}

.featured-story__visual img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.featured-story__body h3 {
  margin-top: 16px;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.18;
}

.featured-story__body p:not(.eyebrow) {
  margin-top: 22px;
  color: rgba(247, 248, 251, 0.84);
  line-height: 2;
}

.story-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.novel-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.novel-card {
  overflow: hidden;
  border: 1px solid var(--color-line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.024));
  box-shadow: var(--shadow-card);
  transition: transform 260ms ease, border-color 260ms ease;
}

.novel-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 215, 170, 0.42);
}

.novel-card__visual {
  min-height: 330px;
  overflow: hidden;
  background: #0d1730;
}

.novel-card__visual img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.novel-card__body {
  padding: 28px;
}

.novel-card__body h3 {
  margin-top: 12px;
  font-family: var(--font-serif);
  font-size: 1.56rem;
  font-weight: 400;
  line-height: 1.35;
}

.novel-card__catch {
  color: rgba(247, 248, 251, 0.88);
  font-family: var(--font-serif);
  font-size: 1.08rem;
}

.novel-card__body p:not(.work-card__tag):not(.novel-card__catch) {
  margin-top: 16px;
  color: var(--color-muted);
  line-height: 1.86;
}

.worldview__inner {
  max-width: 920px;
  padding-left: clamp(18px, 4vw, 34px);
  border-left: 1px solid rgba(232, 215, 170, 0.5);
}

.worldview__inner h2,
.character-callout h2 {
  margin-top: 14px;
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5.4vw, 4.8rem);
  font-weight: 400;
  line-height: 1.05;
}

.worldview__inner p,
.character-callout p:not(.eyebrow) {
  margin-top: 22px;
  color: var(--color-muted);
  line-height: 2;
}

.character-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(30px, 5vw, 56px);
  border: 1px solid var(--color-line);
  background:
    linear-gradient(145deg, rgba(232, 215, 170, 0.08), transparent 44%),
    rgba(255, 255, 255, 0.032);
  box-shadow: var(--shadow-card);
}

.character-callout div {
  max-width: 700px;
}

/* Instrumental Player */
.music-player-section {
  width: var(--container);
  margin: -58px auto 0;
  position: relative;
  z-index: 2;
}

.audio-player {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 0.72fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(232, 215, 170, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(5, 7, 13, 0.92);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
}

.audio-player__meta h2 {
  margin-top: 10px;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  font-weight: 400;
  line-height: 1.18;
}

.audio-player__meta p:not(.eyebrow) {
  margin-top: 12px;
  color: var(--color-muted);
  line-height: 1.8;
}

.audio-player__controls {
  display: grid;
  gap: 18px;
}

.player-button {
  min-height: 52px;
  border: 1px solid rgba(247, 248, 251, 0.26);
  background: rgba(247, 248, 251, 0.94);
  color: #070a12;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.seek-control {
  display: grid;
  grid-template-columns: 46px 1fr 46px;
  align-items: center;
  gap: 12px;
  color: var(--color-muted);
  font-size: 0.78rem;
  font-variant-numeric: tabular-nums;
}

.seek-control input[type="range"] {
  width: 100%;
  accent-color: var(--color-gold);
}

.track-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.track-card {
  min-height: 232px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
  padding: 24px;
  border: 1px solid var(--color-line);
  background:
    linear-gradient(145deg, rgba(137, 184, 255, 0.09), transparent 42%),
    rgba(255, 255, 255, 0.032);
  box-shadow: var(--shadow-card);
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}

.track-card:hover,
.track-card.is-active {
  transform: translateY(-5px);
  border-color: rgba(232, 215, 170, 0.5);
  background:
    linear-gradient(145deg, rgba(232, 215, 170, 0.11), transparent 46%),
    rgba(255, 255, 255, 0.052);
}

.track-card__index {
  color: var(--color-gold);
  font-family: var(--font-serif);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
}

.track-card h3 {
  margin-top: 16px;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.3;
}

.track-card p:not(.track-card__index) {
  margin-top: 12px;
  color: var(--color-muted);
  line-height: 1.75;
}

.track-card__actions {
  display: grid;
  grid-template-columns: 1fr 72px;
  gap: 10px;
}

.track-card__actions button,
.track-card__actions a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border: 1px solid rgba(247, 248, 251, 0.2);
  color: var(--color-text);
  background: rgba(5, 7, 13, 0.34);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.track-card__actions button:hover,
.track-card__actions a:hover,
.track-card__actions button:focus-visible,
.track-card__actions a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(232, 215, 170, 0.6);
}

.track-card.is-active .track-card__actions button {
  background: rgba(247, 248, 251, 0.94);
  color: #070a12;
}

/* Footer */
.site-footer {
  width: var(--container);
  margin: 0 auto;
  padding: 54px 0 48px;
  border-top: 1px solid var(--color-line);
  color: var(--color-muted);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 26px;
}

.footer-profile {
  display: grid;
  gap: 10px;
}

.footer-profile p {
  color: var(--color-muted);
  font-size: 0.86rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
  font-size: 0.84rem;
}

.brand--footer .brand__mark {
  width: 32px;
  height: 32px;
}
