:root {
    --bg: #050505;
    --bg-2: #0b0b0d;
    --panel: #101014;
    --panel-2: #15151a;
    --line: rgba(255, 255, 255, 0.22);
    --line-soft: rgba(255, 255, 255, 0.12);
    --text: #f5f3ee;
    --muted: #b9b4aa;
    --dim: #77736b;
    --red: #a70707;
    --red-bright: #e41a1a;
    --focus: #ffcf5a;
    --ok: #58c48b;
    --error: #ff6b6b;
    --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
    --font-body: "Noto Sans JP", system-ui, sans-serif;
    --header-h: 76px;
    color-scheme: dark;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
    line-break: strict;
    word-break: keep-all;
}

@supports (word-break: auto-phrase) {
    html {
        word-break: auto-phrase;
    }
}

body {
    margin: 0;
    min-width: min(320px, 100%);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    text-rendering: geometricPrecision;
}

body::before {
    display: none;
    content: none;
}

body::after {
    display: none;
    content: none;
}

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

img {
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 4px;
}

::selection {
    background: var(--red);
    color: var(--text);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    transform: translateY(-140%);
    padding: 10px 14px;
    background: var(--text);
    color: var(--bg);
    font-weight: 700;
}

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

.phrase,
[data-phrase] {
    text-wrap: pretty;
    word-break: keep-all;
    overflow-wrap: normal;
    line-break: strict;
}

.phrase {
    display: inline-block;
    white-space: nowrap;
}

h1,
h2,
h3,
p {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
summary {
    text-wrap: balance;
    word-break: keep-all;
    overflow-wrap: normal;
    line-break: strict;
}

p,
li,
dt,
dd,
figcaption,
label,
legend,
small,
span,
time,
strong,
em,
a,
button,
textarea {
    text-wrap: pretty;
    word-break: keep-all;
    overflow-wrap: normal;
    line-break: strict;
}

@supports (word-break: auto-phrase) {
    :is(
        h1,
        h2,
        h3,
        h4,
        h5,
        h6,
        summary,
        p,
        li,
        dt,
        dd,
        figcaption,
        label,
        legend,
        small,
        span,
        time,
        strong,
        em,
        a,
        button,
        textarea,
        [data-phrase]
    ) {
        word-break: auto-phrase;
    }
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    min-height: var(--header-h);
    padding: 14px clamp(16px, 3vw, 42px);
    border-bottom: 1px solid var(--line-soft);
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(8px);
}

.site-mark {
    display: inline-flex;
    align-items: center;
    width: min(210px, 44vw);
}

.site-mark img {
    width: 100%;
    filter: invert(1) grayscale(1) contrast(1.25);
}

.global-nav {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: clamp(14px, 2.2vw, 30px);
    font-family: var(--font-display);
    font-size: clamp(0.92rem, 1.2vw, 1.08rem);
    font-weight: 700;
    letter-spacing: 0;
}

.global-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    color: var(--muted);
    transition: color 180ms ease;
    white-space: nowrap;
}

.global-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 1px;
    background: var(--red-bright);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 240ms ease;
}

.global-nav a:hover,
.global-nav a:focus-visible {
    color: var(--text);
}

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

.menu-toggle {
    display: none;
    justify-self: end;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--text);
    cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 1px;
    margin: 6px auto;
    background: currentColor;
    transition: transform 220ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(35deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-35deg);
}

.section-panel {
    position: relative;
    min-height: 100svh;
    padding: clamp(84px, 12vw, 150px) clamp(18px, 5vw, 72px);
    border-bottom: 1px solid var(--line);
    overflow: clip;
}

.section-panel::before,
.section-panel::after {
    display: none;
    content: "";
    position: absolute;
    inset-block: 0;
    width: 1px;
    background: var(--line-soft);
    pointer-events: none;
}

.section-panel::before {
    left: clamp(18px, 5vw, 72px);
}

.section-panel::after {
    right: clamp(18px, 5vw, 72px);
}

.section-heading {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 18px;
    margin: 0 auto clamp(34px, 5vw, 74px);
    max-width: 1280px;
    border-bottom: 1px solid var(--line);
    padding-bottom: clamp(16px, 3vw, 28px);
}

.section-heading .eyebrow {
    grid-column: 1 / -1;
}

.eyebrow,
.card-kicker {
    font-family: var(--font-display);
    color: var(--muted);
    font-weight: 700;
    letter-spacing: 0;
}

.section-heading h2,
.hero h1 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: 0;
}

.section-heading h2 {
    font-size: clamp(4rem, 13vw, 12.5rem);
}

.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 44px;
    min-height: 44px;
    color: var(--text);
    font-family: var(--font-display);
    font-weight: 700;
    white-space: nowrap;
}

.button,
.button-row {
    display: inline-flex;
    align-items: center;
}

.button {
    justify-content: center;
    gap: 12px;
    min-height: 48px;
    padding: 13px 18px;
    border: 1px solid var(--line);
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
    white-space: nowrap;
}

.button:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.52);
    background: rgba(255, 255, 255, 0.08);
}

.button-primary {
    background: var(--red);
    border-color: var(--red-bright);
}

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

.button-ghost {
    background: transparent;
}

.button-signal {
    min-width: 48px;
    padding-inline: 14px;
    border-color: rgba(255, 207, 90, 0.52);
    background: rgba(255, 207, 90, 0.07);
    color: var(--focus);
}

.button-signal:hover,
.button-signal:focus-visible {
    border-color: var(--focus);
    background: rgba(255, 207, 90, 0.14);
    color: var(--text);
}

.button-signal span {
    font-variant-numeric: tabular-nums;
}

.button-row {
    flex-wrap: wrap;
    gap: 12px;
}

.hero {
    display: grid;
    align-items: center;
    padding-top: max(96px, calc(var(--header-h) + 26px));
}

.hero-rail {
    position: absolute;
    top: var(--header-h);
    bottom: 0;
    left: clamp(96px, 13vw, 190px);
    width: clamp(32px, 4.3vw, 58px);
    background: var(--red);
    opacity: 0.72;
}

.hero-rail span {
    position: sticky;
    top: 120px;
    display: block;
    writing-mode: vertical-rl;
    padding: 24px 0;
    font-family: var(--font-display);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.62);
}

.hero-frame {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
    align-items: center;
    gap: clamp(22px, 5vw, 78px);
    max-width: 1360px;
    margin: 0 auto;
}

.hero-copy {
    position: relative;
    z-index: 4;
    align-self: end;
    padding: clamp(16px, 3vw, 38px) 0;
}

.hero h1 {
    margin-top: 10px;
    font-size: clamp(5rem, 17vw, 16rem);
}

.hero h1 .phrase {
    display: block;
    max-width: 100%;
}

.hero-lead {
    margin-top: 18px;
    color: var(--text);
    font-weight: 700;
    font-size: clamp(1rem, 2vw, 1.35rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: clamp(28px, 5vw, 48px);
}

.hero-visual {
    position: relative;
    z-index: 2;
    justify-self: center;
    width: min(62vw, 650px);
    margin: 0;
    border: 1px solid var(--line);
    aspect-ratio: 1;
    overflow: hidden;
    background: #080808;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
}

.hero-members {
    position: absolute;
    inset: auto 0 -11svh;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, minmax(90px, 1fr));
    align-items: end;
    pointer-events: none;
    opacity: 0.42;
    mix-blend-mode: screen;
}

.hero-members img {
    max-height: 44svh;
    width: 100%;
    object-fit: contain;
    filter: grayscale(0.22) contrast(1.08);
}

.scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    display: inline-grid;
    justify-items: center;
    gap: 6px;
    min-width: 44px;
    min-height: 44px;
    color: var(--muted);
    font-family: var(--font-display);
    font-weight: 700;
}

.news-section {
    min-height: auto;
}

.news-list,
.section-card-strip,
.live-feature,
.profile-stack,
.discography-grid,
.movie-layout,
.goods-grid,
.guideline-grid,
.contact-panel {
    max-width: 1280px;
    margin-inline: auto;
}

.news-list {
    border-top: 1px solid var(--line-soft);
}

.news-row {
    display: grid;
    grid-template-columns: 120px 88px 1fr 32px;
    gap: 16px;
    align-items: center;
    min-height: 74px;
    border-bottom: 1px solid var(--line-soft);
    color: var(--muted);
}

.news-row:hover,
.news-row:focus-visible {
    color: var(--text);
}

.news-row strong {
    color: var(--text);
    font-weight: 700;
    line-height: 1.5;
}

.news-row span,
.news-row time {
    font-family: var(--font-display);
    font-weight: 700;
}

.news-row span {
    color: var(--red-bright);
}

.section-card-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    margin-top: clamp(34px, 5vw, 70px);
    background: var(--line);
    border: 1px solid var(--line);
}

.section-card-strip a {
    position: relative;
    min-height: 230px;
    overflow: hidden;
    background: var(--bg);
}

.section-card-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.62) brightness(0.58);
    transition: transform 400ms ease, filter 400ms ease;
}

.section-card-strip span {
    position: absolute;
    left: 18px;
    bottom: 16px;
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--text);
}

.section-card-strip a:hover img {
    transform: scale(1.06);
    filter: grayscale(0.25) brightness(0.74);
}

.live-feature {
    display: grid;
    grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
    gap: 1px;
    border: 1px solid var(--line);
    background: var(--line);
}

.live-feature figure,
.live-copy {
    margin: 0;
    background: rgba(7, 7, 8, 0.92);
}

.live-feature figure {
    min-height: 560px;
    overflow: hidden;
}

.live-feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.72) brightness(0.72);
}

.live-copy {
    display: grid;
    align-content: center;
    gap: 24px;
    padding: clamp(24px, 5vw, 70px);
}

.live-copy h3,
.profile-copy h3,
.release-card h3,
.movie-copy h3,
.goods-note h3,
.guideline-card h3 {
    font-family: var(--font-display);
    line-height: 0.95;
    font-size: clamp(2.8rem, 7vw, 7rem);
    letter-spacing: 0;
}

.live-copy dl {
    display: grid;
    gap: 1px;
    background: var(--line-soft);
    border: 1px solid var(--line-soft);
}

.live-copy dl div {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 14px;
    padding: 16px;
    background: var(--panel);
}

.live-copy dt {
    color: var(--muted);
    font-family: var(--font-display);
    font-weight: 700;
}

.live-copy dd {
    margin: 0;
    line-height: 1.6;
}

.profile-section {
    padding-bottom: clamp(60px, 8vw, 120px);
}

.profile-stack {
    display: grid;
    gap: clamp(28px, 5vw, 66px);
}

.profile-card {
    position: sticky;
    top: calc(var(--header-h) + 18px);
    display: grid;
    grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1fr);
    min-height: min(76svh, 760px);
    border: 1px solid var(--line);
    background: rgba(10, 10, 12, 0.92);
    overflow: hidden;
}

.profile-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 8px;
    background: var(--red);
}

.profile-card figure {
    position: relative;
    margin: 0;
    display: grid;
    align-items: end;
    justify-items: center;
    min-height: 560px;
    background: #060607;
}

.profile-card figure img {
    width: min(78%, 440px);
    max-height: 86%;
    object-fit: contain;
    filter: contrast(1.05);
}

.profile-copy {
    display: grid;
    align-content: center;
    gap: 20px;
    padding: clamp(28px, 6vw, 88px);
}

.profile-index {
    font-family: var(--font-display);
    color: var(--red-bright);
    font-size: 3rem;
    font-weight: 800;
}

.profile-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.profile-links a {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    padding: 8px 12px;
    color: var(--muted);
    font-family: var(--font-display);
    font-weight: 700;
}

.profile-copy h3 {
    font-size: clamp(2.6rem, 5.6vw, 5.1rem);
    line-height: 1.02;
}

.discography-grid,
.goods-grid,
.guideline-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.release-card,
.release-row,
.goods-feature,
.goods-note,
.guideline-card,
.contact-panel {
    background: rgba(8, 8, 10, 0.94);
}

.release-card {
    grid-row: span 2;
    display: grid;
    grid-template-columns: 0.58fr 1fr;
    gap: 22px;
    align-items: center;
    padding: clamp(18px, 3vw, 36px);
}

.release-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    filter: brightness(0.72) saturate(0.7);
    border: 1px solid var(--line-soft);
}

.release-card p,
.goods-note p,
.guideline-card p,
.contact-panel p {
    color: var(--muted);
    line-height: 1.8;
}

.release-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 18px;
    min-height: 156px;
    align-items: center;
    padding: clamp(18px, 3vw, 32px);
}

.release-row time {
    color: var(--red-bright);
    font-family: var(--font-display);
    font-weight: 800;
}

.release-row span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
}

.movie-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 1px;
    border: 1px solid var(--line);
    background: var(--line);
}

.movie-player,
.movie-tabs {
    background: rgba(8, 8, 10, 0.94);
}

.movie-player {
    grid-column: 1;
    grid-row: 1;
}

.movie-tabs {
    grid-column: 2;
    grid-row: 1;
}

.movie-frame {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    background: #000;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

.movie-frame-link {
    color: var(--text);
}

.movie-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.28) brightness(0.62) contrast(1.08);
    transform: scale(1.01);
    transition: transform 360ms ease, filter 360ms ease;
}

.movie-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.58), transparent 62%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.58), transparent 45%);
    pointer-events: none;
}

.movie-frame-embed::after {
    display: none;
}

.movie-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    background: #000;
}

.movie-frame:hover img {
    transform: scale(1.05);
    filter: grayscale(0.1) brightness(0.74) contrast(1.08);
}

.movie-play {
    position: absolute;
    left: clamp(18px, 3vw, 34px);
    bottom: clamp(18px, 3vw, 34px);
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 16px;
    color: var(--text);
    background: var(--red);
    border: 1px solid var(--red-bright);
    font-family: var(--font-display);
    font-weight: 800;
}

.movie-copy {
    padding: clamp(22px, 4vw, 46px);
}

.movie-tabs {
    display: grid;
    align-content: stretch;
}

.movie-tabs button {
    min-height: 86px;
    border: 0;
    border-bottom: 1px solid var(--line-soft);
    background: transparent;
    color: var(--muted);
    font-family: var(--font-display);
    font-weight: 800;
    cursor: pointer;
}

.movie-tabs button.is-active,
.movie-tabs button:hover {
    color: var(--text);
    background: var(--red);
}

.goods-feature {
    position: relative;
    min-height: 420px;
    overflow: hidden;
}

.goods-feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.02) saturate(1.04) contrast(1.02);
}

.goods-feature::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 38%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.64), transparent);
    pointer-events: none;
}

.goods-feature span {
    position: absolute;
    left: 22px;
    bottom: 22px;
    z-index: 1;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
}

.goods-note {
    display: grid;
    align-content: center;
    gap: 22px;
    padding: clamp(22px, 5vw, 62px);
}

.guideline-card {
    min-height: 320px;
    display: grid;
    grid-template-rows: auto minmax(4.2rem, auto) minmax(4.8rem, auto);
    align-content: end;
    gap: 18px;
    padding: clamp(22px, 5vw, 54px);
    border: 0;
}

.guideline-card h3 {
    font-size: clamp(2.2rem, 4.8vw, 3.9rem);
    line-height: 1.08;
    align-self: end;
}

.guideline-card p {
    align-self: start;
}

.guideline-card span {
    color: var(--red-bright);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 3rem;
}

.contact-section {
    min-height: 68svh;
}

.contact-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    min-height: 280px;
    border: 1px solid var(--line);
    padding: clamp(28px, 6vw, 72px);
}

.contact-panel p {
    max-width: 620px;
    font-size: clamp(1.08rem, 2vw, 1.45rem);
    color: var(--text);
    font-weight: 700;
}

.site-footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(22px, 4vw, 48px) clamp(22px, 5vw, 64px);
    align-items: center;
    padding: clamp(36px, 6vw, 72px) clamp(18px, 5vw, 72px) clamp(12px, 3vw, 28px);
    border-top: 1px solid var(--line);
    background: #030303;
    overflow-x: hidden;
}

.site-footer p,
.site-footer small {
    color: var(--dim);
    font-family: var(--font-display);
    font-weight: 700;
}

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px clamp(18px, 2.4vw, 30px);
    width: 100%;
    min-width: 0;
    max-width: 100%;
    font-family: var(--font-display);
    font-weight: 800;
}

.site-footer nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
}

.footer-legal {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding-top: clamp(16px, 3vw, 28px);
    border-top: 1px solid var(--line-soft);
}

.footer-legal p,
.footer-legal small {
    margin: 0;
    line-height: 1;
}

.footer-legal small {
    display: block;
    max-width: 100%;
    line-height: 1.35;
    white-space: normal;
    text-wrap: pretty;
}

.footer-brand-word {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    color: rgba(245, 243, 238, 0.42);
    font-family: var(--font-display);
    font-size: clamp(2rem, 10.5vw, 10.5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    padding-bottom: 0.03em;
    white-space: nowrap;
}

.footer-social {
    display: flex;
    gap: 10px;
    justify-self: end;
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--line);
}

/* Detail pages and forms */
.subpage {
    min-height: 100svh;
    padding-top: var(--header-h);
    word-break: keep-all;
    line-break: strict;
}

@supports (word-break: auto-phrase) {
    .subpage {
        word-break: auto-phrase;
    }
}

.sub-hero {
    padding: clamp(80px, 13vw, 150px) clamp(18px, 5vw, 72px) clamp(48px, 8vw, 88px);
    border-bottom: 1px solid var(--line);
    background: linear-gradient(90deg, rgba(167, 7, 7, 0.32), transparent 28%), #060606;
}

.sub-hero-inner,
.sub-content {
    max-width: 1120px;
    margin: 0 auto;
}

.sub-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.65rem, 14vw, 13rem);
    line-height: 0.9;
}

.sub-hero p {
    margin-top: 18px;
    max-width: 720px;
    color: var(--muted);
    line-height: 1.9;
    font-weight: 700;
}

.sub-content {
    padding: clamp(40px, 7vw, 80px) clamp(18px, 5vw, 72px);
    min-width: 0;
}

.subpage h1,
.subpage h2,
.subpage h3,
.subpage p,
.subpage li {
    overflow-wrap: normal;
}

.form-shell,
.article-shell {
    border: 1px solid var(--line);
    background: rgba(9, 9, 11, 0.94);
    min-width: 0;
}

.form-shell {
    display: grid;
    grid-template-columns: minmax(230px, 0.42fr) minmax(0, 1fr);
}

.form-aside,
.form-main,
.article-shell {
    padding: clamp(22px, 4vw, 52px);
    min-width: 0;
}

.form-aside {
    border-right: 1px solid var(--line);
    background: rgba(167, 7, 7, 0.12);
}

.form-aside h2,
.article-shell h2,
.article-shell h3 {
    font-family: var(--font-display);
    line-height: 1;
}

.form-aside h2 {
    font-size: clamp(3rem, 4.4vw, 3.55rem);
}

.form-aside p,
.article-shell p,
.article-shell li {
    color: var(--muted);
    line-height: 1.9;
}

.form-notice {
    margin: 0 0 28px;
    padding: 0 0 20px;
    border-bottom: 1px solid var(--line-soft);
    max-width: 56rem;
    display: grid;
    gap: 0.45rem;
}

.form-notice h3 {
    margin: 0;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.5;
    text-wrap: balance;
}

.form-notice p {
    margin: 0;
    color: var(--muted);
    line-height: 1.9;
    text-wrap: pretty;
}

.form-status {
    margin: 0 0 18px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font-weight: 800;
    line-height: 1.7;
    text-wrap: pretty;
}

.form-status[hidden] {
    display: none;
}

.form-status[data-status="error"] {
    border-color: rgba(255, 107, 107, 0.55);
    background: rgba(167, 7, 7, 0.18);
}

.form-status[data-status="success"] {
    border-color: rgba(88, 196, 139, 0.55);
    background: rgba(88, 196, 139, 0.12);
}

.contact-form {
    display: grid;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.form-group {
    display: grid;
    gap: 8px;
    position: relative;
}

.form-group label,
.toggle-label,
.form-help {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.required {
    color: var(--red-bright);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    padding: 12px 14px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.form-group.is-focused input,
.form-group.is-focused select,
.form-group.is-focused textarea {
    border-color: var(--red-bright);
    outline: 2px solid rgba(228, 26, 26, 0.72);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(228, 26, 26, 0.16);
}

.contact-form input[aria-invalid="true"],
.contact-form select[aria-invalid="true"],
.contact-form textarea[aria-invalid="true"] {
    border-color: var(--error);
}

.contact-form textarea {
    min-height: 180px;
    resize: vertical;
}

.contact-form select option {
    color: #111;
}

.toggle-switch {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid var(--line);
}

.toggle-switch input {
    position: absolute;
    width: 1px;
    min-height: 1px;
    opacity: 0;
    pointer-events: none;
}

.toggle-option {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--muted);
    cursor: pointer;
}

.toggle-switch input:checked + .toggle-option {
    color: var(--text);
    background: var(--red);
}

.form-checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-checkbox-group input {
    flex: 0 0 44px;
    min-width: 44px;
    width: 44px;
    min-height: 44px;
    accent-color: var(--red);
}

.file-upload-zone {
    border: 1px dashed var(--line);
    min-height: 128px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 18px;
    cursor: pointer;
}

.file-info {
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    border: 1px solid var(--line);
    padding: 12px;
}

.file-clear,
.preview-close {
    border: 1px solid var(--line);
    background: transparent;
    color: var(--text);
    min-width: 44px;
    min-height: 44px;
    cursor: pointer;
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.submit-btn,
.btn {
    min-height: 50px;
    border: 1px solid var(--line);
    background: var(--red);
    color: var(--text);
    padding: 12px 18px;
    font-family: var(--font-display);
    font-weight: 800;
    cursor: pointer;
}

.submit-btn .btn-text {
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
    text-wrap: balance;
}

.btn-secondary,
.btn-outline {
    background: transparent;
}

.field-error {
    z-index: 2;
    justify-self: start;
    max-width: 100%;
    padding: 4px 8px;
    border: 1px solid rgba(255, 107, 107, 0.55);
    background: rgba(5, 5, 5, 0.96);
    color: var(--error);
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1.35;
    pointer-events: none;
    text-wrap: pretty;
}

.field-error[data-error-kind="required"] {
    justify-self: end;
}

.success-message,
.song-request-guide,
.preview-modal {
    border: 1px solid var(--line);
    background: rgba(3, 3, 3, 0.96);
    padding: clamp(22px, 4vw, 38px);
}

.category-redirect-guide {
    display: grid;
    gap: 16px;
}

.category-redirect-guide h3 {
    margin: 0;
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.5;
    text-wrap: balance;
}

.category-redirect-guide p {
    margin: 0;
    color: var(--muted);
    line-height: 1.9;
    text-wrap: pretty;
}

.category-guide-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-guide-actions .button {
    display: inline-flex;
    align-items: center;
    border-radius: 0;
    cursor: pointer;
}

.category-guide-actions .button:disabled {
    cursor: default;
    opacity: 0.72;
    transform: none;
}

.preview-modal {
    position: fixed;
    inset: 16px;
    z-index: 300;
    overflow: auto;
}

.preview-content {
    max-width: 860px;
    margin: 0 auto;
}

.preview-header,
.preview-footer {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    padding-block: 16px;
    border-bottom: 1px solid var(--line);
}

.preview-footer {
    border-bottom: 0;
    border-top: 1px solid var(--line);
}

.preview-section {
    padding: 16px 0;
    border-bottom: 1px solid var(--line-soft);
}

.preview-section p {
    word-break: normal;
    overflow-wrap: anywhere;
}

.success-message h3,
.success-message p,
.success-details h4,
.success-details p {
    word-break: keep-all;
    overflow-wrap: normal;
    line-break: strict;
}

.success-message h3 {
    display: flex;
    align-items: center;
    gap: 0.5em;
    flex-wrap: wrap;
    text-wrap: balance;
}

.success-message h3 span {
    white-space: nowrap;
}

.success-details p {
    text-wrap: pretty;
}

.success-details strong {
    white-space: nowrap;
}

@supports (word-break: auto-phrase) {
    .success-message h3,
    .success-message p,
    .success-details h4,
    .success-details p {
        word-break: auto-phrase;
    }
}

@media (max-width: 360px) {
    .preview-footer .btn {
        width: 100%;
        justify-content: center;
    }

    .sub-content {
        padding-inline: 8px;
    }

    .form-aside,
    .form-main {
        padding-inline: 14px;
    }

    .contact-form,
    .form-group,
    .toggle-switch,
    .category-redirect-guide {
        min-width: 0;
        max-width: 100%;
    }

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

    .toggle-option {
        min-width: 0;
        padding-inline: 8px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        min-width: 0;
    }
}

.article-shell {
    display: grid;
    gap: 26px;
}

.article-shell h2 {
    font-size: clamp(2.6rem, 8vw, 6rem);
}

.article-shell h3 {
    margin-top: 20px;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.article-shell ul {
    margin: 0;
    padding-left: 1.2em;
}

.fan-tag-guide {
    display: grid;
    gap: 18px;
    margin-top: 8px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.025);
    padding: clamp(18px, 3vw, 30px);
}

.fan-tag-guide-header {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 14px;
}

.fan-tag-guide-header h3 {
    margin-top: 0;
}

.fan-tag-guide-header p {
    margin-bottom: 0;
}

.fan-tag-guide-icon,
.fan-tag-symbol {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    background: var(--red);
    color: var(--text);
}

.fan-tag-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
    gap: 1px;
    border: 1px solid var(--line);
    background: var(--line);
}

.fan-tag-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    min-width: 0;
    background: rgba(8, 8, 10, 0.96);
    padding: 18px;
}

.fan-tag-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
}

.fan-tag-item > div {
    min-width: 0;
}

.fan-tag-symbol {
    width: 36px;
    height: 36px;
    background: rgba(167, 7, 7, 0.18);
}

.fan-tag-name {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    margin-block: -14px -12px;
    padding-block: 14px 12px;
    color: var(--text);
    font-family: var(--font-display);
    font-size: clamp(1.02rem, 1.45vw, 1.45rem);
    font-weight: 800;
    line-height: 1;
    overflow-wrap: normal;
    white-space: nowrap;
    word-break: keep-all;
}

.fan-tag-name wbr[data-auto-break] {
    display: none;
}

.fan-tag-name:hover,
.fan-tag-name:focus-visible {
    color: var(--red-bright);
}

.fan-tag-item p {
    margin: 8px 0 0;
}

.article-card-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    min-width: 0;
}

.article-card-list a,
.article-card-list article {
    min-width: 0;
    min-height: 220px;
    display: grid;
    align-content: end;
    gap: 14px;
    background: var(--panel);
    padding: clamp(22px, 4vw, 42px);
}

.article-card-list h2,
.article-card-list h3 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 7vw, 5.4rem);
    line-height: 0.95;
}

@media (max-width: 1024px) {
    .global-nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        display: none;
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        border-bottom: 1px solid var(--line);
        background: rgba(5, 5, 5, 0.96);
    }

    .global-nav.is-open {
        display: grid;
    }

    .global-nav a {
        padding: 18px;
        border-top: 1px solid var(--line-soft);
        border-right: 1px solid var(--line-soft);
    }

    .menu-toggle {
        display: block;
    }

    .hero-frame,
    .live-feature,
    .profile-card,
    .movie-layout,
    .form-shell {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        width: min(84vw, 560px);
    }

    .hero-members {
        opacity: 0.24;
    }

    .profile-card {
        position: relative;
        top: 0;
    }

    .form-aside {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .site-footer {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .footer-social {
        justify-self: start;
    }

    .footer-legal {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 760px) {
    :root {
        --header-h: 68px;
    }

    body {
        background: var(--bg);
    }

    .site-header {
        padding: 10px 14px;
    }

    .site-mark {
        width: min(180px, 54vw);
    }

    .section-panel {
        min-height: auto;
        padding: 82px 14px;
    }

    .hero {
        min-height: 100svh;
    }

    .hero-rail {
        left: 20px;
        width: 28px;
        opacity: 0.56;
    }

    .hero h1 {
        font-size: clamp(3.25rem, 18vw, 5.8rem);
        line-height: 0.95;
    }

    .hero-frame {
        gap: 16px;
    }

    .hero-copy {
        align-self: start;
        order: 2;
    }

    .hero-visual {
        order: 1;
        width: min(100%, 420px);
        justify-self: end;
    }

    .hero-members {
        display: none;
    }

    .section-heading {
        grid-template-columns: 1fr;
    }

    .section-heading h2 {
        font-size: clamp(3rem, 15vw, 6.2rem);
    }

    .news-row {
        grid-template-columns: minmax(0, 1fr) max-content;
        gap: 8px;
        padding: 16px 4px 16px 0;
    }

    .news-row time,
    .news-row span {
        grid-row: 1;
    }

    .news-row strong {
        grid-column: 1 / -1;
        font-size: clamp(1.05rem, 5.5vw, 1.45rem);
    }

    .news-row i {
        display: none;
    }

    .news-pagination {
        justify-content: stretch;
    }

    .news-page-control {
        flex: 1 1 0;
        justify-content: center;
        padding-inline: 8px;
    }

    .news-page-numbers {
        flex: 0 0 auto;
    }

    .section-card-strip,
    .discography-grid,
    .goods-grid,
    .guideline-grid,
    .article-card-list,
    .fan-tag-list {
        grid-template-columns: 1fr;
    }

    .section-card-strip a {
        min-height: 142px;
    }

    .live-feature figure {
        min-height: 430px;
    }

    .live-copy dl div,
    .release-row,
    .release-card {
        grid-template-columns: 1fr;
    }

    .profile-card figure {
        min-height: 460px;
    }

    .profile-card figure img {
        width: min(92%, 360px);
    }

    .profile-copy h3 {
        font-size: clamp(2.15rem, 12vw, 3.8rem);
        line-height: 1.08;
    }

    .guideline-card h3 {
        font-size: clamp(2rem, 9vw, 3rem);
        line-height: 1.12;
    }

    .movie-tabs {
        grid-template-columns: repeat(3, 1fr);
    }

    .movie-tabs button {
        min-height: 58px;
        font-size: 0.92rem;
    }

    .contact-panel {
        display: grid;
        min-height: auto;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .article-shell h2 {
        font-size: clamp(2.2rem, 10vw, 3.6rem);
        line-height: 1.12;
    }

    .article-shell h3 {
        font-size: clamp(1.55rem, 8vw, 2.35rem);
        line-height: 1.18;
    }

    .article-card-list a,
    .article-card-list article {
        min-height: auto;
        padding: 28px 22px;
        align-content: start;
    }

    .article-card-list h2,
    .article-card-list h3 {
        font-size: clamp(1.8rem, 9vw, 3rem);
        line-height: 1.14;
    }

    .button,
    .submit-btn,
    .btn {
        width: 100%;
    }
}

/* Reference-driven corrections after visual QA */
body {
    background: var(--bg);
}

.section-panel {
    min-height: auto;
    padding: clamp(64px, 8vw, 108px) clamp(18px, 5vw, 72px);
    overflow: hidden;
}

.section-heading {
    margin-bottom: clamp(26px, 4vw, 54px);
}

.section-heading h2 {
    font-size: clamp(3.5rem, 10vw, 9.4rem);
}

.hero.section-panel {
    min-height: 100svh;
    display: grid;
    align-items: center;
    padding-top: max(92px, calc(var(--header-h) + 22px));
}

.hero-frame {
    position: relative;
    display: block;
    width: min(1120px, 100%);
    max-width: 100%;
    min-height: clamp(520px, calc(100svh - 158px), 760px);
    margin-inline: auto;
    border: 1px solid var(--line);
    overflow: hidden;
    background: #030303;
}

.hero-copy,
.hero-members {
    display: none;
}

.hero-visual {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    margin: 0;
    border: 0;
    aspect-ratio: auto;
    background: #030303;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 47%;
    filter: none;
    transform: none !important;
}

.hero-brand {
    position: absolute;
    left: 50%;
    bottom: clamp(42px, 8vh, 86px);
    z-index: 3;
    display: grid;
    justify-items: center;
    gap: 12px;
    width: min(470px, calc(100% - 46px));
    text-align: center;
    transform: translateX(-50%);
}

.hero-brand .eyebrow {
    color: var(--text);
    font-size: clamp(0.82rem, 1vw, 0.96rem);
}

.hero-title {
    margin: 0;
}

.hero-title img {
    width: clamp(220px, 26vw, 390px);
    filter: invert(1) grayscale(1) contrast(1.45) brightness(1.18);
}

.hero-lead {
    margin-top: 0;
    color: var(--text);
    font-size: clamp(0.9rem, 1.45vw, 1.08rem);
    text-shadow: none;
}

.hero-actions {
    justify-content: center;
    margin-top: 6px;
}

.hero-rail {
    top: var(--header-h);
    bottom: clamp(72px, 12vh, 110px);
    left: clamp(96px, 13vw, 190px);
    z-index: 2;
    width: clamp(34px, 3.5vw, 54px);
    opacity: 0.82;
}

.hero-rail span {
    position: static;
    height: 100%;
    padding: 20px 0;
}

.scroll-cue {
    z-index: 4;
}

.live-feature {
    grid-template-columns: minmax(250px, 0.62fr) minmax(0, 1fr);
}

.live-feature figure {
    min-height: clamp(320px, 32vw, 460px);
}

.live-copy {
    gap: 18px;
    padding: clamp(22px, 4vw, 52px);
}

.live-copy h3 {
    max-width: 11ch;
    font-size: clamp(3.1rem, 7.2vw, 6.2rem);
}

.profile-stack {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    border: 1px solid var(--line);
    background: var(--line);
}

.profile-card {
    position: relative;
    top: auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(340px, 1fr) auto;
    min-height: 0;
    border: 0;
    background: rgba(8, 8, 10, 0.94);
}

.profile-card::before {
    z-index: 2;
    width: 4px;
}

.profile-card figure {
    min-height: clamp(360px, 36vw, 540px);
    overflow: hidden;
    align-items: end;
}

.profile-card figure img {
    width: auto;
    height: min(112%, 610px);
    max-width: none;
    max-height: none;
    object-fit: contain;
    transform: translateY(4%);
}

.profile-copy {
    align-content: start;
    gap: 8px;
    min-height: 190px;
    padding: clamp(14px, 2vw, 22px);
    border-top: 1px solid var(--line-soft);
}

.profile-index {
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
}

.profile-copy h3 {
    font-size: clamp(1.4rem, 2.7vw, 2.35rem);
    line-height: 1.08;
}

.profile-note {
    color: var(--muted);
    font-size: clamp(0.96rem, 1.15vw, 1.08rem);
    line-height: 1.65;
}

.profile-links {
    gap: 6px;
}

.profile-links a {
    min-height: 34px;
    padding: 6px 8px;
    font-size: 0.82rem;
}

.goods-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.goods-feature {
    min-height: clamp(280px, 32vw, 420px);
}

.goods-feature span {
    font-size: clamp(2.4rem, 5vw, 4.6rem);
}

.goods-note {
    gap: 18px;
    padding: clamp(24px, 4vw, 52px);
}

.goods-note h3 {
    max-width: 12ch;
    font-size: clamp(2.8rem, 5.6vw, 4.8rem);
    line-height: 1;
}

/* Second visual pass: remove doubled rails and keep section content in-frame. */
.hero-rail {
    display: none;
}

.section-heading {
    margin-bottom: clamp(20px, 3vw, 36px);
    padding-bottom: clamp(12px, 2vw, 18px);
}

.section-heading h2 {
    font-size: clamp(3rem, 7vw, 6.6rem);
}

.live-copy h3 {
    font-size: clamp(2.9rem, 5.9vw, 5.1rem);
}

.profile-card figure {
    align-items: start;
}

.profile-card figure img {
    width: min(138%, 470px);
    height: auto;
    transform: translateY(0);
}

.profile-nekochanmachine figure img {
    width: min(170%, 560px);
}

.goods-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
}

.goods-feature {
    min-height: clamp(300px, 33vw, 450px);
}

.goods-feature img {
    filter: brightness(1.02) saturate(1.04) contrast(1.02);
}

.goods-note {
    align-content: end;
}

.goods-note h3 {
    font-size: clamp(2.25rem, 4.25vw, 3.65rem);
}

@media (max-width: 1024px) {
    .hero-frame {
        width: 100%;
        min-height: clamp(520px, calc(100svh - 132px), 720px);
    }

    .hero-rail {
        left: clamp(36px, 13vw, 120px);
        bottom: 72px;
    }

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

@media (max-width: 760px) {
    .section-panel {
        padding: 68px 14px;
    }

    .hero.section-panel {
        min-height: 100svh;
        padding-top: calc(var(--header-h) + 12px);
        padding-bottom: 18px;
    }

    .hero-frame {
        width: 100%;
        min-height: calc(100svh - var(--header-h) - 36px);
    }

    .hero-rail {
        top: calc(var(--header-h) + 12px);
        bottom: 78px;
        left: clamp(34px, 18vw, 72px);
        width: 28px;
    }

    .hero-brand {
        bottom: clamp(42px, 9vh, 70px);
        gap: 9px;
        width: calc(100% - 36px);
    }

    .hero-title img {
        width: min(250px, 62vw);
    }

    .hero-lead {
        font-size: 0.82rem;
    }

    .hero-actions {
        display: none;
    }

    .section-heading h2 {
        font-size: clamp(2.7rem, 13vw, 5.2rem);
    }

    .profile-section .section-heading {
        margin-bottom: 18px;
    }

    .profile-section .section-heading h2 {
        font-size: clamp(2.45rem, 12vw, 4.35rem);
    }

    .live-feature {
        grid-template-columns: 1fr;
    }

    .live-copy h3,
    .goods-note h3 {
        font-size: clamp(2.4rem, 12vw, 4.2rem);
    }

    .profile-stack {
        grid-template-columns: 1fr;
    }

    .profile-card {
        grid-template-rows: minmax(430px, 92vw) auto;
    }

    .profile-card figure {
        min-height: clamp(430px, 92vw, 620px);
    }

    .profile-card figure img {
        width: min(104%, 430px);
        height: auto;
        transform: translateY(0);
    }

    .profile-nekochanmachine figure img {
        width: min(132%, 520px);
    }

    .profile-copy {
        min-height: 170px;
        padding: 18px 16px 20px;
    }

    .profile-copy .card-kicker {
        font-size: 0.78rem;
    }

    .profile-copy h3 {
        font-size: clamp(1.65rem, 8.5vw, 2.45rem);
    }

    .profile-note {
        font-size: 0.94rem;
    }

    .profile-links a {
        min-height: 38px;
        padding: 7px 10px;
        font-size: 0.82rem;
    }

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

    .goods-feature {
        min-height: 260px;
    }
}

/* UX redesign pass: section-level corrections from visual QA. */
.anchor-offset {
    position: absolute;
    inset-block-start: calc(var(--header-h) * -1);
}

.hero-frame {
    width: min(1680px, 100%);
    min-height: clamp(560px, calc(100svh - 124px), 900px);
}

.hero-visual img {
    object-position: center center;
    filter: none;
}

.hero-brand {
    bottom: clamp(28px, 5vh, 64px);
}

.hero-title img {
    width: clamp(190px, 21vw, 330px);
}

.hero-title {
    display: flex;
    justify-content: center;
    overflow: visible;
}

.scatter-logo {
    position: relative;
    display: inline-block;
    color: var(--text);
    font-family: var(--font-body);
    font-size: clamp(2rem, 4.6vw, 3.9rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: 0;
    text-shadow: none;
    white-space: nowrap;
}

.news-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 1280px;
    margin: 0 auto 18px;
}

.news-toolbar button {
    min-width: 54px;
    min-height: 38px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    color: var(--muted);
    padding: 7px 12px;
    font-family: var(--font-display);
    font-weight: 800;
    cursor: pointer;
}

.news-toolbar button.is-active,
.news-toolbar button:hover,
.news-toolbar button:focus-visible {
    background: var(--red);
    border-color: var(--red-bright);
    color: var(--text);
}

.news-row.is-hidden {
    display: none;
}

.news-row[data-news-tag="EVENT"] span {
    color: #ff7d7d;
}

.news-row[data-news-tag="INFO"] span {
    color: #ffcf5a;
}

.news-row[data-news-tag="MUSIC"] span {
    color: #7dd8ff;
}

.news-row[data-news-tag="GOODS"] span {
    color: #9de07d;
}

.news-row[data-news-tag="PR"] span {
    color: #d8a4ff;
}

.news-row[data-news-tag="PROJECT"] span {
    color: #82e6d3;
}

.news-detail-modal {
    position: fixed;
    inset: 0;
    z-index: 320;
    display: grid;
    place-items: center;
    padding: clamp(16px, 4vw, 48px);
    background: rgba(0, 0, 0, 0.74);
    opacity: 0;
    transition: opacity 180ms ease;
}

.news-detail-modal.is-active {
    opacity: 1;
}

body.news-detail-open {
    overflow: hidden;
}

.news-detail-panel {
    position: relative;
    width: min(760px, 100%);
    max-height: min(82svh, 760px);
    overflow: auto;
    border: 1px solid var(--line);
    background: rgba(8, 8, 10, 0.98);
    box-shadow: 0 22px 80px rgba(0, 0, 0, 0.42);
}

.news-detail-close {
    position: sticky;
    top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 12px 12px -60px auto;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    cursor: pointer;
    z-index: 2;
}

.news-detail-header,
.news-detail-body,
.news-detail-footer {
    padding-inline: clamp(22px, 5vw, 48px);
}

.news-detail-header {
    display: grid;
    gap: 10px;
    padding-inline-end: calc(clamp(22px, 5vw, 48px) + 64px);
    padding-block: clamp(28px, 5vw, 48px) 18px;
    border-bottom: 1px solid var(--line-soft);
}

.news-detail-meta {
    color: var(--red-bright);
    font-family: var(--font-display);
    font-weight: 800;
}

.news-detail-header h3 {
    max-inline-size: min(100%, 18em);
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 3.2vw, 2.35rem);
    line-height: 1.18;
    text-wrap: balance;
    overflow-wrap: normal;
}

.news-detail-body {
    display: grid;
    gap: 14px;
    padding-block: 22px;
    color: var(--muted);
    line-height: 1.85;
}

.news-detail-body p {
    margin: 0;
    text-wrap: pretty;
    overflow-wrap: normal;
}

.news-detail-body strong {
    color: var(--text);
    overflow-wrap: normal;
}

.news-detail-body a {
    color: var(--text);
    word-break: normal;
    overflow-wrap: anywhere;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.news-detail-body code {
    word-break: normal;
    overflow-wrap: anywhere;
}

.news-detail-footer {
    display: flex;
    justify-content: flex-end;
    padding-block: 0 28px;
}

.news-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 1280px;
    margin: 18px auto 0;
}

.news-page-numbers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
}

.news-page-control,
.news-page-number {
    min-width: 44px;
    min-height: 44px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.035);
    color: var(--text);
    font-family: var(--font-display);
    font-weight: 800;
    cursor: pointer;
}

.news-page-control {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
}

.news-page-number.is-active,
.news-page-control:hover:not(:disabled),
.news-page-number:hover,
.news-page-control:focus-visible,
.news-page-number:focus-visible {
    border-color: var(--red-bright);
    background: var(--red);
}

.news-page-control:disabled {
    cursor: not-allowed;
    opacity: 0.38;
}

.news-page-status {
    max-width: 1280px;
    margin: 10px auto 0;
    color: var(--muted);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 800;
    text-align: center;
}

.discography-board {
    max-width: 1280px;
    margin-inline: auto;
    border: 1px solid var(--line);
    background: var(--line);
}

.event-card,
.album-card,
.profile-intro {
    background: rgba(8, 8, 10, 0.94);
}

.event-card {
    display: grid;
    grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
    gap: 1px;
    background: var(--line);
}

.event-card figure {
    min-height: clamp(440px, 43vw, 660px);
    margin: 0;
    overflow: hidden;
    background: #050505;
}

.event-card figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.76) saturate(0.78) contrast(1.04);
}

.event-copy {
    display: grid;
    align-content: end;
    gap: 20px;
    padding: clamp(24px, 4.5vw, 58px);
    background: rgba(8, 8, 10, 0.94);
}

.event-copy h3,
.album-card h3,
.profile-intro h3 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: 0;
}

.event-copy h3 {
    max-width: 11ch;
    font-size: clamp(2.45rem, 3.6vw, 3.45rem);
    white-space: nowrap;
}

.event-copy dl {
    display: grid;
    gap: 1px;
    background: var(--line-soft);
    border: 1px solid var(--line-soft);
}

.event-copy dl div {
    display: grid;
    grid-template-columns: 104px 1fr;
    gap: 12px;
    padding: 14px;
    background: var(--panel);
}

.event-copy dt {
    color: var(--muted);
    font-family: var(--font-display);
    font-weight: 800;
}

.event-copy dd {
    margin: 0;
    line-height: 1.55;
}

.release-stack {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
}

.album-card {
    display: grid;
    grid-template-columns: minmax(140px, 0.46fr) minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    min-height: 360px;
    padding: clamp(18px, 3vw, 34px);
}

.album-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 1px solid var(--line-soft);
    filter: brightness(0.86) saturate(0.86);
}

.album-card-compact img {
    aspect-ratio: 4 / 5;
    object-position: center top;
}

.album-card h3 {
    margin-block: 5px 8px;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.album-card p,
.profile-intro p,
.movie-copy p {
    color: var(--muted);
    line-height: 1.75;
    max-width: 44rem;
    overflow-wrap: normal;
}

.profile-intro {
    display: grid;
    grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
    gap: 1px;
    max-width: 1280px;
    margin: 0 auto clamp(24px, 4vw, 44px);
    border: 1px solid var(--line);
    background: var(--line);
}

.profile-intro figure {
    min-height: clamp(260px, 28vw, 390px);
    margin: 0;
    overflow: hidden;
    background: #050505;
}

.profile-intro figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) saturate(0.78);
}

.profile-intro-mark,
.profile-intro-body {
    display: grid;
    align-content: center;
    gap: 14px;
    padding: clamp(22px, 4vw, 52px);
    background: rgba(8, 8, 10, 0.94);
}

.profile-intro-mark {
    justify-items: center;
    text-align: center;
    background:
        radial-gradient(circle at 50% 32%, rgba(167, 7, 7, 0.28), transparent 58%),
        rgba(8, 8, 10, 0.96);
}

.profile-intro-mark img {
    width: min(132px, 34vw);
    height: auto;
    border: 1px solid var(--line);
    background: #fff;
    filter: none;
}

.profile-intro-mark h3 {
    max-width: 9ch;
    margin: 0;
    font-size: clamp(2rem, 3.9vw, 3.7rem);
}

.profile-intro h3 {
    font-size: clamp(2.3rem, 4.8vw, 4.9rem);
}

.profile-card {
    --profile-y: -10%;
    --profile-scale: 1;
    isolation: isolate;
    transition: background 220ms ease, transform 220ms ease;
}

.profile-card:hover,
.profile-card:focus-within {
    --profile-scale: 1.08;
    transform: translateY(-4px);
    background: rgba(18, 18, 22, 0.98);
}

.profile-card:hover::before,
.profile-card:focus-within::before {
    width: 8px;
}

.profile-card figure {
    height: clamp(390px, 33vw, 520px);
    min-height: 0;
    align-items: start;
}

.profile-card figure::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(0deg, rgba(5, 5, 5, 0.72), transparent);
    pointer-events: none;
}

.profile-card figure img {
    height: 138%;
    width: auto;
    max-width: none;
    transform: translateY(var(--profile-y)) scale(var(--profile-scale));
    transform-origin: 50% 12%;
    transition: transform 260ms ease, filter 260ms ease;
}

.profile-card:hover figure img,
.profile-card:focus-within figure img {
    filter: contrast(1.08) saturate(1.05);
}

.profile-eruno {
    --profile-y: -9%;
}

.profile-wolpis {
    --profile-y: -8%;
}

.profile-risru {
    --profile-y: -11%;
}

.profile-nekochanmachine {
    --profile-y: -20%;
}

.profile-nekochanmachine figure img {
    height: 158%;
    width: auto;
}

.profile-name {
    max-width: 100%;
    white-space: nowrap;
}

.profile-copy h3.profile-name {
    font-size: clamp(1.3rem, 2.15vw, 2rem);
}

.movie-layout {
    grid-template-columns: minmax(0, 1fr) minmax(170px, 220px);
}

.movie-frame {
    border-bottom: 1px solid var(--line);
}

.movie-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    background: #000;
}

.movie-frame::after,
.movie-play {
    display: block;
}

.movie-frame-embed::after {
    display: none;
}

.movie-play {
    display: inline-flex;
}

.movie-copy {
    display: grid;
    gap: 10px;
}

.movie-copy h3 {
    max-width: 15ch;
    font-size: clamp(2rem, 4.4vw, 4.2rem);
}

.goods-note h3 {
    max-width: 11ch;
}

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

.guideline-hub {
    background:
        linear-gradient(135deg, rgba(167, 7, 7, 0.34), rgba(8, 8, 10, 0.94) 58%),
        rgba(8, 8, 10, 0.94);
}

.contact-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
}

.contact-panel p {
    max-width: 34rem;
    text-wrap: balance;
}

.sub-hero-actions {
    margin-top: 24px;
}

.guideline-hub-list a:first-child {
    background:
        linear-gradient(135deg, rgba(167, 7, 7, 0.3), rgba(16, 16, 20, 0.96) 62%),
        var(--panel);
}

@media (max-width: 1120px) {
    .discography-board,
    .event-card,
    .profile-intro,
    .movie-layout {
        grid-template-columns: 1fr;
    }

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

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

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

@media (max-width: 760px) {
    .hero-frame {
        width: 100%;
        min-height: calc(100svh - var(--header-h) - 28px);
    }

    .hero-visual img {
        object-position: center center;
        filter: none;
    }

    .hero-brand {
        bottom: clamp(22px, 5vh, 42px);
    }

    .hero-title img {
        width: min(220px, 58vw);
    }

    .news-toolbar {
        gap: 6px;
    }

    .news-toolbar button {
        min-height: 36px;
        padding-inline: 10px;
        font-size: 0.86rem;
    }

    .event-card figure {
        min-height: 430px;
    }

    .event-copy dl div,
    .album-card,
    .contact-panel {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
        justify-items: start;
    }

    .contact-panel > * {
        min-width: 0;
        max-width: 100%;
    }

    .release-stack {
        grid-template-columns: 1fr;
    }

    .album-card {
        min-height: auto;
    }

    .album-card img {
        max-height: 360px;
    }

    .profile-intro figure {
        min-height: 230px;
    }

    .profile-stack {
        grid-template-columns: 1fr;
    }

    .profile-card {
        grid-template-rows: auto auto;
    }

    .profile-card figure {
        height: clamp(360px, 88vw, 520px);
    }

    .profile-card figure img {
        height: 134%;
    }

    .profile-nekochanmachine figure img {
        height: 152%;
    }

    .profile-copy {
        min-height: auto;
        padding: 18px 16px 22px;
    }

    .profile-copy h3.profile-name {
        font-size: clamp(1.52rem, 6.6vw, 2rem);
    }

    .movie-tabs {
        grid-template-columns: 1fr;
    }

    .movie-tabs button {
        min-height: 50px;
    }

    .movie-copy h3 {
        font-size: clamp(1.75rem, 9vw, 3rem);
    }

    .contact-panel p {
        width: 100%;
        max-width: 100%;
        font-size: clamp(1rem, 5vw, 1.22rem);
        line-break: strict;
        overflow-wrap: normal;
        word-break: keep-all;
    }

    .contact-panel .button {
        justify-self: start;
        white-space: normal;
    }
}

/* Typography QA: Japanese text should wrap at phrase candidates, not arbitrary characters. */
:where(
    .profile-copy h3,
    .profile-name,
    .profile-intro h3,
    .event-copy h3,
    .album-card h3,
    .live-copy h3,
    .goods-note h3,
    .guideline-card h3,
    .article-shell h1,
    .article-shell h2,
    .article-shell h3,
    .article-card-list h2,
    .article-card-list h3,
    .sub-hero h1,
    .section-heading h2
) {
    word-break: keep-all;
    overflow-wrap: normal;
    line-break: strict;
}

:where(
    .global-nav a,
    .site-footer nav a,
    .button,
    .text-link,
    .movie-tabs button,
    .profile-links a,
    .submit-btn,
    .btn,
    .card-kicker,
    .eyebrow,
    dt,
    time
) {
    white-space: nowrap;
}

:where(
    p,
    li,
    dd,
    .news-row strong,
    .release-row span,
    .contact-panel p,
    .guideline-card p,
    .article-shell p,
    .article-shell li,
    .form-help,
    .field-error
) {
    word-break: keep-all;
    overflow-wrap: normal;
    line-break: strict;
    text-wrap: pretty;
}

a.raw-url.raw-url,
#file-name {
    min-width: 0;
    word-break: normal;
    overflow-wrap: anywhere;
}

@supports (word-break: auto-phrase) {
    :is(
        .profile-copy h3,
        .profile-name,
        .profile-intro h3,
        .event-copy h3,
        .album-card h3,
        .live-copy h3,
        .goods-note h3,
        .guideline-card h3,
        .article-shell h1,
        .article-shell h2,
        .article-shell h3,
        .article-card-list h2,
        .article-card-list h3,
        .sub-hero h1,
        .section-heading h2,
        p,
        li,
        dd,
        .news-row strong,
        .release-row span,
        .contact-panel p,
        .guideline-card p,
        .article-shell p,
        .article-shell li,
        .form-help,
        .field-error
    ) {
        word-break: auto-phrase;
    }
}

wbr[data-auto-break] {
    display: inline;
}

.profile-intro h3 {
    max-width: 13ch;
    font-size: clamp(2rem, 4.1vw, 4.35rem);
    text-wrap: balance;
}

.profile-channels {
    display: grid;
    gap: 1px;
    margin-top: 6px;
    border: 1px solid var(--line-soft);
    background: var(--line-soft);
}

.profile-channel {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 12px;
    background: rgba(12, 12, 15, 0.94);
}

.profile-channel img {
    width: 62px;
    height: 62px;
    object-fit: cover;
    border: 1px solid var(--line-soft);
    filter: brightness(0.88) saturate(0.95);
}

.profile-channel h4 {
    margin: 0 0 4px;
    font-family: var(--font-display);
    font-size: 1.35rem;
    line-height: 1;
    letter-spacing: 0;
}

.profile-channel p {
    margin: 0;
    max-width: 100%;
    font-size: 0.92rem;
    line-height: 1.55;
    text-wrap: pretty;
}

.profile-channel-links,
.profile-social-links {
    gap: 8px;
    margin-top: 10px;
}

.profile-channel-links {
    display: flex;
    flex-wrap: wrap;
}

.profile-social-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.profile-channel-links a,
.profile-social-links a {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--line);
    color: var(--text);
    background: rgba(255, 255, 255, 0.03);
    font-family: var(--font-display);
    font-weight: 800;
    transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.profile-social-links a {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: auto auto;
    justify-content: start;
    min-height: 62px;
    padding: 10px 12px;
    text-align: left;
}

.profile-social-links a i {
    grid-row: 1 / span 2;
    align-self: center;
    font-size: 1.1rem;
}

.profile-social-links a span,
.profile-social-links a small {
    min-width: 0;
    line-height: 1.1;
}

.profile-social-links a small {
    color: var(--muted);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
}

.profile-channel-links a:hover,
.profile-channel-links a:focus-visible,
.profile-social-links a:hover,
.profile-social-links a:focus-visible {
    border-color: var(--red-bright);
    background: rgba(167, 7, 7, 0.22);
    transform: translateY(-2px);
}

.profile-card {
    --profile-y: -14%;
    --profile-scale: 1;
}

.profile-card:hover,
.profile-card:focus-within {
    --profile-scale: 1.04;
}

.profile-card figure {
    height: clamp(400px, 34vw, 520px);
    align-items: start;
    justify-items: center;
    overflow: hidden;
}

.profile-card figure img {
    position: absolute;
    top: 0;
    left: 50%;
    width: auto;
    height: clamp(860px, 70vw, 980px);
    max-width: none;
    justify-self: center;
    align-self: start;
    transform: translate3d(-50%, var(--profile-y), 0) scale(var(--profile-scale));
    transform-origin: 50% 10%;
}

.profile-eruno {
    --profile-y: -14%;
}

.profile-wolpis {
    --profile-y: -13%;
}

.profile-risru {
    --profile-y: -14%;
}

.profile-nekochanmachine {
    --profile-y: -15%;
}

.profile-nekochanmachine figure img {
    height: clamp(900px, 72vw, 1040px);
}

.profile-links a {
    gap: 8px;
}

.profile-links a i {
    font-size: 1rem;
}

.profile-links a span {
    font-size: 0.88rem;
}

.profile-links a {
    min-width: 44px;
    min-height: 44px;
    padding: 8px 10px;
}

.playlist-link {
    width: fit-content;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 14px 13px 18px;
    border: 1px solid rgba(248, 244, 234, 0.2);
    color: var(--text);
    background: rgba(248, 244, 234, 0.06);
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background 180ms ease,
        color 180ms ease;
}

.playlist-link i {
    display: inline-grid;
    place-items: center;
    width: 1.7em;
    height: 1.7em;
    border-left: 1px solid rgba(248, 244, 234, 0.18);
    color: var(--muted);
    font-size: 0.72em;
    transition: transform 180ms ease, color 180ms ease;
}

.playlist-link:hover,
.playlist-link:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(248, 244, 234, 0.44);
    color: var(--text);
    background: rgba(248, 244, 234, 0.11);
}

.playlist-link:hover i,
.playlist-link:focus-visible i {
    color: var(--text);
    transform: translate(2px, -2px);
}

.movie-copy h3 {
    max-width: 100%;
    font-size: clamp(1.45rem, 2.2vw, 2.1rem);
    line-height: 1.22;
}

.goods-note h3 {
    max-width: 100%;
    white-space: nowrap;
}

.goods-note p {
    max-width: 32rem;
}

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

@media (max-width: 760px) {
    .site-header {
        background: rgba(5, 5, 5, 0.96);
        backdrop-filter: none;
    }

    body::after {
        display: none;
    }

    .profile-intro h3 {
        font-size: clamp(2rem, 12vw, 3.2rem);
    }

    .profile-channel {
        grid-template-columns: 54px minmax(0, 1fr);
        gap: 12px;
        padding: 10px;
    }

    .profile-channel img {
        width: 54px;
        height: 54px;
    }

    .profile-card figure {
        height: clamp(360px, 88vw, 500px);
    }

    .profile-card figure img {
        height: clamp(760px, 210vw, 940px);
    }

    .profile-nekochanmachine figure img {
        height: clamp(840px, 228vw, 1080px);
    }

    .profile-links a {
        min-width: 44px;
        min-height: 44px;
    }

    .movie-player,
    .movie-tabs {
        grid-column: 1;
        grid-row: auto;
    }

    .movie-copy h3 {
        max-width: 100%;
        font-size: clamp(1.25rem, 5vw, 1.65rem);
    }

    .guideline-grid-primary {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1120px) {
    .movie-player,
    .movie-tabs {
        grid-column: 1;
        grid-row: auto;
    }
}

@media (max-width: 420px) {
    .fan-tag-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .news-page-control {
        flex: 0 0 44px;
        gap: 0;
        padding-inline: 0;
    }

    .news-pagination {
        flex-wrap: wrap;
        gap: 8px;
    }

    .news-page-numbers {
        order: -1;
        flex: 1 1 100%;
    }

    .news-page-control span {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    :where(
        p,
        li,
        dd,
        .news-row strong,
        .profile-channel p,
        .profile-intro-copy,
        .album-card p,
        .event-copy dd,
        .movie-copy p,
        .goods-note p,
        .guideline-card p,
        .contact-line,
        .article-shell p,
        .article-shell li
    ) {
        overflow-wrap: normal;
    }
}

@media (max-width: 300px) {
    .global-nav {
        grid-template-columns: 1fr;
    }
}

/* Final composition pass for profile portraits and social-first group profile. */
.profile-card figure img {
    height: clamp(980px, 81vw, 1160px);
}

.profile-eruno {
    --profile-y: -3%;
}

.profile-wolpis {
    --profile-y: -2%;
}

.profile-risru {
    --profile-y: -4%;
}

.profile-nekochanmachine {
    --profile-y: -9%;
}

.profile-nekochanmachine figure img {
    height: clamp(900px, 72vw, 1040px);
}

.profile-intro {
    grid-template-columns: 1fr;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(167, 7, 7, 0.18), transparent 34%),
        radial-gradient(circle at 88% 72%, rgba(69, 177, 186, 0.12), transparent 30%),
        rgba(8, 8, 10, 0.96);
}

.profile-intro-body {
    display: grid;
    grid-template-columns: minmax(270px, 0.52fr) minmax(0, 1fr);
    align-items: end;
    column-gap: clamp(30px, 5vw, 78px);
    row-gap: 16px;
    padding: clamp(24px, 4.6vw, 58px);
}

.profile-intro-body > .card-kicker,
.profile-intro-body > h3,
.profile-intro-copy,
.profile-social-links {
    grid-column: 1;
}

.profile-intro-copy {
    margin-bottom: clamp(8px, 1.2vw, 18px);
}

.profile-channels {
    grid-column: 2;
    grid-row: 1 / span 4;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-self: stretch;
    gap: clamp(14px, 1.8vw, 22px);
    margin-top: 0;
    border: 0;
    background: transparent;
}

.profile-channel {
    position: relative;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 0;
    min-height: 0;
    padding: 0;
    border: 1px solid var(--line);
    color: var(--text);
    background: rgba(12, 12, 15, 0.9);
    overflow: hidden;
}

.profile-channel-media {
    position: relative;
    display: grid;
    place-items: center;
    height: clamp(158px, 13.5vw, 210px);
    min-height: 0;
    overflow: hidden;
}

.profile-channel-media img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
    padding: clamp(12px, 1.45vw, 20px);
    border: 0;
    background: transparent;
    filter: none;
    transition: transform 240ms ease, filter 240ms ease;
}

.profile-channel-copy {
    display: grid;
    align-content: center;
    gap: 10px;
    min-width: 0;
    padding: clamp(18px, 2vw, 28px);
    border-top: 1px solid var(--line-soft);
}

.profile-channel .card-kicker {
    margin: 0;
    color: var(--red-bright);
}

.profile-channel h4 {
    max-width: 100%;
    margin: 0;
    font-size: clamp(1.45rem, 2vw, 2.25rem);
    line-height: 1.12;
    text-wrap: balance;
    word-break: keep-all;
    overflow-wrap: normal;
    white-space: normal;
}

.profile-channel p:not(.card-kicker) {
    line-height: 1.55;
}

.profile-channel:hover img,
.profile-channel:focus-within img {
    transform: scale(1.04);
    filter: brightness(1.06);
}

.profile-channel-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 8px;
}

.profile-channel-links a {
    justify-content: center;
    min-height: 46px;
    padding: 9px 12px;
}

@media (min-width: 1025px) and (max-width: 1399px) {
    .profile-channel-links {
        grid-template-columns: 1fr;
    }
}

.profile-social-links {
    grid-template-columns: repeat(2, minmax(0, 220px));
    justify-content: start;
    align-self: center;
    margin-top: clamp(12px, 1.8vw, 18px);
}

@media (min-width: 1025px) and (max-width: 1251px) {
    .profile-social-links {
        transform: translateY(-40px);
    }
}

@media (min-width: 1252px) and (max-width: 1375px) {
    .profile-social-links {
        transform: translateY(-64px);
    }
}

@media (min-width: 1376px) and (max-width: 1399px) {
    .profile-social-links {
        transform: translateY(-44px);
    }
}

@media (max-width: 1024px) {
    .profile-intro-body {
        grid-template-columns: 1fr;
    }

    .profile-intro-body > .card-kicker,
    .profile-intro-body > h3,
    .profile-intro-copy,
    .profile-social-links,
    .profile-channels {
        grid-column: 1;
    }

    .profile-channels {
        grid-row: auto;
        grid-template-columns: 1fr;
        margin-top: 10px;
    }

    .profile-channel {
        grid-template-columns: minmax(120px, 0.32fr) minmax(0, 1fr);
    }

    .profile-channel-media {
        height: auto;
        min-height: 100%;
    }

    .profile-channel-media img {
        min-height: 100%;
    }

    .profile-channel-copy {
        border-top: 0;
        border-left: 1px solid var(--line-soft);
    }

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

@media (max-width: 760px) {
    .profile-channel {
        grid-template-columns: 1fr;
    }

    .profile-channel-media {
        height: 144px;
        min-height: 144px;
    }

    .profile-channel-media img {
        height: 100%;
        min-height: 0;
        padding: 16px;
    }

    .profile-channel-copy {
        border-top: 1px solid var(--line-soft);
        border-left: 0;
    }

    .profile-channel h4 {
        font-size: clamp(1.05rem, 4.8vw, 1.28rem);
    }

    .profile-card figure img {
        height: clamp(880px, 238vw, 1080px);
    }

    .profile-nekochanmachine figure img {
        height: clamp(840px, 228vw, 1080px);
    }

    .profile-social-links {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }
}

/* [ELEVATION 2026-06-29] スクロール/散開の残像トレイルは「赤のみ」復元。
   緑 #00ff00 / 青 #0000ff の RGB クロマティックずれ（AI slop）は付けない。
   赤はブランドのバーミリオン（--red-bright）で上質に。 */
.scroll-echo-word {
    position: relative;
    display: inline-block;
    isolation: isolate;
}

.scroll-echo-word::before {
    content: attr(data-scroll-echo);
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    font: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    text-align: inherit;
    white-space: inherit;
    opacity: var(--scroll-echo-opacity, 0);
    will-change: opacity, transform;
    color: var(--red-bright, #e8392c);
    transform: translate(var(--scroll-echo-red-x, 0), var(--scroll-echo-red-y, 0));
}

.scatter-text__char.scroll-echo-word::before {
    z-index: 1;
    animation: scatterEchoRedSettle var(--scroll-echo-duration, 1400ms) var(--scroll-echo-easing, ease-out) var(--scroll-echo-delay, 0ms) both;
}

.scatter-text__char.scroll-echo-word .scatter-text__glyph {
    z-index: 2;
}

@keyframes scatterEchoRedSettle {
    from {
        transform: translate(var(--scroll-echo-red-x, 0), var(--scroll-echo-red-y, 0));
    }

    to {
        transform: translate(0, 0);
    }
}

/* Editorial artist cover final pass */
:root {
    --bg: #040404;
    --bg-2: #09090b;
    --panel: #0d0d10;
    --panel-2: #141417;
    --line: rgba(255, 255, 255, 0.2);
    --line-soft: rgba(255, 255, 255, 0.1);
    --text: #f8f5ef;
    --muted: #b7b0a4;
    --dim: #7d766d;
    --red: #b10a0a;
    --red-bright: #ff2a24;
}

body {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        var(--bg);
    background-size: clamp(84px, 12vw, 160px) clamp(84px, 12vw, 160px);
}

.site-header {
    border-bottom-color: rgba(255, 255, 255, 0.14);
    /* blur/background relocated to .site-header::before (see polish pass);
       keeping backdrop-filter here would trap .global-nav's fixed overlay. */
    background: transparent;
    backdrop-filter: none;
}

.site-mark {
    width: min(190px, 42vw);
}

.global-nav {
    gap: clamp(12px, 1.6vw, 24px);
}

.global-nav a {
    color: rgba(248, 245, 239, 0.72);
}

.section-panel {
    min-height: auto;
    padding-block: clamp(78px, 9vw, 126px);
    border-bottom-color: rgba(255, 255, 255, 0.13);
}

.section-panel::before,
.section-panel::after {
    display: block;
    background: linear-gradient(180deg, transparent, rgba(255, 42, 36, 0.34), rgba(255, 255, 255, 0.08), transparent);
    opacity: 0.42;
}

.section-heading {
    position: relative;
    grid-template-columns: minmax(0, 1fr) auto;
    margin-bottom: clamp(28px, 4.5vw, 62px);
}

.section-heading::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: min(220px, 32vw);
    height: 2px;
    background: linear-gradient(90deg, var(--red-bright), rgba(255, 42, 36, 0.28), transparent);
    opacity: 0.84;
}

.section-heading h2 {
    font-size: clamp(3.6rem, 8.6vw, 8.8rem);
    text-shadow:
        0 1px 0 rgba(255, 42, 36, 0.24),
        0 26px 56px rgba(0, 0, 0, 0.78);
}

.section-heading .text-link {
    align-self: center;
}

.hero.section-panel {
    min-height: 100svh;
    padding: calc(var(--header-h) + 18px) clamp(14px, 3.4vw, 54px) 72px;
}

.hero-frame {
    width: min(1760px, 100%);
    min-height: clamp(590px, calc(100svh - 168px), 920px);
    border-color: rgba(255, 255, 255, 0.22);
    background: #020202;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
}

.hero-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: transparent;
}

.hero-frame::after {
    content: "";
    position: absolute;
    inset: 14px;
    z-index: 2;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.13);
}

.hero-visual img {
    filter: none !important;
    transform: scale(1.018) !important;
}

.hero-brand {
    left: clamp(28px, 5vw, 86px);
    bottom: clamp(70px, 10vh, 132px);
    justify-items: start;
    width: min(720px, calc(100% - 56px));
    text-align: left;
    transform: none;
}

.hero-brand .eyebrow {
    color: rgba(248, 245, 239, 0.8);
    text-shadow: none;
}

.hero-brand .eyebrow[data-scatter-text],
.hero-lead[data-scatter-text] {
    display: inline-grid;
    place-items: center;
    isolation: isolate;
    text-shadow: none;
}

.hero-brand .eyebrow[data-scatter-text] {
    line-height: 1;
}

.scatter-logo {
    font-size: clamp(2.65rem, 6.2vw, 6.65rem);
    line-height: 0.98;
    text-shadow: none;
    display: inline-grid;
    place-items: center;
    isolation: isolate;
    --trace-color: rgba(228, 26, 26, 0.92);
    --trace-dasharray: 12 120;
    --trace-duration: 14s;
    --trace-loop: 132;
    --trace-stroke-width: 0.8px;
}

.scatter-text__echo-layer,
.scatter-text__glyph-layer {
    grid-area: 1 / 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.scatter-text__echo-layer {
    z-index: 1;
    pointer-events: none;
}

.scatter-text__glyph-layer {
    z-index: 2;
    color: #ffffff;
    isolation: isolate;
}

.scatter-text__char {
    position: relative;
}

.scatter-text__echo-space {
    display: block;
    opacity: 0;
}

.scatter-logo .scatter-text__glyph-char {
    mix-blend-mode: difference;
}

.scatter-text__glyph {
    position: relative;
    z-index: 1;
    display: block;
}

.scatter-text__trace {
    display: none;
}

.scatter-text__trace-glyph {
    fill: none;
    stroke: var(--trace-color, currentColor);
    stroke-width: var(--trace-stroke-width, 0.8px);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: var(--trace-dasharray, 12 120);
    stroke-dashoffset: var(--trace-loop, 132);
    filter: none;
    text-shadow: none;
    animation: scatterTraceLoop var(--trace-duration, 14s) linear infinite;
    animation-delay: var(--trace-delay, 0s);
}

@keyframes scatterTraceLoop {
    from {
        stroke-dashoffset: var(--trace-loop, 132);
    }

    to {
        stroke-dashoffset: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .scatter-text__trace-glyph {
        animation: none;
    }
}

.hero-lead {
    max-width: 34rem;
    font-size: clamp(0.98rem, 1.35vw, 1.18rem);
    line-height: 1.55;
    text-shadow: none;
}

.hero-actions {
    justify-content: flex-start;
    gap: 10px;
    margin-top: 12px;
}

.news-feature::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: var(--red);
}

.news-feature time {
    color: var(--red-bright);
    font-family: var(--font-display);
    font-weight: 800;
}

.news-feature em {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    color: var(--text);
    font-family: var(--font-display);
    font-style: normal;
    font-weight: 800;
}

.hero-ticker {
    position: absolute;
    left: clamp(14px, 3.4vw, 54px);
    right: clamp(14px, 3.4vw, 54px);
    bottom: 22px;
    z-index: 6;
    overflow: hidden;
    border-block: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(4, 4, 4, 0.76);
}

.hero-ticker-track {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
}

.hero-ticker a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 0;
    min-height: 42px;
    padding-inline: clamp(18px, 2.8vw, 44px);
    color: var(--muted);
    font-family: var(--font-display);
    font-weight: 800;
    white-space: nowrap;
}

.hero-ticker span {
    color: var(--red-bright);
}

.hero-ticker strong {
    color: var(--text);
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hero-ticker a:hover,
.hero-ticker a:focus-visible {
    background: rgba(177, 10, 10, 0.18);
}

.button {
    position: relative;
}

.button > * {
    position: relative;
    z-index: 1;
}

@keyframes heroTicker {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

.scroll-cue {
    left: auto;
    right: clamp(24px, 4vw, 62px);
    bottom: 84px;
    transform: none;
}

.news-editorial {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: 1px;
    max-width: 1280px;
    margin-inline: auto;
    border: 1px solid var(--line);
    background: var(--line);
}

.news-feature,
.news-index-panel {
    background: rgba(7, 7, 9, 0.94);
}

.news-feature {
    position: relative;
    display: grid;
    align-content: end;
    gap: 14px;
    min-height: clamp(440px, 42vw, 620px);
    padding: clamp(24px, 4vw, 52px);
    color: var(--text);
    overflow: hidden;
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.news-feature > * {
    position: relative;
    z-index: 1;
}

.news-feature:hover,
.news-feature:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.news-feature strong {
    display: block;
    min-width: 0;
    max-width: 100%;
    font-family: var(--font-display);
    font-size: clamp(2.35rem, 4.35vw, 4.35rem);
    line-height: 0.98;
    text-wrap: balance;
    overflow-wrap: normal;
}

.news-feature p {
    max-width: 34rem;
    color: var(--muted);
    line-height: 1.85;
}

.news-index-panel {
    min-width: 0;
    padding: clamp(18px, 2.5vw, 30px);
}

.news-toolbar,
.news-list,
.news-pagination,
.news-page-status {
    max-width: none;
}

.news-toolbar {
    margin-bottom: 16px;
}

.news-toolbar button {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.035);
    min-height: 44px;
}

.news-row {
    position: relative;
    min-height: 82px;
    padding-inline: 2px 0;
    overflow: hidden;
}

.news-row::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 42, 36, 0.16), transparent 58%);
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity 180ms ease, transform 220ms ease;
    pointer-events: none;
}

.news-row:hover::before,
.news-row:focus-visible::before {
    opacity: 1;
    transform: translateX(0);
}

.news-row i {
    transition: transform 180ms ease, color 180ms ease;
}

.news-row:hover i,
.news-row:focus-visible i {
    color: var(--red-bright);
    transform: translateX(4px) rotate(-8deg);
}

.news-row > * {
    position: relative;
}

.news-row span,
.news-row[data-news-tag="EVENT"] span,
.news-row[data-news-tag="INFO"] span,
.news-row[data-news-tag="MUSIC"] span,
.news-row[data-news-tag="GOODS"] span,
.news-row[data-news-tag="PR"] span,
.news-row[data-news-tag="PROJECT"] span {
    color: var(--red-bright);
}

.discography-board {
    border-color: var(--line);
    background: var(--line);
}

.event-card-primary {
    position: relative;
    grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

.event-card-primary figure {
    min-height: clamp(520px, 48vw, 760px);
}

.event-card-primary figure img {
    object-position: center 28%;
    filter: brightness(0.78) saturate(0.84) contrast(1.08);
    transition: transform 360ms cubic-bezier(.2, .72, .16, 1), filter 260ms ease;
}

.event-card-primary:hover figure img,
.event-card-primary:focus-within figure img {
    transform: scale(1.035);
    filter: brightness(0.86) saturate(0.9) contrast(1.12);
}

.event-card-primary .event-copy {
    align-content: end;
    gap: 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 36%),
        rgba(7, 7, 9, 0.96);
}

.event-card-primary .event-copy h3 {
    max-width: min(100%, 9ch);
    font-size: clamp(3rem, 5.8vw, 5.8rem);
    overflow-wrap: normal;
    white-space: normal;
}

.event-copy p {
    max-width: 38rem;
    color: var(--muted);
    line-height: 1.8;
}

.event-copy dl {
    max-width: 560px;
}

.event-copy .button {
    justify-self: start;
}

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

.album-card {
    position: relative;
    overflow: hidden;
    min-height: clamp(360px, 34vw, 480px);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 42%),
        rgba(7, 7, 9, 0.94);
    transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.album-card img {
    filter: brightness(0.9) saturate(0.9) contrast(1.05);
    transition: transform 260ms ease, filter 220ms ease;
}

.album-card:hover,
.album-card:focus-within {
    transform: translateY(-5px);
    background:
        linear-gradient(180deg, rgba(255, 42, 36, 0.08), transparent 44%),
        rgba(10, 10, 12, 0.98);
    box-shadow: 0 20px 58px rgba(0, 0, 0, 0.34);
}

.album-card:hover img,
.album-card:focus-within img {
    transform: scale(1.025);
    filter: brightness(0.98) saturate(0.96) contrast(1.08);
}

.profile-intro {
    background:
        linear-gradient(90deg, rgba(177, 10, 10, 0.18), transparent 34%),
        rgba(7, 7, 9, 0.96);
}

.profile-card,
.profile-channel,
.movie-player,
.movie-tabs,
.goods-feature,
.goods-note,
.guideline-card,
.contact-panel {
    position: relative;
    background-color: rgba(7, 7, 9, 0.94);
}

.profile-card::before,
.guideline-card span {
    background: var(--red);
}

.profile-card:hover,
.profile-card:focus-within {
    transform: translateY(-6px);
}

.profile-card figure::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 42, 36, 0.18), transparent 34%),
        linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.48));
    opacity: 0;
    transition: opacity 220ms ease;
}

.profile-card:hover figure::before,
.profile-card:focus-within figure::before {
    opacity: 1;
}

.movie-layout,
.goods-grid,
.guideline-grid,
.contact-panel {
    border-color: var(--line);
}

.movie-tabs button.is-active,
.movie-tabs button:hover,
.movie-tabs button:focus-visible {
    background: var(--red);
    border-color: var(--red-bright);
}

.goods-feature::after {
    background: linear-gradient(0deg, rgba(4, 4, 4, 0.86), transparent 56%);
}

.contact-panel {
    min-height: clamp(300px, 34vw, 430px);
}

@media (max-width: 1120px) {
    .news-editorial,
    .event-card-primary {
        grid-template-columns: 1fr;
    }

    .news-feature {
        min-height: 360px;
    }

    .event-card-primary figure {
        min-height: clamp(420px, 58vw, 620px);
    }
}

@media (max-width: 1024px) {
    .global-nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        z-index: 98;
        display: none;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0;
        justify-self: stretch;
        width: 100vw;
        max-width: none;
        border-block: 1px solid rgba(255, 255, 255, 0.16);
        background: rgba(4, 4, 4, 0.96);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
    }

    .global-nav.is-open {
        display: grid;
    }

    .global-nav a {
        min-height: 62px;
        padding: 14px;
        border-top: 0;
        border-right: 1px solid rgba(255, 255, 255, 0.11);
        border-bottom: 1px solid rgba(255, 255, 255, 0.11);
        color: var(--text);
    }
}

@media (max-width: 760px) {
    body {
        background-size: 84px 84px;
    }

    .site-header {
        min-height: var(--header-h);
        padding-inline: 14px;
    }

    .site-mark {
        width: min(168px, 52vw);
    }

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

    .section-panel {
        padding: 66px 14px;
    }

    .section-heading {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 24px;
    }

    .section-heading h2 {
        font-size: clamp(2.8rem, 14vw, 4.9rem);
    }

    .hero.section-panel {
        min-height: 100svh;
        padding: calc(var(--header-h) + 10px) 10px 58px;
    }

    .hero-frame {
        min-height: calc(100svh - var(--header-h) - 82px);
        transform: none !important;
    }

    .hero-frame::after {
        inset: 9px;
    }

    .hero-frame::before {
        background: transparent;
    }

    .hero-visual img {
        object-position: center 44%;
        transform: scale(1.018) !important;
    }

    .hero-brand {
        left: 20px;
        right: 20px;
        bottom: clamp(34px, 7vh, 58px);
        width: auto;
        gap: 9px;
    }

    .scatter-logo {
        font-size: clamp(1.58rem, 8.2vw, 2.42rem);
        white-space: nowrap;
    }

    .hero-lead {
        font-size: 0.88rem;
        line-height: 1.7;
    }

    .hero-actions {
        display: flex;
        gap: 8px;
        width: 100%;
    }

    .hero-actions .button {
        flex: 1 1 0;
        min-width: 0;
        padding-inline: 12px;
        font-size: 0.86rem;
    }

    .hero-ticker {
        left: 10px;
        right: 10px;
        bottom: 10px;
        overflow: hidden;
    }

    .hero-ticker-track {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .hero-ticker a {
        justify-content: flex-start;
        min-height: 44px;
        padding-inline: 18px;
        font-size: 0.88rem;
    }

    .hero-ticker a:not(:first-child) {
        display: none;
    }

    .scroll-cue {
        display: none;
    }

    .news-editorial {
        grid-template-columns: 1fr;
    }

    .news-feature {
        min-height: 320px;
        padding: 24px 20px;
    }

    .news-feature strong {
        max-width: 100%;
        font-size: clamp(2.05rem, 11vw, 3.25rem);
    }

    .news-index-panel {
        padding: 14px;
    }

    .news-row {
        grid-template-columns: 84px 64px 1fr 24px;
        gap: 9px;
        min-height: 76px;
    }

    .news-row strong {
        font-size: 0.9rem;
        line-height: 1.48;
    }

    .event-card-primary figure {
        min-height: clamp(360px, 112vw, 520px);
    }

    .event-card-primary .event-copy h3 {
        font-size: clamp(2.5rem, 15vw, 4.4rem);
    }

    .event-copy dl div {
        grid-template-columns: 82px 1fr;
        padding: 12px;
    }

    .release-stack {
        grid-template-columns: 1fr;
    }

    .album-card {
        grid-template-columns: minmax(96px, 0.38fr) minmax(0, 1fr);
        gap: 14px;
        min-height: 0;
    }

    .album-card h3 {
        font-size: clamp(1.75rem, 8.5vw, 2.55rem);
    }

    .profile-intro {
        background: rgba(7, 7, 9, 0.96);
    }
}

@media (max-width: 420px) {
    .hero-actions {
        flex-direction: column;
    }

    .news-row {
        grid-template-columns: 1fr 58px 24px;
    }

    .news-row time {
        grid-column: 1 / -1;
    }

    .album-card {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-ticker-track {
        animation: none;
    }

    .section-heading::before {
        animation: none !important;
    }

    .hero-frame,
    .hero-brand,
    .news-feature,
    .album-card,
    .event-card-primary figure img,
    .album-card img {
        transform: none !important;
    }

    .hero-visual img {
        transform: none !important;
    }
}

/* Editorial design strengthening pass */
.section-panel {
    --section-mark: "";
    --section-accent-x: 100%;
    isolation: isolate;
}

.news-section {
    --section-mark: "LATEST";
    --section-accent-x: 82%;
}

.discography-section {
    --section-mark: "EVENT / MUSIC";
    --section-accent-x: 18%;
}

.profile-section {
    --section-mark: "GROUP";
    --section-accent-x: 78%;
}

.movie-section {
    --section-mark: "WATCH";
    --section-accent-x: 24%;
}

.goods-section {
    --section-mark: "STORE";
    --section-accent-x: 76%;
}

.guideline-section {
    --section-mark: "RULES";
    --section-accent-x: 22%;
}

.contact-section {
    --section-mark: "MAIL";
    --section-accent-x: 72%;
}

.section-panel::before {
    left: var(--section-accent-x);
    width: 2px;
    background:
        linear-gradient(180deg, transparent 0 12%, rgba(255, 42, 36, 0.54) 28%, rgba(255, 255, 255, 0.12) 50%, rgba(255, 42, 36, 0.24) 72%, transparent 100%);
    opacity: 0.56;
}

.section-heading {
    width: min(1380px, 100%);
    padding-right: 0;
}

.section-heading h2 {
    position: relative;
    isolation: isolate;
}

.section-heading .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.section-heading .eyebrow::before {
    content: "";
    width: clamp(34px, 5vw, 82px);
    height: 1px;
    background: var(--red-bright);
}

.news-editorial,
.discography-board,
.profile-intro,
.profile-stack,
.movie-layout,
.goods-grid,
.guideline-grid,
.contact-panel {
    max-width: min(1380px, calc(100vw - clamp(28px, 7vw, 108px)));
}

.news-editorial,
.discography-board,
.movie-layout,
.goods-grid,
.guideline-grid,
.contact-panel {
    box-shadow:
        0 26px 84px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(255, 42, 36, 0.06);
}

.news-editorial {
    position: relative;
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
}

.news-editorial::before,
.discography-board::before,
.movie-layout::before,
.goods-grid::before,
.guideline-grid::before,
.contact-panel::after {
    content: "";
    position: absolute;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(90deg, var(--red-bright), transparent);
}

.news-editorial::before,
.discography-board::before,
.movie-layout::before,
.goods-grid::before,
.guideline-grid::before {
    top: -1px;
    left: -1px;
    width: min(320px, 42%);
    height: 2px;
}

.news-feature {
    background:
        linear-gradient(135deg, rgba(177, 10, 10, 0.16), transparent 34%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.42), transparent 42%),
        rgba(7, 7, 9, 0.96);
}

.news-index-panel {
    padding: clamp(24px, 3.6vw, 46px);
}

.news-row {
    padding-inline: clamp(8px, 1.2vw, 16px) clamp(8px, 1.2vw, 16px);
}

.news-row strong {
    font-size: clamp(0.98rem, 1.12vw, 1.14rem);
}

.discography-board {
    position: relative;
}

.event-card-primary {
    grid-template-columns: minmax(390px, 0.86fr) minmax(0, 1.14fr);
}

.event-card-primary figure {
    position: relative;
}

.event-card-primary figure::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, transparent 0 68%, rgba(177, 10, 10, 0.22) 68% 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.24), transparent 34%, rgba(0, 0, 0, 0.62));
}

.event-card-primary .event-copy {
    position: relative;
    padding: clamp(30px, 5vw, 76px);
}

.event-card-primary .event-copy > * {
    position: relative;
    z-index: 1;
}

.release-stack {
    align-items: start;
    gap: 1px;
}

.release-stack .album-card:nth-child(2) {
    margin-top: 0;
}

.album-card {
    min-height: clamp(410px, 36vw, 540px);
}

.album-card::after {
    content: "";
    position: absolute;
    inset: 12px;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.profile-intro {
    max-width: min(1380px, calc(100vw - clamp(28px, 7vw, 108px)));
    border: 1px solid var(--line);
    box-shadow: 0 22px 72px rgba(0, 0, 0, 0.24);
}

.profile-stack {
    align-items: start;
}

.profile-card {
    --profile-card-offset: 0px;
    --profile-index-rgb: 255, 42, 36;
}

.profile-wolpis {
    --profile-index-rgb: 125, 216, 255;
}

.profile-eruno {
    --profile-index-rgb: 157, 224, 125;
}

.profile-risru {
    --profile-index-rgb: 199, 156, 255;
}

.profile-nekochanmachine {
    --profile-index-rgb: 255, 220, 94;
}

.profile-card:nth-child(even) {
    --profile-card-offset: 0px;
}

.profile-card:hover,
.profile-card:focus-within {
    transform: translateY(-3px);
}

.profile-index {
    color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px rgba(var(--profile-index-rgb), 0.78);
    text-shadow:
        1px 0 0 rgba(var(--profile-index-rgb), 0.78),
        -1px 0 0 rgba(var(--profile-index-rgb), 0.78),
        0 1px 0 rgba(var(--profile-index-rgb), 0.78),
        0 -1px 0 rgba(var(--profile-index-rgb), 0.78);
    font-size: clamp(2.8rem, 5.8vw, 6.8rem);
    line-height: 0.76;
    opacity: 0.88;
}

@supports (-webkit-text-stroke: 1px #000) {
    .profile-index {
        text-shadow: none;
    }
}

.profile-card figure {
    background:
        linear-gradient(135deg, rgba(255, 42, 36, 0.08), transparent 34%),
        #050506;
}

.profile-copy {
    position: relative;
}

.profile-copy::after {
    content: "";
    position: absolute;
    right: clamp(14px, 2vw, 24px);
    bottom: clamp(14px, 2vw, 24px);
    width: clamp(42px, 5vw, 82px);
    height: 1px;
    background: rgba(255, 42, 36, 0.64);
}

.movie-layout {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.26fr);
}

.movie-player {
    background:
        linear-gradient(135deg, rgba(255, 42, 36, 0.08), transparent 38%),
        rgba(7, 7, 9, 0.96);
}

.movie-player > * {
    position: relative;
    z-index: 1;
}

.movie-tabs button {
    position: relative;
    min-height: clamp(88px, 10vw, 126px);
    font-size: clamp(0.98rem, 1.3vw, 1.18rem);
}

.movie-tabs button::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 0;
    background: var(--red-bright);
    transition: width 180ms ease;
}

.movie-tabs button.is-active::before,
.movie-tabs button:hover::before,
.movie-tabs button:focus-visible::before {
    width: 5px;
}

.goods-grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
}

.goods-note,
.guideline-card,
.contact-panel {
    background:
        linear-gradient(135deg, rgba(255, 42, 36, 0.1), transparent 42%),
        rgba(7, 7, 9, 0.95);
}

.goods-feature {
    min-height: clamp(360px, 42vw, 560px);
}

.goods-feature span {
    text-shadow: 0 22px 48px rgba(0, 0, 0, 0.78);
}

.guideline-card {
    min-height: clamp(300px, 28vw, 420px);
    align-content: end;
}

.guideline-card span {
    color: var(--text);
    -webkit-text-stroke: 0;
    font-size: clamp(2.4rem, 6vw, 5rem);
    line-height: 0.9;
    background: var(--red);
}

.contact-panel {
    position: relative;
    overflow: hidden;
}

.contact-panel::after {
    top: auto;
    left: auto;
    right: 0;
    bottom: 0;
    width: 44%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--red-bright));
}

.contact-line {
    position: relative;
    z-index: 1;
}

@media (max-width: 1120px) {
    .section-heading {
        padding-right: 0;
    }

    .news-editorial,
    .event-card-primary,
    .movie-layout,
    .goods-grid {
        grid-template-columns: 1fr;
    }

    .release-stack .album-card:nth-child(2),
    .profile-card:nth-child(even) {
        margin-top: 0;
        --profile-card-offset: 0px;
    }

    .movie-tabs {
        grid-row: auto;
    }

    .movie-tabs button {
        min-height: 82px;
    }
}

@media (max-width: 760px) {
    .section-panel {
        --section-accent-x: calc(100% - 18px);
    }

    .section-heading {
        padding-right: 0;
    }

    .news-editorial,
    .discography-board,
    .profile-intro,
    .profile-stack,
    .movie-layout,
    .goods-grid,
    .guideline-grid,
    .contact-panel {
        max-width: 100%;
    }

    .news-index-panel {
        padding: 14px;
    }

    .event-card-primary .event-copy {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 24px 20px;
    }

    .event-card-primary,
    .event-card-primary figure {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .release-stack .album-card:nth-child(2) {
        margin-top: 0;
    }

    .profile-index {
        font-size: clamp(2.5rem, 13vw, 4.2rem);
    }

    .movie-tabs button {
        min-height: 68px;
    }

    .guideline-card {
        min-height: 240px;
    }

    .guideline-card span {
        font-size: clamp(3.4rem, 18vw, 5.4rem);
    }
}

@media (max-width: 420px) {
    .section-heading {
        padding-right: 0;
    }

    .event-card-primary .event-copy {
        padding-inline: 16px;
    }

    .event-card-primary .event-copy p,
    .event-card-primary .event-copy dl,
    .event-card-primary .event-copy .button {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .news-row {
        padding-inline: 10px;
    }

    .movie-tabs button {
        min-height: 60px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .section-heading::before,
    .movie-tabs button::before {
        transition: none !important;
        animation: none !important;
    }
}

/* Premium official-site pass: editorial cover, restrained black/red system. */
:root {
    --ink: #020203;
    --ink-2: #08080a;
    --ink-3: #101014;
    --ivory: #f8f4ea;
    --silver: #b7b1a7;
    --red-deep: #760303;
    --red-live: #d80e0e;
    --hairline: rgba(248, 244, 234, 0.18);
    --hairline-soft: rgba(248, 244, 234, 0.09);
}

body {
    background:
        linear-gradient(90deg, rgba(248, 244, 234, 0.045) 1px, transparent 1px),
        linear-gradient(180deg, rgba(248, 244, 234, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, #050505 0%, #020203 42%, #070708 100%);
    background-size: clamp(86px, 11vw, 160px) clamp(86px, 11vw, 160px), clamp(86px, 11vw, 160px) clamp(86px, 11vw, 160px), auto;
}

.site-header {
    border-bottom: 1px solid rgba(248, 244, 234, 0.12);
    /* background relocated to .site-header::before (polish pass) */
    background: transparent;
}

.site-mark img {
    filter: invert(1) grayscale(1) contrast(1.28);
}

.global-nav a {
    position: relative;
    color: rgba(248, 244, 234, 0.76);
}

.global-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 1px;
    transform: scaleX(0);
    transform-origin: left center;
    background: var(--red-live);
    transition: transform 180ms ease;
}

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

.section-panel {
    padding-block: clamp(86px, 10vw, 150px);
}

.section-panel::before {
    opacity: 0.42;
}

.section-heading {
    position: relative;
    align-items: end;
    max-width: min(1480px, calc(100vw - clamp(28px, 7vw, 120px)));
}

.section-heading::after {
    content: var(--section-mark);
    position: absolute;
    right: 0;
    bottom: -0.18em;
    z-index: -1;
    color: rgba(248, 244, 234, 0.035);
    font-family: var(--font-display);
    font-size: clamp(4.8rem, 13vw, 16rem);
    font-weight: 800;
    line-height: 0.78;
    letter-spacing: 0;
    white-space: nowrap;
}

.section-heading h2 {
    color: var(--ivory);
    text-shadow:
        0 1px 0 rgba(216, 14, 14, 0.26),
        0 22px 54px rgba(0, 0, 0, 0.72);
}

.section-heading .eyebrow,
.card-kicker,
.news-row span,
.hero-ticker span {
    color: #ff2a24;
}

.hero.section-panel {
    --hero-wolpis-white: #fcfaf8;
    --hero-wolpis-white-rgb: 252, 250, 248;
    min-height: 100svh;
    padding: calc(var(--header-h) + 18px) clamp(14px, 3.4vw, 64px) 74px;
}

.hero-frame {
    width: min(1780px, 100%);
    min-height: clamp(610px, calc(100svh - 170px), 940px);
    border-color: rgba(248, 244, 234, 0.2);
    background:
        linear-gradient(90deg, rgba(216, 14, 14, 0.07), transparent 28%, transparent 72%, rgba(216, 14, 14, 0.05)),
        var(--ink);
    box-shadow:
        0 34px 100px rgba(0, 0, 0, 0.52),
        inset 0 0 0 1px rgba(248, 244, 234, 0.05);
}

.hero-frame::before {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, transparent 34%, rgba(0, 0, 0, 0.58) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, transparent 45%, rgba(0, 0, 0, 0.72) 100%);
}

.hero-frame::after {
    inset: 16px;
    border-color: rgba(248, 244, 234, 0.12);
}

.hero-visual img {
    object-position: center 42%;
    transform: scale(1.025) !important;
}

.hero-brand {
    left: clamp(38px, 6vw, 112px);
    bottom: clamp(92px, 13vh, 158px);
    width: min(760px, calc(100% - 72px));
    gap: 12px;
    color: var(--hero-wolpis-white);
}

.hero-brand .eyebrow {
    font-size: clamp(0.82rem, 1vw, 1rem);
    color: var(--hero-wolpis-white);
}

.scatter-logo {
    font-size: clamp(3.2rem, 6.8vw, 6.65rem);
    line-height: 0.94;
    color: var(--hero-wolpis-white);
    text-shadow: none;
}

.hero-lead {
    color: var(--hero-wolpis-white);
    font-weight: 700;
    text-shadow: none;
}

.hero-meta {
    position: absolute;
    top: clamp(34px, 5vw, 70px);
    left: clamp(32px, 5vw, 88px);
    z-index: 4;
    display: grid;
    gap: 12px;
    color: rgba(248, 244, 234, 0.76);
    font-family: var(--font-display);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0;
}

.hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.hero-meta span::before {
    content: "";
    width: 32px;
    height: 1px;
    background: var(--red-live);
}

.hero-update {
    position: absolute;
    top: clamp(74px, 13vh, 132px);
    right: clamp(30px, 4vw, 74px);
    z-index: 5;
    width: min(390px, 31vw);
    border: 1px solid rgba(248, 244, 234, 0.18);
    background:
        linear-gradient(90deg, rgba(216, 14, 14, 0.2), transparent 3px),
        linear-gradient(135deg, rgba(248, 244, 234, 0.045), transparent 48%),
        rgba(4, 4, 5, 0.72);
    box-shadow: 0 24px 78px rgba(0, 0, 0, 0.48);
    backdrop-filter: blur(16px);
}

.hero-update .card-kicker {
    padding: 26px 26px 0;
}

.hero-update-card {
    display: grid;
    gap: 12px;
    min-height: 300px;
    padding: 12px 26px 28px;
}

.hero-update-card time,
.hero-update-card em {
    color: #ff2a24;
    font-family: var(--font-display);
    font-weight: 800;
}

.hero-update-card strong {
    color: var(--hero-wolpis-white);
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 3.25vw, 3.4rem);
    font-weight: 800;
    line-height: 0.98;
    text-wrap: balance;
}

.hero-update-card span {
    display: -webkit-box;
    color: rgba(248, 244, 234, 0.76);
    line-height: 1.8;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.hero-update-card em {
    align-self: end;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-style: normal;
}

.hero-update-card:hover em,
.hero-update-card:focus-visible em {
    color: var(--ivory);
}

.hero-ticker {
    border-color: rgba(248, 244, 234, 0.18);
    background: rgba(2, 2, 3, 0.84);
}

.hero-ticker a {
    justify-content: flex-start;
}

.hero-ticker strong {
    color: var(--hero-wolpis-white);
}

.hero-rail span,
.scroll-cue {
    color: var(--hero-wolpis-white);
}

.hero-actions .button {
    color: var(--hero-wolpis-white) !important;
}

.button,
.news-toolbar button,
.news-page-control,
.news-page-number,
.profile-links a,
.profile-channel-links a,
.profile-social-links a {
    border-color: rgba(248, 244, 234, 0.2);
}

.button-primary {
    background: linear-gradient(135deg, #d80e0e, #8b0404);
    border-color: rgba(255, 42, 36, 0.7);
    box-shadow: 0 14px 34px rgba(167, 7, 7, 0.28);
}

.button-ghost {
    background: rgba(2, 2, 3, 0.44);
}

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

.news-editorial,
.discography-board,
.profile-intro,
.profile-stack,
.movie-layout,
.goods-grid,
.guideline-grid,
.contact-panel {
    max-width: min(1480px, calc(100vw - clamp(28px, 7vw, 120px)));
}

.news-editorial {
    grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1.14fr);
    border-color: var(--hairline);
    background: var(--hairline);
}

.news-feature {
    min-height: clamp(520px, 42vw, 680px);
    background:
        linear-gradient(90deg, rgba(216, 14, 14, 0.23), transparent 4px),
        linear-gradient(135deg, rgba(216, 14, 14, 0.14), transparent 34%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.66), transparent 56%),
        rgba(7, 7, 9, 0.97);
}

.news-feature::after {
    content: "NEWS";
    position: absolute;
    right: -0.1em;
    bottom: -0.16em;
    z-index: 0;
    color: rgba(248, 244, 234, 0.035);
    font-family: var(--font-display);
    font-size: clamp(7rem, 18vw, 18rem);
    font-weight: 800;
    line-height: 0.75;
}

.news-feature strong {
    font-size: clamp(2.7rem, 4.9vw, 5.25rem);
}

.news-index-panel {
    background:
        linear-gradient(180deg, rgba(248, 244, 234, 0.035), transparent 28%),
        rgba(6, 6, 8, 0.96);
}

.news-row {
    min-height: 92px;
    border-color: rgba(248, 244, 234, 0.1);
}

.discography-board {
    border-color: var(--hairline);
    background: var(--hairline);
}

.event-card-primary {
    grid-template-columns: minmax(420px, 0.9fr) minmax(0, 1.1fr);
}

.event-card-primary figure {
    min-height: clamp(640px, 50vw, 820px);
}

.event-card-primary figure img {
    filter: brightness(0.82) saturate(0.92) contrast(1.08);
}

.event-card-primary .event-copy {
    background:
        linear-gradient(90deg, rgba(216, 14, 14, 0.16), transparent 4px),
        linear-gradient(135deg, rgba(248, 244, 234, 0.04), transparent 42%),
        rgba(6, 6, 8, 0.97);
}

.event-card-primary .event-copy h3 {
    font-size: clamp(4rem, 6.6vw, 7rem);
}

.release-stack {
    background: var(--hairline);
}

.album-card {
    border: 0;
    background:
        linear-gradient(135deg, rgba(216, 14, 14, 0.08), transparent 38%),
        rgba(7, 7, 9, 0.96);
}

.album-card img {
    min-height: 100%;
}

.profile-intro {
    background:
        linear-gradient(90deg, rgba(216, 14, 14, 0.17), transparent 32%),
        linear-gradient(180deg, rgba(248, 244, 234, 0.035), transparent 30%),
        rgba(6, 6, 8, 0.97);
}

.profile-stack {
    border-color: var(--hairline);
    background: var(--hairline);
}

.profile-card {
    background:
        linear-gradient(180deg, rgba(248, 244, 234, 0.025), transparent 38%),
        rgba(6, 6, 8, 0.97);
}

.profile-card::before {
    background: linear-gradient(180deg, var(--red-live), var(--red-deep));
}

.profile-card figure {
    background:
        linear-gradient(180deg, rgba(216, 14, 14, 0.08), transparent 36%),
        #050506;
}

.profile-card figure img {
    filter: saturate(0.94) contrast(1.06);
}

.profile-copy h3 {
    color: var(--ivory);
}

.movie-layout,
.goods-grid,
.guideline-grid,
.contact-panel {
    border-color: var(--hairline);
    background: var(--hairline);
}

.movie-player,
.movie-tabs,
.goods-note,
.guideline-card,
.contact-panel {
    background:
        linear-gradient(135deg, rgba(216, 14, 14, 0.1), transparent 42%),
        rgba(6, 6, 8, 0.97);
}

.movie-tabs button {
    border-color: rgba(248, 244, 234, 0.11);
}

.goods-feature img {
    transform: scale(1.01);
    transition: transform 360ms ease, filter 260ms ease;
}

.goods-feature:hover img,
.goods-feature:focus-visible img {
    transform: scale(1.045);
}

.guideline-card {
    border: 0;
}

.guideline-card h3 {
    color: var(--ivory);
}

.contact-panel {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    min-height: clamp(210px, 22vw, 300px);
    padding-block: clamp(32px, 4.2vw, 58px);
}

@media (max-width: 1180px) {
    .hero-update {
        display: none;
    }

    .hero-brand {
        width: min(760px, calc(100% - 56px));
    }
}

@media (max-width: 1120px) {
    .news-editorial,
    .event-card-primary {
        grid-template-columns: 1fr;
    }

    .movie-layout,
    .goods-grid {
        grid-template-columns: 1fr;
    }

    .event-card-primary figure {
        min-height: clamp(440px, 58vw, 660px);
    }
}

@media (max-width: 760px) {
    body {
        background-size: 82px 82px, 82px 82px, auto;
    }

    .global-nav a::after,
    .section-heading::after,
    .hero-meta {
        display: none;
    }

    .section-panel {
        padding-block: 70px;
    }

    .section-heading,
    .news-editorial,
    .discography-board,
    .profile-intro,
    .profile-stack,
    .movie-layout,
    .goods-grid,
    .guideline-grid,
    .contact-panel {
        max-width: 100%;
    }

    .hero.section-panel {
        padding: calc(var(--header-h) + 10px) 10px 58px;
    }

    .hero-frame {
        min-height: calc(100svh - var(--header-h) - 82px);
    }

    .hero-frame::after {
        inset: 9px;
    }

    .hero-frame::before {
        background:
            linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, transparent 42%, rgba(0, 0, 0, 0.78) 100%);
    }

    .hero-visual img {
        object-position: center 42%;
        transform: scale(1.02) !important;
    }

    .hero-brand {
        left: 20px;
        right: 20px;
        bottom: clamp(78px, 13vh, 112px);
        width: auto;
    }

    .scatter-logo {
        font-size: clamp(1.72rem, 8.8vw, 2.65rem);
        white-space: nowrap;
    }

    .hero-actions {
        width: 100%;
    }

    .hero-ticker {
        bottom: 10px;
    }

    .news-feature {
        align-content: start;
        min-height: auto;
        padding: 22px 18px;
    }

    .news-feature strong {
        font-size: clamp(1.95rem, 9.4vw, 2.85rem);
        line-height: 1.04;
    }

    .news-feature p {
        line-height: 1.75;
    }

    .news-row {
        min-height: 82px;
    }

    .event-card-primary figure {
        min-height: clamp(380px, 112vw, 540px);
    }

    .event-card-primary .event-copy h3 {
        font-size: clamp(2.7rem, 15vw, 4.6rem);
    }

    .album-card {
        min-height: 0;
    }

    .contact-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .site-mark {
        width: min(176px, 56vw);
    }

    .hero-brand {
        bottom: 86px;
    }

    .hero-actions .button {
        min-height: 46px;
    }

    .news-feature {
        padding-inline: 18px;
    }
}

/* Targeted refinement pass for current content requests. */
.hero-frame::before {
    background: transparent !important;
}

.hero-visual img {
    filter: none !important;
    opacity: 1;
}

.discography-release-primary figure {
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 42, 36, 0.1), transparent 52%),
        #050506;
}

.discography-release-primary figure::after {
    opacity: 0.28;
}

.discography-release-primary figure img {
    width: min(100%, 980px);
    height: 100%;
    padding: clamp(20px, 3.6vw, 54px);
    object-fit: contain;
    object-position: center;
    filter: none;
}

.discography-release-primary .event-copy h3 {
    max-width: 100%;
    font-size: clamp(4.5rem, 8.4vw, 8.4rem);
}

.release-stack {
    grid-template-columns: 1fr;
}

.discography-event-card {
    grid-template-columns: minmax(170px, 0.46fr) minmax(0, 1fr);
    min-height: clamp(360px, 34vw, 480px);
}

.discography-event-card img {
    object-position: center 22%;
}

.discography-event-card h3 {
    max-width: 100%;
}

.profile-intro h3.profile-team-line {
    max-width: 100%;
    font-size: clamp(1.9rem, 3.1vw, 3.25rem);
    line-height: 1.08;
    white-space: nowrap;
    word-break: keep-all;
    overflow-wrap: normal;
}

.profile-intro h3.profile-team-line span {
    display: inline-block;
    white-space: nowrap;
}

.movie-layout {
    grid-template-columns: 1fr;
}

.movie-tabs {
    grid-column: 1;
    grid-row: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.movie-tabs button {
    min-height: clamp(62px, 6vw, 84px);
    border-right: 1px solid rgba(248, 244, 234, 0.11);
    border-bottom: 0;
}

.movie-tabs button:last-child {
    border-right: 0;
}

.movie-tabs button::before {
    inset: auto 18px 0;
    width: auto;
    height: 0;
}

.movie-tabs button.is-active::before,
.movie-tabs button:hover::before,
.movie-tabs button:focus-visible::before {
    width: auto;
    height: 4px;
}

.movie-player {
    grid-column: 1;
    grid-row: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.42fr) minmax(280px, 0.58fr);
    min-height: 0;
}

.movie-frame {
    border-right: 1px solid var(--line-soft);
    border-bottom: 0;
}

.movie-copy {
    align-content: center;
    gap: 14px;
}

.movie-copy h3 {
    max-width: 100%;
    font-size: clamp(2.25rem, 4.2vw, 4.6rem);
    line-height: 0.98;
}

.movie-copy p:not(.card-kicker) {
    max-width: 28rem;
}

.playlist-link {
    margin-top: 8px;
}

.goods-feature {
    display: grid;
    min-height: auto;
    aspect-ratio: 16 / 9;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 42, 36, 0.12), transparent 58%),
        #050506;
}

.goods-feature::after,
.goods-feature span {
    display: none;
}

.goods-feature img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: none !important;
}

.goods-feature:hover img,
.goods-feature:focus-visible img {
    transform: none !important;
    filter: brightness(1.04) saturate(1.06) contrast(1.02);
}

.goods-note p {
    max-width: 26rem;
    font-size: clamp(1rem, 1.2vw, 1.12rem);
}

@media (max-width: 760px) {
    .hero-frame::before {
        background: transparent !important;
    }

    .discography-release-primary figure img {
        padding: clamp(14px, 5vw, 26px);
    }

    .discography-release-primary .event-copy h3 {
        font-size: clamp(3.2rem, 17vw, 5.4rem);
    }

    .discography-event-card {
        grid-template-columns: minmax(108px, 0.42fr) minmax(0, 1fr);
    }

    .profile-intro h3.profile-team-line {
        font-size: clamp(1.56rem, 6.7vw, 2.2rem);
    }

    .movie-tabs {
        grid-template-columns: 1fr;
    }

    .movie-tabs button {
        min-height: 54px;
        border-right: 0;
        border-bottom: 1px solid rgba(248, 244, 234, 0.11);
    }

    .movie-tabs button::before {
        inset: 0 auto 0 0;
        width: 0;
        height: auto;
    }

    .movie-tabs button.is-active::before,
    .movie-tabs button:hover::before,
    .movie-tabs button:focus-visible::before {
        width: 4px;
        height: auto;
    }

    .movie-player {
        grid-template-columns: 1fr;
    }

    .movie-frame {
        border-right: 0;
        border-bottom: 1px solid var(--line-soft);
    }

    .movie-copy h3 {
        font-size: clamp(2rem, 11vw, 3.2rem);
    }
}

@media (max-width: 420px) {
    .discography-event-card {
        grid-template-columns: 1fr;
    }

    .profile-intro h3.profile-team-line {
        font-size: clamp(1.36rem, 6.4vw, 1.72rem);
    }
}

/* DISCOGRAPHY: return to the original side-by-side release card rhythm. */
.discography-board.discography-pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    border: 1px solid var(--hairline, var(--line));
    background: var(--hairline, var(--line));
}

.discography-board.discography-pair::before {
    width: min(260px, 38%);
}

.discography-card.album-card,
.discography-card.discography-release-primary,
.discography-card.discography-event-card {
    display: grid;
    grid-template-columns: minmax(260px, 0.52fr) minmax(0, 0.48fr);
    align-items: stretch;
    gap: 0;
    min-height: clamp(360px, 34vw, 500px);
    padding: 0;
    border: 0;
    background:
        linear-gradient(135deg, rgba(216, 14, 14, 0.08), transparent 38%),
        rgba(7, 7, 9, 0.96);
}

.discography-card::after {
    inset: 12px;
}

.discography-card.discography-release-primary::after {
    content: none;
}

.discography-card.discography-event-card::after {
    content: none;
}

.discography-card figure,
.discography-card.discography-release-primary figure {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 100%;
    margin: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 42, 36, 0.12), transparent 56%),
        #050506;
}

.discography-card figure::after,
.discography-card.discography-release-primary figure::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 42%, rgba(0, 0, 0, 0.52));
    opacity: 0.38;
}

.discography-card.discography-release-primary figure {
    align-self: center;
    justify-self: center;
    width: min(calc(100% - clamp(24px, 3.2vw, 40px)), 360px);
    aspect-ratio: 1 / 1;
    min-height: 0;
    margin: clamp(16px, 2vw, 22px) auto;
    overflow: hidden;
    background: transparent;
}

.discography-card.discography-release-primary figure::after {
    content: none;
}

.discography-card.discography-event-card figure {
    align-self: center;
    justify-self: center;
    width: min(calc(100% - clamp(24px, 3.2vw, 40px)), 360px);
    aspect-ratio: 1 / 1;
    min-height: 0;
    margin: clamp(16px, 2vw, 22px) auto;
    overflow: hidden;
}

.discography-card.discography-event-card figure::after {
    content: none;
}

.discography-card figure img,
.discography-card.discography-release-primary figure img,
.discography-card.discography-event-card img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    padding: 0;
    border: 0;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.92) saturate(0.92) contrast(1.05);
}

.discography-card.discography-release-primary figure img {
    height: 100%;
    min-height: 0;
    padding: 0;
    object-fit: cover;
    filter: none;
}

.discography-card.discography-event-card figure img {
    object-position: center 18%;
}

.discography-card > div {
    display: grid;
    align-content: end;
    gap: 14px;
    min-width: 0;
    padding: clamp(22px, 2.4vw, 30px);
}

.discography-card h3,
.discography-card.discography-release-primary .event-copy h3,
.discography-card.discography-event-card h3 {
    max-width: 100%;
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 3.35vw, 3.65rem);
    line-height: 1;
    text-wrap: balance;
    white-space: normal;
}

.discography-card.discography-event-card h3 {
    font-size: clamp(2rem, 2.65vw, 3.05rem);
}

.discography-card p:not(.card-kicker) {
    max-width: 34rem;
    color: var(--muted);
    font-size: clamp(0.92rem, 0.96vw, 1rem);
    line-height: 1.75;
}

.discography-card .text-link {
    justify-self: start;
    margin-top: 2px;
}

@media (max-width: 1120px) {
    .discography-board.discography-pair {
        grid-template-columns: 1fr;
    }

    .discography-card.album-card,
    .discography-card.discography-release-primary,
    .discography-card.discography-event-card {
        grid-template-columns: minmax(330px, 0.48fr) minmax(0, 0.52fr);
        min-height: clamp(300px, 42vw, 440px);
    }
}

@media (max-width: 760px) {
    .discography-card.album-card,
    .discography-card.discography-release-primary,
    .discography-card.discography-event-card {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .discography-card figure,
    .discography-card.discography-release-primary figure {
        aspect-ratio: 16 / 10;
        min-height: 0;
    }

    .discography-card.discography-release-primary figure {
        aspect-ratio: 1 / 1;
        width: min(calc(100% - 36px), 390px);
    }

    .discography-card.discography-event-card figure {
        aspect-ratio: 1 / 1;
        width: min(calc(100% - 36px), 390px);
    }

    .discography-card > div {
        padding: 22px 18px;
    }

    .discography-card p:not(.card-kicker) {
        max-width: none;
        line-height: 1.65;
    }

    .discography-card h3,
    .discography-card.discography-release-primary .event-copy h3,
    .discography-card.discography-event-card h3 {
        font-size: clamp(2.1rem, 11vw, 3.15rem);
    }
}

/* Requested removal of red wash/gradient-style decorative surfaces. */
body {
    background:
        linear-gradient(90deg, rgba(248, 244, 234, 0.045) 1px, transparent 1px),
        linear-gradient(180deg, rgba(248, 244, 234, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, #050505 0%, #020203 42%, #070708 100%);
}

.sub-hero,
.hero-frame,
.hero-update,
.form-aside,
.news-feature,
.event-card-primary .event-copy,
.album-card,
.profile-intro,
.profile-intro-mark,
.profile-card figure,
.movie-player,
.movie-tabs,
.goods-note,
.guideline-hub,
.guideline-hub-list a:first-child,
.guideline-card,
.contact-panel,
.goods-feature {
    background: rgba(6, 6, 8, 0.97) !important;
}

.news-editorial,
.discography-board,
.movie-layout,
.goods-grid,
.guideline-grid,
.contact-panel {
    box-shadow:
        0 26px 84px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(248, 244, 234, 0.06) !important;
}

.hero-update {
    background: rgba(4, 4, 5, 0.78) !important;
}

.news-feature,
.event-card-primary figure::after {
    background:
        linear-gradient(0deg, rgba(0, 0, 0, 0.62), transparent 56%),
        rgba(7, 7, 9, 0.97) !important;
}

.button-primary {
    background: rgba(248, 244, 234, 0.12) !important;
    border-color: rgba(248, 244, 234, 0.34) !important;
    box-shadow: none !important;
    color: var(--ivory);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: rgba(248, 244, 234, 0.18) !important;
}

.section-panel::before,
.section-panel::after,
.section-heading::after,
.news-feature::before,
.news-editorial::before,
.discography-board::before,
.movie-layout::before,
.goods-grid::before,
.guideline-grid::before,
.contact-panel::after,
.profile-card::before,
.profile-copy::after {
    opacity: 0 !important;
    background: transparent !important;
}

.section-heading h2 {
    text-shadow: none !important;
}

.section-heading::after {
    content: none !important;
    display: none !important;
}

.guideline-card span {
    width: fit-content;
    padding: 0;
    background: transparent !important;
    color: var(--red-bright) !important;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: clamp(1px, 0.12vw, 1.8px) var(--red-bright);
    paint-order: stroke fill;
}

@media (forced-colors: active) {
    .guideline-card span {
        color: LinkText !important;
        -webkit-text-fill-color: Canvas;
        -webkit-text-stroke: 2px LinkText;
    }
}

.section-heading .eyebrow,
.section-heading .eyebrow::before,
.card-kicker,
.news-feature time,
.news-row span,
.hero-ticker span,
.hero-update-card time,
.hero-update-card em {
    color: var(--silver) !important;
}

.section-heading .eyebrow::before,
.global-nav a::after,
.hero-meta span::before,
.movie-tabs button::before {
    background: rgba(248, 244, 234, 0.34) !important;
}

.playlist-link {
    border-color: rgba(248, 244, 234, 0.24);
    color: var(--ivory);
    background:
        linear-gradient(90deg, rgba(248, 244, 234, 0.1), rgba(248, 244, 234, 0.04)),
        rgba(2, 2, 3, 0.4);
}

.playlist-link:hover,
.playlist-link:focus-visible {
    border-color: rgba(248, 244, 234, 0.52);
    color: var(--ivory);
    background:
        linear-gradient(90deg, rgba(248, 244, 234, 0.16), rgba(248, 244, 234, 0.07)),
        rgba(2, 2, 3, 0.58);
}

.playlist-link i {
    color: var(--silver);
}

.playlist-link:hover i,
.playlist-link:focus-visible i {
    color: var(--ivory);
}

.fanclub-section {
    --section-mark: "JOIN";
    --section-accent-x: 28%;
}

.fanclub-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
    width: 100%;
    max-width: min(1380px, calc(100vw - clamp(28px, 7vw, 108px)));
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(248, 244, 234, 0.13);
    background: rgba(6, 6, 8, 0.97);
    box-shadow:
        0 26px 84px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(248, 244, 234, 0.06);
}

.fanclub-visual {
    display: grid;
    min-height: auto;
    aspect-ratio: 1440 / 750;
    overflow: hidden;
    background: #050506;
}

.fanclub-visual picture {
    display: block;
    width: 100%;
    height: 100%;
}

.fanclub-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.9) saturate(0.96) contrast(1.06);
    transition: transform 360ms ease, filter 260ms ease;
}

.fanclub-visual:hover img,
.fanclub-visual:focus-visible img {
    transform: scale(1.025);
    filter: brightness(0.98) saturate(1.02) contrast(1.06);
}

.fanclub-copy {
    display: grid;
    align-content: center;
    gap: clamp(18px, 2.5vw, 26px);
    padding: clamp(24px, 5vw, 62px);
    background: rgba(6, 6, 8, 0.97);
}

.fanclub-copy h3 {
    max-width: 9ch;
    color: var(--ivory);
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.2vw, 5rem);
    font-weight: 800;
    line-height: 0.95;
}

.fanclub-copy p:not(.card-kicker) {
    max-width: 27rem;
    color: var(--muted);
    font-size: clamp(1rem, 1.2vw, 1.12rem);
    line-height: 1.8;
}

.fanclub-copy .button {
    width: fit-content;
}

@media (max-width: 1120px) {
    .fanclub-panel {
        grid-template-columns: 1fr;
    }

    .fanclub-copy h3 {
        max-width: none;
    }
}

/* =========================================================================
   ELEVATION PASS 2026-06-29 — Phase 1: design tokens + AI-slop removal
   ダーク・エディトリアル × シネマティック路線。glow/neon/glassmorphism は
   核にしない。Lenis等の慣性スクロール・scrub連動は導入しない。
   ========================================================================= */
:root {
    /* Motion easing — 抑制された高級感のためのカーブ言語 */
    --ease-entrance: cubic-bezier(0.16, 1, 0.3, 1);   /* 登場・着地（out-expo系） */
    --ease-exit: cubic-bezier(0.7, 0, 0.84, 0);       /* 退場・閉じる */
    --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);    /* hover等の汎用 in-out */
    --ease-emphasis: cubic-bezier(0.22, 1, 0.36, 1);  /* マスク/ワイプ/下線の主役 */

    /* Duration — 要素サイズで段階化（restrained） */
    --dur-1: 180ms;   /* hover 色/下線 */
    --dur-2: 320ms;   /* ボタン/カード */
    --dur-3: 560ms;   /* clip-path/画像 */
    --dur-4: 820ms;   /* 見出しワイプ/ヒーロー所作 */
    --stagger: 60ms;

    /* Tracking — 役割別。巨大見出しは詰め、ラベルは開ける（編集的コントラスト） */
    --track-display: -0.012em;
    --track-kicker: 0.2em;
    --track-nav: 0.04em;

    /* Spacing scale — 8px 基準の縦リズム */
    --space-unit: 8px;
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
    --space-5: 44px;
    --space-6: 64px;
    --space-8: 96px;
    --space-10: 128px;
    --space-12: 168px;
}

/* 緑/青アクセント残像（::after）は確実に出さない。赤（::before）のみ復元。
   無限トレースループは停止のまま。 */
.scroll-echo-word::after {
    content: none !important;
    display: none !important;
}

.scatter-text__trace,
.scatter-text__trace-glyph {
    animation: none !important;
}

/* =========================================================================
   ELEVATION PASS 2026-06-29 — Phase 2: typography system
   Anton(シネマティックな極大見出し) × Archivo(編集的グロテスク) ×
   Zen Kaku Gothic New(上質な和文)。
   和文は display フォントのフォールバックに Zen Kaku を入れて、システム
   フォント漏れ（Yu Gothic 等への意図しない切替）を防ぐ。
   ========================================================================= */
:root {
    --font-display: "Archivo", "Zen Kaku Gothic New", "Arial Narrow", system-ui, sans-serif;
    --font-display-mega: "Anton", "Zen Kaku Gothic New", "Arial Narrow", sans-serif;
    --font-jp: "Zen Kaku Gothic New", system-ui, sans-serif;
    --font-body: var(--font-jp);
}

/* 極大ディスプレイ見出し（ラテン）— Anton。単一ウェイトのため faux-bold を抑止。
   赤にじみの text-shadow を廃し編集的に。トラッキングは詰めて塊感を出す。 */
.section-heading h2 {
    font-family: var(--font-display-mega);
    font-weight: 400;
    font-synthesis: none;
    letter-spacing: var(--track-display);
    text-shadow: none;
}

/* ラベル・小見出し（eyebrow / kicker）— トラッキングを開けて編集的コントラスト */
.eyebrow,
.card-kicker,
.section-heading .eyebrow {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: var(--track-kicker);
}

/* ナビ — トラッキング規律 */
.global-nav a {
    letter-spacing: var(--track-nav);
}

/* ヒーローのローマ字字幕 — 清潔な Archivo を広めのトラッキングで編集的に。 */
.hero-lead {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: 0.2em;
}

/* ヒーローの白文字は重なると黒くなる（difference）を全テキスト＋要素間に適用しつつ、
   赤い残像も両立させる。鍵は echo を screen 合成で「白文字の前」に置くこと：
   - glyph(difference): 白×白＝黒。要素間で blend させるため、間に挟まる stacking
     context（各グリフ層の z-index/isolation、各 scatter-text 要素の isolation）を
     全て解除し、hero-brand を唯一の合成コンテキストにする。
   - echo(screen): 暗い背景には赤く出るが、白グリフの上では白へ化けて透明になり、
     差分合成の backdrop を汚さない（シアン化しない）。要素間の黒落ちも保たれる。
   JS 側は glyph 層を先（下）・echo 層を後（上）に積んでいる。 */
.hero-brand {
    isolation: isolate;
}

.hero-brand .scatter-text__glyph-char {
    mix-blend-mode: difference;
}

.hero-brand .scatter-text__echo-char {
    mix-blend-mode: screen;
}

.scatter-logo,
.hero-brand .eyebrow[data-scatter-text],
.hero-lead[data-scatter-text],
.hero-brand .scatter-text__glyph-layer,
.hero-brand .scatter-text__echo-layer {
    isolation: auto;
    z-index: auto;
}

/* =========================================================================
   ELEVATION PASS 2026-06-29 — Phase 3: editorial section index
   各セクション見出しを「01 ｜ LATEST」の小さく精緻なインデックスへ。
   巨大ゴースト透かしは復活させない。HTML 変更なし(CSSのみ)。
   ========================================================================= */
body {
    counter-reset: seidan-section;
}

.section-heading {
    counter-increment: seidan-section;
}

/* 連番（赤の精緻なアクセント）— eyebrow 先頭。既存の tick を番号に置換。 */
.section-heading .eyebrow::before {
    content: counter(seidan-section, decimal-leading-zero) !important;
    width: auto !important;
    height: auto !important;
    background: none !important;
    color: var(--red-live) !important;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.96em;
    letter-spacing: 0.02em;
}

/* =========================================================================
   ELEVATION PASS 2026-06-29 — Phase 4: 質感・奥行き（シネマティック）
   極薄フィルムグレイン＋微ヴィネット。無彩色・静的・低 opacity。
   glow/neon ではなく「沈み」で奥行きを出す。pointer-events は無効。
   ========================================================================= */
body::before {
    display: block;
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9990;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.86' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 180px 180px;
    opacity: 0.045;
    mix-blend-mode: soft-light;
}

body::after {
    display: block;
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9989;
    pointer-events: none;
    background: radial-gradient(135% 130% at 50% 42%, transparent 56%, rgba(0, 0, 0, 0.38) 100%);
}

@media (prefers-reduced-motion: reduce) {
    /* グレインは静的なので残すが、合成負荷を避けたい環境向けに据え置き */
    body::before { opacity: 0.04; }
}

/* --- 赤の精緻化：単一の上質なバーミリオン系へ収れん（値のみ再マップ）。
   現状は最終パスで脱赤化されモノクロ寄り。黒×赤の identity を要所に取り戻す。 --- */
:root {
    --red: #b01a14;        /* 深いバーミリオン（面・アクティブ塗り） */
    --red-live: #d62a20;   /* 基準バーミリオン（番号・線・アクセント） */
    --red-bright: #e8392c; /* 明るいバーミリオン（罫・ハイライト） */
    --vermilion: var(--red-live);
}

/* ナビ下線 — ホバー/フォーカスで上質なバーミリオン（要所の精緻な赤）。 */
.global-nav a::after {
    background: var(--red-live) !important;
}

/* 主 CTA — 黒地に映える単一のバーミリオン。ghost ボタンとの差を明確に。 */
.button-primary {
    background: var(--red) !important;
    border-color: var(--red-live) !important;
    color: var(--ivory) !important;
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--red-live) !important;
    border-color: var(--red-bright) !important;
    color: var(--ivory) !important;
}

/* =========================================================================
   ELEVATION PASS 2026-06-29 — Phase 5: モーションの質（イージング統一）
   既定の ease を練られた cubic-bezier トークンへ。値は据え置き、カーブのみ
   底上げ＝視覚回帰を抑えつつ手触りを上質化。新規ギミックは足さない。
   ========================================================================= */
.global-nav a {
    transition: color var(--dur-1) var(--ease-standard) !important;
}

.global-nav a::after {
    transition: transform var(--dur-2) var(--ease-emphasis) !important;
}

.button {
    transition:
        transform var(--dur-2) var(--ease-emphasis),
        border-color var(--dur-1) var(--ease-standard),
        background var(--dur-1) var(--ease-standard),
        color var(--dur-1) var(--ease-standard) !important;
}

/* カード画像のホバー — スケールを 1.04 に抑え、上質なカーブで */
.section-card-strip img,
.goods-feature img,
.fanclub-visual img,
.album-card img {
    transition:
        transform var(--dur-3) var(--ease-emphasis),
        filter var(--dur-3) var(--ease-standard) !important;
}

.section-card-strip a:hover img {
    transform: scale(1.04);
}

/* text-link（→付きリンク）の矢印 — 上質なホバー前進 */
.text-link i {
    transition: transform var(--dur-2) var(--ease-emphasis);
}

.text-link:hover i,
.text-link:focus-visible i {
    transform: translateX(4px);
}

@media (max-width: 760px) {
    .fanclub-panel {
        max-width: min(100%, calc(100vw - 36px));
    }

    .fanclub-visual {
        min-height: auto;
        aspect-ratio: 1440 / 750;
    }

    .fanclub-copy {
        padding: 22px 18px;
    }

    .fanclub-copy h3 {
        font-size: clamp(2.25rem, 11vw, 3.25rem);
    }
}

@media (max-width: 300px) {
    .global-nav {
        grid-template-columns: 1fr;
    }
}
/* Final responsive audit fixes: keep narrow dynamic labels inside their frames. */
.goods-note,
.fanclub-copy {
    box-sizing: border-box;
    min-width: 0;
    max-width: 100%;
}

.goods-note h3,
.goods-note p,
.fanclub-copy h3,
.fanclub-copy p {
    min-width: 0;
    max-width: 100%;
}

@media (max-width: 420px) {
    .hero-ticker a {
        align-items: flex-start;
        flex-direction: column;
        gap: 2px;
        white-space: normal !important;
    }

    .hero-ticker strong {
        align-self: stretch;
        display: block;
        width: 100%;
        max-width: 100%;
        overflow: visible;
        text-overflow: clip;
        white-space: normal !important;
        line-height: 1.22;
    }
}

@media (max-width: 360px) {
    .goods-note,
    .fanclub-copy {
        padding-inline: 18px;
    }

    .goods-note h3,
    .fanclub-copy h3 {
        font-size: clamp(2rem, 12vw, 2.35rem);
        line-height: 1.06;
    }
}

/* Character stage viewer for profile portraits. */
.profile-card figure {
    isolation: isolate;
}

.profile-stage-trigger {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: clamp(14px, 2.5vw, 24px);
    border: 0;
    background: transparent;
    color: var(--text);
    cursor: zoom-in;
}

.profile-stage-trigger:focus-visible {
    outline-offset: -12px;
}

.profile-stage-trigger-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 13px;
    border: 1px solid rgba(var(--profile-index-rgb), 0.55);
    background: rgba(4, 4, 6, 0.72);
    color: var(--text);
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    white-space: nowrap;
    transform: translateY(8px);
    opacity: 0;
    transition:
        opacity 180ms ease,
        transform 180ms ease,
        background 180ms ease,
        border-color 180ms ease;
}

.profile-stage-trigger:hover .profile-stage-trigger-label,
.profile-stage-trigger:focus-visible .profile-stage-trigger-label {
    border-color: rgba(var(--profile-index-rgb), 0.92);
    background: rgba(var(--profile-index-rgb), 0.18);
    opacity: 1;
    transform: translateY(0);
}

body.character-stage-open {
    overflow: hidden;
}

.character-stage-modal {
    --stage-accent-rgb: 232, 57, 44;
    --stage-image-y: 0;
    --stage-image-h: min(100%, 820px);
    --stage-image-bottom: 0;
    --stage-image-max-w: calc(100% - clamp(28px, 5vw, 72px));
    --stage-image-h-mobile: min(100%, 690px);
    --stage-image-h-landscape: min(100%, 600px);
    position: fixed;
    inset: 0;
    z-index: 340;
    display: grid;
    place-items: center;
    padding: clamp(14px, 3vw, 42px);
    background:
        linear-gradient(90deg, rgba(var(--stage-accent-rgb), 0.11), transparent 32%),
        rgba(0, 0, 0, 0.84);
    opacity: 0;
    transition: opacity 220ms ease;
}

.character-stage-modal.is-active {
    opacity: 1;
}

.character-stage-wolpis {
    --stage-accent-rgb: 125, 216, 255;
    --stage-image-y: 0;
}

.character-stage-eruno {
    --stage-accent-rgb: 157, 224, 125;
    --stage-image-y: 0;
}

.character-stage-risru {
    --stage-accent-rgb: 199, 156, 255;
    --stage-image-y: 0;
}

.character-stage-nekochanmachine {
    --stage-accent-rgb: 255, 220, 94;
    --stage-image-y: 0;
    --stage-image-h: min(100%, 820px);
    --stage-image-bottom: 0;
    --stage-image-h-mobile: min(100%, 690px);
    --stage-image-h-landscape: min(100%, 600px);
}

.character-stage-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.58fr) minmax(320px, 0.42fr);
    grid-template-rows: minmax(0, 1fr);
    width: min(1180px, 100%);
    min-height: min(760px, calc(100svh - clamp(28px, 6vw, 84px)));
    max-height: calc(100svh - clamp(28px, 6vw, 84px));
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background:
        linear-gradient(120deg, rgba(var(--stage-accent-rgb), 0.12), transparent 38%),
        rgba(5, 5, 7, 0.98);
    box-shadow:
        0 30px 100px rgba(0, 0, 0, 0.58),
        inset 0 0 0 1px rgba(var(--stage-accent-rgb), 0.12);
}

.character-stage-panel::before {
    content: "";
    position: absolute;
    inset: 18px;
    pointer-events: none;
    border: 1px solid rgba(var(--stage-accent-rgb), 0.22);
    z-index: 2;
}

.character-stage-close {
    position: absolute;
    top: clamp(14px, 2vw, 22px);
    right: clamp(14px, 2vw, 22px);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(4, 4, 6, 0.74);
    color: var(--text);
    cursor: pointer;
}

.character-stage-close:hover,
.character-stage-close:focus-visible {
    border-color: rgba(var(--stage-accent-rgb), 0.92);
    background: rgba(var(--stage-accent-rgb), 0.2);
}

.character-stage-visual {
    position: relative;
    display: grid;
    align-items: end;
    justify-items: center;
    height: 100%;
    min-height: 0;
    margin: 0;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        rgba(3, 3, 5, 0.96);
    background-size: 46px 46px;
}

.character-stage-visual::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 38%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.62), transparent);
    pointer-events: none;
}

.character-stage-visual img {
    position: absolute;
    left: 50%;
    bottom: var(--stage-image-bottom);
    z-index: 1;
    width: auto;
    height: auto;
    max-width: var(--stage-image-max-w);
    max-height: var(--stage-image-h);
    object-fit: contain;
    filter:
        drop-shadow(0 26px 34px rgba(0, 0, 0, 0.5))
        contrast(1.06)
        saturate(1.04);
    transform: translate3d(-50%, var(--stage-image-y), 0);
}

.character-stage-copy {
    position: relative;
    z-index: 3;
    container-type: inline-size;
    display: grid;
    align-content: center;
    gap: clamp(14px, 2vw, 22px);
    min-width: 0;
    min-height: 0;
    overflow: visible;
    padding: clamp(30px, 4vw, 58px);
    padding-inline-end: clamp(30px, 5vw, 72px);
}

.character-stage-meta {
    margin: 0;
    color: rgb(var(--stage-accent-rgb));
    font-family: var(--font-display);
    font-size: clamp(0.96rem, 1.25vw, 1.08rem);
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1;
    white-space: nowrap;
}

.character-stage-name {
    max-width: 100%;
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 2.7vw, 2.8rem);
    font-weight: 800;
    line-height: 0.9;
    text-wrap: balance;
    word-break: keep-all;
    overflow-wrap: normal;
}

@supports (font-size: 1cqw) {
    .character-stage-name {
        font-size: clamp(1.45rem, 8.4cqw, 2.8rem);
    }
}

.character-stage-note {
    margin: 0;
    color: var(--muted);
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    line-height: 1.65;
    text-wrap: pretty;
}

.character-stage-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    min-width: 0;
}

.character-stage-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 44px;
    min-height: 44px;
    padding: 9px 11px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.045);
    color: var(--text);
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.character-stage-links a:hover,
.character-stage-links a:focus-visible {
    border-color: rgba(var(--stage-accent-rgb), 0.92);
    background: rgba(var(--stage-accent-rgb), 0.17);
}

@media (max-width: 820px) {
    .character-stage-modal {
        padding: 12px;
    }

    .character-stage-panel {
        grid-template-columns: 1fr;
        grid-template-rows: minmax(360px, 58svh) auto;
        min-height: 0;
        max-height: calc(100svh - 24px);
        overflow: auto;
    }

    .character-stage-panel::before {
        inset: 12px;
    }

    .character-stage-close {
        width: 46px;
        height: 46px;
    }

    .character-stage-visual {
        min-height: 0;
    }

    .character-stage-visual img {
        max-height: var(--stage-image-h-mobile);
    }

    .character-stage-copy {
        align-content: start;
        gap: 12px;
        padding: 24px 20px 26px;
        padding-inline-end: 74px;
    }

    .character-stage-name {
        font-size: clamp(1.35rem, 7.5vw, 2.45rem);
    }
}

@media (max-width: 420px) {
    .profile-stage-trigger {
        padding: 12px;
    }

    .profile-stage-trigger-label {
        opacity: 1;
        transform: none;
    }

    .character-stage-panel {
        grid-template-rows: minmax(330px, 56svh) auto;
    }

    .character-stage-copy {
        padding-inline-end: 20px;
    }

    .character-stage-name {
        font-size: clamp(1.25rem, 7.6vw, 2.45rem);
        font-size: clamp(1.25rem, 9.6cqw, 2.45rem);
    }
}

@supports (font-size: 1cqw) {
    @media (max-width: 820px) {
        .character-stage-name {
            font-size: clamp(1.25rem, 9.6cqw, 2.45rem);
        }
    }
}

@media (max-width: 820px) and (orientation: landscape) {
    .character-stage-panel {
        grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
        grid-template-rows: minmax(0, 1fr);
        min-height: min(560px, calc(100svh - 24px));
        overflow: hidden;
    }

    .character-stage-visual {
        height: 100%;
    }

    .character-stage-visual img {
        max-height: var(--stage-image-h-landscape);
    }

    .character-stage-copy {
        align-content: center;
        gap: 10px;
        padding: clamp(16px, 4vw, 28px);
        padding-inline-end: 64px;
    }

    .character-stage-name {
        font-size: clamp(1.35rem, 7.4cqw, 2.05rem);
    }
}

@media (max-width: 340px) {
    .character-stage-copy {
        padding-inline: 16px;
    }

    .character-stage-name {
        font-size: clamp(1rem, 7.2vw, 1.35rem);
        font-size: clamp(1rem, 8.6cqw, 1.35rem);
    }

    .character-stage-links a {
        width: 44px;
        padding-inline: 0;
    }

    .character-stage-links a span {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .profile-stage-trigger-label,
    .character-stage-modal {
        transition: none;
    }
}

/* Member SNS links: keep accessible labels, show the controls as icon buttons. */
.profile-links,
.character-stage-links {
    align-items: center;
    gap: 9px;
}

.profile-links a,
.character-stage-links a {
    position: relative;
    width: clamp(44px, 3.4vw, 52px);
    min-width: clamp(44px, 3.4vw, 52px);
    height: clamp(44px, 3.4vw, 52px);
    min-height: clamp(44px, 3.4vw, 52px);
    padding: 0;
    overflow: hidden;
    border-color: rgba(var(--profile-index-rgb, var(--stage-accent-rgb, 232, 57, 44)), 0.34);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.09), transparent 48%),
        rgba(255, 255, 255, 0.035);
    color: var(--text);
    transition:
        background 180ms ease,
        border-color 180ms ease,
        color 180ms ease,
        transform 180ms ease;
}

.character-stage-links a {
    border-color: rgba(var(--stage-accent-rgb), 0.34);
}

.profile-links a::after,
.character-stage-links a::after {
    content: "";
    position: absolute;
    inset: 7px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.profile-links a i,
.character-stage-links a i {
    position: relative;
    z-index: 1;
    font-size: clamp(1rem, 1.25vw, 1.18rem);
}

.profile-links a span,
.character-stage-links a span {
    display: none;
}

.profile-links a:hover,
.profile-links a:focus-visible,
.character-stage-links a:hover,
.character-stage-links a:focus-visible {
    border-color: rgba(var(--profile-index-rgb, var(--stage-accent-rgb, 232, 57, 44)), 0.9);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 44%),
        rgba(var(--profile-index-rgb, var(--stage-accent-rgb, 232, 57, 44)), 0.15);
    color: var(--text);
    transform: translateY(-2px);
}

.character-stage-links a:hover,
.character-stage-links a:focus-visible {
    border-color: rgba(var(--stage-accent-rgb), 0.9);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 44%),
        rgba(var(--stage-accent-rgb), 0.17);
}

@media (max-width: 420px) {
    .profile-links,
    .character-stage-links {
        gap: 8px;
    }

    .profile-links a,
    .character-stage-links a {
        width: 44px;
        min-width: 44px;
        height: 44px;
        min-height: 44px;
    }
}

/* =========================================================================
   TEXTURE PASS 2026-07-01 — monochrome grunge material
   Texture source: Poly Haven "Worn Plaster Wall" / CC0.
   ========================================================================= */
body {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.038) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
        linear-gradient(180deg, #050505 0%, #020203 42%, #070708 100%);
    background-attachment: fixed, fixed, scroll;
    background-size:
        clamp(86px, 11vw, 160px) clamp(86px, 11vw, 160px),
        clamp(86px, 11vw, 160px) clamp(86px, 11vw, 160px),
        auto;
}

body::before,
body::after {
    display: none;
}

main > .section-panel:not(.hero),
.subpage > .sub-content {
    --parallax-bg-y: 0px;
    --parallax-vignette-y: 0px;
    --parallax-heading-y: 0px;
    --parallax-panel-y: 0px;
    --parallax-media-y: 0px;
    --watermark-shift-y: 0px;
    --texture-surface: url("../images/textures/worn-plaster-wall-mono.webp?v=20260701-varied");
    --texture-position: 50% 50%;
    --texture-scale: 1.12;
    --texture-opacity: 0.18;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(118% 88% at 14% 12%, rgba(255, 255, 255, 0.095), transparent 45%),
        radial-gradient(105% 84% at 86% 18%, rgba(255, 255, 255, 0.055), transparent 50%),
        radial-gradient(110% 86% at 52% 82%, rgba(255, 255, 255, 0.048), transparent 52%),
        linear-gradient(110deg, rgba(255, 255, 255, 0.028), transparent 25%, rgba(255, 255, 255, 0.026) 58%, transparent 80%),
        linear-gradient(180deg, rgba(5, 5, 6, 0.94), rgba(9, 9, 11, 0.92));
}

main > .section-panel:not(.hero) > *,
.subpage > .sub-content > * {
    position: relative;
    z-index: 2;
}

main > .section-panel:not(.hero)::before,
.subpage > .sub-content::before {
    display: block !important;
    content: "";
    position: absolute;
    inset: -9vh 0;
    width: auto;
    z-index: 0;
    pointer-events: none;
    opacity: var(--texture-opacity) !important;
    mix-blend-mode: soft-light;
    background-image:
        var(--texture-surface),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.86' numOctaves='2' seed='7' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E") !important;
    background-attachment: scroll, scroll !important;
    background-position: var(--texture-position), 0 0 !important;
    background-repeat: no-repeat, repeat !important;
    background-size: cover, 180px 180px !important;
    filter: grayscale(1) contrast(0.78) brightness(1.12) blur(0.15px);
    transform: translate3d(0, var(--parallax-bg-y), 0) scale(var(--texture-scale));
    transform-origin: center;
    will-change: transform;
}

main > .section-panel:not(.hero):nth-of-type(4n+2) {
    --texture-surface: url("../images/textures/worn-plaster-wall-mono-variant-02.webp?v=20260701-varied");
    --texture-position: 46% 54%;
    --texture-scale: 1.14;
    --texture-opacity: 0.16;
}

main > .section-panel:not(.hero):nth-of-type(4n+3) {
    --texture-surface: url("../images/textures/worn-plaster-wall-mono-variant-03.webp?v=20260701-varied");
    --texture-position: 58% 48%;
    --texture-scale: 1.15;
    --texture-opacity: 0.17;
}

main > .section-panel:not(.hero):nth-of-type(4n) {
    --texture-surface: url("../images/textures/worn-plaster-wall-mono-variant-04.webp?v=20260701-varied");
    --texture-position: 42% 58%;
    --texture-scale: 1.15;
    --texture-opacity: 0.15;
}

.subpage > .sub-content {
    --texture-surface: url("../images/textures/worn-plaster-wall-mono-variant-03.webp?v=20260701-varied");
    --texture-position: 54% 46%;
    --texture-scale: 1.15;
    --texture-opacity: 0.16;
}

main > .section-panel:not(.hero)::after,
.subpage > .sub-content::after {
    display: block !important;
    content: "";
    position: absolute;
    inset: -6vh 0;
    width: auto;
    z-index: 1;
    pointer-events: none;
    opacity: 1 !important;
    background:
        radial-gradient(150% 118% at 50% 42%, transparent 54%, rgba(0, 0, 0, 0.36) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(248, 244, 234, 0.025) 32%, rgba(0, 0, 0, 0.24)) !important;
    transform: translate3d(0, var(--parallax-vignette-y), 0);
    will-change: transform;
}

main > .section-panel:not(.hero) .section-heading,
.subpage > .sub-content .section-heading {
    transform: translate3d(0, var(--parallax-heading-y), 0);
    will-change: transform;
}

main > .section-panel:not(.hero) .depth-panel,
.subpage > .sub-content .depth-panel {
    transform: translate3d(0, var(--parallax-panel-y), 0);
    will-change: transform;
}

main > .section-panel:not(.hero) .depth-media,
.subpage > .sub-content .depth-media {
    transform: translate3d(0, var(--parallax-media-y), 0) scale(1.045);
    will-change: transform;
}

.site-footer {
    background: #020203;
}

@media (max-width: 760px) {
    body {
        background-size:
            82px 82px,
            82px 82px,
            auto;
    }

    main > .section-panel:not(.hero)::before,
    .subpage > .sub-content::before {
        inset: -5vh 0;
        background-attachment: scroll, scroll !important;
        background-position: var(--texture-position), 0 0 !important;
        background-size: cover, 150px 150px !important;
        opacity: 0.18 !important;
    }

    main > .section-panel:not(.hero)::after,
    .subpage > .sub-content::after {
        inset: -3vh 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    main > .section-panel:not(.hero),
    .subpage > .sub-content {
        --parallax-bg-y: 0px !important;
        --parallax-vignette-y: 0px !important;
        --parallax-heading-y: 0px !important;
        --parallax-panel-y: 0px !important;
        --parallax-media-y: 0px !important;
        --watermark-shift-y: 0px !important;
    }

    main > .section-panel:not(.hero)::before,
    .subpage > .sub-content::before {
        opacity: 0.18 !important;
        transform: none;
    }

    main > .section-panel:not(.hero)::after,
    .subpage > .sub-content::after,
    main > .section-panel:not(.hero) .section-heading,
    .subpage > .sub-content .section-heading,
    main > .section-panel:not(.hero) .depth-panel,
    .subpage > .sub-content .depth-panel,
    main > .section-panel:not(.hero) .depth-media,
    .subpage > .sub-content .depth-media {
        transform: none !important;
    }
}

/* =========================================================================
   MATERIAL CONTINUITY PASS 2026-07-01
   Keep the same monochrome surface visible on dark panels so cards do not
   float as texture/no-texture islands.
   ========================================================================= */
:where(
    .news-feature,
    .news-index-panel,
    .discography-card,
    .profile-intro,
    .profile-channel,
    .profile-card,
    .profile-copy,
    .goods-note,
    .guideline-card,
    .contact-panel,
    .fanclub-panel,
    .fanclub-copy,
    .article-shell,
    .fan-tag-guide,
    .form-shell,
    .form-aside,
    .form-main,
    .policy-card,
    .sub-content article,
    .sub-content .content-card
) {
    background-image:
        linear-gradient(180deg, rgba(7, 7, 9, 0.94), rgba(9, 9, 11, 0.91)),
        radial-gradient(120% 92% at 96% 0%, rgba(248, 244, 234, 0.06), transparent 48%),
        var(--texture-surface, url("../images/textures/worn-plaster-wall-mono-variant-02.webp?v=20260701-varied")),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.86' numOctaves='2' seed='11' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E") !important;
    background-attachment: scroll, scroll, scroll, scroll !important;
    background-blend-mode: normal, screen, soft-light, overlay !important;
    background-position: 0 0, 100% 0, var(--texture-position, 50% 50%), 0 0 !important;
    background-repeat: no-repeat, no-repeat, no-repeat, repeat !important;
    background-size: auto, cover, cover, 180px 180px !important;
}

.fanclub-copy {
    border-left: 1px solid rgba(248, 244, 234, 0.08);
}

@media (max-width: 760px) {
    :where(
        .news-feature,
        .news-index-panel,
        .discography-card,
        .profile-intro,
        .profile-channel,
        .profile-card,
        .profile-copy,
        .goods-note,
        .guideline-card,
        .contact-panel,
        .fanclub-panel,
        .fanclub-copy,
        .article-shell,
        .fan-tag-guide,
        .form-shell,
        .form-aside,
        .form-main,
        .policy-card,
        .sub-content article,
        .sub-content .content-card
    ) {
        background-attachment: scroll, scroll, scroll, scroll !important;
    }

    .fanclub-copy {
        border-left: 0;
        border-top: 1px solid rgba(248, 244, 234, 0.08);
    }
}

/* =========================================================================
   CHARACTER WATERMARK PASS 2026-07-01
   Use the member art as low-contrast, card-local watermarks on editorial
   surfaces so the detail feels intentional instead of tiled decoration.
   ========================================================================= */
:where(
    #guideline .guideline-card.character-watermark,
    .guideline-page .article-shell.character-watermark,
    .fan-tag-guide.character-watermark,
    .form-main.character-watermark
) {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    --card-character: url("../images/members/wolpis.webp?v=20260701-watermark3");
    --card-character-size: clamp(300px, 34vw, 450px);
    --card-character-x: calc(100% + 36px);
    --card-character-y: clamp(10px, 3vw, 30px);
    --card-character-opacity: 0.22;
    --card-character-tone: saturate(1.1) contrast(1.04) brightness(0.98);
}

:where(
    #guideline .guideline-card.character-watermark,
    .guideline-page .article-shell.character-watermark,
    .fan-tag-guide.character-watermark,
    .form-main.character-watermark
)::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        radial-gradient(72% 94% at 100% 100%, rgba(248, 244, 234, 0.12), transparent 62%),
        var(--card-character);
    background-repeat: no-repeat;
    background-position:
        100% 100%,
        calc(var(--card-character-x) + 0px) calc(var(--card-character-y) + var(--watermark-shift-y, 0px));
    background-size: 72% 100%, var(--card-character-size) auto;
    filter: var(--card-character-tone);
    opacity: var(--card-character-opacity);
    mix-blend-mode: normal;
}

:where(
    #guideline .guideline-card.character-watermark,
    .guideline-page .article-shell.character-watermark,
    .fan-tag-guide.character-watermark,
    .form-main.character-watermark
) > * {
    position: relative;
    z-index: 2;
}

#guideline .guideline-card:nth-child(1) {
    --texture-surface: url("../images/textures/worn-plaster-wall-mono-variant-02.webp?v=20260701-varied");
    --texture-position: 42% 56%;
}

#guideline .guideline-card:nth-child(2),
.guideline-creation-page .article-shell {
    --texture-surface: url("../images/textures/worn-plaster-wall-mono-variant-03.webp?v=20260701-varied");
    --texture-position: 64% 44%;
}

.guideline-comment-page .article-shell {
    --card-character: url("../images/members/nekochanmachine.webp?v=20260701-watermark3");
    --card-character-size: clamp(330px, 37vw, 510px);
    --card-character-x: calc(100% + 96px);
    --card-character-y: clamp(10px, 3vw, 34px);
    --card-character-opacity: 0.24;
}

.guideline-page .article-shell {
    --card-character-x: calc(100% + 64px);
    --card-character-y: clamp(10px, 3vw, 34px);
    --card-character-opacity: 0.2;
}

.fan-tag-guide {
    --card-character: url("../images/members/risru.webp?v=20260701-watermark3");
    --card-character-size: clamp(290px, 32vw, 430px);
    --card-character-x: calc(100% + 20px);
    --card-character-y: clamp(8px, 3vw, 30px);
    --card-character-opacity: 0.24;
}

@media (max-width: 760px) {
    :where(
        #guideline .guideline-card.character-watermark,
        .guideline-page .article-shell.character-watermark,
        .fan-tag-guide.character-watermark,
        .form-main.character-watermark
    ) {
        --card-character-size: clamp(270px, 78vw, 350px);
        --card-character-x: calc(100% + 62px);
        --card-character-y: 16px;
        --card-character-opacity: 0.19;
    }

    .guideline-page :where(.article-shell.character-watermark) {
        --card-character-size: clamp(300px, 86vw, 380px);
        --card-character-x: calc(100% + 84px);
        --card-character-y: 18px;
    }

    .fan-tag-guide.character-watermark {
        --card-character-size: clamp(260px, 72vw, 320px);
        --card-character-x: calc(100% + 54px);
        --card-character-y: 16px;
    }
}

.character-watermark.is-watermark-wolpis {
    --card-character: url("../images/members/wolpis.webp?v=20260701-watermark3");
    --card-character-size: clamp(370px, 42vw, 610px);
    --card-character-x: calc(100% + 78px);
    --card-character-y: clamp(10px, 3vw, 32px);
    --card-character-opacity: 0.28;
    --card-character-tone: saturate(1.12) contrast(1.04) brightness(0.98);
}

.character-watermark.is-watermark-eruno {
    --card-character: url("../images/members/eruno.webp?v=20260701-watermark3");
    --card-character-size: clamp(360px, 40vw, 590px);
    --card-character-x: calc(100% + 66px);
    --card-character-y: clamp(8px, 3vw, 30px);
    --card-character-opacity: 0.28;
    --card-character-tone: saturate(1.12) contrast(1.04) brightness(0.98);
}

.character-watermark.is-watermark-risru {
    --card-character: url("../images/members/risru.webp?v=20260701-watermark3");
    --card-character-size: clamp(360px, 40vw, 580px);
    --card-character-x: calc(100% + 58px);
    --card-character-y: clamp(8px, 3vw, 30px);
    --card-character-opacity: 0.28;
    --card-character-tone: saturate(1.12) contrast(1.04) brightness(0.98);
}

.character-watermark.is-watermark-nekochanmachine {
    --card-character: url("../images/members/nekochanmachine.webp?v=20260701-watermark3");
    --card-character-size: clamp(335px, 37vw, 510px);
    --card-character-x: calc(100% + 94px);
    --card-character-y: clamp(10px, 2.6vw, 30px);
    --card-character-opacity: 0.28;
    --card-character-tone: saturate(1.08) contrast(1.02) brightness(1);
}

@media (max-width: 760px) {
    .character-watermark.is-watermark-wolpis,
    .character-watermark.is-watermark-eruno,
    .character-watermark.is-watermark-risru {
        --card-character-size: clamp(330px, 94vw, 430px);
        --card-character-x: calc(100% + 96px);
        --card-character-y: 10px;
        --card-character-opacity: 0.24;
    }

    .character-watermark.is-watermark-nekochanmachine {
        --card-character-size: clamp(300px, 88vw, 385px);
        --card-character-x: calc(100% + 98px);
        --card-character-y: 14px;
        --card-character-opacity: 0.24;
    }

    .guideline-page .article-shell.character-watermark.is-watermark-nekochanmachine {
        --card-character-x: calc(100% + 108px);
        --card-character-y: 18px;
    }
}

.form-main.character-watermark {
    --card-character-size: clamp(420px, 38vw, 640px);
    --card-character-x: calc(100% + 54px);
    --card-character-y: clamp(16px, 4vw, 44px);
    --card-character-opacity: 0.32;
    --card-character-tone: saturate(1.18) contrast(1.06) brightness(1.08);
}

.form-main.character-watermark.is-watermark-nekochanmachine {
    --card-character-size: clamp(380px, 34vw, 560px);
    --card-character-x: calc(100% + 82px);
    --card-character-opacity: 0.28;
    --card-character-tone: saturate(1.12) contrast(1.04) brightness(1.08);
}

@media (max-width: 760px) {
    .form-main.character-watermark {
        --card-character-size: clamp(330px, 90vw, 430px);
        --card-character-x: calc(100% + 78px);
        --card-character-y: 18px;
        --card-character-opacity: 0.24;
    }

    .form-main.character-watermark.is-watermark-nekochanmachine {
        --card-character-size: clamp(310px, 84vw, 400px);
        --card-character-x: calc(100% + 92px);
        --card-character-opacity: 0.22;
    }
}

/* Keep guideline-card watermarks as one full-card surface while lifting faces away from text. */
#guideline .guideline-card.character-watermark {
    min-height: clamp(420px, 35vw, 540px);
    --card-character-opacity: 0.33;
}

#guideline .guideline-card.character-watermark.is-watermark-wolpis {
    --card-character-size: clamp(660px, 48vw, 800px);
    --card-character-x: calc(100% + 164px);
    --card-character-y: clamp(-190px, -12vw, -132px);
}

#guideline .guideline-card.character-watermark.is-watermark-eruno {
    --card-character-size: clamp(650px, 47vw, 790px);
    --card-character-x: calc(100% + 150px);
    --card-character-y: clamp(-182px, -11vw, -124px);
}

#guideline .guideline-card.character-watermark.is-watermark-risru {
    --card-character-size: clamp(660px, 47vw, 790px);
    --card-character-x: calc(100% + 142px);
    --card-character-y: clamp(-184px, -11vw, -126px);
}

#guideline .guideline-card.character-watermark.is-watermark-nekochanmachine {
    --card-character-size: clamp(590px, 42vw, 700px);
    --card-character-x: calc(100% + 180px);
    --card-character-y: clamp(-138px, -8vw, -92px);
}

@media (max-width: 760px) {
    #guideline .guideline-card.character-watermark {
        min-height: clamp(390px, 112vw, 460px);
        --card-character-opacity: 0.31;
    }

    #guideline .guideline-card.character-watermark.is-watermark-wolpis,
    #guideline .guideline-card.character-watermark.is-watermark-eruno,
    #guideline .guideline-card.character-watermark.is-watermark-risru {
        --card-character-size: clamp(520px, 150vw, 640px);
        --card-character-x: calc(100% + 154px);
        --card-character-y: clamp(-148px, -34vw, -112px);
    }

    #guideline .guideline-card.character-watermark.is-watermark-nekochanmachine {
        --card-character-size: clamp(470px, 132vw, 560px);
        --card-character-x: calc(100% + 168px);
        --card-character-y: clamp(-110px, -24vw, -78px);
    }
}

/* Keep material texture active against earlier high-specificity background shorthands. */
.news-feature,
.news-index-panel,
.discography-card,
.profile-intro,
.profile-channel,
.profile-card,
.profile-copy,
.goods-note,
.guideline-card,
.contact-panel,
.fanclub-panel,
.fanclub-copy,
.article-shell,
.fan-tag-guide,
.form-shell,
.form-aside,
.form-main,
.policy-card,
.sub-content article,
.sub-content .content-card {
    background-image:
        linear-gradient(180deg, rgba(7, 7, 9, 0.94), rgba(9, 9, 11, 0.91)),
        radial-gradient(120% 92% at 96% 0%, rgba(248, 244, 234, 0.06), transparent 48%),
        var(--texture-surface, url("../images/textures/worn-plaster-wall-mono-variant-02.webp?v=20260701-varied")),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.86' numOctaves='2' seed='11' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E") !important;
    background-attachment: scroll, scroll, scroll, scroll !important;
    background-blend-mode: normal, screen, soft-light, overlay !important;
    background-position: 0 0, 100% 0, var(--texture-position, 50% 50%), 0 0 !important;
    background-repeat: no-repeat, no-repeat, no-repeat, repeat !important;
    background-size: auto, cover, cover, 180px 180px !important;
}

@media (max-width: 760px) {
    .news-feature,
    .news-index-panel,
    .discography-card,
    .profile-intro,
    .profile-channel,
    .profile-card,
    .profile-copy,
    .goods-note,
    .guideline-card,
    .contact-panel,
    .fanclub-panel,
    .fanclub-copy,
    .article-shell,
    .fan-tag-guide,
    .form-shell,
    .form-aside,
    .form-main,
    .policy-card,
    .sub-content article,
    .sub-content .content-card {
        background-attachment: scroll, scroll, scroll, scroll !important;
    }
}


/* =========================================================================
   MOBILE + EXPERIENCE POLISH PASS 2026-07
   モバイル最適化 & 体験の上質化。既存の黒×赤エディトリアル設計は維持し、
   トークン(--ease-*/--dur-*/--space-*/--track-*)に準拠。glow/neon/過剰な
   parallax は持ち込まない。新規モーションは prefers-reduced-motion を尊重。
   このブロックはファイル末尾（最後に勝つ層）に追記される。
   ========================================================================= */

/* ---- 1. Header: scroll state + hairline scroll-progress line ---- */
/* Move blur/background to ::before. backdrop-filter on the header element
   creates a containing block, which would make the child .global-nav
   position:fixed overlay resolve against the header instead of the viewport. */
.site-header {
    background: transparent !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    transition:
        padding var(--dur-2) var(--ease-standard),
        border-color var(--dur-2) var(--ease-standard),
        box-shadow var(--dur-2) var(--ease-standard);
}

.site-header::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(2, 2, 3, 0.96), rgba(2, 2, 3, 0.76)),
        rgba(2, 2, 3, 0.9);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    transition:
        background var(--dur-2) var(--ease-standard),
        backdrop-filter var(--dur-2) var(--ease-standard);
    pointer-events: none;
}

.site-header.is-scrolled {
    padding-top: 9px;
    padding-bottom: 9px;
    border-bottom-color: var(--line);
    box-shadow: 0 14px 44px -30px rgba(0, 0, 0, 0.92);
}

.site-header.is-scrolled::before {
    background: rgba(5, 5, 6, 0.82);
    -webkit-backdrop-filter: blur(16px) saturate(1.08);
    backdrop-filter: blur(16px) saturate(1.08);
}

.site-header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    transform: scaleX(var(--scroll-progress, 0));
    transform-origin: left center;
    background: linear-gradient(90deg, var(--red), var(--red-bright));
    opacity: 0;
    transition: opacity var(--dur-2) var(--ease-standard);
    pointer-events: none;
    z-index: 1;
}

.site-header.is-scrolled::after {
    opacity: 0.92;
}

/* ---- 2. モバイル/タブレット: 全画面ナビ・オーバーレイ --------------------- */
/* 英日ラベルと下部のソーシャル/ブランドは既定では隠し、オーバーレイでのみ表示 */
.nav-jp {
    display: none;
}

.nav-aside {
    display: none;
}

body.nav-open {
    overflow: hidden;
}

@media (max-width: 1024px) {
    /* オーバーレイ(.global-nav)はヘッダーの子で z-index:95。ロゴと×ボタンは
       同じヘッダー・スタッキングコンテキスト内にあるため、95 を超える z-index
       を与えてオーバーレイの上に出す（開いてもロゴと閉じるボタンが見える）。 */
    .site-mark,
    .menu-toggle {
        position: relative;
        z-index: 100;
    }

    .global-nav {
        position: fixed;
        inset: 0;
        top: 0;
        z-index: 95;
        display: flex !important;
        flex-direction: column;
        justify-content: safe center;
        align-items: stretch;
        gap: 0;
        grid-template-columns: none;
        padding:
            calc(var(--header-h) + clamp(26px, 6vh, 60px))
            clamp(22px, 7vw, 60px)
            calc(clamp(26px, 5vh, 48px) + env(safe-area-inset-bottom, 0px));
        border: 0;
        background:
            radial-gradient(130% 78% at 100% 0%, rgba(177, 26, 20, 0.15), transparent 62%),
            linear-gradient(180deg, rgba(6, 6, 8, 0.985), rgba(4, 4, 5, 0.99)),
            var(--bg);
        -webkit-backdrop-filter: blur(6px);
        backdrop-filter: blur(6px);
        overflow-y: auto;
        overscroll-behavior: contain;
        counter-reset: navlink;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 340ms var(--ease-exit), visibility 0s linear 340ms;
    }

    /* 目の粗いフィルムグレイン（soft-light）で紙のような質感 */
    .global-nav::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.86' numOctaves='2' seed='11' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
        background-size: 180px 180px;
        opacity: 0.05;
        mix-blend-mode: soft-light;
        pointer-events: none;
    }

    .global-nav.is-open {
        display: flex !important;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: opacity 420ms var(--ease-entrance), visibility 0s;
    }

    /* 表示タイポはリンク本体に置く。下層ページの素の <a>NEWS</a> でも
       .nav-en を使うトップページでも、同一の大型 Anton ラベルになるように。 */
    .global-nav > a {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: clamp(14px, 4vw, 22px);
        width: 100%;
        min-height: clamp(58px, 7.8vh, 76px);
        margin: 0;
        padding: clamp(10px, 1.6vh, 16px) 2px;
        border: 0;
        border-top: 1px solid var(--line-soft);
        color: var(--text);
        font-family: var(--font-display-mega);
        font-weight: 400;
        font-synthesis: none;
        font-size: clamp(2rem, 8.8vw, 3rem);
        line-height: 1.08;
        letter-spacing: var(--track-display);
        overflow: visible;
        transition: color var(--dur-1) var(--ease-standard);
    }

    .global-nav > a:last-of-type {
        border-bottom: 1px solid var(--line-soft);
    }

    .global-nav > a::after {
        display: none;
    }

    .global-nav > a::before {
        counter-increment: navlink;
        content: counter(navlink, decimal-leading-zero);
        flex: none;
        min-width: 2.2em;
        font-family: var(--font-display);
        font-weight: 700;
        font-size: 0.78rem;
        letter-spacing: var(--track-kicker);
        color: var(--red-bright);
        transform: none;
        transition: color var(--dur-1) var(--ease-standard);
    }

    .global-nav .nav-en {
        display: inline-block;
        padding-block: 0.08em 0.02em;
        line-height: 1;
        color: inherit;
        transition: transform var(--dur-2) var(--ease-emphasis);
    }

    .global-nav .nav-jp {
        display: block;
        margin-left: auto;
        align-self: center;
        padding-left: 12px;
        font-family: var(--font-jp);
        font-weight: 500;
        font-size: 0.7rem;
        letter-spacing: 0.14em;
        color: var(--dim);
        white-space: nowrap;
        transition: color var(--dur-1) var(--ease-standard);
    }

    .global-nav > a:hover,
    .global-nav > a:focus-visible {
        color: var(--red-bright);
    }

    .global-nav > a:hover .nav-en,
    .global-nav > a:focus-visible .nav-en {
        transform: translateX(6px);
    }

    .global-nav > a:hover::before,
    .global-nav > a:focus-visible::before {
        color: var(--text);
    }

    .global-nav > a:hover .nav-jp,
    .global-nav > a:focus-visible .nav-jp {
        color: var(--muted);
    }

    .global-nav > a:active {
        background: rgba(255, 255, 255, 0.03);
    }

    /* 下部: ソーシャル + ブランド */
    .nav-aside {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-top: clamp(22px, 5vh, 46px);
    }

    .nav-social {
        display: flex;
        gap: 10px;
    }

    .nav-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: none;
        width: 46px;
        height: 46px;
        min-width: 46px;
        padding: 0;
        border: 1px solid var(--line-soft);
        color: var(--muted);
        font-size: 1.02rem;
        transition: color var(--dur-1) var(--ease-standard),
            border-color var(--dur-1) var(--ease-standard),
            background var(--dur-1) var(--ease-standard);
    }

    .nav-social a:hover,
    .nav-social a:focus-visible {
        color: var(--text);
        border-color: var(--red-bright);
        background: rgba(177, 26, 20, 0.14);
    }

    .nav-brand-word {
        margin: 0;
        font-family: var(--font-display);
        font-weight: 700;
        font-size: 0.82rem;
        letter-spacing: var(--track-kicker);
        color: var(--dim);
    }

    /* 段階的な登場（上から順に） */
    .global-nav.is-open > a,
    .global-nav.is-open .nav-aside {
        animation: navItemIn 540ms var(--ease-entrance) both;
    }

    .global-nav.is-open > a:nth-child(1) { animation-delay: 64ms; }
    .global-nav.is-open > a:nth-child(2) { animation-delay: 108ms; }
    .global-nav.is-open > a:nth-child(3) { animation-delay: 152ms; }
    .global-nav.is-open > a:nth-child(4) { animation-delay: 196ms; }
    .global-nav.is-open > a:nth-child(5) { animation-delay: 240ms; }
    .global-nav.is-open > a:nth-child(6) { animation-delay: 284ms; }
    .global-nav.is-open > a:nth-child(7) { animation-delay: 328ms; }
    .global-nav.is-open > a:nth-child(8) { animation-delay: 372ms; }
    .global-nav.is-open .nav-aside { animation-delay: 432ms; }
}

@keyframes navItemIn {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

/* 低い画面高（横向きスマホ等）ではスケールを抑えてスクロール前提に */
@media (max-width: 1024px) and (max-height: 560px) {
    .global-nav {
        justify-content: flex-start;
    }
    .global-nav > a,
    .global-nav .nav-en {
        font-size: clamp(1.5rem, 7vw, 2.1rem);
    }
    .global-nav > a {
        padding-block: 9px;
    }
    .nav-aside {
        margin-top: 20px;
    }
}

@media (max-width: 360px) {
    .global-nav > a {
        gap: 10px;
    }

    .global-nav > a,
    .global-nav .nav-en {
        font-size: clamp(1.78rem, 8.8vw, 2rem);
    }

    .global-nav .nav-jp {
        flex: none;
        min-width: max-content;
        padding-left: 8px;
        font-size: 0.62rem;
        letter-spacing: 0.06em;
    }
}

@media (max-width: 360px) and (max-height: 560px) {
    .global-nav > a,
    .global-nav .nav-en {
        font-size: clamp(1.5rem, 7vw, 1.78rem);
    }
}

/* ---- 3. ヒーロー・ティッカー: 継ぎ目のないマーキー ------------------------ */
.hero-ticker.is-marquee {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.hero-ticker.is-marquee .hero-ticker-track {
    display: flex;
    grid-template-columns: none;
    width: max-content;
    animation: heroTicker 34s linear infinite;
    will-change: transform;
}

.hero-ticker.is-marquee.is-paused .hero-ticker-track {
    animation-play-state: paused;
}

.hero-ticker.is-marquee a {
    flex: none;
    min-width: max-content;
    justify-content: center;
}

.hero-ticker.is-marquee a::before {
    content: "";
    align-self: center;
    width: 5px;
    height: 5px;
    margin-right: 4px;
    background: var(--red-bright);
    transform: rotate(45deg);
    opacity: 0.85;
    flex: none;
}

@media (max-width: 760px) {
    .hero-ticker.is-marquee .hero-ticker-track {
        display: flex;
        grid-template-columns: none;
        width: max-content;
        animation-duration: 26s;
    }

    .hero-ticker.is-marquee a {
        justify-content: center;
        min-height: 42px;
        padding-inline: 16px;
    }

    .hero-ticker.is-marquee a:not(:first-child) {
        display: inline-flex;
    }
}

/* ---- 4. スクロールキュー: 静かな上下モーション --------------------------- */
.scroll-cue i {
    animation: scrollCueBob 1.9s var(--ease-standard) infinite;
}

@keyframes scrollCueBob {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(5px);
        opacity: 0.45;
    }
}

/* ---- 5. モバイルの余白リズム（ヒーロー以外の縦間隔を上質に） --------------- */
@media (max-width: 760px) {
    .section-panel:not(.hero) {
        padding-inline: clamp(18px, 5.2vw, 26px);
        padding-block: clamp(82px, 17vw, 108px);
    }
}

/* ---- 6. タクタイルなプレス/フォーカスのマイクロインタラクション ----------- */
/* [data-reveal] は clearProps:"transform" で完了後 transform を消すため、
   プレス時の transform は安全に効く。opacity は GSAP がインラインで残すため使わない。 */
.button {
    transition:
        transform var(--dur-2) var(--ease-emphasis),
        background var(--dur-1) var(--ease-standard),
        border-color var(--dur-1) var(--ease-standard),
        color var(--dur-1) var(--ease-standard);
}

.button:active {
    transform: translateY(1px) scale(0.985);
}

.text-link {
    transition: color var(--dur-1) var(--ease-standard);
}

.profile-links a,
.profile-channel-links a,
.profile-social-links a,
.footer-social a {
    transition:
        transform var(--dur-2) var(--ease-emphasis),
        color var(--dur-1) var(--ease-standard),
        border-color var(--dur-1) var(--ease-standard),
        background var(--dur-1) var(--ease-standard);
}

.profile-links a:active,
.profile-channel-links a:active,
.profile-social-links a:active,
.footer-social a:active {
    transform: scale(0.94);
}

/* タッチ端末: hover 不可のためタップ時のフィードバックを付与 */
@media (hover: none) {
    .news-row:active,
    .guideline-card:active,
    .goods-feature:active,
    .fanclub-visual:active,
    .discography-card:active,
    .movie-tabs button:active,
    .news-toolbar button:active {
        transform: scale(0.99);
    }

    .movie-tabs button,
    .news-toolbar button {
        transition: transform var(--dur-1) var(--ease-emphasis),
            background var(--dur-1) var(--ease-standard),
            color var(--dur-1) var(--ease-standard);
    }
}

/* ---- 7. prefers-reduced-motion ガード ----------------------------------- */
@media (prefers-reduced-motion: reduce) {
    .scroll-cue i {
        animation: none;
    }

    .hero-ticker.is-marquee .hero-ticker-track {
        animation: none;
    }

    .global-nav.is-open > a,
    .global-nav.is-open .nav-aside {
        animation: none;
    }

    .site-header,
    .site-header::after,
    .button,
    .nav-en {
        transition: none;
    }
}

/* =========================================================================
   SECTION REFINEMENT PASS 2026-07 (round 2)
   PROFILE -> horizontal scroll-snap carousel on narrow viewports.
   MOVIE -> tabs unified into a compact underline selector, always 3-across.
   GUIDELINE -> shorter cards with a face-safe watermark position.
   ========================================================================= */

/* ---- PROFILE: scroll-snap carousel on <=1024px, 4-col grid stays on desktop ---- */
.profile-carousel {
    position: relative;
}

.profile-carousel-nav {
    display: none;
}

@media (max-width: 1024px) {
    .profile-carousel {
        margin-inline: calc(clamp(18px, 5vw, 26px) * -1);
        padding-inline: clamp(18px, 5vw, 26px);
    }

    .profile-stack {
        display: flex;
        grid-template-columns: none;
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: clamp(18px, 5vw, 26px);
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        scrollbar-width: none;
        gap: 12px;
        border: 0;
        background: none;
        padding-bottom: 2px;
    }

    .profile-stack::-webkit-scrollbar {
        display: none;
    }

    .profile-card {
        flex: 0 0 auto;
        width: min(64vw, 264px);
        grid-template-rows: auto auto;
        border: 1px solid var(--line);
        scroll-snap-align: start;
    }

    .profile-card figure {
        min-height: 0;
        height: clamp(200px, 54vw, 250px);
        align-items: start;
    }

    /* PC 版と同じ「巨大画像を absolute 配置 + translate3d(-50%, --profile-y) で
       ずらして顔だけを見せる」手法を維持したまま、figure の縮小比率に合わせて
       画像サイズだけ比例縮小する（transform/position は上書きしない）。 */
    .profile-card figure img {
        height: clamp(474px, 128vw, 592px);
        max-height: none;
    }

    .profile-nekochanmachine figure img {
        height: clamp(420px, 113vw, 525px);
    }

    .profile-copy {
        min-height: 0;
        padding: 16px;
        gap: 6px;
        border-top: 1px solid var(--line-soft);
    }

    .profile-index {
        font-size: 1.5rem;
    }

    .profile-copy h3.profile-name {
        font-size: 1.28rem;
    }

    .profile-note {
        font-size: 0.82rem;
    }

    .profile-links {
        gap: 4px;
        flex-wrap: nowrap;
    }

    .profile-links a {
        min-width: 0;
        width: 34px;
        min-height: 34px;
        padding: 4px;
        font-size: 0.7rem;
        flex: none;
    }

    .profile-links a span {
        display: none;
    }

    /* edge fades hinting that more cards continue off-screen */
    .profile-carousel::before,
    .profile-carousel::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 34px;
        width: clamp(18px, 5vw, 26px);
        pointer-events: none;
        z-index: 2;
    }

    .profile-carousel::before {
        left: 0;
        background: linear-gradient(90deg, var(--bg), transparent);
    }

    .profile-carousel::after {
        right: 0;
        background: linear-gradient(270deg, var(--bg), transparent);
    }

    .profile-carousel-nav {
        display: flex;
        justify-content: center;
        margin-top: 18px;
    }

    .profile-dots {
        display: flex;
        gap: 8px;
    }

    .profile-dot {
        width: 7px;
        height: 7px;
        padding: 0;
        border-radius: 999px;
        border: 1px solid var(--line);
        background: transparent;
        cursor: pointer;
        pointer-events: auto;
        transition:
            width var(--dur-2) var(--ease-emphasis),
            background var(--dur-1) var(--ease-standard),
            border-color var(--dur-1) var(--ease-standard);
    }

    .profile-dot.is-active {
        width: 22px;
        background: var(--red-bright);
        border-color: var(--red-bright);
    }
}

/* ---- MOVIE: tabs unified into one compact underline selector ---- */
.movie-tabs {
    counter-reset: movietab;
}

.movie-tabs button {
    counter-increment: movietab;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 52px !important;
    padding: 10px 12px;
    background: transparent !important;
    color: var(--dim);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(0.78rem, 1vw, 0.92rem);
    letter-spacing: var(--track-nav);
    border-right: 1px solid var(--line-soft) !important;
    border-bottom: 1px solid var(--line-soft) !important;
    transition: color var(--dur-1) var(--ease-standard);
}

.movie-tabs button:last-child {
    border-right: 0 !important;
}

.movie-tabs button::after {
    content: counter(movietab, decimal-leading-zero);
    order: -1;
    font-size: 0.72em;
    font-weight: 700;
    color: var(--red-bright);
    opacity: 0.85;
}

.movie-tabs button.is-active,
.movie-tabs button:hover,
.movie-tabs button:focus-visible {
    background: transparent !important;
    color: var(--text);
}

.movie-tabs button::before {
    content: "" !important;
    position: absolute !important;
    inset: auto 0 -1px 0 !important;
    width: auto !important;
    height: 2px !important;
    background: var(--red-bright) !important;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--dur-2) var(--ease-emphasis) !important;
}

.movie-tabs button.is-active::before,
.movie-tabs button:hover::before,
.movie-tabs button:focus-visible::before {
    transform: scaleX(1);
}

@media (max-width: 760px) {
    .movie-tabs {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    .movie-tabs button {
        min-height: 50px !important;
        padding: 8px 4px;
        font-size: 0.66rem;
        gap: 3px;
        flex-direction: column;
    }

    .movie-tabs button::after {
        font-size: 0.62em;
    }
}

/* ---- GUIDELINE: shorter cards, face-safe watermark position ---- */
.guideline-card {
    min-height: clamp(220px, 20vw, 280px) !important;
}

/* GUIDELINE の character-watermark は本来カード min-height 420px 級の巨大画像
   (幅600-800px, offset 140-180px) 前提で調整されている。カードを短くした分、
   4人分すべての size/x/y を GUIDELINE スコープで個別に再調整し、顔が枠内の
   見える位置に収まるようにする（!important は個別メンバークラスと同詳細度の
   既存ルールに勝つために必要）。 */
#guideline .guideline-card.character-watermark {
    --card-character-x: calc(100% + 58px) !important;
    --card-character-y: -18px !important;
}

#guideline .guideline-card.character-watermark.is-watermark-wolpis {
    --card-character-size: clamp(220px, 16vw, 250px) !important;
    --card-character-x: calc(100% + 44px) !important;
    --card-character-y: -14px !important;
}

#guideline .guideline-card.character-watermark.is-watermark-eruno {
    --card-character-size: clamp(218px, 15.6vw, 246px) !important;
    --card-character-x: calc(100% + 40px) !important;
    --card-character-y: -12px !important;
}

#guideline .guideline-card.character-watermark.is-watermark-risru {
    --card-character-size: clamp(220px, 16vw, 250px) !important;
    --card-character-x: calc(100% + 38px) !important;
    --card-character-y: -12px !important;
}

#guideline .guideline-card.character-watermark.is-watermark-nekochanmachine {
    --card-character-size: clamp(202px, 14.6vw, 230px) !important;
    --card-character-x: calc(100% + 30px) !important;
    --card-character-y: -10px !important;
}

/* カードの実高さは min-height だけでなくタイポグラフィにも引っ張られていた
   （連番80px + 見出し62px でカードが428pxまで押し広がっていた）。GUIDELINE
   だけタイポスケールを一段引き締めてコンパクトなカードに揃える。 */
.guideline-card {
    padding: clamp(24px, 3vw, 36px) !important;
    gap: 10px !important;
}

.guideline-card span {
    font-size: clamp(28px, 3.4vw, 42px) !important;
}

.guideline-card h3 {
    font-size: clamp(22px, 2.6vw, 32px) !important;
    line-height: 1.2 !important;
}

.guideline-card p {
    font-size: 0.92rem !important;
    line-height: 1.55 !important;
}

@media (max-width: 760px) {
    .guideline-card {
        min-height: clamp(196px, 46vw, 250px) !important;
        padding: 20px !important;
    }

    .guideline-card span {
        font-size: clamp(26px, 8vw, 34px) !important;
    }

    .guideline-card h3 {
        font-size: clamp(20px, 6vw, 26px) !important;
    }

    #guideline .guideline-card.character-watermark.is-watermark-wolpis {
        --card-character-size: clamp(196px, 58vw, 250px) !important;
        --card-character-x: calc(100% + 44px) !important;
        --card-character-y: -16px !important;
    }

    #guideline .guideline-card.character-watermark.is-watermark-eruno {
        --card-character-size: clamp(194px, 57vw, 248px) !important;
        --card-character-x: calc(100% + 40px) !important;
        --card-character-y: -14px !important;
    }

    #guideline .guideline-card.character-watermark.is-watermark-risru {
        --card-character-size: clamp(196px, 58vw, 250px) !important;
        --card-character-x: calc(100% + 38px) !important;
        --card-character-y: -14px !important;
    }

    #guideline .guideline-card.character-watermark.is-watermark-nekochanmachine {
        --card-character-size: clamp(180px, 54vw, 230px) !important;
        --card-character-x: calc(100% + 32px) !important;
        --card-character-y: -10px !important;
    }
}

/* =========================================================================
   GROUP INTRO REDESIGN 2026-07 — editorial "dossier"
   大きな識別見出し + 横並びのチャンネル行(赤=MUSIC / シアン=VARIETY)。
   幅依存の translateY ハックを排し、grid-row:1/-1 で列跨ぎを堅牢化。
   アクセントの核(左バー/ラベル色)は color-mix 非対応でも効くよう直変数を使用。
   ========================================================================= */

/* --- 識別見出し「3人+1匹」を大型・上質に --- */
.profile-intro h3.profile-team-line {
    font-family: var(--font-jp);
    font-weight: 900;
    font-size: clamp(2.5rem, 6vw, 4.2rem) !important;
    line-height: 1 !important;
    letter-spacing: 0.008em;
    margin-top: 2px;
}

.profile-intro h3.profile-team-line .team-plus {
    color: var(--red-bright);
    margin-inline: 0.04em;
    font-weight: 700;
}

/* --- チャンネル：GUIDELINE のヘアライン箱 + チャンネル別ロゴを大きく背景に ---
   ロゴは各チャンネルの識別色そのもの。滲みグラデ(＝以前の"ボヤっと")ではなく、
   はっきりした色面のグラフィックとして隅から大きくブリードさせ、テキストは前面へ。 */
/* GUIDELINE の .guideline-grid と同一のヘアライン箱（罫色/カード色を厳密に一致）。
   カードは横長1カラム積み（テキスト左・ロゴ右）。幅広カードにすることで、
   ロゴを大きく置いてもテキストと自然に住み分けられる。 */
.profile-channels {
    grid-template-columns: 1fr !important;
    gap: 1px !important;
    border: 1px solid rgba(248, 244, 234, 0.18);
    background: rgba(248, 244, 234, 0.18);
}

/* 装飾ラベル(CHANNELS / FOLLOW) — 共通タイポ */
.profile-channels[data-intro-label]::before,
.profile-social-links[data-intro-label]::before {
    content: attr(data-intro-label);
    grid-column: 1 / -1;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: var(--track-kicker);
    color: var(--dim);
}

/* FOLLOW は箱の外（透過）なのでラベルは素置き＋下マージン。 */
.profile-social-links[data-intro-label]::before {
    margin-bottom: 10px;
}

/* CHANNELS はヘアライン箱の中。ラベルセルを不透明カード色にして、
   明るい罫背景が全面に透ける「ライトストリップ」を防ぎ、箱の見出し帯にする。 */
.profile-channels[data-intro-label]::before {
    padding: 12px clamp(18px, 2vw, 24px);
    background: rgba(6, 6, 8, 0.97);
}

.profile-channel {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    grid-template-columns: 1fr !important;
    /* end 固定：kicker/見出し/本文の行数がカードごとに異なっても、
       リンク行(ボタン)は常にカード下端に揃う。center だとコンテンツ量の
       差がそのままボタンの縦位置のズレになり、2枚並んだ時に不整合が出る。 */
    align-content: end;
    align-items: normal;
    gap: 7px;
    border: 0 !important;
    background: rgba(6, 6, 8, 0.97) !important;
    /* 右側にロゴ用の帯を確保して、テキストは常に左側に留める。 */
    padding: clamp(22px, 2.6vw, 30px) !important;
    padding-right: clamp(120px, 30%, 240px) !important;
    min-height: clamp(150px, 15vw, 188px);
}

/* チャンネル別ロゴ（正方形フルカラー）を右側から大きくブリード。 */
.profile-channel-music {
    --ch-logo: url("../images/logo/seidan-youtube.png");
}

.profile-channel-variety {
    --ch-logo: url("../images/logo/seidan-live-youtube.png");
}

.profile-channel::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 50%;
    right: clamp(-34px, -3vw, -14px);
    transform: translateY(-50%);
    width: clamp(150px, 15vw, 210px);
    aspect-ratio: 1 / 1;
    background: var(--ch-logo) center / contain no-repeat;
    opacity: 0.95;
    pointer-events: none;
    /* 右側に密、左(テキスト側)へフェード。ハードな四角い縁を出さない。 */
    -webkit-mask-image: radial-gradient(120% 120% at 74% 50%, #000 42%, transparent 80%);
    mask-image: radial-gradient(120% 120% at 74% 50%, #000 42%, transparent 80%);
}

/* テキストは全て前面へ */
.profile-channel > * {
    position: relative;
    z-index: 1;
}

.profile-channel .card-kicker {
    color: var(--dim) !important;
    margin: 0;
}

.profile-channel h4 {
    margin: 0;
    font-size: clamp(1.28rem, 1.8vw, 1.68rem) !important;
    line-height: 1.16 !important;
}

.profile-channel p:not(.card-kicker) {
    margin: 0;
    font-size: 0.88rem;
    color: var(--muted);
}

/* プラットフォームリンクはアイコンのみ（フッター .footer-social と同一言語：
   正方形・ヘアライン枠・中央アイコン。hover は枠と色を赤に変えるだけ）。
   ボタンは 40px の箱の中央にアイコンを置くため、視覚的なアイコンの開始位置は
   箱の左端より (40px - アイコン幅)/2 ≈ 11px 内側にずれる。これがテキストの
   左端（= FOLLOW のアイコン左端、どちらも padding-left 基準）より右に見える
   原因だったため、コンテナに同量の負のマージンをかけて打ち消す。 */
.profile-channel-links {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 10px !important;
    margin-top: 10px !important;
    margin-left: -11px !important;
}

.profile-channel-links a {
    width: 40px;
    height: 40px;
    min-width: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--line-soft);
    font-size: 1rem;
}

.profile-channel-links a:hover,
.profile-channel-links a:focus-visible {
    border-color: var(--red-bright);
    color: var(--red-bright);
}

/* --- ソーシャル(X / Instagram)：CHANNELS は歌動画/実写企画という本体コンテンツ
   なので罫線ボックス+カードで重厚に扱うべきだが、FOLLOW はあくまで副次的な導線。
   専用の罫線ボックス・ラベル帯・大きな正方形セルを割り当てるのはスペースの
   使いすぎだった（実測・指摘により確認：ボタン238×190pxはCHANNELS内の
   YouTube/TikTokボタン40×40pxの約6倍）。CHANNELS カード内の card-kicker と
   同じ軽さのラベル＋コンパクトな正方形アイコンまで縮小し、テキストブロックの
   一部として溶け込ませる。 */
.profile-social-links {
    transform: none !important;
    display: block !important;
    max-width: none;
    align-self: start !important;
    border: 0 !important;
    background: transparent !important;
}

.profile-social-links > .card-kicker {
    margin: 0 0 clamp(8px, 1vw, 12px);
}

.profile-social-row {
    display: flex;
    gap: 10px;
}

.profile-social-row a {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    width: clamp(44px, 3.6vw, 50px);
    height: clamp(44px, 3.6vw, 50px);
    min-width: 0 !important;
    min-height: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center !important;
    padding: 0 !important;
    border: 1px solid var(--line-soft);
    background: rgba(12, 12, 15, 0.9);
    color: var(--text);
    font-size: 1.05rem;
    transition: color var(--dur-1) var(--ease-standard), border-color var(--dur-1) var(--ease-standard);
}

.profile-social-row a > i {
    position: relative;
    z-index: 1;
    font-size: 1.05rem !important;
}

.profile-social-row a:hover,
.profile-social-row a:focus-visible {
    color: var(--red-bright);
    border-color: var(--red-bright);
}

/* --- 左カラム(テキスト+FOLLOW)をひとつにまとめる ---
   .profile-intro-body 直下に kicker/見出し/コピー/FOLLOW がフラットに並んでいた
   構成を .profile-intro-left にまとめ、CHANNELS(右カラム)とは独立した自然高さの
   ブロックにする。CHANNELS は2チャンネル分の紹介文+ボタンで情報量が多く、
   FOLLOW はアイコン2個だけで情報量が少ない — 高さを強制的に揃えようとすると
   FOLLOW 側のボタンを異常に拡大するか、大きな空白を残すかの両方とも不自然に
   なる（実測・指摘により確認）。上辺のみ揃え、下辺の差は許容する。 */
.profile-intro-left {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.profile-intro-left .profile-social-links {
    align-self: stretch !important;
    margin-top: clamp(20px, 2.6vw, 28px);
}

@media (min-width: 1025px) {
    .profile-intro-body {
        grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.06fr) !important;
        align-items: start !important;
        column-gap: clamp(40px, 4.5vw, 84px) !important;
        row-gap: 0 !important;
    }

    .profile-channels {
        grid-column: 2 !important;
        grid-row: auto !important;
    }
}

/* --- モバイル：横長カード（テキスト左・ロゴ右）のままタイポ/寸法を縮小 --- */
@media (max-width: 760px) {
    .profile-channel {
        min-height: clamp(142px, 40vw, 178px);
        padding: 18px !important;
        padding-right: clamp(96px, 36%, 124px) !important;
    }

    .profile-channel::before {
        right: -26px;
        width: clamp(132px, 40vw, 172px);
    }

    .profile-channel h4 {
        font-size: 1.18rem !important;
    }

    .profile-channel p:not(.card-kicker) {
        font-size: 0.82rem;
    }

    .profile-channel-links {
        gap: 10px !important;
    }
}


/* =========================================================================
   DISCOGRAPHY ELEVATION PASS 2026-07-01
   黒×バーミリオンのエディトリアル・インデックスへ格上げ。
   骨格（2枚組・画像|テキスト）は据え置き、通し番号／基準線／スリーブ額装／
   赤ティックのキッカー／ホバーの手触りで「作品を並べた見開き」の質感を出す。
   ========================================================================= */

/* --- ボード：粗い赤罫をやめ、象牙のヘアライン＋上辺のバーミリオン基準線に --- */
.discography-board.discography-pair {
    position: relative;
    gap: 1px;
    border: 1px solid rgba(248, 244, 234, 0.14) !important;
    background: rgba(248, 244, 234, 0.14) !important; /* セル間ヘアラインの色 */
    box-shadow:
        0 32px 92px rgba(0, 0, 0, 0.40),
        0 0 0 1px rgba(248, 244, 234, 0.05) !important;
}

/* 上辺の基準線（identity の赤を要所に一本だけ） */
.discography-board.discography-pair::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--red-live, #d62a20), var(--red-bright, #e8392c) 40%, transparent 88%);
    opacity: 0.92;
    pointer-events: none;
    z-index: 4;
}

/* --- テキスト側：番号・キッカー・見出し・リンクの階層を精緻化 ---
   base 側の align-content: end だと長身カードでコンテンツが下端に張り付き、
   上部だけ大きく余って見えるため start に上書き。
   center も試したが、段落の折り返し行数がビューポート幅で変わるため
   （2カラム化する1121px付近など）中央寄せの余白が縮み、通し番号と実際に
   重なる幅が存在すると実測で判明。start ＋ 番号専用の予約帯（padding-top）
   にすれば、カードは min-height（下限のみ）で伸縮できるため内容がどれだけ
   増減しても通し番号と重ならないことが構造的に保証できる。 */
.discography-card > div {
    position: relative;
    align-content: start !important;
    gap: 15px !important;
    padding: clamp(24px, 2.6vw, 34px) !important;
    /* 上下限を rem 化（6rem=96px, 8rem=128px は既定16pxルート時に旧値と一致）。
       番号側の font-size clamp も rem 上下限を持つため、ブラウザの文字拡大
       （アクセシビリティ）でルートfont-sizeが変わっても両者が連動して伸縮し、
       予約帯が番号より先に頭打ちにならないようにする。 */
    padding-top: clamp(6rem, 9vw, 8rem) !important;
}

/* 大きなゴーストの通し番号（索引記号）— --font-display（Archivo、読み込み済み）を使用 */
.discography-card > div::before {
    position: absolute;
    top: clamp(15px, 1.8vw, 22px);
    right: clamp(18px, 2vw, 26px);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.5rem, 4.4vw, 3.9rem);
    line-height: 1;
    letter-spacing: 0.01em;
    color: rgba(248, 244, 234, 0.1);
    pointer-events: none;
    z-index: 2;
    transition: color var(--dur-2, 0.5s) var(--ease-standard, ease);
}
.discography-card.discography-release-primary > div::before { content: "01"; }
.discography-card.discography-event-card > div::before { content: "02"; }

/* text-stroke 対応ブラウザのみアウトライン化（非対応時は上の薄いフィルのまま表示） */
@supports (-webkit-text-stroke: 1px black) or (text-stroke: 1px black) {
    .discography-card > div::before {
        color: transparent;
        -webkit-text-stroke: 1px rgba(248, 244, 234, 0.22);
        transition: -webkit-text-stroke-color var(--dur-2, 0.5s) var(--ease-standard, ease);
    }
}

/* キッカー：先頭にバーミリオンのティック、全大文字ラベル（既存 .card-kicker 慣習に合わせ --font-display を使用） */
.discography-card .card-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: rgba(248, 244, 234, 0.74);
}
.discography-card .card-kicker::before {
    content: "";
    flex: none;
    width: 22px;
    height: 2px;
    background: var(--red-live, #d62a20);
}

/* 見出し：ホバーでバーミリオンのアンダーラインが左から伸びる（下線の土台） */
.discography-card h3 {
    position: relative;
    justify-self: start;
    width: fit-content;
    max-width: 100%;
    padding-bottom: 5px;
}
.discography-card h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--red-live, #d62a20);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform var(--dur-2, 0.5s) var(--ease-emphasis, cubic-bezier(0.2, 0.7, 0.2, 1));
}

/* リンク：矢印の土台（動きはホバー対応デバイス限定ブロックで付与） */
.discography-card .text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.discography-card .text-link i {
    transition: transform var(--dur-1, 0.3s) var(--ease-emphasis, cubic-bezier(0.2, 0.7, 0.2, 1));
}

/* --- 画像：スリーブ額装（極細枠＋影）の土台。ズーム/微発色はホバー対応デバイス限定 --- */
.discography-card figure,
.discography-card.discography-release-primary figure,
.discography-card.discography-event-card figure {
    border: 1px solid rgba(248, 244, 234, 0.10);
    box-shadow:
        0 20px 46px rgba(0, 0, 0, 0.52),
        inset 0 0 0 1px rgba(0, 0, 0, 0.42);
    transition: box-shadow var(--dur-2, 0.5s) var(--ease-standard, ease);
}
.discography-card figure img,
.discography-card.discography-release-primary figure img,
.discography-card.discography-event-card figure img {
    /* transform はここで扱わない：この img は既存の depth/parallax パスが
       毎フレーム JS で --parallax-media-y を更新して動かしており、
       transform に transition を付けると常時その動きに遅延（もたつき）が
       乗ってしまう。ホバーの発色（filter）だけを滑らかにする。
       !important が要る理由：このimgは.album-cardクラスも持つため、
       別パス（6890行付近）の「.album-card img { transition: transform var(--dur-3)...,
       filter var(--dur-3)... !important }」が先勝ちし、transform入りの
       transitionが残ってパララックスがもたつく。specificityは
       (0,1,2)>(0,1,1)で上回るため、こちらも!importantにすれば確実に勝てる。 */
    transition: filter var(--dur-2, 0.5s) var(--ease-standard, ease) !important;
}

/* --- ホバー演出は「本物のホバーができる」入力装置に限定。
   タッチ端末は:hoverがタップ後に貼り付く挙動があるため、装飾ホバーはここに集約して無効化する --- */
@media (hover: hover) and (pointer: fine) {
    .discography-card:hover > div::before {
        color: rgba(230, 57, 44, 0.3);
    }

    @supports (-webkit-text-stroke: 1px black) or (text-stroke: 1px black) {
        .discography-card:hover > div::before {
            -webkit-text-stroke-color: rgba(230, 57, 44, 0.62);
        }
    }

    .discography-card:hover h3::after {
        transform: scaleX(1);
    }

    .discography-card:hover .text-link i,
    .discography-card .text-link:hover i {
        transform: translate(3px, -3px);
    }

    .discography-card:hover figure {
        box-shadow:
            0 26px 58px rgba(0, 0, 0, 0.58),
            inset 0 0 0 1px rgba(230, 57, 44, 0.18);
    }

    /* 画像の transform は書かない：既存の depth/parallax パスが
       main > .section-panel:not(.hero) .depth-media にscale込みのtransformを
       specificity(0,3,1)で常時当てており、ここのtransform(0,2,2)は
       確実に負けて死んだコードになる（実測で確認）。発色のみ変える。 */
    .discography-card:hover figure img {
        filter: brightness(1.03) saturate(1.03) contrast(1.05);
    }

    .discography-card.discography-release-primary:hover figure img {
        filter: brightness(1.03) saturate(1.03);
    }
}

/* --- モバイル：縦積みでもキッカーと重ならないよう番号専用の上部バンドを確保
   （実測で番号下端とキッカー上端の間隔が~1pxまで詰まっていたため余裕を拡大）。
   padding-top は rem 指定にし、番号の font-size clamp（rem上下限）と歩調を
   合わせる（文字サイズ拡大アクセシビリティ設定でも予約帯が先に頭打ちしない）。 --- */
@media (max-width: 760px) {
    .discography-card > div {
        padding: 22px 18px !important;
        padding-top: 3.75rem !important; /* 上部＝番号のバンド（既定16pxルートで60px相当） */
    }
    .discography-card > div::before {
        font-size: clamp(1.8rem, 8vw, 2.2rem);
        top: 14px;
        right: 16px;
    }
}

/* --- モーション抑制環境：動きを止め、状態変化のみ残す --- */
@media (prefers-reduced-motion: reduce) {
    .discography-card figure,
    .discography-card figure img,
    .discography-card h3::after,
    .discography-card .text-link i,
    .discography-card > div::before {
        transition: none;
    }
}

/* =========================================================================
   SCROLL AXIS 2026-07-01 — central vermilion background line
   ========================================================================= */
:root {
    --scroll-axis-x: 50vw;
    --scroll-axis-origin-y: calc(var(--header-h) + 28px);
    --scroll-axis-end-y: 33.333svh;
    --scroll-axis-opacity: 0.94;
    --scroll-axis-core-width: clamp(42px, 8vw, 110px);
    --scroll-axis-underlay-width: clamp(72px, 10vw, 132px);
    --scroll-axis-soften-inner: clamp(26px, 4.5vw, 58px);
    --scroll-axis-soften-outer: clamp(48px, 8vw, 96px);
}

.has-scroll-axis .scroll-axis {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.has-scroll-axis main,
.has-scroll-axis .site-footer {
    position: relative;
    z-index: 1;
}

.has-scroll-axis .site-header::after {
    content: none;
    display: none;
}

.has-scroll-axis main > .section-panel:not(.hero) {
    background:
        radial-gradient(118% 88% at 14% 12%, rgba(255, 255, 255, 0.095), transparent 45%),
        radial-gradient(105% 84% at 86% 18%, rgba(255, 255, 255, 0.055), transparent 50%),
        radial-gradient(110% 86% at 52% 82%, rgba(255, 255, 255, 0.048), transparent 52%),
        linear-gradient(110deg, rgba(255, 255, 255, 0.028), transparent 25%, rgba(255, 255, 255, 0.026) 58%, transparent 80%),
        linear-gradient(
            90deg,
            rgba(5, 5, 6, 0.26) 0,
            rgba(5, 5, 6, 0.26) calc(var(--scroll-axis-x) - var(--scroll-axis-soften-outer)),
            rgba(5, 5, 6, 0) calc(var(--scroll-axis-x) - var(--scroll-axis-soften-inner)),
            rgba(5, 5, 6, 0) calc(var(--scroll-axis-x) + var(--scroll-axis-soften-inner)),
            rgba(5, 5, 6, 0.26) calc(var(--scroll-axis-x) + var(--scroll-axis-soften-outer)),
            rgba(5, 5, 6, 0.26) 100%
        ),
        linear-gradient(180deg, rgba(5, 5, 6, 0.72), rgba(9, 9, 11, 0.7));
}

.has-scroll-axis main > .section-panel:not(.hero)::before {
    -webkit-mask-image: linear-gradient(
        90deg,
        #000 0,
        #000 calc(var(--scroll-axis-x) - var(--scroll-axis-soften-outer)),
        rgba(0, 0, 0, 0.62) calc(var(--scroll-axis-x) - var(--scroll-axis-soften-inner)),
        rgba(0, 0, 0, 0.62) calc(var(--scroll-axis-x) + var(--scroll-axis-soften-inner)),
        #000 calc(var(--scroll-axis-x) + var(--scroll-axis-soften-outer)),
        #000 100%
    );
    mask-image: linear-gradient(
        90deg,
        #000 0,
        #000 calc(var(--scroll-axis-x) - var(--scroll-axis-soften-outer)),
        rgba(0, 0, 0, 0.62) calc(var(--scroll-axis-x) - var(--scroll-axis-soften-inner)),
        rgba(0, 0, 0, 0.62) calc(var(--scroll-axis-x) + var(--scroll-axis-soften-inner)),
        #000 calc(var(--scroll-axis-x) + var(--scroll-axis-soften-outer)),
        #000 100%
    );
}

.has-scroll-axis .scroll-axis::before,
.has-scroll-axis .scroll-axis::after {
    content: "";
    position: absolute;
    left: var(--scroll-axis-x);
    top: var(--scroll-axis-origin-y);
    height: max(2px, calc(var(--scroll-axis-end-y) - var(--scroll-axis-origin-y)));
    transform: translate3d(-50%, 0, 0);
    transform-origin: top center;
    pointer-events: none;
    will-change: transform, opacity;
}

.has-scroll-axis .scroll-axis::before {
    width: var(--scroll-axis-underlay-width);
    background: linear-gradient(
        180deg,
        rgba(72, 0, 0, 0.56),
        rgba(72, 0, 0, 0.42) 72%,
        rgba(72, 0, 0, 0)
    );
    opacity: 0.74;
    box-shadow: none;
}

.has-scroll-axis .scroll-axis::after {
    display: block;
    width: var(--scroll-axis-core-width);
    background: linear-gradient(
        180deg,
        rgba(190, 8, 8, 0.98),
        rgba(167, 7, 7, 0.9) 72%,
        rgba(167, 7, 7, 0)
    );
    opacity: var(--scroll-axis-opacity);
    box-shadow: none;
}

@media (max-width: 760px) {
    :root {
        --scroll-axis-core-width: clamp(30px, calc(17vw - 24px), 42px);
        --scroll-axis-underlay-width: clamp(40px, calc(20vw - 24px), 54px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .has-scroll-axis .scroll-axis::before,
    .has-scroll-axis .scroll-axis::after {
        transition: none;
        will-change: auto;
    }

    .has-scroll-axis .scroll-axis::after {
        display: block;
    }
}

/* Featured news artwork: quiet event visual behind the text. */
.news-feature::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    width: auto;
    pointer-events: none;
    opacity: 0.33 !important;
    background:
        linear-gradient(180deg, rgba(8, 0, 0, 0.08), rgba(10, 0, 0, 0.42)),
        linear-gradient(135deg, rgba(112, 0, 0, 0.84), rgba(154, 10, 8, 0.42) 46%, rgba(24, 0, 0, 0.86)),
        url("../images/news/featured-heisei-popup.webp?v=20260701") 54% 34% / 150% auto no-repeat !important;
    background-blend-mode: multiply, color, normal;
    filter: saturate(1.12) contrast(1.08) brightness(0.82);
}

@media (max-width: 760px) {
    .news-feature::before {
        opacity: 0.28 !important;
        background:
            linear-gradient(180deg, rgba(8, 0, 0, 0.12), rgba(10, 0, 0, 0.46)),
            linear-gradient(135deg, rgba(112, 0, 0, 0.82), rgba(154, 10, 8, 0.38) 48%, rgba(24, 0, 0, 0.88)),
            url("../images/news/featured-heisei-popup.webp?v=20260701") 54% 22% / 185% auto no-repeat !important;
    }
}

/* Mobile hero/profile action tuning. */
@media (max-width: 760px) {
    .news-feature {
        padding-top: 26px;
    }

    .news-feature .card-kicker {
        justify-self: start;
        display: inline-flex;
        align-items: center;
        width: fit-content;
        max-width: 100%;
        min-height: 1.35em;
        padding-block: 0.12em;
        line-height: 1.18;
        overflow: visible;
        white-space: nowrap;
    }

    .news-feature strong,
    .news-feature p {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        white-space: normal;
        word-break: normal;
        overflow-wrap: break-word;
    }

    .news-feature strong {
        text-wrap: balance;
        word-break: keep-all;
        overflow-wrap: break-word;
    }

    .news-feature p {
        text-wrap: pretty;
    }

    .hero-brand {
        bottom: max(16px, env(safe-area-inset-bottom));
        justify-items: center;
    }

    .hero-actions {
        justify-self: start;
        display: inline-flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 7px;
        width: auto;
        max-width: min(100%, 17rem);
        margin-top: 2px;
    }

    .hero-actions[data-reveal] {
        opacity: 1 !important;
        transform: none !important;
    }

    .section-heading .text-link {
        justify-self: start;
        align-self: start;
        width: fit-content;
        min-height: 36px;
        gap: 7px;
        font-size: 0.82rem;
        line-height: 1;
    }

    .hero-actions .button {
        flex: 0 0 auto;
        width: auto;
        min-width: 0;
        min-height: 38px;
        gap: 7px;
        padding: 8px 10px;
        font-size: 0.74rem;
        line-height: 1;
    }

    .hero-actions .button i {
        font-size: 0.84em;
    }

    .profile-stage-trigger {
        padding: 8px;
    }

    .profile-stage-trigger-label {
        gap: 6px;
        min-height: 34px;
        padding: 7px 9px;
        font-size: 0.72rem;
        letter-spacing: 0.06em;
    }

    .profile-stage-trigger-label i {
        font-size: 0.9em;
    }

    .goods-note .button,
    .fanclub-copy .button,
    .contact-panel .button,
    .news-detail-footer .button {
        width: fit-content;
        max-width: 100%;
        min-height: 40px;
        gap: 9px;
        padding: 9px 13px;
        font-size: 0.88rem;
        line-height: 1;
        white-space: nowrap;
    }

    .contact-panel .button span {
        white-space: nowrap;
    }

    .news-detail-modal {
        padding: 12px;
    }

    .news-detail-panel {
        max-height: calc(100svh - 24px);
    }

    .news-detail-footer {
        justify-content: flex-start;
        padding-block: 0 22px;
    }

    .character-stage-panel {
        grid-template-rows: minmax(320px, 60svh) auto;
    }

    .character-stage-visual img {
        bottom: 0;
        height: min(96%, 560px);
        max-height: calc(100% - 8px);
        transform: translate3d(-50%, 0, 0);
    }
}

@media (max-width: 420px) {
    .hero-actions {
        flex-direction: row;
        gap: 6px;
        max-width: min(100%, 16rem);
    }

    .hero-actions .button {
        min-height: 36px;
        padding: 7px 9px;
        font-size: 0.7rem;
    }

    .goods-note .button,
    .fanclub-copy .button,
    .contact-panel .button,
    .news-detail-footer .button {
        min-height: 38px;
        padding: 8px 11px;
        font-size: 0.8rem;
    }

    .profile-stage-trigger-label {
        min-height: 32px;
        padding: 6px 8px;
        font-size: 0.68rem;
    }
}

@media (max-height: 480px) and (orientation: landscape) {
    .news-detail-modal {
        padding: 12px;
    }

    .news-detail-panel {
        max-height: calc(100svh - 24px);
    }

    .news-detail-footer {
        position: sticky;
        bottom: 0;
        justify-content: flex-start;
        padding-block: 10px 12px;
        background:
            linear-gradient(180deg, rgba(8, 8, 10, 0.1), rgba(8, 8, 10, 0.98) 28%),
            rgba(8, 8, 10, 0.98);
    }

    .news-detail-footer .button {
        width: fit-content;
        min-height: 38px;
        padding: 8px 11px;
        font-size: 0.8rem;
        line-height: 1;
    }

    .character-stage-modal {
        padding: 12px;
    }

    .character-stage-panel {
        max-height: calc(100svh - 24px);
    }

    .character-stage-visual img {
        bottom: 0;
        height: auto;
        max-height: min(94%, 340px);
        max-width: var(--stage-image-max-w);
        transform: translate3d(-50%, 0, 0);
    }
}

/* =========================================================================
   PROFILE INTRO: 「カードの中にカード」を解消
   .profile-intro（外枠）が罫線+box-shadow+背景で独立したカードに見えており、
   その中の .profile-channels / .profile-social-links（ヘアラインボックス）
   と二重に箱が重なって見えていた。外枠は罫線とシャドウを外してフラットな
   コンテナに徹させ、実質的な「カード」は内側の CHANNELS / FOLLOW ボックス
   （罫線を持つ唯一の階層）に一本化する。背景の質感（テクスチャ）自体は
   セクションの領域を示す役割として残す。
   ========================================================================= */
.profile-intro {
    border: 0 !important;
    box-shadow: none !important;
}
/* San increment easter egg. */
.san-shift-token {
    position: relative;
    display: inline-block;
    min-width: 0.56em;
    white-space: nowrap;
    text-wrap: nowrap;
    font-variant-numeric: tabular-nums;
    transform-origin: 50% 72%;
}

.scatter-text__glyph.san-shift-token,
.scatter-text__char.san-shift-token {
    min-width: 0;
}

.san-shift-token.is-san-shifting {
    animation: sanShiftRise 460ms cubic-bezier(0.18, 0.9, 0.2, 1) both;
}

.san-shift-token.is-san-milestone {
    color: #fff7e8;
    text-shadow:
        0 0 1px rgba(255, 255, 255, 0.92),
        0 0 18px rgba(232, 57, 44, 0.42);
}

.san-shift-token.is-san-milestone::after {
    content: "";
    position: absolute;
    inset-inline: -0.08em;
    inset-block-end: -0.08em;
    height: 0.08em;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(232, 57, 44, 0.92), rgba(255, 247, 232, 0.94), transparent);
    transform: scaleX(0);
    transform-origin: left center;
    animation: sanMilestoneRule 860ms cubic-bezier(0.19, 1, 0.22, 1) both;
    pointer-events: none;
}

.san-milestone-sweep {
    position: fixed;
    inset: 0;
    z-index: 1000;
    overflow: hidden;
    pointer-events: none;
    mix-blend-mode: screen;
}

.san-milestone-sweep__line {
    position: absolute;
    top: var(--san-sweep-top, 50%);
    left: 0;
    width: 100vw;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(232, 57, 44, 0.08) 17%, rgba(255, 247, 232, 0.9) 50%, rgba(232, 57, 44, 0.08) 83%, transparent 100%);
    opacity: 0;
    transform: translateX(-105vw) skewX(-10deg);
    animation: sanMilestoneSweep 940ms cubic-bezier(0.2, 0.86, 0.18, 1) var(--san-sweep-delay, 0ms) both;
}

@keyframes sanShiftRise {
    0% {
        opacity: 0.28;
        filter: blur(2px);
        transform: translateY(0.48em) scaleY(0.92);
    }

    58% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(-0.12em) scaleY(1.04);
    }

    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0) scaleY(1);
    }
}

@keyframes sanMilestoneRule {
    0% {
        opacity: 0;
        transform: scaleX(0);
    }

    34% {
        opacity: 1;
        transform: scaleX(1);
    }

    100% {
        opacity: 0;
        transform: translateX(0.32em) scaleX(0.04);
        transform-origin: right center;
    }
}

@keyframes sanMilestoneSweep {
    0% {
        opacity: 0;
        transform: translateX(-105vw) skewX(-10deg);
    }

    22% {
        opacity: 0.72;
    }

    100% {
        opacity: 0;
        transform: translateX(105vw) skewX(-10deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .san-shift-token.is-san-shifting,
    .san-shift-token.is-san-milestone::after,
    .san-milestone-sweep__line {
        animation: none;
    }

    .san-milestone-sweep {
        display: none;
    }
}
