/* styles.css — FANZA Career Pages prototype
   Dark editorial base, warm CTA accents.
   Themeable via [data-theme] and [data-accent]. */

:root {
  --bg: #140f0d;
  --bg-soft: #1c1411;
  --bg-elev: #231814;
  --surface: rgba(34, 23, 19, 0.78);
  --surface-strong: rgba(43, 28, 23, 0.94);
  --border: rgba(255, 202, 140, 0.14);
  --border-strong: rgba(255, 202, 140, 0.26);
  --text: #f7efe9;
  --text-strong: #ffffff;
  --muted: #c9b6a6;
  --muted-soft: #8a7a6e;

  --accent: #ff7a4d;
  --accent-soft: #ffd07b;
  --accent-press: #e85a2a;
  --accent-glow: rgba(255, 122, 77, 0.32);

  --shadow-card: 0 18px 40px rgba(0, 0, 0, 0.32);
  --shadow-pop: 0 28px 60px rgba(0, 0, 0, 0.45);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;

  --font-sans: "BIZ UDPGothic", "Hiragino Kaku Gothic ProN", "Yu Gothic", system-ui, sans-serif;
  --font-serif: "Yu Mincho", "Hiragino Mincho ProN", "Source Han Serif JP", serif;

  --heading-family: var(--font-serif);
  --body-family: var(--font-sans);
}

[data-accent="red"] {
  --accent: #ef3e4a;
  --accent-soft: #ffb1b8;
  --accent-press: #c42330;
  --accent-glow: rgba(239, 62, 74, 0.32);
}
[data-accent="orange"] {
  --accent: #ff7a4d;
  --accent-soft: #ffd07b;
  --accent-press: #e85a2a;
  --accent-glow: rgba(255, 122, 77, 0.32);
}
[data-accent="rose"] {
  --accent: #E11D48;
  --accent-soft: #ff6b8a;
  --accent-press: #b3123a;
  --accent-glow: rgba(225, 29, 72, 0.32);
}
[data-accent="blue"] {
  --accent: #3a8dff;
  --accent-soft: #9bc7ff;
  --accent-press: #1f6cd8;
  --accent-glow: rgba(58, 141, 255, 0.32);
}

[data-theme="light"] {
  --bg: #f4efe9;
  --bg-soft: #ebe4dc;
  --bg-elev: #ffffff;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --border: rgba(60, 40, 30, 0.12);
  --border-strong: rgba(60, 40, 30, 0.22);
  --text: #1f1612;
  --text-strong: #000;
  --muted: #5b4a40;
  --muted-soft: #948578;
  --shadow-card: 0 14px 32px rgba(60, 40, 30, 0.12);
  --shadow-pop: 0 22px 48px rgba(60, 40, 30, 0.22);
}

[data-fonts="serif"] {
  --heading-family: var(--font-serif);
  --body-family: var(--font-serif);
}
[data-fonts="sans"] {
  --heading-family: var(--font-sans);
  --body-family: var(--font-sans);
}
[data-fonts="mixed"] {
  --heading-family: var(--font-serif);
  --body-family: var(--font-sans);
}

* { box-sizing: border-box; }

.fcp-app {
  min-height: 100%;
  color: var(--text);
  background:
    radial-gradient(circle at 12% -5%, rgba(225, 29, 72, 0.14), transparent 38%),
    radial-gradient(circle at 88% 8%, rgba(225, 29, 72, 0.07), transparent 28%),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 60%, #0d0908 100%);
  font-family: var(--body-family);
  line-height: 1.7;
  font-size: 16px;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}

[data-theme="light"] .fcp-app {
  background:
    radial-gradient(circle at 12% -5%, rgba(225, 29, 72, 0.12), transparent 40%),
    radial-gradient(circle at 88% 8%, rgba(225, 29, 72, 0.06), transparent 28%),
    linear-gradient(180deg, #faf5ee 0%, var(--bg) 60%, #ebe2d6 100%);
}

.fcp-app a { color: inherit; }

/* ────────── Top nav ────────── */
.fcp-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: linear-gradient(180deg, rgba(20, 15, 13, 0.92), rgba(20, 15, 13, 0.6) 70%, transparent);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid var(--border);
}
[data-theme="light"] .fcp-nav {
  background: linear-gradient(180deg, rgba(244, 239, 233, 0.94), rgba(244, 239, 233, 0.6) 70%, transparent);
}
.fcp-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--heading-family);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.fcp-brand-mark {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  display: grid; place-items: center;
  color: #1a0e08; font-weight: 800; font-size: 0.78rem;
  font-family: var(--font-sans);
}
.fcp-nav-links {
  display: flex; gap: 18px; list-style: none; padding: 0; margin: 0;
  font-size: 0.86rem; color: var(--muted);
}
.fcp-nav-links a { text-decoration: none; }
.fcp-nav-links a:hover { color: var(--text-strong); }
.fcp-nav-pr {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.7rem; padding: 4px 10px;
  border-radius: 999px; border: 1px solid var(--border-strong);
  color: var(--muted); letter-spacing: 0.06em;
}
.fcp-nav-pr::before {
  content: ""; width: 6px; height: 6px; border-radius: 999px;
  background: var(--accent);
}

/* ────────── Hero / actress detail ────────── */
.fcp-detail-hero {
  position: relative;
  padding: 32px 20px 22px;
  display: grid;
  gap: 18px;
}
.fcp-eyebrow {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.fcp-eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--accent);
}
.fcp-detail-h1 {
  font-family: var(--heading-family);
  font-size: clamp(2.1rem, 7vw, 2.8rem);
  line-height: 1.15;
  margin: 0;
  letter-spacing: 0.02em;
  text-wrap: pretty;
}
.fcp-detail-h1 .ruby {
  display: block;
  font-size: 0.72rem;
  font-family: var(--font-sans);
  color: var(--muted);
  letter-spacing: 0.32em;
  margin-bottom: 10px;
  font-weight: 400;
}
.fcp-tagline {
  font-family: var(--heading-family);
  font-size: 1.05rem;
  color: var(--accent-soft);
  margin: 0;
  font-weight: 500;
}
.fcp-detail-intro {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  text-wrap: pretty;
}

.fcp-hero-art {
  position: relative;
  aspect-ratio: 5/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.fcp-hero-art-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.6));
  color: #fff;
}
.fcp-hero-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 14px;
  font-size: 0.78rem;
}
.fcp-hero-meta dt {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.fcp-hero-meta dd {
  margin: 0;
  font-family: var(--heading-family);
  font-size: 0.95rem;
}

/* ────────── Section heading ────────── */
.fcp-section {
  padding: 28px 20px 12px;
}
.fcp-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}
.fcp-section-head h2 {
  font-family: var(--heading-family);
  font-size: 1.32rem;
  margin: 0;
  letter-spacing: 0.04em;
}
.fcp-section-head .count {
  font-size: 0.74rem;
  color: var(--muted);
  letter-spacing: 0.12em;
}
.fcp-section-kicker {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin: 0 0 6px;
}

/* ────────── Career timeline (accordion) ────────── */
.fcp-timeline {
  display: grid;
  gap: 8px;
}
.fcp-timeline-item {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.fcp-timeline-item.is-open {
  border-color: var(--border-strong);
  background: var(--surface-strong);
  box-shadow: var(--shadow-card);
}
.fcp-timeline-trigger {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  cursor: pointer;
  color: var(--text);
  font: inherit;
}
.fcp-timeline-year {
  font-family: var(--heading-family);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent-soft);
  letter-spacing: 0.02em;
  min-width: 64px;
}
.fcp-timeline-headline {
  font-family: var(--heading-family);
  font-size: 1rem;
  margin: 0;
  letter-spacing: 0.02em;
}
.fcp-timeline-chev {
  width: 28px; height: 28px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  display: grid; place-items: center;
  color: var(--accent-soft);
  transition: transform 0.25s, background 0.2s;
  font-size: 0.86rem;
}
.fcp-timeline-item.is-open .fcp-timeline-chev {
  transform: rotate(180deg);
  background: var(--accent);
  color: #1a0e08;
  border-color: transparent;
}
.fcp-timeline-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.fcp-timeline-item.is-open .fcp-timeline-body { grid-template-rows: 1fr; }
.fcp-timeline-body-inner {
  overflow: hidden;
  padding: 0 18px;
}
.fcp-timeline-item.is-open .fcp-timeline-body-inner {
  padding: 0 18px 18px;
}
.fcp-timeline-body p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.92rem;
}
.fcp-timeline-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  list-style: none; padding: 0; margin: 0;
}
.fcp-timeline-tags li {
  font-size: 0.74rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 122, 77, 0.10);
  border: 1px solid var(--border);
  color: var(--accent-soft);
  letter-spacing: 0.04em;
}
[data-theme="light"] .fcp-timeline-tags li {
  background: rgba(255, 122, 77, 0.12);
  color: var(--accent-press);
}

/* Vertical timeline variant */
[data-timeline="vertical"] .fcp-timeline {
  position: relative;
  padding-left: 28px;
  gap: 0;
}
[data-timeline="vertical"] .fcp-timeline::before {
  content: "";
  position: absolute;
  left: 8px; top: 14px; bottom: 14px;
  width: 1px; background: var(--border-strong);
}
[data-timeline="vertical"] .fcp-timeline-item {
  border: 0;
  background: transparent;
  border-radius: 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
[data-timeline="vertical"] .fcp-timeline-item.is-open {
  background: transparent;
  box-shadow: none;
  border-bottom: 1px solid var(--border-strong);
}
[data-timeline="vertical"] .fcp-timeline-trigger {
  padding: 0;
  position: relative;
}
[data-timeline="vertical"] .fcp-timeline-trigger::before {
  content: "";
  position: absolute;
  left: -25px; top: 12px;
  width: 9px; height: 9px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--bg-soft);
}
[data-timeline="vertical"] .fcp-timeline-body-inner,
[data-timeline="vertical"] .fcp-timeline-item.is-open .fcp-timeline-body-inner {
  padding: 0;
  padding-top: 8px;
}

/* ────────── Work cards ────────── */
.fcp-work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.fcp-work {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.18s ease, border-color 0.18s, box-shadow 0.18s;
  cursor: pointer;
  text-align: left;
}
.fcp-work:hover, .fcp-work:focus-visible {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-card);
  outline: none;
}
.fcp-work:active { transform: translateY(-1px); }
.fcp-work-art {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.fcp-work-art > div {
  position: absolute; inset: 0;
  transition: transform 0.4s ease;
}
.fcp-work:hover .fcp-work-art > div { transform: scale(1.05); }
.fcp-work-badge {
  position: absolute;
  left: 8px; top: 8px;
  background: var(--accent);
  color: #1a0e08;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 4px 8px;
  border-radius: 6px;
  z-index: 2;
  letter-spacing: 0.02em;
}
.fcp-work-year {
  position: absolute;
  right: 8px; bottom: 8px;
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  letter-spacing: 0.06em;
  z-index: 2;
}
.fcp-work-body {
  padding: 12px 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.fcp-work-title {
  font-family: var(--heading-family);
  font-size: 0.96rem;
  line-height: 1.35;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  letter-spacing: 0.01em;
  text-wrap: pretty;
}
.fcp-work-meta {
  font-size: 0.74rem;
  color: var(--muted);
  display: flex;
  gap: 8px;
  align-items: center;
}
.fcp-work-meta .dot {
  width: 3px; height: 3px;
  border-radius: 999px;
  background: var(--muted-soft);
}
.fcp-work-price {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-top: 6px;
}
.fcp-work-price .now {
  font-family: var(--heading-family);
  font-size: 1.05rem;
  color: var(--accent);
  font-weight: 700;
}
.fcp-work-price .was {
  font-size: 0.78rem;
  color: var(--muted-soft);
  text-decoration: line-through;
}
.fcp-work-cta {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent);
  color: #1a0e08;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  border: 0;
  cursor: pointer;
  transition: background 0.15s, transform 0.12s;
}
.fcp-work-cta:hover { background: var(--accent-press); color: #fff; }
.fcp-work-cta:active { transform: scale(0.98); }

/* List layout variant */
[data-cards="list"] .fcp-work-grid { grid-template-columns: 1fr; gap: 10px; }
[data-cards="list"] .fcp-work {
  flex-direction: row;
  align-items: stretch;
}
[data-cards="list"] .fcp-work-art {
  width: 110px; flex-shrink: 0; aspect-ratio: 3/4;
}
[data-cards="list"] .fcp-work-body { padding: 12px 14px; }
[data-cards="list"] .fcp-work-cta { margin-top: 6px; height: 36px; font-size: 0.8rem; }

/* Compact variant */
[data-cards="compact"] .fcp-work-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
[data-cards="compact"] .fcp-work-body { padding: 10px; gap: 4px; }
[data-cards="compact"] .fcp-work-title { font-size: 0.8rem; -webkit-line-clamp: 2; }
[data-cards="compact"] .fcp-work-meta { font-size: 0.66rem; }
[data-cards="compact"] .fcp-work-price .now { font-size: 0.92rem; }
[data-cards="compact"] .fcp-work-cta { display: none; }

/* Horizontal scroll for sale */
.fcp-hscroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 20px 8px;
  margin: 0 -20px;
  scrollbar-width: none;
}
.fcp-hscroll::-webkit-scrollbar { display: none; }
.fcp-hscroll > * {
  flex: 0 0 64%;
  scroll-snap-align: start;
}

/* ────────── Related actresses ────────── */
.fcp-related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.fcp-related {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}
.fcp-related-art {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
}
.fcp-related-order {
  position: absolute;
  left: 8px; top: 8px;
  font-family: var(--heading-family);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  z-index: 2;
}
.fcp-related-name {
  font-family: var(--heading-family);
  font-size: 0.92rem;
  margin: 0;
}
.fcp-related-track {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}

/* ────────── FAQ ────────── */
.fcp-faq {
  display: grid;
  gap: 6px;
}
.fcp-faq-item {
  border-bottom: 1px solid var(--border);
}
.fcp-faq-trigger {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  padding: 16px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  color: var(--text);
  font: inherit;
}
.fcp-faq-q {
  font-family: var(--heading-family);
  font-size: 0.96rem;
  margin: 0;
  flex: 1;
  line-height: 1.4;
}
.fcp-faq-q::before {
  content: "Q.";
  font-family: var(--heading-family);
  color: var(--accent);
  margin-right: 8px;
}
.fcp-faq-toggle {
  width: 24px; height: 24px;
  display: grid; place-items: center;
  font-size: 1.05rem;
  color: var(--accent-soft);
  transition: transform 0.25s;
  flex-shrink: 0;
}
.fcp-faq-item.is-open .fcp-faq-toggle { transform: rotate(45deg); }
.fcp-faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.fcp-faq-item.is-open .fcp-faq-body { grid-template-rows: 1fr; }
.fcp-faq-body-inner {
  overflow: hidden;
  padding-bottom: 0;
}
.fcp-faq-item.is-open .fcp-faq-body-inner { padding-bottom: 16px; }
.fcp-faq-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.fcp-faq-body p::before {
  content: "A.";
  font-family: var(--heading-family);
  color: var(--accent-soft);
  margin-right: 8px;
}

/* ────────── Sticky CTA bar ────────── */
.fcp-sticky-cta {
  position: sticky;
  bottom: 0;
  margin-top: 24px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, transparent, rgba(20, 15, 13, 0.95) 30%);
  backdrop-filter: blur(10px);
  z-index: 30;
  display: flex;
  gap: 10px;
  align-items: center;
}
[data-theme="light"] .fcp-sticky-cta {
  background: linear-gradient(180deg, transparent, rgba(244, 239, 233, 0.96) 30%);
}
.fcp-sticky-cta-msg {
  flex: 1;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
}
.fcp-sticky-cta-msg b {
  display: block;
  color: var(--text);
  font-family: var(--heading-family);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.fcp-sticky-cta-btn {
  padding: 0 18px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent);
  color: #1a0e08;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  box-shadow: 0 8px 22px var(--accent-glow);
  transition: background 0.15s, transform 0.12s;
}
.fcp-sticky-cta-btn:hover { background: var(--accent-press); color: #fff; }
.fcp-sticky-cta-btn:active { transform: scale(0.98); }

/* ────────── Notices / footer chips ────────── */
.fcp-chips {
  display: flex; flex-wrap: wrap; gap: 6px;
  list-style: none; padding: 0; margin: 14px 0 0;
}
.fcp-chip {
  font-size: 0.7rem;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  letter-spacing: 0.06em;
}
[data-theme="light"] .fcp-chip {
  background: rgba(0, 0, 0, 0.04);
}

.fcp-notices {
  margin-top: 28px;
  padding: 18px 20px;
  border-top: 1px solid var(--border);
  font-size: 0.74rem;
  color: var(--muted-soft);
  line-height: 1.6;
}
.fcp-notices p { margin: 0 0 6px; }
.fcp-notices .credit {
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  color: var(--muted-soft);
  margin-top: 8px;
}

/* ────────── Hub (top page) ────────── */
.fcp-hub-hero {
  padding: 36px 20px 24px;
  text-align: left;
  display: grid;
  gap: 14px;
}
.fcp-hub-h1 {
  font-family: var(--heading-family);
  font-size: clamp(2rem, 8vw, 2.6rem);
  line-height: 1.18;
  margin: 0;
  text-wrap: pretty;
  letter-spacing: 0.02em;
}
.fcp-hub-h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--accent), var(--accent-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.fcp-hub-lead {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  text-wrap: pretty;
}
.fcp-hub-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 10px;
  padding: 14px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
}
.fcp-hub-stat .num {
  font-family: var(--heading-family);
  font-size: 1.4rem;
  color: var(--accent-soft);
}
.fcp-hub-stat .lbl {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.fcp-hub-tracks {
  padding: 8px 20px 24px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.fcp-hub-tracks::-webkit-scrollbar { display: none; }
.fcp-hub-track {
  flex-shrink: 0;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 0.78rem;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.15s;
}
.fcp-hub-track.is-active {
  background: var(--accent);
  color: #1a0e08;
  border-color: transparent;
  font-weight: 600;
}

.fcp-hub-grid {
  padding: 0 20px 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.fcp-actress-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.18s, border-color 0.18s, box-shadow 0.18s;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.fcp-actress-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-card);
}
.fcp-actress-card.is-featured {
  grid-column: 1 / -1;
}
.fcp-actress-card.is-featured .fcp-actress-art {
  aspect-ratio: 16/9;
}
.fcp-actress-art {
  aspect-ratio: 4/5;
  position: relative;
}
.fcp-actress-order {
  position: absolute;
  left: 12px; top: 12px;
  font-family: var(--heading-family);
  font-size: 1.4rem;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.04em;
  z-index: 2;
}
.fcp-actress-track-pill {
  position: absolute;
  right: 12px; top: 12px;
  font-size: 0.66rem;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  letter-spacing: 0.06em;
  z-index: 2;
  backdrop-filter: blur(8px);
}
.fcp-actress-body {
  padding: 12px 14px 14px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}
.fcp-actress-name {
  font-family: var(--heading-family);
  font-size: 1.05rem;
  margin: 0;
  letter-spacing: 0.04em;
}
.fcp-actress-works {
  font-size: 0.74rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.fcp-actress-card.is-featured .fcp-actress-name { font-size: 1.4rem; }

/* ────────── Age gate modal ────────── */
.fcp-modal {
  position: absolute;
  inset: 0;
  z-index: 100;
  background: rgba(8, 5, 4, 0.72);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: fcp-fade 0.25s ease-out;
}
@keyframes fcp-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.fcp-modal-card {
  background: var(--bg-elev);
  width: 100%;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  padding: 28px 22px calc(22px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--border);
  animation: fcp-slide-up 0.32s cubic-bezier(0.2, 0.7, 0.3, 1);
  display: grid;
  gap: 14px;
}
@keyframes fcp-slide-up {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.fcp-modal-grip {
  width: 36px; height: 4px;
  border-radius: 999px;
  background: var(--border-strong);
  margin: 0 auto 6px;
}
.fcp-modal-h {
  font-family: var(--heading-family);
  font-size: 1.4rem;
  margin: 0;
  text-align: center;
  letter-spacing: 0.04em;
}
.fcp-modal-h span {
  display: block;
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.2em;
  font-family: var(--font-sans);
  margin-bottom: 8px;
}
.fcp-modal-body {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
  text-align: center;
  text-wrap: pretty;
}
.fcp-modal-actions {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}
.fcp-modal-btn {
  height: 50px;
  border-radius: 14px;
  border: 0;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.15s;
}
.fcp-modal-btn.primary {
  background: var(--accent);
  color: #1a0e08;
  box-shadow: 0 8px 22px var(--accent-glow);
}
.fcp-modal-btn.primary:hover { background: var(--accent-press); color: #fff; }
.fcp-modal-btn.secondary {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}
.fcp-modal-foot {
  margin: 0;
  font-size: 0.7rem;
  color: var(--muted-soft);
  text-align: center;
  letter-spacing: 0.04em;
}

/* ────────── Desktop layout ────────── */
.fcp-app[data-device="desktop"] {
  font-size: 16px;
}
.fcp-app[data-device="desktop"] .fcp-detail-hero {
  padding: 56px 56px 32px;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
.fcp-app[data-device="desktop"] .fcp-detail-h1 {
  font-size: clamp(3rem, 4vw, 4rem);
}
.fcp-app[data-device="desktop"] .fcp-section { padding: 36px 56px 16px; }
.fcp-app[data-device="desktop"] .fcp-work-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
.fcp-app[data-device="desktop"] .fcp-related-grid { grid-template-columns: repeat(4, 1fr); }
.fcp-app[data-device="desktop"] .fcp-hub-hero { padding: 64px 56px 36px; }
.fcp-app[data-device="desktop"] .fcp-hub-grid { padding: 0 56px 36px; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.fcp-app[data-device="desktop"] .fcp-hub-tracks { padding: 8px 56px 28px; }
.fcp-app[data-device="desktop"] .fcp-hscroll { padding: 0 56px 12px; margin: 0 -56px; }
.fcp-app[data-device="desktop"] .fcp-hscroll > * { flex: 0 0 calc((100% - 36px) / 4); }
.fcp-app[data-device="desktop"] .fcp-notices { padding: 28px 56px; }
.fcp-app[data-device="desktop"][data-cards="compact"] .fcp-work-grid { grid-template-columns: repeat(6, 1fr); }
.fcp-app[data-device="desktop"] .fcp-actress-card.is-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.fcp-app[data-device="desktop"] .fcp-actress-card.is-featured .fcp-actress-art { aspect-ratio: auto; height: 100%; }
.fcp-app[data-device="desktop"] .fcp-actress-card.is-featured .fcp-actress-body {
  flex-direction: column; align-items: flex-start; gap: 18px; padding: 28px;
}

/* ────────── Actress / work detail pages (additive) ────────── */
.fcp-app .fcp-detail-hero { padding: 56px 20px 28px; }
.fcp-app .fcp-section-note {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.95rem;
}
.fcp-app .fcp-work-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fcp-app .fcp-work-art__placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: var(--muted-soft);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(0,0,0,0.18));
}
.fcp-app .fcp-work-meta-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px 18px;
  margin: 6px 0 0;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
}
.fcp-app .fcp-work-meta-row { margin: 0; }
.fcp-app .fcp-work-meta-row dt {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-soft);
}
.fcp-app .fcp-work-meta-row dd {
  margin: 4px 0 0;
  font-family: var(--heading-family);
  font-size: 1rem;
  color: var(--text-strong);
}
.fcp-app .fcp-sample-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}
.fcp-app .fcp-sample-video {
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: #000;
}
.fcp-app .fcp-section--cta {
  margin-top: 8px;
}
.fcp-app .fcp-section--cta .fcp-work-cta {
  display: inline-flex;
  padding: 0 22px;
  height: 48px;
  border-radius: 12px;
  margin-top: 6px;
  background: var(--accent);
  color: #1a0e08;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: 0 14px 32px var(--accent-glow);
  align-items: center;
}
.fcp-app .fcp-section--cta .fcp-work-cta:hover {
  background: var(--accent-press);
  color: #fff;
}
.fcp-app .fcp-work-backlink {
  margin-top: 14px;
  font-size: 0.86rem;
  color: var(--muted);
}
.fcp-app .fcp-work-backlink a {
  color: var(--accent-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.fcp-app .fcp-work-backlink a:hover {
  border-bottom-color: var(--accent-soft);
}
.fcp-app .fcp-work--image-only .fcp-work-art {
  aspect-ratio: 3/2;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.fcp-app .fcp-work--image-only .fcp-work-art img {
  object-fit: cover;
}
.fcp-app .fcp-section-head .count { font-feature-settings: "tnum" 1; }
.fcp-app .fcp-detail-intro a {
  color: var(--accent-soft);
  text-decoration: none;
  border-bottom: 1px solid var(--border-strong);
}
.fcp-app .fcp-detail-intro a:hover { color: var(--text-strong); }

/* ────────── Detail-page responsive polish (additive) ────────── */
@media (min-width: 768px) {
  .fcp-app .fcp-detail-hero,
  .fcp-app .fcp-section,
  .fcp-app .fcp-notices {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
  }
  .fcp-app .fcp-work-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
@media (min-width: 1080px) {
  .fcp-app .fcp-work-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
}

/* Image gallery on work pages should respect natural DMM jacket aspect (~3:2) */
.fcp-app .fcp-work--image-only {
  background: transparent;
  border: 0;
  box-shadow: none;
  cursor: default;
}

/* Sample-video iframe responsive container (DMM litevideo player).
   The DMM player page renders at a fixed native px size (e.g. 720x480) and is
   cross-origin, so we cannot restyle its content. Instead, set the iframe to its
   native dimensions and scale the whole iframe to fit the container width via a
   container query, eliminating mobile scrollbars. */
.fcp-app .fcp-sample-video-frame {
  --src-w: 720;
  --src-h: 480;
  position: relative;
  width: 100%;
  max-width: min(calc(var(--src-w) * 1px), calc(56vh * var(--src-w) / var(--src-h)));
  margin: 0 auto;
  aspect-ratio: var(--src-w) / var(--src-h);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #111;
  container-type: inline-size;
}
/* Placeholder label shown behind the iframe until/unless it paints */
.fcp-app .fcp-sample-video-frame::before {
  content: "▶ 公式サンプル動画";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  pointer-events: none;
  z-index: 0;
}
.fcp-app .fcp-sample-video-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(var(--src-w) * 1px);
  height: calc(var(--src-h) * 1px);
  border: 0;
  display: block;
  transform-origin: 0 0;
  transform: scale(calc(100cqi / (var(--src-w) * 1px)));
  z-index: 1;
}

/* Work hero summary line (metadata-driven, no AI) */
.fcp-app .fcp-detail-summary {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  text-wrap: pretty;
}

/* ──────────────────────────────────────────────
   Homepage redesign — Cover-led Hybrid
   Accent: rose-red #E11D48. Dark charcoal base.
   ────────────────────────────────────────────── */

/* ── Accent override for homepage shell ── */
.home-shell {
  --home-accent: #E11D48;
  --home-accent-dim: rgba(225, 29, 72, 0.18);
  --home-accent-glow: rgba(225, 29, 72, 0.28);
  min-height: 100vh;
  color: var(--text, #f7efe9);
  background:
    radial-gradient(circle at 12% -5%, rgba(225, 29, 72, 0.10), transparent 38%),
    radial-gradient(circle at 88% 8%, rgba(225, 29, 72, 0.07), transparent 28%),
    linear-gradient(180deg, #1c1411 0%, #140f0d 60%, #0d0908 100%);
  font-family: var(--font-sans, system-ui, sans-serif);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
body { margin: 0; background: #140f0d; }

/* ── Compliance bar ── */
.home-compliance-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 10px;
  padding: 7px 16px;
  background: rgba(225, 29, 72, 0.08);
  border-bottom: 1px solid rgba(225, 29, 72, 0.22);
  font-size: 0.7rem;
  color: rgba(247, 239, 233, 0.65);
  letter-spacing: 0.06em;
  text-align: center;
}
.home-compliance-item { white-space: nowrap; }
.home-compliance-sep { color: rgba(247, 239, 233, 0.3); }

/* ── Nav override for home ── */
.home-nav .fcp-brand-mark {
  background: linear-gradient(135deg, var(--home-accent), #ff6b7a);
}
.home-nav .fcp-nav-pr::before { background: var(--home-accent); }

/* ── Hero ── */
.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 28px;
  padding: 56px 24px 36px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.home-hero__copy { display: grid; gap: 16px; }
.home-hero__h1 {
  font-family: var(--font-serif, serif);
  font-size: clamp(1.9rem, 5.5vw, 3.4rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 0;
  color: #fff;
  text-wrap: pretty;
}
.home-hero__sub {
  margin: 0;
  color: var(--muted, #c9b6a6);
  font-size: 0.97rem;
  line-height: 1.72;
  text-wrap: pretty;
  max-width: 600px;
}
.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}
.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
}
.home-btn--primary {
  background: var(--home-accent);
  color: #fff;
  box-shadow: 0 10px 28px var(--home-accent-glow);
}
.home-btn--primary:hover { background: #c01840; box-shadow: 0 14px 36px var(--home-accent-glow); }
.home-btn--secondary {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text, #f7efe9);
  border-color: rgba(255, 202, 140, 0.22);
}
.home-btn--secondary:hover { background: rgba(255, 255, 255, 0.12); }

/* Hero cover strip */
.home-hero-covers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 8px;
  border-radius: 20px;
  overflow: hidden;
}
.home-hero-cover {
  aspect-ratio: 2/3;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
}
.home-hero-cover:first-child {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  aspect-ratio: 4/5;
  border-radius: 14px;
}
.home-hero-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 75% 28%;
  display: block;
  transition: transform 0.4s ease;
}
.home-hero-cover:hover img { transform: scale(1.04); }

/* ── Sections ── */
.home-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 44px 24px 28px;
}
.home-section__header { margin-bottom: 22px; }
.home-section__h2 {
  font-family: var(--font-serif, serif);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  margin: 0 0 6px;
  letter-spacing: -0.03em;
  color: #fff;
}
.home-section__lead {
  margin: 0;
  color: var(--muted, #c9b6a6);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

/* ── Actress grid ── */
.home-actress-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.home-actress-card {
  background: rgba(34, 23, 19, 0.75);
  border: 1px solid rgba(255, 202, 140, 0.14);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.18s ease, border-color 0.18s, box-shadow 0.18s;
}
.home-actress-card:hover {
  transform: translateY(-3px);
  border-color: rgba(225, 29, 72, 0.4);
  box-shadow: 0 12px 32px rgba(225, 29, 72, 0.16);
}
.home-actress-card__link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.home-actress-cover {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  flex-shrink: 0;
}
.home-actress-cover--placeholder {
  background: linear-gradient(135deg, rgba(225,29,72,0.12), rgba(255,255,255,0.04));
}
.home-actress-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 75% 28%;
  display: block;
}
.home-actress-card__body {
  padding: 12px 14px 14px;
  display: grid;
  gap: 4px;
}
.home-actress-card__name {
  font-family: var(--font-serif, serif);
  font-size: 1.05rem;
  margin: 0;
  color: #fff;
  letter-spacing: 0.04em;
}
.home-actress-card__tagline {
  margin: 0;
  color: var(--muted, #c9b6a6);
  font-size: 0.78rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-actress-card:hover .home-actress-card__name { color: var(--home-accent); }

/* ── Works grid ── */
.home-works-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.home-work-card {
  background: rgba(34, 23, 19, 0.75);
  border: 1px solid rgba(255, 202, 140, 0.14);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.18s ease, border-color 0.18s, box-shadow 0.18s;
}
.home-work-card:hover {
  transform: translateY(-3px);
  border-color: rgba(225, 29, 72, 0.38);
  box-shadow: 0 12px 28px rgba(0,0,0,0.28);
}
.home-work-card__link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.home-work-card__art {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  flex-shrink: 0;
}
.home-work-card__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 75% 28%;
  display: block;
}
.home-work-card__placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: var(--muted-soft, #8a7a6e);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
}
.home-work-card__body {
  padding: 10px 12px 12px;
  display: grid;
  gap: 4px;
}
.home-work-card__title {
  font-family: var(--font-serif, serif);
  font-size: 0.86rem;
  margin: 0;
  color: #f7efe9;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-work-card__date {
  margin: 0;
  color: var(--muted, #c9b6a6);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
}
.home-work-card:hover .home-work-card__title { color: var(--home-accent); }

/* ── Genre chips ── */
.home-genre-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.home-genre-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 202, 140, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted, #c9b6a6);
  font-size: 0.82rem;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.home-genre-chip:hover {
  background: var(--home-accent-dim);
  border-color: rgba(225, 29, 72, 0.4);
  color: #fff;
}
.home-genre-chip__count {
  font-size: 0.68rem;
  /* Lightened from #8a7a6e to meet WCAG AA (>=4.5:1) for small text on the dark chip. */
  color: #cabcae;
  background: rgba(255,255,255,0.08);
  padding: 1px 6px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.home-genre-all {
  margin: 8px 0 0;
}
.home-genre-all__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  color: var(--home-accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
  padding-bottom: 1px;
}
.home-genre-all__link:hover { border-bottom-color: var(--home-accent); }
.home-genre-all__link::after { content: " →"; font-size: 0.8em; }

/* ── Footer ── */
.home-footer {
  margin-top: 48px;
  border-top: 1px solid rgba(255, 202, 140, 0.12);
  padding: 28px 24px 48px;
}
.home-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}
.home-footer__about {
  margin: 0;
  color: var(--muted-soft, #8a7a6e);
  font-size: 0.82rem;
  line-height: 1.6;
}
.home-footer__notices {
  margin: 0;
  color: var(--muted-soft, #8a7a6e);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
}
.home-footer__noindex {
  margin: 0;
  color: var(--muted-soft, #8a7a6e);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
}

/* ── Genres index page ── */
.genres-index-section { max-width: 1200px; margin: 0 auto; }
.genres-index-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.genres-index-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 202, 140, 0.14);
  background: rgba(34, 23, 19, 0.6);
  color: var(--text, #f7efe9);
  text-decoration: none;
  font-size: 0.86rem;
  transition: background 0.15s, border-color 0.15s;
}
.genres-index-link:hover {
  background: rgba(225, 29, 72, 0.1);
  border-color: rgba(225, 29, 72, 0.36);
  color: #fff;
}
.genres-index-count {
  font-size: 0.7rem;
  color: var(--muted-soft, #8a7a6e);
  background: rgba(255,255,255,0.06);
  padding: 1px 6px;
  border-radius: 999px;
  flex-shrink: 0;
}
.genres-index-back {
  max-width: 1200px;
  margin: 16px auto 0;
  padding: 0 24px 32px;
  font-size: 0.86rem;
  color: var(--muted, #c9b6a6);
}
.genres-index-back a {
  color: var(--muted, #c9b6a6);
  text-decoration: none;
}
.genres-index-back a:hover { color: #fff; }

/* ── Responsive: mobile ── */
@media (max-width: 860px) {
  .home-hero {
    grid-template-columns: 1fr;
    padding-top: 36px;
    gap: 32px;
  }
  .home-hero-covers {
    grid-template-columns: repeat(3, 1fr);
    max-height: 340px;
    overflow: hidden;
  }
  .home-hero-cover:first-child { grid-column: 1 / 2; grid-row: 1 / 2; aspect-ratio: 2/3; }
  .home-actress-grid { grid-template-columns: repeat(2, 1fr); }
  .home-works-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .home-actress-grid { grid-template-columns: 1fr; }
  .home-works-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .home-hero__h1 { font-size: clamp(1.7rem, 7vw, 2.2rem); }
}
@media (min-width: 1080px) {
  .home-actress-grid { grid-template-columns: repeat(3, 1fr); }
  .home-works-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ══════════════════════════════════════════════════════════════════════
   AD SLOTS — theme-aware styles for .fcp-ad-slot
   Added in P1 (dummy-slot baseline). Slot placement in pages is P3.
   ══════════════════════════════════════════════════════════════════════ */

.fcp-ad-slot {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: var(--bg-elev, #231814);
  border: 1px solid var(--border, rgba(255, 202, 140, 0.14));
  border-radius: var(--radius-sm, 10px);
  overflow: hidden;
  /* min-height is set inline (reservedHeightPx) for CLS prevention */
}

/* PR / 広告 label — always visible (spec cond 8 / 景表法) */
.fcp-ad-slot__label {
  position: absolute;
  top: 4px;
  right: 8px;
  font-size: 0.65rem;
  font-family: var(--font-sans);
  color: var(--muted-soft, #8a7a6e);
  background: var(--bg-elev, #231814);
  padding: 1px 5px;
  border-radius: 4px;
  pointer-events: none;
  z-index: 1;
  letter-spacing: 0.04em;
}

/* Banner format */
.fcp-ad-slot--banner {
  width: 100%;
  justify-content: center;
  align-items: center;
}

/* Native format — visually distinct from content cards (spec cond 8) */
.fcp-ad-slot--native {
  background: var(--bg-soft, #1c1411);
  border-color: var(--accent-glow, rgba(255, 122, 77, 0.32));
  border-style: dashed;
}

.fcp-ad-slot--native .fcp-ad-slot__label {
  /* More prominent label for native to prevent confusion with content */
  background: var(--accent, #ff7a4d);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* Content area */
.fcp-ad-slot__content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

/* Reveal animation — added by ads-client.js after consent + viewport entry */
.fcp-ad-slot.loaded {
  animation: fcp-ad-fade-in 0.3s ease;
}

@keyframes fcp-ad-fade-in {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════════════════════════════
   AGE GATE OVERLAY — .fcp-age-gate
   Full-screen modal; fail-closed (visible by default via critical CSS).
   JS (ads-client.js) hides it after consent.
   ══════════════════════════════════════════════════════════════════════ */

.fcp-age-gate {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 6, 5, 0.97);
  align-items: center;
  justify-content: center;
  padding: 24px;
  /* Backdrop blur for supporting browsers */
  backdrop-filter: blur(4px);
}

.fcp-age-gate[hidden] {
  display: none;
}

.fcp-age-gate__box {
  background: var(--bg-elev, #231814);
  border: 1px solid var(--border-strong, rgba(255, 202, 140, 0.26));
  border-radius: var(--radius-lg, 22px);
  padding: 40px 32px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-pop, 0 28px 60px rgba(0, 0, 0, 0.45));
}

.fcp-age-gate__label {
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent, #ff7a4d);
  margin: 0 0 8px;
  line-height: 1;
}

.fcp-age-gate__title {
  font-family: var(--heading-family, var(--font-serif));
  font-size: clamp(1.1rem, 4vw, 1.4rem);
  color: var(--text-strong, #fff);
  margin: 0 0 16px;
}

.fcp-age-gate__desc {
  color: var(--text, #f7efe9);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 8px;
}

.fcp-age-gate__note {
  color: var(--muted, #c9b6a6);
  font-size: 0.78rem;
  margin: 0 0 28px;
  line-height: 1.5;
}

.fcp-age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.fcp-age-gate__btn {
  display: block;
  width: 100%;
  padding: 14px 20px;
  border-radius: var(--radius-md, 16px);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  border: none;
  font-family: var(--font-sans);
  transition: background 0.15s, transform 0.1s;
}

.fcp-age-gate__btn--yes {
  background: var(--accent, #ff7a4d);
  color: #fff;
}

.fcp-age-gate__btn--yes:hover,
.fcp-age-gate__btn--yes:focus-visible {
  background: var(--accent-press, #e85a2a);
  transform: translateY(-1px);
}

.fcp-age-gate__btn--no {
  background: transparent;
  color: var(--muted, #c9b6a6);
  border: 1px solid var(--border-strong, rgba(255, 202, 140, 0.26));
}

.fcp-age-gate__btn--no:hover,
.fcp-age-gate__btn--no:focus-visible {
  color: var(--text, #f7efe9);
  border-color: var(--muted, #c9b6a6);
}

.fcp-age-gate__privacy {
  font-size: 0.78rem;
  color: var(--muted, #c9b6a6);
  margin: 0;
}

.fcp-age-gate__privacy-link {
  color: var(--accent-soft, #ffd07b);
  text-decoration: underline;
}

.fcp-age-gate__privacy-link:hover {
  color: #fff;
}

@media (max-width: 480px) {
  .fcp-age-gate__box {
    padding: 32px 20px;
  }
}

/* ────────── Official activity (career spark + official links) ────────── */
/* Career snapshot */
.fcp-career-card {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 16px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 16px;
}
.fcp-career-summary {
  display: grid;
  gap: 12px;
  align-content: start;
}
.fcp-period {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.84rem;
}
.fcp-period strong {
  color: var(--text);
  font-family: var(--heading-family);
  font-size: 1.32rem;
}
.fcp-career-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}
.fcp-spark {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 7px;
  align-items: end;
  min-height: 132px;
  padding: 10px 10px 6px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.14);
}
.fcp-bar {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 6px;
  height: 112px;
  color: var(--muted-soft);
  font-size: 0.62rem;
  text-align: center;
}
.fcp-bar span {
  align-self: end;
  display: block;
  min-height: 6px;
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(180deg, var(--accent-soft), var(--accent));
}
.fcp-bar b {
  font-weight: 400;
  font-feature-settings: "tnum" 1;
}

/* Official activity grid: links + announcements */
.fcp-activity-pr {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px 9px;
}
.fcp-activity-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 14px;
}
.fcp-activity-grid--single {
  grid-template-columns: 1fr;
}
.fcp-link-panel,
.fcp-story-panel {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 14px;
}
.fcp-social-links {
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.fcp-social-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 2px;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.fcp-social-links li:last-child a {
  border-bottom: 0;
}
.fcp-social-links a:hover {
  color: var(--accent-soft);
}
.fcp-social-links small {
  color: var(--muted-soft);
  font-size: 0.68rem;
}
.fcp-activity-story {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.7;
}
.fcp-activity-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
/* NOTE: scope these to `li.fcp-activity` (the recent-activity list item). The
   class name `fcp-activity` is ALSO on the <section class="fcp-section fcp-activity">,
   so an unscoped `.fcp-activity { display:grid; grid-template-columns:64px 1fr }`
   leaked onto the section and squished its header into a 64px column. */
li.fcp-activity {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
li.fcp-activity:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
li.fcp-activity time {
  color: var(--accent-soft);
  font-family: var(--heading-family);
  font-size: 0.92rem;
}
li.fcp-activity p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}
li.fcp-activity b {
  display: block;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 2px;
}
li.fcp-activity a {
  color: var(--muted);
  text-decoration: none;
}
li.fcp-activity a:hover {
  color: var(--accent-soft);
  text-decoration: underline;
}

@media (max-width: 860px) {
  .fcp-career-card,
  .fcp-activity-grid {
    grid-template-columns: 1fr;
  }
}

/* ── 波A: sale badge (②) / verified badge (⑥) / starter trio (③) ───────── */
.fcp-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 2px 7px;
  border-radius: 999px;
  line-height: 1.4;
}
.fcp-badge-sale {
  color: #fff;
  background: var(--accent);
  margin-left: 8px;
}
.fcp-verified {
  display: inline-block;
  margin-left: 8px;
  font-size: 0.62rem;
  color: var(--accent-soft, var(--accent));
  white-space: nowrap;
}

.fcp-starter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.fcp-starter {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fcp-starter-head {
  display: flex;
  align-items: center;
  gap: 8px;
}
.fcp-starter-role {
  display: inline-flex;
  align-items: center;
  font-size: 0.66rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.fcp-starter-art {
  display: block;
  border-radius: 10px;
  overflow: hidden;
}
.fcp-starter-art img {
  width: 100%;
  height: auto;
  display: block;
}
.fcp-starter-title {
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.3;
}
.fcp-starter-reason {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0;
  text-wrap: pretty;
}

@media (max-width: 860px) {
  .fcp-starter-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================================
   P2 回遊ページ（女優一覧 / ランキング / セール）の固有コンポーネント。
   既存の fcp-app/nav/detail-hero/section/work-card 言語に揃える。
   accent は各ページ data-accent="rose"。cover は DMM パッケージ＝3/4 縦長。
   ========================================================================== */

/* --- hero 補足ノート（ランキングの「人気順の根拠」など） --- */
.fcp-detail-note {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
}

/* --- パンくず（fcp-detail-hero 先頭・全ページ共通） --- */
.fcp-breadcrumb {
  margin: 0 0 12px;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}
.fcp-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}
.fcp-breadcrumb a:hover {
  color: var(--text-strong);
  text-decoration: underline;
}
.fcp-breadcrumb [aria-current="page"] {
  color: var(--text);
}

/* --- 共通: 戻る導線 / 回遊リンク --- */
.fcp-back,
.actresses-index-back {
  padding: 8px 20px 28px;
  margin: 0;
}
.fcp-back a,
.actresses-index-back a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
}
.fcp-back a:hover,
.actresses-index-back a:hover {
  color: var(--text-strong);
}

.fcp-crosslinks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 6px 20px 18px;
}
.fcp-crosslinks a,
.fcp-crosslink {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
  font-size: 0.86rem;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.fcp-crosslinks a:hover,
.fcp-crosslink:hover {
  border-color: var(--border-strong);
  color: var(--text-strong);
  transform: translateY(-1px);
}

/* --- FANZA アフィリエイト誘導枠（自前バナー） --- */
.fcp-fanza-promo {
  margin: 8px 20px 22px;
  padding: 20px 22px;
  display: grid;
  gap: 12px;
  justify-items: start;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--surface-strong), var(--bg-elev));
  box-shadow: var(--shadow-card);
}
.fcp-fanza-promo__label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1a0e08;
  background: var(--accent-soft);
  padding: 3px 9px;
  border-radius: 6px;
}
.fcp-fanza-promo__heading {
  margin: 0;
  font-family: var(--heading-family);
  font-size: 1.18rem;
  color: var(--text-strong);
}
.fcp-fanza-promo__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #1a0e08;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 24px var(--accent-glow);
  transition: background 0.2s ease, transform 0.2s ease;
}
.fcp-fanza-promo__cta:hover {
  background: var(--accent-press);
  transform: translateY(-1px);
}

/* ============================ 女優一覧（五十音） ========================== */
.actresses-index-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 4px 20px 18px;
}
.actresses-index-jump {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  color: var(--accent-soft);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.86rem;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.actresses-index-jump:hover {
  border-color: var(--border-strong);
  color: var(--text-strong);
  transform: translateY(-1px);
}

.actresses-index-row {
  padding: 8px 20px 22px;
  scroll-margin-top: 16px;
}
.actresses-index-row__label {
  font-family: var(--heading-family);
  font-size: 1.1rem;
  color: var(--accent-soft);
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.actresses-index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px;
}
.actresses-index-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.actresses-index-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-card);
}
.actresses-index-card__link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.actresses-index-cover {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg-soft);
}
.actresses-index-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.actresses-index-card:hover .actresses-index-cover img {
  transform: scale(1.05);
}
.actresses-index-cover--placeholder {
  background: repeating-linear-gradient(135deg, var(--bg-soft), var(--bg-soft) 10px, var(--bg-elev) 10px, var(--bg-elev) 20px);
}
.actresses-index-card__body {
  padding: 12px 12px 14px;
  display: grid;
  gap: 4px;
}
.actresses-index-card__name {
  margin: 0;
  font-size: 0.98rem;
  color: var(--text-strong);
}
.actresses-index-card__count {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted-soft);
}

/* ============================== ランキング ============================== */
.fcp-rank-section {
  padding-top: 6px;
}
.fcp-rank-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.fcp-rank-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.fcp-rank-item:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.fcp-rank-badge {
  flex: 0 0 auto;
  min-width: 42px;
  text-align: center;
  font-family: var(--heading-family);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-soft);
}
.fcp-rank-item:nth-child(1) .fcp-rank-badge { color: #ffd479; }
.fcp-rank-item:nth-child(2) .fcp-rank-badge { color: #d8d8e0; }
.fcp-rank-item:nth-child(3) .fcp-rank-badge { color: #e0a071; }
.fcp-rank-link {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1 1 auto;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}
.fcp-rank-cover {
  flex: 0 0 auto;
  width: 60px;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-soft);
}
.fcp-rank-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fcp-rank-cover--placeholder {
  background: repeating-linear-gradient(135deg, var(--bg-soft), var(--bg-soft) 8px, var(--bg-elev) 8px, var(--bg-elev) 16px);
}
.fcp-rank-body {
  min-width: 0;
  display: grid;
  gap: 4px;
}
.fcp-rank-name {
  margin: 0;
  font-size: 0.98rem;
  color: var(--text-strong);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.fcp-rank-metric {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}
.fcp-rank-rating {
  color: var(--accent-soft);
  font-weight: 700;
}
.fcp-rank-cta {
  flex: 0 0 auto;
}

@media (max-width: 560px) {
  .fcp-rank-name { white-space: normal; }
}

/* =============================== セール =============================== */
.fcp-sale-card .fcp-work-body {
  display: grid;
  gap: 8px;
  padding: 12px 12px 14px;
}
.fcp-sale-price {
  margin: 0;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
}
.fcp-sale-price__list {
  color: var(--muted-soft);
  font-size: 0.85rem;
}
.fcp-sale-price__now {
  color: var(--text-strong);
  font-weight: 700;
  font-size: 1.05rem;
}
.fcp-price-off {
  background: var(--accent);
  color: #1a0e08;
  font-weight: 700;
  font-size: 0.74rem;
  padding: 2px 8px;
  border-radius: 6px;
}
.fcp-sale-review {
  margin: 0;
  font-size: 0.82rem;
  color: var(--accent-soft);
}
.fcp-sale-review__count {
  color: var(--muted);
}
.fcp-sale-empty {
  margin: 0;
  padding: 28px 8px;
  text-align: center;
  color: var(--muted);
}
.fcp-sale-pricenote {
  color: var(--muted-soft) !important;
  font-size: 0.78rem;
}

/* =============================== 新着 =============================== */
/* /new/ は sale カード言語（fcp-sale-card）を再利用し、価格行の代わりに配信日を出す。 */
.fcp-new-card .fcp-work-body {
  display: grid;
  gap: 8px;
  padding: 12px 12px 14px;
}
.fcp-new-date {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

/* =========================== 関連作品（回遊） =========================== */
/* 作品ページ末尾の「こちらもおすすめ」rail。work-card 言語を再利用し、関係性
   （同シリーズ/同メーカー/同ジャンル）の小バッジを添える。 */
.fcp-related-card .fcp-work-body {
  display: grid;
  gap: 6px;
  padding: 10px 12px 12px;
}
.fcp-related-badge {
  justify-self: start;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent-soft);
  background: var(--surface-strong);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: 999px;
}
