:root {
    color-scheme: dark;
    --ink: #f8f7ff;
    --muted: #aaa5ba;
    --panel: rgba(22, 18, 35, 0.84);
    --panel-strong: #161223;
    --line: rgba(193, 185, 218, 0.16);
    --cyan: #37e2ff;
    --pink: #ff3185;
    --violet: #8b5cf6;
}

@font-face {
    font-family: "NeonKick Display";
    src: url("/fonts/orbitron-variable.ttf") format("truetype");
    font-style: normal;
    font-weight: 400 900;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: #090812;
    color: var(--ink);
    font-family: Inter, "Segoe UI", system-ui, -apple-system, sans-serif;
}

* {
    box-sizing: border-box;
}

#app {
    min-height: 100vh;
}

.initial-loader {
    display: grid;
    place-items: center;
    align-content: center;
    gap: 24px;
    min-height: 100vh;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 43%, rgba(112, 62, 255, 0.2), transparent 18rem),
        radial-gradient(circle at 50% 43%, rgba(48, 220, 242, 0.1), transparent 9rem),
        #090812;
}

.argon-lamp {
    position: relative;
    display: grid;
    place-items: center;
    width: 116px;
    aspect-ratio: 1;
    animation: argon-lamp-pulse 3.4s ease-in-out infinite;
}

.argon-lamp::before {
    position: absolute;
    width: 190%;
    height: 190%;
    content: "";
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 226, 255, 0.24) 0, rgba(139, 92, 246, 0.09) 33%, transparent 69%);
    filter: blur(7px);
    animation: argon-lamp-halo 3.4s ease-in-out infinite;
}

.argon-lamp img {
    position: relative;
    z-index: 1;
    width: 100%;
    filter: drop-shadow(0 0 7px rgba(55, 226, 255, 0.7)) drop-shadow(0 0 22px rgba(139, 92, 246, 0.55));
}

.initial-loader-progress {
    width: min(224px, calc(100vw - 56px));
    height: 3px;
    overflow: hidden;
    border-radius: 99px;
    background: rgba(193, 185, 218, 0.2);
}

.initial-loader-progress span {
    display: block;
    width: 42%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, transparent, var(--cyan) 25%, #d66cff 75%, transparent);
    box-shadow: 0 0 13px rgba(55, 226, 255, 0.82);
    animation: initial-loader-progress 1.65s ease-in-out infinite;
}

.initial-loader-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

@keyframes argon-lamp-pulse {
    0%, 100% { transform: scale(0.94); opacity: 0.74; }
    48% { transform: scale(1); opacity: 1; }
    58% { transform: scale(1.025); opacity: 0.92; }
}

@keyframes argon-lamp-halo {
    0%, 100% { transform: scale(0.72); opacity: 0.32; }
    48% { transform: scale(1); opacity: 0.9; }
    58% { transform: scale(1.14); opacity: 0.36; }
}

@keyframes initial-loader-progress {
    from { transform: translateX(-145%); }
    to { transform: translateX(385%); }
}

@media (prefers-reduced-motion: reduce) {
    .argon-lamp,
    .argon-lamp::before,
    .initial-loader-progress span {
        animation: none;
    }

    .argon-lamp {
        opacity: 1;
        transform: none;
    }

    .argon-lamp::before {
        transform: none;
        opacity: 0.7;
    }

    .initial-loader-progress span {
        margin-left: 29%;
    }
}

#blazor-error-ui {
    display: none;
}

h1,
h2,
h3,
p,
ul {
    margin-top: 0;
}

p {
    line-height: 1.72;
}

a {
    color: inherit;
}

.container {
    width: min(1160px, calc(100% - 36px));
    margin: 0 auto;
}

.content-section {
    padding: 92px 0;
}

.section-alt {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(8, 7, 15, 0.42);
}

.section-header {
    margin-bottom: 30px;
}

.eyebrow {
    margin-bottom: 11px;
    color: #b8b1d8;
    font-size: 0.78rem;
    font-weight: 650;
    letter-spacing: 0.095em;
    text-transform: uppercase;
}

.hero-kicker {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #c2bbdf;
}

.hero-kicker::before {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #9680ff;
    box-shadow: 0 0 8px rgba(150, 128, 255, 0.6);
    content: "";
}

.content-text {
    max-width: 900px;
    color: #c8c3d4;
    font-size: 1.05rem;
}

.privacy-page {
    padding: 92px 0;
}

.privacy-content {
    max-width: 860px;
    color: #c8c3d4;
}

.privacy-content h1 {
    margin-bottom: 12px;
    color: #fff;
    font-size: clamp(2.6rem, 6vw, 4.4rem);
    letter-spacing: -0.05em;
}

.privacy-content h2 {
    margin: 42px 0 12px;
    color: #fff;
    font-size: 1.35rem;
}

.privacy-content p,
.privacy-content li {
    line-height: 1.72;
}

.privacy-content ul {
    display: grid;
    gap: 10px;
    padding-left: 23px;
}

.privacy-content a {
    color: var(--cyan);
    text-underline-offset: 3px;
}

.privacy-updated {
    margin-bottom: 34px;
    color: var(--muted);
}

.privacy-cookie-button {
    padding: 0;
    border: 0;
    color: var(--cyan);
    background: transparent;
    font: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}

.hero-section {
    position: relative;
    padding: 104px 0 112px;
}

.hero-section::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: "";
    background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(440px, 1fr);
    align-items: center;
    gap: 42px;
}

.hero-content h1 {
    margin-bottom: 18px;
    font-size: clamp(4rem, 8vw, 7.25rem);
    font-weight: 900;
    line-height: 0.84;
    letter-spacing: -0.07em;
}

.hero-content h1.neonkick-wordmark {
    color: #72f7ff;
    font-family: "NeonKick Display", Bahnschrift, "Arial Narrow", "Segoe UI", sans-serif;
    font-size: clamp(3.1rem, 5vw, 5.4rem);
    font-weight: 500;
    letter-spacing: 0.045em;
    line-height: 0.92;
    text-shadow: 0 0 4px #c8fbff, 0 0 12px rgba(55, 226, 255, 0.92), 0 0 28px rgba(55, 226, 255, 0.54), 0 0 48px rgba(24, 148, 170, 0.28);
    text-transform: uppercase;
    animation: wordmark-breathe 4.8s ease-in-out infinite;
}

@keyframes wordmark-breathe {
    0%,
    100% {
        opacity: 0.88;
        text-shadow: 0 0 3px #c8fbff, 0 0 8px rgba(55, 226, 255, 0.7), 0 0 18px rgba(55, 226, 255, 0.38), 0 0 34px rgba(24, 148, 170, 0.16);
    }

    50% {
        opacity: 1;
        text-shadow: 0 0 5px #e8feff, 0 0 15px rgba(55, 226, 255, 1), 0 0 32px rgba(55, 226, 255, 0.64), 0 0 56px rgba(24, 148, 170, 0.34);
    }
}

.hero-lead {
    max-width: 690px;
    margin-bottom: 12px;
    color: #e4e0ec;
    font-size: clamp(1.18rem, 2.2vw, 1.5rem);
    line-height: 1.45;
}

.hero-description {
    max-width: 690px;
    color: var(--muted);
}

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

.hero-release-date {
    margin: 0;
    color: #888195;
    font-size: 0.9rem;
}

.pricing-section {
    position: relative;
    padding: 94px 0;
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 50% 20%, rgba(203, 56, 255, 0.14), transparent 30rem),
        rgba(13, 10, 24, 0.74);
}

.pricing-header {
    max-width: 650px;
    margin: 0 auto 36px;
    text-align: center;
}

.pricing-header h2 {
    margin: 0 0 12px;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.2rem);
    letter-spacing: -0.04em;
}

.pricing-header p {
    margin: 0;
    color: var(--muted);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 318px;
    padding: 30px;
    border: 1px solid rgba(193, 185, 218, 0.2);
    border-radius: 20px;
    background: rgba(24, 19, 38, 0.82);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.pricing-card-featured {
    border-color: rgba(231, 86, 255, 0.66);
    background: linear-gradient(165deg, rgba(63, 32, 89, 0.92), rgba(23, 18, 38, 0.96));
    box-shadow: 0 18px 48px rgba(160, 55, 238, 0.2);
}

.pricing-card h3 {
    margin: 0;
    color: #fff;
    font-size: 1.15rem;
}

.pricing-price {
    margin: 20px 0 8px;
    color: #fff;
    font-size: clamp(2.8rem, 4.6vw, 3.7rem);
    font-weight: 760;
    letter-spacing: -0.06em;
    line-height: 1;
}

.pricing-price span {
    margin-right: 2px;
    color: #dbb8ff;
    font-size: 0.5em;
    vertical-align: top;
}

.pricing-price small {
    color: #c7bfda;
    font-size: 0.3em;
    font-weight: 560;
    letter-spacing: 0;
}

.pricing-rub {
    min-height: 2.8em;
    margin: 0;
    color: #e7a6ff;
    font-size: 0.92rem;
    font-weight: 650;
}

.pricing-description {
    flex: 1;
    margin: 17px 0 24px;
    color: #c7c1d1;
    font-size: 0.95rem;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 22px;
    padding: 5px 10px;
    border: 1px solid rgba(255, 215, 255, 0.45);
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(100deg, #9b48fa, #ec4fca);
    box-shadow: 0 6px 18px rgba(196, 55, 236, 0.45);
    font-size: 0.7rem;
    font-weight: 750;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pricing-payment-note {
    max-width: 800px;
    margin: 27px auto 0;
    color: #b7b0c5;
    font-size: 0.88rem;
    line-height: 1.65;
    text-align: center;
}

.pricing-payment-note strong {
    color: #ebe7f4;
}

.hero-list {
    display: grid;
    gap: 9px;
    margin: 26px 0 0;
    padding: 0;
    color: #aaa5ba;
    list-style: none;
}

.hero-list li {
    position: relative;
    padding-left: 22px;
}

.hero-list li::before {
    position: absolute;
    top: 0.66em;
    left: 0;
    width: 8px;
    height: 2px;
    border-radius: 9px;
    background: var(--pink);
    box-shadow: 0 0 10px rgba(255, 49, 133, 0.8);
    content: "";
}

.btn {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 0 23px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
    text-decoration: none;
}

.btn:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

.btn-primary {
    background: linear-gradient(115deg, var(--pink), #ff5b63);
    box-shadow: 0 13px 38px rgba(255, 49, 133, 0.27);
    color: #ffffff;
}

.btn-secondary {
    border-color: var(--line);
    background: rgba(18, 15, 29, 0.8);
    color: #ffffff;
}

.product-screenshot {
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(92, 105, 116, 0.78);
    border-radius: 12px;
    background: #15191d;
    box-shadow: 0 28px 68px rgba(0, 0, 0, 0.42);
}

.product-screenshot img {
    display: block;
    width: 100%;
    height: auto;
}

.screenshot-trigger {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.screenshot-trigger:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: -4px;
}

.hero-screenshot {
    /* Keep dense plugin controls on whole pixels. 3D transforms resample the image and blur its labels. */
    transform: none;
}

.screenshot-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 36px;
}

.lightbox-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 72px;
    background: rgba(4, 3, 10, 0.9);
    backdrop-filter: blur(9px);
}

.lightbox-dialog {
    position: relative;
    display: flex;
    width: fit-content;
    max-width: 100%;
    max-height: calc(100vh - 48px);
    align-items: center;
    justify-content: center;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--panel-strong);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.64);
}

.lightbox-image {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: calc(100vh - 76px);
    object-fit: contain;
    border-radius: 7px;
}

.lightbox-close,
.lightbox-nav {
    position: absolute;
    z-index: 1;
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(248, 247, 255, 0.34);
    border-radius: 50%;
    background: rgba(11, 10, 20, 0.92);
    color: #fff;
    cursor: pointer;
    font-size: 0;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.lightbox-close::before,
.lightbox-close::after {
    position: absolute;
    width: 16px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    content: "";
}

.lightbox-close::before {
    transform: rotate(45deg);
}

.lightbox-close::after {
    transform: rotate(-45deg);
}

.lightbox-nav::before {
    width: 10px;
    height: 10px;
    border: solid currentColor;
    border-width: 0 0 2px 2px;
    content: "";
}

.lightbox-nav-previous::before {
    transform: rotate(45deg);
}

.lightbox-nav-next::before {
    transform: rotate(225deg);
}

.lightbox-close {
    top: -17px;
    right: -17px;
    color: #ff9ac3;
}

.lightbox-nav-previous {
    top: 50%;
    left: -58px;
    transform: translateY(-50%);
}

.lightbox-nav-next {
    top: 50%;
    right: -58px;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-close:focus-visible,
.lightbox-nav:hover,
.lightbox-nav:focus-visible {
    border-color: var(--cyan);
    background: #201b31;
    outline: none;
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

@media (max-width: 700px) {
    .lightbox-backdrop {
        padding: 20px;
    }

    .lightbox-dialog {
        padding: 8px;
    }

    .lightbox-image {
        max-height: calc(100vh - 56px);
    }

    .lightbox-nav-previous {
        left: 8px;
    }

    .lightbox-nav-next {
        right: 8px;
    }
}

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

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

.info-card,
.contact-panel {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--panel);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.info-card {
    position: relative;
    min-height: 210px;
    padding: 25px;
}

.info-card::after {
    position: absolute;
    right: 20px;
    bottom: 18px;
    width: 34px;
    height: 2px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--pink), var(--cyan));
    content: "";
    opacity: 0.7;
}

.card-number {
    display: block;
    margin-bottom: 24px;
    color: var(--pink);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.info-card h3,
.advantage-item h3,
.contact-content h2,
.support-content h2 {
    margin-bottom: 11px;
    color: #ffffff;
}

.info-card p,
.advantage-item p,
.contact-content p {
    margin-bottom: 0;
    color: #aaa5ba;
}

.advantage-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--line);
}

.advantage-item {
    display: grid;
    padding: 30px 28px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.advantage-item:nth-child(even) {
    border-right: 0;
}

.support-section {
    padding-top: 42px;
    padding-bottom: 42px;
}

.support-panel {
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 34px;
    border: 1px solid rgba(255, 49, 133, 0.26);
    border-radius: 20px;
    background: radial-gradient(circle at 88% 16%, rgba(55, 226, 255, 0.14), transparent 34%), linear-gradient(125deg, rgba(52, 19, 48, 0.76), rgba(17, 12, 28, 0.88));
}

.support-kicker {
    margin-bottom: 10px;
    color: #ff91bd;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.support-content p {
    max-width: 680px;
    margin: 0;
    color: #c6bece;
}

.support-button {
    display: inline-flex;
    min-height: 50px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 23px;
    border-radius: 12px;
    background: linear-gradient(115deg, var(--pink), #ff5b63);
    color: #ffffff;
    font-weight: 800;
    text-decoration: none;
}

.contact-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 32px;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.page-loading,
.account-section {
    display: grid;
    min-height: 62vh;
    place-items: center;
    padding: 72px 18px;
}

.account-card {
    width: min(520px, 100%);
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--panel);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.account-card h1 {
    margin-bottom: 28px;
    font-size: clamp(2rem, 5vw, 3rem);
}

.account-card form,
.account-card label {
    display: grid;
    gap: 9px;
}

.account-card form {
    gap: 18px;
}

.account-card input {
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
    border: 1px solid rgba(193, 185, 218, 0.32);
    border-radius: 9px;
    background: #0e0c18;
    color: #ffffff;
    font: inherit;
}

.account-card input:focus {
    border-color: var(--cyan);
    outline: none;
}

.account-card button:disabled {
    cursor: wait;
    opacity: 0.62;
}

.account-switch,
.account-email {
    margin: 22px 0 0;
    color: var(--muted);
}

.form-error,
.validation-message,
.validation-summary-errors {
    color: #ff8eaa;
}

.form-success {
    color: #79f5c5;
}

.personal-card {
    width: min(680px, 100%);
}

.account-dashboard-section {
    display: block;
    padding: 72px 18px;
}

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

.account-dashboard-welcome {
    margin-bottom: 30px;
}

.account-dashboard-welcome h1 {
    margin: 10px 0 0;
    font-size: clamp(2.3rem, 5vw, 4rem);
}

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

.account-dashboard-panel {
    min-height: 238px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(33, 27, 49, 0.88), rgba(13, 11, 20, 0.88));
}

.account-dashboard-panel h2 {
    margin: 0 0 26px;
    color: var(--cyan);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.account-dashboard-panel p {
    color: var(--muted);
}

.account-dashboard-panel-licence {
    border-color: rgba(55, 226, 255, 0.28);
}

.account-dashboard-panel .licence-panel {
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.account-dashboard-panel .licence-panel h3 {
    margin: 0 0 18px;
    font-size: 1.15rem;
}

.account-dashboard-panel .licence-panel p:last-of-type {
    margin-bottom: 20px;
}

.licence-code-block {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 9px 12px;
    margin: 22px 0;
}

.licence-code-label {
    grid-column: 1 / -1;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.licence-code-block code {
    min-width: 0;
    max-height: 112px;
    overflow: auto;
    padding: 12px;
    border: 1px solid rgba(193, 185, 218, 0.18);
    border-radius: 8px;
    background: #090812;
    color: #c9f8ff;
    font-family: Consolas, "Courier New", monospace;
    font-size: 0.72rem;
    line-height: 1.55;
    overflow-wrap: anywhere;
    user-select: all;
}

.licence-copy-button {
    align-self: stretch;
    min-width: 78px;
    padding: 0 14px;
    border: 1px solid rgba(55, 226, 255, 0.42);
    border-radius: 8px;
    color: #d9f8ff;
    background: rgba(55, 226, 255, 0.08);
    font: inherit;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
}

.licence-copy-button:hover,
.licence-copy-button:focus-visible {
    border-color: var(--cyan);
    color: #ffffff;
    background: rgba(55, 226, 255, 0.16);
    outline: none;
}

.account-dashboard-email {
    overflow-wrap: anywhere;
    margin-bottom: 20px;
    color: #f8f7ff !important;
    font-size: 1.05rem;
    font-weight: 650;
}

.dashboard-action {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    margin-top: 6px;
    padding: 0 14px;
    border: 1px solid rgba(55, 226, 255, 0.42);
    border-radius: 8px;
    color: #d9f8ff;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.dashboard-action:hover,
.dashboard-action:focus-visible {
    border-color: var(--cyan);
    color: #ffffff;
    background: rgba(55, 226, 255, 0.12);
    outline: none;
}

.licence-panel {
    margin-top: 26px;
    padding: 24px;
    border: 1px solid rgba(55, 226, 255, 0.22);
    border-radius: 14px;
    background: rgba(8, 7, 15, 0.45);
}

.licence-panel dl {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 9px 20px;
}

.licence-panel dt {
    color: var(--muted);
}

.licence-panel dd {
    margin: 0;
}

@media (max-width: 1020px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-screenshot {
        max-width: 700px;
        transform: none;
    }

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

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

    .account-dashboard-panel {
        min-height: 0;
    }
}

@media (max-width: 760px) {
    .licence-code-block {
        grid-template-columns: 1fr;
    }

    .licence-copy-button {
        min-height: 40px;
    }

    .content-section {
        padding: 68px 0;
    }

    .hero-section {
        padding: 72px 0 80px;
    }

    .card-grid,
    .card-grid-4,
    .advantage-list,
    .screenshot-gallery,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-section {
        padding: 68px 0;
    }

    .pricing-card {
        min-height: 0;
    }

    .advantage-item,
    .advantage-item:nth-child(even) {
        border-right: 0;
    }

    .support-panel,
    .contact-panel {
        flex-direction: column;
        align-items: flex-start;
    }

}

@media (max-width: 520px) {
    .container {
        width: min(100%, calc(100% - 24px));
    }

    .hero-content h1 {
        font-size: clamp(3.4rem, 19vw, 5rem);
    }

}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
