:root {
    --bg: #020811;
    --bg2: #061523;
    --panel: rgba(5,20,34,.9);
    --line: #174b68;
    --cyan: #38c8ff;
    --cyan2: #8de5ff;
    --text: #d8e6ef;
    --muted: #8098a9;
    --steel: #b8c8d2;
    --gold: #c4a86d;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;    
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter,Segoe UI,Arial,sans-serif;
    overflow-x: hidden;
}

body:before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .22;
    background-image: linear-gradient(rgba(56,200,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(56,200,255,.025) 1px,transparent 1px);
    background-size: 42px 42px;
    z-index: 9999;
}

a {
    color: inherit;
}

.navbar {
    min-height: 70px;
    background: linear-gradient(180deg,rgba(2,9,17,.96),rgba(2,9,17,.58));
    border-bottom: 1px solid transparent;
    transition: .25s;
}

.navbar > .container-fluid {
    position: relative;
}

.navbar-toggler {
    width: 54px;
    height: 54px;
    padding: 0;
    display: grid;
    place-items: center;
    border: 1px solid #1c3c50;
    border-radius: 12px;
    background: rgba(4,14,24,.72);
    transition: background .2s, border-color .2s, box-shadow .2s;
}

.navbar-toggler:hover {
    background: rgba(8,29,44,.92);
    border-color: #2b7898;
}

.navbar-toggler:focus,
.navbar-toggler:focus-visible,
.navbar-toggler:active {
    outline: 0;
    border-color: #2b7898;
    box-shadow: 0 0 0 2px rgba(56,200,255,.12);
}

.navbar-toggler-lines {
    position: relative;
    display: block;
    width: 27px;
    height: 19px;
}

.navbar-toggler-lines::before,
.navbar-toggler-lines::after,
.navbar-toggler-lines span {
    content: "";
    position: absolute;
    left: 0;
    width: 27px;
    height: 2px;
    border-radius: 2px;
    background: #93a7b3;
    transition: top .22s, bottom .22s, transform .22s, opacity .18s, background .2s;
}

.navbar-toggler-lines::before {
    top: 0;
}

.navbar-toggler-lines span {
    top: 50%;
    transform: translateY(-50%);
}

.navbar-toggler-lines::after {
    bottom: 0;
}

.navbar-toggler:hover .navbar-toggler-lines::before,
.navbar-toggler:hover .navbar-toggler-lines::after,
.navbar-toggler:hover .navbar-toggler-lines span,
.navbar-toggler:not(.collapsed) .navbar-toggler-lines::before,
.navbar-toggler:not(.collapsed) .navbar-toggler-lines::after {
    background: var(--cyan2);
}

.navbar-toggler:not(.collapsed) .navbar-toggler-lines::before {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.navbar-toggler:not(.collapsed) .navbar-toggler-lines span {
    opacity: 0;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-lines::after {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

.navbar.scrolled {
    background: rgba(2,9,17,.97);
    border-bottom-color: #12364c;
    box-shadow: 0 10px 40px rgba(0,0,0,.35);
}

.navbar-brand {
    letter-spacing: .15em;
    font-weight: 700;
    font-size: .92rem;
}

.navbar-brand sup {
    font-size: .48rem;
    color: var(--cyan);
    top: -.7em;
}

.brand-emblem {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.nav-link {
    color: #9fb2bf !important;
    font-size: .88rem;
}

.nav-link:hover {
    color: #fff !important;
}

.btn {
    border-radius: 3px;
    letter-spacing: .035em;
}

.btn-info {
    background: linear-gradient(180deg,#45ccf8,#159bc9);
    border-color: #5ad9ff;
    color: #00111b;
    font-weight: 700;
    box-shadow: 0 0 22px rgba(56,200,255,.15);
}

.btn-info:hover {
    background: #fff;
    border-color: #9be7ff;
}

.btn-outline-info {
    color: #75dfff;
    border-color: #27799a;
}

.btn-outline-info:hover {
    background: #113d50;
    border-color: #55d5ff;
    color:#fff;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
    background: url("images/orbit-earth.webp") center/cover no-repeat;
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 45%,rgba(2,9,17,.12),rgba(2,9,17,.72) 58%,#020811 100%),linear-gradient(180deg,rgba(1,6,12,.35),rgba(1,6,12,.1) 55%,#020811);
}

.hero-content {
    padding-top: 120px;
    padding-bottom: 80px;
}

.hero-title-img {
    width: min(900px,85vw);
    height: auto;
    filter: drop-shadow(0 16px 25px rgba(0,0,0,.75)) drop-shadow(0 0 16px rgba(75,193,255,.2));
}

.hero-subtitle {
    letter-spacing: .7em;
    margin: 1rem 0 2rem;
    color: #cbd9e1;
    font-size: .9rem;
    font-weight: 600;
}

.hero .lead {
    max-width: 820px;
    color: #e5edf2;
    font-size: 1.25rem;
    text-shadow: 0 2px 16px #000;
}

.hero-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    color: #9fb0bd;
    font-size: .85rem;
}

.hero-meta i {
    color: var(--cyan);
    margin-right: .45rem;
}

.section {
    padding: 110px 0;
    position: relative;
}

.section-dark {
    background: linear-gradient(180deg,#030b14,#06131f 50%,#030a12);
}

.section-heading {
    max-width: 850px;
    margin-bottom: 50px;
}

.section-heading.text-center {
    margin-left: auto;
    margin-right: auto;
}

.section-heading h2,.cinematic h2,.fleet-section h2,.newsletter-box h2,#contact h2 {
    font-size: clamp(2rem,4vw,3.5rem);
    font-weight: 300;
    letter-spacing: .01em;
    color: #f0f5f8;
}

.section-heading p,.cinematic p,.fleet-section p {
    color: #9bb0bd;
    font-size: 1.05rem;
    line-height: 1.8;
}

.eyebrow {
    display: block;
    color: var(--cyan);
    letter-spacing: .28em;
    font-size: .75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.story-card {
    height: 100%;
    padding: 42px;
    position: relative;
    background: linear-gradient(145deg,rgba(8,32,52,.88),rgba(3,12,22,.94));
    border: 1px solid #164562;
    overflow: hidden;
}

.story-card:after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(65,201,255,.12);
    border-radius: 50%;
    right: -110px;
    bottom: -130px;
    box-shadow: 0 0 55px rgba(34,168,221,.08);
}

.story-number {
    position: absolute;
    right: 25px;
    top: 5px;
    font-size: 8rem;
    line-height: 1;
    color: rgba(87,204,247,.07);
    font-weight: 800;
}

.stage-label {
    color: #7fdfff;
    font-size: .7rem;
    letter-spacing: .22em;
}

.story-card h3 {
    font-size: 1.7rem;
    margin: 1.1rem 0;
    color: #fff;
}

.story-card p,.story-card li {
    color: #9dafbb;
    line-height: 1.7;
}

.story-card ul {
    padding-left: 1.1rem;
    margin-bottom: 0;
}

.story-card li::marker {
    color: var(--cyan);
}

.cinematic {
    padding: 100px 0;
    background: linear-gradient(90deg,#020811 0%,#081725 50%,#020811 100%);
}

.cinematic-frame {
    position: relative;
    border: 1px solid #205e7b;
    padding: 8px;
    background: #030a10;
    box-shadow: 0 25px 60px rgba(0,0,0,.45);
}

.cinematic-frame img {
    width: 100%;
    display: block;
}

.frame-label {
    position: absolute;
    left: 22px;
    bottom: 20px;
    padding: 7px 12px;
    background: rgba(1,10,18,.85);
    border-left: 2px solid var(--cyan);
    font-size: .68rem;
    letter-spacing: .14em;
}

.feature-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.feature-pills span {
    padding: 8px 13px;
    border: 1px solid #1b526d;
    background: #071b2a;
    font-size: .8rem;
    color: #b6c9d5;
}

.feature-pills i {
    color: var(--cyan);
    margin-right: 6px;
}

.gameplay-showcase {
    position: relative;
    border: 1px solid #15445e;
    padding: 7px;
    background: #02070c;
    box-shadow: 0 30px 80px rgba(0,0,0,.5);
}

.gameplay-showcase>img {
    width: 100%;
    display: block;
}

.gameplay-callout {
    position: absolute;
    width: 190px;
    padding: 11px 12px;
    background: rgba(2,14,24,.93);
    border: 1px solid #24779c;
    box-shadow: 0 0 24px rgba(44,190,245,.17);
    font-size: .75rem;
}

.gameplay-callout i {
    font-size: 1.2rem;
    color: var(--cyan);
    float: left;
    margin-right: 9px;
}

.gameplay-callout b,.gameplay-callout small {
    display: block;
}

.gameplay-callout small {
    color: #8096a5;
}

.callout-1 {
    left: 16%;
    top: 21%;
}

.callout-2 {
    right: 9%;
    top: 22%;
}

.callout-3 {
    right: 7%;
    top: 2%;
}

.feature-card {
    height: 100%;
    padding: 30px;
    border-top: 1px solid #1b5d7b;
    background: linear-gradient(180deg,rgba(8,31,48,.72),rgba(4,13,22,.35));
}

.feature-card>i {
    font-size: 2rem;
    color: var(--cyan);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin: 1rem 0;
}

.feature-card p {
    color: #899fac;
    margin: 0;
    line-height: 1.65;
}

.fleet-section {
    padding: 110px 0;
    background: url("images/space-background.webp") center/cover fixed;
    position: relative;
}

.fleet-section:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,rgba(1,7,13,.96),rgba(1,7,13,.72),rgba(1,7,13,.92));
}

.fleet-section .container {
    position: relative;
}

.fleet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.fleet-grid>div {
    position: relative;
    min-height: 190px;
    background: rgba(3,15,25,.78);
    border: 1px solid #174b66;
    overflow: hidden;
}

.fleet-grid img {
    width: 100%;
    height: 170px;
    object-fit: contain;
    filter: drop-shadow(0 12px 20px #000);
    transition: .3s;
}

.fleet-grid>div:hover img {
    transform: scale(1.08);
}

.fleet-grid span {
    position: absolute;
    left: 12px;
    bottom: 10px;
    color: #b9d2df;
    font-size: .75rem;
    letter-spacing: .12em;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr;
    grid-template-rows: 260px 260px;
    gap: 10px;
}

.gallery-grid button {
    padding: 0;
    border: 1px solid #143d55;
    background: #000;
    overflow: hidden;
    position: relative;
}

.gallery-grid button:first-child {
    grid-row: 1/3;
}

.gallery-grid button:last-child {
    grid-column: 2/4;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .35s;
    filter: saturate(.82);
}

.gallery-grid button:hover img {
    transform: scale(1.035);
    filter: saturate(1);
}

.gallery-grid button:after {
    content: "";
    font-family: "bootstrap-icons";
    position: absolute;
    right: 12px;
    bottom: 10px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    background: rgba(0,10,18,.78);
    border: 1px solid #296e8c;
    color: #fff;
    opacity: 0;
    transition: .25s;
}

.gallery-grid button:hover:after {
    opacity: 1;
}


.support-section {
    background: radial-gradient(circle at 50% 30%,#0a2438,#030a12 62%);
}

.support-card {
    height: 100%;
    position: relative;
    padding: 32px 26px;
    background: rgba(3,16,27,.9);
    border: 1px solid #16475f;
    transition: .25s;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    grid-template-areas:
        "icon title"
        "icon price"
        "list list"
        "button button";
    grid-template-rows: auto auto 1fr auto;
    column-gap: 18px;
    row-gap: 6px;
    align-items: start;
}

.support-card:hover {
    transform: translateY(-7px);
    border-color: #2e92b8;
}

.support-card.featured {
    border-color: #35bcea;
    box-shadow: 0 0 40px rgba(33,178,230,.12);
}

.popular {
    position: absolute;
    top: 0;
    right: 0;
    background: #1b9bc7;
    color: #00121c;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .1em;
    padding: 6px 10px;
}

.support-icon {
    grid-area: icon;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border: 1px solid #296f8e;
    color: var(--cyan);
    font-size: 1.35rem;
    margin: 0;
}

.support-card h3 {
    grid-area: title;
    font-size: 1.35rem;
    margin: 0;
    align-self: end;
}

.support-price {
    grid-area: price;
    color: #fff;
    font-size: 1.15rem;
    margin: 0 0 8px;
    align-self: start;
}

.support-card ul {
    grid-area: list;
    list-style: none;
    padding: 0;
    margin: 10px 0 20px;
    min-height: 0;
}

.support-card li {
    color: #91a7b5;
    font-size: .88rem;
    margin: .7rem 0;
    padding-left: 20px;
    position: relative;
}

.support-card li:before {
    content: "";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    color: var(--cyan);
}

.support-note {
    color: #718895;
    font-size: .76rem;
    margin-top: 22px;
    text-align: center;
}

.support-modal {
    background: #061420;
    border: 1px solid #2b7898;
}

.support-modal .modal-header,.support-modal .modal-footer {
    border-color: #173e52;
}

.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(90deg,#082339,#0b334d,#082339);
}

.newsletter-box {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
}

.newsletter-box h2 {
    font-size: 2.1rem;
}

.newsletter-box p {
    margin: 0;
    color: #a6bac7;
}

.newsletter-form {align-self: center;}

.newsletter-form .form-select {
    max-width: 90px;
}

.form-control,.form-select {
    background: #03111d;
    border-color: #235a75;
    color: #e3eef4;
    border-radius: 2px;
}

.form-control:focus,.form-select:focus {
    background: #041724;
    color: #fff;
    border-color: #49c9f7;
    box-shadow: 0 0 0 .2rem rgba(56,200,255,.12);
}

.form-control::placeholder {
    color: #6c8493;
}

.form-label {
    font-size: .8rem;
    color: #aec0cb;
}

.contact-form {
    padding: 35px;
    border: 1px solid #174b65;
    background: rgba(5,20,32,.7);
}

.contact-lines {
    display: grid;
    gap: 12px;
    margin-top: 2rem;
}

.contact-lines span {
    color: #a4b7c2;
}

.contact-lines i {
    color: var(--cyan);
    margin-right: 10px;
}

.form-message {
/*
    min-height: 24px;
    margin-top: 12px;
*/    
    font-size: .85rem;
    color: #8ba0ad;
}

.form-message.success {
    color: #74d7a3;
}

.form-message.error {
    color: #ff8d8d;
}

.hp {
    position: absolute !important;
    left: -10000px !important;
}

.modal-content {
    color: var(--text);
}

footer {
    padding: 55px 0 25px;
    background: #01050a;
    border-top: 1px solid #12384d;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 50px;
}

.footer-logo {
    width: 260px;
    height: auto;
}

.footer-main p {
    letter-spacing: .35em;
    color: #6f8491;
    font-size: .7rem;
    margin: 4px 0;
}

.footer-links {
    display: flex;
    gap: 22px;
}

.footer-links a {
    color: #8398a5;
    text-decoration: none;
    font-size: .82rem;
}

.footer-links a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid #1a4e66;
    color: #8fdfff;
    text-decoration: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 25px;
    margin-top: 28px;
    border-top: 1px solid #0d2838;
    color: #5f7480;
    font-size: .7rem;
}

@media (max-width:991.98px) {
    .navbar {
        min-height: 78px;
        background: rgba(2,9,17,.97);
    }

    .navbar > .container-fluid {
        min-height: 54px;
    }

    .navbar-collapse {
        position: absolute;
        top: calc(100% + 10px);
        left: 12px;
        right: 12px;
        padding: 18px;
        border: 1px solid #17475f;
        border-radius: 12px;
        background: rgba(2,11,20,.97);
        box-shadow: 0 22px 55px rgba(0,0,0,.55);
        backdrop-filter: blur(14px);
    }

    .navbar-collapse .navbar-nav {
        align-items: stretch;
        gap: 2px;
    }

    .navbar-collapse .nav-link {
        padding: 9px 0;
    }

    .navbar-collapse .btn {
        margin-top: 8px;
        width: fit-content;
    }

    .hero {
        min-height: 820px;
    }

    .hero-subtitle {
        letter-spacing: .4em;
    }

    .gameplay-callout {
        display: none;
    }

    .newsletter-box {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links,.social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 240px 240px;
    }

    .gallery-grid button:first-child {
        grid-row: auto;
    }

    .gallery-grid button:last-child {
        grid-column: 1/3;
    }

    .fleet-section {
        background-attachment: scroll;
        padding-top: 30px;
    }
}

@media (max-width:575.98px) {
    .section {
        padding: 75px 0;
    }

    .hero-title-img {
        width: 100%;
        max-width: 96vw;
    }

    .hero-subtitle {
        letter-spacing: .25em;
        font-size: .7rem;
    }

    .hero .lead {
        font-size: 1rem;
    }

    .hero-meta {
        gap: 1rem;
    }

    .story-card {
        padding: 30px 24px;
    }

    .gallery-grid {
        display: block;
    }

    .gallery-grid button {
        height: 210px;
        width: 100%;
        margin-bottom: 8px;
    }

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

    .newsletter-form .input-group {
        display: grid;
        grid-template-columns: 1fr 70px;
    }

    .newsletter-form .btn {
        grid-column: 1/3;
    }

    .newsletter-form .form-control,.newsletter-form .form-select,.newsletter-form .btn {
        width: 100%;
        border-radius: 2px !important;
    }

    .footer-links {
        flex-wrap: wrap;
    }

    .contact-form {
        padding: 24px 18px;
    }
}

.gallery-grid-expanded {
    grid-template-columns: 1.35fr .825fr .825fr;
    grid-template-rows: 230px 230px 230px;
}

.gallery-grid-expanded button:first-child {
    grid-row: 1/3;
}

.gallery-grid-expanded button:nth-child(4) {
    grid-column: 2/4;
}

.gallery-grid-expanded button:nth-child(5) {
    grid-column: 1/2;
}

.gallery-grid-expanded button:nth-child(6),.gallery-grid-expanded button:nth-child(7) {
    grid-column: auto;
}

.goals-section {
    background: linear-gradient(180deg,#020811,#071827 48%,#020811);
}

.goal-track {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.goal-track:before {
    content: "";
    position: absolute;
    left: 176px;
    top: 28px;
    bottom: 28px;
    width: 1px;
    background: linear-gradient(180deg,transparent,#37c8ff 8%,#2c7899 92%,transparent);
}

.goal-card {
    display: grid;
    grid-template-columns: 150px 54px 1fr;
    gap: 22px;
    align-items: start;
    padding: 22px 0;
}

.goal-amount {
    text-align: right;
    padding-top: 12px;
    color: #fff;
    font-weight: 700;
    letter-spacing: .04em;
}

.goal-marker {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border: 1px solid #2d91b8;
    background: #071c2c;
    color: var(--cyan);
    font-size: 1.25rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 25px rgba(56,200,255,.12);
}

.goal-card h3 {
    font-size: 1.28rem;
    margin: 5px 0 7px;
    color: #fff;
}

.goal-card p {
    margin: 0;
    color: #91a8b6;
    line-height: 1.65;
}

.goal-note {
    max-width: 900px;
    margin: 28px auto 0;
    text-align: center;
    color: #718895;
    font-size: .78rem;
    line-height: 1.6;
}

.support-section .row-cols-xl-5 .support-card {
    padding: 28px 17px;
    grid-template-columns: 48px minmax(0, 1fr);
    column-gap: 14px;
}

.support-section .row-cols-xl-5 .support-card h3 {
    font-size: 1.2rem;
}

.support-section .row-cols-xl-5 .support-price {
    font-size: 1rem;
}

.support-section .row-cols-xl-5 .support-card ul {
    margin: 10px 0 18px;
}

.support-card.patron {
    border-color: #9a7b3d;
    box-shadow: 0 0 36px rgba(196,168,109,.08);
}

.support-card.patron .support-icon {
    border-color: #9a7b3d;
    color: var(--gold);
}

.support-terms {
    margin-top: 32px;
    padding: 24px 28px;
    border: 1px solid #16475f;
    background: rgba(2,12,21,.62);
}

.support-terms p {
    margin: 0 0 12px;
    color: #849ba9;
    font-size: .82rem;
    line-height: 1.65;
}

.support-terms p:last-child {
    margin-bottom: 0;
}

.support-terms strong {
    color: #dbe7ee;
}

@media (max-width:1199.98px) {
    .gallery-grid-expanded {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 220px 220px 220px 220px;
    }

    .gallery-grid-expanded button:first-child {
        grid-row: auto;
    }

    .gallery-grid-expanded button:nth-child(4) {
        grid-column: 1/3;
    }

    .gallery-grid-expanded button:nth-child(5),.gallery-grid-expanded button:nth-child(6),.gallery-grid-expanded button:nth-child(7) {
        grid-column: auto;
    }

    .support-section .row-cols-xl-5 .support-card ul {
        min-height: 170px;
    }
}

@media (max-width:767.98px) {
    .goal-track:before {
        left: 26px;
    }

    .goal-card {
        grid-template-columns: 54px 1fr;
        gap: 16px;
    }

    .goal-amount {
        grid-column: 2;
        text-align: left;
        padding: 0;
        color: var(--cyan);
    }

    .goal-marker {
        grid-column: 1;
        grid-row: 1/3;
    }

    .goal-card>div:last-child {
        grid-column: 2;
    }

    .gallery-grid-expanded {
        display: block;
    }

    .gallery-grid-expanded button {
        height: 220px;
        width: 100%;
        margin-bottom: 8px;
    }

    .support-section .row-cols-xl-5 .support-card ul {
        min-height: auto;
    }
}

.game-overview {
    background: linear-gradient(180deg,#020811,#061420 55%,#020811);
}

.game-overview h2,.developers-section h2 {
    font-size: clamp(2rem,4vw,3.5rem);
    font-weight: 300;
    color: #f0f5f8;
}

.game-overview p,.developers-section p {
    color: #9bb0bd;
    line-height: 1.8;
}

.overview-lead {
    font-size: 1.12rem;
    color: #dbe8ef !important;
}

.genre-card {
    padding: 30px;
    border: 1px solid #1d5873;
    background: linear-gradient(145deg,rgba(7,28,45,.95),rgba(2,11,19,.95));
    box-shadow: 0 25px 60px rgba(0,0,0,.32);
}

.genre-card span {
    display: inline-grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border: 1px solid #2b8fb5;
    color: var(--cyan);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: .08em;
    margin-bottom: 10px;
}

.genre-card p {
    margin: 0 0 24px;
    font-size: .92rem;
}

.genre-card p:last-child {
    margin-bottom: 0;
}

.universe-stats {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 12px;
    margin-top: 58px;
}

.universe-stats>div {
    min-height: 100px;
    padding: 20px 22px;
    border-top: 1px solid #2b85a7;
    background: linear-gradient(180deg,rgba(8,34,53,.82),rgba(3,12,21,.45));
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.universe-stats strong {
    display: block;
    color: #fff;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: .03em;
}

.universe-stats span {
    color: #8fa7b5;
    font-size: .82rem;
    line-height: 1.5;
    margin-top: 8px;
}

.stats-note {
    max-width: 900px;
    margin: 24px auto 0;
    text-align: center;
    color: #738b99 !important;
    font-size: .85rem;
}

.developers-section {
    background: radial-gradient(circle at 18% 45%,#0b2639,#030a12 55%);
}

.developer-visual {
    position: relative;
    padding: 7px;
}

.developer-visual img {
    width: 100%;
    display: block;
}

.developer-badge {
    position: absolute;
    right: 18px;
    bottom: 18px;
    padding: 15px 18px;
    background: rgba(2,14,24,.94);
    border: 1px solid #2a82a4;
    display: flex;
    align-items: center;
    gap: 12px;
}

.developer-badge strong {
    font-size: 1.8rem;
    color: #fff;
    font-weight: 300;
}

.developer-badge span {
    max-width: 115px;
    color: #8ea8b7;
    font-size: .75rem;
    line-height: 1.35;
}

.developers-section strong {
    color: #eef7fb;
}

.hero-title-img,.footer-logo {
    object-fit: contain;
}

@media (max-width:991.98px) {
    .universe-stats {
        grid-template-columns: 1fr 1fr;
    }

    .developer-visual {
        max-width: 720px;
        margin: 0 auto;
    }
}

@media (max-width:575.98px) {
    .universe-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .universe-stats>div {
        min-height: 120px;
    }

    .developer-badge {
        position: static;
        margin-top: 7px;
    }

    .genre-card {
        padding: 24px 20px;
    }
}

.brand-wordmark {
    height: 24px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(56,200,255,.08));
}

.navbar-brand {
    gap: 10px;
}

.stages-section {
    background: linear-gradient(180deg,#030a12,#071726 52%,#020811);
}

.stage-scroller {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 8px 4px 16px;
    scroll-snap-type: x proximity;
    scrollbar-width: auto;
    scrollbar-color: #38c8ff #06131f;
    overscroll-behavior-x: contain;
}

.stage-scroller::-webkit-scrollbar {
    height: 14px;
}

.stage-scroller::-webkit-scrollbar-track {
    background: #06131f;
    border: 1px solid #123d55;
    border-radius: 8px;
}

.stage-scroller::-webkit-scrollbar-thumb {
    background: #2a91b9;
    border: 3px solid #06131f;
    border-radius: 8px;
    min-width: 70px;
}

.stage-scroller::-webkit-scrollbar-thumb:hover {
    background: #38c8ff;
}

.stage-tile {
    min-width: min(380px,86vw);
    scroll-snap-align: start;
    padding: 32px 28px;
    background: linear-gradient(145deg,rgba(8,32,52,.9),rgba(3,12,22,.95));
    border: 1px solid #16475f;
    position: relative;
    box-shadow: 0 18px 45px rgba(0,0,0,.24);
}

.stage-tile.is-active {
    border-color: #2ea1cc;
}

.stage-tile.stage-soon {
    background: linear-gradient(145deg,rgba(7,26,43,.88),rgba(2,10,18,.95));
}

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

.stage-roman {
    font-size: 3.2rem;
    line-height: 1;
    color: rgba(102,216,255,.17);
    font-weight: 800;
    letter-spacing: .04em;
}

.stage-status {
    font-size: .72rem;
    letter-spacing: .22em;
    color: #87e3ff;
    text-transform: uppercase;
}

.stage-tile h3 {
    color: #fff;
    font-size: 1.55rem;
    margin-bottom: 14px;
}

.stage-tile p,.stage-tile li {
    color: #9cb0bc;
    line-height: 1.72;
}

.stage-tile ul {
    padding-left: 1.1rem;
    margin-bottom: 0;
}

.stage-tile li::marker {
    color: var(--cyan);
}

.soon-note {
    margin-top: 20px;
    color: #7fdfff !important;
    font-size: .83rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.gameplay-clean {
    padding: 10px;
}

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

.ui-card {
    padding: 22px 20px;
    border-top: 1px solid #246d8d;
    background: linear-gradient(180deg,rgba(8,31,48,.72),rgba(4,13,22,.35));
}

.ui-card i {
    font-size: 1.65rem;
    color: var(--cyan);
}

.ui-card h3 {
    font-size: 1.08rem;
    margin: 1rem 0 .65rem;
    color: #fff;
}

.ui-card p {
    margin: 0;
    color: #8da3af;
    line-height: 1.65;
    font-size: .9rem;
}

.fleet-summary {
    margin-top: 22px;
    padding: 18px 20px;
    border: 1px solid #1a5672;
    background: rgba(3,14,24,.75);
}

.fleet-summary strong {
    display: block;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.fleet-summary span {
    display: block;
    color: #97afbc;
    line-height: 1.7;
    font-size: .92rem;
}

.support-card .support-icon i {
    line-height: 1;
}

.newsletter-controls {
    display: grid;
    grid-template-columns: minmax(260px,1fr) 170px auto;
    gap: 0;
    align-items: stretch;
    border: 1px solid #2a7899;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(2,11,19,.55);
}

.newsletter-email-wrap .form-control {
    border: none;
    border-right: 1px solid #1f607d;
    border-radius: 0 !important;
    height: 100%;
    padding-inline: 28px;
}

.newsletter-locale-wrap {
    display: grid;
    grid-template-columns: 1fr;
    align-content: center;
    background: #06121e;
    border-right: 1px solid #1f607d;
    padding: 12px 16px 10px;
}

.newsletter-locale-wrap label {
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #84dfff;
    margin-bottom: 6px;
}

.newsletter-locale-wrap .form-select {
    border: none;
    border-radius: 0 !important;
    padding-left: 0;
    background: transparent;
    color: #dcedf4;
}

.newsletter-controls>.btn {
    border: none;
    border-radius: 0 !important;
    padding-inline: 30px;
    min-width: 230px;
    font-size: 1rem;
}

.contact-lines a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #a4b7c2;
    text-decoration: none;
}

.contact-lines a:hover {
    color: #fff;
}

.social-links a:hover {
    background: #0a2a3d;
    color: #fff;
}

.support-card ul {
    min-height: 235px;
}

.footer-logo {
    max-width: 280px;
}

.brand-emblem {
    flex: 0 0 auto;
}

@media (max-width:1199.98px) {
    .ui-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .newsletter-controls {
        grid-template-columns: 1fr 180px;
    }

    .newsletter-controls>.btn {
        grid-column: 1/3;
    }

    .support-card ul {
        min-height: 180px;
    }
}

@media (max-width:991.98px) {
    .brand-wordmark {
        height: 20px;
    }

    .stage-tile {
        min-width: 78vw;
    }
}

@media (max-width:767.98px) {
    .ui-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ui-card {
        padding: 18px 15px;
    }

    .ui-card i {
        font-size: 1.4rem;
    }

    .ui-card h3 {
        font-size: .98rem;
        margin: .75rem 0 .45rem;
    }

    .ui-card p {
        font-size: .82rem;
        line-height: 1.5;
    }

    .genre-card {
        display: grid;
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 14px 16px;
        align-items: start;
        padding: 20px 18px;
    }

    .genre-card span {
        width: 52px;
        height: 52px;
        margin: 0;
        font-size: 1.05rem;
    }

    .genre-card p {
        margin: 0;
        font-size: .84rem;
        line-height: 1.55;
    }

    .support-card {
        padding: 22px 20px;
        grid-template-columns: 44px minmax(0, 1fr);
        column-gap: 14px;
        row-gap: 4px;
    }

    .support-card .support-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .support-card h3 {
        font-size: 1.1rem;
    }

    .support-card .support-price {
        font-size: .95rem;
        margin-bottom: 4px;
    }

    .support-card ul {
        margin: 14px 0 16px;
    }

    .support-card li {
        font-size: .84rem;
        margin: .6rem 0;
    }

    .support-card .support-select {
        min-height: 50px;
    }

    .popular {
        font-size: .58rem;
        padding: 6px 9px;
    }

    .newsletter-controls {
        grid-template-columns: 1fr;
    }

    .newsletter-email-wrap .form-control,.newsletter-locale-wrap {
        border-right: none;
        border-bottom: 1px solid #1f607d;
    }

    .newsletter-controls>.btn {
        grid-column: auto;
        min-width: unset;
    }

    .stage-tile {
        min-width: 88vw;
    }
}

@media (max-width:575.98px) {
    .brand-emblem {
        width: 30px;
        height: 30px;
    }

    .brand-wordmark {
        height: 17px;
    }

    .footer-logo {
        width: 92vw;
        max-width: 280px;
    }
}

/* Támogatási mérföldkövek és kompakt hírlevélblokk */
.goal-track {
    max-width: 1120px;
}

.goal-card {
    grid-template-columns: 160px 54px 1fr;
    padding: 26px 0;
}

.goal-card p {
    max-width: 820px;
}

.newsletter-section {
    padding: 48px 0;
}

.newsletter-box {
    grid-template-columns: minmax(320px, .85fr) minmax(560px, 1.15fr);
    gap: 42px;
}

.newsletter-box h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.newsletter-box p {
    font-size: .94rem;
    line-height: 1.55;
}

.newsletter-controls {
    grid-template-columns: minmax(260px, 1fr) 150px 180px;
    min-height: 58px;
    border-radius: 10px;
}

.newsletter-email-wrap .form-control {
    min-height: 58px;
    padding: 10px 20px;
    font-size: 1rem;
}

.newsletter-locale-wrap {
    padding: 7px 14px 6px;
}

.newsletter-locale-wrap label {
    margin-bottom: 1px;
    font-size: .58rem;
    letter-spacing: .16em;
}

.newsletter-locale-wrap .form-select {
    max-width: none;
    padding-top: 2px;
    padding-bottom: 2px;
    font-size: .94rem;
}

.newsletter-controls>.btn {
    min-width: 0;
    padding: 0 20px;
    font-size: .95rem;
}

@media (max-width: 1199.98px) {
    .newsletter-box {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .newsletter-controls {
        grid-template-columns: minmax(240px, 1fr) 150px 180px;
    }

    .newsletter-controls>.btn {
        grid-column: auto;
    }
}

@media (max-width: 767.98px) {
    .goal-card {
        grid-template-columns: 54px 1fr;
    }

    .newsletter-controls {
        grid-template-columns: 1fr;
        border-radius: 8px;
    }

    .newsletter-controls>.btn {
        min-height: 52px;
    }
}

/* Premium támogatási modal */
.support-card .support-select {
    grid-area: button;
    margin-top: auto;
}

.support-modal-premium {
    border: 1px solid #2d8db5;
    border-radius: 18px;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 8%, rgba(56, 200, 255, .09), transparent 34%),
        linear-gradient(145deg, #071827, #020b14 62%);
    box-shadow: 0 38px 100px rgba(0, 0, 0, .65), 0 0 60px rgba(56, 200, 255, .08);
}

.support-modal-header {
    align-items: flex-start;
    padding: 26px 30px 22px;
}

.support-modal-header .eyebrow {
    margin-bottom: 8px;
}

.support-modal-header .modal-title {
    color: #f2f7fa;
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    font-weight: 300;
    margin: 0;
}

.support-modal-header p {
    color: #8198a7;
    margin: 8px 0 0;
}

.support-modal-premium .modal-body {
    padding: 28px 30px 24px;
}

.support-data-panel,
.support-amount-panel,
.support-tier-panel,
.support-next-panel {
    border: 1px solid #174d68;
    background: rgba(3, 16, 27, .72);
}

.support-data-panel {
    height: 100%;
    padding: 22px;
}

.support-newsletter-box {
    border-top: 1px solid #153e54;
    margin-top: 22px;
    padding-top: 20px;
}

.support-newsletter-box .form-check-label {
    color: #b6c7d1;
    line-height: 1.5;
}

.support-amount-panel {
    padding: 22px;
}

.support-panel-label {
    color: #70d8ff;
    display: block;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .22em;
    margin-bottom: 12px;
}

.support-amount-control {
    display: grid;
    grid-template-columns: 44px minmax(150px, 1fr) 44px;
    gap: 8px;
    max-width: 390px;
}

.support-amount-step {
    border: 1px solid #2b7898;
    background: #061725;
    color: #8ce6ff;
    min-height: 46px;
    transition: .2s;
}

.support-amount-step:hover {
    background: #0c3043;
    border-color: #53d0ff;
    color: #fff;
}

.support-amount-display {
    display: flex;
    align-items: center;
    border: 1px solid #3aa5ce;
    background: #020b13;
    min-height: 46px;
    padding: 0 14px;
}

.support-amount-display input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
    font-size: 1.35rem;
    font-weight: 600;
    text-align: right;
}

.support-amount-display span {
    color: #83a1b1;
    margin-left: 8px;
}

.support-quick-amounts {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 12px;
}

.support-quick-amounts button {
    border: 1px solid #1e5872;
    background: #061624;
    color: #90aaba;
    font-size: .75rem;
    padding: 6px 9px;
}

.support-quick-amounts button:hover {
    border-color: #41bfea;
    color: #fff;
}

.support-tier-panel {
    margin-top: 16px;
    padding: 22px;
}

.support-tier-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.support-tier-heading h3 {
    color: #fff;
    font-size: 1.5rem;
    margin: 0;
}

.support-tier-heading > i {
    color: var(--cyan);
    font-size: 2rem;
}

.support-benefits-title {
    color: #a9bdc8;
    font-size: .82rem;
    margin: 18px 0 10px;
}

.support-benefits,
.support-next-preview ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.support-benefits li,
.support-next-preview li {
    color: #9db1bd;
    font-size: .86rem;
    line-height: 1.55;
    margin: 8px 0;
    padding-left: 21px;
    position: relative;
}

.support-benefits li::before,
.support-next-preview li::before {
    content: "\F26E";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    color: var(--cyan);
}

.support-next-panel {
    margin-top: 16px;
    padding: 18px 20px;
    border-color: #765f2d;
    background: linear-gradient(145deg, rgba(73, 57, 24, .23), rgba(3, 14, 23, .8));
}

.support-next-panel > p {
    color: #e5cf9b;
    margin: 0 0 12px;
}

.support-next-preview {
    border-top: 1px solid rgba(196, 168, 109, .25);
    margin-bottom: 15px;
    padding-top: 13px;
}

.support-next-preview strong {
    color: #fff;
    font-size: .85rem;
}

.support-next-panel.is-max {
    border-color: #876c34;
    text-align: center;
}

@media (max-width: 767.98px) {
    .support-modal-header,
    .support-modal-premium .modal-body,
    

    

    

    .support-amount-control {
        max-width: none;
    }
}

.payment-result-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 30px;
    background: radial-gradient(circle at 50% 30%, #0b3047, #020811 60%);
}

.payment-result-card {
    width: min(600px, 100%);
    padding: 45px;
    border: 1px solid #287a9c;
    background: rgba(3, 15, 25, .92);
    text-align: center;
    box-shadow: 0 35px 90px rgba(0, 0, 0, .55);
}

.payment-result-logo {
    width: min(320px, 82%);
    margin-bottom: 32px;
}

.payment-result-icon {
    display: block;
    color: var(--cyan);
    font-size: 3.4rem;
    margin-bottom: 18px;
}

.payment-result-card h1 {
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 300;
}

.payment-result-card p {
    color: #9db1bd;
    line-height: 1.7;
}

.payment-result-card small {
    display: block;
    color: #607b8a;
}

/* Support modal compact layout */
#supportModal .modal-dialog {
    max-width: 1120px;
    max-height: 100%;
}

#supportModal .modal-content {
//    max-height: calc(100vh - 24px);
    overflow: hidden;
}

#supportModal form {
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
}

.support-modal-header {
    flex: 0 0 auto;
    padding: 18px 24px 16px;
}

.support-modal-header .eyebrow {
    margin-bottom: 0px;
}

.support-modal-header .modal-title {
    font-size: clamp(1.45rem, 2vw, 2rem);
}

.support-modal-header p {
    font-size: .9rem;
    margin-top: 0px;
}

.support-modal-premium .modal-body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 12px 24px;
    scrollbar-width: thin;
    scrollbar-color: #2b7898 #04111c;
}

.support-modal-grid {
    display: grid;
    grid-template-columns: minmax(300px, .9fr) minmax(390px, 1.1fr);
    gap: 12px;
    align-items: start;
}

.support-data-panel,
.support-amount-panel,
.support-tier-panel,
.support-next-panel,
.support-billing-panel,
.support-consents {
    padding: 15px 17px;
}

.support-data-panel {
    height: auto;
}

.support-inline-field {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
}

.support-inline-field + .support-inline-field {
    margin-top: 10px;
}

.support-inline-field .form-label {
    margin: 0;
}

.support-inline-field .form-control,
.support-billing-grid .form-control,
.support-newsletter-locale .form-select {
    min-height: 38px;
    padding: 7px 10px;
}

.support-panel-label {
    margin-bottom: 7px;
}

.support-amount-control {
    max-width: none;
    grid-template-columns: 40px minmax(170px, 1fr) 40px;
}

.support-amount-step,
.support-amount-display {
    min-height: 40px;
}

.support-amount-display input {
    font-size: 1.15rem;
}

.support-quick-amounts {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
    margin-top: 9px;
}

.support-quick-amounts button {
    padding: 6px 5px;
    white-space: nowrap;
}

.support-tier-panel,
.support-next-panel {
    margin-top: 0;
}

.support-tier-heading h3 {
    font-size: 1.28rem;
}

.support-tier-heading > i {
    font-size: 1.65rem;
}

.support-benefits-title {
    margin: 10px 0 5px;
}

.support-benefits li,
.support-next-preview li {
    font-size: .8rem;
    line-height: 1.35;
    margin: 5px 0;
}

.support-next-panel > p {
    font-size: .82rem;
    margin-bottom: 7px;
}

.support-next-preview {
    margin-bottom: 9px;
    padding-top: 8px;
}

.support-billing-panel,
.support-consents {
    border: 1px solid #174d68;
    background: rgba(3, 16, 27, .72);
    margin-top: 12px;
}

.support-billing-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 0px;
}

.support-billing-heading small {
    display: block;
    color: #7893a3;
    font-size: .72rem;
}

.billingo-mark {
    color: #fff;
    border: 1px solid #34b9e9;
    border-radius: 4px;
    padding: 4px 9px;
    font-weight: 700;
    font-size: .78rem;
}


.support-customer-type {
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:18px;
    margin:0 0 12px;
    padding:10px 12px;
    border:1px solid #174d68;
    background:rgba(2, 12, 21, .55);
}
.support-customer-type .form-check { margin:0; }
.support-company-choice { display:flex; align-items:center; gap:16px; flex:1 1 auto; min-width:0; }
.support-tax-inline { display:flex; align-items:center; gap:8px; min-width:0; }
.support-tax-inline[hidden] { display:none !important; }
.support-tax-inline .form-label { margin:0; white-space:nowrap; }
.support-tax-inline .form-control { width:240px; min-height:38px; padding:7px 10px; }
.support-vies-note {
    margin-top:10px;
    color:#8fa8b6;
    font-size:.74rem;
    line-height:1.45;
}

.support-billing-grid {
    display:flex;
    align-items:flex-end;
    gap:10px;
}
.support-billing-grid > div { min-width:0; }
.support-billing-grid .billing-country { flex:0 0 140px; width:140px; }
.support-billing-grid .billing-name { flex:1 1 auto; min-width:260px; }
.support-billing-grid .billing-postcode { flex:0 0 90px; width:90px; }
.support-billing-grid .billing-city { flex:0 0 200px; width:200px; }
.support-billing-grid .billing-address { flex:0 0 300px; width:300px; }

.support-billing-grid .form-label {
    margin-bottom: 4px;
}

.support-consents {
    display: block;
    padding-top: 12px;
    padding-bottom: 12px;
}

.support-consents > .form-check,
.support-consents > .support-newsletter-row {
    width: 100%;
}

.support-legal-check + .support-legal-check,
.support-newsletter-row {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #153e54;
}

.support-legal-check .form-check-label,
.support-newsletter-row .form-check-label {
    color: #aebfca;
    font-size: .76rem;
    line-height: 1.45;
}

.support-legal-check a {
    color: #77dcff;
}

.support-newsletter-row {
    display:flex;
    align-items:center;
    gap:24px;
}

.support-newsletter-row .form-check {
    flex:0 1 auto;
    margin:0;
}

.support-newsletter-locale {
    display:flex;
    align-items:center;
    gap:10px;
    width:auto;
    max-width:none;
    margin:0 0 0 auto;
}

.support-newsletter-locale .form-label {
    display:block;
    margin:0;
    white-space:nowrap;
}

.support-newsletter-locale .form-select {
    display:block;
    width:170px;
}

/* Support modal footer */
.support-modal-footer {
    flex: 0 0 auto;
    display: grid;
    grid-template-columns: minmax(250px, 1fr) auto minmax(350px, 1fr);
    align-items: center;
    gap: 24px;
    padding: 12px 24px;
}

.support-footer-payment {
    display: flex;
    justify-content: flex-start;
    min-width: 0;
}

.support-footer-payment a {
    display: inline-flex;
}

.support-footer-payment img {
    display: block;
    width: auto;
    height: 40px;
    max-width: 100%;
    padding: 5px;
    border-radius: 10px;
    background: #fff;
}

.support-payment-summary {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 12px;
    color: #91a8b5;
    font-size: .78rem;
    text-align: center;
    white-space: nowrap;
}

.support-payment-summary strong {
    color: #fff;
}

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

.support-modal-actions .btn-info {
    white-space: nowrap;
}

@media (max-width: 991.98px) {
    .support-modal-footer {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .support-footer-payment,
    .support-payment-summary,
    .support-modal-actions {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .support-modal-footer {
        padding-left: 14px;
        padding-right: 14px;
    }

    .support-payment-summary {
        display: grid;
        white-space: normal;
    }

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

    .support-modal-actions .btn {
        width: 100%;
    }
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 22px;
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid #0d2838;
}

.legal-links a {
    color: #8097a5;
    font-size: .76rem;
    text-decoration: none;
}

.legal-links a:hover {
    color: #fff;
}

@media (max-width: 991.98px) {
    #supportModal .modal-dialog {
        margin: 8px;
        max-height: calc(100vh - 16px);
    }

    #supportModal .modal-content {
        max-height: calc(100vh - 16px);
    }

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

    .support-billing-grid {
        display:grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
    .support-billing-grid .billing-country,
    .support-billing-grid .billing-name,
    .support-billing-grid .billing-postcode,
    .support-billing-grid .billing-city,
    .support-billing-grid .billing-address { width:auto; min-width:0; }
    .support-billing-grid .billing-address { grid-column:span 2; }

    
}

@media (max-width: 767.98px) {
    .support-customer-type { align-items:flex-start; }
    .support-company-choice { display:block; width:100%; }
    .support-tax-inline { display:block; margin-top:10px; }
    .support-tax-inline .form-label { display:block; margin-bottom:4px; white-space:normal; }
    .support-tax-inline .form-control { width:100%; }
    .support-billing-grid { display:block; }
    .support-billing-grid > div { width:100% !important; min-width:0 !important; margin-bottom:10px; }
    .support-billing-grid > div:last-child { margin-bottom:0; }
    .support-billing-grid .billing-address { grid-column:auto; }

    .support-newsletter-row { display:block; }
    .support-newsletter-locale { display:grid; grid-template-columns:auto minmax(0, 1fr); align-items:center; gap:8px; width:100%; min-width:0; margin:8px 0 0; }
    .support-newsletter-locale .form-label { display:block; margin:0; white-space:nowrap; }
    .support-newsletter-locale .form-select { display:block; width:100%; min-width:0; }
}

@media (max-width: 575.98px) {
    .support-modal-header,
    .support-modal-premium .modal-body,
    .support-inline-field {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .support-quick-amounts {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
    align-items: end;
    gap: 56px;
    max-width: none;
}

.gallery-heading > div {
    min-width: 0;
}

.gallery-heading h2 {
    max-width: 760px;
    margin-bottom: 0;
}

.gallery-heading > p {
    max-width: 520px;
    margin: 0 0 8px;
}

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

.footer-copyright {
    display: flex;
    flex-wrap: wrap;
    gap: 0 6px;
}

.footer-copyright a {
    color: #8097a5;
    text-decoration: none;
}

.footer-copyright a:hover {
    color: #fff;
}

.footer-separator {
    color: #27485b;
}




@media (max-width: 991.98px) {
    .gallery-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-heading > p {
        max-width: 700px;
        margin-bottom: 0;
    }
}

@media (max-width: 767.98px) {
    .gallery-heading h2 {
        font-size: clamp(2rem, 11vw, 3rem);
    }

    .footer-bottom {
        align-items: center;
    }

    .footer-copyright {
        justify-content: center;
    }
}

/* Development roadmap */
.roadmap-section {
    position: relative;
    overflow: hidden;
}

.roadmap-section:before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(52, 190, 238, .09), transparent 52%);
    pointer-events: none;
}

.roadmap-section .container {
    position: relative;
}

.roadmap-timeline {
    position: relative;
    max-width: 1040px;
    margin: 54px auto 0;
}

.roadmap-timeline:before {
    content: "";
    position: absolute;
    top: 34px;
    bottom: 34px;
    left: 50%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(62, 199, 246, .72) 10%, rgba(62, 199, 246, .28) 90%, transparent);
    transform: translateX(-50%);
}

.roadmap-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 76px 1fr;
    align-items: center;
    margin-bottom: 28px;
}

.roadmap-item:nth-child(odd) .roadmap-card {
    grid-column: 1;
    text-align: right;
}

.roadmap-item:nth-child(even) .roadmap-card {
    grid-column: 3;
}

.roadmap-marker {
    grid-column: 2;
    grid-row: 1;
    position: relative;
    z-index: 2;
    width: 58px;
    height: 58px;
    margin: 0 auto;
    display: grid;
    place-items: center;
    border: 1px solid rgba(71, 205, 250, .7);
    border-radius: 50%;
    color: #52d2ff;
    background: #071622;
    box-shadow: 0 0 0 8px rgba(7, 22, 34, .92), 0 0 28px rgba(45, 190, 240, .2);
    font-size: 1.35rem;
}

.roadmap-card {
    padding: 24px 26px;
    border: 1px solid rgba(75, 177, 217, .25);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(10, 31, 46, .92), rgba(4, 17, 27, .88));
    box-shadow: 0 18px 42px rgba(0, 0, 0, .18);
}

.roadmap-date {
    display: inline-block;
    margin-bottom: 8px;
    color: #43cfff;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.roadmap-card h3 {
    margin: 0 0 9px;
    font-size: 1.28rem;
}

.roadmap-card p {
    margin: 0;
    color: #9eb4c3;
    line-height: 1.65;
}

.roadmap-highlight .roadmap-marker,
.roadmap-release .roadmap-marker {
    color: #08131d;
    background: #4fd6ff;
}

.roadmap-note {
    max-width: 960px;
    margin: 34px auto 0;
    padding: 18px 22px;
    border-left: 3px solid #3ec7f6;
    color: #9fb4c2;
    background: rgba(6, 23, 35, .65);
    line-height: 1.7;
}

@media (max-width: 767.98px) {
    .roadmap-timeline {
        margin-top: 36px;
    }

    .roadmap-timeline:before {
        left: 25px;
        transform: none;
    }

    .roadmap-item {
        grid-template-columns: 50px minmax(0, 1fr);
        gap: 16px;
        align-items: start;
        margin-bottom: 22px;
    }

    .roadmap-item:nth-child(odd) .roadmap-card,
    .roadmap-item:nth-child(even) .roadmap-card {
        grid-column: 2;
        grid-row: 1;
        text-align: left;
    }

    .roadmap-marker {
        grid-column: 1;
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
        box-shadow: 0 0 0 5px rgba(7, 22, 34, .92), 0 0 20px rgba(45, 190, 240, .18);
    }

    .roadmap-card {
        padding: 19px 18px;
        border-radius: 14px;
    }

    .roadmap-card h3 {
        font-size: 1.08rem;
    }

    .roadmap-note {
        margin-top: 26px;
        padding: 15px 16px;
    }
}


/* Supporter profiles and public supporter wall */
.home-supporters-section {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 50% 0, rgba(33, 126, 166, .16), transparent 48%), linear-gradient(180deg, #06111c, #030a12);
    border-top: 1px solid rgba(73, 174, 216, .12);
    border-bottom: 1px solid rgba(73, 174, 216, .12);
}

.home-supporters-section .section-heading {
    max-width: 820px;
    margin: 0 auto 38px;
}

.home-supporter-group + .home-supporter-group {
    margin-top: 38px;
}

.home-supporter-group h3 {
    margin: 0 0 18px;
    color: #dcecf5;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: .16em;
    text-align: center;
    text-transform: uppercase;
}

.home-supporter-grid {
    display: grid;
    gap: 16px;
    justify-content: center;
}

.home-supporter-grid-patron {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.home-supporter-grid-founder {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 12px;
}

.home-supporter-card {
    min-width: 0;
    text-align: center;
}

.home-supporter-card a,
.home-supporter-card-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    min-height: 92px;
    padding: 16px 12px 13px;
    color: #172936;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .65);
    border-radius: 13px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .18);
    transition: transform .2s, box-shadow .2s, border-color .2s;
}

.home-supporter-card a:hover {
    transform: translateY(-3px);
    color: #07131b;
    border-color: #7ddcff;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(32, 183, 235, .24);
}

.home-supporter-logo {
    height: 105px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    padding: 10px;
}

.home-supporter-grid-founder .home-supporter-logo {
    height: 72px;
    margin-bottom: 8px;
    padding: 7px;
}

.home-supporter-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.home-supporter-logo span {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(77, 204, 248, .35);
    border-radius: 50%;
    color: #80dcfa;
    background: rgba(25, 92, 120, .2);
    font-size: 1.3rem;
    letter-spacing: .08em;
}

.home-supporter-grid-founder .home-supporter-logo span {
    width: 50px;
    height: 50px;
    font-size: 1rem;
}

.home-supporter-card strong {
    display: block;
    overflow-wrap: anywhere;
    font-size: .9rem;
    font-weight: 500;
}

.home-supporter-grid-founder .home-supporter-card strong {
    color: #29404f;
    font-size: .78rem;
}

.home-supporters-empty {
    margin: 0 auto 24px;
    color: #89a4b4;
    text-align: center;
}

.supporters-wall-page,
.supporter-profile-page {
    min-height: 100vh;
    background: #020811 url('images/space-background.webp') center top / cover fixed;
}

.supporters-wall-nav {
    background: rgba(2, 9, 17, .96);
    border-bottom-color: rgba(44, 123, 158, .34);
}

.supporters-wall-main {
    min-height: calc(100vh - 180px);
    padding-top: 70px;
}

.supporters-wall-hero {
    padding: 92px 0 62px;
    background: radial-gradient(circle at 50% 10%, rgba(42, 159, 205, .2), transparent 55%), linear-gradient(180deg, rgba(4, 16, 27, .72), rgba(3, 10, 17, .95));
    border-bottom: 1px solid rgba(54, 151, 191, .18);
}

.supporters-wall-hero h1 {
    margin: 10px 0 14px;
    color: #f2f8fb;
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    font-weight: 300;
}

.supporters-wall-hero p {
    max-width: 760px;
    margin: 0 auto;
    color: #9bb5c4;
    font-size: 1.05rem;
    line-height: 1.7;
}

.supporters-wall-content {
    padding-top: 54px;
    padding-bottom: 76px;
}

.supporters-tier-section {
    padding: 30px;
    border: 1px solid rgba(48, 133, 170, .22);
    border-radius: 19px;
    background: rgba(4, 18, 29, .88);
    box-shadow: 0 26px 70px rgba(0, 0, 0, .2);
}

.supporters-tier-section + .supporters-tier-section {
    margin-top: 28px;
}

.supporters-tier-patron {
    border-color: rgba(196, 168, 109, .38);
    background: radial-gradient(circle at 50% 0, rgba(183, 143, 70, .13), transparent 45%), rgba(4, 18, 29, .9);
}

.supporters-tier-founder {
    border-color: rgba(57, 181, 226, .32);
}

.supporters-tier-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 26px;
}

.supporters-tier-title > div > span {
    display: block;
    margin-bottom: 4px;
    color: #55d2fc;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .18em;
}

.supporters-tier-patron .supporters-tier-title > div > span {
    color: #d6b775;
}

.supporters-tier-title h2 {
    margin: 0;
    color: #edf7fb;
    font-size: 1.55rem;
    font-weight: 400;
}

.supporters-tier-icon {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(64, 191, 236, .32);
    border-radius: 50%;
    color: #65d7fd;
    background: rgba(21, 91, 119, .18);
    font-size: 1.2rem;
}

.supporters-tier-patron .supporters-tier-icon {
    color: #d7ba7b;
    border-color: rgba(204, 171, 100, .38);
    background: rgba(115, 79, 22, .18);
}

.supporters-logo-grid {
    display: grid;
    gap: 18px;
}

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

.supporters-logo-grid-small {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 13px;
}

.supporter-logo-card {
    min-width: 0;
}

.supporter-logo-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    min-height: 96px;
    padding: 19px 16px 15px;
    color: #172936;
    text-align: center;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
    transition: transform .2s, border-color .2s, box-shadow .2s;
}

a.supporter-logo-link:hover {
    transform: translateY(-3px);
    color: #07131b;
    border-color: #7ddcff;
    background: #ffffff;
    box-shadow: 0 13px 32px rgba(31, 184, 235, .26);
}

.supporter-logo-image {
    height: 154px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    padding: 12px;
}

.supporter-logo-card-small .supporter-logo-image {
    height: 90px;
    margin-bottom: 9px;
    padding: 8px;
}

.supporter-logo-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.supporter-logo-image span,
.supporter-logo-preview span,
.admin-logo-preview span {
    display: grid;
    place-items: center;
    border: 1px solid rgba(81, 203, 245, .36);
    border-radius: 50%;
    color: #7fddfb;
    background: rgba(29, 102, 132, .18);
    letter-spacing: .08em;
}

.supporter-logo-image span {
    width: 92px;
    height: 92px;
    font-size: 1.65rem;
}

.supporter-logo-card-small .supporter-logo-image span {
    width: 58px;
    height: 58px;
    font-size: 1rem;
}

.supporter-logo-link strong {
    display: block;
    overflow-wrap: anywhere;
    font-weight: 500;
}

.supporter-logo-card-small .supporter-logo-link strong {
    color: #29404f;
    font-size: .83rem;
}

.supporters-name-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.supporters-name-list span {
    padding: 9px 13px;
    border: 1px solid rgba(56, 145, 181, .19);
    border-radius: 8px;
    color: #adc3d0;
    background: rgba(8, 27, 40, .7);
}

.supporters-name-list.featured span {
    padding: 12px 16px;
    color: #d9edf6;
    border-color: rgba(63, 190, 234, .3);
    background: rgba(14, 57, 77, .56);
    font-size: 1.02rem;
}

.supporters-name-list.simple span {
    padding: 6px 10px;
    color: #8fa9b8;
    border-color: rgba(66, 128, 152, .13);
    background: rgba(7, 22, 33, .52);
    font-size: .86rem;
}

.supporters-wall-empty {
    padding: 38px 24px;
    color: #94aebb;
    text-align: center;
    border: 1px dashed rgba(67, 158, 195, .28);
    border-radius: 16px;
    background: rgba(5, 19, 30, .75);
}

.supporters-wall-footer {
    padding: 28px 0;
    text-align: center;
    border-top: 1px solid rgba(57, 139, 174, .18);
    background: rgba(2, 9, 15, .95);
}

.supporters-wall-footer img {
    width: 220px;
    max-width: 70%;
}

.supporters-wall-footer p {
    margin: 8px 0 0;
    color: #6f8d9d;
    font-size: .8rem;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.supporter-profile-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 42px 16px;
    background: radial-gradient(circle at 50% 10%, rgba(40, 155, 199, .16), transparent 48%), rgba(1, 7, 12, .52);
}

.supporter-profile-card {
    width: min(860px, 100%);
    padding: 34px;
    border: 1px solid rgba(65, 173, 216, .32);
    border-radius: 22px;
    background: rgba(4, 18, 29, .95);
    box-shadow: 0 32px 90px rgba(0, 0, 0, .48);
}

.supporter-profile-brand {
    display: inline-block;
    margin-bottom: 30px;
}

.supporter-profile-brand img {
    width: 300px;
    max-width: 72vw;
}

.supporter-profile-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.supporter-profile-heading h1 {
    margin: 6px 0 0;
    color: #f1f8fb;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
}

.supporter-review-badge {
    flex: 0 0 auto;
    padding: 7px 11px;
    border: 1px solid rgba(225, 183, 92, .3);
    border-radius: 999px;
    color: #e3c883;
    background: rgba(103, 77, 21, .22);
    font-size: .76rem;
}

.supporter-profile-intro {
    max-width: 680px;
    margin: 15px 0 20px;
    color: #9bb3c1;
    line-height: 1.65;
}

.supporter-profile-summary {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 25px;
    padding: 13px 16px;
    border: 1px solid rgba(63, 160, 199, .2);
    border-radius: 10px;
    color: #a8c0cd;
    background: rgba(10, 37, 53, .58);
}

.supporter-profile-summary strong {
    color: #65d9ff;
}

.supporter-profile-message {
    margin-bottom: 22px;
    padding: 12px 14px;
    border-radius: 9px;
}

.supporter-profile-message.success {
    color: #b8f4d1;
    border: 1px solid rgba(57, 173, 109, .42);
    background: rgba(18, 81, 50, .38);
}

.supporter-profile-message.error {
    color: #ffc7cb;
    border: 1px solid rgba(208, 75, 86, .42);
    background: rgba(91, 29, 35, .42);
}

.supporter-profile-form label,
.supporter-logo-upload label {
    display: block;
    margin-bottom: 7px;
    color: #b9ced9;
    font-size: .87rem;
}

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

.supporter-profile-wide {
    grid-column: 1 / -1;
}

.supporter-profile-form .form-control {
    color: #e8f4f9;
    border-color: #274e62;
    background: rgba(5, 20, 31, .92);
}

.supporter-profile-form .form-control:focus {
    color: #ffffff;
    border-color: #42bde9;
    background: #071c29;
    box-shadow: 0 0 0 .2rem rgba(56, 200, 255, .12);
}

.supporter-profile-form small,
.supporter-logo-upload small {
    display: block;
    margin-top: 7px;
    color: #718d9d;
    line-height: 1.45;
}

.supporter-logo-upload {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px;
    gap: 22px;
    align-items: center;
    margin-top: 22px;
    padding: 18px;
    border: 1px solid rgba(53, 143, 180, .18);
    border-radius: 13px;
    background: rgba(8, 29, 42, .52);
}

.supporter-logo-preview {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 1px solid rgba(73, 158, 192, .18);
    border-radius: 10px;
    background: #ffffff;
}

.supporter-logo-preview img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.supporter-logo-preview span {
    width: 70px;
    height: 70px;
}

.supporter-visible-check {
    margin-top: 22px;
    padding: 15px 17px 15px 42px;
    border: 1px solid rgba(59, 156, 194, .18);
    border-radius: 11px;
    background: rgba(8, 28, 41, .58);
}

.supporter-visible-check .form-check-input {
    margin-left: -25px;
    border-color: #3a7189;
    background-color: #061621;
}

.supporter-visible-check .form-check-input:checked {
    border-color: #45c4ef;
    background-color: #39b7e3;
}

.supporter-visible-check .form-check-label {
    margin: 0;
    color: #d7e7ef;
}

.supporter-approval-note {
    margin: 13px 0 0;
    color: #809baa;
    font-size: .84rem;
}

.supporter-approval-note i {
    margin-right: 5px;
    color: #50c9f2;
}

.supporter-profile-save {
    margin-top: 24px;
    padding: 11px 20px;
    font-weight: 700;
}

@media (max-width: 1199.98px) {
    .home-supporter-grid-patron { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .home-supporter-grid-founder { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .supporters-logo-grid-small { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 767.98px) {
    .home-supporter-grid-patron,
    .home-supporter-grid-founder { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .home-supporter-logo { height: 88px; }
    .supporters-wall-hero { padding: 70px 0 44px; }
    .supporters-tier-section { padding: 21px 17px; border-radius: 15px; }
    .supporters-logo-grid-large,
    .supporters-logo-grid-small { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .supporter-logo-image { height: 110px; }
    .supporter-logo-card-small .supporter-logo-image { height: 78px; }
    .supporter-profile-card { padding: 24px 18px; border-radius: 17px; }
    .supporter-profile-heading { display: block; }
    .supporter-review-badge { display: inline-block; margin-top: 14px; }
    .supporter-profile-grid { grid-template-columns: 1fr; }
    .supporter-profile-wide { grid-column: auto; }
    .supporter-logo-upload { grid-template-columns: 1fr; }
    .supporter-logo-preview { height: 110px; }
}

@media (max-width: 419.98px) {
    .home-supporter-grid-patron,
    .home-supporter-grid-founder,
    .supporters-logo-grid-large,
    .supporters-logo-grid-small { grid-template-columns: 1fr; }
    .supporter-profile-summary { display: grid; gap: 4px; }
}

.supporter-logo-field-label { margin-top:16px; }

/* Supporter wall 0.1.21 */
.supporters-wall-hero { padding: 88px 0 0; overflow: hidden; }
.supporters-hero-layout { display:grid; grid-template-columns:minmax(0,1.25fr) minmax(260px,.75fr); align-items:center; gap:54px; padding-bottom:58px; }
.supporters-hero-copy { max-width:760px; }
.supporters-wall-hero .supporters-hero-copy h1 { margin:12px 0 18px; text-align:left; }
.supporters-wall-hero .supporters-hero-copy p { max-width:720px; margin:0 0 28px; text-align:left; }
.supporters-hero-mark { position:relative; min-height:310px; display:grid; place-items:center; }
.supporters-hero-mark::before { content:''; position:absolute; width:420px; height:420px; border:1px solid rgba(63,190,234,.18); border-radius:50%; box-shadow:0 0 90px rgba(26,153,205,.18), inset 0 0 70px rgba(21,116,155,.12); }
.supporters-hero-mark::after { content:''; position:absolute; width:285px; height:285px; border:1px dashed rgba(91,206,245,.18); border-radius:50%; }
.supporters-hero-mark img { position:relative; z-index:1; width:230px; max-width:72%; filter:drop-shadow(0 0 35px rgba(60,188,235,.28)); }
.supporters-hero-stats { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); border-top:1px solid rgba(64,156,193,.2); }
.supporters-hero-stats > div { padding:24px 26px; border-right:1px solid rgba(64,156,193,.18); }
.supporters-hero-stats > div:last-child { border-right:0; }
.supporters-hero-stats strong { display:block; color:#eff9fc; font-size:1.9rem; font-weight:400; }
.supporters-hero-stats span { color:#7898a9; font-size:.78rem; letter-spacing:.1em; text-transform:uppercase; }
.supporters-wall-content { max-width:1240px; padding-top:66px; }
.supporters-tier-section { position:relative; padding:0 0 54px; border:0; border-radius:0; background:transparent; box-shadow:none; }
.supporters-tier-section + .supporters-tier-section { margin-top:0; padding-top:54px; border-top:1px solid rgba(57,139,174,.2); }
.supporters-tier-patron, .supporters-tier-founder { border-color:rgba(57,139,174,.2); background:transparent; }
.supporters-tier-title { margin-bottom:30px; }
.supporters-tier-title h2 { font-size:1.7rem; }
.supporters-logo-grid-large { grid-template-columns:repeat(3,minmax(0,1fr)); gap:22px; }
.supporters-logo-grid-small { grid-template-columns:repeat(5,minmax(0,1fr)); gap:16px; }
.supporter-logo-link { border-color:#fff; box-shadow:0 12px 34px rgba(0,0,0,.24); }
a.supporter-logo-link:hover { transform:translateY(-5px); border-color:#fff; box-shadow:0 18px 46px rgba(28,171,222,.3), 0 0 0 2px rgba(94,211,250,.22); }
.supporters-name-list { gap:0; column-gap:28px; row-gap:0; }
.supporters-name-list span { position:relative; min-width:210px; padding:11px 0 11px 17px; border:0; border-radius:0; color:#adc3d0; background:transparent; }
.supporters-name-list span::before { content:''; position:absolute; left:0; top:50%; width:5px; height:5px; border-radius:50%; background:#4fc7ef; box-shadow:0 0 9px rgba(79,199,239,.55); }
.supporters-name-list.featured span { padding:13px 0 13px 19px; border:0; background:transparent; color:#e0f2f8; font-size:1.04rem; }
.supporters-name-list.simple span { padding:8px 0 8px 15px; border:0; background:transparent; color:#8fa9b8; }
.supporters-support-cta { margin-top:18px; padding:62px 34px; }
.supporters-support-cta h2 { max-width:760px; margin:10px auto 14px; font-weight:300; }
.supporters-support-cta p { max-width:700px; margin:0 auto 27px; color:#94adbb; }
.community-support-coming-soon { max-width:820px; margin:0 auto; padding:56px 0; }
.supporters-coming-soon-note { max-width:650px; margin:24px 0 0; color:#9bb2bf; }
@media (max-width:900px) {
    .supporters-hero-layout { grid-template-columns:1fr; gap:18px; }
    .supporters-hero-mark { min-height:230px; }
    .supporters-hero-mark::before { width:310px; height:310px; }
    .supporters-hero-mark::after { width:220px; height:220px; }
    .supporters-hero-mark img { width:170px; }
    .supporters-logo-grid-large { grid-template-columns:repeat(2,minmax(0,1fr)); }
    .supporters-logo-grid-small { grid-template-columns:repeat(3,minmax(0,1fr)); }
}
@media (max-width:600px) {
    .supporters-wall-hero { padding-top:64px; }
    .supporters-hero-layout { padding-bottom:34px; }
    .supporters-hero-mark { display:none; }
    .supporters-hero-stats { grid-template-columns:1fr; }
    .supporters-hero-stats > div { padding:15px 0; border-right:0; border-bottom:1px solid rgba(64,156,193,.14); }
    .supporters-logo-grid-large, .supporters-logo-grid-small { grid-template-columns:1fr; }
    .supporters-tier-section { padding-bottom:40px; }
    .supporters-tier-section + .supporters-tier-section { padding-top:40px; }
    .supporters-name-list span { min-width:100%; }
}

.gallery-grid .gallery-item {
    cursor: zoom-in;
}

.gallery-grid .gallery-item:focus-visible {
    outline: 2px solid #55d5ff;
    outline-offset: 3px;
}

.pswp {
    z-index: 20000;
}

.grecaptcha-badge {
    visibility: hidden;
}

.recaptcha-notice {
    margin: 14px 0 0;
    color: #5f7480;
    font-size: .68rem;
    text-align: center;
}
/* Language selector */
.language-menu { min-width: 210px; max-height: min(70vh, 520px); overflow-y: auto; }
.language-menu .dropdown-item { display: flex; align-items: center; gap: .7rem; }
.language-menu .language-code { display: inline-flex; width: 2.1rem; font-size: .72rem; font-weight: 700; letter-spacing: .05em; opacity: .65; }

/* Language selector */
.footer-languages {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px;
    margin: 6px 0 26px;
    padding-top: 22px;
    border-top: 1px solid rgba(87, 153, 181, .14);
}

.footer-language-link {
    width: 34px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(109, 176, 204, .14);
    border-radius: 7px;
    background: rgba(8, 27, 39, .55);
    font-size: 1.12rem;
    line-height: 1;
    text-decoration: none;
    opacity: .72;
    transition: opacity .18s ease, border-color .18s ease, background-color .18s ease, transform .18s ease;
}

.footer-language-link:hover {
    opacity: 1;
    transform: translateY(-2px);
    border-color: rgba(91, 201, 241, .48);
    background: rgba(24, 77, 99, .46);
}

.footer-language-link.active {
    opacity: 1;
    border-color: rgba(91, 201, 241, .75);
    background: rgba(38, 134, 170, .24);
    box-shadow: 0 0 0 1px rgba(91, 201, 241, .12);
}

.language-suggestion[hidden] { display: none !important; }

.language-suggestion {
    position: fixed;
    z-index: 1090;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    width: min(680px, calc(100% - 32px));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 13px 14px 13px 17px;
    border: 1px solid rgba(89, 197, 237, .35);
    border-radius: 12px;
    background: rgba(4, 18, 27, .96);
    box-shadow: 0 16px 45px rgba(0, 0, 0, .34);
    backdrop-filter: blur(12px);
}

.language-suggestion-copy,
.language-suggestion-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.language-suggestion-copy {
    color: #c8dbe4;
    font-size: .9rem;
}

.language-suggestion-icon { font-size: 1.05rem; }

.language-suggestion-accept {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 34px;
    padding: 6px 12px;
    border: 1px solid rgba(87, 205, 245, .55);
    border-radius: 7px;
    color: #dff7ff;
    background: rgba(33, 147, 188, .23);
    font-size: .86rem;
    text-decoration: none;
    white-space: nowrap;
}

.language-suggestion-accept:hover {
    color: #fff;
    background: rgba(37, 164, 208, .36);
}

.language-suggestion-dismiss {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 6px;
    color: #7793a0;
    background: transparent;
    font-size: 1.4rem;
    line-height: 1;
}

.language-suggestion-dismiss:hover {
    color: #dcebf1;
    background: rgba(255, 255, 255, .06);
}

@media (max-width: 575.98px) {
    .footer-languages { gap: 6px; }
    .footer-language-link { width: 32px; height: 29px; }
    .language-suggestion { align-items: flex-start; gap: 12px; bottom: 12px; }
    .language-suggestion-copy { align-items: flex-start; }
    .language-suggestion-actions { flex-shrink: 0; }
    .language-suggestion-copy { font-size: .82rem; }
    .language-suggestion-accept { padding-left: 9px; padding-right: 9px; }
}

/* Native select dropdown readability */
.newsletter-locale-wrap .form-select option,
.support-newsletter-locale .form-select option {
    background: #fff;
    color: #111;
}

/* Shared navigation + mobile language controls 0.1.34 */
.navbar-mobile-actions {
    margin-left:auto;
    display:flex;
    align-items:center;
    gap:8px;
}
.mobile-language-dropdown .nav-link {
    min-height:46px;
    display:flex;
    align-items:center;
    padding:8px 10px;
    border:1px solid rgba(88, 193, 232, .34);
    border-radius:10px;
    color:#9fe6ff;
    text-decoration:none;
}
.mobile-language-dropdown .dropdown-toggle::after { margin-left:6px; }
.footer-language-link img {
    width:24px;
    height:18px;
    display:block;
    object-fit:cover;
    border-radius:2px;
    box-shadow:0 0 0 1px rgba(255,255,255,.12);
}
.footer-legal-links { display:inline; }
.footer-legal-links::before { content:' | '; color:#335264; }

@media (max-width:991.98px) {
    .navbar-brand { margin-right:8px; min-width:0; }
    .navbar-brand .brand-wordmark { max-width:min(44vw, 270px); height:auto; }
    .navbar-mobile-actions .navbar-toggler { flex:0 0 auto; }
    .mobile-language-dropdown .language-menu { right:0 !important; left:auto !important; max-width:calc(100vw - 24px); }
    .navbar-collapse .navbar-nav > .nav-item.dropdown { display:none !important; }
}

@media (max-width:575.98px) {
    .navbar > .container-fluid { gap:6px; }
    .navbar-brand .brand-emblem { width:38px; }
    .navbar-brand .brand-wordmark { max-width:43vw; }
    .mobile-language-dropdown .nav-link { min-height:42px; padding:7px 8px; font-size:.86rem; }
    .navbar-toggler { width:46px; height:46px; }
    .footer-copyright { display:block; width:100%; }
    .footer-rights { display:block; margin-bottom:7px; }
    .footer-legal-links { display:block; }
    .footer-legal-links::before { display:none; content:''; }
}

/* EU B2C support flow */
.support-price span { display:block; }
.support-price span + span { margin-top:3px; color:#82dfff; font-size:.88rem; font-weight:500; }
.support-risk-notice { display:flex; gap:14px; align-items:flex-start; max-width:1040px; margin:0 auto 28px; padding:16px 18px; border:1px solid rgba(255,193,7,.42); background:rgba(86,61,4,.22); color:#dce9ef; }
.support-risk-notice > i { flex:0 0 auto; margin-top:2px; color:#ffc107; font-size:1.15rem; }
.support-risk-notice strong { display:block; margin-bottom:5px; color:#fff; }
.support-risk-notice p { margin:0; color:#aebfca; font-size:.9rem; line-height:1.55; }
.support-risk-notice-modal { max-width:none; margin:0 0 12px; padding:12px 14px; }
.support-risk-notice-modal p { font-size:.8rem; }
.support-billing-grid .form-select { min-height:38px; padding:7px 10px; }
.support-country-payment-note { margin-top:9px; min-height:18px; color:#7ddcff; font-size:.76rem; }
.support-footer-payment > div { min-height:40px; display:flex; align-items:center; }
.support-footer-payment > div[hidden] { display:none; }
.support-footer-payment span { color:#a9c5d3; font-size:.8rem; }
.support-amount-display input[type="number"] { appearance:textfield; -moz-appearance:textfield; }
.support-amount-display input[type="number"]::-webkit-inner-spin-button,
.support-amount-display input[type="number"]::-webkit-outer-spin-button { margin:0; -webkit-appearance:none; }

@media (max-width: 767.98px) {
    .support-risk-notice { padding:14px; }
    .support-risk-notice p { font-size:.84rem; }
}

/* News & development log 0.5.3 */
los-no-translate { display:contents; }
.home-news-section { background:linear-gradient(180deg, rgba(4,18,29,.98), rgba(7,27,42,.98)); }
.home-news-heading { display:flex; align-items:end; justify-content:space-between; gap:24px; }
.news-page { min-height:70vh; padding-top:78px; background:#07131f; }
.news-list-hero { padding:84px 0 42px; border-bottom:1px solid rgba(95,217,255,.12); background:radial-gradient(circle at 50% 0%,rgba(25,112,145,.22),transparent 58%); }
.news-list-hero h1 { margin:.35rem 0 .75rem; font-size:clamp(2.25rem,5vw,4.6rem); }
.news-list-hero p { max-width:760px; margin:0; color:#a9bdc9; font-size:1.08rem; }
.news-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:24px; }
.news-card { display:flex; min-width:0; flex-direction:column; overflow:hidden; border:1px solid rgba(92,203,242,.16); border-radius:16px; color:inherit; background:rgba(11,29,42,.9); text-decoration:none; transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease; }
.news-card:hover { transform:translateY(-3px); border-color:rgba(92,203,242,.42); color:inherit; box-shadow:0 18px 44px rgba(0,0,0,.24); }
.news-card-media { aspect-ratio:16/9; overflow:hidden; background:#0a1c29; }
.news-card-media img { width:100%; height:100%; display:block; object-fit:cover; transition:transform .35s ease; }
.news-card:hover .news-card-media img { transform:scale(1.025); }
.news-card-placeholder { width:100%; height:100%; display:grid; place-items:center; color:#55cbea; font-size:3rem; background:radial-gradient(circle at center,rgba(67,190,229,.2),transparent 60%),#091925; }
.news-card-body { display:flex; flex:1; flex-direction:column; padding:20px; }
.news-card-body time { margin-bottom:9px; color:#6dcbe8; font-size:.82rem; letter-spacing:.04em; }
.news-card-body h2,.news-card-body h3 { margin:0 0 10px; color:#f3f8fb; font-size:1.28rem; line-height:1.25; }
.news-card-body p { margin:0 0 18px; color:#9fb4c0; line-height:1.55; }
.news-card-body > span { margin-top:auto; color:#67d5f4; font-weight:700; }
.news-article-header { padding:68px 0 24px; }
.news-article-header-inner { max-width:980px; }
.news-back-link { display:inline-flex; align-items:center; gap:7px; margin-bottom:28px; color:#65d2f0; text-decoration:none; }
.news-article-header time { display:block; margin-bottom:12px; color:#83a6b8; font-size:.92rem; }
.news-article-header h1 { max-width:920px; margin:0; font-size:clamp(2.35rem,5.8vw,5.1rem); line-height:1.02; }
.news-article-lead { max-width:850px; margin:22px 0 0; color:#b7c8d1; font-size:1.2rem; line-height:1.65; }
.news-article-cover { max-width:1180px; margin:22px auto 42px; overflow:hidden; border-radius:18px; border:1px solid rgba(91,204,242,.17); }
.news-article-cover img { width:100%; max-height:680px; display:block; object-fit:cover; }
.news-article-layout { max-width:1100px; display:grid; grid-template-columns:minmax(0,1fr) 70px; gap:48px; padding-bottom:80px; }
.news-article-body { min-width:0; color:#d6e2e8; font-size:1.06rem; line-height:1.8; }
.news-article-body h2 { margin:2.2em 0 .7em; font-size:1.8rem; color:#f0f7fa; }
.news-article-body h3 { margin:1.8em 0 .6em; font-size:1.38rem; color:#e9f4f8; }
.news-article-body p { margin:0 0 1.25em; }
.news-article-body ul,.news-article-body ol { margin:0 0 1.35em; padding-left:1.45em; }
.news-article-body li { margin:.35em 0; }
.news-article-body blockquote { margin:1.7em 0; padding:14px 20px; border-left:3px solid #55c9e8; color:#b9ced8; background:rgba(66,189,226,.07); }
.news-article-body a { color:#68d7f5; }
.news-article-body img { width:auto; max-width:100%; height:auto; display:block; margin:28px auto; border-radius:12px; }
.news-video { position:relative; width:100%; aspect-ratio:16/9; margin:30px 0; overflow:hidden; border-radius:12px; background:#000; }
.news-video iframe { position:absolute; inset:0; width:100%; height:100%; border:0; }
.news-share { position:sticky; top:105px; align-self:start; }
.news-share > strong { display:block; margin-bottom:10px; color:#89a7b6; font-size:.75rem; text-transform:uppercase; letter-spacing:.08em; }
.news-share-buttons { display:flex; flex-direction:column; gap:8px; }
.news-share-buttons a,.news-share-buttons button { width:44px; height:44px; display:grid; place-items:center; padding:0; border:1px solid rgba(98,201,236,.22); border-radius:50%; color:#c6dce6; background:#0d2230; text-decoration:none; }
.news-share-buttons a:hover,.news-share-buttons button:hover,.news-share-buttons button.copied { color:#fff; border-color:#63d8ff; background:#12384b; }
.news-empty,.news-list-section { min-height:45vh; }
.news-empty-state { grid-column:1/-1; padding:65px 20px; text-align:center; color:#88a5b4; }
.news-empty-state i { display:block; margin-bottom:12px; font-size:2.5rem; color:#57cae9; }
@media (max-width:991.98px) { .news-grid { grid-template-columns:repeat(2,minmax(0,1fr)); } .news-article-layout { grid-template-columns:1fr; gap:22px; } .news-share { position:static; } .news-share-buttons { flex-direction:row; flex-wrap:wrap; } }
@media (max-width:767.98px) { .home-news-heading { align-items:flex-start; flex-direction:column; } .news-page { padding-top:66px; } .news-list-hero { padding:56px 0 30px; } .news-grid { grid-template-columns:1fr; gap:16px; } .news-card-body { padding:16px; } .news-article-header { padding:46px 0 18px; } .news-article-header h1 { font-size:clamp(2.15rem,11vw,3.4rem); } .news-article-lead { font-size:1.06rem; } .news-article-cover { margin:14px auto 28px; border-radius:12px; } .news-article-layout { padding-bottom:55px; } .news-article-body { font-size:1rem; line-height:1.72; } .news-article-body img { width:100%; margin:22px auto; } .news-video { margin:22px 0; border-radius:8px; } }

/* Supporter public messages 0.1.43 */
.home-supporter-message,
.supporter-public-message { display:block; margin-top:7px; color:#667b88; font-size:.72rem; font-weight:400; line-height:1.35; overflow-wrap:anywhere; }
.home-supporter-grid-founder .home-supporter-message { font-size:.67rem; }
.supporter-logo-link .supporter-public-message { color:#607683; }
.supporters-name-list .supporter-name-entry { display:flex; flex-direction:column; align-items:flex-start; gap:3px; }
.supporters-name-list .supporter-name-entry strong { color:inherit; font-size:inherit; font-weight:500; }
.supporters-name-list .supporter-name-entry .supporter-public-message { margin-top:1px; color:#7f9aa9; font-size:.76rem; line-height:1.3; }
.supporter-message-publish-check { margin-top:14px; padding:13px 14px 13px 38px; border:1px solid rgba(63,160,199,.2); border-radius:10px; background:rgba(10,37,53,.45); }
.supporter-message-publish-check .form-check-input { margin-left:-24px; }
.supporter-message-publish-check .form-check-label { color:#b2c8d4; font-size:.9rem; line-height:1.55; }
.supporter-message-review-state { display:block; margin-top:8px; color:#7fa8bb !important; }
@media (max-width:767.98px) { .home-supporter-message, .supporter-public-message { font-size:.74rem; } }

/* Support modal mobile tightening */
@media (max-width: 767.98px) {
    #supportModal { padding:0 !important; }
    #supportModal .modal-dialog { width:calc(100% - 12px); max-width:calc(100% - 12px); height:calc(100dvh - 12px); max-height:calc(100dvh - 12px); margin:6px auto; }
    #supportModal .modal-content { width:100%; max-width:100%; max-height:100%; min-width:0; }
    #supportModal form { width:100%; min-width:0; }
    .support-modal-premium .modal-body { padding:8px 10px; overflow-x:hidden; }
    .support-modal-header { padding:10px 12px 8px; }
    .support-modal-header .eyebrow { font-size:.72rem; }
    .support-modal-header .modal-title { font-size:1.35rem; line-height:1.18; }
    .support-modal-header p { margin:3px 0 0; font-size:.78rem; line-height:1.35; }
    .support-modal-grid { gap:8px; }
    .support-data-panel,.support-amount-panel,.support-tier-panel,.support-next-panel,.support-billing-panel,.support-consents { max-width:100%; padding:10px 11px; }
    .support-inline-field + .support-inline-field { margin-top:7px; }
    .support-inline-field .form-control,.support-billing-grid .form-control,.support-newsletter-locale .form-select { min-height:36px; padding:6px 9px; }
    .support-risk-notice-modal { gap:9px; margin-bottom:8px; padding:9px 10px; }
    .support-risk-notice-modal > i { font-size:1rem; }
    .support-risk-notice-modal strong { margin-bottom:3px; font-size:.84rem; line-height:1.35; }
    .support-risk-notice-modal p { font-size:.74rem; line-height:1.4; }
    .support-billing-panel,.support-consents { margin-top:8px; }
    .support-customer-type { gap:10px; margin-bottom:8px; padding:8px 9px; }
    .support-billing-grid > div { margin-bottom:7px; }
    .support-legal-check + .support-legal-check,.support-newsletter-row { margin-top:7px; padding-top:7px; }
    .support-legal-check { display:flex; align-items:flex-start; gap:8px; padding-left:0; }
    .support-legal-check .form-check-input { flex:0 0 auto; float:none; margin:2px 0 0; }
    .support-legal-check .form-check-label { flex:1 1 auto; min-width:0; }
    .support-legal-check .form-check-label,.support-newsletter-row .form-check-label { font-size:.72rem; line-height:1.38; }
    .support-newsletter-locale { margin-top:7px; }
    .support-modal-footer { gap:4px; padding:5px 8px 7px; }
    .support-modal-footer > * { margin:0 !important; }
    .support-footer-payment > div { min-height:0; }
    .support-footer-payment span { font-size:.72rem; line-height:1; }
    .support-footer-payment span i { font-size:.78rem; }
    .support-payment-summary { display:flex; flex-wrap:nowrap; justify-content:center; gap:12px; font-size:.72rem; white-space:nowrap; }
    .support-modal-actions { display:grid; grid-template-columns:minmax(0, .8fr) minmax(0, 1.2fr); gap:7px; width:100%; }
    .support-modal-actions .btn { width:100%; padding-top:7px; padding-bottom:7px; }
}
