:root {
    --background: #030b16;
    --background-secondary: #071426;
    --panel: #0b1a2d;
    --panel-hover: #10233a;

    --text: #f4f8fc;
    --text-muted: #95a8bd;

    --accent: #00beff;
    --accent-hover: #39ceff;

    --border: rgba(255, 255, 255, 0.08);

    --max-width: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    background:
        radial-gradient(
            circle at top center,
            rgba(0, 190, 255, 0.10),
            transparent 35%
        ),
        var(--background);

    color: var(--text);

    font-family:
        Inter,
        Segoe UI,
        Arial,
        sans-serif;

    line-height: 1.6;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;

    background: rgba(3, 11, 22, 0.90);
    backdrop-filter: blur(12px);

    border-bottom: 1px solid var(--border);
}

.site-header__inner {
    width: min(calc(100% - 40px), var(--max-width));
    min-height: 76px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.brand__name {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.brand {
    display: flex;
    align-items: center;
}

.brand__logo {
    display: block;
    width: auto;
    height: 68px;
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;

    color: var(--text-muted);
}

.site-nav a:hover {
    color: var(--accent);
}

.site-main {
    min-height: 70vh;
}

.hero {
    min-height: 520px;

    display: flex;
    align-items: center;

    background-image: url("/assets/images/mohave-hero.png");

    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;

    border-bottom: 1px solid var(--border);
}

.hero__content {
    width: min(calc(100% - 80px), var(--max-width));
    margin: 0 auto;

    padding-top: 40px;
    padding-bottom: 40px;
}

.eyebrow {
    margin-bottom: 18px;

    color: var(--accent);

    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.hero h1 {
    max-width: 720px;

    margin: 0;

    font-size: clamp(3rem, 4.6vw, 4.6rem);
    line-height: 1.03;
    letter-spacing: -0.045em;
}

.hero__text {
    max-width: 680px;

    margin-top: 28px;

    color: var(--text-muted);

    font-size: 1.2rem;
}

.hero__actions,
.featured-product__actions {
    display: flex;
    gap: 14px;

    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 0 22px;

    border: 1px solid var(--border);
    border-radius: 8px;

    font-weight: 600;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.button--primary {
    background: var(--accent);
    color: #00131d;

    border-color: var(--accent);
}

.button--primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
}

.button--secondary {
    background: rgba(255, 255, 255, 0.03);
}

.button--secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

form[action="/account/logout/"] .button {
    appearance: none;
    -webkit-appearance: none;
    color: #00131d;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    cursor: pointer;
}

.featured-product {
    padding: 110px 0;

    background: var(--background-secondary);
}

.featured-product__content--split {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 52px;
}

.featured-product__copy {
    min-width: 0;
}

.featured-product__visual {
    min-width: 0;
}

.wow-mover-logo {
    display: block;

    width: 180px;
    max-width: 100%;
    height: auto;

    margin: 0 0 26px;
}

.wow-mover-screenshot {
    display: block;

    width: 100%;
    max-width: 560px;
    height: auto;

    margin-left: auto;

    border: 1px solid var(--border);
    border-radius: 12px;

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.35),
        0 0 45px rgba(0, 190, 255, 0.08);
}

.featured-product__content {
    width: min(calc(100% - 80px), var(--max-width));
    margin: 0 auto;

    padding: 45px;

    background:
        linear-gradient(
            135deg,
            rgba(0, 190, 255, 0.08),
            rgba(255, 255, 255, 0.02)
        ),
        var(--panel);

    border: 1px solid var(--border);
    border-radius: 14px;
}

.featured-product h2 {
    margin: 0;

    font-size: clamp(2rem, 3.2vw, 3.25rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.featured-product p {
    max-width: 700px;

    color: var(--text-muted);
}

.site-footer {
    border-top: 1px solid var(--border);

    background: #020812;
}

.site-footer__inner {
    width: min(calc(100% - 40px), var(--max-width));
    margin: 0 auto;

    padding: 50px 0;

    display: flex;
    justify-content: space-between;

    gap: 30px;
}

.site-footer p {
    color: var(--text-muted);
}

.site-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;

    color: var(--text-muted);
}

.site-footer__links a:hover {
    color: var(--accent);
}

.site-footer__copyright {
    width: min(calc(100% - 40px), var(--max-width));
    margin: 0 auto;

    padding: 20px 0;

    border-top: 1px solid var(--border);

    color: var(--text-muted);

    font-size: 0.9rem;
}

/* =========================================
   WoW Mover Product Page
   ========================================= */

.product-hero {
    padding: 100px 0 110px;
    background:
        radial-gradient(
            circle at 80% 40%,
            rgba(0, 190, 255, 0.10),
            transparent 38%
        ),
        var(--background);
    border-bottom: 1px solid var(--border);
}

.product-hero__inner {
    width: min(calc(100% - 80px), var(--max-width));
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 70px;
}

.product-hero__copy {
    min-width: 0;
}

.product-hero__logo {
    display: block;
    width: 220px;
    max-width: 100%;
    height: auto;
    margin: 0 0 30px;
}

.product-hero h1 {
    max-width: 650px;
    margin: 0;

    font-size: clamp(2.8rem, 4.5vw, 4.5rem);
    line-height: 1.03;
    letter-spacing: -0.045em;
}

.product-hero__description {
    max-width: 620px;
    margin: 28px 0 0;

    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.7;
}

.product-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.product-hero__visual {
    min-width: 0;
}

.product-hero__screenshot {
    display: block;
    width: 100%;
    max-width: 650px;
    height: auto;
    margin-left: auto;

    border: 1px solid var(--border);
    border-radius: 14px;

    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.45),
        0 0 55px rgba(0, 190, 255, 0.10);
}

/* =========================================
   WoW Mover Features
   ========================================= */

.product-features {
    padding: 110px 0;
    background: var(--background-secondary);
}

.product-features__inner {
    width: min(calc(100% - 80px), var(--max-width));
    margin: 0 auto;
}

.product-features__header {
    max-width: 720px;
    margin-bottom: 55px;
}

.product-features__header h2 {
    margin: 0;
    font-size: clamp(2.4rem, 3.5vw, 3.6rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.product-features__header > p:last-child {
    margin: 24px 0 0;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

.product-features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.product-feature {
    padding: 30px;

    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 14px;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.product-feature:hover {
    transform: translateY(-4px);
    background: var(--panel-hover);
    border-color: rgba(0, 190, 255, 0.35);
}

.product-feature__number {
    margin-bottom: 32px;

    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.product-feature h3 {
    margin: 0;
    font-size: 1.25rem;
}

.product-feature p {
    margin: 16px 0 0;

    color: var(--text-muted);
    line-height: 1.65;
}

/* =========================================
   WoW Mover Download
   ========================================= */

.product-download {
    padding: 110px 0;
    background: var(--background);
}

.product-download__inner {
    width: min(calc(100% - 80px), var(--max-width));
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: center;
    gap: 70px;
}

.product-download__copy h2 {
    margin: 0;

    font-size: clamp(2.4rem, 3.5vw, 3.6rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.product-download__copy > p:last-child {
    max-width: 560px;
    margin: 24px 0 0;

    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

.product-download__panel {
    padding: 36px;

    background:
        linear-gradient(
            135deg,
            rgba(0, 190, 255, 0.08),
            rgba(255, 255, 255, 0.02)
        ),
        var(--panel);

    border: 1px solid var(--border);
    border-radius: 14px;
}

.product-download__info {
    display: flex;
    flex-direction: column;
}

.product-download__label {
    color: var(--text-muted);

    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.product-download__version {
    margin-top: 10px;

    color: var(--text);
    font-size: 2.4rem;
    line-height: 1;
}

.product-download__platform {
    margin-top: 12px;

    color: var(--accent);
    font-size: 0.95rem;
    font-weight: 600;
}

.product-download__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;

    margin-top: 30px;
}

/* =========================================
   WoW Mover Installation
   ========================================= */

.product-install {
    padding: 110px 0;
    background: var(--background-secondary);
    border-top: 1px solid var(--border);
}

.product-install__inner {
    width: min(calc(100% - 80px), var(--max-width));
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.product-install h2 {
    margin: 0 0 38px;

    font-size: clamp(2.2rem, 3vw, 3.2rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.requirements-list {
    border-top: 1px solid var(--border);
}

.requirement {
    display: flex;
    justify-content: space-between;
    gap: 30px;

    padding: 20px 0;

    border-bottom: 1px solid var(--border);
}

.requirement span {
    color: var(--text-muted);
}

.requirement strong {
    text-align: right;
    font-weight: 600;
}

.product-install__steps {
    min-width: 0;
}

.install-step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 20px;

    padding: 22px 0;

    border-top: 1px solid var(--border);
}

.install-step:last-child {
    border-bottom: 1px solid var(--border);
}

.install-step > span {
    color: var(--accent);

    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.install-step h3 {
    margin: 0;
    font-size: 1.15rem;
}

.install-step p {
    margin: 8px 0 0;

    color: var(--text-muted);
    line-height: 1.6;
}

/* =========================================
   Documentation
   ========================================= */

.docs-hero {
    position: relative;

    min-height: 430px;
    padding: 70px 0;

    display: flex;
    align-items: center;

    background-image:
        url("/assets/images/products/wow-mover/WoWMoverDocsBackground.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border-bottom: 1px solid var(--border);
}

.docs-hero__inner {
    width: calc(100% - 80px);
    max-width: none;
    margin: 0 40px;

    min-height: 290px;
}

.docs-hero__copy {
    width: min(700px, 55%);
    min-width: 0;
}


.docs-hero__copy > p:last-child {
    max-width: 560px;
    margin: 26px 0 0;

    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.7;
}

.docs-hero__branding {
    position: absolute;
    right: 24px;
    bottom: 24px;
    z-index: 2;
}

.docs-hero__logo {
    display: block;
    width: 230px;
    height: auto;

    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.45));
}

.docs-hero h1 {
    margin: 0;

    font-size: clamp(3rem, 4.5vw, 4.6rem);
    line-height: 1.03;
    letter-spacing: -0.045em;
}

.docs-content {
    padding: 90px 0 110px;
    background: var(--background-secondary);
}

.docs-content__inner {
    width: min(calc(100% - 80px), var(--max-width));
    margin: 0 auto;
}

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

.docs-card {
    display: block;
    min-height: 240px;
    padding: 30px;

    color: var(--text);
    text-decoration: none;

    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 14px;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.docs-card:hover {
    transform: translateY(-4px);
    background: var(--panel-hover);
    border-color: rgba(0, 190, 255, 0.35);
}

.docs-card > span {
    display: block;
    margin-bottom: 30px;

    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.docs-card h2 {
    margin: 0;
    font-size: 1.35rem;
}

.docs-card p {
    margin: 16px 0 0;

    color: var(--text-muted);
    line-height: 1.65;
}

/* =========================================
   Documentation Sections
   ========================================= */

.docs-section {
    padding: 110px 0;
    background: var(--background);
    border-top: 1px solid var(--border);
}

.docs-section.docs-section--alternate {
    background: var(--background-secondary);
}

.docs-section__inner {
    width: min(calc(100% - 80px), var(--max-width));
    margin: 0 auto;
}

.docs-section__heading {
    max-width: 720px;
    margin-bottom: 55px;
}

.docs-section__heading h2 {
    margin: 0;

    font-size: clamp(2.4rem, 3.5vw, 3.6rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.docs-section__heading > p:last-child {
    margin: 24px 0 0;

    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

.docs-steps {
    max-width: 900px;

    border-top: 1px solid var(--border);
}

.docs-step {
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 24px;

    padding: 28px 0;

    border-bottom: 1px solid var(--border);
}

.docs-step__number {
    color: var(--accent);

    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.docs-step h3 {
    margin: 0;

    font-size: 1.2rem;
}

.docs-step p {
    max-width: 720px;
    margin: 10px 0 0;

    color: var(--text-muted);
    line-height: 1.65;
}

.docs-back-top {
    max-width: 900px;

    margin-top: 24px;

    text-align: right;
}

.docs-back-top a {
    color: var(--text-muted);
    text-decoration: none;

    font-size: 0.9rem;
    font-weight: 600;

    transition: color 0.2s ease;
}

.docs-back-top a:hover {
    color: var(--accent);
}

/* =========================================
   Downloads
   ========================================= */

.downloads-hero {
    padding: 90px 0 80px;

    background-image:
        linear-gradient(
            90deg,
            rgba(3, 11, 22, 0.90) 0%,
            rgba(3, 11, 22, 0.60) 42%,
            rgba(3, 11, 22, 0.08) 72%
        ),
        url("/assets/images/downloads-hero.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border-bottom: 1px solid var(--border);
}

.downloads-hero__inner {
    width: min(calc(100% - 80px), var(--max-width));
    margin: 0 auto;
}

.downloads-hero h1 {
    max-width: 760px;
    margin: 0;

    font-size: clamp(3rem, 4.5vw, 4.6rem);
    line-height: 1.03;
    letter-spacing: -0.045em;
}

.downloads-hero__inner > p:last-child {
    max-width: 650px;
    margin: 26px 0 0;

    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.7;
}


/* Download Catalog */

.downloads {
    padding: 90px 0 110px;
    background: var(--background-secondary);
}

.downloads__inner {
    width: min(calc(100% - 80px), var(--max-width));
    margin: 0 auto;
}


/* Product Download Card */

.download-card {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
    gap: 60px;

    padding: 44px;

    background:
        linear-gradient(
            135deg,
            rgba(0, 190, 255, 0.06),
            rgba(255, 255, 255, 0.015)
        ),
        var(--panel);

    border: 1px solid var(--border);
    border-radius: 14px;
}


/* Product Information */

.download-card__product {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    align-items: center;
    gap: 36px;
}

.download-card__logo {
    display: block;

    width: 180px;
    max-width: 100%;
    height: auto;
}

.download-card__label {
    margin: 0 0 12px;

    color: var(--accent);

    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.download-card h2 {
    margin: 0;

    font-size: 2rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.download-card__description {
    max-width: 560px;
    margin: 18px 0 0;

    color: var(--text-muted);
    line-height: 1.7;
}


/* Release Information */

.download-card__release {
    padding-left: 44px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border-left: 1px solid var(--border);
}

.download-card__version {
    display: flex;
    flex-direction: column;
}

.download-card__version span {
    color: var(--text-muted);

    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.download-card__version strong {
    margin-top: 10px;

    color: var(--text);

    font-size: 2.4rem;
    line-height: 1;
}

.download-card__platform {
    margin-top: 14px;

    color: var(--accent);

    font-size: 0.9rem;
    font-weight: 600;
}

.download-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin-top: 30px;
}

/* =========================================
   Products
   ========================================= */

.products-hero {
    padding: 90px 0 80px;

    background-image:
        linear-gradient(
            90deg,
            rgba(3, 11, 22, 0.90) 0%,
            rgba(3, 11, 22, 0.60) 42%,
            rgba(3, 11, 22, 0.08) 72%
        ),
        url("/assets/images/products-hero.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border-bottom: 1px solid var(--border);
}

.products-hero__inner,
.products-catalog__inner,
.products-future__inner {
    width: min(calc(100% - 80px), var(--max-width));
    margin: 0 auto;
}

.products-hero h1 {
    max-width: 800px;
    margin: 0;

    font-size: clamp(3rem, 4.5vw, 4.6rem);
    line-height: 1.03;
    letter-spacing: -0.045em;
}

.products-hero__inner > p:last-child {
    max-width: 680px;
    margin: 26px 0 0;

    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.7;
}


/* Product Catalog */

.products-catalog {
    padding: 100px 0 110px;
    background: var(--background-secondary);
}

.products-catalog__heading {
    margin-bottom: 42px;
}

.products-catalog__heading h2 {
    margin: 0;

    font-size: clamp(2.3rem, 3vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}


/* Product Card */

.product-catalog-card {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: center;
    gap: 60px;

    padding: 44px;

    background:
        linear-gradient(
            135deg,
            rgba(0, 190, 255, 0.06),
            rgba(255, 255, 255, 0.015)
        ),
        var(--panel);

    border: 1px solid var(--border);
    border-radius: 14px;
}

.product-catalog-card__visual img {
    display: block;

    width: 100%;
    height: auto;

    border: 1px solid var(--border);
    border-radius: 12px;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.35),
        0 0 40px rgba(0, 190, 255, 0.06);
}

.product-catalog-card__logo {
    display: block;

    width: 180px;
    max-width: 100%;
    height: auto;

    margin-bottom: 24px;
}

.product-catalog-card__status {
    display: inline-block;

    margin-bottom: 14px;

    color: var(--accent);

    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.product-catalog-card h2 {
    margin: 0;

    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.product-catalog-card__content > p {
    max-width: 560px;
    margin: 20px 0 0;

    color: var(--text-muted);
    line-height: 1.7;
}

.product-catalog-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 30px;
}


/* Future Products */

.products-future {
    padding: 90px 0 100px;

    background: var(--background);
    border-top: 1px solid var(--border);
}

.products-future__inner {
    max-width: 1200px;
}

.products-future h2 {
    max-width: 700px;
    margin: 0;

    font-size: clamp(2.3rem, 3vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.products-future__inner > p:last-child {
    max-width: 650px;
    margin: 24px 0 0;

    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* =========================================
   Support
   ========================================= */

.support-hero {
    padding: 90px 0 80px;

    background-image:
        linear-gradient(
            90deg,
            rgba(3, 11, 22, 0.90) 0%,
            rgba(3, 11, 22, 0.60) 42%,
            rgba(3, 11, 22, 0.08) 72%
        ),
        url("/assets/images/support-hero.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border-bottom: 1px solid var(--border);
}

.support-hero__inner,
.support-content__inner,
.support-contact__inner {
    width: min(calc(100% - 80px), var(--max-width));
    margin: 0 auto;
}

.support-hero h1 {
    max-width: 800px;
    margin: 0;

    font-size: clamp(3rem, 4.5vw, 4.6rem);
    line-height: 1.03;
    letter-spacing: -0.045em;
}

.support-hero__inner > p:last-child {
    max-width: 680px;
    margin: 26px 0 0;

    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.7;
}


/* Support Content */

.support-content {
    padding: 100px 0 110px;
    background: var(--background-secondary);
}

.support-heading {
    max-width: 720px;
    margin-bottom: 48px;
}

.support-heading h2 {
    margin: 0;

    font-size: clamp(2.3rem, 3vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.support-heading > p:last-child {
    margin: 20px 0 0;

    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}


/* Support Cards */

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

.support-card {
    display: flex;
    min-height: 280px;
    padding: 32px;

    flex-direction: column;

    color: var(--text);
    text-decoration: none;

    background:
        linear-gradient(
            135deg,
            rgba(0, 190, 255, 0.04),
            rgba(255, 255, 255, 0.01)
        ),
        var(--panel);

    border: 1px solid var(--border);
    border-radius: 14px;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

a.support-card:hover {
    transform: translateY(-4px);

    background: var(--panel-hover);
    border-color: rgba(0, 190, 255, 0.35);
}

.support-card > span {
    display: block;

    margin-bottom: 28px;

    color: var(--accent);

    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.support-card h3 {
    margin: 0;

    font-size: 1.45rem;
    line-height: 1.15;
}

.support-card p {
    margin: 16px 0 28px;

    color: var(--text-muted);
    line-height: 1.7;
}

.support-card strong {
    margin-top: auto;

    color: var(--accent);

    font-size: 0.9rem;
    font-weight: 700;
}


/* Future Community Card */

.support-card--future {
    opacity: 0.68;
}

.support-card--future strong {
    color: var(--text-muted);
}


/* Additional Support */

.support-contact {
    padding: 90px 0 100px;

    background: var(--background);
    border-top: 1px solid var(--border);
}

.support-contact h2 {
    max-width: 720px;
    margin: 0;

    font-size: clamp(2.3rem, 3vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.support-contact__inner > p:last-child {
    max-width: 680px;
    margin: 24px 0 0;

    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* =========================================
   Documentation Hub
   ========================================= */

.documentation-hero {
    padding: 90px 0 80px;

    background-image:
        linear-gradient(
            90deg,
            rgba(3, 11, 22, 0.90) 0%,
            rgba(3, 11, 22, 0.60) 42%,
            rgba(3, 11, 22, 0.08) 72%
        ),
        url("/assets/images/documentation-hero.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border-bottom: 1px solid var(--border);
}

.documentation-hero__inner,
.documentation-catalog__inner,
.documentation-help__inner {
    width: min(calc(100% - 80px), var(--max-width));
    margin: 0 auto;
}

.documentation-hero h1 {
    max-width: 850px;
    margin: 0;

    font-size: clamp(3rem, 4.5vw, 4.6rem);
    line-height: 1.03;
    letter-spacing: -0.045em;
}

.documentation-hero__inner > p:last-child {
    max-width: 680px;
    margin: 26px 0 0;

    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.7;
}


/* Documentation Catalog */

.documentation-catalog {
    padding: 100px 0 110px;
    background: var(--background-secondary);
}

.documentation-catalog__heading {
    margin-bottom: 42px;
}

.documentation-catalog__heading h2 {
    margin: 0;

    font-size: clamp(2.3rem, 3vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}


/* Product Documentation */

.documentation-product {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    align-items: center;
    gap: 50px;

    padding: 44px;

    color: var(--text);
    text-decoration: none;

    background:
        linear-gradient(
            135deg,
            rgba(0, 190, 255, 0.06),
            rgba(255, 255, 255, 0.015)
        ),
        var(--panel);

    border: 1px solid var(--border);
    border-radius: 14px;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.documentation-product:hover {
    transform: translateY(-4px);

    background: var(--panel-hover);
    border-color: rgba(0, 190, 255, 0.35);
}

.documentation-product__branding {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 190px;

    border-right: 1px solid var(--border);
}

.documentation-product__branding img {
    display: block;

    width: 190px;
    max-width: 90%;
    height: auto;
}

.documentation-product__content > span {
    display: block;

    margin-bottom: 14px;

    color: var(--accent);

    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.documentation-product__content h2 {
    margin: 0;

    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.documentation-product__content p {
    max-width: 650px;
    margin: 20px 0 26px;

    color: var(--text-muted);
    line-height: 1.7;
}

.documentation-product__content strong {
    color: var(--accent);

    font-size: 0.9rem;
    font-weight: 700;
}


/* Documentation Help */

.documentation-help {
    padding: 90px 0 100px;

    background: var(--background);
    border-top: 1px solid var(--border);
}

.documentation-help h2 {
    max-width: 720px;
    margin: 0;

    font-size: clamp(2.3rem, 3vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.documentation-help__inner > p:last-of-type {
    max-width: 680px;
    margin: 24px 0 30px;

    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

@media (max-width: 800px) {
    .site-header__inner {
        align-items: flex-start;
        flex-direction: column;

        padding: 18px 0;
    }

    .site-nav {
        width: 100%;

        gap: 16px;

        overflow-x: auto;
    }

    .hero {
        min-height: auto;
        padding: 100px 0;
    }

    .hero__actions,
    .featured-product__actions,
    .site-footer__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .featured-product {
        padding: 70px 0;
    }

    .featured-product__content {
        padding: 30px;
    }

    .featured-product__content--split {
        grid-template-columns: 1fr;
        gap: 36px;
    }

   .wow-mover-logo {
    width: 220px;
    max-width: 100%;
   }

    .wow-mover-screenshot {
    max-width: 100%;
    margin: 0 auto;
    }


    /* =========================================
       WoW Mover Product Page - Mobile
       ========================================= */

    .product-hero {
        padding: 70px 0 80px;
    }

    .product-hero__inner {
        width: calc(100% - 40px);
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .product-hero__logo {
        width: 190px;
        margin-bottom: 24px;
    }

    .product-hero h1 {
        font-size: clamp(2.5rem, 11vw, 3.6rem);
    }

    .product-hero__description {
        font-size: 1.05rem;
    }

    .product-hero__screenshot {
        max-width: 100%;
        margin: 0 auto;
    }

    .product-features {
        padding: 80px 0;
    }

    .product-features__inner {
        width: calc(100% - 40px);
    }

    .product-features__header {
        margin-bottom: 40px;
    }

    .product-features__grid {
        grid-template-columns: 1fr;
    }

    .product-feature {
        padding: 26px;
    }

    .product-feature__number {
        margin-bottom: 20px;
    }

    .product-download {
        padding: 80px 0;
    }

    .product-download__inner {
        width: calc(100% - 40px);
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-download__panel {
        padding: 28px;
    }

    .product-install {
        padding: 80px 0;
    }

    .product-install__inner {
        width: calc(100% - 40px);
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .requirement {
        gap: 20px;
    }

        /* Documentation - Mobile */

    .docs-hero {
        padding: 70px 0 60px;
    }

    .docs-hero__inner,
    .docs-content__inner {
        width: calc(100% - 40px);
    }

    .docs-content {
        padding: 70px 0 80px;
    }

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

    .docs-card {
        min-height: 0;
        padding: 26px;
    }

    .docs-card > span {
        margin-bottom: 20px;
    }

        /* Documentation Sections - Mobile */

    .docs-section {
        padding: 80px 0;
    }

    .docs-section__inner {
        width: calc(100% - 40px);
    }

    .docs-section__heading {
        margin-bottom: 40px;
    }

    .docs-step {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 16px;
        padding: 24px 0;
    }

        /* Downloads - Mobile */

    .downloads-hero {
        padding: 70px 0 60px;
    }

    .downloads-hero__inner,
    .downloads__inner {
        width: calc(100% - 40px);
    }

    .downloads {
        padding: 70px 0 80px;
    }

    .download-card {
        grid-template-columns: 1fr;
        gap: 36px;

        padding: 28px;
    }

    .download-card__product {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .download-card__logo {
        width: 180px;
    }

    .download-card__release {
        padding-top: 30px;
        padding-left: 0;

        border-top: 1px solid var(--border);
        border-left: 0;
    }

    .download-card__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .download-card__actions .button {
        width: 100%;
    }

        /* Products - Mobile */

    .products-hero {
        padding: 70px 0 60px;
    }

    .products-hero__inner,
    .products-catalog__inner,
    .products-future__inner {
        width: calc(100% - 40px);
    }

    .products-catalog {
        padding: 70px 0 80px;
    }

    .product-catalog-card {
        grid-template-columns: 1fr;
        gap: 36px;

        padding: 28px;
    }

    .product-catalog-card__logo {
        width: 180px;
    }

    .product-catalog-card__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .product-catalog-card__actions .button {
        width: 100%;
    }

    .products-future {
        padding: 70px 0 80px;
    }

        /* Support - Mobile */

    .support-hero {
        padding: 70px 0 60px;
    }

    .support-hero__inner,
    .support-content__inner,
    .support-contact__inner {
        width: calc(100% - 40px);
    }

    .support-content {
        padding: 70px 0 80px;
    }

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

    .support-card {
        min-height: 0;
        padding: 28px;
    }

    .support-card > span {
        margin-bottom: 20px;
    }

    .support-contact {
        padding: 70px 0 80px;
    }

        /* Documentation Hub - Mobile */

    .documentation-hero {
        padding: 70px 0 60px;
    }

    .documentation-hero__inner,
    .documentation-catalog__inner,
    .documentation-help__inner {
        width: calc(100% - 40px);
    }

    .documentation-catalog {
        padding: 70px 0 80px;
    }

    .documentation-product {
        grid-template-columns: 1fr;
        gap: 28px;

        padding: 28px;
    }

    .documentation-product__branding {
        justify-content: flex-start;

        min-height: 0;
        padding-bottom: 28px;

        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .documentation-product__branding img {
        width: 180px;
    }

    .documentation-help {
        padding: 70px 0 80px;
    }
}
    /* =========================================================
   About Page
   ========================================================= */

.about-hero {
    min-height: 430px;

    display: flex;
    align-items: center;

    background-image:
        linear-gradient(
            90deg,
            rgba(3, 11, 22, 0.30) 0%,
            rgba(3, 11, 22, 0.10) 48%,
            rgba(3, 11, 22, 0.00) 72%
        ),
        url("/assets/images/about-hero.png");

    background-size: cover;
    background-position: right top;
    background-repeat: no-repeat;

    border-bottom: 1px solid var(--border);
}

/* About Intro */

.about-intro {
    padding: 90px 0;
}

.about-intro__inner {
    width: min(calc(100% - 80px), var(--max-width));
    margin: 0 auto;
}

.about-intro h2 {
    margin: 10px 0 20px;

    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.about-intro__inner > p:not(.eyebrow) {
    max-width: 820px;

    color: var(--text-muted);

    font-size: 1.05rem;
    line-height: 1.8;
}

.about-intro__inner > p:last-child {
    margin-bottom: 0;
}

/* About Ecosystem */

.about-ecosystem {
    padding: 90px 0 110px;

    background: var(--background-secondary);

    border-top: 1px solid var(--border);
}

.about-ecosystem__inner {
    width: min(calc(100% - 80px), var(--max-width));
    margin: 0 auto;
}

.about-ecosystem h2 {
    margin: 10px 0 35px;

    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.about-ecosystem__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.about-ecosystem__card {
    padding: 30px;

    background:
        linear-gradient(
            135deg,
            rgba(0, 190, 255, 0.06),
            rgba(255, 255, 255, 0.01)
        ),
        var(--panel);

    border: 1px solid var(--border);
    border-radius: 14px;
}

.about-ecosystem__card h3 {
    margin: 0 0 14px;

    font-size: 1.3rem;
}

.about-ecosystem__card p {
    margin: 0;

    color: var(--text-muted);

    line-height: 1.7;
}

.about-hero__inner {
    width: min(calc(100% - 80px), var(--max-width));
    margin: 0 auto;

    padding: 70px 0;
}

.about-hero h1 {
    max-width: 850px;

    margin: 12px 0 20px;

    font-size: clamp(2.6rem, 5vw, 4.6rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.about-hero__inner > p:last-child {
    max-width: 720px;

    margin: 0;

    color: var(--text-muted);

    font-size: 1.08rem;
    line-height: 1.75;
}

@media (max-width: 800px) {

    .about-hero {
        min-height: auto;
    }

    .about-hero__inner {
        width: calc(100% - 40px);
        padding: 55px 0;
    }

    .about-hero h1 {
        font-size: clamp(2.35rem, 10vw, 3.5rem);
    }

        .about-intro {
        padding: 65px 0;
    }

    .about-intro__inner {
        width: calc(100% - 40px);
    }

        .about-ecosystem {
        padding: 65px 0 80px;
    }

    .about-ecosystem__inner {
        width: calc(100% - 40px);
    }

    .about-ecosystem__grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   Account Page
   ========================================================= */

.account-hero {
    min-height: 360px;

    display: flex;
    align-items: center;

    background-image:
        linear-gradient(
            90deg,
            rgba(3, 11, 22, 0.20) 0%,
            rgba(3, 11, 22, 0.06) 48%,
            rgba(3, 11, 22, 0.00) 72%
        ),
        url("/assets/images/account-hero.png");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    border-bottom: 1px solid var(--border);
}

.account-hero__inner {
    width: min(calc(100% - 80px), var(--max-width));
    margin: 0 auto;
    padding: 65px 0;
}

.account-hero h1 {
    max-width: 800px;

    margin: 12px 0 20px;

    font-size: clamp(2.6rem, 5vw, 4.4rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.account-hero__inner > p:last-child {
    max-width: 700px;
    margin: 0;

    color: var(--text-muted);

    font-size: 1.08rem;
    line-height: 1.75;
}


/* Account Access */

.account-access {
    padding: 90px 0 110px;
}

.account-access__inner {
    width: min(calc(100% - 80px), var(--max-width));
    margin: 0 auto;
}

.account-access__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.account-access__card {
    padding: 36px;

    background:
        linear-gradient(
            135deg,
            rgba(0, 190, 255, 0.06),
            rgba(255, 255, 255, 0.01)
        ),
        var(--panel);

    border: 1px solid var(--border);
    border-radius: 14px;
}

.account-access__card h2 {
    margin: 10px 0 16px;

    font-size: 2rem;
    letter-spacing: -0.025em;
}

.account-access__card > p:not(.eyebrow) {
    max-width: 480px;
    min-height: 58px;

    margin: 0 0 28px;

    color: var(--text-muted);
    line-height: 1.7;
}


/* Account Mobile */

@media (max-width: 800px) {

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

    .account-hero__inner {
        width: calc(100% - 40px);
        padding: 55px 0;
    }

    .account-hero h1 {
        font-size: clamp(2.35rem, 10vw, 3.5rem);
    }

    .account-access {
        padding: 65px 0 80px;
    }

    .account-access__inner {
        width: calc(100% - 40px);
    }

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

    .account-access__card > p:not(.eyebrow) {
        min-height: 0;
    }
}

/* =========================================================
   Account Forms
   ========================================================= */

.account-form-page {
    min-height: 650px;
    padding: 90px 0 110px;

    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(0, 190, 255, 0.10),
            transparent 35%
        ),
        var(--background);
}

.account-form-page__inner {
    width: min(calc(100% - 80px), var(--max-width));
    margin: 0 auto;

    display: flex;
    justify-content: center;
}

.account-form-card {
    width: 100%;
    max-width: 520px;

    padding: 42px;

    background:
        linear-gradient(
            135deg,
            rgba(0, 190, 255, 0.06),
            rgba(255, 255, 255, 0.01)
        ),
        var(--panel);

    border: 1px solid var(--border);
    border-radius: 14px;
}

.account-form-card h1 {
    margin: 10px 0 16px;

    font-size: 2.5rem;
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.account-form-card__intro {
    margin: 0 0 32px;

    color: var(--text-muted);
    line-height: 1.7;
}

.account-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.account-form__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.account-form__field label {
    font-size: 0.92rem;
    font-weight: 600;
}

.account-form__field input {
    width: 100%;
    height: 48px;

    padding: 0 14px;

    color: var(--text);
    background: rgba(3, 11, 22, 0.75);

    border: 1px solid var(--border);
    border-radius: 8px;

    font: inherit;

    outline: none;
}

.account-form__field input:focus {
    border-color: var(--accent);

    box-shadow:
        0 0 0 3px rgba(0, 190, 255, 0.10);
}

.account-form__submit {
    width: 100%;
    margin-top: 4px;
    cursor: pointer;
}

.account-form-card__footer {
    margin-top: 28px;
    padding-top: 24px;

    border-top: 1px solid var(--border);

    text-align: center;
}

.account-form-card__footer p {
    margin: 0;
    color: var(--text-muted);
}

.account-form-card__footer a {
    color: var(--accent);
    text-decoration: none;
}

.account-form-card__footer a:hover {
    color: var(--accent-hover);
}

.account-form-card__footer a {
    white-space: nowrap;
}


/* Account Forms Mobile */

@media (max-width: 800px) {

    .account-form-page {
        min-height: auto;
        padding: 60px 0 80px;
    }

    .account-form-page__inner {
        width: calc(100% - 40px);
    }

    .account-form-card {
        padding: 30px 24px;
    }

    .account-form-card h1 {
        font-size: 2.2rem;
    }
}

/* ---------------------------------------------------------
   Administration
--------------------------------------------------------- */

.admin-panel {
    width: min(calc(100vw - 80px), 1400px);
    max-width: none;
}

.admin-table-wrapper {
    width: 100%;
    margin-top: 24px;
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}

.admin-table th,
.admin-table td {
    padding: 14px 16px;
    text-align: left;
    vertical-align: middle;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

.admin-table th {
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.admin-table tbody tr {
    transition: background 0.2s ease;
}

.admin-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.025);
}

.admin-table td {
    color: var(--text);
}
   
