:root {
  color-scheme: dark;
  --bg: #080809;
  --bg-soft: #101011;
  --panel: #0d0d0f;
  --panel-strong: #222020;
  --line: rgba(241, 234, 223, 0.1);
  --text: #f1eadf;
  --muted: #b5aea4;
  --muted-dark: #776e68;
  --accent: #8f1f22;
  --accent-deep: #5d1518;
  --accent-soft: #b8955f;
  --gallery-gold: #b8955f;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(184, 149, 95, 0.07), transparent 340px),
    radial-gradient(circle at top left, rgba(241, 234, 223, 0.035), transparent 330px),
    var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.8;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  background: rgba(8, 8, 9, 0.94);
  border-bottom: 1px solid rgba(241, 234, 223, 0.08);
  backdrop-filter: blur(16px);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  min-height: 78px;
  padding: 14px 0;
}

.brand,
.site-header-inner,
.site-nav,
.button-row,
.member-actions,
.analysis-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: 0;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(184, 149, 95, 0.82);
  color: var(--accent-soft);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.86rem;
  font-weight: 700;
}

.site-nav {
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  color: rgba(241, 234, 223, 0.7);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-nav a,
.text-link,
.back-link {
  text-decoration: none;
  text-underline-offset: 0.28em;
  transition: color 160ms ease;
}

.site-nav a:hover,
.text-link:hover,
.back-link:hover {
  color: var(--text);
}

.header-note-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid rgba(184, 149, 95, 0.58);
  padding: 8px 16px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.header-note-button::after {
  content: "↗";
  margin-left: 8px;
  color: var(--accent-soft);
  font-size: 0.88em;
}

.header-note-button:hover {
  border-color: rgba(241, 234, 223, 0.54);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 720ms ease, transform 720ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.section-band,
.content-section,
.members-section,
.cta-section,
.member-page,
.not-found {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(760px, calc(100svh - 78px));
  padding: 58px max(30px, calc((100vw - var(--max)) / 2)) 86px;
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.analysis-title h1,
.not-found h1 {
  margin: 10px 0 20px;
  font-size: clamp(2.5rem, 7vw, 5.7rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.hero-sub,
.content-section p,
.cta-section p,
.section-heading p,
.analysis-title p,
.analysis-content p,
.not-found p {
  color: var(--muted);
}

.hero-sub {
  display: grid;
  gap: 4px;
  margin: 22px 0 34px;
  color: rgba(241, 234, 223, 0.76);
  font-size: clamp(0.96rem, 1.5vw, 1.1rem);
  line-height: 1.9;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.78);
}

.hero-sub p {
  margin: 0;
}

.stamp {
  display: inline-block;
  margin: 0;
  border: 1px solid rgba(143, 31, 34, 0.78);
  padding: 4px 10px;
  color: var(--accent-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
  transform: rotate(-1deg);
}

.button-row,
.member-actions,
.analysis-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  padding: 11px 18px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  line-height: 1.35;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 4px;
}

.button-primary {
  background: var(--accent);
  border-color: var(--accent-soft);
}

.button-primary:hover {
  background: #a7282b;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
}

.button-secondary:hover {
  border-color: var(--accent);
}

.button-small {
  min-height: 40px;
  padding: 8px 13px;
  font-size: 0.92rem;
}

.hero-media,
.member-image,
.analysis-image {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(143, 31, 34, 0.24), transparent),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 18px),
    var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  aspect-ratio: auto;
  border: 0;
  box-shadow: none;
}

.hero-media img,
.hero-media video,
.member-image img,
.analysis-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media video {
  object-position: center center;
  pointer-events: none;
}

.hero-media video::-webkit-media-controls,
.hero-media video::-webkit-media-controls-panel,
.hero-media video::-webkit-media-controls-play-button,
.hero-media video::-webkit-media-controls-start-playback-button {
  display: none !important;
  opacity: 0 !important;
  -webkit-appearance: none;
}

.image-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(242, 238, 232, 0.24);
  font-size: clamp(1rem, 3vw, 2.2rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 18px;
  text-align: center;
  white-space: nowrap;
}

.hero-media .image-fallback {
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  letter-spacing: 0;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 8, 9, 0.86) 0%, rgba(8, 8, 9, 0.62) 34%, rgba(8, 8, 9, 0.2) 70%),
    linear-gradient(180deg, rgba(8, 8, 9, 0.52) 0%, rgba(8, 8, 9, 0.18) 36%, rgba(8, 8, 9, 0.86) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 760px);
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  color: var(--gallery-gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(0.7rem, 1vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.72);
}

.hero-kicker::before {
  content: "";
  width: 40px;
  height: 1px;
  background: currentColor;
}

.hero-copy {
  margin: 0 0 8px;
  color: rgba(241, 234, 223, 0.84);
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  letter-spacing: 0.12em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.78);
}

.hero h1 {
  max-width: none;
  margin: 0;
  color: var(--text);
  font-family: "Noto Serif JP", serif;
  font-size: clamp(2.8rem, 7vw, 6.2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.08;
  white-space: nowrap;
  text-shadow:
    0 2px 20px rgba(0, 0, 0, 0.84),
    0 20px 58px rgba(0, 0, 0, 0.62);
}

.hero .button-secondary {
  background: rgba(8, 8, 9, 0.28);
  border-color: rgba(184, 149, 95, 0.62);
  backdrop-filter: blur(10px);
}

.hero .button-secondary:hover {
  border-color: rgba(241, 234, 223, 0.78);
}

.hero-media img + .image-fallback,
.hero-media video + .image-fallback,
.member-portrait-image + .image-fallback,
.member-image img + .image-fallback,
.member-bromide.has-image .image-fallback,
.analysis-image img + .image-fallback {
  display: none;
}

.member-image::after,
.analysis-image::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(143, 31, 34, 0.42);
  pointer-events: none;
}

.content-section,
.status-section,
.future-section,
.members-section,
.cta-section {
  padding: 86px 0;
  border-top: 1px solid rgba(143, 31, 34, 0.24);
}

.mv-section {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 86px 0 72px;
  border-top: 1px solid rgba(143, 31, 34, 0.24);
}

.mv-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 28px;
}

.mv-section h2 {
  margin-bottom: 14px;
}

.mv-description {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.14rem);
  line-height: 1.9;
}

.creator-link-card {
  position: relative;
  display: flex;
  gap: 14px;
  align-items: center;
  align-self: start;
  margin-top: 28px;
  min-height: 76px;
  border: 1px solid rgba(184, 149, 95, 0.42);
  padding: 11px 46px 11px 12px;
  background:
    linear-gradient(145deg, rgba(143, 31, 34, 0.1), transparent 48%),
    rgba(13, 13, 15, 0.72);
  color: var(--text);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.creator-link-card::after {
  content: "↗";
  position: absolute;
  top: 50%;
  right: 22px;
  color: var(--accent-soft);
  font-size: 1rem;
  transform: translateY(-50%);
}

.creator-link-card img {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(241, 234, 223, 0.32);
  border-radius: 50%;
  object-fit: cover;
}

.creator-link-text {
  display: grid;
  gap: 4px;
  min-width: 0;
  transform: translateY(-1px);
}

.creator-link-meta {
  color: rgba(241, 234, 223, 0.52);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
}

.creator-link-name {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
}

.creator-link-card:hover {
  border-color: rgba(241, 234, 223, 0.46);
  background:
    linear-gradient(145deg, rgba(143, 31, 34, 0.16), transparent 50%),
    rgba(20, 18, 20, 0.88);
  transform: translateY(-2px);
}

.mv-player {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #050506;
  box-shadow: var(--shadow);
}

.mv-play-button {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background: #050506;
  color: var(--text);
  cursor: pointer;
}

.mv-play-button img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.mv-play-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(8, 8, 9, 0.04), rgba(8, 8, 9, 0.32) 72%),
    linear-gradient(180deg, rgba(8, 8, 9, 0.02), rgba(8, 8, 9, 0.22));
  pointer-events: none;
}

.mv-play-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: clamp(82px, 9vw, 112px);
  height: clamp(82px, 9vw, 112px);
  border-radius: 50%;
  background: rgba(241, 234, 223, 0.34);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.34);
  transition: transform 180ms ease, background 180ms ease;
}

.mv-play-icon::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 8px;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
  border-left: 25px solid #ffffff;
}

.mv-play-button:hover img,
.mv-play-button:focus-visible img {
  filter: brightness(1.08);
  transform: scale(1.025);
}

.mv-play-button:hover .mv-play-icon,
.mv-play-button:focus-visible .mv-play-icon {
  background: rgba(241, 234, 223, 0.44);
  transform: scale(1.04);
}

.mv-play-button:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 4px;
}

.mv-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.content-section {
  max-width: none;
}

.status-section,
.future-section {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.current-section {
  display: grid;
  gap: 54px;
}

.status-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(184, 149, 95, 0.34);
  padding: clamp(28px, 5vw, 52px);
  background:
    linear-gradient(110deg, rgba(143, 31, 34, 0.2), transparent 56%),
    rgba(13, 13, 15, 0.86);
  box-shadow: var(--shadow);
}

.status-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(241, 234, 223, 0.06);
  pointer-events: none;
}

.status-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  margin-top: 30px;
}

.status-metric {
  display: grid;
  gap: 10px;
  padding-right: clamp(18px, 4vw, 44px);
  border-right: 1px solid rgba(184, 149, 95, 0.3);
}

.status-number {
  color: var(--text);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(4.8rem, 12vw, 9rem);
  font-weight: 700;
  line-height: 0.9;
  text-shadow: 0 22px 70px rgba(143, 31, 34, 0.44);
}

.status-label {
  color: var(--accent-soft);
  font-weight: 800;
  line-height: 1.65;
}

.status-copy {
  color: var(--muted);
  font-size: clamp(1rem, 1.55vw, 1.12rem);
  line-height: 2;
}

.status-copy p {
  margin: 0;
}

.status-goal {
  margin-bottom: 18px !important;
  color: var(--text);
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.7rem, 3.5vw, 3rem);
  line-height: 1.35;
}

.status-goal strong {
  color: var(--accent-soft);
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.18em;
}

.future-block {
  border-top: 1px solid rgba(184, 149, 95, 0.18);
  padding-top: 54px;
}

.future-block h2 {
  margin-bottom: 18px;
}

.future-lead,
.future-sub,
.future-note {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.9;
}

.future-lead,
.future-sub {
  margin: 0 0 12px;
}

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

.future-card {
  position: relative;
  min-height: 248px;
  border: 1px solid rgba(184, 149, 95, 0.26);
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(143, 31, 34, 0.12), transparent 54%),
    rgba(13, 13, 15, 0.82);
}

.future-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(241, 234, 223, 0.05);
  pointer-events: none;
}

.future-card span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-soft);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.future-card span::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.future-card h3 {
  position: relative;
  z-index: 1;
  margin: 30px 0 0;
  color: var(--text);
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.65;
}

.future-card p {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.8;
}

.future-note {
  margin: 0 0 24px;
}

.future-button {
  width: fit-content;
}

.section-kicker {
  margin-bottom: 8px;
  color: var(--accent-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h2 {
  margin: 0 0 20px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.25;
  letter-spacing: 0;
}

.content-section p,
.cta-section p {
  margin: 0 0 16px;
  font-size: 1.04rem;
}

.about-entry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.about-link-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(184, 149, 95, 0.38);
  padding: 32px 30px 30px;
  background:
    linear-gradient(145deg, rgba(143, 31, 34, 0.12), transparent 46%),
    rgba(13, 13, 15, 0.9);
  color: var(--text);
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, filter 180ms ease;
}

.about-link-card::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  z-index: 0;
  background: rgba(241, 234, 223, 0.035);
  pointer-events: none;
}

.about-link-card::after {
  content: "↗";
  position: absolute;
  top: 16px;
  right: 18px;
  z-index: 3;
  color: var(--accent-soft);
  font-size: 0.9rem;
}

.about-link-meta,
.about-link-title,
.about-link-copy,
.about-link-tags {
  position: relative;
  z-index: 1;
}

.about-link-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--accent-soft);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-link-meta::after {
  content: "";
  width: 32px;
  height: 1px;
  order: 1;
  background: currentColor;
}

.about-link-meta span {
  order: 0;
}

.about-link-title {
  align-self: center;
  margin: 58px 0 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.35rem, 2.1vw, 1.95rem);
  font-weight: 800;
  line-height: 1.42;
}

.about-link-copy {
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.85;
}

.about-link-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-self: end;
  margin-top: 44px;
}

.about-link-tags span {
  border: 1px solid rgba(241, 234, 223, 0.1);
  padding: 5px 9px;
  color: rgba(241, 234, 223, 0.56);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.about-link-card:hover {
  border-color: rgba(241, 234, 223, 0.42);
  background:
    linear-gradient(145deg, rgba(143, 31, 34, 0.18), transparent 48%),
    rgba(20, 18, 20, 0.95);
  filter: brightness(1.05);
  transform: translateY(-2px);
}

.benefit-library {
  margin-top: 58px;
}

.benefit-library-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.benefit-library h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 1.35;
}

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

.benefit-category-card {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(184, 149, 95, 0.3);
  background:
    linear-gradient(145deg, rgba(143, 31, 34, 0.1), transparent 52%),
    rgba(13, 13, 15, 0.86);
  box-shadow: var(--shadow);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.benefit-category-link {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 330px;
  padding: 26px;
  color: inherit;
  text-decoration: none;
}

.benefit-category-image {
  position: relative;
  z-index: 1;
  display: block;
  aspect-ratio: 1200 / 630;
  margin: -26px -26px 4px;
  background-image:
    var(--category-image);
  background-position: center;
  background-size: cover;
  border-bottom: 1px solid rgba(184, 149, 95, 0.24);
  opacity: 0.9;
  transition: opacity 180ms ease, transform 240ms ease;
}

.benefit-category-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(241, 234, 223, 0.05);
  pointer-events: none;
}

.benefit-category-card[open],
.benefit-category-card:hover {
  border-color: rgba(241, 234, 223, 0.38);
  background: rgba(20, 18, 20, 0.92);
}

.benefit-category-card:hover .benefit-category-image {
  opacity: 1;
  transform: scale(1.015);
}

.benefit-category-card[open] {
  grid-column: 1 / -1;
}

.benefit-category-link::after {
  content: "↗";
  position: absolute;
  top: 22px;
  right: 24px;
  color: var(--accent-soft);
  font-size: 1.05rem;
  line-height: 1;
}

.benefit-category-card:hover {
  transform: translateY(-1px);
}

.benefit-category-card summary {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  min-height: 220px;
  padding: 26px;
  cursor: pointer;
  list-style: none;
}

.benefit-category-card summary::-webkit-details-marker {
  display: none;
}

.benefit-category-card summary::after {
  content: "+";
  position: absolute;
  top: 22px;
  right: 24px;
  color: var(--accent-soft);
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1;
}

.benefit-category-card[open] summary::after {
  content: "-";
}

.benefit-category-card summary:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: -6px;
}

.benefit-category-card .about-link-title {
  position: relative;
  z-index: 1;
  align-self: center;
  margin: 24px 0 0;
  font-size: clamp(1.25rem, 2.1vw, 1.72rem);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.72);
}

.benefit-category-card .about-link-copy {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  font-weight: 600;
  color: rgba(250, 246, 238, 0.86);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.72);
}

.benefit-category-link .about-link-copy {
  padding-bottom: 0;
}

.benefit-category-count {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-top: auto;
  border: 1px solid rgba(241, 234, 223, 0.1);
  padding: 5px 9px;
  color: rgba(241, 234, 223, 0.54);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.benefit-article-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0 26px 28px;
  list-style: none;
}

.benefit-article-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 292px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(184, 149, 95, 0.24);
  background:
    linear-gradient(180deg, rgba(241, 234, 223, 0.035), transparent 42%),
    rgba(12, 13, 15, 0.92);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
  transition: border-color 180ms ease, background 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.benefit-article-card.is-read {
  border-color: rgba(241, 234, 223, 0.08);
  background:
    linear-gradient(180deg, rgba(241, 234, 223, 0.015), transparent 48%),
    rgba(12, 13, 15, 0.68);
}

.benefit-article-thumb {
  position: relative;
  display: block;
  min-width: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--panel);
}

.benefit-article-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--thumb-bg);
  background-position: center;
  background-size: cover;
  filter: blur(18px) saturate(0.7) brightness(0.45);
  transform: scale(1.12);
  opacity: 0.72;
}

.benefit-article-thumb img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(0.92) brightness(0.86);
  transition: transform 240ms ease, filter 240ms ease;
}

.benefit-article-body {
  display: grid;
  flex: 1;
  gap: 12px;
  align-content: start;
  min-width: 0;
  padding: 16px 18px 18px;
}

.benefit-article-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.benefit-article-body time {
  min-width: 0;
  color: var(--accent-soft);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.benefit-article-title {
  display: -webkit-box;
  overflow: hidden;
  color: rgba(241, 234, 223, 0.9);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.72;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  transition: color 160ms ease, transform 160ms ease;
}

.benefit-article-title::after {
  content: "↗";
  margin-left: 8px;
  color: var(--accent-soft);
  font-size: 0.86em;
}

.read-toggle {
  flex: 0 0 auto;
  min-height: 30px;
  border: 1px solid rgba(241, 234, 223, 0.18);
  padding: 5px 12px;
  background: rgba(241, 234, 223, 0.04);
  color: rgba(241, 234, 223, 0.72);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.benefit-article-card.is-read .read-toggle {
  border-color: rgba(184, 149, 95, 0.26);
  background: rgba(184, 149, 95, 0.08);
  color: rgba(184, 149, 95, 0.78);
}

.benefit-article-card.is-read img {
  filter: saturate(0.28) brightness(0.62);
}

.benefit-article-card.is-read time,
.benefit-article-card.is-read .benefit-article-title {
  color: rgba(241, 234, 223, 0.48);
}

.benefit-article-card:hover {
  border-color: rgba(241, 234, 223, 0.3);
  background:
    linear-gradient(180deg, rgba(241, 234, 223, 0.055), transparent 42%),
    rgba(18, 18, 21, 0.96);
  transform: translateY(-2px);
}

.benefit-article-card:hover img {
  filter: saturate(1) brightness(1);
  transform: scale(1.035);
}

.benefit-article-title:hover,
.benefit-article-title:focus-visible {
  color: var(--text);
  outline: none;
}

.read-toggle:hover,
.read-toggle:focus-visible {
  border-color: rgba(241, 234, 223, 0.36);
  color: var(--text);
  outline: none;
}

.benefit-detail-body {
  overflow: hidden;
}

.benefit-detail-body .site-footer {
  display: none;
}

.benefit-page {
  display: flex;
  height: calc(100dvh - 78px);
  min-height: 0;
  flex-direction: column;
  overflow: hidden;
}

.benefit-page-hero {
  flex: 0 0 auto;
  width: min(1200px, calc(100% - 52px));
  margin: 0 auto;
  padding: 46px 0 22px;
}

.benefit-page-hero h1 {
  max-width: 780px;
  margin: 18px 0 0;
  font-size: clamp(2.35rem, 7vw, 5.4rem);
  line-height: 1.08;
}

.benefit-page-hero p {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 2;
}

.qa-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.qa-action-button {
  min-height: 42px;
  padding: 0 18px;
  border-color: rgba(184, 149, 95, 0.38);
  background: rgba(241, 234, 223, 0.035);
}

.qa-action-button::after {
  content: "↗";
  color: var(--accent-soft);
  font-size: 0.88rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  color: rgba(241, 234, 223, 0.66);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 800;
}

.back-link::before {
  content: "←";
  color: var(--accent-soft);
}

.back-link:hover,
.back-link:focus-visible {
  color: var(--text);
  outline: none;
}

.benefit-page-list {
  flex: 1 1 auto;
  width: min(1200px, calc(100% - 52px));
  margin: 0 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 18px 0 42px;
}

.benefit-page-article-list {
  padding: 0;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.section-heading p {
  max-width: 360px;
  margin: 0;
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(241, 234, 223, 0.08);
  background: rgba(241, 234, 223, 0.08);
}

.member-card {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  min-width: 0;
  background: var(--panel);
  border: 0;
  color: var(--text);
  cursor: pointer;
  isolation: isolate;
  text-decoration: none;
  transform: translateZ(0);
  transition: border-color 420ms ease, filter 420ms ease, transform 420ms ease;
}

.member-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border: 1px solid rgba(241, 234, 223, 0.08);
  pointer-events: none;
}

.member-card img {
  -webkit-user-drag: none;
  user-select: none;
}

.member-card:focus-visible {
  outline: 2px solid var(--gallery-gold);
  outline-offset: 4px;
}

.member-card:hover,
.member-card:focus-visible,
.member-card:focus-within,
.member-card.is-active {
  border-color: rgba(184, 149, 95, 0.34);
}

.member-portrait,
.member-portrait-image,
.member-card-overlay {
  position: absolute;
  inset: 0;
}

.member-portrait {
  z-index: 0;
  display: block;
  background:
    linear-gradient(145deg, rgba(184, 149, 95, 0.08), transparent 44%),
    var(--panel);
}

.member-portrait-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  filter: saturate(0.86) contrast(1.04) brightness(0.9);
  transition: opacity 460ms ease, transform 620ms ease, filter 620ms ease;
}

.member-portrait-hover {
  opacity: 0;
}

.member-card:hover .member-portrait-image,
.member-card:focus-visible .member-portrait-image,
.member-card:focus-within .member-portrait-image,
.member-card.is-active .member-portrait-image {
  transform: scale(1.045);
  filter: saturate(0.95) contrast(1.08) brightness(0.86);
}

.member-card:hover .member-portrait-hover,
.member-card:focus-visible .member-portrait-hover,
.member-card:focus-within .member-portrait-hover,
.member-card.is-active .member-portrait-hover {
  opacity: 1;
}

.member-card-overlay {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 8, 9, 0.2) 0%, rgba(8, 8, 9, 0.08) 40%, rgba(8, 8, 9, 0.72) 100%),
    radial-gradient(circle at 18% 12%, rgba(184, 149, 95, 0.14), transparent 32%);
  opacity: 0;
  transition: opacity 420ms ease;
}

.member-card-number,
.member-card-copy {
  position: absolute;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 360ms ease, transform 420ms ease;
}

.member-card-number {
  top: 18px;
  left: 18px;
  color: var(--text);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.92),
    0 0 14px rgba(0, 0, 0, 0.82);
}

.member-card-copy {
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  gap: 7px;
}

.member-card-name {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.18rem, 1.6vw, 1.42rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.34;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.72);
}

.member-card-tagline {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.member-card-actions {
  top: 16px;
  right: 16px;
  display: flex;
  gap: 8px;
  pointer-events: none;
}

.member-action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 44px;
  height: 44px;
  border: 1px solid rgba(184, 149, 95, 0.58);
  border-radius: 999px;
  padding: 0 12px;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.14), transparent 34%),
    rgba(8, 8, 9, 0.72);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  backdrop-filter: blur(12px);
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.42),
    0 0 0 4px rgba(184, 149, 95, 0.08);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.member-action-button:hover,
.member-action-button:focus-visible {
  border-color: rgba(184, 149, 95, 0.72);
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.18), transparent 34%),
    rgba(184, 149, 95, 0.18);
  color: var(--gallery-gold);
  outline: none;
  transform: translateY(-1px);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.5),
    0 0 0 5px rgba(184, 149, 95, 0.12);
}

.member-action-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.member-card:hover .member-card-overlay,
.member-card:hover .member-card-number,
.member-card:hover .member-card-copy,
.member-card:focus-visible .member-card-overlay,
.member-card:focus-visible .member-card-number,
.member-card:focus-visible .member-card-copy,
.member-card:focus-within .member-card-overlay,
.member-card:focus-within .member-card-number,
.member-card:focus-within .member-card-copy,
.member-card.is-active .member-card-overlay,
.member-card.is-active .member-card-number,
.member-card.is-active .member-card-copy {
  opacity: 1;
  transform: translateY(0);
}

.member-card:hover .member-card-actions,
.member-card:focus-visible .member-card-actions,
.member-card:focus-within .member-card-actions,
.member-card.is-active .member-card-actions {
  pointer-events: auto;
}

.list-message {
  flex: 0 0 min(100%, 520px);
  margin: 0;
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--muted);
}

.list-message.is-error {
  border-color: rgba(201, 77, 79, 0.7);
  color: var(--text);
}

.cta-section {
  padding-bottom: 110px;
}

.cta-inner {
  background:
    linear-gradient(100deg, rgba(143, 31, 34, 0.22), transparent 58%),
    var(--panel);
  border: 1px solid var(--line);
  padding: clamp(28px, 6vw, 54px);
}

.price-note {
  max-width: 620px;
  margin: 28px 0 30px;
  border-left: 1px solid rgba(184, 149, 95, 0.48);
  padding: 4px 0 4px 18px;
}

.price-note p {
  margin: 0 0 8px;
  color: rgba(241, 234, 223, 0.72);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.75;
}

.price-note p:last-child {
  margin-bottom: 0;
}

.price-note-emphasis {
  color: var(--text) !important;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.12rem, 2vw, 1.42rem) !important;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 34px 0 44px;
  color: var(--muted-dark);
  border-top: 1px solid var(--line);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(241, 234, 223, 0.18);
  background: rgba(255, 255, 255, 0.035);
  opacity: 0.78;
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  border-color: rgba(241, 234, 223, 0.42);
  background: rgba(255, 255, 255, 0.07);
  opacity: 1;
  outline: none;
  transform: translateY(-1px);
}

.footer-social img {
  width: 19px;
  height: 19px;
  object-fit: contain;
}

.member-page {
  padding: 42px 0 96px;
}

.back-link {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--muted);
}

.analysis-shell {
  background: rgba(24, 23, 23, 0.72);
  border: 1px solid var(--line);
}

.analysis-header {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: clamp(22px, 5vw, 46px);
  border-bottom: 1px solid var(--line);
}

.analysis-image {
  aspect-ratio: 1 / 1;
  box-shadow: none;
}

.analysis-title h1 {
  font-size: clamp(2.1rem, 5vw, 4.5rem);
}

.analysis-content {
  max-width: 820px;
  padding: clamp(24px, 5vw, 54px);
}

.analysis-content h2 {
  margin-top: 0;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.analysis-content p {
  margin: 0 0 18px;
}

.analysis-actions {
  padding: 0 clamp(24px, 5vw, 54px) clamp(24px, 5vw, 54px);
}

.not-found {
  display: grid;
  align-content: center;
  min-height: calc(100svh - 86px);
  padding: 48px 0;
}

@media (max-width: 900px) {
  .analysis-header {
    grid-template-columns: 1fr;
  }

  .site-header-inner {
    gap: 16px;
  }

  .site-nav {
    gap: 18px;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
  }

  .about-entry-grid,
  .benefit-category-grid {
    grid-template-columns: 1fr;
  }

  .benefit-library-heading {
    display: block;
  }

  .benefit-library-heading .text-link {
    display: inline-block;
    margin-top: 12px;
  }

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

  .status-grid {
    grid-template-columns: 1fr;
  }

  .status-metric {
    padding-right: 0;
    padding-bottom: 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(184, 149, 95, 0.3);
  }

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

  .mv-intro {
    grid-template-columns: 1fr;
  }

  .creator-link-card {
    max-width: 420px;
  }

  .hero {
    min-height: 680px;
    padding: 58px 24px 72px;
  }

  .hero-content {
    width: min(100%, 620px);
  }

  .hero-kicker {
    margin-bottom: 24px;
  }

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

  .section-heading {
    display: block;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 132px;
  }

  .site-header-inner {
    width: min(100% - 24px, var(--max));
    flex-wrap: wrap;
    gap: 12px;
    min-height: 0;
    padding: 12px 0;
  }

  .brand {
    font-size: 0.94rem;
  }

  .site-nav {
    order: 3;
    justify-content: flex-start;
    width: 100%;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 2px;
    font-size: 0.68rem;
    white-space: nowrap;
  }

  .header-note-button {
    min-height: 38px;
    padding: 7px 12px;
    font-size: 0.84rem;
  }

  .section-band,
  .content-section,
  .status-section,
  .future-section,
  .mv-section,
  .members-section,
  .cta-section,
  .member-page,
  .not-found,
  .site-footer {
    width: min(100% - 24px, var(--max));
  }

  .site-footer {
    align-items: flex-start;
  }

  .not-found h1 {
    font-size: clamp(2.25rem, 14vw, 3.25rem);
  }

  .button {
    width: 100%;
  }

  .hero {
    min-height: min(680px, 92svh);
    padding: 42px 18px 54px;
  }

  .hero-media video {
    object-fit: cover;
    object-position: 75% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(8, 8, 9, 0.42) 0%, rgba(8, 8, 9, 0.18) 34%, rgba(8, 8, 9, 0.88) 100%),
      linear-gradient(90deg, rgba(8, 8, 9, 0.68) 0%, rgba(8, 8, 9, 0.28) 54%, rgba(8, 8, 9, 0.42) 100%);
  }

  .hero-kicker {
    gap: 10px;
    margin-bottom: 18px;
    letter-spacing: 0.2em;
  }

  .hero-kicker::before {
    width: 28px;
  }

  .hero-sub {
    margin-bottom: 26px;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 10vw, 3.4rem);
  }

  .mv-section {
    padding: 64px 0 58px;
  }

  .mv-intro {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: start;
    margin-bottom: 22px;
  }

  .mv-copy {
    display: contents;
  }

  .mv-copy .section-kicker,
  .mv-copy h2 {
    grid-column: 1;
  }

  .mv-description {
    grid-column: 1 / -1;
  }

  .creator-link-card {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: end;
    justify-self: end;
    width: 52px;
    min-height: 52px;
    margin-top: 0;
    gap: 0;
    border-radius: 50%;
    padding: 0;
    border-color: rgba(184, 149, 95, 0.46);
    background: rgba(13, 13, 15, 0.74);
  }

  .creator-link-card img {
    width: 52px;
    height: 52px;
    border-color: rgba(241, 234, 223, 0.24);
  }

  .creator-link-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    clip-path: inset(50%);
  }

  .creator-link-card::after {
    top: auto;
    right: -3px;
    bottom: -4px;
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border: 1px solid rgba(184, 149, 95, 0.56);
    border-radius: 50%;
    background: rgba(8, 8, 9, 0.9);
    font-size: 0.72rem;
    transform: none;
  }

  .about-link-card {
    min-height: 300px;
    padding: 26px 24px 24px;
  }

  .about-link-title {
    margin-top: 42px;
  }

  .benefit-library {
    margin-top: 46px;
  }

  .benefit-category-card summary {
    min-height: 190px;
    padding: 24px 22px;
  }

  .benefit-category-link {
    min-height: 190px;
    padding: 24px 22px;
  }

  .benefit-category-card .about-link-title {
    margin-top: 24px;
  }

  .benefit-article-list {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 0 22px 22px;
  }

  .benefit-article-card {
    min-height: 0;
  }

  .benefit-article-body {
    padding: 15px 16px 16px;
  }

  .benefit-article-title {
    font-size: 0.88rem;
    line-height: 1.62;
  }

  .benefit-page-hero,
  .benefit-page-list {
    width: min(100% - 36px, 1200px);
  }

  .benefit-page-hero {
    padding: 34px 0 18px;
  }

  .benefit-page-list {
    padding: 14px 0 34px;
  }

  .status-section,
  .future-section {
    padding: 64px 0;
  }

  .status-panel {
    padding: 26px 22px;
  }

  .status-panel::before {
    inset: 12px;
  }

  .status-grid {
    margin-top: 24px;
  }

  .status-number {
    font-size: clamp(4rem, 24vw, 6.6rem);
  }

  .future-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .future-card {
    min-height: auto;
    padding: 20px;
  }

  .future-card h3 {
    margin-top: 28px;
  }

  .future-button {
    width: 100%;
  }

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

  .member-card {
    width: 100%;
  }

  .member-card-overlay {
    background:
      linear-gradient(180deg, rgba(8, 8, 9, 0.08) 0%, rgba(8, 8, 9, 0.18) 42%, rgba(8, 8, 9, 0.82) 100%);
    opacity: 1;
  }

  .member-card:hover .member-portrait-image,
  .member-card:focus-within .member-portrait-image {
    transform: scale(1);
    filter: saturate(0.86) contrast(1.04) brightness(0.9);
  }

  .member-card-number,
  .member-card-copy,
  .member-card:hover .member-card-overlay,
  .member-card:hover .member-card-number,
  .member-card:hover .member-card-copy,
  .member-card:focus-within .member-card-overlay,
  .member-card:focus-within .member-card-number,
  .member-card:focus-within .member-card-copy {
    opacity: 1;
    transform: none;
  }

  .member-card:active .member-portrait-image {
    transform: scale(1.045);
    filter: saturate(0.95) contrast(1.08) brightness(0.86);
  }

  .member-card-number {
    top: 10px;
    left: 10px;
    font-size: 0.68rem;
  }

  .member-card-copy {
    right: 10px;
    bottom: 12px;
    left: 10px;
    gap: 3px;
  }

  .member-card-name {
    font-size: clamp(0.82rem, 4.2vw, 1.05rem);
    line-height: 1.24;
  }

  .member-card-tagline {
    font-size: 0.68rem;
    line-height: 1.25;
  }

  .content-section,
  .members-section,
  .cta-section {
    padding: 62px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .member-card,
  .member-portrait-image,
  .member-card-overlay,
  .member-card-number,
  .member-card-copy,
  .member-card-actions,
  .member-action-button {
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Weekly Pickup: 共犯者のブツ置き場の今週分カルーセル */
.pickup-section {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 86px 0 72px;
  border-top: 1px solid rgba(143, 31, 34, 0.24);
}

.pickup-head {
  margin-bottom: 30px;
}

.pickup-section h2 {
  margin-bottom: 14px;
}

.pickup-description {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.14rem);
  line-height: 1.9;
}

.pickup-range {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 0;
  border: 1px solid rgba(184, 149, 95, 0.42);
  padding: 7px 14px;
  background: rgba(13, 13, 15, 0.72);
}

.pickup-range-label {
  color: var(--accent-soft);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pickup-range-dates {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.pickup-rail {
  position: relative;
  overflow: hidden;
  padding: 4px 0 6px;
  /* 縦スクロールはブラウザに任せ、横のドラッグだけこちらで拾う。 */
  touch-action: pan-y;
}

.pickup-rail.is-looping {
  cursor: grab;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 44px, #000 calc(100% - 44px), transparent);
  mask-image: linear-gradient(90deg, transparent, #000 44px, #000 calc(100% - 44px), transparent);
}

.pickup-rail.is-dragging {
  cursor: grabbing;
}

.pickup-track {
  display: flex;
  gap: 16px;
  width: max-content;
  min-width: 100%;
  will-change: transform;
}

.pickup-card {
  flex: 0 0 320px;
  max-width: 320px;
}

.pickup-card-link {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  border: 1px solid rgba(184, 149, 95, 0.26);
  background:
    linear-gradient(145deg, rgba(143, 31, 34, 0.12), transparent 54%),
    rgba(13, 13, 15, 0.86);
  color: var(--text);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.pickup-card-link:hover {
  border-color: rgba(241, 234, 223, 0.46);
  background:
    linear-gradient(145deg, rgba(143, 31, 34, 0.18), transparent 50%),
    rgba(20, 18, 20, 0.9);
  transform: translateY(-2px);
}

.pickup-card-link:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 3px;
}

.pickup-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1200 / 630;
  background: var(--panel);
  border-bottom: 1px solid rgba(184, 149, 95, 0.2);
}

.pickup-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-user-drag: none;
  user-select: none;
}

.pickup-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  border: 1px solid rgba(184, 149, 95, 0.72);
  padding: 3px 9px;
  background: rgba(8, 8, 9, 0.82);
  color: var(--accent-soft);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.pickup-card-body {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 10px;
  padding: 16px 18px 18px;
}

.pickup-date {
  color: var(--accent-soft);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.pickup-card-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  color: var(--text);
  font-family: "Noto Serif JP", serif;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.pickup-author {
  display: flex;
  align-items: center;
  gap: 10px;
  align-self: end;
  min-width: 0;
  padding-top: 4px;
  border-top: 1px solid rgba(241, 234, 223, 0.08);
}

.pickup-author img,
.pickup-author-initial {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(241, 234, 223, 0.28);
  border-radius: 50%;
  object-fit: cover;
  -webkit-user-drag: none;
}

.pickup-author-initial {
  display: grid;
  place-items: center;
  background: rgba(143, 31, 34, 0.24);
  color: var(--accent-soft);
  font-family: "Noto Serif JP", serif;
  font-size: 0.92rem;
  font-weight: 700;
}

.pickup-author-text {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.pickup-author-name {
  overflow: hidden;
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pickup-author-member {
  color: var(--muted-dark);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.pickup-read {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.pickup-card-link:hover .pickup-read {
  color: var(--accent-soft);
}

.pickup-empty {
  margin: 0;
  border: 1px dashed rgba(184, 149, 95, 0.32);
  padding: 34px 22px;
  background: rgba(13, 13, 15, 0.6);
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
  text-align: center;
}

.pickup-button {
  display: flex;
  width: fit-content;
  margin: 28px auto 0;
  border-color: rgba(184, 149, 95, 0.42);
}

.pickup-button:hover {
  border-color: var(--accent-soft);
}

@media (max-width: 900px) {
  .pickup-section {
    padding: 64px 0 56px;
  }
}

@media (max-width: 640px) {
  .pickup-section {
    width: min(100% - 24px, var(--max));
  }

  .pickup-card {
    flex: 0 0 264px;
    max-width: 264px;
  }

  .pickup-card-title {
    font-size: 0.96rem;
  }

  .pickup-rail.is-looping {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 20px, #000 calc(100% - 20px), transparent);
    mask-image: linear-gradient(90deg, transparent, #000 20px, #000 calc(100% - 20px), transparent);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pickup-card-link {
    transition: none;
  }

  .pickup-card-link:hover {
    transform: none;
  }
}

/* Weekly Pickup: 既読表示（localStorage、このブラウザにだけ残る） */
.pickup-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.pickup-read-mark {
  display: none;
  flex: 0 0 auto;
  border: 1px solid rgba(241, 234, 223, 0.24);
  padding: 1px 7px;
  color: var(--muted-dark);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.pickup-card.is-read .pickup-read-mark {
  display: inline-flex;
}

.pickup-card.is-read .pickup-card-link {
  border-color: rgba(184, 149, 95, 0.14);
  background: rgba(13, 13, 15, 0.62);
}

.pickup-card.is-read .pickup-thumb img {
  filter: grayscale(1);
  opacity: 0.42;
}

.pickup-card.is-read .pickup-badge {
  border-color: rgba(241, 234, 223, 0.18);
  color: var(--muted-dark);
}

.pickup-card.is-read .pickup-date,
.pickup-card.is-read .pickup-card-title,
.pickup-card.is-read .pickup-author-name,
.pickup-card.is-read .pickup-read {
  color: var(--muted-dark);
}

.pickup-card.is-read .pickup-author img,
.pickup-card.is-read .pickup-author-initial {
  filter: grayscale(1);
  opacity: 0.55;
}

/* 既読でも読み返せるよう、触れたときは戻す */
.pickup-card.is-read .pickup-card-link:hover .pickup-thumb img,
.pickup-card.is-read .pickup-card-link:focus-visible .pickup-thumb img {
  filter: none;
  opacity: 1;
}

.pickup-card.is-read .pickup-card-link:hover .pickup-card-title,
.pickup-card.is-read .pickup-card-link:focus-visible .pickup-card-title {
  color: var(--text);
}

/* Weekly Pickup: 「読んだ」ボタンと、戻ってきたときの確認 */
.pickup-card {
  display: flex;
  flex-direction: column;
}

.pickup-card-link {
  flex: 1 1 auto;
}

.pickup-card-foot {
  display: flex;
  justify-content: flex-end;
  border: 1px solid rgba(184, 149, 95, 0.26);
  border-top: 0;
  padding: 0 14px 12px;
  background:
    linear-gradient(145deg, rgba(143, 31, 34, 0.12), transparent 54%),
    rgba(13, 13, 15, 0.86);
}

.pickup-card.is-read .pickup-card-foot {
  border-color: rgba(184, 149, 95, 0.14);
  background: rgba(13, 13, 15, 0.62);
}

.pickup-read-button {
  min-height: 34px;
  border: 1px solid rgba(184, 149, 95, 0.42);
  padding: 5px 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}

.pickup-read-button:hover {
  border-color: var(--accent-soft);
  background: rgba(255, 255, 255, 0.08);
}

.pickup-read-button:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 3px;
}

.pickup-read-button[disabled] {
  border-color: rgba(241, 234, 223, 0.14);
  background: transparent;
  color: var(--muted-dark);
  cursor: default;
}

.pickup-confirm {
  position: fixed;
  z-index: 60;
  right: 20px;
  bottom: 20px;
  left: auto;
  display: grid;
  gap: 14px;
  width: min(420px, calc(100vw - 40px));
  max-height: calc(100svh - 40px);
  overflow: auto;
  border: 1px solid rgba(184, 149, 95, 0.55);
  padding: 18px 20px;
  background:
    linear-gradient(145deg, rgba(143, 31, 34, 0.2), transparent 56%),
    rgba(10, 10, 12, 0.97);
  box-shadow: var(--shadow);
}

.pickup-confirm[hidden] {
  display: none;
}

.pickup-confirm-text {
  display: grid;
  gap: 6px;
  margin: 0;
  min-width: 0;
}

.pickup-confirm-question {
  color: var(--text);
  font-family: "Noto Serif JP", serif;
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.5;
}

.pickup-confirm-name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.pickup-confirm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pickup-confirm-actions .button {
  flex: 1 1 auto;
}

@media (max-width: 640px) {
  .pickup-confirm {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    padding: 16px;
  }

  /* 狭い画面でもボタンが2つとも見えるように縦へ積む */
  .pickup-confirm-actions {
    flex-direction: column;
  }

  .pickup-confirm-actions .button {
    width: 100%;
  }
}
