:root {
    color-scheme: dark;
    --bg: #030914;
    --panel: rgba(7, 18, 37, 0.82);
    --panel-strong: rgba(5, 16, 31, 0.94);
    --cyan: #00e0ff;
    --cyan-soft: rgba(0, 224, 255, 0.2);
    --cyan-border: rgba(0, 224, 255, 0.56);
    --red: #ff2b25;
    --red-soft: rgba(255, 43, 37, 0.18);
    --green: #38f28b;
    --yellow: #ffc247;
    --text: #f5f8ff;
    --muted: #a9bddc;
    --faint: #637896;
    --line: rgba(90, 126, 168, 0.2);
    --radius: 16px;
    --shadow-cyan: 0 0 28px rgba(0, 224, 255, 0.24);
    --shadow-red: 0 0 32px rgba(255, 43, 37, 0.24);
    --qwk-cta-gradient:
        radial-gradient(circle at 14% 18%, rgba(0, 224, 255, 0.38), transparent 34%),
        linear-gradient(135deg, rgba(0, 224, 255, 0.24) 0%, rgba(15, 43, 69, 0.92) 32%, rgba(103, 27, 47, 0.9) 68%, rgba(168, 14, 28, 0.94) 100%);
    --qwk-cta-gradient-hover:
        radial-gradient(circle at 14% 18%, rgba(0, 224, 255, 0.5), transparent 36%),
        linear-gradient(135deg, rgba(0, 224, 255, 0.34) 0%, rgba(20, 55, 86, 0.94) 31%, rgba(132, 33, 55, 0.94) 66%, rgba(206, 27, 38, 0.98) 100%);
    --qwk-cta-shadow: 0 0 24px rgba(0, 224, 255, 0.18), 0 0 26px rgba(255, 43, 37, 0.2);
    font-family: "Segoe UI Variable Text", Inter, "Segoe UI", system-ui, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background:
        radial-gradient(circle at 72% 10%, rgba(255, 43, 37, 0.16), transparent 28rem),
        radial-gradient(circle at 18% 24%, rgba(0, 224, 255, 0.14), transparent 24rem),
        linear-gradient(180deg, #050b19 0%, var(--bg) 42%, #01040b 100%);
    color: var(--text);
    overflow-x: hidden;
}

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

button,
input,
textarea {
    font: inherit;
}

.site-shell {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 clamp(18px, 3vw, 46px);
}

.topbar {
    position: sticky;
    top: 12px;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: clamp(18px, 2vw, 30px);
    min-height: 92px;
    margin: 14px 0 24px;
    padding: 12px clamp(18px, 2.4vw, 34px);
    border: 1px solid var(--cyan-border);
    border-radius: 22px;
    background: rgba(5, 16, 31, 0.82);
    box-shadow: var(--shadow-cyan);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    min-width: clamp(230px, 20vw, 320px);
    color: var(--text);
}

.brand img {
    width: clamp(230px, 20vw, 320px);
    height: 76px;
    object-fit: contain;
    object-position: left center;
    filter: drop-shadow(0 0 18px rgba(255, 43, 37, 0.62));
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: auto;
    min-width: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(14px, 2vw, 30px);
    width: 100%;
    min-width: 0;
}

.nav-links a,
.nav-actions a {
    min-height: 46px;
    padding: 13px 18px;
    border: 1px solid transparent;
    border-radius: 15px;
    font-size: 15px;
    font-weight: 850;
    white-space: nowrap;
    transition: border-color 160ms ease, color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.nav-links a {
    color: var(--muted);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text);
    border-color: var(--cyan-border);
    background: var(--cyan-soft);
    box-shadow: 0 0 18px rgba(0, 224, 255, 0.18);
}

.nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-left: auto;
    flex: 0 0 auto;
}

.nav-login {
    color: #d8f8ff;
    border-color: rgba(0, 224, 255, 0.42) !important;
    background:
        linear-gradient(180deg, rgba(0, 224, 255, 0.14), rgba(5, 16, 31, 0.72)),
        rgba(5, 16, 31, 0.72);
    box-shadow: inset 0 0 18px rgba(0, 224, 255, 0.08), 0 0 16px rgba(0, 224, 255, 0.14);
    letter-spacing: 0;
}

.nav-login:hover {
    color: #fff;
    border-color: rgba(0, 224, 255, 0.82) !important;
    background:
        linear-gradient(180deg, rgba(0, 224, 255, 0.22), rgba(5, 16, 31, 0.86)),
        rgba(5, 16, 31, 0.82);
    box-shadow: 0 0 24px rgba(0, 224, 255, 0.32);
}

.nav-get {
    color: #fff;
    border-color: rgba(255, 43, 37, 0.62) !important;
    border-radius: 999px !important;
    background: linear-gradient(90deg, rgba(255, 43, 37, 0.46), rgba(0, 224, 255, 0.14));
    box-shadow: 0 0 18px rgba(255, 43, 37, 0.24);
    font-size: 14px !important;
    font-weight: 950 !important;
    text-transform: uppercase;
}

.nav-get:hover {
    border-color: rgba(0, 224, 255, 0.74) !important;
    background: linear-gradient(90deg, rgba(255, 43, 37, 0.58), rgba(0, 224, 255, 0.18));
    box-shadow: 0 0 22px rgba(255, 43, 37, 0.32);
}

body.modal-open {
    overflow: hidden;
}

.auth-page {
    display: grid;
    min-height: calc(100vh - 150px);
    padding: clamp(36px, 6vw, 82px) 0;
}

.auth-page.account-page {
    padding: clamp(18px, 3vw, 34px) 0 72px;
}

.auth-stage {
    display: grid;
    place-items: center;
    width: 100%;
}

.auth-page.account-page .auth-stage {
    place-items: stretch;
}

.auth-modal-panel[hidden],
.auth-account-panel[hidden] {
    display: none;
}

.auth-window {
    position: relative;
    width: min(560px, 100%);
    overflow: hidden;
    padding: clamp(28px, 5vw, 54px);
    border: 1px solid rgba(0, 224, 255, 0.28);
    border-radius: 22px;
    background:
        radial-gradient(circle at 50% -18%, rgba(0, 224, 255, 0.12), transparent 19rem),
        radial-gradient(circle at 92% 12%, rgba(255, 43, 37, 0.14), transparent 16rem),
        linear-gradient(145deg, rgba(5, 16, 31, 0.98), rgba(2, 7, 17, 0.98));
    box-shadow:
        0 0 44px rgba(0, 224, 255, 0.22),
        0 0 54px rgba(255, 43, 37, 0.14);
}

.auth-window.account-mode {
    width: 100%;
    max-width: none;
    overflow: visible;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.auth-window.account-mode::before,
.auth-window.account-mode::after {
    display: none;
}

.auth-window::before,
.auth-window::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 150%;
    aspect-ratio: 1;
    border: 1px solid rgba(99, 120, 150, 0.18);
    border-radius: 50%;
    pointer-events: none;
    transform: translateX(-50%);
}

.auth-window::before {
    top: -64%;
}

.auth-window::after {
    bottom: -72%;
}

.auth-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(0, 224, 255, 0.28);
    border-radius: 11px;
    color: var(--muted);
    background: rgba(0, 224, 255, 0.08);
    cursor: pointer;
}

.auth-modal-panel {
    position: relative;
    z-index: 1;
    animation: pageIn 160ms ease both;
}

.auth-heading {
    text-align: center;
}

.auth-heading .eyebrow {
    margin-bottom: 10px;
}

.auth-heading h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(34px, 5vw, 48px);
    line-height: 1;
    text-transform: uppercase;
    text-shadow:
        2px 0 0 rgba(255, 43, 37, 0.56),
        -2px 0 0 rgba(0, 224, 255, 0.48),
        0 0 22px rgba(0, 224, 255, 0.18);
}

.auth-heading p {
    margin: 24px auto 20px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.45;
}

.auth-modal-form,
.auth-providers {
    display: grid;
    gap: 14px;
}

.auth-field {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    align-items: center;
    min-height: 48px;
    padding: 0 14px 0 8px;
    border: 1px solid rgba(0, 224, 255, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
}

.auth-icon {
    display: grid;
    place-items: center;
    justify-self: start;
    width: 34px;
    height: 34px;
    color: #8ea0bb;
    font-size: 15px;
    font-weight: 950;
}

.auth-icon img {
    width: 25px;
    height: 25px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(64, 145, 255, 0.28));
}

.auth-icon img[src$="auth-email.png"] {
    width: 24px;
    height: 24px;
}

.auth-icon img[src$="auth-id-card.png"] {
    width: 26px;
    height: 26px;
}

.auth-icon img[src$="auth-security.png"] {
    width: 26px;
    height: 26px;
    transform: translateX(-2px);
}

.auth-field input {
    min-width: 0;
    width: 100%;
    border: 0;
    color: var(--text);
    background: transparent;
    outline: 0;
}

.auth-field input::placeholder {
    color: #8798b2;
}

.password-toggle {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: 0;
    color: #8ea0bb;
    background: transparent;
    cursor: pointer;
    font-size: 0;
}

.password-toggle span {
    position: relative;
    width: 18px;
    height: 12px;
    font-size: 0;
    border: 2px solid currentColor;
    border-radius: 999px 999px 999px 999px / 70% 70% 70% 70%;
    transform: rotate(-8deg);
}

.password-toggle span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
    transform: translate(-50%, -50%);
}

.password-toggle.is-visible span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -3px;
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform: rotate(42deg);
}

.auth-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 2px 0 24px;
}

.remember-check {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #8395af;
    font-size: 14px;
}

.remember-check input {
    width: 16px;
    height: 16px;
    margin: 0;
    accent-color: var(--cyan);
}

.auth-options a,
.auth-text-button,
.auth-terms a,
.auth-switch-line button {
    color: #ffffff;
    text-decoration: underline;
    text-decoration-color: rgba(0, 224, 255, 0.72);
    text-underline-offset: 3px;
}

.auth-text-button {
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-weight: 850;
}

.auth-submit {
    min-height: 50px;
    border: 1px solid rgba(0, 224, 255, 0.72);
    border-radius: 10px;
    color: #ffffff;
    background: var(--qwk-cta-gradient);
    font-size: 15px;
    font-weight: 950;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: var(--qwk-cta-shadow);
    transition: transform 160ms ease, border-color 160ms ease, color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.auth-submit:hover {
    transform: translateY(-1px);
    color: #ffffff;
    border-color: rgba(0, 224, 255, 0.94);
    background: var(--qwk-cta-gradient-hover);
    box-shadow: 0 0 30px rgba(0, 224, 255, 0.24), 0 0 30px rgba(255, 43, 37, 0.26);
}

.auth-submit:disabled,
.auth-provider:disabled {
    opacity: 0.58;
    cursor: wait;
}

.auth-status {
    min-height: 20px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    font-weight: 750;
    line-height: 1.35;
    text-align: center;
}

.auth-status.error {
    color: #ff8f8b;
}

.auth-status.success {
    color: #38f28b;
}

.auth-divider {
    margin: 20px 0 16px;
    color: #8395af;
    text-align: center;
    font-weight: 850;
}

.auth-provider {
    position: relative;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    min-height: 44px;
    padding: 0;
    border: 0;
    border-radius: 4px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.28);
    cursor: pointer;
    font-weight: 850;
    overflow: hidden;
}

.auth-provider span {
    display: grid;
    place-items: center;
    align-self: stretch;
    width: 48px;
    height: 100%;
    color: #ff2b25;
    background: rgba(255, 255, 255, 0.96);
    font-weight: 950;
}

.auth-provider span img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.auth-provider.discord {
    background: #5865f2;
}

.auth-provider.discord span {
    color: #ffffff;
    font-size: 12px;
}

.auth-provider.discord span img {
    width: 26px;
    height: 26px;
    filter: drop-shadow(0 0 10px rgba(88, 101, 242, 0.36));
}

.auth-switch-line {
    margin: 28px 0 0;
    color: #8395af;
    text-align: center;
    font-size: 14px;
}

.auth-switch-line button {
    border: 0;
    background: transparent;
    cursor: pointer;
    font-weight: 950;
}

.auth-terms {
    align-items: flex-start;
    margin: 20px 0 8px;
    line-height: 1.5;
}

.auth-account-panel {
    position: relative;
    z-index: 1;
    width: 100%;
}

.account-dashboard {
    display: grid;
    grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
    gap: clamp(18px, 2vw, 28px);
    width: 100%;
    margin-top: clamp(22px, 3vw, 34px);
    text-align: left;
}

.account-sidebar,
.account-section {
    border: 1px solid rgba(0, 224, 255, 0.22);
    border-radius: 14px;
    background:
        radial-gradient(circle at 12% 0, rgba(0, 224, 255, 0.16), transparent 12rem),
        linear-gradient(145deg, rgba(0, 224, 255, 0.08), rgba(255, 43, 37, 0.07)),
        rgba(5, 16, 31, 0.7);
}

.account-sidebar {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 18px;
    padding: 16px;
}

.account-identity {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 224, 255, 0.12);
}

.account-avatar {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 43, 37, 0.54);
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(255, 43, 37, 0.5), rgba(0, 224, 255, 0.14));
    box-shadow: 0 0 20px rgba(255, 43, 37, 0.22);
    font-weight: 950;
}

.account-identity strong,
.account-section-head strong,
.account-metric strong,
.security-list strong {
    color: #ffffff;
}

.account-identity strong,
.account-identity p,
.account-detail-list dd {
    overflow-wrap: anywhere;
}

.account-identity p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.account-identity small {
    grid-column: 1 / -1;
    width: fit-content;
    padding: 5px 9px;
    border: 1px solid rgba(0, 224, 255, 0.22);
    border-radius: 999px;
    color: var(--cyan);
    background: rgba(0, 224, 255, 0.08);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

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

.account-nav button {
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid rgba(0, 224, 255, 0.12);
    border-radius: 10px;
    color: #aebbd0;
    background: rgba(255, 255, 255, 0.035);
    cursor: pointer;
    font-weight: 850;
    text-align: left;
}

.account-nav button:hover,
.account-nav button.active {
    color: #ffffff;
    border-color: rgba(0, 224, 255, 0.48);
    background: linear-gradient(90deg, rgba(0, 224, 255, 0.16), rgba(255, 43, 37, 0.08));
    box-shadow: 0 0 18px rgba(0, 224, 255, 0.14);
}

.account-logout {
    min-height: 42px;
    margin-top: auto;
    border: 1px solid rgba(0, 224, 255, 0.62);
    border-radius: 10px;
    color: #ffffff;
    background: var(--qwk-cta-gradient);
    box-shadow: var(--qwk-cta-shadow);
    cursor: pointer;
    font-weight: 950;
    text-transform: uppercase;
}

.account-workspace {
    min-width: 0;
}

.account-section {
    min-height: clamp(520px, 58vh, 720px);
    padding: clamp(22px, 2.4vw, 36px);
    animation: pageIn 160ms ease both;
}

.account-section[hidden] {
    display: none;
}

.account-section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.account-section-head span,
.account-metric span,
.account-detail-list dt {
    color: var(--cyan);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.account-section-head strong {
    font-size: 22px;
    text-align: right;
}

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

.account-metric,
.account-empty-state,
.security-field,
.account-detail-list div {
    border: 1px solid rgba(0, 224, 255, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.035);
}

.account-metric {
    display: grid;
    gap: 8px;
    min-height: 112px;
    padding: 16px;
}

.account-metric strong {
    font-size: 19px;
}

.account-detail-list {
    display: grid;
    gap: 10px;
    margin: 0;
}

.account-detail-list div {
    display: grid;
    grid-template-columns: minmax(110px, 0.45fr) minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 54px;
    padding: 12px 14px;
}

.account-detail-list dd {
    margin: 0;
    color: var(--muted);
}

.account-section-copy {
    max-width: 56ch;
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.55;
}

.account-empty-state {
    padding: 18px;
    color: var(--muted);
}

.account-action {
    display: inline-grid;
    place-items: center;
    min-height: 42px;
    margin-top: 16px;
    padding: 0 18px;
    border: 1px solid rgba(0, 224, 255, 0.44);
    border-radius: 10px;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(0, 224, 255, 0.18), rgba(255, 43, 37, 0.12));
    font-weight: 950;
    cursor: pointer;
}

.account-action.primary {
    border-color: rgba(0, 224, 255, 0.72);
    background: var(--qwk-cta-gradient);
    box-shadow: var(--qwk-cta-shadow);
}

.account-action.secondary {
    border-color: rgba(255, 255, 255, 0.18);
    color: var(--muted);
    background: rgba(255, 255, 255, 0.04);
}

.account-ticket-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: -2px 0 18px;
}

.account-ticket-tools .account-action {
    margin-top: 0;
}

.account-ticket-layout {
    display: grid;
    grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1.35fr);
    gap: 14px;
    min-height: 360px;
}

.account-ticket-list {
    display: grid;
    align-content: flex-start;
    gap: 10px;
    min-width: 0;
}

.account-ticket-item,
.account-ticket-thread {
    border: 1px solid rgba(0, 224, 255, 0.14);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.035);
}

.account-ticket-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 7px 12px;
    min-height: 92px;
    padding: 14px;
    color: var(--text);
    cursor: pointer;
    text-align: left;
}

.account-ticket-item:hover,
.account-ticket-item.active {
    border-color: rgba(0, 224, 255, 0.52);
    background: linear-gradient(135deg, rgba(0, 224, 255, 0.13), rgba(255, 43, 37, 0.07));
    box-shadow: 0 0 18px rgba(0, 224, 255, 0.12);
}

.account-ticket-item strong {
    min-width: 0;
    overflow-wrap: anywhere;
}

.account-ticket-item span {
    grid-column: 1 / 2;
    color: var(--muted);
    font-size: 12px;
}

.ticket-status-badge {
    display: inline-grid;
    align-self: start;
    place-items: center;
    min-height: 24px;
    padding: 0 9px;
    border: 1px solid rgba(0, 224, 255, 0.28);
    border-radius: 999px;
    color: var(--cyan);
    background: rgba(0, 224, 255, 0.08);
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
    white-space: nowrap;
}

.ticket-status-badge.pending {
    border-color: rgba(255, 204, 102, 0.38);
    color: #ffd36f;
    background: rgba(255, 204, 102, 0.08);
}

.ticket-status-badge.closed {
    border-color: rgba(255, 255, 255, 0.16);
    color: var(--muted);
    background: rgba(255, 255, 255, 0.05);
}

.account-ticket-thread {
    display: grid;
    align-content: flex-start;
    gap: 14px;
    min-width: 0;
    padding: 16px;
    background:
        radial-gradient(circle at 100% 0, rgba(255, 43, 37, 0.13), transparent 12rem),
        rgba(255, 255, 255, 0.035);
}

.account-ticket-thread-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 224, 255, 0.12);
}

.account-ticket-thread-head div {
    display: grid;
    min-width: 0;
    gap: 6px;
}

.account-ticket-thread-head span {
    color: var(--cyan);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.account-ticket-thread-head strong {
    color: #ffffff;
    font-size: 20px;
    overflow-wrap: anywhere;
}

.ticket-message-list {
    display: grid;
    gap: 12px;
    max-height: min(54vh, 520px);
    overflow-y: auto;
    padding-right: 4px;
}

.ticket-message {
    display: grid;
    gap: 8px;
    width: min(100%, 620px);
    padding: 12px 14px;
    border: 1px solid rgba(0, 224, 255, 0.12);
    border-radius: 12px;
    background: rgba(5, 16, 31, 0.76);
}

.ticket-message.user {
    justify-self: end;
    border-color: rgba(0, 224, 255, 0.24);
    background: rgba(0, 224, 255, 0.07);
}

.ticket-message.admin {
    justify-self: start;
    border-color: rgba(255, 43, 37, 0.22);
    background: rgba(255, 43, 37, 0.07);
}

.ticket-message div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
    color: var(--muted);
    font-size: 12px;
}

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

.ticket-message p {
    margin: 0;
    color: #dbe6f8;
    line-height: 1.55;
    overflow-wrap: anywhere;
    white-space: pre-wrap;
}

.account-ticket-reply {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.account-ticket-reply[hidden] {
    display: none;
}

.security-password-form {
    display: grid;
    max-width: 760px;
    gap: 14px;
}

.security-field {
    display: grid;
    gap: 8px;
    padding: 14px;
}

.security-field span {
    color: var(--cyan);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.security-field input,
.security-field textarea {
    width: 100%;
    border: 0;
    border-radius: 8px;
    color: var(--text);
    background: rgba(4, 10, 22, 0.72);
    outline: 1px solid rgba(0, 224, 255, 0.08);
}

.security-field input {
    min-height: 44px;
    padding: 0 12px;
}

.security-field textarea {
    min-height: 108px;
    padding: 12px;
    resize: vertical;
}

.security-field input:focus,
.security-field textarea:focus {
    outline-color: rgba(0, 224, 255, 0.54);
    box-shadow: 0 0 18px rgba(0, 224, 255, 0.12);
}

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

.security-actions .account-action {
    min-width: 128px;
    margin-top: 4px;
}

.security-status {
    min-height: 20px;
    margin: 0;
    color: var(--muted);
}

.security-status[data-status-type="success"] {
    color: var(--green);
}

.security-status[data-status-type="error"] {
    color: #ff8d8d;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    margin-left: auto;
    border: 1px solid var(--cyan-border);
    border-radius: 12px;
    background: var(--cyan-soft);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    border-radius: 999px;
    background: var(--cyan);
}

.section-panel,
.section-block {
    scroll-margin-top: 104px;
}

.page-host {
    position: relative;
}

.page-section[hidden] {
    display: none;
}

.page-section {
    animation: pageIn 220ms ease both;
}

@keyframes pageIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero {
    position: relative;
    min-height: calc(100vh - 138px);
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    padding: clamp(58px, 7vw, 112px);
    border: 1px solid rgba(0, 224, 255, 0.42);
    border-radius: 24px;
    background: linear-gradient(90deg, rgba(3, 9, 20, 0.92) 0%, rgba(3, 9, 20, 0.56) 45%, rgba(3, 9, 20, 0.86) 100%);
    box-shadow: inset 0 0 0 1px rgba(0, 224, 255, 0.08), var(--shadow-cyan);
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3, 9, 20, 0.98), rgba(3, 9, 20, 0.5) 48%, rgba(3, 9, 20, 0.92)),
        url("../QwkBoost.App/Assets/qwk-boost-hero-logo.png") right 8vw center / min(62vw, 1040px) auto no-repeat;
    opacity: 0.92;
    transform: scale(1.02);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(740px, 100%);
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--cyan);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0;
    color: var(--text);
    font-family: "Segoe UI Variable Display", Inter, "Segoe UI", system-ui, sans-serif;
    font-size: clamp(82px, 11vw, 174px);
    line-height: 0.92;
    letter-spacing: 0;
    text-shadow: 0 0 24px rgba(0, 224, 255, 0.34), 0 0 34px rgba(255, 43, 37, 0.24);
}

.hero-copy {
    max-width: 760px;
    margin: 24px 0 0;
    color: #c8d8f2;
    font-size: clamp(22px, 2vw, 32px);
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
}

.primary-action,
.secondary-action,
.card-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 26px;
    border-radius: 15px;
    border: 1px solid var(--cyan-border);
    color: var(--text);
    background: linear-gradient(90deg, rgba(0, 224, 255, 0.34), rgba(0, 224, 255, 0.08));
    box-shadow: var(--shadow-cyan);
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.secondary-action {
    background: rgba(7, 18, 37, 0.72);
    box-shadow: none;
}

.secondary-action.red {
    border-color: rgba(255, 43, 37, 0.58);
    background: rgba(255, 43, 37, 0.12);
}

.card-action.red,
.primary-action.red {
    border-color: rgba(255, 43, 37, 0.66);
    background: linear-gradient(90deg, rgba(255, 43, 37, 0.34), rgba(255, 43, 37, 0.08));
    box-shadow: var(--shadow-red);
}

.primary-action:hover,
.secondary-action:hover,
.card-action:hover {
    transform: translateY(-2px);
    border-color: var(--cyan);
}

.hero-status {
    position: absolute;
    right: clamp(22px, 5vw, 74px);
    bottom: 28px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 300px;
    padding: 16px 20px;
    border: 1px solid rgba(0, 224, 255, 0.42);
    border-radius: 16px;
    background: rgba(5, 16, 31, 0.78);
    backdrop-filter: blur(16px);
}

.hero-status img {
    width: 90px;
    height: 90px;
    object-fit: contain;
}

.hero-status span,
.requirements-card li {
    color: var(--muted);
}

.hero-status strong {
    display: block;
    margin-top: 4px;
    color: var(--green);
    font-size: 24px;
}

.product-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
    gap: clamp(24px, 3.4vw, 52px);
    align-items: center;
    min-height: calc(100vh - 138px);
    padding: clamp(28px, 3vw, 44px);
    background:
        radial-gradient(circle at 12% 18%, rgba(0, 224, 255, 0.2), transparent 22rem),
        radial-gradient(circle at 88% 26%, rgba(255, 43, 37, 0.18), transparent 24rem),
        linear-gradient(115deg, rgba(3, 9, 20, 0.96), rgba(7, 18, 37, 0.88) 46%, rgba(3, 9, 20, 0.98));
}

.product-copy {
    width: auto;
    max-width: 650px;
}

.product-hero h1 {
    max-width: 760px;
    font-size: clamp(42px, 5vw, 76px);
    line-height: 0.98;
}

.product-hero .hero-copy {
    max-width: 640px;
    color: #d0dff5;
    font-size: clamp(16px, 1.18vw, 20px);
    line-height: 1.58;
}

.download-windows {
    min-height: 64px;
    padding: 0 32px;
    border-radius: 20px;
    border-color: rgba(0, 224, 255, 0.76);
    background:
        radial-gradient(circle at 18% 22%, rgba(255, 43, 37, 0.34), transparent 34%),
        linear-gradient(135deg, rgba(0, 224, 255, 0.34), rgba(7, 18, 37, 0.92) 46%, rgba(255, 43, 37, 0.54));
    box-shadow:
        0 0 30px rgba(0, 224, 255, 0.28),
        0 0 26px rgba(255, 43, 37, 0.2);
    font-size: 17px;
}

.app-preview {
    display: grid;
    gap: 14px;
    min-width: 0;
}

.real-app-preview {
    display: grid;
    gap: 14px;
    min-width: 0;
    margin: 0;
}

.real-app-frame {
    overflow: hidden;
    border: 1px solid rgba(0, 224, 255, 0.46);
    border-radius: 22px;
    background:
        radial-gradient(circle at 72% 12%, rgba(255, 43, 37, 0.14), transparent 18rem),
        rgba(5, 16, 31, 0.92);
    box-shadow:
        inset 0 0 0 1px rgba(0, 224, 255, 0.08),
        0 0 34px rgba(0, 224, 255, 0.22),
        0 0 28px rgba(255, 43, 37, 0.14);
}

.real-app-frame img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.real-app-caption {
    padding: 18px 20px;
    border: 1px solid rgba(0, 224, 255, 0.34);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(0, 224, 255, 0.12), rgba(5, 16, 31, 0.86) 54%, rgba(255, 43, 37, 0.1)),
        rgba(5, 16, 31, 0.86);
    box-shadow: 0 0 22px rgba(0, 224, 255, 0.16);
}

.real-app-caption span {
    color: var(--cyan);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.real-app-caption strong {
    display: block;
    margin-top: 6px;
    font-size: 20px;
    line-height: 1.2;
}

.real-app-caption p {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.55;
}

.optimization-showcase {
    display: grid;
    gap: clamp(30px, 4vw, 58px);
    margin: clamp(28px, 4vw, 56px) 0 0;
}

.showcase-row {
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.84fr);
    gap: clamp(22px, 3vw, 44px);
    align-items: center;
    padding: clamp(18px, 2.2vw, 32px);
    border: 1px solid rgba(0, 224, 255, 0.36);
    border-radius: 24px;
    background:
        radial-gradient(circle at 18% 14%, rgba(0, 224, 255, 0.16), transparent 24rem),
        radial-gradient(circle at 88% 84%, rgba(255, 43, 37, 0.12), transparent 22rem),
        linear-gradient(135deg, rgba(5, 16, 31, 0.88), rgba(2, 7, 17, 0.96));
    box-shadow:
        inset 0 0 0 1px rgba(0, 224, 255, 0.06),
        0 0 28px rgba(0, 224, 255, 0.16);
}

.showcase-row.reverse {
    grid-template-columns: minmax(360px, 0.84fr) minmax(0, 1.16fr);
}

.showcase-row.reverse .showcase-shot {
    grid-column: 2;
}

.showcase-row.reverse .showcase-info {
    grid-column: 1;
    grid-row: 1;
}

.showcase-shot {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(0, 224, 255, 0.48);
    border-radius: 18px;
    background: rgba(2, 7, 17, 0.92);
    box-shadow:
        0 0 30px rgba(0, 224, 255, 0.22),
        inset 0 0 0 1px rgba(0, 224, 255, 0.08);
}

.showcase-shot.pro {
    border-color: rgba(255, 43, 37, 0.52);
    box-shadow:
        0 0 30px rgba(255, 43, 37, 0.2),
        inset 0 0 0 1px rgba(255, 43, 37, 0.08);
}

.showcase-shot img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.showcase-info {
    display: grid;
    gap: 18px;
    min-width: 0;
}

.showcase-info h2 {
    margin: 0;
    font-size: clamp(36px, 4vw, 66px);
    line-height: 0.98;
    text-shadow: 0 0 22px rgba(0, 224, 255, 0.28);
}

.showcase-info.pro h2 {
    text-shadow: 0 0 22px rgba(255, 43, 37, 0.28);
}

.showcase-info p {
    margin: 0;
    color: #c8d8f2;
    font-size: 16px;
    line-height: 1.58;
}

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

.showcase-stats span {
    display: grid;
    place-items: center;
    min-height: 58px;
    padding: 10px 12px;
    border: 1px solid rgba(0, 224, 255, 0.34);
    border-radius: 14px;
    color: #ecf8ff;
    background: rgba(0, 224, 255, 0.1);
    font-size: 14px;
    font-weight: 900;
    text-align: center;
}

.pro .showcase-stats span,
.showcase-info.pro .showcase-stats span {
    border-color: rgba(255, 43, 37, 0.36);
    background: rgba(255, 43, 37, 0.1);
}

.task-pill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.task-pill-grid span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(0, 224, 255, 0.28);
    border-radius: 999px;
    color: #d9efff;
    background: rgba(0, 224, 255, 0.08);
    font-size: 12px;
    font-weight: 850;
}

.task-pill-grid.pro span {
    border-color: rgba(255, 43, 37, 0.32);
    background: rgba(255, 43, 37, 0.09);
}

.task-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.task-list article {
    min-width: 0;
    padding: 14px;
    border: 1px solid rgba(0, 224, 255, 0.24);
    border-radius: 14px;
    background: rgba(2, 7, 17, 0.48);
}

.task-list.pro article {
    border-color: rgba(255, 43, 37, 0.24);
}

.task-list strong {
    display: block;
    color: var(--text);
    font-size: 14px;
}

.task-list span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45;
}

.pro-offer-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px 18px;
    align-items: center;
    padding: 18px;
    border: 1px solid rgba(255, 43, 37, 0.46);
    border-radius: 18px;
    background:
        radial-gradient(circle at 16% 22%, rgba(0, 224, 255, 0.18), transparent 34%),
        radial-gradient(circle at 88% 38%, rgba(255, 43, 37, 0.3), transparent 42%),
        linear-gradient(135deg, rgba(255, 43, 37, 0.14), rgba(2, 7, 17, 0.86) 58%, rgba(0, 224, 255, 0.1));
    box-shadow:
        0 0 24px rgba(255, 43, 37, 0.18),
        inset 0 0 0 1px rgba(0, 224, 255, 0.06);
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 30px;
    padding: 0 12px;
    border: 1px solid rgba(255, 43, 37, 0.62);
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(90deg, rgba(255, 43, 37, 0.46), rgba(0, 224, 255, 0.14));
    box-shadow: 0 0 18px rgba(255, 43, 37, 0.24);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.pro-offer-card strong {
    grid-column: 1;
    color: var(--text);
    font-size: clamp(20px, 1.6vw, 27px);
    line-height: 1.12;
}

.pro-offer-card p {
    grid-column: 1;
    max-width: 620px;
    color: #d5e4f6;
    font-size: 14px;
    line-height: 1.55;
}

.pro-buy-action {
    grid-column: 2;
    grid-row: 1 / span 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 28px;
    border: 1px solid rgba(0, 224, 255, 0.72);
    border-radius: 17px;
    color: #ffffff;
    background:
        radial-gradient(circle at 16% 18%, rgba(0, 224, 255, 0.34), transparent 34%),
        linear-gradient(135deg, rgba(255, 43, 37, 0.9), rgba(109, 34, 255, 0.34) 56%, rgba(0, 224, 255, 0.26));
    box-shadow:
        0 0 26px rgba(255, 43, 37, 0.26),
        0 0 22px rgba(0, 224, 255, 0.18);
    font-size: 15px;
    font-weight: 950;
    text-transform: uppercase;
    white-space: nowrap;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.pro-buy-action:hover {
    transform: translateY(-2px);
    border-color: var(--cyan);
    box-shadow:
        0 0 32px rgba(255, 43, 37, 0.34),
        0 0 26px rgba(0, 224, 255, 0.26);
}

.preview-tabs {
    display: flex;
    gap: 8px;
    max-width: 100%;
    overflow-x: auto;
    padding: 2px 2px 6px;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 224, 255, 0.55) rgba(7, 18, 37, 0.82);
}

.preview-tab {
    flex: 0 0 auto;
    min-height: 42px;
    padding: 0 15px;
    border: 1px solid rgba(0, 224, 255, 0.28);
    border-radius: 13px;
    color: var(--muted);
    background: rgba(5, 16, 31, 0.72);
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
    transition: color 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.preview-tab:hover,
.preview-tab.active {
    color: var(--text);
    border-color: var(--cyan-border);
    background:
        linear-gradient(180deg, rgba(0, 224, 255, 0.2), rgba(7, 18, 37, 0.86)),
        rgba(0, 224, 255, 0.1);
    box-shadow: 0 0 18px rgba(0, 224, 255, 0.22);
}

.preview-tab[data-preview-tab="pro"].active {
    border-color: rgba(255, 43, 37, 0.62);
    background:
        linear-gradient(180deg, rgba(255, 43, 37, 0.24), rgba(7, 18, 37, 0.88)),
        rgba(255, 43, 37, 0.1);
    box-shadow: 0 0 20px rgba(255, 43, 37, 0.26);
}

.preview-window {
    overflow: hidden;
    border: 1px solid rgba(0, 224, 255, 0.42);
    border-radius: 22px;
    background:
        radial-gradient(circle at 70% 8%, rgba(255, 43, 37, 0.14), transparent 18rem),
        linear-gradient(180deg, rgba(5, 16, 31, 0.96), rgba(2, 7, 17, 0.98));
    box-shadow:
        inset 0 0 0 1px rgba(0, 224, 255, 0.08),
        0 0 36px rgba(0, 224, 255, 0.24);
}

.preview-titlebar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    padding: 0 16px;
    border-bottom: 1px solid rgba(0, 224, 255, 0.18);
    background: rgba(1, 5, 12, 0.88);
}

.preview-titlebar span {
    color: #d8f8ff;
    font-size: 13px;
    font-weight: 900;
}

.preview-titlebar div {
    display: flex;
    gap: 6px;
}

.preview-titlebar i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(0, 224, 255, 0.32);
    box-shadow: 0 0 8px rgba(0, 224, 255, 0.24);
}

.preview-titlebar i:nth-child(3) {
    background: rgba(255, 43, 37, 0.56);
    box-shadow: 0 0 8px rgba(255, 43, 37, 0.3);
}

.preview-shell {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    min-height: 420px;
}

.preview-side {
    display: grid;
    justify-items: center;
    align-content: start;
    gap: 10px;
    padding: 22px 10px;
    border-right: 1px solid rgba(0, 224, 255, 0.18);
    background: rgba(7, 18, 37, 0.76);
}

.preview-side span {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(0, 224, 255, 0.44);
    border-radius: 16px;
    color: var(--cyan);
    background: rgba(0, 224, 255, 0.1);
    box-shadow: 0 0 18px rgba(0, 224, 255, 0.18);
    font-size: 22px;
    font-weight: 950;
}

.preview-side small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-align: center;
}

.preview-screen {
    min-width: 0;
    padding: clamp(20px, 3vw, 34px);
}

.preview-screen h2 {
    margin: 0;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1;
    text-shadow: 0 0 18px rgba(0, 224, 255, 0.24), 0 0 18px rgba(255, 43, 37, 0.16);
}

.preview-screen > p:not(.eyebrow) {
    max-width: 640px;
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.55;
}

.preview-body {
    display: grid;
    gap: 14px;
    min-height: 260px;
    margin-top: 22px;
}

.preview-logo-panel,
.preview-main-card,
.preview-table,
.preview-setting {
    border: 1px solid rgba(0, 224, 255, 0.24);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(0, 224, 255, 0.1), rgba(5, 16, 31, 0.76) 48%, rgba(255, 43, 37, 0.08)),
        rgba(5, 16, 31, 0.72);
}

.preview-logo-panel {
    display: grid;
    place-items: center;
    min-height: 180px;
    border-color: rgba(255, 43, 37, 0.34);
    background:
        radial-gradient(circle at 50% 40%, rgba(255, 43, 37, 0.2), transparent 15rem),
        rgba(5, 16, 31, 0.76);
}

.preview-logo-panel img {
    width: min(420px, 78%);
    max-height: 150px;
    object-fit: contain;
    filter: drop-shadow(0 0 22px rgba(255, 43, 37, 0.5));
}

.preview-metrics,
.preview-cards,
.preview-module-grid,
.preview-fix-grid,
.preview-settings-list {
    display: grid;
    gap: 12px;
}

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

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

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

.preview-metric,
.preview-card,
.preview-module,
.preview-fix {
    min-width: 0;
    padding: 15px;
    border: 1px solid rgba(0, 224, 255, 0.22);
    border-radius: 15px;
    background: rgba(0, 224, 255, 0.08);
}

.preview-metric span,
.preview-card span,
.preview-module span,
.preview-fix span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.35;
}

.preview-metric strong,
.preview-card strong,
.preview-module strong,
.preview-fix strong {
    display: block;
    margin-top: 6px;
    color: var(--text);
    font-size: 20px;
    line-height: 1.15;
}

.preview-metric strong {
    color: var(--green);
}

.preview-main-card {
    display: grid;
    grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    min-height: 210px;
    padding: 22px;
}

.preview-ring {
    display: grid;
    place-items: center;
    width: min(220px, 100%);
    aspect-ratio: 1;
    margin: 0 auto;
    border: 12px solid rgba(0, 224, 255, 0.18);
    border-top-color: rgba(255, 43, 37, 0.84);
    border-right-color: rgba(0, 224, 255, 0.74);
    border-radius: 50%;
    color: var(--text);
    box-shadow: inset 0 0 28px rgba(0, 224, 255, 0.14), 0 0 28px rgba(0, 224, 255, 0.16);
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 950;
}

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

.preview-status-list div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    border: 1px solid rgba(0, 224, 255, 0.22);
    border-radius: 14px;
    background: rgba(2, 8, 18, 0.54);
}

.preview-status-list span {
    color: var(--muted);
}

.preview-status-list strong {
    color: var(--green);
}

.preview-module {
    min-height: 118px;
    border-left: 4px solid var(--cyan);
}

.preview-module.red {
    border-color: rgba(255, 43, 37, 0.58);
    border-left: 4px solid var(--red);
    background: rgba(255, 43, 37, 0.08);
}

.preview-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.preview-tags em {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 9px;
    border: 1px solid rgba(0, 224, 255, 0.24);
    border-radius: 999px;
    color: #d8f8ff;
    background: rgba(0, 224, 255, 0.08);
    font-size: 11px;
    font-style: normal;
    font-weight: 850;
}

.preview-module.red .preview-tags em {
    border-color: rgba(255, 43, 37, 0.32);
    background: rgba(255, 43, 37, 0.1);
}

.preview-table {
    overflow: hidden;
}

.preview-table-row {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr) 110px;
    gap: 12px;
    align-items: center;
    min-height: 58px;
    padding: 0 16px;
    border-bottom: 1px solid rgba(0, 224, 255, 0.12);
}

.preview-table-row:last-child {
    border-bottom: 0;
}

.preview-table-row span {
    color: var(--muted);
    font-size: 13px;
}

.preview-table-row strong {
    color: var(--text);
}

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

.preview-fix {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 13px;
}

.preview-fix::before {
    content: "";
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    border: 1px solid var(--cyan-border);
    border-radius: 5px;
    background: rgba(0, 224, 255, 0.1);
}

.preview-setting {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    min-height: 76px;
    padding: 12px 16px;
}

.preview-setting i {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(0, 224, 255, 0.34);
    border-radius: 14px;
    color: var(--cyan);
    background: rgba(0, 224, 255, 0.1);
    font-style: normal;
    font-weight: 950;
}

.preview-setting strong {
    display: block;
}

.preview-setting span {
    color: var(--muted);
    font-size: 13px;
}

.preview-switch {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 72px;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(255, 43, 37, 0.36);
    border-radius: 999px;
    color: #dce6f7;
    background: rgba(255, 43, 37, 0.1);
    font-size: 11px;
    font-weight: 900;
}

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

.preview-info-card {
    padding: 18px 20px;
    border: 1px solid rgba(0, 224, 255, 0.34);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(0, 224, 255, 0.12), rgba(5, 16, 31, 0.86) 54%, rgba(255, 43, 37, 0.1)),
        rgba(5, 16, 31, 0.86);
    box-shadow: 0 0 22px rgba(0, 224, 255, 0.16);
}

.preview-info-card span {
    color: var(--cyan);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.preview-info-card strong {
    display: block;
    margin-top: 6px;
    font-size: 20px;
    line-height: 1.2;
}

.preview-info-card p {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.55;
}

.preview-progress {
    overflow: hidden;
    height: 4px;
    border-radius: 999px;
    background: rgba(0, 224, 255, 0.12);
}

.preview-progress span {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--cyan), var(--red));
    transform-origin: left center;
    animation: previewProgress 3000ms linear infinite;
}

.app-preview.is-paused .preview-progress span {
    animation-play-state: paused;
}

@keyframes previewProgress {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

.download-page > .section-block,
.download-page > .info-grid,
.download-page > .cta-strip {
    display: none;
}

.download-hero {
    display: grid;
    gap: clamp(30px, 4vw, 54px);
    min-height: auto;
    padding: clamp(34px, 5vw, 72px) clamp(18px, 4vw, 58px);
    overflow: hidden;
    text-align: center;
    background:
        radial-gradient(circle at 16% 16%, rgba(0, 224, 255, 0.18), transparent 22rem),
        radial-gradient(circle at 84% 30%, rgba(255, 43, 37, 0.18), transparent 24rem),
        linear-gradient(145deg, rgba(3, 9, 20, 0.98), rgba(7, 18, 37, 0.88) 48%, rgba(2, 7, 17, 0.98));
}

.download-copy {
    display: grid;
    justify-items: center;
    max-width: 910px;
    margin: 0 auto;
}

.download-copy h1 {
    margin: 0;
    color: var(--text);
    font-family: "Segoe UI Variable Display", Inter, "Segoe UI", system-ui, sans-serif;
    font-size: clamp(48px, 6vw, 96px);
    line-height: 0.96;
    letter-spacing: 0;
    text-shadow: 0 0 24px rgba(0, 224, 255, 0.3), 0 0 30px rgba(255, 43, 37, 0.18);
}

.download-copy p:not(.eyebrow) {
    max-width: 760px;
    margin: 22px 0 0;
    color: #c8d8f2;
    font-size: clamp(17px, 1.45vw, 22px);
    line-height: 1.62;
}

.download-requirements {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.download-requirements span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 13px;
    border: 1px solid rgba(0, 224, 255, 0.28);
    border-radius: 999px;
    color: #d9efff;
    background: rgba(0, 224, 255, 0.08);
    font-size: 12px;
    font-weight: 900;
}

.download-main-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    margin-top: 32px;
    padding: 0 32px;
    border: 1px solid rgba(0, 224, 255, 0.76);
    border-color: rgba(0, 224, 255, 0.76);
    border-radius: 20px;
    color: #ffffff;
    background:
        radial-gradient(circle at 18% 22%, rgba(255, 43, 37, 0.34), transparent 34%),
        linear-gradient(135deg, rgba(0, 224, 255, 0.34), rgba(7, 18, 37, 0.92) 46%, rgba(255, 43, 37, 0.54));
    box-shadow:
        0 0 30px rgba(0, 224, 255, 0.28),
        0 0 26px rgba(255, 43, 37, 0.2);
    font-size: 17px;
    font-weight: 950;
    text-transform: uppercase;
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.download-main-action:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 224, 255, 0.74);
    box-shadow:
        0 0 34px rgba(0, 224, 255, 0.34),
        0 0 30px rgba(255, 43, 37, 0.26);
}

.download-shot {
    width: min(1120px, 100%);
    margin: 0 auto;
}

.download-shot img {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid rgba(0, 224, 255, 0.48);
    border-radius: 22px;
    background: rgba(2, 7, 17, 0.94);
    box-shadow:
        0 0 36px rgba(0, 224, 255, 0.22),
        0 0 34px rgba(255, 43, 37, 0.16);
}

.download-shot figcaption {
    margin-top: 16px;
    color: var(--muted);
    line-height: 1.5;
}

.download-shot figcaption span {
    display: block;
    color: var(--cyan);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.download-shot figcaption strong {
    display: block;
    margin-top: 4px;
    color: var(--text);
    font-size: 18px;
}

.download-tips {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 22px;
}

.download-tips article {
    min-width: 0;
    padding: 22px;
    border: 1px solid rgba(0, 224, 255, 0.28);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(0, 224, 255, 0.1), rgba(5, 16, 31, 0.84) 54%, rgba(255, 43, 37, 0.1)),
        rgba(5, 16, 31, 0.78);
    box-shadow: 0 0 22px rgba(0, 224, 255, 0.12);
}

.download-tips span {
    color: var(--cyan);
    font-size: 12px;
    font-weight: 950;
}

.download-tips strong {
    display: block;
    margin-top: 10px;
    color: var(--text);
    font-size: 19px;
}

.download-tips p {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.55;
}

.get-pro-page {
    display: block;
}

.get-pro-hero {
    padding: clamp(34px, 5vw, 64px);
    text-align: center;
    background:
        radial-gradient(circle at 18% 18%, rgba(0, 224, 255, 0.16), transparent 22rem),
        radial-gradient(circle at 82% 24%, rgba(255, 43, 37, 0.18), transparent 24rem),
        linear-gradient(145deg, rgba(3, 9, 20, 0.98), rgba(7, 18, 37, 0.88) 48%, rgba(2, 7, 17, 0.98));
}

.get-pro-hero h1 {
    margin: 0;
    color: var(--text);
    font-family: "Segoe UI Variable Display", Inter, "Segoe UI", system-ui, sans-serif;
    font-size: clamp(46px, 6vw, 88px);
    line-height: 0.96;
    letter-spacing: 0;
    text-shadow: 0 0 24px rgba(0, 224, 255, 0.3), 0 0 30px rgba(255, 43, 37, 0.18);
}

.get-pro-hero p:not(.eyebrow) {
    max-width: 820px;
    margin: 20px auto 0;
    color: #c8d8f2;
    font-size: clamp(17px, 1.45vw, 22px);
    line-height: 1.62;
}

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

.pro-plan-card {
    position: relative;
    display: grid;
    gap: 14px;
    min-width: 0;
    padding: 30px;
    border: 1px solid rgba(0, 224, 255, 0.24);
    border-radius: 22px;
    background:
        radial-gradient(circle at 16% 12%, rgba(0, 224, 255, 0.12), transparent 26%),
        linear-gradient(145deg, rgba(0, 224, 255, 0.06), rgba(5, 16, 31, 0.84) 58%, rgba(2, 7, 17, 0.9)),
        rgba(2, 7, 17, 0.76);
    box-shadow: inset 0 0 0 1px rgba(0, 224, 255, 0.04);
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease, transform 180ms ease;
}

.pro-plan-card.featured,
.pro-plan-card.lifetime {
    border-color: rgba(0, 224, 255, 0.24);
    box-shadow: inset 0 0 0 1px rgba(0, 224, 255, 0.04);
}

.pro-plan-card.selected {
    border-color: rgba(255, 43, 37, 0.76);
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 43, 37, 0.28), transparent 28%),
        linear-gradient(145deg, rgba(255, 43, 37, 0.18), rgba(5, 16, 31, 0.86) 54%, rgba(0, 224, 255, 0.08));
    box-shadow: 0 0 28px rgba(255, 43, 37, 0.22), inset 0 0 0 1px rgba(255, 43, 37, 0.08);
}

.pro-plan-card.selected::after {
    content: "SELECTED";
    position: absolute;
    top: 30px;
    right: 30px;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 11px;
    border: 1px solid rgba(255, 43, 37, 0.62);
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(90deg, rgba(255, 43, 37, 0.46), rgba(0, 224, 255, 0.14));
    box-shadow: 0 0 18px rgba(255, 43, 37, 0.24);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0;
}

.plan-ribbon-stack {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    width: fit-content;
}

.plan-ribbon {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.plan-ribbon.cyan,
.plan-ribbon.red {
    border: 1px solid rgba(255, 43, 37, 0.62);
    color: #ffffff;
    background: linear-gradient(90deg, rgba(255, 43, 37, 0.46), rgba(0, 224, 255, 0.14));
    box-shadow: 0 0 18px rgba(255, 43, 37, 0.24);
}

.pro-plan-card h2 {
    margin: 0;
    color: var(--text);
    font-size: clamp(28px, 2.4vw, 40px);
    line-height: 1.04;
}

.plan-platform,
.plan-note {
    margin: 0;
    color: var(--muted);
    line-height: 1.52;
}

.old-price {
    min-height: 20px;
    color: #7f91aa;
    font-weight: 800;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.plan-price strong {
    color: #ffffff;
    font-size: clamp(34px, 3.6vw, 56px);
    line-height: 0.95;
    text-shadow: 0 0 16px rgba(255, 43, 37, 0.18);
}

.plan-price span {
    color: #d7e6f8;
    font-weight: 900;
}

.pro-plan-card button {
    min-height: 54px;
    border: 1px solid rgba(0, 224, 255, 0.34);
    border-radius: 15px;
    color: var(--text);
    background: rgba(0, 224, 255, 0.1);
    font-size: 15px;
    font-weight: 950;
    cursor: pointer;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.pro-plan-card.selected button {
    border-color: rgba(0, 224, 255, 0.78);
    background: var(--qwk-cta-gradient);
    box-shadow: var(--qwk-cta-shadow);
}

.pro-plan-card button:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 224, 255, 0.74);
}

.pro-plan-card ul {
    display: grid;
    gap: 10px;
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
    color: #d5e4f6;
}

.pro-plan-card li::before {
    content: "+";
    margin-right: 9px;
    color: var(--green);
    font-weight: 950;
}

.pro-details-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.pro-details-strip span {
    display: grid;
    place-items: center;
    min-height: 52px;
    padding: 10px 14px;
    border: 1px solid rgba(0, 224, 255, 0.26);
    border-radius: 15px;
    color: #dceaff;
    background: rgba(0, 224, 255, 0.08);
    font-size: 13px;
    font-weight: 900;
    text-align: center;
}

.auth-payment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(24px, 4vw, 46px);
    margin-top: clamp(24px, 4vw, 46px);
}

.payment-panel {
    min-width: 0;
    padding: clamp(24px, 3vw, 34px);
    border: 1px solid rgba(0, 224, 255, 0.28);
    border-radius: 22px;
    background:
        linear-gradient(145deg, rgba(0, 224, 255, 0.08), rgba(5, 16, 31, 0.84) 54%, rgba(255, 43, 37, 0.08)),
        rgba(2, 7, 17, 0.78);
}

.payment-panel h2 {
    margin: 0 0 20px;
    color: var(--text);
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1.08;
}

.payment-card-form {
    display: grid;
    gap: 14px;
}

.payment-card-form label {
    display: grid;
    gap: 8px;
    color: #e9f4ff;
    font-size: 14px;
    font-weight: 900;
}

.payment-card-form input {
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid rgba(0, 224, 255, 0.26);
    border-radius: 12px;
    color: var(--text);
    background: rgba(2, 7, 17, 0.74);
    outline: none;
}

.pro-auth-panel {
    display: grid;
    place-items: center;
    min-width: 0;
}

[data-pro-auth-step][hidden] {
    display: none !important;
}

.get-pro-auth-window {
    width: min(620px, 100%);
    padding: clamp(20px, 2.8vw, 32px);
    scroll-margin-block: 18vh;
}

.get-pro-auth-window .auth-heading p {
    margin-top: 14px;
    margin-bottom: 16px;
    font-size: clamp(16px, 1.4vw, 18px);
}

.pro-auth-panel,
.payment-panel {
    scroll-margin-block: 18vh;
}

.payment-card-form input:disabled {
    color: rgba(213, 228, 246, 0.42);
    border-color: rgba(255, 43, 37, 0.24);
    background: rgba(5, 16, 31, 0.5);
    cursor: not-allowed;
}

.payment-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.48fr);
    gap: 20px;
    align-items: start;
}

.payment-lock {
    margin: 0 0 16px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 43, 37, 0.32);
    border-radius: 14px;
    color: #dceaff;
    background: rgba(255, 43, 37, 0.08);
}

.payment-method {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 62px;
    padding: 0 18px;
    border: 1px solid rgba(0, 224, 255, 0.28);
    border-radius: 14px;
    color: #ffffff;
    background: rgba(0, 224, 255, 0.08);
    font-size: 15px;
    font-weight: 950;
}

.payment-method::after {
    content: "VISA  MC";
    color: var(--cyan);
    font-size: 12px;
    letter-spacing: 0;
}

.payment-card-form.locked {
    position: relative;
    margin-top: 16px;
    opacity: 0.72;
}

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

.cart-summary {
    display: grid;
    gap: 14px;
    margin-top: -8px;
}

.cart-offer-card,
.cart-breakdown {
    border: 1px solid rgba(255, 43, 37, 0.58);
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 43, 37, 0.2), transparent 40%),
        rgba(31, 4, 10, 0.72);
    box-shadow: 0 0 26px rgba(255, 43, 37, 0.16);
}

.cart-offer-card {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 12px;
    padding: 34px 26px 28px;
    border-radius: 16px 16px 0 0;
    text-align: center;
}

.cart-close {
    position: absolute;
    top: 16px;
    right: 16px;
    border: 0;
    color: #8395af;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.cart-plan-label {
    color: #ff4b52;
    font-size: 18px;
    font-weight: 950;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.cart-price-line {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    color: #ffffff;
}

.cart-price-line strong {
    font-size: clamp(46px, 5vw, 68px);
    line-height: 0.95;
    text-shadow: 0 0 18px rgba(255, 43, 37, 0.2);
}

.cart-price-line small {
    font-size: 18px;
    font-weight: 950;
}

.cart-offer-card p {
    max-width: 320px;
    margin: 0;
    color: #ffffff;
    font-size: 13px;
    line-height: 1.45;
}

.cart-offer-card em {
    color: #ff6d72;
    font-size: 13px;
    font-style: normal;
    font-weight: 900;
}

.cart-breakdown {
    display: grid;
    border-top: 0;
    border-radius: 0 0 16px 16px;
}

.cart-breakdown div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 70px;
    padding: 0 26px;
    border-top: 1px solid rgba(255, 43, 37, 0.48);
    color: #ffffff;
    font-weight: 950;
}

.cart-breakdown span {
    color: #ffffff;
}

.cart-breakdown strong {
    color: #ffffff;
}

.cart-breakdown .discount-value {
    color: var(--green);
}

.cart-total-line {
    font-size: 21px;
}

.checkout-action {
    width: 100%;
    min-height: 54px;
    border: 1px solid rgba(0, 224, 255, 0.78);
    border-radius: 14px;
    background: var(--qwk-cta-gradient);
    color: #ffffff;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: var(--qwk-cta-shadow);
}

.checkout-action:disabled {
    cursor: not-allowed;
    opacity: 0.48;
    filter: grayscale(0.55);
}

.free-pro-compare {
    margin-top: clamp(42px, 6vw, 76px);
    padding: clamp(26px, 4vw, 46px);
    border: 1px solid rgba(0, 224, 255, 0.32);
    border-radius: 24px;
    background:
        radial-gradient(circle at 10% 12%, rgba(0, 224, 255, 0.14), transparent 22rem),
        radial-gradient(circle at 90% 10%, rgba(255, 43, 37, 0.18), transparent 24rem),
        rgba(2, 7, 17, 0.78);
    box-shadow: var(--shadow-cyan);
}

.compare-heading {
    display: grid;
    gap: 12px;
    max-width: 920px;
    margin: 0 auto 28px;
    text-align: center;
}

.compare-heading h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1;
    text-shadow: 0 0 22px rgba(0, 224, 255, 0.2), 0 0 22px rgba(255, 43, 37, 0.14);
}

.compare-heading p:not(.eyebrow) {
    margin: 0;
    color: #c8d8f2;
    line-height: 1.6;
}

.compare-shots {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}

.compare-shot {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(0, 224, 255, 0.34);
    border-radius: 18px;
    background: rgba(5, 16, 31, 0.8);
    box-shadow: inset 0 0 0 1px rgba(0, 224, 255, 0.05);
}

.compare-shot.pro {
    border-color: rgba(255, 43, 37, 0.48);
    box-shadow: 0 0 24px rgba(255, 43, 37, 0.14);
}

.compare-shot span {
    display: block;
    padding: 14px 16px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
}

.compare-shot.free span {
    color: var(--cyan);
}

.compare-shot.pro span {
    color: #ff6d72;
}

.compare-shot img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: top center;
}

.compare-module-grid {
    display: grid;
    gap: 10px;
}

.compare-row {
    display: grid;
    grid-template-columns: minmax(180px, 0.75fr) minmax(0, 1.2fr) minmax(180px, 0.75fr);
    gap: 14px;
    align-items: center;
    min-width: 0;
    padding: 16px;
    border: 1px solid rgba(0, 224, 255, 0.2);
    border-radius: 15px;
    background:
        linear-gradient(90deg, rgba(0, 224, 255, 0.08), rgba(5, 16, 31, 0.68) 52%, rgba(255, 43, 37, 0.1)),
        rgba(2, 7, 17, 0.56);
}

.compare-row.compare-header {
    min-height: 48px;
    color: var(--muted);
    background: rgba(0, 224, 255, 0.08);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.compare-row strong {
    color: #ffffff;
    line-height: 1.25;
}

.compare-row strong:first-child {
    color: #d8f8ff;
}

.compare-row strong:last-child {
    color: #ffccd0;
}

.compare-row p {
    margin: 0;
    color: #b9cae4;
    line-height: 1.55;
}

.section-block {
    margin: 24px 0;
    padding: clamp(34px, 4vw, 58px);
    border: 1px solid rgba(0, 224, 255, 0.28);
    border-radius: 24px;
    background: rgba(7, 18, 37, 0.74);
    box-shadow: inset 0 0 0 1px rgba(0, 224, 255, 0.04);
}

.section-heading {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}

.section-heading h2 {
    margin: 0;
    font-family: "Segoe UI Variable Display", Inter, "Segoe UI", system-ui, sans-serif;
    font-size: clamp(40px, 5vw, 72px);
    letter-spacing: 0;
}

.section-mark {
    display: grid;
    place-items: center;
    width: 60px;
    height: 60px;
    border: 1px solid var(--cyan-border);
    border-radius: 16px;
    color: var(--cyan);
    background: rgba(0, 224, 255, 0.11);
    font-weight: 900;
    box-shadow: 0 0 18px rgba(0, 224, 255, 0.18);
}

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

.info-grid {
    display: grid;
    gap: 20px;
    margin: 24px 0;
}

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

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

.download-card,
.requirements-card,
.price-card,
.info-card {
    border: 1px solid rgba(0, 224, 255, 0.28);
    border-radius: 20px;
    background: var(--panel);
    padding: clamp(26px, 3vw, 36px);
}

.download-card.pro,
.price-card.featured,
.info-card.red {
    border-color: rgba(255, 43, 37, 0.5);
    background: linear-gradient(180deg, rgba(255, 43, 37, 0.13), rgba(7, 18, 37, 0.82));
    box-shadow: var(--shadow-red);
}

.download-card img {
    width: 96px;
    height: 96px;
    object-fit: contain;
    margin-bottom: 22px;
}

.download-card h3,
.requirements-card h3,
.price-card h3,
.info-card h3 {
    margin: 0 0 14px;
    font-size: clamp(24px, 2vw, 32px);
}

.download-card p,
.price-card p,
.info-card p {
    color: #c6d7f0;
    font-size: 16px;
    line-height: 1.72;
}

.card-kicker {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--cyan);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.info-card.red .card-kicker {
    color: #ff7a82;
}

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

.module-grid article {
    min-height: 136px;
    padding: 24px;
    border: 1px solid rgba(0, 224, 255, 0.24);
    border-radius: 18px;
    background: rgba(5, 16, 31, 0.78);
}

.module-grid strong {
    display: block;
    margin-bottom: 8px;
    color: var(--text);
    font-size: 19px;
}

.module-grid span {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.5;
}

.steps,
.clean-list {
    margin: 12px 0 0;
    padding-left: 20px;
    color: var(--muted);
    line-height: 1.9;
}

.release-box {
    display: grid;
    gap: 6px;
    margin-top: 16px;
    padding: 16px;
    border: 1px solid rgba(0, 224, 255, 0.25);
    border-radius: 14px;
    background: rgba(0, 224, 255, 0.08);
}

.release-box span {
    color: var(--muted);
    font-size: 13px;
}

.release-box strong {
    color: var(--cyan);
    font-size: 18px;
}

.stat-ribbon {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin: 24px 0;
}

.stat-ribbon article {
    min-height: 154px;
    padding: 24px;
    border: 1px solid rgba(0, 224, 255, 0.3);
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(0, 224, 255, 0.1), rgba(7, 18, 37, 0.82)),
        var(--panel);
    box-shadow: inset 0 0 0 1px rgba(0, 224, 255, 0.04);
}

.stat-ribbon span {
    display: block;
    margin-bottom: 10px;
    color: var(--cyan);
    font-size: clamp(28px, 3vw, 48px);
    font-weight: 950;
    line-height: 1;
}

.stat-ribbon strong {
    display: block;
    color: var(--text);
    font-size: 18px;
}

.stat-ribbon small {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.showcase-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(320px, 0.9fr);
    gap: 20px;
    margin: 24px 0;
}

.showcase-panel {
    min-height: 320px;
    padding: clamp(30px, 4vw, 54px);
    border: 1px solid rgba(0, 224, 255, 0.3);
    border-radius: 24px;
    background:
        radial-gradient(circle at 82% 18%, rgba(0, 224, 255, 0.14), transparent 17rem),
        rgba(7, 18, 37, 0.78);
    box-shadow: inset 0 0 0 1px rgba(0, 224, 255, 0.05);
}

.showcase-panel.big {
    min-height: 380px;
}

.showcase-panel.red {
    border-color: rgba(255, 43, 37, 0.5);
    background:
        radial-gradient(circle at 78% 18%, rgba(255, 43, 37, 0.18), transparent 17rem),
        linear-gradient(180deg, rgba(255, 43, 37, 0.12), rgba(7, 18, 37, 0.82));
    box-shadow: var(--shadow-red);
}

.showcase-panel h2 {
    max-width: 950px;
    margin: 0;
    font-family: "Segoe UI Variable Display", Inter, "Segoe UI", system-ui, sans-serif;
    font-size: clamp(36px, 4.8vw, 76px);
    line-height: 1.02;
    letter-spacing: 0;
}

.showcase-panel h3 {
    margin: 0 0 16px;
    font-size: clamp(26px, 3vw, 42px);
}

.showcase-panel p {
    max-width: 880px;
    margin: 22px 0 0;
    color: #c6d7f0;
    font-size: clamp(17px, 1.5vw, 22px);
    line-height: 1.7;
}

.game-chip-row,
.release-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.game-chip-row span,
.release-metrics span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid rgba(0, 224, 255, 0.32);
    border-radius: 999px;
    color: var(--text);
    background: rgba(0, 224, 255, 0.1);
    font-size: 14px;
    font-weight: 800;
}

.release-metrics span {
    gap: 8px;
    border-radius: 14px;
}

.release-metrics strong {
    color: var(--cyan);
}

.requirements-card ul {
    margin: 16px 0 0;
    padding-left: 18px;
    line-height: 1.9;
}

.ok {
    color: var(--green);
}

.hot {
    color: var(--red);
}

.muted {
    color: var(--yellow);
}

.plan-badge {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.plan-badge.cyan {
    color: var(--cyan);
    border: 1px solid var(--cyan-border);
    background: var(--cyan-soft);
}

.plan-badge.red {
    color: #ff7a82;
    border: 1px solid rgba(255, 43, 37, 0.58);
    background: var(--red-soft);
}

.price {
    margin: 6px 0 12px;
    color: var(--text);
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
}

.help-page {
    min-height: calc(100vh - 150px);
    margin: 24px calc(clamp(18px, 3vw, 46px) * -1) 0;
    padding: clamp(112px, 10vw, 148px) clamp(18px, 4vw, 56px) clamp(86px, 9vw, 130px);
    background:
        radial-gradient(circle at 18% 0%, rgba(0, 224, 255, 0.18), transparent 24rem),
        radial-gradient(circle at 84% 8%, rgba(255, 43, 37, 0.18), transparent 24rem),
        linear-gradient(180deg, rgba(5, 16, 31, 0.74), rgba(3, 9, 20, 0.98) 42%, #01040b 100%);
}

.help-stage {
    width: min(1080px, 100%);
    margin: 0 auto;
}

.help-article-page {
    padding-top: clamp(92px, 9vw, 126px);
}

.help-hero {
    position: relative;
    margin: 0 0 clamp(42px, 5vw, 64px);
    padding: clamp(28px, 4vw, 42px);
    border: 1px solid rgba(0, 224, 255, 0.34);
    border-radius: 22px;
    background:
        radial-gradient(circle at 88% 24%, rgba(255, 43, 37, 0.16), transparent 14rem),
        linear-gradient(180deg, rgba(7, 18, 37, 0.88), rgba(5, 16, 31, 0.66));
    box-shadow: var(--shadow-cyan);
    text-align: center;
}

.help-hero h1 {
    position: relative;
    margin: 0;
    color: var(--text);
    font-family: "Segoe UI Variable Display", Inter, "Segoe UI", system-ui, sans-serif;
    font-size: clamp(42px, 5.5vw, 76px);
    line-height: 0.98;
    text-shadow: 0 0 24px rgba(0, 224, 255, 0.28), 0 0 26px rgba(255, 43, 37, 0.18);
}

.help-hero p:last-child {
    position: relative;
    max-width: 680px;
    margin: 18px auto 0;
    color: #c6d7f0;
    font-size: clamp(16px, 1.7vw, 20px);
    line-height: 1.65;
}

.help-tabs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 clamp(30px, 4vw, 48px);
    padding: 10px;
    border: 1px solid rgba(0, 224, 255, 0.34);
    border-radius: 20px;
    background:
        radial-gradient(circle at 14% 20%, rgba(0, 224, 255, 0.14), transparent 18rem),
        linear-gradient(135deg, rgba(5, 16, 31, 0.92), rgba(2, 7, 17, 0.96));
    box-shadow: var(--shadow-cyan);
}

.help-tab {
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid rgba(0, 224, 255, 0.24);
    border-radius: 15px;
    color: var(--muted);
    background: rgba(5, 16, 31, 0.72);
    font-size: 14px;
    font-weight: 950;
    cursor: pointer;
    transition: color 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.help-tab:hover,
.help-tab.active {
    color: #ffffff;
    border-color: rgba(0, 224, 255, 0.72);
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 43, 37, 0.18), transparent 34%),
        linear-gradient(180deg, rgba(0, 224, 255, 0.18), rgba(5, 16, 31, 0.88));
    box-shadow: 0 0 20px rgba(0, 224, 255, 0.22);
}

.help-panels {
    min-width: 0;
}

.help-panel[hidden] {
    display: none;
}

.help-panel {
    animation: pageIn 180ms ease both;
}

.help-ticket-panel {
    width: 100%;
}

.legal-window,
.about-window {
    padding: clamp(26px, 4vw, 44px);
    border: 1px solid rgba(0, 224, 255, 0.38);
    border-radius: 22px;
    background:
        radial-gradient(circle at 84% 12%, rgba(255, 43, 37, 0.18), transparent 18rem),
        radial-gradient(circle at 12% 20%, rgba(0, 224, 255, 0.16), transparent 20rem),
        linear-gradient(135deg, rgba(7, 18, 37, 0.9), rgba(2, 7, 17, 0.96));
    box-shadow: var(--shadow-cyan);
}

.legal-window.privacy {
    background:
        radial-gradient(circle at 84% 12%, rgba(0, 224, 255, 0.16), transparent 18rem),
        radial-gradient(circle at 12% 20%, rgba(255, 43, 37, 0.14), transparent 20rem),
        linear-gradient(135deg, rgba(7, 18, 37, 0.92), rgba(2, 7, 17, 0.98));
}

.legal-window h2,
.about-window h2 {
    margin: 0 0 26px;
    color: var(--text);
    font-size: clamp(38px, 5vw, 68px);
    line-height: 0.98;
    text-shadow: 0 0 24px rgba(0, 224, 255, 0.24), 0 0 22px rgba(255, 43, 37, 0.16);
}

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

.legal-text,
.about-card,
.about-creator span {
    min-width: 0;
    border: 1px solid rgba(0, 224, 255, 0.24);
    border-radius: 16px;
    background:
        linear-gradient(135deg, rgba(0, 224, 255, 0.08), rgba(5, 16, 31, 0.78) 52%, rgba(255, 43, 37, 0.08)),
        rgba(2, 7, 17, 0.58);
}

.legal-text {
    padding: 20px;
}

.legal-text h3 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 19px;
}

.legal-text p,
.about-window p {
    margin: 0;
    color: #c4d4ee;
    line-height: 1.68;
}

.legal-text p + p,
.about-window p + p {
    margin-top: 12px;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
    gap: 20px;
    align-items: stretch;
}

.about-card {
    display: grid;
    align-content: center;
    gap: 12px;
    padding: 24px;
    box-shadow: 0 0 22px rgba(255, 43, 37, 0.12);
}

.about-card span {
    color: var(--cyan);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.about-card strong {
    color: #ffffff;
    font-size: 28px;
    line-height: 1;
}

.about-creator {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.about-creator span {
    display: grid;
    gap: 6px;
    padding: 16px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.35;
}

.about-creator strong {
    color: #ffffff;
    font-size: 16px;
}

.about-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.about-socials a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 18px 0 10px;
    border: 1px solid rgba(0, 224, 255, 0.36);
    border-radius: 14px;
    color: #ffffff;
    background:
        radial-gradient(circle at 14% 18%, rgba(255, 43, 37, 0.24), transparent 34%),
        linear-gradient(135deg, rgba(0, 224, 255, 0.16), rgba(5, 16, 31, 0.9));
    box-shadow: 0 0 16px rgba(0, 224, 255, 0.14);
    font-size: 14px;
    font-weight: 950;
    cursor: pointer;
}

.about-socials a:hover {
    border-color: rgba(0, 224, 255, 0.78);
    background:
        radial-gradient(circle at 14% 18%, rgba(255, 43, 37, 0.3), transparent 34%),
        linear-gradient(135deg, rgba(0, 224, 255, 0.22), rgba(5, 16, 31, 0.94));
    box-shadow: 0 0 22px rgba(0, 224, 255, 0.24);
}

.about-socials span {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(0, 224, 255, 0.36);
    border-radius: 10px;
    background:
        radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.16), transparent 62%),
        rgba(2, 8, 18, 0.58);
    box-shadow: inset 0 0 12px rgba(0, 224, 255, 0.08);
}

.about-socials img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(0, 224, 255, 0.22));
}

.help-block + .help-block {
    margin-top: clamp(72px, 9vw, 116px);
}

.help-section-head {
    max-width: 760px;
    margin: 0 0 28px;
}

.help-section-head p:last-child {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
}

.help-title {
    margin: 0 0 28px;
    color: var(--text);
    font-size: clamp(26px, 2.6vw, 32px);
    line-height: 1.15;
    text-align: left;
    text-shadow: 0 0 18px rgba(0, 224, 255, 0.2);
}

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

.help-row {
    position: relative;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 34px;
    align-items: center;
    gap: 18px;
    width: 100%;
    min-height: 78px;
    padding: 18px 24px;
    border: 1px solid var(--cyan-border);
    border-radius: 16px;
    color: var(--text);
    background:
        linear-gradient(90deg, rgba(0, 224, 255, 0.12), rgba(7, 18, 37, 0.84) 34%, rgba(255, 43, 37, 0.08)),
        rgba(5, 16, 31, 0.88);
    box-shadow: var(--shadow-cyan);
    text-align: left;
    cursor: pointer;
    overflow: hidden;
    transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.help-row::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: linear-gradient(180deg, var(--cyan), var(--red));
    opacity: 0.86;
}

.help-row:hover,
.help-row[aria-expanded="true"] {
    border-color: rgba(255, 43, 37, 0.62);
    background:
        linear-gradient(90deg, rgba(255, 43, 37, 0.14), rgba(7, 18, 37, 0.9) 38%, rgba(0, 224, 255, 0.1)),
        rgba(5, 16, 31, 0.92);
    box-shadow: var(--shadow-red);
}

.help-row:hover {
    transform: translateY(-1px);
}

.help-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 43, 37, 0.58);
    border-radius: 13px;
    color: #ff7a82;
    background: rgba(255, 43, 37, 0.1);
    box-shadow: 0 0 16px rgba(255, 43, 37, 0.18);
    font-size: 13px;
    font-weight: 950;
    line-height: 1;
}

.help-copy {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.help-copy strong {
    color: #ffffff;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.25;
}

.help-copy small {
    display: block;
    max-width: 760px;
    color: #9ea8b7;
    font-size: 14px;
    line-height: 1.55;
}

.help-row[aria-expanded="true"] .help-copy small {
    display: block;
}

.help-arrow {
    position: relative;
    display: block;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    color: var(--cyan);
    background: transparent;
    filter: drop-shadow(0 0 8px rgba(0, 224, 255, 0.52));
    font-size: 0;
    line-height: 1;
    transition: color 160ms ease, filter 160ms ease, transform 160ms ease;
}

.help-arrow::before,
.help-arrow::after {
    content: "";
    position: absolute;
    right: 9px;
    width: 13px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    box-shadow: 0 0 10px currentColor;
    transform-origin: right center;
}

.help-arrow::before {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.help-arrow::after {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

.help-row:hover .help-arrow,
.help-row[aria-expanded="true"] .help-arrow {
    color: #ff7a82;
    filter: drop-shadow(0 0 11px rgba(255, 43, 37, 0.58));
}

.help-row[aria-expanded="true"] .help-arrow {
    transform: rotate(90deg);
}

.help-contact-card,
.article-escalation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: clamp(54px, 7vw, 86px);
    padding: clamp(26px, 4vw, 42px);
    border: 1px solid rgba(0, 224, 255, 0.38);
    border-radius: 22px;
    background:
        radial-gradient(circle at 88% 20%, rgba(255, 43, 37, 0.18), transparent 16rem),
        linear-gradient(135deg, rgba(0, 224, 255, 0.12), rgba(5, 16, 31, 0.9) 42%, rgba(255, 43, 37, 0.1)),
        rgba(5, 16, 31, 0.9);
    box-shadow: var(--shadow-cyan);
}

.help-contact-card h2,
.article-escalation h2 {
    margin: 0 0 10px;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1;
}

.help-contact-card p,
.article-escalation p {
    max-width: 650px;
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.big-ticket-button,
.ticket-send {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    border-radius: 16px;
    border: 1px solid rgba(0, 224, 255, 0.78);
    color: #ffffff;
    background: var(--qwk-cta-gradient);
    box-shadow: var(--qwk-cta-shadow);
    font-size: 15px;
    font-weight: 950;
    cursor: pointer;
}

.big-ticket-button {
    flex: 0 0 auto;
    min-width: 220px;
    padding: 0 28px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-bottom: 20px;
    padding: 0 18px;
    border: 1px solid rgba(0, 224, 255, 0.44);
    border-radius: 16px;
    color: #ffffff;
    border-color: rgba(0, 224, 255, 0.44);
    background: rgba(0, 224, 255, 0.12);
    box-shadow: 0 0 18px rgba(0, 224, 255, 0.18);
    font-size: 15px;
    font-weight: 950;
}

.article-shell,
.ticket-shell {
    width: min(1080px, 100%);
    margin: 0 auto;
}

.article-card,
.ticket-panel {
    border: 1px solid rgba(0, 224, 255, 0.34);
    border-radius: 24px;
    background:
        radial-gradient(circle at 14% 0%, rgba(0, 224, 255, 0.16), transparent 18rem),
        radial-gradient(circle at 92% 4%, rgba(255, 43, 37, 0.18), transparent 18rem),
        rgba(5, 16, 31, 0.9);
    box-shadow: var(--shadow-cyan);
}

.article-card {
    padding: clamp(28px, 4vw, 54px);
}

.article-card h1,
.ticket-copy h1 {
    margin: 0;
    font-size: clamp(38px, 5vw, 72px);
    line-height: 0.98;
    text-shadow: 0 0 24px rgba(0, 224, 255, 0.24), 0 0 24px rgba(255, 43, 37, 0.18);
}

.article-lead {
    max-width: 820px;
    margin: 18px 0 0;
    color: #d2e5ff;
    font-size: clamp(17px, 1.8vw, 21px);
    line-height: 1.65;
}

.article-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 22px;
    margin-top: 34px;
}

.article-grid section,
.article-note,
.ticket-form {
    border: 1px solid rgba(0, 224, 255, 0.22);
    border-radius: 18px;
    background: rgba(7, 18, 37, 0.7);
}

.article-grid section {
    padding: 24px;
}

.article-grid h2 {
    margin: 0 0 14px;
    font-size: 22px;
}

.article-grid p,
.article-steps {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.article-steps {
    padding-left: 22px;
}

.article-steps li + li {
    margin-top: 10px;
}

.article-note {
    margin-top: 22px;
    padding: 20px 22px;
    border-color: rgba(255, 43, 37, 0.32);
    background: rgba(255, 43, 37, 0.08);
}

.article-note strong {
    color: #ff7a82;
    font-size: 13px;
    text-transform: uppercase;
}

.article-note p {
    margin: 8px 0 0;
    color: #d5dce9;
    line-height: 1.65;
}

.ticket-panel {
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(24px, 4vw, 44px);
    padding: clamp(28px, 4vw, 50px);
}

.ticket-copy p {
    color: var(--muted);
    line-height: 1.65;
}

.ticket-copy ul {
    margin: 24px 0 0;
    padding-left: 20px;
    color: #c8d8ee;
    line-height: 1.7;
}

.ticket-form {
    display: grid;
    gap: 16px;
    padding: 22px;
}

.ticket-form label {
    display: grid;
    gap: 8px;
    color: #d8f8ff;
    font-size: 13px;
    font-weight: 850;
}

.ticket-form input,
.ticket-form textarea {
    width: 100%;
    border: 1px solid rgba(0, 224, 255, 0.34);
    border-radius: 14px;
    color: var(--text);
    background: rgba(2, 8, 18, 0.72);
    outline: 0;
    box-shadow: inset 0 0 18px rgba(0, 224, 255, 0.06);
}

.ticket-form input {
    min-height: 52px;
    padding: 0 16px;
}

.ticket-form textarea {
    min-height: 170px;
    resize: vertical;
    padding: 14px 16px;
}

.ticket-form input:focus,
.ticket-form textarea:focus {
    border-color: var(--cyan);
    box-shadow: var(--shadow-cyan);
}

.ticket-send {
    width: 100%;
    margin-top: 4px;
}

.ticket-status {
    min-height: 22px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.cta-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 18px 0 0;
    padding: 24px;
    border: 1px solid rgba(0, 224, 255, 0.38);
    border-radius: 18px;
    background:
        linear-gradient(90deg, rgba(0, 224, 255, 0.16), rgba(255, 43, 37, 0.1)),
        rgba(5, 16, 31, 0.82);
    box-shadow: var(--shadow-cyan);
}

.cta-strip h2 {
    margin: 0 0 8px;
    font-size: 26px;
}

.cta-strip p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.mini-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.mini-buttons a,
.mini-buttons button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid rgba(0, 224, 255, 0.42);
    border-radius: 13px;
    color: var(--text);
    background: rgba(0, 224, 255, 0.12);
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
}

.mini-buttons a:nth-child(2),
.mini-buttons button:nth-child(2) {
    border-color: rgba(255, 43, 37, 0.48);
    background: rgba(255, 43, 37, 0.12);
}

.site-footer {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.8fr);
    gap: 24px;
    margin: 28px 0 36px;
    padding: clamp(30px, 4vw, 52px);
    border: 1px solid rgba(0, 224, 255, 0.34);
    border-radius: 24px;
    background:
        radial-gradient(circle at 8% 30%, rgba(0, 224, 255, 0.16), transparent 18rem),
        radial-gradient(circle at 92% 22%, rgba(255, 43, 37, 0.16), transparent 18rem),
        rgba(5, 16, 31, 0.86);
    box-shadow: var(--shadow-cyan);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-brand img {
    width: 132px;
    height: 82px;
    object-fit: contain;
    filter: drop-shadow(0 0 18px rgba(255, 43, 37, 0.56));
}

.footer-brand strong {
    display: block;
    color: var(--text);
    font-size: clamp(26px, 3vw, 42px);
    line-height: 1;
}

.footer-brand span {
    display: block;
    max-width: 420px;
    margin-top: 10px;
    color: var(--muted);
    line-height: 1.55;
}

.footer-columns {
    display: grid;
    grid-template-columns: max-content max-content;
    justify-content: start;
    column-gap: clamp(52px, 6vw, 96px);
    row-gap: 18px;
}

.footer-columns nav {
    display: grid;
    gap: 10px;
    align-content: start;
}

.footer-columns h3 {
    margin: 0 0 4px;
    color: var(--cyan);
    font-size: 14px;
    text-transform: uppercase;
}

.footer-columns a {
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.footer-columns a:hover,
.social-row a:hover,
.footer-social a:hover {
    color: var(--text);
}

.footer-bottom {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 18px;
    margin-top: 48px;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px;
    width: fit-content;
    max-width: 100%;
    min-width: 0;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 34px;
    padding: 3px 10px 3px 4px;
    border: 1px solid rgba(0, 224, 255, 0.22);
    border-radius: 12px;
    background:
        radial-gradient(circle at 12% 22%, rgba(255, 43, 37, 0.2), transparent 34%),
        linear-gradient(135deg, rgba(0, 224, 255, 0.12), rgba(5, 16, 31, 0.48));
    box-shadow: 0 0 12px rgba(0, 224, 255, 0.1);
}

.footer-social a span {
    display: inline-grid;
    place-items: center;
    width: 26px;
    height: 26px;
    margin-right: 7px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.08);
}

.footer-social img {
    width: 19px;
    height: 19px;
    object-fit: contain;
    filter: drop-shadow(0 0 7px rgba(0, 224, 255, 0.2));
}

.footer-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    color: #dceaff;
    font-size: 13px;
    font-weight: 850;
}

.footer-meta p {
    margin: 0;
    color: #dceaff;
    white-space: nowrap;
}

.language-switch {
    display: inline-flex;
    align-items: center;
    padding: 3px;
    border: 1px solid rgba(0, 224, 255, 0.28);
    border-radius: 999px;
    background: rgba(2, 7, 17, 0.62);
    box-shadow: 0 0 14px rgba(0, 224, 255, 0.12);
}

.language-switch button {
    min-height: 30px;
    padding: 0 12px;
    border: 0;
    border-radius: 999px;
    color: var(--muted);
    background: transparent;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    cursor: pointer;
}

.language-switch button.active {
    color: #ffffff;
    background: linear-gradient(90deg, rgba(255, 43, 37, 0.46), rgba(0, 224, 255, 0.14));
    box-shadow: 0 0 16px rgba(255, 43, 37, 0.2);
}

.social-row {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 22px;
    border-top: 1px solid rgba(0, 224, 255, 0.18);
}

.social-row a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid rgba(0, 224, 255, 0.34);
    border-radius: 999px;
    color: var(--muted);
    background: rgba(0, 224, 255, 0.08);
    font-size: 14px;
    font-weight: 900;
}

@media (max-width: 1180px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 12px;
        border: 1px solid var(--cyan-border);
        border-radius: 16px;
        background: rgba(5, 16, 31, 0.96);
    }

    .topbar.open .nav-menu {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 8px;
    }

    .nav-links a {
        white-space: normal;
    }

    .nav-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        width: 100%;
        margin-left: 0;
    }

    .nav-actions a {
        display: grid;
        place-items: center;
        text-align: center;
    }

    .download-grid,
    .download-tips,
    .pro-plan-grid,
    .pro-details-strip,
    .auth-payment-grid,
    .payment-layout,
    .footer-bottom,
    .compare-shots,
    .compare-row,
    .pricing-grid,
    .info-grid.two,
    .info-grid.three,
    .module-grid,
    .stat-ribbon,
    .showcase-grid,
    .site-footer,
    .footer-columns {
        grid-template-columns: 1fr;
    }

    .help-page {
        margin-inline: calc(clamp(18px, 3vw, 46px) * -1);
    }

    .help-tabs,
    .legal-grid,
    .about-grid,
    .about-creator {
        grid-template-columns: 1fr;
    }

    .article-grid,
    .ticket-panel,
    .account-ticket-layout {
        grid-template-columns: 1fr;
    }

    .footer-meta {
        justify-content: flex-start;
    }

    .footer-meta p {
        white-space: normal;
    }

    .compare-row.compare-header {
        display: none;
    }

    .help-contact-card,
    .article-escalation {
        align-items: stretch;
        flex-direction: column;
    }

    .big-ticket-button {
        width: 100%;
    }

    .cta-strip {
        align-items: stretch;
        flex-direction: column;
    }

    .mini-buttons {
        justify-content: flex-start;
    }

    .hero {
        align-items: flex-end;
        min-height: 760px;
    }

    .hero-backdrop {
        background:
            linear-gradient(180deg, rgba(3, 9, 20, 0.28), rgba(3, 9, 20, 0.96) 68%),
            url("../QwkBoost.App/Assets/qwk-boost-hero-logo.png") center 18% / min(110vw, 620px) auto no-repeat;
    }

    .hero-status {
        left: clamp(22px, 5vw, 74px);
        right: auto;
        bottom: 20px;
    }

    .product-hero {
        grid-template-columns: 1fr;
        align-items: stretch;
        min-height: auto;
    }

    .showcase-row,
    .showcase-row.reverse {
        grid-template-columns: 1fr;
    }

    .showcase-row.reverse .showcase-shot,
    .showcase-row.reverse .showcase-info {
        grid-column: auto;
        grid-row: auto;
    }

    .preview-shell {
        min-height: 500px;
    }

    .showcase-panel,
    .showcase-panel.big {
        min-height: auto;
    }
}

@media (max-width: 640px) {
    .site-shell {
        padding: 0 10px;
    }

    .topbar {
        top: 8px;
        min-height: 64px;
        margin-top: 8px;
    }

    .brand {
        min-width: 206px;
    }

    .brand img {
        width: 206px;
        height: 56px;
    }

    .hero {
        min-height: 720px;
        padding: 26px;
        display: block;
    }

    .product-hero {
        min-height: auto;
        padding: 20px;
    }

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

    .download-copy h1 {
        font-size: clamp(42px, 13vw, 60px);
    }

    .download-main-action {
        width: 100%;
    }

    .hero h1 {
        font-size: clamp(58px, 19vw, 86px);
    }

    .product-hero h1 {
        font-size: clamp(40px, 12vw, 58px);
    }

    .hero-copy {
        font-size: 17px;
    }

    .product-hero .hero-copy {
        font-size: 16px;
    }

    .optimization-showcase {
        gap: 24px;
        margin-top: 28px;
    }

    .showcase-row {
        padding: 14px;
        border-radius: 18px;
    }

    .showcase-info {
        gap: 14px;
    }

    .showcase-info h2 {
        font-size: clamp(34px, 10vw, 48px);
    }

    .showcase-stats,
    .task-list {
        grid-template-columns: 1fr;
    }

    .showcase-stats span {
        min-height: 48px;
    }

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

    .get-pro-hero {
        padding: 26px 18px;
    }

    .pro-plan-card,
    .payment-panel {
        padding: 22px;
        border-radius: 18px;
    }

    .get-pro-auth-window {
        padding: 26px 18px;
        border-radius: 18px;
    }

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

    .pro-buy-action {
        grid-column: 1;
        grid-row: auto;
        width: 100%;
    }

    .task-pill-grid span {
        min-height: 32px;
        max-width: 100%;
        white-space: normal;
    }

    .hero-actions {
        flex-direction: column;
    }

    .primary-action,
    .secondary-action,
    .card-action {
        width: 100%;
    }

    .hero-status {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        min-width: 0;
        width: 100%;
        margin-top: 26px;
    }

    .preview-tabs {
        margin-inline: -2px;
    }

    .preview-tab {
        min-height: 40px;
        padding: 0 13px;
        font-size: 12px;
    }

    .preview-shell {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .preview-side {
        display: none;
    }

    .preview-screen {
        padding: 18px;
    }

    .preview-screen h2 {
        font-size: clamp(30px, 9vw, 42px);
    }

    .preview-body {
        min-height: 0;
    }

    .preview-metrics,
    .preview-cards,
    .preview-module-grid,
    .preview-fix-grid,
    .preview-main-card {
        grid-template-columns: 1fr;
    }

    .preview-table-row {
        grid-template-columns: 52px minmax(0, 1fr);
    }

    .preview-table-row span:last-child {
        grid-column: 2;
    }

    .preview-setting {
        grid-template-columns: 44px minmax(0, 1fr);
    }

    .preview-switch {
        grid-column: 2;
        justify-self: start;
    }

    .help-page {
        margin-inline: -10px;
        padding: 86px 16px 82px;
    }

    .help-hero,
    .article-card,
    .ticket-panel,
    .help-contact-card,
    .article-escalation {
        border-radius: 18px;
    }

    .help-hero {
        text-align: left;
    }

    .help-section-head {
        margin-bottom: 20px;
    }

    .help-tabs {
        gap: 8px;
        padding: 8px;
    }

    .help-tab {
        min-height: 46px;
        white-space: normal;
    }

    .legal-window,
    .about-window {
        padding: 20px;
    }

    .legal-text,
    .about-card,
    .about-creator span {
        padding: 16px;
    }

    .help-row {
        grid-template-columns: 38px minmax(0, 1fr) 30px;
        gap: 12px;
        min-height: 72px;
        padding: 17px 14px;
    }

    .help-icon {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    .help-arrow {
        width: 30px;
        height: 30px;
    }

    .help-copy strong {
        font-size: 15px;
    }

    .help-copy small {
        font-size: 13px;
    }

    .article-card,
    .ticket-panel {
        padding: 22px;
    }

    .article-grid {
        gap: 16px;
        margin-top: 24px;
    }

    .article-grid section,
    .ticket-form {
        padding: 18px;
    }

    .article-escalation,
    .help-contact-card {
        padding: 22px;
    }

    .ticket-form textarea {
        min-height: 150px;
    }

    .section-heading {
        align-items: flex-start;
    }

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

    .stat-ribbon article,
    .showcase-panel,
    .download-card,
    .requirements-card,
    .price-card,
    .info-card,
    .site-footer {
        padding: 22px;
    }

    .auth-window.account-mode {
        padding: 22px;
    }

    .account-dashboard {
        grid-template-columns: 1fr;
    }

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

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

    .account-panel-grid {
        grid-template-columns: 1fr;
    }

    .account-ticket-thread {
        padding: 14px;
    }

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

    .footer-social {
        grid-column: 1;
        justify-self: stretch;
        justify-content: flex-start;
        margin-top: 10px;
        padding-top: 4px;
    }
}

@media (max-width: 520px) {
    .auth-page {
        padding: 24px 0 54px;
    }

    .auth-window {
        padding: 28px 16px 24px;
        border-radius: 18px;
    }

    .auth-heading h2 {
        font-size: 36px;
    }

    .auth-heading p {
        font-size: 16px;
    }

    .auth-options {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .auth-provider {
        font-size: 14px;
    }

    .account-nav {
        grid-template-columns: 1fr;
    }

    .account-section-head,
    .account-detail-list div,
    .security-list div {
        grid-template-columns: 1fr;
    }

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

    .account-section-head strong {
        text-align: left;
    }

    .account-ticket-tools,
    .account-ticket-thread-head {
        display: grid;
    }

    .account-ticket-tools .account-action {
        width: 100%;
    }

    .account-ticket-item {
        grid-template-columns: 1fr;
    }

    .ticket-status-badge {
        justify-self: start;
    }
}
