: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);
    --site-width: min(1280px, calc(100% - 40px));
}

input[type="file"] {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(76, 201, 255, 0.24);
    border-radius: 12px;
    color: var(--muted);
    background: rgba(2, 8, 18, 0.68);
    font: inherit;
    line-height: 46px;
    cursor: pointer;
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

input[type="file"]::file-selector-button {
    min-height: 46px;
    margin: 0 14px 0 0;
    padding: 0 18px;
    border: 0;
    border-right: 1px solid rgba(76, 201, 255, 0.24);
    color: #fff;
    background: linear-gradient(135deg, rgba(0, 200, 255, 0.28), rgba(127, 66, 255, 0.34));
    font: 800 13px/1 Inter, "Segoe UI", Arial, sans-serif;
    cursor: pointer;
    transition: filter 0.18s ease;
}

input[type="file"]:hover::file-selector-button {
    filter: brightness(1.18);
}

input[type="file"]:focus-visible {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(0, 200, 255, 0.16);
}

input[type="file"]:disabled,
input[type="file"]:disabled::file-selector-button {
    cursor: not-allowed;
    opacity: 0.62;
}

.cookie-consent[hidden] {
    display: none !important;
}

.cookie-consent {
    position: fixed;
    right: 22px;
    bottom: 22px;
    left: 22px;
    z-index: 10000;
    pointer-events: none;
}

.cookie-consent__panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
    width: min(1080px, 100%);
    margin: 0 auto;
    padding: 20px;
    border: 1px solid rgba(33, 213, 255, 0.28);
    border-radius: 18px;
    background:
        radial-gradient(circle at 4% 0%, rgba(33, 213, 255, 0.18), transparent 18rem),
        linear-gradient(135deg, rgba(5, 14, 31, 0.96), rgba(17, 11, 45, 0.96));
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(18px);
    pointer-events: auto;
}

.cookie-consent__copy {
    display: grid;
    gap: 7px;
    min-width: 0;
}

.cookie-consent__copy strong {
    color: #ffffff;
    font-size: 1.02rem;
}

.cookie-consent__copy p {
    max-width: 760px;
    margin: 0;
    color: rgba(248, 251, 255, 0.78);
    line-height: 1.55;
}

.cookie-consent__copy a {
    width: fit-content;
    color: #21d5ff;
    font-weight: 850;
    text-decoration: none;
}

.cookie-consent__copy a:hover {
    color: #ffffff;
}

.cookie-consent__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.cookie-consent__button {
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    color: #ffffff;
    font: inherit;
    font-weight: 850;
    cursor: pointer;
}

.cookie-consent__button--primary {
    border-color: transparent;
    background: linear-gradient(135deg, var(--cyan), var(--violet) 55%, var(--magenta));
    box-shadow: 0 12px 32px rgba(83, 57, 255, 0.34);
}

.cookie-consent__button--ghost {
    background: rgba(255, 255, 255, 0.08);
}

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

@media (max-width: 720px) {
    .cookie-consent {
        right: 12px;
        bottom: 12px;
        left: 12px;
    }

    .cookie-consent__panel {
        grid-template-columns: 1fr;
        padding: 16px;
    }

    .cookie-consent__actions {
        justify-content: stretch;
    }

    .cookie-consent__button {
        flex: 1 1 160px;
    }
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: clip;
    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: relative;
    z-index: 100;
    display: flex;
    width: var(--site-width);
    min-height: 68px;
    margin: 18px auto 0;
    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);
}

.nav-links .nav-account-link {
    display: inline-flex;
    max-width: 190px;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(120, 215, 255, 0.16);
    background: rgba(255, 255, 255, 0.035);
}

.nav-account-cluster {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 4px;
    padding: 4px;
    border: 1px solid rgba(120, 215, 255, 0.14);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.028);
}

.nav-links .nav-notification-button {
    position: relative;
    display: inline-grid;
    width: 38px;
    min-height: 38px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(120, 215, 255, 0.18);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
}

.nav-links .nav-notification-button:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.09);
}

.nav-notification-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 17px;
    height: 17px;
    padding: 0 5px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    background: linear-gradient(135deg, var(--cyan), var(--magenta));
    color: white;
    font-size: 10px;
    font-weight: 900;
    line-height: 15px;
    text-align: center;
}

.nav-account-menu {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-account-trigger {
    border: 1px solid rgba(120, 215, 255, 0.16);
    color: var(--muted);
    font: inherit;
    appearance: none;
    cursor: pointer;
}

.nav-account-caret {
    flex: 0 0 auto;
    color: var(--cyan);
    font-size: 14px;
    line-height: 1;
}

.nav-account-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 30;
    display: grid;
    width: 210px;
    gap: 4px;
    padding: 8px;
    border: 1px solid rgba(120, 215, 255, 0.24);
    border-radius: 14px;
    background: rgba(4, 12, 27, 0.98);
    box-shadow: 0 20px 58px rgba(0, 0, 0, 0.42), inset 0 0 22px rgba(0, 200, 255, 0.05);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
    visibility: hidden;
}

.nav-account-dropdown::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 100%;
    width: 100%;
    height: 12px;
}

.nav-account-menu:hover .nav-account-dropdown,
.nav-account-menu:focus-within .nav-account-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
}

.nav-links .nav-account-trigger:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
}

.nav-links .nav-account-dropdown a {
    display: flex;
    min-height: 36px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 9px 10px;
}

.nav-dropdown-badge {
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--cyan), var(--magenta));
    color: white;
    font-size: 11px;
    font-weight: 900;
    line-height: 18px;
    text-align: center;
}

.nav-account-name {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav-notification-icon {
    position: relative;
    display: inline-grid;
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    place-items: center;
    color: #ffd55d;
}

.nav-notification-icon svg {
    display: block;
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.nav-notification-icon span {
    position: absolute;
    top: -7px;
    right: -8px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: linear-gradient(135deg, var(--cyan), var(--magenta));
    color: white;
    font-size: 10px;
    font-weight: 900;
    line-height: 14px;
    text-align: center;
}

.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(40px, 8vh, 90px);
    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: var(--site-width);
    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: var(--site-width);
    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-copy {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.plugin-name {
    color: #ffffff;
    font-weight: 800;
}

.plugin-vendor,
.plugin-link-pending {
    color: rgba(207, 222, 238, 0.72);
    font-size: 0.82rem;
}

.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);
    gap: 20px;
    align-items: start;
    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 > div {
    max-width: 820px;
}

.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;
}

.account-heading-with-action {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 18px;
}

.account-heading-with-action h2 {
    margin-bottom: 0;
}

.account-license-focus {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
    gap: 14px;
    margin-bottom: 16px;
}

.account-license-focus > div {
    min-height: 168px;
    padding: 22px;
    border: 1px solid rgba(76, 201, 255, 0.24);
    border-radius: 18px;
    background:
        radial-gradient(circle at 10% 0%, rgba(32, 214, 255, 0.14), transparent 34%),
        rgba(2, 8, 18, 0.52);
}

.account-license-focus span {
    display: block;
    color: var(--cyan);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.account-license-focus strong {
    display: block;
    margin-top: 14px;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
}

.account-license-focus small {
    display: block;
    margin-top: 12px;
    color: var(--muted);
    font-weight: 760;
}

.account-license-price {
    display: grid;
    align-content: start;
    gap: 14px;
    background:
        linear-gradient(135deg, rgba(32, 214, 255, 0.16), rgba(201, 40, 255, 0.15)),
        rgba(2, 8, 18, 0.56) !important;
}

.account-license-price em {
    color: var(--muted);
    font-size: 1.3rem;
    font-style: normal;
}

.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,
    .account-license-focus {
        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));
    }
}

.support-page-shell {
    width: var(--site-width);
    margin: 0 auto;
    padding: 128px 0 86px;
}

.support-hero {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    justify-content: space-between;
    padding: 30px;
    border: 1px solid rgba(76, 201, 255, 0.24);
    border-radius: 22px;
    background:
        radial-gradient(circle at 10% 0%, rgba(32, 214, 255, 0.16), transparent 34%),
        rgba(5, 14, 31, 0.78);
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.support-hero h1 {
    max-width: 780px;
    margin: 8px 0 14px;
    color: #ffffff;
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    line-height: 0.98;
}

.support-hero p:not(.section-kicker) {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.65;
}

.support-layout {
    display: grid;
    grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
    gap: 18px;
    margin-top: 18px;
}

.support-success-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-top: 18px;
    padding: 24px;
    border: 1px solid rgba(74, 222, 128, 0.35);
    border-radius: 20px;
    background: rgba(5, 39, 28, 0.68);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.support-success-card h2 {
    margin: 6px 0 10px;
    color: #ffffff;
    font-size: clamp(1.35rem, 2.5vw, 1.8rem);
}

.support-success-card p {
    margin: 4px 0;
    color: var(--muted);
}

.support-success-icon {
    display: grid;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 999px;
    color: #02140d;
    background: #4ade80;
    font-size: 1.35rem;
    font-weight: 900;
}

.support-reference {
    display: inline-block;
    margin-left: 6px;
    color: #ffffff;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    letter-spacing: 0.04em;
}

.support-guide-card,
.support-form-card {
    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);
}

.support-guide-card {
    padding: 24px;
}

.support-guide-card h2 {
    margin: 8px 0 18px;
    color: #ffffff;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    line-height: 1.1;
}

.support-guide-card ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.support-guide-card li {
    position: relative;
    padding-left: 22px;
    color: var(--muted);
    line-height: 1.55;
}

.support-guide-card li::before {
    position: absolute;
    left: 0;
    top: 0.63em;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--cyan), var(--magenta));
    content: "";
}

.support-guide-note {
    display: grid;
    gap: 6px;
    margin-top: 24px;
    padding: 16px;
    border: 1px solid rgba(76, 201, 255, 0.2);
    border-radius: 16px;
    background: rgba(2, 8, 18, 0.48);
}

.support-guide-note strong {
    color: #ffffff;
}

.support-guide-note span {
    color: var(--muted);
}

.support-form-card {
    padding: 26px;
}

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

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

.support-form label {
    display: grid;
    gap: 8px;
    color: #ffffff;
    font-weight: 820;
}

.support-form input,
.support-form select,
.support-form textarea {
    width: 100%;
    border: 1px solid rgba(76, 201, 255, 0.24);
    border-radius: 12px;
    color: #ffffff;
    background: rgba(2, 8, 18, 0.68);
    font: inherit;
    font-weight: 720;
    outline: none;
}

.support-form input,
.support-form select {
    min-height: 48px;
    padding: 0 14px;
}

.support-form textarea {
    min-height: 220px;
    padding: 14px;
    resize: vertical;
    line-height: 1.55;
}

.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
    border-color: rgba(32, 214, 255, 0.65);
    box-shadow: 0 0 0 4px rgba(32, 214, 255, 0.1);
}

.support-form ::placeholder {
    color: rgba(199, 211, 230, 0.55);
}

.support-submit-button {
    min-height: 52px;
    justify-content: center;
}

.support-privacy-note {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

.support-privacy-note a {
    color: var(--cyan);
}

.support-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.support-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.guest-ticket-page-error {
    margin: 18px 0 0;
}

.guest-ticket-access-card,
.guest-ticket-summary,
.guest-ticket-thread,
.guest-ticket-reply-card,
.guest-ticket-closed-note {
    margin-top: 18px;
    border: 1px solid rgba(76, 201, 255, 0.24);
    border-radius: 20px;
    background: rgba(5, 14, 31, 0.82);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.guest-ticket-access-card,
.guest-ticket-reply-card {
    width: min(760px, 100%);
    padding: 26px;
}

.guest-ticket-access-card h2,
.guest-ticket-reply-card h2,
.guest-ticket-summary h2 {
    margin: 7px 0 12px;
    color: #ffffff;
}

.guest-ticket-access-card > p:not(.card-kicker) {
    color: var(--muted);
}

.guest-ticket-summary {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    justify-content: space-between;
    padding: 26px;
}

.guest-ticket-reference {
    margin: 0;
    color: var(--muted);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.guest-ticket-status {
    flex: 0 0 auto;
    padding: 7px 11px;
    border: 1px solid rgba(32, 214, 255, 0.32);
    border-radius: 999px;
    color: var(--cyan);
    background: rgba(32, 214, 255, 0.1);
    font-size: 0.82rem;
    font-weight: 850;
}

.guest-ticket-status.status-closed {
    border-color: rgba(148, 163, 184, 0.3);
    color: #cbd5e1;
    background: rgba(148, 163, 184, 0.1);
}

.guest-ticket-status.status-waitingforuser {
    border-color: rgba(250, 204, 21, 0.32);
    color: #fde047;
    background: rgba(250, 204, 21, 0.1);
}

.guest-ticket-thread {
    display: grid;
    gap: 14px;
    padding: 22px;
}

.guest-ticket-message {
    width: min(82%, 760px);
    padding: 16px;
    border: 1px solid rgba(76, 201, 255, 0.18);
    border-radius: 16px;
    background: rgba(2, 8, 18, 0.65);
}

.guest-ticket-message.user {
    margin-left: auto;
    border-color: rgba(187, 61, 255, 0.28);
    background: rgba(74, 20, 105, 0.25);
}

.guest-ticket-message header {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
}

.guest-ticket-message strong {
    color: #ffffff;
}

.guest-ticket-message time {
    color: var(--muted);
    font-size: 0.8rem;
}

.guest-ticket-message p {
    margin: 9px 0 0;
    color: #dbe7f8;
    white-space: pre-wrap;
}

.guest-ticket-closed-note {
    padding: 18px 22px;
    color: var(--muted);
}

@media (max-width: 860px) {
    .support-page-shell {
        width: min(100% - 28px, 1180px);
        padding-top: 108px;
    }

    .support-hero,
    .support-layout {
        grid-template-columns: 1fr;
    }

    .support-hero {
        display: grid;
        align-items: start;
        padding: 22px;
    }

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

    .guest-ticket-summary,
    .guest-ticket-message header {
        display: grid;
    }

    .guest-ticket-message {
        width: 100%;
    }
}

@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;
}

.account-role-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.producer-dashboard-button { width: fit-content; }

.release-hero {
    position: relative;
    min-height: clamp(720px, 88svh, 920px);
    padding: clamp(132px, 15vh, 168px) 0 82px;
    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:
        radial-gradient(circle at 16% 42%, rgba(0, 200, 255, 0.14), transparent 26%),
        linear-gradient(90deg, rgba(2, 5, 16, 0.92), rgba(2, 5, 16, 0.7) 46%, rgba(2, 5, 16, 0.38)),
        linear-gradient(180deg, rgba(2, 5, 16, 0.2), rgba(2, 5, 16, 0.38) 68%, var(--bg));
}

.release-hero-inner {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 44px));
    margin: 0 auto;
    padding: clamp(34px, 4vw, 58px);
    border: 1px solid rgba(120, 215, 255, 0.18);
    border-radius: 18px;
    background: linear-gradient(90deg, rgba(3, 7, 20, 0.84), rgba(3, 7, 20, 0.62) 70%, rgba(3, 7, 20, 0.18));
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.release-hero h1 {
    margin: 0;
    max-width: 780px;
    font-size: clamp(58px, 8vw, 116px);
    line-height: 0.9;
    letter-spacing: 0;
    text-shadow: 0 0 44px rgba(0, 200, 255, 0.26), 0 0 90px rgba(225, 44, 255, 0.14);
    overflow-wrap: normal;
}

.release-tagline {
    max-width: 880px;
    margin: 24px 0 0;
    color: #ffffff;
    font-size: clamp(28px, 4vw, 54px);
    font-weight: 850;
    line-height: 1.04;
}

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

.hero-trial-pill {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
    width: fit-content;
    max-width: 760px;
    margin-top: 26px;
    padding: 12px 16px;
    border: 1px solid rgba(0, 229, 255, 0.28);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.13), rgba(205, 42, 255, 0.12));
    color: #d9e8ff;
    box-shadow: 0 18px 48px rgba(0, 200, 255, 0.12);
}

.hero-trial-pill strong {
    color: #ffffff;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.hero-trial-pill span {
    color: rgba(236, 246, 255, 0.74);
    font-size: 0.92rem;
    line-height: 1.4;
}

.release-main {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 44px));
    margin: 0 auto;
    padding: 76px 0 104px;
}

.release-main::before {
    content: "";
    position: absolute;
    inset: 0 50% auto;
    width: 100vw;
    height: 100%;
    z-index: -1;
    transform: translateX(-50%);
    background:
        radial-gradient(circle at 20% 8%, rgba(0, 200, 255, 0.08), transparent 28%),
        linear-gradient(180deg, rgba(4, 12, 28, 0.68), rgba(2, 5, 16, 0));
    pointer-events: none;
}

.release-ai-slide,
.ila-vad-spotlight,
.release-workflow,
.release-intro,
.release-account,
.release-store {
    margin: 0 0 44px;
}

.release-ai-slide,
.ila-vad-spotlight,
.release-workflow,
.release-account,
.release-store {
    padding: clamp(28px, 4vw, 42px);
    border: 1px solid rgba(120, 215, 255, 0.22);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(6, 15, 34, 0.78), rgba(5, 9, 24, 0.62));
    box-shadow: 0 28px 82px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.ila-vad-spotlight {
    position: relative;
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
    gap: clamp(36px, 6vw, 78px);
    align-items: center;
    min-height: 660px;
    overflow: hidden;
    background:
        radial-gradient(circle at 19% 48%, rgba(0, 218, 255, 0.2), transparent 30%),
        radial-gradient(circle at 84% 12%, rgba(73, 91, 255, 0.16), transparent 34%),
        linear-gradient(135deg, rgba(4, 18, 39, 0.96), rgba(4, 8, 23, 0.88));
}

.ila-vad-spotlight::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(86, 210, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(86, 210, 255, 0.035) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: linear-gradient(90deg, #000, transparent 72%);
    pointer-events: none;
}

.ila-vad-spotlight-visual,
.ila-vad-spotlight-copy {
    position: relative;
    z-index: 1;
}

.ila-vad-spotlight-visual {
    display: grid;
    place-items: center;
    min-height: 590px;
}

.ila-vad-spotlight-visual > img {
    position: relative;
    z-index: 1;
    display: block;
    width: min(100%, 344px);
    height: auto;
    border: 1px solid rgba(102, 223, 255, 0.48);
    border-radius: 9px;
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.56), 0 0 54px rgba(0, 204, 255, 0.16);
}

.ila-vad-ui-halo {
    position: absolute;
    width: min(92%, 430px);
    aspect-ratio: 1;
    border: 1px solid rgba(0, 218, 255, 0.13);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 207, 255, 0.22), rgba(37, 64, 255, 0.06) 48%, transparent 70%);
    box-shadow: 0 0 100px rgba(0, 207, 255, 0.14);
}

.ila-vad-wordmark {
    width: 240px;
    height: 76px;
    margin-bottom: 22px;
    border: 1px solid rgba(94, 223, 255, 0.2);
    border-radius: 7px;
    background-color: #06101e;
    overflow: hidden;
}

.ila-vad-wordmark img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 44%;
    transform: none;
}

.ila-vad-kicker {
    margin: 0;
    color: #5de5ff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.ila-vad-spotlight-copy h2 {
    max-width: 670px;
    margin: 14px 0 0;
    color: #fff;
    font-size: clamp(38px, 4.7vw, 64px);
    line-height: 0.98;
    letter-spacing: -0.035em;
}

.ila-vad-spotlight-copy > p:not(.ila-vad-kicker) {
    max-width: 660px;
    margin: 17px 0 0;
    color: #bdcce0;
    font-size: 17px;
    line-height: 1.66;
}

.ila-vad-spotlight-copy .ila-vad-lead {
    color: #e6f1ff;
    font-size: 19px;
}

.ila-vad-feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px 20px;
    margin: 27px 0 30px;
    padding: 0;
    list-style: none;
}

.ila-vad-feature-list li {
    position: relative;
    padding-left: 27px;
    color: #f2f8ff;
    font-weight: 750;
}

.ila-vad-feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27dcff;
    font-weight: 950;
    text-shadow: 0 0 16px rgba(39, 220, 255, 0.6);
}

.ila-vad-cta span {
    margin-left: 5px;
}

.product-beta-notice {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem 0.8rem;
    margin: 1.15rem 0;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(250, 204, 21, 0.34);
    border-radius: 14px;
    background: rgba(250, 204, 21, 0.07);
}

.product-beta-notice p {
    flex: 1 1 260px;
    margin: 0;
    color: var(--text, #f8fafc);
}

.product-beta-notice a {
    color: #67e8f9;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.product-beta-badge {
    display: inline-flex;
    align-items: center;
    min-height: 1.75rem;
    padding: 0.25rem 0.62rem;
    border-radius: 999px;
    background: #facc15;
    color: #111827;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.09em;
    white-space: nowrap;
}

.release-ai-slide {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.74fr);
    gap: clamp(24px, 4vw, 52px);
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 72% 30%, rgba(210, 38, 242, 0.18), transparent 34%),
        radial-gradient(circle at 18% 15%, rgba(0, 200, 255, 0.16), transparent 34%),
        linear-gradient(135deg, rgba(7, 20, 45, 0.9), rgba(14, 15, 42, 0.72));
}

.release-ai-slide::before {
    content: "";
    position: absolute;
    inset: auto -8% -34% 18%;
    height: 260px;
    background:
        repeating-linear-gradient(90deg, rgba(0, 200, 255, 0.18) 0 2px, transparent 2px 38px),
        linear-gradient(180deg, transparent, rgba(0, 200, 255, 0.08));
    opacity: 0.32;
    transform: skewY(-7deg);
    pointer-events: none;
}

.release-ai-copy,
.release-ai-visual {
    position: relative;
    z-index: 1;
}

.ai-badge-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: #b7c7df;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ai-new-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border: 1px solid rgba(0, 200, 255, 0.42);
    border-radius: 999px;
    color: #06131f;
    background: linear-gradient(135deg, #20d7ff, #c934ff);
    box-shadow: 0 12px 34px rgba(0, 200, 255, 0.26);
}

.release-ai-copy h2,
.technology-hero h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(38px, 5vw, 72px);
    line-height: 0.96;
    letter-spacing: 0;
}

.release-ai-copy p,
.technology-lead,
.technology-section-lead,
.technology-note,
.technology-footnote {
    color: #d6e4f7;
    font-size: 18px;
    line-height: 1.66;
}

/* iLA VAD technology page */
.ila-vad-page-hero {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
    min-height: 690px;
    background:
        radial-gradient(circle at 82% 22%, rgba(0, 218, 255, 0.18), transparent 30%),
        radial-gradient(circle at 9% 18%, rgba(79, 77, 255, 0.13), transparent 34%),
        linear-gradient(145deg, rgba(6, 20, 44, 0.96), rgba(4, 8, 23, 0.82));
}

.ila-vad-page-hero .technology-hero-copy {
    position: relative;
    z-index: 2;
}

.ila-vad-page-hero h1 {
    font-size: clamp(42px, 5vw, 70px);
}

.ila-vad-hero-product {
    position: relative;
    display: grid;
    grid-template-rows: auto auto;
    place-items: center;
    align-content: center;
    gap: 22px;
    align-self: stretch;
    min-height: 650px;
    padding: 18px 0;
}

.ila-vad-page-panel {
    position: relative;
    z-index: 1;
    display: block;
    width: min(100%, 335px);
    height: auto;
    margin: 0;
    border: 1px solid rgba(90, 222, 255, 0.46);
    border-radius: 9px;
    box-shadow: 0 38px 100px rgba(0, 0, 0, 0.6), 0 0 70px rgba(0, 208, 255, 0.14);
}

.ila-vad-page-logo {
    position: relative;
    z-index: 2;
    top: auto;
    width: min(88%, 310px);
    height: 96px;
    border: 1px solid rgba(94, 223, 255, 0.25);
    border-radius: 12px;
    background-color: #06101e;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.ila-vad-page-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 44%;
    transform: none;
}

.ila-vad-ecosystem-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: none;
}

.ila-vad-setup-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
}

.ila-vad-setup-steps article,
.ila-vad-capability-grid article {
    padding: 24px;
    border: 1px solid rgba(120, 215, 255, 0.22);
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(35, 211, 255, 0.1), rgba(78, 69, 255, 0.055));
}

.ila-vad-setup-steps span,
.ila-vad-capability-grid span {
    display: block;
    color: #4ce4ff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ila-vad-setup-steps strong,
.ila-vad-capability-grid strong {
    display: block;
    margin-top: 13px;
    color: #fff;
    font-size: 19px;
    line-height: 1.35;
}

.ila-vad-no-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.ila-vad-no-list span {
    padding: 9px 13px;
    border: 1px solid rgba(120, 215, 255, 0.18);
    border-radius: 999px;
    color: #b9c9df;
    background: rgba(2, 7, 19, 0.4);
    font-size: 14px;
}

.ila-vad-plug-sing {
    margin: 28px 0 0;
    color: #fff;
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 950;
    letter-spacing: -0.03em;
    text-shadow: 0 0 28px rgba(36, 221, 255, 0.25);
}

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

.ila-vad-capability-grid article {
    min-height: 140px;
}

.ila-vad-compatibility {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 64px);
}

.ila-vad-compatibility-copy p {
    margin: 0;
    color: #d6e4f7;
    font-size: 17px;
    line-height: 1.7;
}

.ila-vad-compatibility-copy p + p {
    margin-top: 18px;
}

.ila-vad-ecosystem {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
    gap: clamp(28px, 5vw, 60px);
    align-items: center;
}

.ila-vad-ecosystem-mark {
    height: 170px;
    border: 1px solid rgba(91, 222, 255, 0.24);
    border-radius: 16px;
    background: #06101e;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255,255,255,0.06);
    overflow: hidden;
}

.ila-vad-closing {
    position: relative;
    margin-bottom: 34px;
    padding: clamp(42px, 7vw, 84px);
    border: 1px solid rgba(71, 224, 255, 0.28);
    border-radius: 16px;
    background:
        radial-gradient(circle at 50% 0%, rgba(0, 216, 255, 0.19), transparent 42%),
        linear-gradient(145deg, rgba(5, 23, 48, 0.96), rgba(6, 8, 25, 0.88));
    text-align: center;
    overflow: hidden;
}

.ila-vad-closing p {
    margin: 0 0 13px;
    color: #55e4ff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.ila-vad-closing h2 {
    max-width: 900px;
    margin: 0 auto 30px;
    color: #fff;
    font-size: clamp(38px, 6vw, 74px);
    line-height: 1;
    letter-spacing: -0.04em;
}

.ila-vad-closing h2 span {
    display: block;
    color: #adc2dd;
}

.release-ai-copy p {
    max-width: 720px;
    margin: 20px 0 0;
}

.release-ai-copy .section-actions {
    margin-top: 28px;
}

.release-ai-visual {
    min-height: 330px;
    border: 1px solid rgba(0, 200, 255, 0.24);
    border-radius: 18px;
    background:
        radial-gradient(circle at 50% 42%, rgba(105, 89, 255, 0.24), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 30px 80px rgba(0, 0, 0, 0.28);
    overflow: hidden;
}

.ai-spectrum {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 36px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 8px;
    align-items: end;
    height: 96px;
}

.ai-spectrum span {
    display: block;
    border-radius: 999px 999px 5px 5px;
    background: linear-gradient(180deg, #22d4ff, #8858ff 56%, #e127ff);
    box-shadow: 0 0 24px rgba(0, 200, 255, 0.26);
    animation: aiBars 2.8s ease-in-out infinite;
}

.ai-spectrum span:nth-child(1) { height: 28%; animation-delay: -0.1s; }
.ai-spectrum span:nth-child(2) { height: 58%; animation-delay: -0.5s; }
.ai-spectrum span:nth-child(3) { height: 42%; animation-delay: -0.9s; }
.ai-spectrum span:nth-child(4) { height: 78%; animation-delay: -1.3s; }
.ai-spectrum span:nth-child(5) { height: 52%; animation-delay: -1.7s; }
.ai-spectrum span:nth-child(6) { height: 88%; animation-delay: -2.1s; }
.ai-spectrum span:nth-child(7) { height: 64%; animation-delay: -2.5s; }
.ai-spectrum span:nth-child(8) { height: 36%; animation-delay: -0.3s; }
.ai-spectrum span:nth-child(9) { height: 72%; animation-delay: -0.7s; }
.ai-spectrum span:nth-child(10) { height: 48%; animation-delay: -1.1s; }
.ai-spectrum span:nth-child(11) { height: 82%; animation-delay: -1.5s; }
.ai-spectrum span:nth-child(12) { height: 30%; animation-delay: -1.9s; }

.ai-chroma-ring {
    position: absolute;
    top: 34px;
    left: 50%;
    width: 184px;
    height: 184px;
    border: 1px solid rgba(122, 216, 255, 0.24);
    border-radius: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(0, 200, 255, 0.08), transparent 62%);
}

.ai-chroma-ring i {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 10px;
    margin: -5px 0 0 -5px;
    border-radius: 50%;
    background: #21d7ff;
    box-shadow: 0 0 18px rgba(0, 200, 255, 0.68);
    transform: rotate(calc(var(--n) * 30deg)) translateY(-92px);
}

.ai-chroma-ring i:nth-child(1) { --n: 0; }
.ai-chroma-ring i:nth-child(2) { --n: 1; }
.ai-chroma-ring i:nth-child(3) { --n: 2; }
.ai-chroma-ring i:nth-child(4) { --n: 3; }
.ai-chroma-ring i:nth-child(5) { --n: 4; }
.ai-chroma-ring i:nth-child(6) { --n: 5; }
.ai-chroma-ring i:nth-child(7) { --n: 6; }
.ai-chroma-ring i:nth-child(8) { --n: 7; }
.ai-chroma-ring i:nth-child(9) { --n: 8; }
.ai-chroma-ring i:nth-child(10) { --n: 9; }
.ai-chroma-ring i:nth-child(11) { --n: 10; }
.ai-chroma-ring i:nth-child(12) { --n: 11; }

.ai-result-card {
    position: absolute;
    left: 50%;
    top: 105px;
    width: 180px;
    padding: 18px;
    border: 1px solid rgba(225, 44, 255, 0.32);
    border-radius: 14px;
    background: rgba(3, 9, 22, 0.82);
    text-align: center;
    transform: translateX(-50%);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.ai-result-card span,
.ai-result-card small {
    display: block;
    color: #9fb2ca;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ai-result-card strong {
    display: block;
    margin: 8px 0;
    color: #ffffff;
    font-size: 30px;
}

@keyframes aiBars {
    0%, 100% { transform: scaleY(0.72); opacity: 0.74; }
    50% { transform: scaleY(1.08); opacity: 1; }
}

.release-intro {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 34px;
    align-items: end;
    padding: 26px 0 4px;
}

.release-store {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: 24px;
    align-items: stretch;
}

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

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

.release-workflow-copy,
.release-account-copy {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 34px;
    align-items: end;
    margin-bottom: 24px;
}

.release-workflow-copy p,
.release-account-copy p {
    max-width: 650px;
    margin: 0;
}

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

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

.release-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 44px;
}

.release-desk article,
.release-feature,
.release-preset-columns article,
.release-account-grid article,
.release-steps article {
    border: 1px solid rgba(120, 215, 255, 0.21);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.074), rgba(255, 255, 255, 0.027));
    box-shadow: 0 22px 64px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

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

.release-desk article {
    min-height: 210px;
}

.release-feature {
    min-height: 228px;
}

.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: 23px;
    line-height: 1.12;
}

.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.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: 0;
    border: 0;
    background: transparent;
}

.release-steps {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: stretch;
    padding: 20px 24px;
    gap: 16px;
    border: 1px solid rgba(120, 215, 255, 0.22);
    border-radius: 12px;
    background: linear-gradient(90deg, rgba(5, 13, 29, 0.85), rgba(10, 16, 38, 0.7));
}

.release-steps article {
    position: relative;
    min-height: 64px;
    padding: 0 24px 0 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.release-steps article:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 2px;
    width: 14px;
    height: 14px;
    transform: translateY(-50%);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%2300c8ff" stroke-width="2.8" stroke-linecap="round" stroke-linejoin="round"><line x1="4" y1="12" x2="20" y2="12"/><polyline points="13 5 20 12 13 19"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    filter: drop-shadow(0 0 6px rgba(0, 200, 255, 0.6));
}

.release-steps strong {
    display: inline-flex;
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #19b7ff, #d926f2);
    font-size: 17px;
    line-height: 1;
}

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

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

.release-preset-columns.compact article {
    min-height: 0;
}

.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));
}

.release-account-grid article {
    min-height: 154px;
}

@media (max-width: 980px) {
    .release-hero {
        min-height: 0;
        padding-bottom: 58px;
    }

    .release-desk,
    .release-feature-grid,
    .release-intro,
    .release-store,
    .release-account-grid,
    .release-workflow-copy,
    .release-account-copy {
        grid-template-columns: 1fr;
    }

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

    .release-steps article:not(:last-child)::after {
        display: none;
    }
}

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

    .release-hero {
        padding-top: 132px;
    }

    .release-hero-inner,
    .release-workflow,
    .release-account,
    .release-store,
    .release-desk article,
    .release-feature,
    .release-preset-columns article,
    .release-account-grid article {
        padding: 20px;
    }

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

    .release-steps article {
        padding-right: 0;
    }
}

.technology-page {
    width: min(1180px, calc(100% - 44px));
    margin: 0 auto;
    padding: 56px 0 100px;
}

.technology-hero,
.technology-section {
    margin-bottom: 34px;
    border: 1px solid rgba(120, 215, 255, 0.22);
    border-radius: 16px;
    background:
        radial-gradient(circle at 12% 12%, rgba(0, 200, 255, 0.1), transparent 32%),
        linear-gradient(180deg, rgba(7, 18, 42, 0.86), rgba(4, 9, 24, 0.7));
    box-shadow: 0 28px 82px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.technology-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.72fr);
    gap: clamp(24px, 4vw, 52px);
    align-items: center;
    padding: clamp(32px, 5vw, 56px);
    overflow: hidden;
}

.technology-section {
    padding: clamp(28px, 4vw, 46px);
}

.technology-lead {
    max-width: 790px;
    margin: 22px 0 0;
}

.technology-note {
    max-width: 760px;
    margin: 18px 0 0;
    color: #aebdd3;
    font-size: 16px;
}

.technology-signal-panel {
    position: relative;
    min-height: 360px;
    border: 1px solid rgba(0, 200, 255, 0.24);
    border-radius: 18px;
    background:
        radial-gradient(circle at 50% 44%, rgba(210, 38, 242, 0.16), transparent 42%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.074), rgba(255, 255, 255, 0.02));
    overflow: hidden;
}

.signal-grid {
    position: absolute;
    inset: 34px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 6px;
    align-items: end;
}

.signal-grid span {
    min-height: 32px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(31, 215, 255, 0.88), rgba(134, 86, 255, 0.78), rgba(225, 44, 255, 0.72));
    opacity: 0.72;
}

.signal-grid span:nth-child(3n) { min-height: 136px; }
.signal-grid span:nth-child(4n) { min-height: 206px; }
.signal-grid span:nth-child(5n) { min-height: 86px; }

.signal-core {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 212px;
    min-height: 154px;
    display: grid;
    place-items: center;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(3, 9, 22, 0.86);
    text-align: center;
    transform: translate(-50%, -50%);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.4);
}

.signal-core span {
    color: var(--cyan);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.signal-core strong {
    color: #ffffff;
    font-size: 25px;
}

.signal-core small,
.technology-footnote {
    color: #aebdd3;
}

.chroma-strip {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 26px;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.chroma-strip i {
    min-height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(120, 215, 255, 0.22);
    border-radius: 8px;
    color: #ffffff;
    font-style: normal;
    font-weight: 900;
    background: rgba(5, 13, 29, 0.74);
}

.technology-section h2 {
    max-width: 900px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1;
}

.technology-copy-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 22px;
}

.technology-copy-grid p,
.technology-section-lead {
    margin: 0;
    color: #d6e4f7;
    line-height: 1.68;
    font-size: 17px;
}

.technology-section-lead {
    max-width: 820px;
    margin-top: 18px;
}

.ai-flow {
    margin-top: 28px;
    display: grid;
    gap: 14px;
}

.ai-flow-step,
.ai-flow-decision,
.ai-flow-branches article,
.benefit-grid article,
.tech-card-flow article,
.faq-grid article {
    border: 1px solid rgba(120, 215, 255, 0.22);
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.074), rgba(255, 255, 255, 0.027));
}

.ai-flow-step,
.ai-flow-decision {
    padding: 18px 20px;
    color: #ffffff;
    font-weight: 900;
}

.ai-flow-decision {
    border-color: rgba(225, 44, 255, 0.32);
    background: linear-gradient(135deg, rgba(0, 200, 255, 0.08), rgba(225, 44, 255, 0.11));
}

.ai-flow-final {
    border-color: rgba(32, 215, 255, 0.34);
    background: linear-gradient(135deg, rgba(32, 215, 255, 0.10), rgba(140, 85, 255, 0.12));
    color: #dce9fb;
    font-size: 16px;
    line-height: 1.55;
}

.ai-flow-arrow {
    color: var(--cyan);
    font-size: 26px;
    font-weight: 900;
    text-align: center;
}

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

.ai-flow-branches article,
.benefit-grid article,
.tech-card-flow article,
.faq-grid article {
    padding: 22px;
}

.ai-flow-branches span,
.tech-card-flow span {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    color: #06131f;
    background: linear-gradient(135deg, #20d7ff, #c934ff);
    font-size: 12px;
    font-weight: 900;
}

.ai-flow-branches strong,
.ai-flow-branches small,
.tech-card-flow strong {
    display: block;
}

.ai-flow-branches strong {
    margin: 14px 0 8px;
    color: #ffffff;
    font-size: 21px;
}

.ai-flow-branches small {
    color: #c4d1e5;
    font-size: 15px;
    line-height: 1.5;
}

.benefit-grid,
.faq-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.benefit-grid article {
    color: #ffffff;
    font-weight: 900;
    min-height: 106px;
}

.technology-model-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 26px;
}

.technology-model-grid article {
    min-height: 176px;
    padding: 24px;
    border: 1px solid rgba(120, 215, 255, 0.22);
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(32, 215, 255, 0.10), rgba(201, 52, 255, 0.08));
}

.technology-model-grid span {
    display: block;
    color: #ffffff;
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 0 22px rgba(32, 215, 255, 0.32);
}

.technology-model-grid strong {
    display: block;
    margin-top: 14px;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.technology-model-grid p {
    margin: 12px 0 0;
    color: #c4d1e5;
    line-height: 1.55;
}

.tech-card-flow {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
}

.tech-card-flow article {
    position: relative;
    min-height: 150px;
}

.tech-card-flow article:not(:last-child)::after {
    content: "=>";
    position: absolute;
    top: 50%;
    right: -14px;
    color: var(--cyan);
    font-weight: 900;
    transform: translateY(-50%);
}

.tech-card-flow strong {
    margin-top: 18px;
    color: #ffffff;
    line-height: 1.22;
}

.technology-footnote {
    max-width: 760px;
    margin: 24px 0 0;
    line-height: 1.64;
}

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

.faq-grid h3 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 21px;
}

.faq-grid p {
    margin: 0;
    color: #c4d1e5;
    line-height: 1.62;
}

@media (max-width: 980px) {
    .release-ai-slide,
    .ila-vad-spotlight,
    .technology-hero,
    .technology-copy-grid,
    .ai-flow-branches,
    .benefit-grid,
    .technology-model-grid,
    .tech-card-flow,
    .faq-grid,
    .ila-vad-setup-steps,
    .ila-vad-capability-grid,
    .ila-vad-compatibility,
    .ila-vad-ecosystem {
        grid-template-columns: 1fr;
    }

    .ila-vad-spotlight-visual {
        min-height: 520px;
    }

    .ila-vad-spotlight-visual > img {
        width: min(100%, 306px);
    }

    .ila-vad-hero-product {
        min-height: 680px;
        gap: 20px;
    }

    .ila-vad-page-panel {
        width: min(100%, 350px);
    }

    .ila-vad-ecosystem-mark {
        height: 160px;
    }

    .release-ai-visual,
    .technology-signal-panel {
        min-height: 300px;
    }

    .tech-card-flow article:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 680px) {
    .technology-page {
        width: min(100% - 24px, 1180px);
        padding: 34px 0 70px;
    }

    .release-ai-slide,
    .ila-vad-spotlight,
    .technology-hero,
    .technology-section {
        padding: 22px;
    }

    .release-ai-copy h2,
    .technology-hero h1 {
        font-size: clamp(34px, 12vw, 54px);
        overflow-wrap: anywhere;
    }

    .release-ai-visual,
    .technology-signal-panel {
        min-height: 270px;
    }

    .ila-vad-spotlight {
        gap: 22px;
    }

    .ila-vad-spotlight-visual {
        min-height: 470px;
    }

    .ila-vad-feature-list {
        grid-template-columns: 1fr;
    }

    .ila-vad-page-hero h1 {
        font-size: clamp(36px, 11vw, 54px);
    }

    .ila-vad-hero-product {
        min-height: 620px;
        padding: 8px 0;
    }

    .ila-vad-page-panel {
        width: min(100%, 310px);
    }

    .ila-vad-page-logo {
        height: 88px;
    }

    .ila-vad-ecosystem-mark {
        height: 130px;
    }

    .ai-chroma-ring {
        transform: translateX(-50%) scale(0.82);
    }

    .technology-section h2 {
        font-size: clamp(30px, 10vw, 44px);
    }
}

.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;
}

.producer-follow-form {
    margin-top: 18px;
}

.producer-follow-form .button {
    min-width: 160px;
}

.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: 8px;
}

.beats-list.top-list {
    grid-template-columns: minmax(0, 1fr);
}

.beat-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 12px 14px;
    border: 1px solid rgba(120, 215, 255, 0.23);
    border-radius: 8px;
    background: rgba(8, 18, 38, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.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: 16px;
    line-height: 1.24;
    letter-spacing: 0;
}

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

.beat-meta-row {
    margin-top: 7px;
    gap: 6px;
}

.beat-plays {
    color: #d8e9ff !important;
    border-color: rgba(120, 215, 255, 0.26) !important;
    background: rgba(60, 130, 190, 0.12);
}

.producer-link {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    margin-top: 0;
    color: var(--cyan);
    font-size: 12px;
    font-weight: 850;
    text-decoration: none;
}

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

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

.beat-actions {
    margin: 0;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: flex-end;
    min-width: 112px;
}

.beat-actions form {
    margin: 0;
}

.beat-actions .button {
    min-height: 34px;
    padding: 8px 14px;
    justify-content: center;
    white-space: nowrap;
    font-size: 13px;
}

.beat-open-url {
    gap: 7px;
}

.beat-open-url span {
    font-size: 15px;
    line-height: 1;
}

.youtube-source {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 34px;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.055);
    color: #e9f2ff;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.youtube-source svg {
    width: 21px;
    height: 21px;
    flex: 0 0 auto;
}

.youtube-mark {
    fill: #ff0033;
}

.youtube-play {
    fill: #ffffff;
}

.karakey-notice {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    margin-top: 34px;
    padding: 24px;
    border: 1px solid rgba(120, 215, 255, 0.22);
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(12, 42, 74, 0.54), rgba(8, 18, 38, 0.82)),
        rgba(8, 18, 38, 0.74);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.karakey-notice-icon {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(53, 211, 255, 0.36);
    border-radius: 11px;
    background: rgba(53, 211, 255, 0.1);
    color: var(--cyan);
}

.karakey-notice-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.karakey-notice .section-kicker {
    margin: 0 0 7px;
}

.karakey-notice h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(20px, 3vw, 27px);
    letter-spacing: -0.02em;
}

.karakey-notice p:last-child {
    max-width: 950px;
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.72;
}

.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;
}

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

.account-device-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.75fr);
    gap: 18px;
    align-items: start;
    padding: 16px;
    border: 1px solid rgba(120, 215, 255, 0.20);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
}

.account-device-card strong,
.account-device-card span,
.account-device-card small {
    display: block;
}

.account-device-card strong {
    color: #ffffff;
    font-size: 18px;
}

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

.account-device-card small {
    overflow-wrap: anywhere;
}

.account-device-card dl {
    display: grid;
    gap: 8px;
    margin: 0;
}

.account-device-card dl div {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
}

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

.account-device-card dd {
    margin: 0;
    color: var(--text);
    font-weight: 800;
}

@media (max-width: 760px) {
    .account-device-card {
        grid-template-columns: 1fr;
    }
}

.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.unread {
    border-color: rgba(0, 216, 255, 0.48);
    background: rgba(0, 216, 255, 0.07);
}

.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%;
    min-height: 44px;
    justify-content: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #f8fbff;
    background: rgba(255, 255, 255, 0.11);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 26px rgba(0, 0, 0, 0.18);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0;
    transition: transform 140ms ease, border-color 140ms ease, background 140ms ease, box-shadow 140ms ease;
}

.google-button:hover {
    transform: translateY(-1px);
    border-color: rgba(120, 215, 255, 0.42);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 14px 30px rgba(20, 177, 255, 0.12);
}

.google-button:focus-visible {
    outline: 2px solid rgba(120, 215, 255, 0.78);
    outline-offset: 3px;
}

.google-mark {
    display: inline-grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.28);
    flex: 0 0 auto;
}

.google-mark svg {
    width: 18px;
    height: 18px;
    display: block;
}

.license-page {
    width: var(--site-width);
    margin: 0 auto;
    padding: 138px 0 84px;
}

.license-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
    gap: 24px;
    align-items: stretch;
}

.license-hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(42px, 7vw, 82px);
    line-height: 0.94;
    letter-spacing: 0;
}

.license-hero p {
    max-width: 760px;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.65;
}

.license-status-card,
.license-plan-card,
.license-next-card,
.license-flow {
    border: 1px solid rgba(120, 215, 255, 0.22);
    border-radius: 18px;
    background: rgba(10, 18, 36, 0.78);
    box-shadow: var(--shadow);
}

.license-status-card {
    display: grid;
    align-content: center;
    gap: 8px;
    padding: 28px;
}

.license-status-card span,
.license-price-row span {
    color: #23d7ff;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.license-status-card strong {
    color: #ffffff;
    font-size: 2.2rem;
    line-height: 1;
}

.license-status-card small,
.license-price-row small {
    color: var(--muted);
    line-height: 1.5;
}

.license-pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 34px;
}

.license-plan-card,
.license-next-card {
    padding: clamp(24px, 4vw, 42px);
}

.license-plan-card.featured {
    border-color: rgba(34, 214, 255, 0.42);
    background: linear-gradient(145deg, rgba(10, 18, 36, 0.92), rgba(29, 20, 58, 0.72));
}

.license-plan-header h2,
.license-next-card h2,
.license-flow h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.05;
}

.license-plan-header p,
.license-next-card p {
    color: var(--muted);
    line-height: 1.65;
}

.license-price-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 28px 0;
}

.license-price-row.single {
    grid-template-columns: minmax(0, 1fr);
}

.license-price-row div {
    min-height: 132px;
    padding: 20px;
    border: 1px solid rgba(120, 215, 255, 0.18);
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.22);
}

.license-price-row strong {
    display: block;
    margin: 14px 0 4px;
    color: #ffffff;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1;
}

.license-feature-detail {
    align-items: start;
}

.license-feature-detail strong,
.license-feature-detail span {
    display: block;
}

.license-feature-detail strong {
    color: #ffffff;
}

.license-feature-detail span {
    margin-top: 4px;
    color: var(--muted);
    line-height: 1.55;
}

.license-feature-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: #dbe8fa;
}

.license-feature-list li {
    position: relative;
    padding-left: 28px;
    line-height: 1.5;
}

.license-feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #1fb6ff, #d42cff);
    box-shadow: 0 0 18px rgba(31, 182, 255, 0.36);
}

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

.license-next-card {
    display: grid;
    align-content: start;
    gap: 18px;
}

.license-payment-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(138px, 1fr));
    gap: 12px;
    margin-top: 2px;
}

.payment-logo-chip {
    min-height: 74px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 16px;
    border: 1px solid rgba(120, 215, 255, 0.18);
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-weight: 900;
    letter-spacing: 0;
}

.payment-logo-chip img {
    display: block;
    max-width: 118px;
    max-height: 42px;
    object-fit: contain;
}

.payment-logo-chip.paypal {
    background: linear-gradient(145deg, rgba(0, 48, 135, 0.44), rgba(0, 112, 186, 0.2));
}

.payment-logo-chip.zalopay {
    background: linear-gradient(145deg, rgba(0, 87, 255, 0.32), rgba(0, 177, 255, 0.16));
}

.payment-logo-chip.zalopay img {
    max-width: 112px;
    max-height: 42px;
    padding: 6px 8px;
    border-radius: 10px;
    background: #ffffff;
}

.payment-logo-chip.bankqr {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(52, 211, 153, 0.1));
}

.payment-logo-chip.bankqr img {
    max-width: 124px;
    max-height: 44px;
    width: auto;
    height: auto;
}

.payment-logo-chip.visa {
    color: #ffffff;
    font-size: 1.24rem;
    background: linear-gradient(145deg, rgba(20, 78, 188, 0.46), rgba(28, 35, 78, 0.24));
}

.payment-logo-chip.mastercard {
    background: linear-gradient(145deg, rgba(235, 0, 27, 0.16), rgba(247, 158, 27, 0.12));
}

.payment-logo-chip.momo {
    background: linear-gradient(145deg, rgba(176, 0, 116, 0.5), rgba(99, 24, 142, 0.28));
}

.payment-logo-chip.vnpay {
    background: linear-gradient(145deg, rgba(0, 154, 216, 0.38), rgba(233, 32, 45, 0.16));
}

.license-payment-note {
    display: grid;
    gap: 6px;
    padding: 16px 18px;
    border: 1px solid rgba(120, 215, 255, 0.14);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
}

.license-payment-note span {
    color: #23d7ff;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.license-payment-note strong {
    color: #ffffff;
}

.license-payment-note small {
    color: var(--muted);
    line-height: 1.5;
}

.license-payment-list {
    display: grid;
    gap: 6px;
    padding: 16px;
    border: 1px solid rgba(120, 215, 255, 0.18);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
}

.license-next-card .license-payment-list {
    display: none;
}

.license-payment-list span:first-child {
    color: #ffffff;
    font-weight: 900;
}

.license-payment-list span:last-child {
    color: var(--muted);
}

.license-payment-list.muted {
    opacity: 0.72;
}

.license-flow {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
    gap: 24px;
    align-items: center;
    margin-top: 34px;
    padding: clamp(28px, 4vw, 42px);
}

.license-flow-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.license-flow-steps article {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: center;
    padding: 16px;
    border: 1px solid rgba(120, 215, 255, 0.18);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
}

.license-flow-steps strong {
    display: inline-grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #1fb6ff, #d42cff);
}

@media (max-width: 880px) {
    .license-page {
        width: min(100% - 28px, 1180px);
        padding-top: 124px;
    }

    .license-hero,
    .license-pricing-grid,
    .license-flow,
    .license-price-row,
    .license-flow-steps {
        grid-template-columns: 1fr;
    }
}

.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);
}

.producer-tabs a.is-active {
    border-color: rgba(34, 211, 238, 0.72);
    color: #ffffff;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.36), rgba(168, 85, 247, 0.28));
    box-shadow: 0 12px 32px rgba(14, 165, 233, 0.16);
}

.producer-tab-panel[hidden] {
    display: none !important;
}

@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;
    }

    .beat-actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        min-width: 0;
    }

    .beat-actions form + .youtube-source + form {
        grid-column: 1 / -1;
    }

    .youtube-source {
        justify-content: center;
    }

    .karakey-notice {
        grid-template-columns: 1fr;
        padding: 20px;
    }

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

.site-footer-band {
    margin-bottom: 0;
    padding: 42px 24px;
}

.site-footer-inner {
    width: min(1120px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.6fr) minmax(180px, 0.8fr);
    gap: 28px;
    align-items: start;
}

.site-footer-brand,
.site-footer-company,
.site-footer-links {
    min-width: 0;
}

.site-footer-brand .powered-badge {
    width: min(260px, 100%);
    margin-bottom: 14px;
}

.site-footer-tagline,
.site-footer-owner,
.site-footer-company p {
    margin: 0 0 8px;
    color: var(--muted);
    font-weight: 650;
    line-height: 1.55;
}

.site-footer-company strong {
    color: #ffffff;
}

.site-footer-company span {
    color: rgba(236, 246, 255, 0.72);
}

.footer-separator {
    margin: 0 6px;
    color: rgba(236, 246, 255, 0.55);
}

.site-footer-links {
    display: grid;
    gap: 10px;
}

.site-footer-links a,
.site-footer-company a {
    color: var(--cyan);
    font-weight: 820;
    text-decoration: none;
}

.site-footer-links a:hover,
.site-footer-company a:hover {
    text-decoration: underline;
}

.legal-page {
    width: var(--site-width);
    margin: 0 auto;
    padding: 150px 0 72px;
}

.legal-hero {
    margin-bottom: 36px;
}

.legal-hero h1 {
    margin: 8px 0 10px;
    color: #ffffff;
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    line-height: 1.05;
}

.legal-content {
    line-height: 1.75;
}

.legal-content h2 {
    margin-top: 36px;
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 1.35rem;
}

.legal-content p,
.legal-content li {
    color: rgba(236, 246, 255, 0.88);
}

.legal-content ul {
    padding-left: 1.25rem;
}

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

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 860px) {
    .site-footer-inner {
        grid-template-columns: 1fr;
    }

    .site-footer-links {
        display: flex;
        flex-wrap: wrap;
        gap: 12px 18px;
    }
}

.site-footer {
    position: relative;
    overflow: hidden;
    margin-top: 88px;
    border-top: 1px solid rgba(120, 215, 255, 0.16);
    background: #020511;
    color: var(--text);
}

.site-footer-grid {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-image:
        linear-gradient(rgba(0, 200, 255, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 200, 255, 0.12) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(180deg, #000 0%, transparent 100%);
    pointer-events: none;
}

.site-footer-inner,
.site-footer .site-footer-inner {
    position: relative;
    width: var(--site-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 60px 0 38px;
}

.site-footer-top {
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
    gap: 36px;
    align-items: start;
}

.site-footer-brand-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.site-footer-logo {
    display: inline-block;
    max-width: 230px;
}

.site-footer-logo img {
    display: block;
    width: 100%;
    height: auto;
}

.site-footer-desc {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.site-footer-corporate-card {
    padding: 22px 24px;
    border: 1px solid rgba(120, 215, 255, 0.22);
    border-radius: 18px;
    background: radial-gradient(circle at 0% 0%, rgba(0, 200, 255, 0.08), transparent 16rem),
                rgba(8, 20, 42, 0.65);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
}

.corporate-badge {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 850;
    letter-spacing: 0.02em;
}

.corporate-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

.corporate-details p {
    margin: 0;
}

.corporate-details strong {
    color: rgba(255, 255, 255, 0.92);
}

.corporate-details a {
    color: var(--cyan);
    text-decoration: none;
}

.corporate-details a:hover {
    text-decoration: underline;
}

.corporate-details .sep {
    margin: 0 6px;
    color: rgba(255, 255, 255, 0.3);
}

.site-footer-columns {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer-columns nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer-columns h2 {
    margin: 0 0 6px;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 850;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.site-footer-columns a {
    color: var(--muted);
    font-size: 0.92rem;
    text-decoration: none;
    transition: color 0.18s ease;
}

.site-footer-columns a:hover {
    color: var(--cyan);
}

.site-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 10px;
    color: var(--subtle);
    font-size: 0.88rem;
}

.site-footer-copyright {
    margin: 0;
    max-width: 800px;
    line-height: 1.55;
}

.product-identity {
    display: block;
    margin-top: 4px;
    font-size: 0.82rem;
    color: var(--subtle);
}

.site-footer-preferences {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-footer-preferences .lang-label {
    color: var(--muted);
    font-weight: 700;
}

.site-footer-preferences .language-switch {
    color: var(--muted);
    font-weight: 700;
    text-decoration: none;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid transparent;
    transition: all 0.18s ease;
}

.site-footer-preferences .language-switch.active {
    color: #ffffff;
    background: rgba(0, 200, 255, 0.18);
    border-color: rgba(0, 200, 255, 0.35);
}

@media (max-width: 980px) {
    .site-footer-top {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 640px) {
    .site-footer-columns {
        grid-template-columns: 1fr;
    }

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

    .site-footer-legal-inline {
        justify-content: flex-start;
    }
}

@media (max-width: 560px) {
    .site-footer-columns {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
.download-page {
    width: var(--site-width);
    margin: 0 auto;
    padding: 148px 0 84px;
    color: rgba(236, 246, 255, 0.92);
}

.download-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) 360px;
    gap: 28px;
    align-items: stretch;
    min-height: 420px;
    padding: 42px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background:
        radial-gradient(circle at 18% 18%, rgba(0, 229, 255, 0.18), transparent 34%),
        radial-gradient(circle at 82% 22%, rgba(255, 46, 214, 0.16), transparent 30%),
        linear-gradient(135deg, rgba(10, 16, 34, 0.96), rgba(7, 10, 24, 0.98));
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

.download-hero-bg {
    position: absolute;
    inset: auto -80px -140px auto;
    width: 520px;
    height: 520px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.18), transparent 64%);
    filter: blur(8px);
    pointer-events: none;
}

.download-hero-copy,
.download-summary-card,
.download-card {
    position: relative;
    z-index: 1;
}

.download-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.download-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 30px;
    padding: 7px 12px;
    border: 1px solid rgba(0, 229, 255, 0.28);
    border-radius: 999px;
    background: rgba(0, 229, 255, 0.08);
    color: rgba(236, 246, 255, 0.9);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
}

.download-badge.subtle {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(236, 246, 255, 0.72);
}

.download-badge.trial {
    border-color: rgba(205, 42, 255, 0.34);
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.14), rgba(205, 42, 255, 0.18));
    color: #ffffff;
}

.download-hero h1 {
    max-width: 760px;
    margin: 8px 0 18px;
    color: #ffffff;
    font-size: clamp(2.5rem, 6vw, 5.4rem);
    line-height: 0.95;
    letter-spacing: 0;
}

.download-lead,
.download-hero-copy > p:not(.section-kicker) {
    max-width: 720px;
    margin: 0;
    color: rgba(236, 246, 255, 0.76);
    font-size: 1.08rem;
    line-height: 1.75;
}

.download-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-top: 30px;
}

.download-main-button {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    min-width: 230px;
    padding: 17px 22px;
    border: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--cyan), var(--magenta));
    color: #06101f;
    font: inherit;
    font-weight: 950;
    cursor: pointer;
    box-shadow: 0 18px 42px rgba(0, 229, 255, 0.22);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.download-main-button span {
    font-size: 1rem;
}

.download-main-button small {
    color: rgba(6, 16, 31, 0.72);
    font-size: 0.78rem;
    font-weight: 850;
}

.download-main-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 24px 56px rgba(255, 46, 214, 0.22);
}

.download-secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 20px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(236, 246, 255, 0.9);
    font-weight: 850;
    text-decoration: none;
    transition: background 0.18s ease, transform 0.18s ease;
}

.download-secondary-button:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
}

.download-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.download-trust-row span {
    display: inline-flex;
    align-items: center;
    padding: 8px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.055);
    color: rgba(236, 246, 255, 0.64);
    font-size: 0.78rem;
    font-weight: 750;
}

.download-summary-card {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045));
    backdrop-filter: blur(18px);
}

.summary-top span {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--cyan);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.summary-top strong {
    display: block;
    color: #ffffff;
    font-size: clamp(2.1rem, 4vw, 3.6rem);
    line-height: 1;
    letter-spacing: 0;
}

.download-summary-card dl {
    display: grid;
    gap: 14px;
    margin: 28px 0 0;
}

.download-summary-card dl div {
    display: grid;
    gap: 4px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.download-summary-card dt {
    color: rgba(236, 246, 255, 0.48);
    font-size: 0.74rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.download-summary-card dd {
    margin: 0;
    color: rgba(236, 246, 255, 0.88);
    font-weight: 780;
}

.download-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    gap: 24px;
    margin-top: 24px;
}

.download-grid.secondary {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
}

.download-card {
    min-width: 0;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.105);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
}

.card-heading {
    margin-bottom: 18px;
}

.download-card h2 {
    margin: 6px 0 0;
    color: #ffffff;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    line-height: 1.15;
    letter-spacing: 0;
}

.download-card p {
    color: rgba(236, 246, 255, 0.72);
    line-height: 1.7;
}

.download-detail-list {
    display: grid;
    gap: 0;
    margin: 0;
}

.download-detail-list div {
    display: grid;
    grid-template-columns: 148px minmax(0, 1fr);
    gap: 18px;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.download-detail-list div:first-child {
    border-top: 0;
    padding-top: 0;
}

.download-detail-list dt {
    color: rgba(236, 246, 255, 0.48);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.download-detail-list dd {
    min-width: 0;
    margin: 0;
    color: rgba(236, 246, 255, 0.9);
    font-weight: 760;
    overflow-wrap: anywhere;
}

.download-detail-list .file-name {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
    font-size: 0.92rem;
}

.checksum-box {
    display: grid;
    gap: 10px;
    margin-top: 18px;
    padding: 16px;
    border: 1px solid rgba(0, 229, 255, 0.18);
    border-radius: 18px;
    background:
        radial-gradient(circle at top left, rgba(0, 229, 255, 0.12), transparent 42%),
        rgba(0, 0, 0, 0.2);
}

.checksum-title-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}

.checksum-box span {
    color: var(--cyan);
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.12em;
}

.checksum-box code {
    color: rgba(236, 246, 255, 0.92);
    font-size: 0.82rem;
    line-height: 1.7;
    overflow-wrap: anywhere;
}

.copy-checksum {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(236, 246, 255, 0.82);
    padding: 6px 10px;
    font-size: 0.72rem;
    font-weight: 850;
    cursor: pointer;
}

.download-command {
    margin: 16px 0 0;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.28);
    color: rgba(236, 246, 255, 0.82);
    overflow-x: auto;
}

.download-command code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
    font-size: 0.86rem;
}

.download-note-list,
.download-step-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding-left: 1.15rem;
    color: rgba(236, 246, 255, 0.8);
    line-height: 1.68;
}

.download-note-list li::marker {
    color: var(--cyan);
}

.download-note-language {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px 16px;
    margin: 0 0 16px;
    padding: 10px 12px;
    border: 1px solid rgba(65, 210, 255, 0.2);
    border-radius: 10px;
    color: var(--muted);
    background: rgba(2, 12, 28, 0.5);
    font-size: 12px;
}

.download-note-language strong {
    color: var(--text);
}

.download-note-language small {
    color: #f4c77a;
}

.download-step-list li::marker {
    color: var(--magenta);
    font-weight: 950;
}

.download-alert {
    margin-top: 22px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 199, 87, 0.42);
    border-radius: 16px;
    background: rgba(255, 199, 87, 0.1);
    color: #ffe5a3;
    font-weight: 780;
}

.download-muted {
    color: rgba(236, 246, 255, 0.62) !important;
}

.download-requirements {
    margin-top: 24px;
}

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

.requirements-grid div {
    min-height: 96px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.045);
}

.requirements-grid span {
    display: block;
    margin-bottom: 10px;
    color: rgba(236, 246, 255, 0.46);
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.requirements-grid strong {
    color: rgba(236, 246, 255, 0.9);
    font-size: 0.98rem;
    line-height: 1.35;
}

.checkout-page {
    width: var(--site-width);
    margin: 0 auto;
    padding: 138px 0 90px;
}

.checkout-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 28px;
    align-items: stretch;
    margin-bottom: 28px;
}

.checkout-hero h1 {
    max-width: 760px;
    margin: 0 0 16px;
    color: var(--text);
    font-size: clamp(3.2rem, 6vw, 6rem);
    line-height: 0.94;
}

.checkout-hero p {
    max-width: 740px;
    color: rgba(232, 243, 255, 0.82);
    font-size: 1.1rem;
    line-height: 1.75;
}

.checkout-summary-card,
.checkout-plan-card,
.checkout-method-card,
.checkout-alert {
    border: 1px solid rgba(120, 215, 255, 0.22);
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(9, 21, 42, 0.94), rgba(15, 16, 43, 0.92));
    box-shadow: inset 0 0 28px rgba(0, 200, 255, 0.035);
}

.checkout-summary-card {
    display: grid;
    align-content: center;
    gap: 8px;
    padding: 28px;
}

.checkout-summary-card span,
.checkout-price-pair span {
    color: var(--cyan);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.checkout-summary-card strong {
    color: var(--text);
    font-size: 2.1rem;
    line-height: 1;
}

.checkout-summary-card small,
.checkout-method span,
.checkout-feature-list {
    color: rgba(232, 243, 255, 0.72);
}

.checkout-alert {
    margin-bottom: 24px;
    padding: 16px 18px;
    color: rgba(232, 243, 255, 0.9);
}

.checkout-alert.error {
    border-color: rgba(255, 109, 141, 0.58);
    background: rgba(62, 20, 46, 0.62);
    color: #ffd4dd;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.checkout-plan-card,
.checkout-method-card {
    padding: 34px;
}

.checkout-plan-card h2,
.checkout-method-card h2 {
    margin: 0 0 18px;
    color: var(--text);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.05;
}

.checkout-price-pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 24px 0;
}

.checkout-price-pair div {
    padding: 20px;
    border: 1px solid rgba(120, 215, 255, 0.18);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.035);
}

.checkout-price-pair div:only-child {
    grid-column: 1 / -1;
}

.checkout-price-pair strong {
    display: block;
    margin: 14px 0 4px;
    color: var(--text);
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1;
}

.checkout-price-pair small {
    color: rgba(232, 243, 255, 0.7);
}

.checkout-feature-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding-left: 20px;
    line-height: 1.55;
}

.checkout-method-card {
    display: grid;
    align-content: start;
    gap: 16px;
}

.checkout-method-card h2 {
    max-width: none;
}

.checkout-method {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 18px;
    border: 1px solid rgba(120, 215, 255, 0.18);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.035);
}

.checkout-method strong {
    display: block;
    margin-bottom: 6px;
    color: var(--text);
    font-size: 1.05rem;
}

.checkout-method em {
    color: rgba(232, 243, 255, 0.52);
    font-style: normal;
    font-weight: 800;
}

.primary-method {
    grid-template-columns: 64px minmax(0, 1fr) max-content;
    min-height: 116px;
    padding: 20px 22px;
    border-color: rgba(0, 210, 255, 0.38);
    background: linear-gradient(145deg, rgba(26, 50, 86, 0.58), rgba(17, 21, 48, 0.7));
}

.paypal-method {
    border-color: rgba(33, 151, 255, 0.68);
    background:
        radial-gradient(circle at 18% 20%, rgba(0, 210, 255, 0.18), transparent 34%),
        linear-gradient(145deg, rgba(9, 29, 58, 0.92), rgba(16, 20, 54, 0.96));
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22), inset 0 0 24px rgba(33, 151, 255, 0.08);
}

.zalopay-method {
    border-color: rgba(0, 210, 255, 0.48);
    background:
        radial-gradient(circle at 18% 20%, rgba(0, 126, 255, 0.16), transparent 36%),
        linear-gradient(145deg, rgba(10, 34, 64, 0.92), rgba(18, 24, 58, 0.96));
}

.manual-method {
    border-color: rgba(0, 210, 255, 0.42);
    background:
        radial-gradient(circle at 12% 20%, rgba(80, 220, 255, 0.16), transparent 34%),
        linear-gradient(145deg, rgba(10, 34, 57, 0.92), rgba(17, 22, 48, 0.96));
}

.checkout-provider-mark {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 28px rgba(0, 156, 222, 0.28);
}

.checkout-provider-mark img {
    display: block;
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.zalopay-mark img {
    width: 46px;
    height: auto;
    max-height: 22px;
}

.manual-mark {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
}

.manual-mark img {
    width: 52px;
    height: 52px;
}

.checkout-method-copy {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.checkout-method-title {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.checkout-method-title strong {
    margin-bottom: 0;
    font-size: 1.08rem;
    font-weight: 950;
    line-height: 1.1;
}

.checkout-method-title span {
    padding: 4px 8px;
    border: 1px solid rgba(120, 215, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(232, 243, 255, 0.74);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.checkout-paypal-logo {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
}

.checkout-paypal-logo img {
    display: block;
    width: 96px;
    max-height: 26px;
    object-fit: contain;
}

.checkout-method-copy p {
    margin: 0;
    max-width: 720px;
    color: rgba(232, 243, 255, 0.8);
    line-height: 1.45;
}

.checkout-method-copy small {
    color: rgba(232, 243, 255, 0.52);
}

.checkout-pay-button {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    min-width: 172px;
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 15px;
    background: linear-gradient(135deg, #18b8ff, #7a5cff 52%, #d829f0);
    color: white;
    box-shadow: 0 16px 36px rgba(122, 92, 255, 0.34);
    cursor: pointer;
    font: inherit;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}

.checkout-pay-button strong {
    color: white;
    font-size: 1.02rem;
}

.checkout-pay-button em {
    font-style: normal;
    opacity: 0.9;
    transform: translateY(-1px);
}

.checkout-pay-button:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}

.checkout-back-link {
    justify-self: start;
    color: var(--cyan);
    font-weight: 800;
    text-decoration: none;
}

.manual-payment-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
    align-items: stretch;
    padding: 34px;
    border: 1px solid rgba(120, 215, 255, 0.22);
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(9, 21, 42, 0.94), rgba(15, 16, 43, 0.92));
    box-shadow: inset 0 0 28px rgba(0, 200, 255, 0.035);
}

.manual-payment-copy h2 {
    margin: 0 0 14px;
    color: var(--text);
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.02;
}

.manual-payment-copy p {
    max-width: 720px;
    color: rgba(232, 243, 255, 0.78);
    line-height: 1.65;
}

.manual-payment-details {
    display: grid;
    gap: 12px;
    margin: 24px 0;
}

.manual-payment-details div {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 16px;
    padding: 14px 16px;
    border: 1px solid rgba(120, 215, 255, 0.16);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.035);
}

.manual-payment-details dt {
    color: rgba(232, 243, 255, 0.62);
    font-weight: 800;
}

.manual-payment-details dd {
    margin: 0;
    color: white;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.manual-payment-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.manual-qr-card {
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 14px;
    padding: 24px;
    border: 1px solid rgba(0, 210, 255, 0.28);
    border-radius: 20px;
    background:
        radial-gradient(circle at 50% 0%, rgba(0, 210, 255, 0.16), transparent 45%),
        rgba(255, 255, 255, 0.04);
}

.manual-qr-card img,
.manual-qr-placeholder {
    width: min(100%, 270px);
    aspect-ratio: 1;
    object-fit: contain;
    border-radius: 18px;
    background: white;
}

.manual-qr-placeholder {
    display: grid;
    place-items: center;
    color: #071121;
    font-size: 4rem;
    font-weight: 950;
}

.manual-qr-card strong {
    color: white;
    font-size: 1.45rem;
}

.manual-qr-card small {
    color: rgba(232, 243, 255, 0.74);
    font-weight: 800;
    text-align: center;
    overflow-wrap: anywhere;
}

.manual-qr-card span {
    color: var(--cyan);
    font-weight: 900;
    text-align: center;
    overflow-wrap: anywhere;
}

@media (max-width: 900px) {
    .checkout-page {
        width: min(100% - 28px, 1180px);
        padding-top: 120px;
    }

    .checkout-hero,
    .checkout-grid,
    .manual-payment-card {
        grid-template-columns: 1fr;
    }

    .checkout-summary-card {
        min-height: 180px;
    }
}

@media (max-width: 620px) {
    .checkout-price-pair,
    .checkout-method,
    .paypal-method,
    .manual-method,
    .manual-payment-details div {
        grid-template-columns: 1fr;
    }

    .checkout-plan-card,
    .checkout-method-card {
        padding: 24px;
    }
}

@media (max-width: 960px) {
    .download-page {
        width: min(100% - 28px, 1180px);
        padding-top: 124px;
    }

    .download-hero,
    .download-grid,
    .download-grid.secondary {
        grid-template-columns: 1fr;
    }

    .download-hero {
        padding: 28px;
        border-radius: 24px;
    }

    .download-summary-card {
        min-height: 240px;
    }

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

@media (max-width: 620px) {
    .download-page {
        width: min(100% - 22px, 1180px);
        padding-top: 112px;
    }

.download-hero {
    padding: 22px;
    border-radius: 22px;
}

    .download-hero h1 {
        font-size: clamp(2.35rem, 14vw, 3.8rem);
    }

    .download-actions {
        align-items: stretch;
    }

    .download-main-button,
    .download-secondary-button {
        width: 100%;
    }

    .download-card,
    .download-summary-card {
        padding: 22px;
        border-radius: 22px;
    }

    .download-detail-list div {
        grid-template-columns: 1fr;
        gap: 6px;
    }

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

/* Header menu: keep navigation compact and reveal links on demand. */
.site-menu-toggle {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.site-menu-button {
    display: inline-flex;
    width: 44px;
    height: 40px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(120, 215, 255, 0.26);
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(24, 45, 78, 0.92), rgba(10, 20, 40, 0.96));
    box-shadow: inset 0 0 18px rgba(0, 200, 255, 0.08);
    cursor: pointer;
}

.site-menu-button span {
    display: block;
    width: 19px;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
    transition: transform 160ms ease, opacity 160ms ease;
}

.site-menu-toggle:checked + .site-menu-button span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-menu-toggle:checked + .site-menu-button span:nth-child(2) {
    opacity: 0;
}

.site-menu-toggle:checked + .site-menu-button span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.site-header {
    align-items: center;
    flex-direction: row;
}

.site-header .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 14px;
    display: grid;
    width: min(260px, calc(100vw - 44px));
    gap: 6px;
    padding: 12px;
    border: 1px solid rgba(120, 215, 255, 0.22);
    border-radius: 14px;
    background: rgba(4, 12, 27, 0.98);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.44), inset 0 0 24px rgba(0, 200, 255, 0.06);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
    visibility: hidden;
}

.site-menu-toggle:checked ~ .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
}

.site-header .nav-links a {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
}

@media (max-width: 680px) {
    .site-header {
        gap: 10px;
        padding: 10px 10px 10px 12px;
    }

    .site-header .brand-copy {
        display: flex;
        flex-direction: column;
    }

    .site-header .brand-tagline {
        display: none;
    }

    .site-header .brand-name {
        font-size: 18px;
        font-weight: 850;
    }
}

/* Desktop keeps the full navigation visible; hamburger only takes over on mobile. */
.site-menu-button {
    display: none;
}

.site-header .nav-links {
    position: static;
    display: flex;
    width: auto;
    gap: 6px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
    visibility: visible;
}

.site-header .nav-links a {
    width: auto;
}

@media (max-width: 980px) {
    .site-menu-button {
        display: inline-flex;
    }

    .site-header {
        align-items: center;
        flex-direction: row;
    }

    .site-header .nav-links {
        position: absolute;
        top: calc(100% + 10px);
        right: 14px;
        display: grid;
        width: min(260px, calc(100vw - 44px));
        gap: 6px;
        padding: 12px;
        border: 1px solid rgba(120, 215, 255, 0.22);
        border-radius: 14px;
        background: rgba(4, 12, 27, 0.98);
        box-shadow: 0 22px 60px rgba(0, 0, 0, 0.44), inset 0 0 24px rgba(0, 200, 255, 0.06);
        opacity: 0;
        overflow: visible;
        pointer-events: none;
        transform: translateY(-6px);
        transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
        visibility: hidden;
    }

    .site-menu-toggle:checked ~ .nav-links {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        visibility: visible;
    }

    .site-header .nav-links a {
        width: 100%;
    }

    .site-header .nav-links .nav-account-menu,
    .site-header .nav-links .nav-account-cluster,
    .site-header .nav-links .nav-account-trigger {
        width: 100%;
    }

    .site-header .nav-links .nav-account-link {
        max-width: none;
    }

    .site-header .nav-links .nav-account-cluster {
        justify-content: stretch;
        margin-left: 0;
    }

    .site-header .nav-links .nav-notification-button {
        flex: 0 0 42px;
        width: 42px;
    }

    .site-header .nav-links .nav-account-dropdown {
        right: 0;
        width: 100%;
    }
}

/* Mobile polish: keep the release site readable and prevent horizontal overflow. */
@media (max-width: 760px) {
    html,
    body {
        overflow-x: hidden;
    }

    .site-header {
        width: min(100% - 24px, 1180px);
        min-height: 68px;
        margin-top: 12px;
        padding: 10px 12px;
        border-radius: 8px;
    }

    .site-header .brand-mark-image {
        width: 44px;
        height: auto;
    }

    .site-header .brand-copy {
        display: flex;
        flex-direction: column;
    }

    .site-header .brand-tagline {
        display: none;
    }

    .site-header .brand-name {
        font-size: 18px;
        font-weight: 850;
    }

    .site-menu-button {
        width: 44px;
        height: 40px;
    }

    .site-header .nav-links {
        left: 0;
        right: 0;
        width: 100%;
        max-height: calc(100vh - 94px);
        overflow-y: auto;
    }

    .site-header .nav-links a,
    .site-header .nav-links .nav-account-trigger {
        min-height: 42px;
    }

    .site-header .nav-links .nav-account-cluster {
        width: 100%;
        margin-left: 0;
    }

    .site-header .nav-links .nav-account-menu {
        min-width: 0;
        flex: 1 1 auto;
    }

    .site-header .nav-links .nav-notification-button {
        flex: 0 0 42px;
        width: 42px;
    }

    .release-hero {
        min-height: auto;
        padding: 14px 0 42px;
        overflow: hidden;
    }

    .release-hero-bg {
        background-position: 52% top;
        opacity: 0.72;
    }

    .release-hero-inner {
        width: min(100% - 24px, 1180px);
        margin: 24px auto 0;
        padding: 22px;
        border-radius: 8px;
    }

    .release-hero h1 {
        max-width: 100%;
        font-size: clamp(2.45rem, 13vw, 3.45rem);
        line-height: 0.96;
        overflow-wrap: anywhere;
    }

    .release-tagline {
        font-size: clamp(1.35rem, 7vw, 2rem);
        line-height: 1.08;
    }

    .release-lead {
        font-size: 1rem;
        line-height: 1.6;
    }

    .release-hero .actions,
    .section-actions,
    .account-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .release-hero .button,
    .section-actions .button,
    .account-actions .button {
        width: 100%;
    }

    .release-main {
        width: min(100% - 24px, 1180px);
        margin-top: 0;
    }

    .page-section,
    .release-workflow,
    .release-intro,
    .release-account,
    .release-store {
        padding: 26px 0;
    }

    .release-workflow-copy,
    .release-intro,
    .release-account-copy,
    .release-store {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .release-workflow-copy h2,
    .release-intro h2,
    .release-account-copy h2,
    .release-section-copy h2 {
        font-size: clamp(2rem, 10vw, 3rem);
        line-height: 1;
        overflow-wrap: anywhere;
    }

    .release-steps,
    .release-desk,
    .release-feature-grid,
    .release-account-grid,
    .release-preset-columns {
        grid-template-columns: 1fr;
    }

    .release-steps article {
        min-height: auto;
        padding: 16px;
    }

    .site-footer {
        padding-top: 42px;
    }

    .site-footer .site-footer-inner,
    .site-footer-bottom {
        width: min(100% - 24px, 1180px);
    }

    .site-footer-top,
    .site-footer-bottom {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .site-footer-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 26px;
    }

    .site-footer-legal-inline {
        justify-content: flex-start;
    }
}

@media (max-width: 460px) {
    .release-hero-inner {
        padding: 20px;
    }

    .release-hero h1 {
        font-size: clamp(2.25rem, 12.5vw, 3rem);
    }

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

@media (max-width: 680px) {
    .release-ai-slide,
    .technology-hero,
    .technology-section {
        padding: 22px;
    }

    .release-ai-slide {
        margin-bottom: 32px;
    }
}

/* FAQ page */
.faq-page {
    width: min(1180px, calc(100% - 44px));
    margin: 0 auto;
    padding: 138px 0 92px;
}

.faq-hero,
.faq-tools,
.faq-featured,
.faq-category-group {
    border: 1px solid rgba(42, 171, 231, 0.28);
    background:
        radial-gradient(circle at 18% 0%, rgba(0, 190, 255, 0.13), transparent 34%),
        radial-gradient(circle at 100% 0%, rgba(211, 35, 233, 0.12), transparent 32%),
        rgba(8, 18, 36, 0.76);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(16px);
}

.faq-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 250px;
    gap: 24px;
    align-items: stretch;
    padding: clamp(28px, 5vw, 58px);
    border-radius: 22px;
    margin-bottom: 24px;
}

.faq-hero h1,
.faq-category-group h2 {
    margin: 0;
    color: #fff;
    letter-spacing: 0;
}

.faq-hero h1 {
    max-width: 780px;
    font-size: clamp(2.7rem, 6vw, 5.7rem);
    line-height: 0.96;
}

.faq-hero p {
    max-width: 820px;
    margin: 24px 0 0;
    color: #cbd7ea;
    font-size: 1.06rem;
    line-height: 1.7;
}

.faq-hero-card {
    display: flex;
    min-height: 190px;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 24px;
    border: 1px solid rgba(42, 171, 231, 0.26);
    border-radius: 18px;
    background: rgba(12, 28, 52, 0.72);
}

.faq-hero-card span,
.faq-hero-card small,
.faq-item-summary span,
.faq-featured-card span {
    color: #9eb2cf;
}

.faq-hero-card strong {
    color: #fff;
    font-size: 4rem;
    line-height: 1;
}

.faq-tools {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
    gap: 18px;
    align-items: end;
    padding: 22px;
    border-radius: 18px;
    margin-bottom: 24px;
}

.faq-search span {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 800;
}

.faq-search input {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    color: #fff;
    border: 1px solid rgba(42, 171, 231, 0.35);
    border-radius: 12px;
    background: rgba(2, 11, 24, 0.8);
}

.faq-category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.faq-category-tabs button {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    gap: 8px;
    padding: 0 13px;
    color: #d9e4f5;
    border: 1px solid rgba(72, 124, 178, 0.38);
    border-radius: 999px;
    background: rgba(18, 32, 57, 0.74);
    font-weight: 800;
    cursor: pointer;
}

.faq-category-tabs button:hover,
.faq-category-tabs button.active {
    border-color: rgba(0, 214, 255, 0.85);
    background: linear-gradient(135deg, rgba(27, 175, 247, 0.9), rgba(203, 33, 232, 0.9));
    color: #fff;
}

.faq-category-tabs span {
    color: inherit;
    opacity: 0.82;
}

.faq-featured {
    padding: 24px;
    border-radius: 18px;
    margin-bottom: 24px;
}

.faq-featured h2,
.faq-category-group h2 {
    font-size: clamp(1.65rem, 3vw, 2.45rem);
}

.faq-featured-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.faq-featured-card {
    min-height: 166px;
    padding: 18px;
    border: 1px solid rgba(72, 124, 178, 0.32);
    border-radius: 16px;
    background: rgba(16, 29, 53, 0.68);
}

.faq-featured-card h3 {
    margin: 10px 0 0;
    color: #fff;
    font-size: 1.05rem;
    line-height: 1.35;
}

.faq-category-list {
    display: grid;
    gap: 18px;
}

.faq-category-group {
    padding: 24px;
    border-radius: 18px;
}

.faq-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.faq-category-count {
    flex: 0 0 auto;
    padding: 8px 13px;
    color: #bfefff;
    border: 1px solid rgba(42, 171, 231, 0.35);
    border-radius: 999px;
    background: rgba(18, 40, 69, 0.75);
    font-weight: 800;
}

.faq-item {
    border-top: 1px solid rgba(94, 142, 195, 0.2);
}

.faq-item:first-of-type {
    border-top: 0;
}

.faq-item summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 18px 0;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item-summary strong {
    display: block;
    color: #fff;
    font-size: 1.05rem;
    line-height: 1.45;
}

.faq-item-summary span {
    display: block;
    margin-top: 5px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.faq-toggle-mark {
    width: 34px;
    height: 34px;
    color: #c7f6ff;
    border: 1px solid rgba(42, 171, 231, 0.35);
    border-radius: 999px;
    background: rgba(12, 27, 48, 0.82);
    text-align: center;
    line-height: 32px;
    transition: transform 0.16s ease;
}

.faq-item[open] .faq-toggle-mark {
    transform: rotate(45deg);
}

.faq-answer {
    max-width: 920px;
    padding: 0 56px 20px 0;
    color: #cbd7ea;
    line-height: 1.72;
}

.faq-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 14px;
}

.faq-tags span {
    padding: 5px 9px;
    color: #bdeeff;
    border: 1px solid rgba(42, 171, 231, 0.26);
    border-radius: 999px;
    background: rgba(20, 43, 72, 0.6);
    font-size: 0.8rem;
}

.faq-empty {
    padding: 20px;
    color: #fff;
    border: 1px solid rgba(255, 107, 157, 0.5);
    border-radius: 14px;
    background: rgba(74, 20, 58, 0.58);
}

@media (max-width: 980px) {
    .faq-page {
        width: min(100% - 26px, 760px);
        padding-top: 112px;
    }

    .faq-hero,
    .faq-tools {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 580px) {
    .faq-page {
        width: min(100% - 20px, 520px);
        padding-top: 96px;
    }

    .faq-hero,
    .faq-tools,
    .faq-featured,
    .faq-category-group {
        padding: 18px;
    }

    .faq-hero h1 {
        font-size: clamp(2.25rem, 12vw, 3.25rem);
        overflow-wrap: anywhere;
    }

    .faq-featured-grid {
        grid-template-columns: 1fr;
    }

    .faq-item summary {
        grid-template-columns: 1fr;
    }

    .faq-answer {
        padding-right: 0;
    }
}

/* FAQ knowledge-base layout */
.faq-page-browser {
    width: min(1280px, calc(100% - 44px));
    margin: 0 auto;
    padding: 138px 0 92px;
}

.faq-page-browser .faq-compact-hero,
.faq-page-browser .faq-knowledge-base {
    border: 1px solid rgba(42, 171, 231, 0.28);
    background:
        radial-gradient(circle at 10% 0%, rgba(0, 190, 255, 0.14), transparent 30%),
        radial-gradient(circle at 100% 0%, rgba(211, 35, 233, 0.12), transparent 34%),
        rgba(7, 17, 34, 0.82);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(16px);
}

.faq-page-browser .faq-compact-hero {
    padding: clamp(26px, 5vw, 52px);
    border-radius: 22px;
    margin-bottom: 22px;
}

.faq-page-browser .faq-compact-hero h1 {
    max-width: 820px;
    margin: 0;
    color: #fff;
    font-size: clamp(2.45rem, 5vw, 4.9rem);
    line-height: 0.98;
    letter-spacing: 0;
}

.faq-page-browser .faq-compact-hero p {
    max-width: 840px;
    margin: 18px 0 0;
    color: #d7e3f5;
    font-size: 1.04rem;
    line-height: 1.68;
}

.faq-page-browser .faq-knowledge-base {
    overflow: hidden;
    border-radius: 22px;
}

.faq-page-browser .faq-kb-toolbar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: stretch;
    padding: 22px 24px;
    border-bottom: 1px solid rgba(94, 142, 195, 0.2);
}

.faq-page-browser .faq-search {
    display: block;
    max-width: min(720px, 100%);
}

.faq-page-browser .faq-search span {
    display: block;
    margin-bottom: 8px;
    color: #f4f9ff;
    font-size: 0.94rem;
    font-weight: 800;
}

.faq-page-browser .faq-search input {
    width: 100%;
    min-height: 50px;
    padding: 0 16px;
    color: #fff;
    border: 1px solid rgba(42, 171, 231, 0.36);
    border-radius: 12px;
    background: rgba(2, 11, 24, 0.84);
    font-size: 0.98rem;
    outline: none;
}

.faq-page-browser .faq-search input:focus {
    border-color: rgba(0, 214, 255, 0.84);
    box-shadow: 0 0 0 3px rgba(0, 194, 255, 0.12);
}

.faq-page-browser .faq-topic-strip {
    min-width: 0;
    max-width: 100%;
}

.faq-page-browser .faq-topic-strip .section-kicker {
    margin-bottom: 9px;
}

.faq-page-browser .faq-topic-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 100%;
}

.faq-page-browser .faq-kb-grid {
    display: grid;
    grid-template-columns: minmax(360px, 0.9fr) minmax(440px, 1.1fr);
    min-height: 600px;
}

.faq-page-browser .faq-question-pane,
.faq-page-browser .faq-answer-pane {
    min-width: 0;
    padding: 24px;
}

.faq-page-browser .faq-question-pane {
    border-right: 1px solid rgba(94, 142, 195, 0.2);
}

.faq-page-browser .faq-folder {
    display: flex;
    min-height: 39px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 13px;
    color: #d8e5f6;
    border: 1px solid rgba(72, 124, 178, 0.32);
    border-radius: 999px;
    background: rgba(13, 29, 52, 0.6);
    font-size: 0.88rem;
    font-weight: 750;
    text-align: left;
    cursor: pointer;
}

.faq-page-browser .faq-folder:hover,
.faq-page-browser .faq-folder.active {
    color: #fff;
    border-color: rgba(0, 214, 255, 0.82);
    background: linear-gradient(135deg, rgba(20, 112, 178, 0.72), rgba(91, 41, 153, 0.72));
}

.faq-page-browser .faq-folder strong {
    flex: 0 0 auto;
    color: #bfefff;
    font-size: 0.78rem;
    text-align: right;
}

.faq-page-browser .faq-pane-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    color: #8fa5c2;
    font-size: 0.88rem;
    font-weight: 800;
}

.faq-page-browser .faq-pane-title span {
    color: #bfefff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.faq-page-browser .faq-question-list {
    display: grid;
    max-height: 570px;
    gap: 7px;
    overflow: auto;
    padding-right: 6px;
}

.faq-page-browser .faq-question {
    display: block;
    width: 100%;
    padding: 13px 14px;
    color: #e8f1ff;
    border: 1px solid rgba(72, 124, 178, 0.24);
    border-radius: 12px;
    background: rgba(12, 27, 48, 0.54);
    font-size: 0.96rem;
    line-height: 1.42;
    text-align: left;
    cursor: pointer;
}

.faq-page-browser .faq-question:hover,
.faq-page-browser .faq-question.active {
    border-color: rgba(0, 214, 255, 0.72);
    background: rgba(18, 49, 82, 0.78);
}

.faq-page-browser .faq-question span {
    display: block;
    font-weight: 750;
}

.faq-page-browser .faq-question small {
    display: block;
    margin-top: 6px;
    color: #9fb2cf;
    font-size: 0.78rem;
    font-weight: 700;
}

.faq-page-browser .faq-answer-pane {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background:
        radial-gradient(circle at 100% 0%, rgba(198, 42, 226, 0.11), transparent 32%),
        rgba(5, 13, 28, 0.22);
}

.faq-page-browser .faq-answer-pane h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.65rem, 3vw, 2.85rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.faq-page-browser .faq-answer-pane p {
    margin: 16px 0 0;
    color: #d6e3f5;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.75;
}

.faq-page-browser .faq-answer-pane .faq-answer-lead {
    color: #eef7ff;
    font-size: 1.05rem;
    font-weight: 700;
}

.faq-page-browser .faq-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 22px;
}

.faq-page-browser .faq-tags span {
    padding: 6px 10px;
    color: #bdeeff;
    border: 1px solid rgba(42, 171, 231, 0.26);
    border-radius: 999px;
    background: rgba(20, 43, 72, 0.62);
    font-size: 0.8rem;
}

.faq-page-browser .faq-empty {
    margin-top: 14px;
    padding: 14px;
    color: #fff;
    border: 1px solid rgba(255, 107, 157, 0.45);
    border-radius: 12px;
    background: rgba(74, 20, 58, 0.52);
}

@media (max-width: 1080px) {
    .faq-page-browser .faq-kb-toolbar {
        grid-template-columns: 1fr;
    }

    .faq-page-browser .faq-kb-grid {
        grid-template-columns: 1fr;
    }

    .faq-page-browser .faq-answer-pane {
        border-top: 1px solid rgba(94, 142, 195, 0.2);
    }

    .faq-page-browser .faq-question-pane {
        border-right: 0;
    }
}

@media (max-width: 720px) {
    .faq-page-browser {
        width: min(100% - 20px, 560px);
        padding-top: 98px;
    }

    .faq-page-browser .faq-question-pane {
        border-bottom: 1px solid rgba(94, 142, 195, 0.2);
    }

    .faq-page-browser .faq-question-pane,
    .faq-page-browser .faq-answer-pane,
    .faq-page-browser .faq-kb-toolbar,
    .faq-page-browser .faq-compact-hero {
        padding: 18px;
    }

    .faq-page-browser .faq-question-list {
        max-height: 420px;
    }
}

@media (min-width: 1180px) {
    .site-header,
    .release-hero-inner,
    .release-main,
    .compatibility-page,
    .faq-page,
    .faq-page-browser,
    .pricing-page,
    .catalog-page,
    .download-page,
    .technology-page,
    .account-page,
    .support-page,
    .legal-page {
        width: min(1280px, calc(100% - 44px));
    }
}

.compatibility-page {
    width: min(1280px, calc(100% - 44px));
    margin: 0 auto 96px;
    padding-top: 138px;
    display: grid;
    gap: 26px;
}

.compatibility-data-alert {
    padding: 16px 20px;
    border: 1px solid rgba(248, 113, 113, 0.48);
    border-radius: 14px;
    background: rgba(127, 29, 29, 0.28);
    color: #fecaca;
    font-weight: 700;
}

.compatibility-page .section-kicker {
    margin: 0 0 12px;
    color: var(--cyan);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-shadow: 0 0 18px rgba(0, 210, 255, 0.34);
}

.compatibility-hero,
.compatibility-section {
    border: 1px solid rgba(42, 171, 231, 0.25);
    border-radius: 22px;
    background:
        linear-gradient(140deg, rgba(6, 26, 43, 0.9), rgba(20, 18, 48, 0.84)),
        rgba(5, 13, 26, 0.88);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.compatibility-hero {
    padding: clamp(26px, 4vw, 46px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
    gap: 24px;
    align-items: stretch;
}

.compatibility-hero h1,
.compatibility-section h2 {
    margin: 0;
    color: var(--text);
    letter-spacing: 0;
}

.compatibility-hero h1 {
    max-width: 980px;
    font-size: clamp(2.5rem, 5vw, 5.8rem);
    line-height: 0.94;
}

.compatibility-hero p,
.compatibility-section-head p,
.compatibility-bundle-card p {
    color: #c9d8ea;
    line-height: 1.65;
}

.compatibility-hero p {
    max-width: 860px;
    margin: 22px 0 0;
    font-size: 1.04rem;
}

.compatibility-hero-card {
    min-height: 220px;
    padding: 26px;
    display: grid;
    align-content: end;
    gap: 10px;
    border: 1px solid rgba(94, 142, 195, 0.28);
    border-radius: 18px;
    background:
        radial-gradient(circle at top right, rgba(201, 39, 230, 0.22), transparent 42%),
        rgba(12, 24, 44, 0.72);
}

.compatibility-hero-card span,
.compatibility-budget span,
.compatibility-target {
    color: #9eb3c8;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.compatibility-hero-card strong {
    color: var(--text);
    font-size: 1.55rem;
    line-height: 1.15;
}

.compatibility-hero-card small {
    color: #b8c8da;
    line-height: 1.55;
}

.compatibility-section {
    padding: clamp(22px, 3vw, 34px);
}

.compatibility-section-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 22px;
}

.compatibility-section h2 {
    font-size: clamp(2rem, 3.5vw, 4rem);
    line-height: 1;
}

.compatibility-count {
    flex: 0 0 auto;
    padding: 8px 14px;
    border: 1px solid rgba(94, 142, 195, 0.36);
    border-radius: 999px;
    color: #d9f4ff;
    background: rgba(22, 45, 72, 0.76);
    font-weight: 900;
}

.compatibility-filter-form {
    display: grid;
    grid-template-columns: minmax(240px, 1.4fr) minmax(170px, 0.7fr) minmax(170px, 0.7fr) auto;
    gap: 14px;
    align-items: end;
    margin-bottom: 22px;
}

.compatibility-filter-form-wide {
    grid-template-columns: minmax(240px, 1.25fr) repeat(3, minmax(150px, 0.7fr)) auto;
}

.compatibility-filter-form label {
    display: grid;
    gap: 8px;
    color: #dbe8f5;
    font-weight: 900;
}

.compatibility-filter-form input,
.compatibility-filter-form select {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid rgba(94, 142, 195, 0.36);
    border-radius: 12px;
    color: var(--text);
    background: rgba(3, 12, 24, 0.76);
    font: inherit;
    font-weight: 800;
}

.compatibility-filter-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.compatibility-table-wrap {
    overflow-x: auto;
    border-top: 1px solid rgba(94, 142, 195, 0.22);
}

.compatibility-table {
    width: 100%;
    min-width: 920px;
    border-collapse: collapse;
}

.compatibility-table th,
.compatibility-table td {
    padding: 17px 12px;
    border-bottom: 1px solid rgba(94, 142, 195, 0.17);
    color: #dfefff;
    text-align: left;
    vertical-align: top;
}

.compatibility-table th {
    color: #b9d7f8;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.compatibility-table td {
    color: #d8e7f8;
}

.compatibility-table td small {
    display: block;
    margin-top: 4px;
    color: #96a9be;
    font-weight: 800;
}

.compatibility-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 6px 11px;
    border: 1px solid rgba(94, 142, 195, 0.36);
    border-radius: 999px;
    color: #dff7ff;
    background: rgba(22, 45, 72, 0.75);
    font-size: 0.78rem;
    font-weight: 900;
    white-space: nowrap;
}

.status-tested,
.status-verified,
.status-fully-verified {
    border-color: rgba(43, 226, 179, 0.4);
    background: rgba(13, 95, 78, 0.42);
}

.status-compatible,
.status-mostly-verified {
    border-color: rgba(42, 171, 231, 0.45);
    background: rgba(18, 76, 120, 0.5);
}

.status-testing,
.status-waiting-for-test,
.status-in-progress,
.status-unknown {
    border-color: rgba(255, 196, 87, 0.42);
    background: rgba(92, 66, 18, 0.38);
}

.status-limited,
.status-issue-found,
.status-not-compatible,
.status-not-planned {
    border-color: rgba(255, 107, 157, 0.45);
    background: rgba(90, 26, 58, 0.45);
}

.compatibility-mini-link {
    display: inline-flex;
    margin-left: 8px;
    color: var(--cyan);
    font-weight: 900;
    white-space: nowrap;
}

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

.compatibility-bundle-card {
    min-height: 100%;
    padding: 22px;
    display: grid;
    gap: 18px;
    border: 1px solid rgba(94, 142, 195, 0.26);
    border-radius: 18px;
    background:
        radial-gradient(circle at top right, rgba(42, 171, 231, 0.16), transparent 38%),
        rgba(9, 23, 42, 0.74);
}

.compatibility-bundle-card h3 {
    margin: 14px 0 8px;
    color: var(--text);
    font-size: 1.7rem;
}

.compatibility-budget {
    padding: 14px;
    border: 1px solid rgba(94, 142, 195, 0.22);
    border-radius: 14px;
    background: rgba(3, 12, 24, 0.5);
}

.compatibility-budget strong {
    display: block;
    margin-top: 3px;
    color: var(--text);
    font-size: 1.15rem;
}

.compatibility-hardware-list {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.compatibility-hardware-list li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px;
    border: 1px solid rgba(94, 142, 195, 0.2);
    border-radius: 12px;
    background: rgba(3, 12, 24, 0.38);
}

.compatibility-hardware-list a {
    color: var(--cyan);
    font-weight: 900;
}

.compatibility-hardware-list span {
    color: #9eb3c8;
    font-size: 0.82rem;
    font-weight: 800;
    text-align: right;
}

@media (min-width: 1440px) {
    .site-header,
    .release-hero-inner,
    .release-main,
    .compatibility-page,
    .faq-page,
    .faq-page-browser,
    .pricing-page,
    .catalog-page,
    .download-page,
    .technology-page,
    .account-page,
    .support-page,
    .legal-page {
        width: min(1420px, calc(100% - 64px));
    }
}

@media (max-width: 1080px) {
    .compatibility-hero,
    .compatibility-filter-form,
    .compatibility-filter-form-wide {
        grid-template-columns: 1fr;
    }

    .compatibility-bundle-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .compatibility-page {
        width: min(100% - 20px, 560px);
        padding-top: 98px;
    }

    .compatibility-section-head {
        display: grid;
    }

    .compatibility-filter-actions,
    .compatibility-filter-actions .primary-button,
    .compatibility-filter-actions .secondary-button {
        width: 100%;
    }
}

/* Keep native file inputs aligned even inside forms with generic input padding. */
input[type="file"] {
    padding: 0;
    line-height: 46px;
}

/* 2026 landing hero: the product interfaces lead, with copy in its own panel. */
.release-hero {
    min-height: 0;
    padding: clamp(64px, 8vh, 88px) 0 92px;
}

.release-hero-bg {
    background-image: url('/images/hero-bg-2026.webp');
    background-position: center top;
    filter: saturate(1.08) contrast(1.06);
}

@media (max-width: 768px) {
    .release-hero-bg {
        background-image: url('/images/hero-bg-2026-mobile.webp');
    }
}

.release-hero-shade {
    background:
        linear-gradient(90deg, rgba(2, 4, 14, 0.34), rgba(2, 4, 14, 0.08) 48%, rgba(2, 4, 14, 0.26)),
        linear-gradient(180deg, rgba(2, 5, 16, 0.08), rgba(2, 5, 16, 0.2) 58%, rgba(2, 5, 16, 0.88) 78%, var(--bg));
}

.release-hero-visual {
    position: relative;
    z-index: 1;
    width: min(1420px, calc(100% - 64px));
    height: clamp(560px, 49vw, 700px);
    margin: 0 auto;
}

.release-hero-visual::before {
    content: "";
    position: absolute;
    inset: 8% 3% 4% 13%;
    z-index: -1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 183, 255, 0.2), rgba(180, 39, 255, 0.09) 45%, transparent 72%);
    filter: blur(24px);
}

.release-hero-fullmode,
.release-hero-minimode {
    position: absolute;
    margin: 0;
    padding: 5px;
    overflow: hidden;
    border: 1px solid rgba(84, 207, 255, 0.68);
    background: rgba(3, 9, 24, 0.96);
    box-shadow:
        0 38px 100px rgba(0, 0, 0, 0.62),
        0 0 0 1px rgba(210, 53, 255, 0.14),
        0 0 48px rgba(0, 183, 255, 0.18);
}

.release-hero-fullmode {
    top: 0;
    right: 0;
    z-index: 1;
    width: min(79%, 1120px);
    border-radius: 18px;
}

.release-hero-minimode {
    bottom: 0;
    left: 0;
    z-index: 2;
    width: min(30%, 410px);
    border-radius: 15px;
    transform: rotate(-0.7deg);
}

.release-hero-fullmode img,
.release-hero-minimode img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: inherit;
}

.release-hero-inner {
    min-height: 0;
    width: min(1180px, calc(100% - 44px));
    margin: 54px auto 0;
    padding: clamp(36px, 4.5vw, 62px);
    overflow: hidden;
    text-align: center;
    background:
        radial-gradient(circle at 50% 0%, rgba(0, 201, 255, 0.11), transparent 48%),
        linear-gradient(135deg, rgba(3, 8, 24, 0.94), rgba(7, 8, 28, 0.88));
    backdrop-filter: blur(14px);
}

.release-hero-inner::after {
    display: none;
}

.release-hero-copy {
    position: relative;
    z-index: 2;
    max-width: 980px;
    margin: 0 auto;
}

.release-hero h1 {
    max-width: none;
    font-size: clamp(56px, 7vw, 94px);
    line-height: 0.92;
}

.release-tagline,
.release-lead {
    margin-right: auto;
    margin-left: auto;
}

.release-tagline {
    max-width: 940px;
    font-size: clamp(30px, 4vw, 52px);
}

.release-lead {
    max-width: 820px;
}

.release-hero .hero-trial-pill {
    margin-right: auto;
    margin-left: auto;
}

.release-hero .actions {
    justify-content: center;
}

@media (max-width: 1100px) {
    .release-hero {
        padding-bottom: 70px;
    }

    .release-hero-visual {
        width: min(100% - 36px, 980px);
        height: clamp(490px, 58vw, 610px);
    }

    .release-hero-fullmode {
        width: 84%;
    }

    .release-hero-minimode {
        width: 32%;
    }

    .release-hero-inner {
        margin-top: 40px;
    }
}

@media (max-width: 760px) {
    .release-hero {
        padding: 20px 0 46px;
    }

    .release-hero-bg {
        background-position: 30% top;
        opacity: 0.82;
    }

    .release-hero-visual {
        display: grid;
        width: min(100% - 24px, 620px);
        height: auto;
        gap: 18px;
        padding-top: 18px;
    }

    .release-hero-fullmode,
    .release-hero-minimode {
        position: relative;
        inset: auto;
        width: 100%;
        padding: 3px;
        transform: none;
        border-radius: 10px;
        box-shadow: 0 20px 52px rgba(0, 0, 0, 0.58), 0 0 24px rgba(0, 183, 255, 0.14);
    }

    .release-hero-minimode {
        width: min(72%, 390px);
        justify-self: center;
    }

    .release-hero-inner {
        width: min(100% - 24px, 620px);
        margin-top: 28px;
        padding: 28px 22px;
        border-radius: 10px;
    }

    .release-hero h1 {
        font-size: clamp(2.1rem, 9vw, 3rem);
        letter-spacing: -0.02em;
        overflow-wrap: normal;
    }
}

/* ==========================================================================
   NATIVE INTEGRATED SECTIONS (Google for Startups Compliance & Ownership)
   ========================================================================== */

/* Hero Ownership Note Pill */
.hero-ownership-note {
    margin: 18px auto 22px;
    padding: 10px 22px;
    width: fit-content;
    max-width: 820px;
    border-radius: 999px;
    background: rgba(0, 200, 255, 0.08);
    border: 1px solid rgba(0, 200, 255, 0.22);
    font-size: 0.9rem;
    font-weight: 650;
    color: var(--muted);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-ownership-note a {
    color: var(--cyan);
    font-weight: 750;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.18s ease;
}

.hero-ownership-note a:hover {
    color: #ffffff;
}

/* Proprietary Owner & Company Section */
.release-company-slide {
    margin: 56px 0;
    padding: clamp(32px, 4vw, 48px);
    border: 1px solid rgba(139, 92, 246, 0.35);
    border-radius: 22px;
    background:
        radial-gradient(circle at top left, rgba(0, 200, 255, 0.12), transparent 40%),
        linear-gradient(135deg, rgba(8, 20, 48, 0.94), rgba(22, 10, 44, 0.92));
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(16px);
}

.release-company-card {
    display: grid;
    gap: 20px;
}

.release-company-card h2 {
    margin: 4px 0 0;
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    font-weight: 850;
    color: var(--text);
    line-height: 1.15;
}

.company-lead {
    margin: 0;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.65;
    max-width: 880px;
}

.company-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    padding: 20px;
    border: 1px solid rgba(120, 215, 255, 0.16);
    border-radius: 14px;
    background: rgba(2, 7, 18, 0.6);
}

.company-meta-grid div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.company-meta-grid strong {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--subtle);
}

.company-meta-grid span {
    font-size: 0.96rem;
    font-weight: 700;
    color: var(--text);
}

.company-meta-grid a {
    color: var(--cyan);
    text-decoration: none;
}

.company-meta-grid a:hover {
    text-decoration: underline;
}

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

/* Technical Architecture Section */
/* ==========================================================================
   DEDICATED /TECHNOLOGY PAGE & COMPACT HOMEPAGE TECH SECTION
   ========================================================================== */

/* Homepage Compact Tech Section Pills & Actions */
.release-tech-slide {
    margin: 48px 0;
    padding: clamp(28px, 4vw, 42px);
    border: 1px solid rgba(120, 215, 255, 0.22);
    border-radius: 18px;
    background:
        radial-gradient(circle at 10% 10%, rgba(0, 200, 255, 0.08), transparent 30%),
        linear-gradient(180deg, rgba(6, 15, 34, 0.88), rgba(5, 9, 24, 0.72));
    box-shadow: 0 28px 82px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(12px);
}

.tech-benefits-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.benefit-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(0, 200, 255, 0.08);
    border: 1px solid rgba(0, 200, 255, 0.22);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--cyan);
}

.tech-cta-action {
    margin-top: 24px;
    display: flex;
    justify-content: flex-start;
}

/* Dedicated Tech Page Hero */
.tech-page-hero {
    padding: clamp(48px, 6vw, 80px) 0 36px;
    background:
        radial-gradient(circle at 70% 20%, rgba(127, 66, 255, 0.18), transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(0, 200, 255, 0.15), transparent 50%),
        linear-gradient(180deg, rgba(3, 10, 24, 0.98), rgba(6, 18, 42, 0.92));
    border-bottom: 1px solid var(--line);
}

.tech-page-hero-inner {
    width: min(1200px, calc(100% - 44px));
    margin: 0 auto;
}

.tech-page-hero-inner h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 900;
    color: #fff;
    margin: 10px 0 16px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.tech-hero-lead {
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    color: var(--muted);
    max-width: 860px;
    line-height: 1.65;
    margin: 0 0 28px;
}

.local-first-declaration-card {
    display: flex;
    gap: 18px;
    padding: 22px 28px;
    border-radius: 18px;
    background: rgba(0, 200, 255, 0.08);
    border: 1px solid rgba(0, 200, 255, 0.28);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    max-width: 960px;
}

.declaration-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.declaration-content strong {
    display: block;
    font-size: 1rem;
    color: var(--cyan);
    margin-bottom: 6px;
}

.declaration-content p {
    margin: 0;
    font-size: 0.95rem;
    color: #f8fbff;
    line-height: 1.6;
}

/* Dedicated Tech Page Main Layout */
.tech-page-main {
    width: min(1200px, calc(100% - 44px));
    margin: 50px auto 80px;
    display: grid;
    gap: 64px;
}

.tech-page-section {
    display: grid;
    gap: 20px;
}

.tech-section-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.tech-step-badge {
    padding: 4px 12px;
    border-radius: 8px;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.4);
    color: var(--violet);
    font-size: 0.85rem;
    font-weight: 850;
    letter-spacing: 0.5px;
}

.tech-section-header h2 {
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    font-weight: 850;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.tech-section-desc {
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.65;
    margin: 0;
    max-width: 960px;
}

/* Overview Cards */
.tech-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 8px;
}

.tech-overview-card {
    background: var(--panel-strong);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 14px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
}

.tech-overview-card h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
}

.tech-overview-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

/* Diagrams */
.tech-diagram-container {
    background: rgba(3, 10, 24, 0.85);
    border: 1px solid rgba(120, 215, 255, 0.2);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
}

.diagram-status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.diagram-status-header strong {
    font-size: 1.1rem;
    color: #fff;
}

.status-badge-inline {
    font-size: 0.82rem;
    font-weight: 750;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: #10b981;
}

.arch-flow-grid {
    display: flex;
    align-items: center;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.arch-node-card {
    min-width: 170px;
    flex: 1;
    background: rgba(12, 27, 54, 0.9);
    border: 1px solid rgba(120, 215, 255, 0.22);
    border-radius: 14px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.arch-node-card.highlight-node {
    border-color: rgba(139, 92, 246, 0.6);
    background: linear-gradient(135deg, rgba(16, 28, 64, 0.95), rgba(28, 14, 58, 0.95));
}

.node-step {
    font-size: 0.72rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--cyan);
}

.arch-node-card h4 {
    margin: 0;
    font-size: 0.98rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
}

.arch-node-card p {
    margin: 0 0 8px;
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.4;
}

.arch-arrow {
    color: var(--cyan);
    font-size: 1.3rem;
    font-weight: 900;
    user-select: none;
}

/* Status Pills */
.status-pill {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.status-pill.available {
    background: rgba(16, 185, 129, 0.18);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.4);
}

.status-pill.development {
    background: rgba(245, 158, 11, 0.18);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.4);
}

/* Tech Stack Grid */
.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 8px;
}

.stack-card {
    background: var(--panel-strong);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.stack-card:hover {
    border-color: rgba(0, 200, 255, 0.4);
    transform: translateY(-2px);
}

.stack-card strong {
    font-size: 1.15rem;
    font-weight: 850;
    color: #fff;
}

.stack-card span {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.4;
}

/* Benefits Grid */
.tech-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 8px;
}

.benefit-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 24px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.benefit-num {
    font-size: 0.78rem;
    font-weight: 850;
    color: var(--cyan);
    letter-spacing: 1px;
}

.benefit-card h3 {
    margin: 8px 0 8px;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
}

.benefit-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.55;
}

/* Sublink Cards */
.tech-sublink-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 8px;
}

.tech-sublink-card {
    background: linear-gradient(135deg, rgba(8, 22, 48, 0.9), rgba(18, 10, 42, 0.9));
    border: 1px solid rgba(120, 215, 255, 0.25);
    border-radius: 16px;
    padding: 24px;
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.tech-sublink-card:hover {
    border-color: rgba(0, 200, 255, 0.5);
    transform: translateY(-2px);
}

.tech-sublink-card h3 {
    margin: 0 0 8px;
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
}

.tech-sublink-card p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.5;
}

/* Status Section Container */
.tech-status-container {
    background: var(--panel-strong);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 30px;
    display: grid;
    gap: 24px;
}

.status-summary-box p {
    margin: 0 0 16px;
    font-size: 1.02rem;
    color: var(--muted);
    line-height: 1.6;
}

.company-links-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--subtle);
}

.company-links-row span {
    color: #fff;
    font-weight: 700;
}

.company-links-row a {
    color: var(--cyan);
    text-decoration: none;
}

.company-links-row a:hover {
    text-decoration: underline;
}

.status-checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.status-check-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.status-check-item .check-icon {
    font-weight: 900;
    font-size: 1.1rem;
}

.status-check-item.available .check-icon {
    color: #10b981;
}

.status-check-item.active-dev .check-icon {
    color: #f59e0b;
}

.status-check-item div strong {
    display: block;
    font-size: 0.92rem;
    color: #fff;
}

.status-check-item div span {
    font-size: 0.82rem;
    color: var(--subtle);
}

/* Responsive Stacking for Diagrams on Mobile */
@media (max-width: 768px) {
    .arch-flow-grid {
        flex-direction: column;
        align-items: stretch;
    }

    .arch-arrow {
        text-align: center;
        transform: rotate(90deg);
        margin: -4px 0;
    }

    .local-first-declaration-card {
        flex-direction: column;
        padding: 18px;
    }

    .diagram-status-header {
        flex-direction: column;
        align-items: flex-start;
    }
}
