﻿:root {
    --bg: #030715;
    --bg-2: #071127;
    --panel: rgba(9, 20, 40, 0.74);
    --panel-strong: rgba(12, 27, 54, 0.9);
    --text: #f8fbff;
    --muted: #b9c8de;
    --subtle: #7686a4;
    --cyan: #00c8ff;
    --blue: #168dff;
    --violet: #7f42ff;
    --magenta: #e12cff;
    --teal: #18e0d1;
    --line: rgba(106, 207, 255, 0.24);
    --line-hot: rgba(224, 44, 255, 0.42);
    --shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--text);
    background: radial-gradient(circle at 15% 8%, rgba(0, 200, 255, 0.18), transparent 28%),
                radial-gradient(circle at 84% 2%, rgba(225, 44, 255, 0.18), transparent 26%),
                linear-gradient(180deg, #020511 0%, var(--bg) 45%, #050b1a 100%);
    font-family: Inter, Segoe UI, Arial, sans-serif;
}

a {
    color: inherit;
}

.site-header {
    position: fixed;
    z-index: 20;
    top: 18px;
    left: 50%;
    display: flex;
    width: min(1180px, calc(100% - 32px));
    min-height: 68px;
    transform: translateX(-50%);
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 14px 12px 20px;
    border: 1px solid rgba(120, 215, 255, 0.18);
    border-radius: 16px;
    background: rgba(4, 12, 27, 0.72);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.36), inset 0 0 24px rgba(0, 200, 255, 0.06);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    text-decoration: none;
    white-space: nowrap;
}

.brand-mark-image {
    display: block;
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.brand-name {
    color: #f8fbff;
    font-size: 24px;
    font-weight: 850;
    line-height: 1;
    letter-spacing: 0;
    text-shadow: 0 0 16px rgba(0, 200, 255, 0.28);
}

.brand-tagline {
    color: #b8c8dd;
    font-size: 11px;
    font-weight: 650;
    line-height: 1.1;
}

.accent-live {
    color: var(--magenta);
}

.accent-sing {
    color: var(--violet);
}

.accent-manage {
    color: var(--cyan);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links a {
    min-height: 38px;
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 650;
    text-decoration: none;
}

.nav-links a:hover,
.nav-links .language-switch {
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
}

.language-switch {
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    isolation: isolate;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-image: url('/images/splash-screen.png?v=20260621b');
    background-position: center;
    background-size: cover;
    filter: saturate(1.04) contrast(1.04);
    transform: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: linear-gradient(90deg, rgba(2, 5, 16, 0.78) 0%, rgba(2, 5, 16, 0.42) 42%, rgba(2, 5, 16, 0.2) 100%),
                linear-gradient(180deg, rgba(2, 5, 16, 0.54) 0%, rgba(2, 5, 16, 0.16) 54%, var(--bg) 100%);
}

.hero::after {
    display: none;
}

.hero-content {
    width: min(1180px, calc(100% - 44px));
    margin: 0 auto;
    padding-top: clamp(150px, 22vh, 230px);
    padding-left: clamp(300px, 34vw, 470px);
}

.eyebrow,
.section-kicker {
    margin: 0 0 14px;
    color: var(--cyan);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-shadow: 0 0 18px rgba(0, 200, 255, 0.55);
}

.hero h1 {
    margin: 0;
    max-width: 760px;
    font-size: clamp(56px, 7.8vw, 118px);
    line-height: 0.9;
    letter-spacing: 0;
    text-shadow: 0 0 42px rgba(255, 255, 255, 0.2), 0 0 70px rgba(0, 200, 255, 0.26);
}

.tagline {
    margin: 22px 0 0;
    max-width: 700px;
    font-size: clamp(25px, 3.35vw, 44px);
    line-height: 1.08;
    font-weight: 760;
    color: #ffffff;
}

.lead {
    max-width: 650px;
    margin: 22px 0 0;
    color: #d8e3f5;
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.6;
}

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

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border-radius: 10px;
    color: var(--text);
    font-weight: 800;
    text-decoration: none;
}

.button.primary {
    background: linear-gradient(135deg, var(--cyan), var(--violet) 55%, var(--magenta));
    box-shadow: 0 0 30px rgba(0, 200, 255, 0.28), 0 18px 48px rgba(83, 57, 255, 0.35);
}

.button.ghost {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
}

.hero-strip {
    position: absolute;
    right: 50%;
    bottom: 34px;
    display: grid;
    width: min(1180px, calc(100% - 44px));
    transform: translateX(50%);
    grid-template-columns: 1.35fr repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(120, 215, 255, 0.2);
    border-radius: 16px;
    background: rgba(120, 215, 255, 0.16);
    box-shadow: var(--shadow);
}

.hero-strip span {
    min-height: 72px;
    display: flex;
    align-items: center;
    padding: 18px 20px;
    background: rgba(5, 13, 29, 0.72);
    color: #dce8fb;
    font-weight: 760;
    backdrop-filter: blur(14px);
}

main {
    width: min(1180px, calc(100% - 44px));
    margin: 0 auto;
}

.intro-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 44px;
    align-items: end;
    padding: 90px 0 34px;
}

.intro-section h2 {
    margin: 0;
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1;
    letter-spacing: 0;
}

.intro-section > p {
    margin: 0;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.7;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    padding-bottom: 44px;
}

.feature-panel {
    min-height: 300px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.feature-panel.cyan { border-color: rgba(0, 200, 255, 0.34); }
.feature-panel.violet { border-color: rgba(127, 66, 255, 0.38); }
.feature-panel.magenta { border-color: rgba(225, 44, 255, 0.38); }
.feature-panel.blue { border-color: rgba(22, 141, 255, 0.38); }

.feature-icon {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    margin-bottom: 44px;
    border: 1px solid currentColor;
    border-radius: 14px;
    color: var(--cyan);
    font-size: 24px;
    box-shadow: 0 0 26px rgba(0, 200, 255, 0.25);
}

.feature-panel.violet .feature-icon { color: var(--violet); }
.feature-panel.magenta .feature-icon { color: var(--magenta); }
.feature-panel.blue .feature-icon { color: var(--blue); }

.feature-panel h3 {
    margin: 0 0 12px;
    font-size: 23px;
    line-height: 1.15;
}

.feature-panel p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.page-section {
    scroll-margin-top: 110px;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 22px;
    align-items: stretch;
    padding: 46px 0;
}

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

.split-section.reverse .section-copy {
    order: 2;
}

.section-copy,
.detail-panel,
.system-card,
.preset-stack article,
.account-grid article {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.028));
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.section-copy,
.detail-panel {
    padding: 30px;
}

.section-copy h2,
.account-section h2 {
    margin: 0;
    font-size: clamp(32px, 4.4vw, 58px);
    line-height: 1;
    letter-spacing: 0;
}

.section-copy p,
.detail-panel p,
.account-section p {
    color: var(--muted);
    line-height: 1.65;
}

.section-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.detail-panel h3 {
    margin: 0 0 18px;
    font-size: 24px;
}

.check-list {
    display: grid;
    gap: 14px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    color: var(--muted);
    line-height: 1.55;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--magenta));
    box-shadow: 0 0 16px rgba(0, 200, 255, 0.5);
}

.system-section {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: 18px 0 52px;
}

.system-card {
    padding: 24px;
}

.system-card span,
.preset-stack span {
    color: var(--cyan);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.system-card strong,
.preset-stack strong,
.account-grid strong {
    display: block;
    margin-top: 12px;
    color: var(--text);
    font-size: 22px;
    line-height: 1.18;
}

.system-card p,
.preset-stack p,
.account-grid p {
    color: var(--muted);
    line-height: 1.58;
}

.preset-stack {
    display: grid;
    gap: 14px;
}

.preset-stack article {
    padding: 22px;
}

.preset-stack article:nth-child(2) {
    border-color: rgba(127, 66, 255, 0.38);
}

.preset-stack article:nth-child(3) {
    border-color: rgba(225, 44, 255, 0.38);
}

.account-section {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: 28px;
    align-items: start;
    padding: 46px 0 28px;
}

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

.account-grid article {
    min-height: 190px;
    padding: 22px;
}
.platform-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin: 18px 0 60px;
    padding: 24px 28px;
    border: 1px solid rgba(120, 215, 255, 0.22);
    border-radius: 18px;
    background: var(--panel);
    box-shadow: var(--shadow);
}

.powered-badge {
    display: block;
    width: min(280px, 42vw);
    height: auto;
    flex: 0 0 auto;
}

.platform-band p {
    margin: 0;
    color: var(--muted);
    font-weight: 720;
}

.platform-band a {
    color: var(--cyan);
    font-weight: 820;
    text-decoration: none;
}

@media (max-width: 1180px) {
    .hero-content {
        padding-left: clamp(280px, 32vw, 430px);
    }
}

@media (max-width: 980px) {
    .site-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .nav-links {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 2px;
    }

    .hero-content {
        padding-top: 170px;
        padding-left: 0;
        max-width: min(680px, calc(100% - 44px));
    }

    .hero-strip,
    .intro-section,
    .feature-grid {
        grid-template-columns: 1fr 1fr;
    }

    .split-section,
    .split-section.reverse,
    .system-section,
    .account-section,
    .account-grid {
        grid-template-columns: 1fr;
    }

    .split-section.reverse .section-copy {
        order: 0;
    }

    .hero-strip span:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 680px) {
    .site-header,
    .hero-content,
    .hero-strip,
    main {
        width: min(100% - 24px, 1180px);
    }

    .brand-mark-image {
        width: 40px;
        height: 40px;
    }

    .brand-name {
        font-size: 21px;
    }

    .brand-tagline {
        font-size: 10px;
    }

    .hero {
        min-height: 880px;
    }

    .hero-background {
        background-position: 30% center;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(2, 5, 16, 0.78), rgba(2, 5, 16, 0.28) 48%, var(--bg) 100%);
    }

    .hero-strip,
    .intro-section,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .hero-strip {
        position: relative;
        right: auto;
        bottom: auto;
        margin: 42px auto 0;
        transform: none;
    }

    .hero-strip span {
        min-height: 58px;
    }

    .intro-section {
        padding-top: 58px;
    }

    .feature-panel {
        min-height: 0;
    }

    .section-copy,
    .detail-panel {
        padding: 22px;
    }

    .feature-icon {
        margin-bottom: 28px;
    }

    .platform-band {
        align-items: flex-start;
        flex-direction: column;
    }

    .powered-badge {
        width: min(100%, 300px);
    }
}

.account-page-shell {
    min-height: 100svh;
    display: grid;
    place-items: center;
    padding: 136px 0 78px;
}

.account-page-shell::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background-image: linear-gradient(90deg, rgba(2, 5, 16, 0.86), rgba(2, 5, 16, 0.58)), url('/images/splash-screen.png?v=20260621b');
    background-size: cover;
    background-position: center;
    filter: saturate(1.02) contrast(1.04);
}

.auth-card {
    width: min(620px, 100%);
    padding: clamp(22px, 3vw, 30px);
    border: 1px solid rgba(120, 215, 255, 0.22);
    border-radius: 18px;
    background: rgba(5, 13, 29, 0.82);
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
}

.auth-copy h1 {
    margin: 0;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1;
    letter-spacing: 0;
}

.auth-copy p:not(.section-kicker) {
    margin: 12px 0 22px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
}

.auth-form {
    display: grid;
    gap: 12px;
}

.auth-form label {
    display: grid;
    gap: 6px;
    color: #e7f2ff;
    font-size: 14px;
    font-weight: 750;
}

.auth-form input,
.auth-form select {
    width: 100%;
    min-height: 40px;
    padding: 0 12px;
    border: 1px solid rgba(120, 215, 255, 0.22);
    border-radius: 10px;
    color: var(--text);
    background: rgba(2, 8, 18, 0.78);
    font: 650 14px/1 Inter, Segoe UI, Arial, sans-serif;
    outline: none;
}

.auth-form input:focus,
.auth-form select:focus {
    border-color: rgba(0, 200, 255, 0.74);
    box-shadow: 0 0 0 3px rgba(0, 200, 255, 0.13);
}

.field-error,
.form-error {
    color: #ff8fa3;
    font-size: 13px;
    font-weight: 700;
}

.form-error ul {
    margin: 0;
    padding-left: 18px;
}

.form-success {
    margin: 0 0 14px;
    padding: 12px 14px;
    border: 1px solid rgba(24, 224, 209, 0.38);
    border-radius: 14px;
    color: #d9fffb;
    background: rgba(24, 224, 209, 0.11);
}

.auth-note,
.auth-switch {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.auth-switch a {
    color: var(--cyan);
    font-weight: 800;
    text-decoration: none;
}

.account-actions {
    margin-top: 22px;
}


.account-content .button {
    min-height: 42px;
    padding: 0 18px;
    border-radius: 10px;
}

.account-content .section-kicker {
    margin-bottom: 10px;
    font-size: 11px;
}

@media (max-width: 760px) {
    .account-page-shell {
        padding-top: 124px;
        padding-bottom: 42px;
    }

    .auth-card {
        width: min(100%, calc(100vw - 28px));
    }
}


/* Shared header normalization: keep Index and Account pages visually identical. */
.site-header .brand-mark-image {
    width: 46px;
    height: 46px;
}

.site-header .brand-name {
    font-size: 24px;
    line-height: 1;
}

.site-header .brand-tagline {
    font-size: 11px;
    line-height: 1.1;
}

.site-header .nav-links a {
    min-height: 38px;
    padding: 10px 12px;
    font-size: 14px;
    line-height: 18px;
}

.auth-form input::placeholder {
    color: rgba(185, 200, 222, 0.68);
}

.store-page {
    min-height: 100vh;
    padding-top: 110px;
}

.store-hero-panel {
    align-items: end;
}

.store-hero-panel h1 {
    margin: 0;
    font-size: clamp(2.4rem, 5vw, 5rem);
    line-height: 0.96;
}

.store-filter-panel {
    max-width: 1180px;
    margin: 0 auto 28px;
    padding: 22px;
    border: 1px solid rgba(76, 201, 255, 0.24);
    border-radius: 18px;
    background: rgba(5, 14, 31, 0.78);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.store-filter-form {
    display: grid;
    gap: 14px;
}

.store-filter-form .form-row {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(180px, 0.55fr);
    gap: 12px;
    align-items: end;
}

.store-filter-form label {
    display: grid;
    gap: 7px;
    color: #e7f2ff;
    font-size: 14px;
    font-weight: 780;
}

.store-filter-form input,
.store-filter-form select {
    width: 100%;
    min-height: 44px;
    padding: 0 13px;
    border: 1px solid rgba(120, 215, 255, 0.24);
    border-radius: 10px;
    color: var(--text);
    background: rgba(2, 8, 18, 0.78);
    font: 650 14px/1 Inter, Segoe UI, Arial, sans-serif;
    outline: none;
}

.store-filter-form input:focus,
.store-filter-form select:focus {
    border-color: rgba(0, 200, 255, 0.72);
    box-shadow: 0 0 0 3px rgba(0, 200, 255, 0.13);
}

.store-filter-form button {
    min-height: 44px;
    width: min(260px, 100%);
    border: 0;
    border-radius: 10px;
    color: var(--text);
    font-weight: 850;
    background: linear-gradient(135deg, var(--cyan), var(--violet) 55%, var(--magenta));
    box-shadow: 0 0 28px rgba(0, 200, 255, 0.18);
    cursor: pointer;
}

.preset-public-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 18px;
    padding-top: 0;
}

.preset-public-card {
    border: 1px solid rgba(76, 201, 255, 0.24);
    border-radius: 18px;
    padding: 22px;
    background: rgba(5, 14, 31, 0.78);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.preset-public-card h2 {
    margin: 12px 0 10px;
    font-size: 1.5rem;
}

.preset-public-card p {
    color: rgba(236, 246, 255, 0.78);
}

.preset-card-topline,
.preset-meta-row,
.plugin-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.preset-card-topline span,
.preset-meta-row span {
    border: 1px solid rgba(76, 201, 255, 0.25);
    border-radius: 999px;
    padding: 6px 10px;
    color: rgba(236, 246, 255, 0.84);
    background: rgba(255, 255, 255, 0.045);
    font-size: 0.86rem;
}

.preset-meta-row {
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 16px 0;
}

.plugin-requirements {
    display: grid;
    gap: 8px;
    margin: 18px 0;
}

.plugin-requirements strong {
    color: #ffffff;
}

.plugin-line {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 0;
    color: rgba(236, 246, 255, 0.78);
}

.plugin-line a {
    color: #20d6ff;
    font-weight: 800;
    text-decoration: none;
}

.empty-card {
    grid-column: 1 / -1;
}


@media (max-width: 760px) {
    .store-filter-form .form-row {
        grid-template-columns: 1fr;
    }

    .store-filter-form button {
        width: 100%;
    }
}


.account-portal-shell {
    min-height: 100vh;
    padding-top: 120px;
}

.account-portal-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
    gap: 22px;
    align-items: end;
    padding: 34px;
    border: 1px solid rgba(76, 201, 255, 0.24);
    border-radius: 22px;
    background: rgba(5, 14, 31, 0.78);
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.account-portal-hero h1 {
    margin: 0;
    font-size: clamp(2.5rem, 5vw, 5.2rem);
    line-height: 0.96;
}

.account-portal-hero p:not(.section-kicker),
.empty-copy {
    color: var(--muted);
    line-height: 1.65;
}

.account-identity-card,
.account-portal-card {
    border: 1px solid rgba(76, 201, 255, 0.24);
    border-radius: 18px;
    background: rgba(5, 14, 31, 0.78);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.account-identity-card {
    display: grid;
    gap: 7px;
    padding: 20px;
}

.account-identity-card strong {
    font-size: 1.2rem;
}

.account-identity-card span,
.account-identity-card small {
    color: var(--muted);
    overflow-wrap: anywhere;
}

.account-overview-grid,
.account-section-grid {
    display: grid;
    gap: 18px;
    margin-top: 18px;
}

.account-overview-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
}

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

.account-portal-card {
    padding: 24px;
}

.card-kicker {
    color: var(--cyan);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.card-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 12px 0 18px;
}

.card-title-row h2,
.account-portal-card h2 {
    margin: 10px 0 14px;
    font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.status-pill-public {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 0 12px;
    border: 1px solid rgba(24, 224, 209, 0.34);
    border-radius: 999px;
    color: #d9fffb;
    font-size: 13px;
    font-weight: 850;
    background: rgba(24, 224, 209, 0.1);
}

.account-data-list {
    display: grid;
    gap: 1px;
    overflow: hidden;
    margin: 0 0 20px;
    border: 1px solid rgba(120, 215, 255, 0.12);
    border-radius: 14px;
    background: rgba(120, 215, 255, 0.12);
}

.account-data-list div {
    display: grid;
    grid-template-columns: minmax(120px, 0.4fr) minmax(0, 1fr);
    gap: 12px;
    padding: 12px 14px;
    background: rgba(2, 8, 18, 0.58);
}

.account-data-list dt {
    color: var(--muted);
    font-weight: 760;
}

.account-data-list dd {
    margin: 0;
    color: var(--text);
    overflow-wrap: anywhere;
    font-weight: 800;
}

.credit-balance {
    margin-top: 16px;
    color: #ffffff;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 0.95;
    text-shadow: 0 0 28px rgba(0, 200, 255, 0.2);
}

.account-portal-card button[disabled] {
    opacity: 0.55;
    cursor: not-allowed;
}

@media (max-width: 860px) {
    .account-portal-hero,
    .account-overview-grid,
    .account-section-grid {
        grid-template-columns: 1fr;
    }

    .account-data-list div {
        grid-template-columns: 1fr;
    }
}

.account-dashboard-shell {
    padding-top: 128px;
}

.account-dashboard-topbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 20px;
    align-items: end;
    padding: 28px;
    border: 1px solid rgba(76, 201, 255, 0.24);
    border-radius: 22px;
    background: rgba(5, 14, 31, 0.78);
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.account-dashboard-topbar h1 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1;
}

.account-dashboard-topbar p:not(.section-kicker) {
    max-width: 760px;
    color: var(--muted);
    line-height: 1.65;
}

.compact-identity-card {
    display: flex;
    grid-template-columns: none;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    min-height: 118px;
}

.notification-icon-button {
    position: relative;
    display: inline-flex;
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(76, 201, 255, 0.35);
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(32, 214, 255, 0.16), rgba(201, 40, 255, 0.14));
    box-shadow: 0 0 24px rgba(32, 214, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.notification-glyph {
    font-size: 1.15rem;
    line-height: 1;
}

.notification-icon-button strong {
    position: absolute;
    top: -7px;
    right: -7px;
    min-width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    border: 2px solid rgba(5, 14, 31, 0.95);
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--magenta), var(--cyan));
    font-size: 0.72rem;
    font-weight: 900;
}

.account-dashboard-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 18px;
    margin-top: 18px;
    align-items: start;
}

.account-sidebar,
.account-content-panel {
    border: 1px solid rgba(76, 201, 255, 0.24);
    border-radius: 20px;
    background: rgba(5, 14, 31, 0.78);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.account-sidebar {
    position: sticky;
    top: 104px;
    padding: 18px;
}

.account-sidebar h2 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 1.16rem;
}

.account-sidebar nav {
    display: grid;
    gap: 7px;
}

.account-sidebar a {
    display: flex;
    min-height: 42px;
    align-items: center;
    padding: 0 12px;
    border: 1px solid transparent;
    border-radius: 12px;
    color: var(--muted);
    font-weight: 820;
    text-decoration: none;
}

.account-sidebar a:hover,
.account-sidebar a.active {
    border-color: rgba(76, 201, 255, 0.32);
    color: #ffffff;
    background: linear-gradient(135deg, rgba(32, 214, 255, 0.16), rgba(201, 40, 255, 0.13));
}

.account-content-panel {
    min-height: 520px;
    padding: 26px;
}

.account-panel-heading h2 {
    margin: 8px 0 20px;
    font-size: clamp(1.75rem, 3vw, 2.65rem);
    line-height: 1.05;
}

.overview-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.overview-stat-grid article {
    min-height: 138px;
    padding: 18px;
    border: 1px solid rgba(76, 201, 255, 0.2);
    border-radius: 16px;
    background: rgba(2, 8, 18, 0.48);
}

.overview-stat-grid span {
    color: var(--cyan);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.overview-stat-grid strong {
    display: block;
    margin-top: 12px;
    color: #ffffff;
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    line-height: 1.1;
    overflow-wrap: anywhere;
}

.overview-stat-grid small {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-weight: 760;
}

.compact-credit {
    margin: 8px 0 14px;
    font-size: clamp(2.6rem, 5vw, 4rem);
}

@media (max-width: 900px) {
    .account-dashboard-topbar,
    .account-dashboard-layout {
        grid-template-columns: 1fr;
    }

    .account-sidebar {
        position: static;
    }

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

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

@media (max-width: 640px) {
    .account-dashboard-shell {
        padding-top: 108px;
    }

    .account-dashboard-topbar,
    .account-content-panel {
        padding: 20px;
    }

    .compact-identity-card {
        align-items: flex-start;
    }

    .account-sidebar nav,
    .overview-stat-grid {
        grid-template-columns: 1fr;
    }
}

.account-section-pane {
    display: none;
}

.account-section-pane.active {
    display: block;
}

html.page-loading [data-page-content] {
    opacity: 0.985;
}

#features,
#download,
#store-preset,
#account {
    scroll-margin-top: 112px;
}

.producer-dashboard-button { margin-top: 16px; width: fit-content; }

.release-hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    isolation: isolate;
}

.release-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-image: url('/images/splash-screen.png?v=20260621b');
    background-position: center;
    background-size: cover;
    filter: saturate(1.08) contrast(1.08);
}

.release-hero-shade {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: linear-gradient(90deg, rgba(2, 5, 16, 0.88), rgba(2, 5, 16, 0.58) 45%, rgba(2, 5, 16, 0.26)),
                linear-gradient(180deg, rgba(2, 5, 16, 0.46), rgba(2, 5, 16, 0.2) 58%, var(--bg));
}

.release-hero-inner {
    width: min(1180px, calc(100% - 44px));
    margin: 0 auto;
    padding-top: clamp(150px, 22vh, 210px);
}

.release-hero h1 {
    margin: 0;
    max-width: 900px;
    font-size: clamp(58px, 9vw, 128px);
    line-height: 0.88;
    letter-spacing: 0;
    text-shadow: 0 0 44px rgba(0, 200, 255, 0.26), 0 0 90px rgba(225, 44, 255, 0.14);
}

.release-tagline {
    max-width: 850px;
    margin: 22px 0 0;
    color: #ffffff;
    font-size: clamp(26px, 4vw, 52px);
    font-weight: 850;
    line-height: 1.03;
}

.release-lead {
    max-width: 720px;
    margin: 22px 0 0;
    color: #d8e3f5;
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.62;
}

.release-signal-bar {
    position: absolute;
    right: 50%;
    bottom: 28px;
    display: grid;
    width: min(1180px, calc(100% - 44px));
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    transform: translateX(50%);
    border: 1px solid rgba(120, 215, 255, 0.22);
    border-radius: 14px;
    background: rgba(120, 215, 255, 0.16);
    box-shadow: var(--shadow);
}

.release-signal-bar span {
    min-height: 70px;
    display: flex;
    align-items: center;
    padding: 18px 20px;
    color: #e7f2ff;
    background: rgba(5, 13, 29, 0.72);
    font-weight: 800;
    backdrop-filter: blur(14px);
}

.release-main {
    width: min(1180px, calc(100% - 44px));
}

.release-intro,
.release-workflow,
.release-download,
.release-store,
.release-account {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 24px;
    align-items: stretch;
    padding: 58px 0;
}

.release-intro {
    align-items: end;
    padding-top: 88px;
    padding-bottom: 28px;
}

.release-intro h2,
.release-section-copy h2,
.release-account h2 {
    margin: 0;
    font-size: clamp(34px, 5vw, 66px);
    line-height: 0.98;
    letter-spacing: 0;
}

.release-intro p,
.release-section-copy p,
.release-account p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.68;
}

.release-desk {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding-bottom: 20px;
}

.release-desk article,
.release-feature,
.release-download-card,
.release-preset-columns article,
.release-account-grid article,
.release-steps article {
    border: 1px solid rgba(120, 215, 255, 0.23);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.074), rgba(255, 255, 255, 0.027));
    box-shadow: 0 24px 74px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.release-desk article {
    min-height: 230px;
    padding: 24px;
}

.release-desk span,
.release-feature span,
.release-preset-columns span {
    color: var(--cyan);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.release-desk h3,
.release-feature h3 {
    margin: 18px 0 12px;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.1;
}

.release-desk p,
.release-feature p,
.release-preset-columns p,
.release-account-grid p {
    margin: 0;
    color: var(--muted);
    line-height: 1.62;
}

.release-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding: 14px 0 34px;
}

.release-feature {
    min-height: 250px;
    padding: 24px;
}

.release-feature.cyan { border-color: rgba(0, 200, 255, 0.34); }
.release-feature.violet { border-color: rgba(127, 66, 255, 0.36); }
.release-feature.magenta { border-color: rgba(225, 44, 255, 0.36); }
.release-feature.green { border-color: rgba(24, 224, 209, 0.32); }
.release-feature.blue { border-color: rgba(22, 141, 255, 0.34); }
.release-feature.amber { border-color: rgba(255, 199, 87, 0.34); }

.release-section-copy {
    padding: 30px;
    border: 1px solid rgba(120, 215, 255, 0.23);
    border-radius: 8px;
    background: rgba(5, 13, 29, 0.58);
}

.release-steps,
.release-preset-columns,
.release-account-grid {
    display: grid;
    gap: 14px;
}

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

.release-steps article {
    min-height: 132px;
    padding: 22px;
}

.release-steps strong {
    display: block;
    color: var(--cyan);
    font-size: 34px;
    line-height: 1;
}

.release-steps span {
    display: block;
    margin-top: 18px;
    color: #ffffff;
    font-size: 19px;
    font-weight: 850;
    line-height: 1.2;
}

.release-download-card {
    padding: 28px;
}

.release-download-card img {
    display: block;
    width: min(320px, 100%);
    height: auto;
    margin-bottom: 24px;
}

.release-preset-columns article,
.release-account-grid article {
    padding: 24px;
}

.release-preset-columns strong,
.release-account-grid strong {
    display: block;
    margin: 12px 0 10px;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.15;
}

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

@media (max-width: 980px) {
    .release-signal-bar,
    .release-desk,
    .release-feature-grid,
    .release-intro,
    .release-workflow,
    .release-download,
    .release-store,
    .release-account,
    .release-account-grid {
        grid-template-columns: 1fr;
    }

    .release-signal-bar {
        position: relative;
        right: auto;
        bottom: auto;
        margin: 42px auto 0;
        transform: none;
    }

    .release-hero {
        min-height: 0;
        padding-bottom: 48px;
    }
}

@media (max-width: 680px) {
    .release-hero-inner,
    .release-main,
    .release-signal-bar {
        width: min(100% - 24px, 1180px);
    }

    .release-hero-inner {
        padding-top: 160px;
    }

    .release-section-copy,
    .release-desk article,
    .release-feature,
    .release-download-card,
    .release-preset-columns article,
    .release-account-grid article {
        padding: 20px;
    }

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

.beats-page,
.producer-page {
    width: min(100% - 40px, 1180px);
    margin: 0 auto;
    padding: 42px 0 70px;
}

.beats-hero,
.producer-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 24px;
    align-items: end;
    padding: 54px 0 28px;
}

.beats-hero h1,
.producer-hero h1,
.beats-section-heading h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(34px, 5vw, 64px);
    line-height: 0.98;
    letter-spacing: 0;
}

.beats-hero p,
.producer-hero p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.68;
}

.beats-filter-panel {
    margin: 10px 0 28px;
    padding: 20px;
    border: 1px solid rgba(120, 215, 255, 0.23);
    border-radius: 8px;
    background: rgba(5, 13, 29, 0.66);
}

.beats-filter-panel .store-filter-form {
    align-items: end;
}

.beats-filter-panel label {
    min-width: min(100%, 420px);
}

.beats-section {
    padding: 28px 0;
}

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

.beats-section-heading h2 {
    font-size: clamp(26px, 4vw, 44px);
}

.beats-list {
    display: grid;
    gap: 12px;
}

.beats-list.top-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
}

.beat-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 20px;
    border: 1px solid rgba(120, 215, 255, 0.23);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.074), rgba(255, 255, 255, 0.027));
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.20), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.beat-title-row,
.beat-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.beat-title-row {
    justify-content: space-between;
}

.beat-title-row h3 {
    margin: 0;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.18;
}

.beat-title-row span,
.beat-meta-row span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border: 1px solid rgba(120, 215, 255, 0.18);
    border-radius: 999px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 750;
}

.beat-meta-row {
    margin-top: 10px;
}

.producer-link {
    display: inline-flex;
    margin-top: 12px;
    color: var(--cyan);
    font-weight: 850;
    text-decoration: none;
}

.producer-link:hover {
    text-decoration: underline;
}

.producer-link.muted {
    color: var(--muted);
}

.beat-actions {
    margin: 0;
    display: grid;
    gap: 8px;
    min-width: 170px;
}

.beat-actions form {
    margin: 0;
}

.beat-actions .button {
    width: 100%;
    justify-content: center;
    white-space: nowrap;
}

.producer-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.producer-stats span {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    padding: 10px 14px;
    border: 1px solid rgba(120, 215, 255, 0.23);
    border-radius: 8px;
    background: rgba(5, 13, 29, 0.58);
    color: var(--muted);
}

.producer-stats strong {
    color: #ffffff;
    font-size: 24px;
}

.saved-song-list {
    display: grid;
    gap: 12px;
}

.saved-song-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 16px;
    border: 1px solid rgba(120, 215, 255, 0.20);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
}

.saved-song-card strong,
.saved-song-card span,
.saved-song-card small {
    display: block;
}

.saved-song-card strong {
    color: #ffffff;
    font-size: 18px;
}

.saved-song-card span,
.saved-song-card small {
    margin-top: 6px;
    color: var(--muted);
}

.saved-song-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.saved-song-actions form {
    margin: 0;
}

.support-card textarea,
.support-reply-form textarea {
    width: 100%;
    resize: vertical;
}

.support-ticket-list {
    display: grid;
    gap: 16px;
}

.support-ticket-card {
    border: 1px solid rgba(120, 215, 255, 0.20);
    border-radius: 8px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.04);
}

.support-ticket-card header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.support-ticket-card header strong,
.support-ticket-card header span {
    display: block;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 4px 10px;
    background: rgba(120, 215, 255, 0.12);
    color: #dff7ff;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.support-message-thread {
    display: grid;
    gap: 10px;
    margin-bottom: 14px;
}

.support-message {
    border-left: 3px solid #78d7ff;
    padding: 10px 12px;
    background: rgba(120, 215, 255, 0.08);
    border-radius: 6px;
}

.support-message.admin {
    border-left-color: #54d49a;
    background: rgba(84, 212, 154, 0.08);
}

.support-message p {
    margin: 6px 0;
    white-space: pre-wrap;
}

.support-message small {
    color: var(--muted);
}

.support-reply-form {
    display: grid;
    gap: 10px;
}

.google-login-form {
    margin-bottom: 14px;
}

.google-button {
    width: 100%;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.auth-divider {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 12px;
    align-items: center;
    margin: 6px 0 14px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    height: 1px;
    background: rgba(255, 255, 255, 0.14);
}

.account-security-state {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.account-security-form {
    max-width: 620px;
}

.producer-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 0;
    padding-bottom: 0;
}

.producer-tabs a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 8px;
    color: var(--text);
    text-decoration: none;
    background: rgba(15, 23, 42, 0.42);
}

@media (max-width: 780px) {
    .beats-page,
    .producer-page {
        width: min(100% - 24px, 1180px);
        padding-top: 24px;
    }

    .beats-hero,
    .producer-hero,
    .beats-list.top-list,
    .beat-card {
        grid-template-columns: 1fr;
    }

    .beat-actions .button {
        width: 100%;
        justify-content: center;
    }

    .saved-song-card,
    .saved-song-actions {
        grid-template-columns: 1fr;
        display: grid;
    }
}

