:root {
    --paper: #f8f6f2;
    --paper-warm: #f7f4f0;
    --mist: #d8d2df;
    --ink: #4b4652;
    --ink-soft: #5f5968;
    --muted: #8c8794;
    --line: rgba(105, 98, 118, 0.22);
}

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
    margin: 0;
}

body {
    color: var(--ink);
    font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
    background: var(--paper);
}

body.is-listening {
    overflow: hidden;
}

body.is-link-help-open {
    overflow: hidden;
}

button,
input,
textarea {
    font: inherit;
}

.landing-page {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        linear-gradient(rgba(248, 246, 242, 0.18), rgba(248, 246, 242, 0.18)),
        url("/img/sonare-background.png") center / cover no-repeat;
    isolation: isolate;
}

.landing-page::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(255, 255, 255, 0.12);
    pointer-events: none;
}

.landing-page::after {
    content: none;
}

.is-listening .landing-page {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.72s ease, visibility 0.72s ease;
}

.hero {
    position: relative;
    z-index: 2;
    text-align: center;
    width: min(860px, 90vw);
    margin: 0 auto;
    transform: translateY(-3vh);
}

.brand-title {
    margin: 0;
    padding-left: 0.26em;
    color: rgba(69, 64, 82, 0.86);
    font-family: Georgia, "Times New Roman", "Songti SC", serif;
    font-size: clamp(76px, 10vw, 150px);
    font-weight: 400;
    letter-spacing: 0.26em;
    line-height: 1;
    text-indent: 0.01em;
}

.brand-subtitle {
    margin: 30px auto 0;
    color: rgba(69, 64, 82, 0.58);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.12em;
    line-height: 1.9;
}

.playlist-form {
    margin: 64px auto 0;
    width: min(720px, 82vw);
    height: 68px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.36);
    border: 1px solid rgba(90, 84, 105, 0.16);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 18px 60px rgba(70, 64, 85, 0.06);
    transition: border-color 0.25s ease, background 0.25s ease;
}

.playlist-form:focus-within {
    border-color: rgba(90, 84, 105, 0.28);
    background: rgba(255, 255, 255, 0.42);
}

.playlist-input {
    flex: 1;
    min-width: 0;
    height: 100%;
    border: none;
    outline: none;
    background: transparent;
    padding: 0 36px;
    color: rgba(69, 64, 82, 0.74);
    font-size: 17px;
    letter-spacing: 0.06em;
}

.playlist-input::placeholder {
    color: rgba(69, 64, 82, 0.34);
}

.submit-button {
    width: 60px;
    height: 60px;
    margin-right: 4px;
    border-radius: 50%;
    border: 1px solid rgba(90, 84, 105, 0.12);
    background: rgba(255, 255, 255, 0.42);
    color: rgba(69, 64, 82, 0.78);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.submit-button:hover {
    transform: translateX(2px);
    background: rgba(255, 255, 255, 0.58);
    color: rgba(69, 64, 82, 0.88);
}

.submit-button:focus-visible,
.playlist-input:focus-visible {
    outline: none;
}

.input-helper-row {
    width: min(720px, 82vw);
    margin: 20px auto 0;
    padding: 0 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.get-link-help,
.manual-entry-link {
    color: rgba(78, 72, 96, 0.38);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1.8;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.25s ease;
}

.get-link-help:hover,
.manual-entry-link:hover {
    color: rgba(78, 72, 96, 0.65);
    text-decoration: underline;
}

.manual-modal {
    position: fixed;
    inset: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.32s ease, visibility 0.32s ease;
}

.manual-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.manual-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(248, 246, 242, 0.56);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.manual-modal__panel {
    position: relative;
    width: min(560px, 90vw);
    min-height: 360px;
    padding: 42px 42px 36px;
    border: 1px solid rgba(90, 84, 105, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 28px 90px rgba(70, 64, 85, 0.14);
    text-align: center;
    transform: translateY(14px);
    transition: transform 0.32s ease;
}

.manual-modal.is-open .manual-modal__panel {
    transform: translateY(0);
}

.manual-modal__close {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 30px;
    height: 30px;
    border: 0;
    background: transparent;
    color: rgba(69, 64, 82, 0.42);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: color 0.22s ease;
}

.manual-modal__close:hover {
    color: rgba(69, 64, 82, 0.7);
}

.manual-modal__label {
    margin: 0;
    color: rgba(69, 64, 82, 0.38);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.manual-modal__panel h2 {
    margin: 18px 0 26px;
    color: rgba(69, 64, 82, 0.78);
    font-family: Georgia, "Times New Roman", "Songti SC", serif;
    font-size: 30px;
    font-weight: 400;
    letter-spacing: 0.14em;
}

.manual-modal__textarea {
    width: 100%;
    height: 152px;
    resize: none;
    border: 1px solid rgba(90, 84, 105, 0.14);
    border-radius: 14px;
    outline: none;
    background: rgba(255, 255, 255, 0.68);
    color: rgba(69, 64, 82, 0.76);
    padding: 20px 22px;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.06em;
    line-height: 1.85;
    transition: border-color 0.22s ease, background 0.22s ease;
}

.manual-modal__textarea::placeholder {
    color: rgba(69, 64, 82, 0.28);
}

.manual-modal__textarea:focus {
    border-color: rgba(90, 84, 105, 0.28);
    background: rgba(255, 255, 255, 0.82);
}

.manual-modal__textarea.has-error {
    border-color: rgba(126, 78, 72, 0.34);
    background: rgba(255, 250, 247, 0.82);
}

.manual-modal__error {
    min-height: 20px;
    margin: 10px 0 -4px;
    color: rgba(126, 78, 72, 0.74);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.08em;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.manual-modal__error.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.manual-modal__submit {
    width: 52px;
    height: 52px;
    margin: 24px auto 0;
    border: 1px solid rgba(90, 84, 105, 0.12);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.42);
    color: rgba(69, 64, 82, 0.76);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.manual-modal__submit:hover {
    transform: translateX(2px);
    background: rgba(255, 255, 255, 0.58);
    color: rgba(69, 64, 82, 0.88);
}

.link-help-modal {
    position: fixed;
    inset: 0;
    z-index: 32;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.32s ease, visibility 0.32s ease;
}

.link-help-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.link-help-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(248, 246, 242, 0.56);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.link-help-dialog {
    position: relative;
    width: min(860px, 90vw);
    max-height: 84vh;
    overflow-y: auto;
    padding: 42px 46px 34px;
    border: 1px solid rgba(90, 84, 105, 0.16);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 30px 96px rgba(70, 64, 85, 0.14);
    text-align: center;
    transform: translateY(14px);
    transition: transform 0.32s ease;
    scrollbar-width: thin;
    scrollbar-color: rgba(90, 84, 105, 0.24) transparent;
}

.link-help-modal.is-open .link-help-dialog {
    transform: translateY(0);
}

.link-help-close {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 30px;
    height: 30px;
    border: 0;
    background: transparent;
    color: rgba(69, 64, 82, 0.42);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: color 0.22s ease;
}

.link-help-close:hover {
    color: rgba(69, 64, 82, 0.7);
}

.link-help-kicker {
    margin: 0;
    color: rgba(69, 64, 82, 0.38);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.link-help-dialog h2 {
    margin: 18px 0 24px;
    color: rgba(69, 64, 82, 0.78);
    font-family: Georgia, "Times New Roman", "Songti SC", serif;
    font-size: 31px;
    font-weight: 400;
    letter-spacing: 0.14em;
}

.tutorial-tabs {
    width: fit-content;
    margin: 0 auto 20px;
    display: flex;
    gap: 6px;
    border-bottom: 1px solid rgba(90, 84, 105, 0.12);
}

.tutorial-tab {
    border: 0;
    background: transparent;
    padding: 10px 18px 11px;
    color: rgba(78, 72, 96, 0.42);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: color 0.22s ease;
}

.tutorial-tab:hover,
.tutorial-tab.is-active {
    color: rgba(78, 72, 96, 0.74);
}

.tutorial-tab.is-active {
    box-shadow: inset 0 -1px 0 rgba(78, 72, 96, 0.42);
}

.tutorial-panel {
    text-align: left;
}

.tutorial-netease-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 28px;
    align-items: center;
}

.tutorial-step-list {
    display: grid;
    gap: 2px;
}

.tutorial-text-step,
.tutorial-step-card {
    border-bottom: 1px solid rgba(90, 84, 105, 0.08);
}

.tutorial-text-step {
    padding: 14px 0;
}

.tutorial-text-step:last-child,
.tutorial-step-card:last-child {
    border-bottom: 0;
}

.tutorial-step-card {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 24px;
    align-items: center;
    padding: 22px 0;
}

.tutorial-step-card--tight {
    margin-top: -12px;
    padding-top: 10px;
}

.tutorial-step-card--text-only {
    grid-template-columns: 1fr;
    padding-bottom: 8px;
}

.tutorial-step-number {
    color: rgba(78, 72, 96, 0.36);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.18em;
    line-height: 1;
}

.tutorial-step-copy h3,
.tutorial-text-step h3 {
    margin: 10px 0 8px;
    color: rgba(67, 60, 86, 0.78);
    font-family: "Source Han Serif SC", "Songti SC", Georgia, serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.06em;
}

.tutorial-step-copy p,
.tutorial-text-step p {
    margin: 0;
    color: rgba(67, 60, 86, 0.52);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.04em;
    line-height: 1.9;
}

.tutorial-step-image {
    margin: 0;
    justify-self: end;
    width: fit-content;
    padding: 8px;
    border: 1px solid rgba(90, 84, 105, 0.12);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 0 16px 48px rgba(70, 64, 85, 0.08);
}

.tutorial-step-image img {
    width: 100%;
    max-width: 220px;
    max-height: 260px;
    border-radius: 18px;
    object-fit: cover;
    display: block;
}

.tutorial-step-image--tall img {
    max-width: 220px;
    max-height: 420px;
}

.link-help-confirm {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 104px;
    height: 42px;
    margin: 26px auto 0;
    padding: 0 22px;
    border: 1px solid rgba(90, 84, 105, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    color: rgba(69, 64, 82, 0.62);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background 0.24s ease, color 0.24s ease;
}

.link-help-confirm:hover {
    background: rgba(255, 255, 255, 0.62);
    color: rgba(69, 64, 82, 0.82);
}

.error-message {
    margin: 18px auto 0;
    color: rgba(126, 78, 72, 0.74);
    font-size: 12px;
    letter-spacing: 0.08em;
    line-height: 1.7;
}

.hidden-field {
    display: none;
}

.listening-page {
    position: fixed;
    inset: 0;
    z-index: 10;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        linear-gradient(rgba(248, 246, 242, 0.2), rgba(248, 246, 242, 0.2)),
        url("/img/sonare-background.png") center / cover no-repeat;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.82s ease, visibility 0.82s ease;
}

.listening-page::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(255, 255, 255, 0.18);
    pointer-events: none;
}

.listening-page::after {
    content: "";
    position: absolute;
    inset: -18% -12%;
    z-index: 1;
    background:
        radial-gradient(ellipse at 32% 55%, rgba(216, 210, 223, 0.2) 0, rgba(216, 210, 223, 0.08) 26%, transparent 54%),
        linear-gradient(112deg, transparent 18%, rgba(95, 89, 104, 0.045) 38%, transparent 58%),
        linear-gradient(72deg, transparent 34%, rgba(255, 255, 255, 0.18) 49%, transparent 64%);
    filter: blur(6px);
    opacity: 0.55;
    transform: translate3d(-2%, 1%, 0) rotate(-2deg);
    animation: listening-drift 14s ease-in-out infinite alternate;
    pointer-events: none;
}

.is-listening .listening-page {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.listening-page.is-leaving {
    opacity: 0;
    transition-duration: 0.82s;
}

.listening-hero {
    position: relative;
    z-index: 2;
    width: min(860px, 90vw);
    margin: 0 auto;
    text-align: center;
    transform: translateY(-3vh);
}

.listening-line {
    width: min(460px, 48vw);
    height: 1px;
    margin: 34px auto 0;
    background: linear-gradient(90deg, transparent, rgba(69, 64, 82, 0.28), transparent);
}

.listening-text {
    min-height: 32px;
    margin: 34px auto 0;
    color: rgba(69, 64, 82, 0.58);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.12em;
    line-height: 2;
    opacity: 1;
    transition: opacity 0.52s ease;
}

.listening-text.is-fading {
    opacity: 0;
}

.listening-dots {
    display: flex;
    justify-content: center;
    gap: 13px;
    margin-top: 72px;
}

.listening-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: 1px solid rgba(69, 64, 82, 0.34);
    background: transparent;
    opacity: 0.56;
    transform: scale(0.92);
    transition: background 0.58s ease, border-color 0.58s ease, opacity 0.58s ease, transform 0.58s ease;
}

.listening-dots span.active {
    border-color: rgba(69, 64, 82, 0.5);
    background: rgba(69, 64, 82, 0.5);
    opacity: 0.76;
    transform: scale(1);
    animation: listening-breath 2.6s ease-in-out infinite;
}

@keyframes listening-drift {
    0% {
        transform: translate3d(-2%, 1%, 0) rotate(-2deg) scale(1);
    }

    100% {
        transform: translate3d(2%, -1%, 0) rotate(2deg) scale(1.03);
    }
}

@keyframes listening-breath {
    0%,
    100% {
        opacity: 0.52;
        transform: scale(0.92);
    }

    50% {
        opacity: 0.82;
        transform: scale(1.08);
    }
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px max(24px, calc((100vw - 980px) / 2));
    background: #fffdfa;
    border-bottom: 1px solid rgba(105, 98, 118, 0.14);
}

.brand,
.nav-note {
    color: var(--ink-soft);
    text-decoration: none;
}

.brand {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    letter-spacing: 0.18em;
}

.nav-note {
    color: rgba(75, 70, 82, 0.54);
    font-size: 14px;
}

.page {
    width: min(980px, calc(100% - 32px));
    margin: 0 auto;
    padding: 34px 0 64px;
    animation: result-fade-in 0.76s ease both;
}

body:has(.story-hero),
body:has(.identity-hero) {
    background: var(--paper);
}

body:has(.story-hero) .navbar,
body:has(.identity-hero) .navbar {
    display: none;
}

.page:has(.story-hero),
.page:has(.identity-hero) {
    width: 100%;
    padding: 0 0 72px;
}

.result-story {
    min-height: 100vh;
}

.identity-hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    background:
        linear-gradient(rgba(248, 246, 242, 0.06), rgba(248, 246, 242, 0.06)),
        url("/img/sonare-identity-bg.jpg") center / cover no-repeat;
    isolation: isolate;
}

.identity-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 52% 44%, rgba(255, 255, 255, 0.28), transparent 34%),
        rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.identity-brand {
    position: absolute;
    left: clamp(48px, 4vw, 64px);
    top: clamp(36px, 5vh, 48px);
    z-index: 4;
    color: rgba(74, 67, 90, 0.78);
    font-family: Georgia, "Times New Roman", "Songti SC", serif;
    font-size: clamp(24px, 2vw, 30px);
    font-weight: 400;
    letter-spacing: 0.35em;
    line-height: 1;
    animation: identity-mark 1s ease-out 0.2s both;
}

.identity-brand::before,
.identity-brand::after {
    content: "";
    position: absolute;
    top: 52px;
    height: 1px;
    background: rgba(74, 67, 90, 0.28);
}

.identity-brand::before {
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    transform: translateY(-2px);
}

.identity-brand::after {
    left: 26px;
    width: 54px;
}

.identity-top-meta {
    position: absolute;
    right: clamp(42px, 4.4vw, 72px);
    top: clamp(38px, 5vh, 54px);
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 22px;
    color: rgba(74, 67, 90, 0.48);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.16em;
    line-height: 1;
    white-space: nowrap;
    animation: identity-mark 1s ease-out 0.34s both;
}

.identity-top-meta i {
    width: 22px;
    height: 20px;
    background:
        linear-gradient(90deg,
            transparent 0 2px,
            rgba(74, 67, 90, 0.56) 2px 4px,
            transparent 4px 8px,
            rgba(74, 67, 90, 0.42) 8px 10px,
            transparent 10px 13px,
            rgba(74, 67, 90, 0.6) 13px 15px,
            transparent 15px 18px,
            rgba(74, 67, 90, 0.4) 18px 20px,
            transparent 20px);
}

.identity-top-meta b {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 62% 32%, rgba(255, 255, 255, 0.84), transparent 22%),
        linear-gradient(145deg, rgba(221, 213, 239, 0.92), rgba(87, 77, 129, 0.82));
    box-shadow: inset 0 -8px 14px rgba(67, 60, 86, 0.18);
}

.identity-label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(100% + clamp(36px, 3vw, 44px));
    z-index: 4;
    color: rgba(74, 67, 90, 0.42);
    font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", serif;
    font-size: 17px;
    font-weight: 300;
    letter-spacing: 0.18em;
    line-height: 1.4;
    text-align: center;
    text-indent: 0.18em;
    white-space: nowrap;
    animation: identity-mark 1s ease-out 0.72s both;
}

.identity-fragments-layer {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.identity-fragment {
    position: absolute;
    left: var(--x, 50%);
    top: var(--y, 50%);
    color: rgba(95, 86, 118, 0.12);
    font-family: "Source Han Serif SC", "Songti SC", Georgia, serif;
    font-weight: 300;
    letter-spacing: 0.08em;
    line-height: 1;
    white-space: nowrap;
    filter: blur(0.2px);
    opacity: 0;
    transform: translate(-50%, calc(-50% + 12px)) scale(0.98);
    animation: identity-fragment-gather 2.55s ease-in-out both;
    animation-delay: calc(0.08s + var(--i, 0) * 0.06s);
}

.fragment-song {
    font-size: clamp(18px, 1.6vw, 24px);
}

.fragment-artist {
    color: rgba(95, 86, 118, 0.1);
    font-size: clamp(16px, 1.45vw, 22px);
}

.fragment-style {
    color: rgba(95, 86, 118, 0.09);
    font-size: clamp(14px, 1.2vw, 18px);
}

.fragment-pos-0 { --x: 26%; --y: 25%; --gx: 18px; --gy: 10px; }
.fragment-pos-1 { --x: 44%; --y: 18%; --gx: 8px; --gy: 18px; }
.fragment-pos-2 { --x: 78%; --y: 28%; --gx: -16px; --gy: 12px; }
.fragment-pos-3 { --x: 23%; --y: 62%; --gx: 20px; --gy: -8px; }
.fragment-pos-4 { --x: 66%; --y: 72%; --gx: -8px; --gy: -16px; }
.fragment-pos-5 { --x: 36%; --y: 42%; --gx: 12px; --gy: 2px; }
.fragment-pos-6 { --x: 71%; --y: 44%; --gx: -12px; --gy: 4px; }
.fragment-pos-7 { --x: 48%; --y: 78%; --gx: 4px; --gy: -18px; }
.fragment-pos-8 { --x: 84%; --y: 62%; --gx: -20px; --gy: -8px; }
.fragment-pos-9 { --x: 18%; --y: 43%; --gx: 22px; --gy: 0; }
.fragment-pos-10 { --x: 56%; --y: 24%; --gx: 0; --gy: 14px; }
.fragment-pos-11 { --x: 82%; --y: 55%; --gx: -18px; --gy: -2px; }
.fragment-pos-12 { --x: 31%; --y: 80%; --gx: 16px; --gy: -18px; }
.fragment-pos-13 { --x: 62%; --y: 17%; --gx: -4px; --gy: 20px; }
.fragment-pos-14 { --x: 73%; --y: 81%; --gx: -12px; --gy: -22px; }

.identity-main {
    position: absolute;
    left: 50%;
    top: 42.4%;
    z-index: 3;
    width: min(1080px, 92vw);
    text-align: center;
    transform: translate(-50%, -50%);
}

.identity-title {
    margin: 0;
    color: rgba(67, 60, 86, 0.86);
    font-family: "Source Han Serif SC", "Songti SC", Georgia, "Times New Roman", serif;
    font-size: clamp(76px, 9vw, 152px);
    font-weight: 400;
    letter-spacing: 0.14em;
    line-height: 1.02;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(18px);
    animation: identity-reveal 1.1s ease-out 1.72s both;
}

.identity-divider {
    position: relative;
    width: min(320px, 38vw);
    height: 18px;
    margin: 32px auto 0;
    opacity: 0;
    animation: identity-reveal 0.9s ease-out 1.94s both;
}

.identity-divider::before,
.identity-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: calc(50% - 24px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(74, 67, 90, 0.2));
}

.identity-divider::before {
    left: 0;
}

.identity-divider::after {
    right: 0;
    transform: scaleX(-1);
}

.identity-divider span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 16px;
    transform: translate(-50%, -50%);
    background:
        linear-gradient(90deg,
            transparent 0 2px,
            rgba(112, 97, 154, 0.34) 2px 4px,
            transparent 4px 7px,
            rgba(112, 97, 154, 0.48) 7px 9px,
            transparent 9px 12px,
            rgba(112, 97, 154, 0.34) 12px 14px,
            transparent 14px);
}

.identity-description {
    width: min(680px, 76vw);
    margin: 34px auto 0;
    color: rgba(67, 60, 86, 0.64);
    font-family: "Source Han Serif SC", "Songti SC", Georgia, serif;
    font-size: clamp(22px, 1.85vw, 28px);
    font-weight: 300;
    letter-spacing: 0.14em;
    line-height: 1.9;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(12px);
    animation: identity-reveal 1s ease-out 2.16s both;
}

.identity-scroll-hint {
    position: absolute;
    left: 50%;
    bottom: 9.2vh;
    z-index: 4;
    display: grid;
    justify-items: center;
    gap: 12px;
    color: rgba(67, 60, 86, 0.34);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.1em;
    line-height: 1;
    white-space: nowrap;
    opacity: 0;
    transform: translate(-50%, 10px);
    animation: identity-hint 0.92s ease-out 2.58s both;
}

.identity-scroll-hint i {
    width: 23px;
    height: 42px;
    border: 1px solid rgba(67, 60, 86, 0.42);
    border-radius: 999px;
    position: relative;
}

.identity-scroll-hint i::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 9px;
    width: 3px;
    height: 7px;
    border-radius: 999px;
    background: rgba(67, 60, 86, 0.42);
    transform: translateX(-50%);
}

.identity-scroll-hint b {
    width: 9px;
    height: 9px;
    border-right: 1px solid rgba(67, 60, 86, 0.36);
    border-bottom: 1px solid rgba(67, 60, 86, 0.36);
    transform: rotate(45deg);
}

.story-hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        linear-gradient(rgba(248, 246, 242, 0.24), rgba(248, 246, 242, 0.24)),
        url("/img/sonare-background.png") center / cover no-repeat;
    isolation: isolate;
}

.story-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(255, 255, 255, 0.16);
    pointer-events: none;
}

.story-hero__inner {
    position: relative;
    z-index: 2;
    width: min(720px, 86vw);
    margin: 0 auto;
    text-align: center;
    transform: translateY(-2vh);
}

.story-brand,
.story-title {
    font-family: Georgia, "Times New Roman", "Songti SC", serif;
    font-weight: 400;
}

.story-brand {
    padding-left: 0.28em;
    color: rgba(69, 64, 82, 0.72);
    font-size: clamp(24px, 3vw, 36px);
    letter-spacing: 0.28em;
    line-height: 1;
    animation: story-rise 0.6s ease-out 0.08s both;
}

.story-divider {
    width: 46px;
    height: 1px;
    margin: 28px auto 0;
    background: rgba(69, 64, 82, 0.28);
    animation: story-rise 0.7s ease-out 0.18s both;
}

.story-identity {
    margin: 38px auto 0;
    animation: story-rise 0.82s ease-out 0.26s both;
}

.story-identity p {
    margin: 0;
    color: rgba(69, 64, 82, 0.42);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.18em;
}

.story-identity h2 {
    margin: 14px 0 0;
    color: rgba(69, 64, 82, 0.86);
    font-family: Georgia, "Times New Roman", "Songti SC", serif;
    font-size: clamp(48px, 6.6vw, 86px);
    font-weight: 400;
    letter-spacing: 0.12em;
    line-height: 1.22;
}

.story-identity div {
    width: min(560px, 86vw);
    margin: 18px auto 0;
    color: rgba(60, 55, 72, 0.6);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.08em;
    line-height: 2;
}

.story-summary-line {
    width: min(580px, 86vw);
    margin: 34px auto 0;
    color: rgba(60, 55, 72, 0.7);
    font-family: Georgia, "Times New Roman", "Songti SC", serif;
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.9;
    animation: story-rise 0.92s ease-out 0.36s both;
}

.story-title {
    margin: 36px 0 0;
    color: rgba(69, 64, 82, 0.82);
    font-size: clamp(38px, 5vw, 64px);
    letter-spacing: 0.16em;
    line-height: 1.35;
    animation: story-rise 0.8s ease-out 0.52s both;
}

.story-quote {
    margin: 40px auto 0;
    color: rgba(60, 55, 72, 0.68);
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 300;
    letter-spacing: 0.1em;
    line-height: 2.05;
    animation: story-rise 1s ease-out 0.66s both;
}

.story-quote span {
    display: block;
}

.story-prose {
    width: min(620px, 86vw);
    margin: 34px auto 0;
    color: rgba(60, 55, 72, 0.72);
    font-size: 17px;
    font-weight: 300;
    letter-spacing: 0.045em;
    line-height: 2.15;
    animation: story-rise 1.2s ease-out 0.8s both;
}

.story-prose p {
    margin: 0;
}

.story-prose p + p {
    margin-top: 12px;
}

.scroll-hint {
    margin-top: 58px;
    color: rgba(69, 64, 82, 0.36);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.12em;
    animation: story-rise 1.6s ease-out 1.04s both;
}

.story-followup {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.profile-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        linear-gradient(rgba(248, 246, 242, 0.16), rgba(248, 246, 242, 0.18)),
        url("/img/sonare-background.png") center / cover no-repeat;
    isolation: isolate;
}

.profile-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

.portrait-brand {
    position: absolute;
    left: 3.1vw;
    top: 5vh;
    z-index: 3;
    color: rgba(54, 50, 72, 0.76);
    font-family: Georgia, "Times New Roman", "Songti SC", serif;
    font-size: 23px;
    font-weight: 400;
    letter-spacing: 0.52em;
    line-height: 1;
}

.portrait-brand span {
    display: block;
    position: relative;
    width: 68px;
    height: 1px;
    margin-top: 32px;
    margin-left: 31px;
    background: rgba(70, 64, 84, 0.26);
}

.portrait-brand span::before {
    content: "";
    position: absolute;
    left: -31px;
    top: -2px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(130, 112, 170, 0.42);
}

.portrait-meta {
    position: absolute;
    right: 2.6vw;
    top: 4.8vh;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 22px;
    color: rgba(70, 64, 84, 0.42);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.16em;
    line-height: 1;
}

.portrait-meta i {
    width: 26px;
    height: 18px;
    opacity: 0.42;
    background:
        linear-gradient(90deg, transparent 0 3px, rgba(70, 64, 84, 0.42) 3px 4px, transparent 4px 7px) 0 50% / 7px 11px repeat-x;
}

.profile-section__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 100vh;
    margin: 0 auto;
    display: block;
    transform: none;
}

.profile-section__head {
    position: absolute;
    left: 4.8vw;
    top: 21.5vh;
    width: min(31vw, 460px);
    margin: 0;
    text-align: left;
}

.profile-kicker,
.profile-section h2 {
    margin: 0;
    color: rgba(80, 75, 95, 0.38);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.profile-section__head h1 {
    margin: 0;
    color: rgba(54, 50, 72, 0.78);
    font-family: "Source Han Serif SC", "Songti SC", Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 2.45vw, 44px);
    font-weight: 300;
    letter-spacing: 0.16em;
    line-height: 1.22;
    white-space: nowrap;
}

.portrait-wave {
    width: 72px;
    height: 15px;
    margin-top: 28px;
    opacity: 0.34;
    background:
        linear-gradient(90deg, rgba(70, 64, 84, 0.25), rgba(70, 64, 84, 0.25)) 0 50% / 72px 1px no-repeat,
        repeating-linear-gradient(90deg, transparent 0 5px, rgba(70, 64, 84, 0.4) 5px 6px, transparent 6px 9px);
    mask-image: radial-gradient(ellipse at center, #000 44%, transparent 72%);
}

.profile-section__head p {
    margin: 24px 0 0;
    color: rgba(70, 64, 84, 0.46);
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.08em;
    line-height: 2;
}

.music-constellation {
    position: absolute;
    left: 20.6vw;
    top: 8.4vh;
    width: 76vw;
    height: 75vh;
    min-height: 560px;
    transform: none;
}

.constellation-orbits,
.constellation-lines,
.constellation-labels,
.constellation-words {
    position: absolute;
    inset: 0;
}

.constellation-orbits,
.constellation-lines {
    opacity: 0;
    transform: translateY(12px);
}

.profile-section.is-visible .constellation-orbits {
    animation: constellation-rise 0.9s ease-out 0.04s both;
}

.profile-section.is-visible .constellation-lines {
    animation: constellation-rise 0.72s ease-out 0.56s both;
}

.portrait-orbit {
    position: absolute;
    left: 50%;
    top: 50%;
    border: 1px solid rgba(127, 111, 159, 0.105);
    border-radius: 50%;
    transform: translate(-50%, -50%) rotate(var(--orbit-rotate, 0deg));
    pointer-events: none;
}

.orbit-1 {
    width: 54%;
    height: 34%;
    --orbit-rotate: -9deg;
}

.orbit-2 {
    width: 76%;
    height: 50%;
    --orbit-rotate: 13deg;
}

.orbit-3 {
    width: 96%;
    height: 70%;
    --orbit-rotate: -8deg;
}

.constellation-lines span {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, rgba(127, 111, 159, 0.01), rgba(127, 111, 159, 0.11), rgba(127, 111, 159, 0.01));
    transform-origin: left center;
    transform: rotate(var(--line-rotate, 0deg)) scaleX(0);
    opacity: 0;
    pointer-events: none;
}

.constellation-lines span:nth-child(1) {
    left: 49%;
    top: 49%;
    width: 24%;
    --line-rotate: -151deg;
}

.constellation-lines span:nth-child(2) {
    left: 51%;
    top: 48%;
    width: 21%;
    --line-rotate: -67deg;
}

.constellation-lines span:nth-child(3) {
    left: 49%;
    top: 51%;
    width: 25%;
    --line-rotate: 158deg;
}

.constellation-lines span:nth-child(4) {
    left: 52%;
    top: 51%;
    width: 27%;
    --line-rotate: 18deg;
}

.constellation-lines span:nth-child(5) {
    display: none;
}

.profile-section.is-visible .constellation-lines span {
    animation: constellation-line-grow 0.84s ease-out both;
    animation-delay: calc(0.68s + var(--line-i, 0) * 0.09s);
}

.constellation-lines span:nth-child(1) {
    --line-i: 0;
}

.constellation-lines span:nth-child(2) {
    --line-i: 1;
}

.constellation-lines span:nth-child(3) {
    --line-i: 2;
}

.constellation-lines span:nth-child(4) {
    --line-i: 3;
}

.constellation-labels {
    opacity: 0;
    transform: translateY(12px);
}

.profile-section.is-visible .constellation-labels {
    animation: constellation-rise 0.9s ease-out 1.58s both;
}

.constellation-orbit-label {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(67, 60, 86, 0.42);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1;
    transform: translate(-50%, -50%) rotate(var(--label-rotate, 8deg));
}

.constellation-orbit-label::before {
    content: "";
    width: 22px;
    height: 1px;
    background: rgba(67, 60, 86, 0.28);
}

.label-pos-0 {
    left: 18%;
    top: 17%;
    --label-rotate: -8deg;
}

.label-pos-1 {
    left: 51%;
    top: 8%;
    --label-rotate: 10deg;
}

.label-pos-2 {
    left: 83%;
    top: 17%;
    --label-rotate: 13deg;
}

.label-pos-3 {
    left: 89%;
    top: 53%;
    --label-rotate: -10deg;
}

.label-pos-4 {
    left: 15%;
    top: 83%;
    --label-rotate: 8deg;
}

.label-pos-5 {
    left: 58%;
    top: 91%;
    --label-rotate: 12deg;
}

.constellation-word {
    position: absolute;
    left: var(--x, 52%);
    top: var(--y, 48%);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(67, 60, 86, 0.62);
    font-family: Georgia, "Times New Roman", "Songti SC", serif;
    font-weight: 300;
    letter-spacing: 0.08em;
    line-height: 1;
    white-space: nowrap;
    cursor: default;
    opacity: 0;
    transform: translate(-50%, calc(-50% + 18px));
    transition: color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.constellation-word::before {
    content: none;
}

.word-node {
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    margin-top: 0.72em;
    border-radius: 50%;
    background: rgba(130, 112, 170, 0.46);
    box-shadow: 0 0 12px rgba(130, 112, 170, 0.23);
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.word-copy,
.word-label,
.word-note {
    display: block;
}

.profile-section.is-visible .constellation-word {
    animation: constellation-word-rise 0.9s ease-out both;
    animation-delay: calc(0.86s + var(--i, 0) * 0.16s);
}

.profile-section.is-visible .constellation-word--core {
    animation-delay: 0.28s;
}

.constellation-word--core {
    --x: 50%;
    --y: 50%;
    color: rgba(54, 50, 72, 0.9);
    font-size: clamp(70px, 5.8vw, 102px);
    font-weight: 400;
    isolation: isolate;
}

.constellation-word--core::before {
    display: none;
}

.constellation-word--core .word-node {
    display: none;
}

.constellation-word--core::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: -1;
    width: clamp(240px, 22vw, 340px);
    height: clamp(240px, 22vw, 340px);
    border-radius: 50%;
    background: radial-gradient(rgba(180, 160, 220, 0.12), transparent 70%);
    opacity: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.profile-section.is-visible .constellation-word--core::after {
    animation: constellation-glow 1.2s ease-out 0.18s both;
}

.constellation-word--major {
    color: rgba(67, 60, 86, 0.62);
    font-size: clamp(36px, 3vw, 50px);
    font-weight: 300;
}

.constellation-word--minor {
    color: rgba(67, 60, 86, 0.5);
    font-size: clamp(30px, 2.5vw, 44px);
    font-weight: 300;
}

.word-note {
    width: max-content;
    max-width: 190px;
    margin-top: 12px;
    color: rgba(70, 64, 84, 0.46);
    font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.08em;
    line-height: 1.85;
    text-align: center;
    white-space: normal;
}

.constellation-word--core .word-copy {
    text-align: center;
}

.constellation-word--core .word-note {
    max-width: 240px;
    margin: 18px auto 0;
    font-size: 15px;
    line-height: 1.9;
}

.constellation-pos-0 {
    --x: 50%;
    --y: 50%;
}

.constellation-pos-1 {
    --x: 32%;
    --y: 35%;
}

.constellation-pos-2 {
    --x: 55%;
    --y: 22%;
}

.constellation-pos-3 {
    --x: 30%;
    --y: 69%;
}

.constellation-pos-4 {
    --x: 66%;
    --y: 40%;
}

.constellation-pos-5 {
    --x: 65%;
    --y: 69%;
}

.constellation-word:hover,
.constellation-word:focus-visible {
    color: rgba(69, 64, 82, 0.82);
    opacity: 1;
    outline: none;
    transform: translate(-50%, -50%) scale(1.05);
    z-index: 3;
}

.constellation-word:hover .word-node,
.constellation-word:focus-visible .word-node {
    background: rgba(130, 112, 170, 0.62);
    box-shadow: 0 0 18px rgba(130, 112, 170, 0.32);
}

.constellation-note {
    position: absolute;
    left: 3.2vw;
    bottom: 6vh;
    z-index: 3;
    width: min(320px, 28vw);
    margin: 0;
    color: rgba(70, 64, 84, 0.48);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.08em;
    line-height: 1.8;
    text-align: left;
    transition: color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

.constellation-note::before {
    content: "☟";
    display: inline-block;
    margin-right: 12px;
    color: rgba(70, 64, 84, 0.42);
    font-size: 24px;
    vertical-align: top;
}

.portrait-quote {
    position: absolute;
    right: 6.5vw;
    bottom: 6.6vh;
    z-index: 3;
    margin: 0;
    color: rgba(54, 50, 72, 0.68);
    font-family: "Source Han Serif SC", "Songti SC", Georgia, serif;
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 0.18em;
    line-height: 1.85;
    text-align: center;
}

.portrait-quote span {
    display: block;
    margin-top: 20px;
    color: rgba(54, 50, 72, 0.38);
    font-size: 12px;
    letter-spacing: 0.28em;
}

.story-legacy {
    width: min(980px, calc(100% - 32px));
    margin: 0 auto;
    padding: 54px 0 0;
}

.voices-weave-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    background:
        linear-gradient(rgba(248, 246, 242, 0.1), rgba(248, 246, 242, 0.1)),
        url("/img/sonare-weave-bg.jpg") center / cover no-repeat;
    isolation: isolate;
}

.voices-weave-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.voices-weave-section::after {
    content: none;
}

.voices-weave__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.voices-weave-intro {
    position: absolute;
    left: clamp(64px, 7.2vw, 130px);
    top: clamp(150px, 19vh, 210px);
    z-index: 3;
    max-width: 520px;
    opacity: 1;
    transform: translateY(0);
}

.voices-weave-section.is-visible .voices-weave-intro {
    animation: weave-rise 0.82s ease-out both;
}

.voices-weave-label {
    margin: 0;
    color: rgba(80, 75, 95, 0.35);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.24em;
    line-height: 1;
}

.voices-weave-title {
    margin: 30px 0 0;
    color: rgba(67, 60, 86, 0.74);
    font-family: "Source Han Serif SC", "Songti SC", Georgia, "Times New Roman", serif;
    font-size: clamp(56px, 4.8vw, 86px);
    font-weight: 300;
    letter-spacing: 0.2em;
    line-height: 1.15;
    white-space: nowrap;
}

.voices-weave-desc {
    margin: 34px 0 0;
    color: rgba(67, 60, 86, 0.38);
    font-size: clamp(15px, 1.2vw, 18px);
    font-weight: 300;
    letter-spacing: 0.08em;
    line-height: 2.05;
}

.voices-weave-canvas {
    position: absolute;
    inset: 0;
    z-index: 2;
    min-height: 100vh;
    height: 100vh;
    opacity: 1;
    transform: translateY(0);
}

.voices-weave-canvas::before {
    content: none;
}

.voices-weave-section.is-visible .voices-weave-canvas {
    animation: weave-rise 0.9s ease-out 0.18s both;
}

.voices-weave-labels {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.voices-weave-labels {
    pointer-events: none;
}

.voice-artist-label {
    position: absolute;
    left: var(--x);
    top: var(--y);
    border: 0;
    padding: 0;
    background: transparent;
    width: max-content;
    max-width: 340px;
    color: rgba(67, 60, 86, 0.34);
    text-align: left;
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.06em;
    line-height: 1.8;
    cursor: pointer;
    opacity: 0.72;
    transform: translate(-50%, -50%);
    pointer-events: auto;
    transition: color 0.32s ease, opacity 0.32s ease, transform 0.32s ease;
}

.voice-artist-label::before {
    content: "";
    position: absolute;
    left: -18px;
    top: 0.8em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(78, 69, 100, 0.52);
    box-shadow: 0 0 12px rgba(128, 108, 176, 0.24);
}

.voice-artist-label::after {
    content: "";
    position: absolute;
    left: -46px;
    top: calc(0.8em + 3px);
    width: 24px;
    height: 1px;
    background: rgba(78, 69, 100, 0.18);
}

.voices-weave-section.is-visible .voice-artist-label {
    animation: weave-label-rise 0.78s ease-out both;
    animation-delay: calc(1.05s + var(--i, 0) * 0.1s);
}

.voice-artist-label.is-active,
.voice-artist-label:hover,
.voice-artist-label:focus-visible {
    color: rgba(67, 60, 86, 0.78);
    opacity: 1;
    outline: none;
    transform: translate(-50%, -50%) scale(1.02);
}

.voice-artist-label.is-muted {
    opacity: 0.55;
}

.voice-artist-name {
    display: block;
    color: rgba(67, 60, 86, 0.5);
    font-family: "Source Han Serif SC", "Songti SC", Georgia, "Times New Roman", serif;
    font-size: clamp(16px, 1.35vw, 21px);
    font-weight: 300;
    letter-spacing: 0.06em;
    line-height: 1.25;
    transition: color 0.32s ease;
}

.voice-artist-label--primary {
    max-width: 380px;
    opacity: 1;
}

.voice-artist-label--primary .voice-artist-name {
    color: rgba(67, 60, 86, 0.86);
    font-size: clamp(36px, 3.7vw, 58px);
    letter-spacing: 0.08em;
}

.voice-artist-label.is-active .voice-artist-name,
.voice-artist-label:hover .voice-artist-name,
.voice-artist-label:focus-visible .voice-artist-name {
    color: rgba(67, 60, 86, 0.86);
}

.voice-artist-note,
.voice-artist-songs {
    display: block;
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.voice-artist-note {
    margin-top: 11px;
    color: rgba(67, 60, 86, 0.5);
    font-size: 13px;
}

.voice-artist-songs {
    margin-top: 8px;
    color: rgba(67, 60, 86, 0.48);
    font-size: 12px;
    letter-spacing: 0.1em;
}

.voice-artist-label--primary .voice-artist-note,
.voice-artist-label--primary .voice-artist-songs {
    opacity: 1;
    transform: translateY(0);
}

.voice-artist-label.is-active .voice-artist-note,
.voice-artist-label.is-active .voice-artist-songs,
.voice-artist-label:hover .voice-artist-note,
.voice-artist-label:hover .voice-artist-songs,
.voice-artist-label:focus-visible .voice-artist-note,
.voice-artist-label:focus-visible .voice-artist-songs {
    opacity: 1;
    transform: translateY(0);
}

.voice-artist-label.is-active .voice-artist-note,
.voice-artist-label:hover .voice-artist-note,
.voice-artist-label:focus-visible .voice-artist-note {
    color: rgba(67, 60, 86, 0.58);
}

.voice-artist-label.is-active .voice-artist-songs,
.voice-artist-label:hover .voice-artist-songs,
.voice-artist-label:focus-visible .voice-artist-songs {
    color: rgba(67, 60, 86, 0.54);
}

@keyframes weave-rise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes weave-label-rise {
    from {
        opacity: 0;
        transform: translate(-50%, calc(-50% + 12px));
    }

    to {
        opacity: 0.72;
        transform: translate(-50%, -50%);
    }
}

.next-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    background:
        linear-gradient(rgba(248, 246, 242, 0.28), rgba(248, 246, 242, 0.28)),
        url("/img/sonare-background.png") center / cover no-repeat;
    isolation: isolate;
}

.next-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(255, 255, 255, 0.18);
    pointer-events: none;
}

.next-section__inner {
    position: relative;
    z-index: 2;
    width: min(900px, 86vw);
    margin: 0 auto;
    padding: 112px 0 120px;
}

.next-section__head {
    width: min(720px, 86vw);
    margin: 0 auto 76px;
    text-align: center;
}

.next-section__head h1 {
    margin: 14px 0 0;
    color: rgba(69, 64, 82, 0.84);
    font-family: Georgia, "Times New Roman", "Songti SC", serif;
    font-size: clamp(46px, 6vw, 78px);
    font-weight: 400;
    letter-spacing: 0.14em;
    line-height: 1.2;
}

.next-section__head p {
    margin: 26px 0 0;
    color: rgba(60, 55, 72, 0.58);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.1em;
    line-height: 2;
}

.next-alert {
    width: min(720px, 86vw);
    margin: -30px auto 56px;
}

.next-list {
    display: grid;
    gap: 56px;
}

.next-song {
    position: relative;
    padding: 0 0 46px;
    border-bottom: 1px solid rgba(90, 84, 105, 0.12);
    opacity: 0;
    transform: translateY(22px);
}

.next-song.is-visible {
    animation: next-rise 0.78s ease-out both;
    animation-delay: calc(var(--i, 0) * 0.06s);
}

.next-song h2 {
    margin: 0;
    color: rgba(69, 64, 82, 0.82);
    font-family: Georgia, "Times New Roman", "Songti SC", serif;
    font-size: clamp(42px, 5vw, 56px);
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.25;
}

.next-artist {
    margin: 12px 0 0;
    color: rgba(60, 55, 72, 0.48);
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.12em;
    line-height: 1.8;
}

.next-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.next-tags span {
    min-height: 28px;
    padding: 5px 12px;
    border: 1px solid rgba(90, 84, 105, 0.13);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.3);
    color: rgba(69, 64, 82, 0.44);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.08em;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.next-reason {
    width: min(560px, 100%);
    margin: 22px 0 0;
    color: rgba(60, 55, 72, 0.66);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 1.85;
}

.poster-entry {
    margin-top: 84px;
    text-align: center;
}

.poster-button {
    min-height: 46px;
    padding: 0 24px;
    border: 1px solid rgba(90, 84, 105, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.32);
    color: rgba(69, 64, 82, 0.58);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.12em;
    cursor: pointer;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.poster-button:hover {
    background: rgba(255, 255, 255, 0.48);
    color: rgba(69, 64, 82, 0.76);
    transform: translateY(-1px);
}

.poster-button:disabled {
    cursor: wait;
    color: rgba(69, 64, 82, 0.36);
    background: rgba(255, 255, 255, 0.24);
    transform: none;
}

.poster-button[hidden] {
    display: none;
}

.poster-button.is-loading {
    letter-spacing: 0.16em;
}

body.poster-open {
    overflow: hidden;
}

.poster-modal {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.poster-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.poster-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(248, 246, 242, 0.62);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.poster-modal__panel {
    position: relative;
    z-index: 1;
    width: min(980px, 94vw);
    max-height: calc(100vh - 56px);
    overflow: auto;
    padding: 34px;
    border: 1px solid rgba(90, 84, 105, 0.16);
    border-radius: 8px;
    background:
        linear-gradient(rgba(248, 246, 242, 0.64), rgba(248, 246, 242, 0.64)),
        url("/img/sonare-background.png") center / cover no-repeat;
    box-shadow: 0 28px 90px rgba(70, 64, 85, 0.12);
}

.poster-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(90, 84, 105, 0.12);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.34);
    color: rgba(69, 64, 82, 0.58);
    cursor: pointer;
}

.poster-modal__head {
    text-align: center;
}

.poster-modal__head p {
    margin: 0;
    color: rgba(69, 64, 82, 0.42);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.poster-modal__head h2 {
    margin: 12px 0 0;
    color: rgba(69, 64, 82, 0.8);
    font-family: Georgia, "Times New Roman", "Songti SC", serif;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 0.12em;
}

.poster-template-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.poster-template {
    position: relative;
    min-height: 220px;
    padding: 22px;
    border: 1px solid rgba(90, 84, 105, 0.14);
    border-radius: 8px;
    overflow: hidden;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.poster-template::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
}

.poster-template span,
.poster-template strong {
    position: relative;
    z-index: 1;
    display: block;
}

.poster-template span {
    color: rgba(69, 64, 82, 0.48);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.12em;
}

.poster-template strong {
    margin-top: 10px;
    color: rgba(69, 64, 82, 0.78);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.08em;
}

.poster-template:hover,
.poster-template.is-selected {
    border-color: rgba(90, 84, 105, 0.32);
    box-shadow: 0 16px 50px rgba(70, 64, 85, 0.08);
    transform: translateY(-2px);
}

.poster-template--literary::before {
    background:
        linear-gradient(rgba(248, 243, 236, 0.58), rgba(248, 243, 236, 0.78)),
        radial-gradient(ellipse at 50% 92%, rgba(148, 139, 163, 0.34), transparent 48%);
}

.poster-template--mist::before {
    background:
        radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.7), transparent 36%),
        linear-gradient(160deg, #f2edf7, #c9bedf 70%, #b5a8d2);
}

.poster-template--record::before {
    background:
        radial-gradient(circle at 76% 24%, #6b477f 0 22%, #18151f 23% 52%, #0f0f13 53%),
        linear-gradient(150deg, #111116, #1b1721);
}

.poster-template--record span,
.poster-template--record strong {
    color: rgba(230, 222, 201, 0.82);
}

.poster-preview {
    display: grid;
    grid-template-columns: minmax(190px, 260px) 1fr;
    gap: 24px;
    align-items: end;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(90, 84, 105, 0.12);
}

.poster-preview img {
    width: min(260px, 38vw);
    aspect-ratio: 9 / 16;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 18px 54px rgba(70, 64, 85, 0.12);
}

.poster-download {
    width: fit-content;
    min-height: 44px;
    padding: 0 22px;
    border: 1px solid rgba(90, 84, 105, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.36);
    color: rgba(69, 64, 82, 0.68);
    font-size: 14px;
    letter-spacing: 0.12em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@keyframes next-rise {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes trait-emerge {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 0.74;
        transform: translateY(0);
    }
}

@keyframes constellation-rise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes constellation-word-rise {
    from {
        opacity: 0;
        transform: translate(-50%, calc(-50% + 18px));
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@keyframes constellation-line-grow {
    from {
        opacity: 0;
        transform: rotate(var(--line-rotate, 0deg)) scaleX(0);
    }

    to {
        opacity: 1;
        transform: rotate(var(--line-rotate, 0deg)) scaleX(1);
    }
}

@keyframes constellation-glow {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes identity-mark {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes identity-fragment-gather {
    0% {
        opacity: 0;
        filter: blur(3px);
        transform: translate(-50%, calc(-50% + 14px)) scale(0.98);
    }

    28% {
        opacity: 1;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1);
    }

    68% {
        opacity: 0.76;
        filter: blur(0.2px);
        transform: translate(calc(-50% + var(--gx, 0px)), calc(-50% + var(--gy, 0px))) scale(0.99);
    }

    100% {
        opacity: 0;
        filter: blur(6px);
        transform: translate(calc(-50% + var(--gx, 0px)), calc(-50% + var(--gy, 0px))) scale(0.96);
    }
}

@keyframes identity-reveal {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes identity-hint {
    from {
        opacity: 0;
        transform: translate(-50%, 10px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@keyframes story-rise {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes result-fade-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.section-head h1,
.block-title {
    margin: 0;
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: 0.08em;
}

.section-head h1 {
    font-size: 40px;
}

.block-title {
    margin: 34px 0 16px;
    font-size: 28px;
}

.btn {
    min-height: 40px;
    padding: 0 16px;
    border: 1px solid rgba(105, 98, 118, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    color: var(--ink-soft);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.eyebrow {
    margin: 0 0 8px;
    color: rgba(75, 70, 82, 0.5);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.profile-panel,
.recommend-row,
.source-detail {
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(105, 98, 118, 0.16);
    border-radius: 8px;
    box-shadow: 0 18px 60px rgba(74, 68, 86, 0.06);
}

.profile-panel {
    padding: 26px;
}

.profile-panel p {
    margin: 0;
    color: rgba(75, 70, 82, 0.78);
    font-size: 17px;
    line-height: 1.9;
}

.profile-groups {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 24px;
}

.profile-groups h2 {
    margin: 0 0 10px;
    color: var(--ink);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.12em;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.tag-row.compact {
    margin: 0;
}

.tag-row span {
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(216, 210, 223, 0.34);
    color: rgba(75, 70, 82, 0.72);
    font-size: 13px;
}

.recommend-list {
    display: grid;
    gap: 12px;
}

.recommend-row {
    display: grid;
    grid-template-columns: 42px 180px 1fr;
    gap: 16px;
    align-items: center;
    padding: 16px;
}

.rank {
    color: rgba(95, 89, 104, 0.62);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
}

.recommend-row strong,
.recommend-row small {
    display: block;
}

.recommend-row strong {
    color: var(--ink);
    font-weight: 400;
}

.recommend-row small,
.recommend-row p {
    color: rgba(75, 70, 82, 0.62);
}

.recommend-row p {
    margin: 0;
    line-height: 1.7;
}

.source-detail {
    margin-top: 24px;
    padding: 20px 24px;
    color: rgba(75, 70, 82, 0.7);
}

.source-detail summary {
    cursor: pointer;
}

.alert {
    margin-bottom: 18px;
    padding: 12px 14px;
    border-radius: 8px;
    color: rgba(128, 70, 58, 0.82);
    background: rgba(255, 244, 239, 0.72);
}

@media (max-width: 768px) {
    .identity-brand {
        left: 7vw;
        top: 34px;
        font-size: 18px;
        letter-spacing: 0.28em;
    }

    .identity-brand::before,
    .identity-brand::after {
        top: 42px;
    }

    .identity-top-meta {
        right: 6vw;
        top: 34px;
        gap: 10px;
        font-size: 0;
    }

    .identity-top-meta i {
        width: 18px;
        height: 18px;
    }

    .identity-top-meta b {
        width: 28px;
        height: 28px;
    }

    .identity-label {
        left: 0;
        right: 0;
        bottom: calc(100% + 24px);
        width: auto;
        font-size: 14px;
        letter-spacing: 0.14em;
        text-indent: 0.14em;
    }

    .identity-main {
        left: 50%;
        top: 43%;
        width: 94vw;
        transform: translate(-50%, -50%);
    }

    .identity-title {
        font-size: clamp(38px, 10.5vw, 64px);
        letter-spacing: 0.04em;
        white-space: nowrap;
    }

    .identity-divider {
        width: min(240px, 54vw);
        margin-top: 22px;
    }

    .identity-description {
        width: 92vw;
        margin-top: 24px;
        font-size: clamp(14px, 4vw, 18px);
        letter-spacing: 0.08em;
        line-height: 1.9;
        white-space: nowrap;
    }

    .identity-fragment {
        font-size: 13px;
    }

    .identity-scroll-hint {
        bottom: 42px;
        width: 90vw;
        font-size: 12px;
        text-align: center;
    }

    .identity-scroll-hint i {
        width: 20px;
        height: 36px;
    }

    .hero {
        width: 90vw;
        transform: translateY(-2vh);
    }

    .brand-title {
        padding-left: 0.14em;
        font-size: clamp(52px, 16vw, 78px);
        letter-spacing: 0.14em;
    }

    .brand-subtitle {
        width: min(360px, 86vw);
        margin-top: 24px;
        font-size: 14px;
        letter-spacing: 0.1em;
        line-height: 2;
    }

    .playlist-form {
        width: 90vw;
        height: 60px;
        margin-top: 48px;
    }

    .playlist-input {
        padding: 0 20px;
        font-size: 14px;
        letter-spacing: 0.04em;
    }

    .submit-button {
        width: 54px;
        height: 54px;
        font-size: 26px;
    }

    .input-helper-row {
        width: 90vw;
        margin-top: 18px;
    }

    .get-link-help,
    .manual-entry-link {
        font-size: 13px;
    }

    .link-help-modal {
        padding: 18px;
    }

    .link-help-dialog {
        width: 92vw;
        padding: 34px 22px 28px;
    }

    .link-help-dialog h2 {
        font-size: 26px;
        letter-spacing: 0.1em;
    }

    .tutorial-tabs {
        margin-bottom: 16px;
    }

    .tutorial-tab {
        padding: 9px 13px 10px;
        font-size: 12px;
    }

    .tutorial-netease-layout,
    .tutorial-step-card {
        grid-template-columns: 1fr;
    }

    .tutorial-netease-layout {
        gap: 18px;
    }

    .tutorial-step-card {
        gap: 16px;
        padding: 20px 0;
    }

    .tutorial-step-image {
        justify-self: center;
    }

    .tutorial-step-image img {
        max-width: 260px;
        margin: 0 auto;
    }

    .tutorial-step-image--tall img {
        max-height: 360px;
    }

    .listening-hero {
        width: 90vw;
        transform: translateY(-2vh);
    }

    .listening-line {
        width: min(320px, 64vw);
        margin-top: 28px;
    }

    .listening-text {
        width: min(360px, 86vw);
        min-height: 56px;
        margin-top: 26px;
        font-size: 14px;
        letter-spacing: 0.1em;
        line-height: 2;
    }

    .listening-dots {
        margin-top: 54px;
    }

    .story-hero__inner {
        width: 90vw;
        transform: translateY(-1vh);
    }

    .story-brand {
        padding-left: 0.18em;
        font-size: 22px;
        letter-spacing: 0.18em;
    }

    .story-divider {
        margin-top: 24px;
    }

    .story-identity {
        margin-top: 30px;
    }

    .story-identity h2 {
        font-size: clamp(36px, 11vw, 52px);
        letter-spacing: 0.08em;
    }

    .story-identity div {
        width: min(350px, 86vw);
        margin-top: 14px;
        font-size: 14px;
        letter-spacing: 0.05em;
        line-height: 1.9;
    }

    .story-summary-line {
        width: min(340px, 86vw);
        margin-top: 26px;
        font-size: 16px;
        letter-spacing: 0.05em;
        line-height: 1.8;
    }

    .story-title {
        margin-top: 34px;
        font-size: 34px;
        letter-spacing: 0.1em;
    }

    .story-quote {
        margin-top: 30px;
        font-size: 17px;
        letter-spacing: 0.06em;
        line-height: 2;
    }

    .story-prose {
        width: min(360px, 86vw);
        margin-top: 26px;
        font-size: 15px;
        letter-spacing: 0.03em;
        line-height: 2.05;
    }

    .scroll-hint {
        margin-top: 42px;
        font-size: 12px;
    }

    .story-followup {
        width: 100%;
        padding: 0;
    }

    .portrait-brand {
        left: 7vw;
        top: 34px;
        font-size: 17px;
        letter-spacing: 0.34em;
    }

    .portrait-brand span {
        margin-top: 20px;
    }

    .portrait-meta,
    .portrait-quote {
        display: none;
    }

    .profile-section__inner {
        width: 90vw;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 38px;
        transform: translateY(0);
    }

    .profile-section__head {
        position: relative;
        left: auto;
        top: auto;
        width: min(360px, 90vw);
        text-align: center;
    }

    .profile-section__head h1 {
        font-size: 34px;
        letter-spacing: 0.1em;
    }

    .profile-section__head p {
        margin-top: 20px;
        font-size: 14px;
        letter-spacing: 0.07em;
    }

    .music-constellation {
        width: 94vw;
        height: auto;
        min-height: 420px;
        aspect-ratio: 1;
        left: auto;
        top: auto;
        position: relative;
        justify-self: auto;
        transform: none;
    }

    .constellation-word--core {
        font-size: clamp(58px, 18vw, 78px);
    }

    .constellation-word--major {
        font-size: clamp(34px, 10vw, 46px);
    }

    .constellation-word--minor {
        font-size: clamp(24px, 7vw, 32px);
    }

    .constellation-orbit-label {
        font-size: 12px;
        letter-spacing: 0.06em;
    }

    .constellation-note {
        position: relative;
        left: auto;
        bottom: auto;
        width: min(320px, 84vw);
        margin: -10px auto 0;
        font-size: 13px;
        line-height: 1.9;
        text-align: center;
    }

    .voices-weave__inner {
        width: 100%;
        min-height: 100vh;
        padding: 0;
    }

    .voices-weave-intro {
        left: 7vw;
        top: 12vh;
        max-width: 86vw;
        margin: 0;
        text-align: left;
    }

    .voices-weave-label {
        font-size: 12px;
    }

    .voices-weave-title {
        margin-top: 18px;
        font-size: 38px;
        letter-spacing: 0.14em;
        white-space: nowrap;
    }

    .voices-weave-desc {
        margin-top: 20px;
        font-size: 14px;
        letter-spacing: 0.07em;
        line-height: 1.9;
    }

    .voices-weave-canvas {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100vh;
        min-height: 100vh;
        margin-left: 0;
    }

    .voice-artist-label {
        font-size: 12px;
        letter-spacing: 0.06em;
    }

    .voice-artist-label--primary {
        left: 62% !important;
        top: 52% !important;
        max-width: 280px;
    }

    .voice-artist-label--primary .voice-artist-name {
        font-size: 32px;
    }

    .voice-artist-note,
    .voice-artist-songs {
        font-size: 11px;
    }

    .next-section__inner {
        width: 90vw;
        padding: 84px 0 96px;
    }

    .next-section__head {
        width: 90vw;
        margin-bottom: 58px;
    }

    .next-section__head h1 {
        font-size: 38px;
        letter-spacing: 0.1em;
    }

    .next-section__head p {
        font-size: 14px;
        letter-spacing: 0.07em;
    }

    .next-list {
        gap: 44px;
    }

    .next-song {
        padding-bottom: 38px;
    }

    .next-song h2 {
        font-size: 36px;
        letter-spacing: 0.05em;
    }

    .next-artist {
        font-size: 14px;
    }

    .next-reason {
        font-size: 15px;
    }

    .poster-entry {
        margin-top: 64px;
    }

    .poster-modal {
        padding: 16px;
    }

    .poster-modal__panel {
        max-height: calc(100vh - 32px);
        padding: 26px 18px;
    }

    .poster-modal__head h2 {
        font-size: 24px;
        letter-spacing: 0.08em;
    }

    .poster-template-grid,
    .poster-preview {
        grid-template-columns: 1fr;
    }

    .poster-template {
        min-height: 150px;
    }

    .poster-preview img {
        width: min(260px, 70vw);
        margin: 0 auto;
    }

    .poster-download {
        margin: 0 auto;
    }

    .story-legacy {
        width: min(100% - 32px, 980px);
        padding-top: 38px;
    }

    .navbar,
    .section-head,
    .profile-groups,
    .recommend-row {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

    .section-head h1 {
        font-size: 30px;
    }
}
