:root {
    --bg: #090a0c;
    --bg-soft: #0f1115;
    --panel: #121419;
    --panel-2: #171a20;

    --text: #f4f4f2;
    --muted: #969ba6;
    --subtle: #686e79;

    --line: rgba(255,255,255,.09);
    --line-strong: rgba(255,255,255,.15);

    --accent: #d8ff57;
    --accent-text: #11140a;

    --danger: #ff6868;
    --success: #86e89b;
    --warning: #ffd166;

    --radius: 18px;
    --radius-small: 11px;

    --max: 1320px;
    --nav-height: 78px;

    --ease: cubic-bezier(.2,.7,.2,1);
}

* {
    box-sizing: border-box;
}

html {
    background: var(--bg);
    color-scheme: dark;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 70% -10%, rgba(216,255,87,.055), transparent 30%),
        var(--bg);
    color: var(--text);
    font-family:
        Inter,
        ui-sans-serif,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

img {
    display: block;
    max-width: 100%;
}

.wrap {
    width: min(calc(100% - 48px), var(--max));
    margin-inline: auto;
}

.narrow {
    max-width: 760px;
}

.section {
    padding-top: 110px;
    padding-bottom: 110px;
}

.section.compact {
    padding-top: 64px;
    padding-bottom: 80px;
}

.bordered {
    border-top: 1px solid var(--line);
}

.skip {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 999;
    padding: 10px 14px;
    background: white;
    color: black;
    transform: translateY(-150%);
}

.skip:focus {
    transform: none;
}

/* ---------- NAV ---------- */

.top {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--line);
    background: rgba(9,10,12,.82);
    backdrop-filter: blur(20px);
}

.nav {
    min-height: var(--nav-height);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 32px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    font-weight: 800;
    letter-spacing: -.04em;
    font-size: 19px;
}

.mark {
    width: 29px;
    height: 29px;
    display: inline-grid;
    place-items: center;
    background: var(--text);
    color: var(--bg);
    border-radius: 7px;
    font-size: 15px;
}

.wordmark-dot {
    color: var(--accent);
    font-size: 8px;
    align-self: flex-start;
    margin-top: 4px;
}

.navlinks,
.navright {
    display: flex;
    align-items: center;
    gap: 27px;
}

.navright {
    justify-self: end;
}

.navlinks a,
.navright > a:not(.button) {
    color: #c4c7ce;
    font-size: 14px;
    transition: color .2s ease;
}

.navlinks a:hover,
.navright > a:hover {
    color: white;
}

.mobile-nav {
    display: none;
}

/* ---------- TYPE ---------- */

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

h1,
h2,
h3 {
    letter-spacing: -.045em;
    line-height: 1.02;
}

h1 {
    margin-bottom: 24px;
    font-size: clamp(52px, 7vw, 104px);
    font-weight: 650;
}

h2 {
    margin-bottom: 22px;
    font-size: clamp(36px, 4.4vw, 67px);
    font-weight: 620;
}

h3 {
    font-size: 25px;
    font-weight: 600;
}

.serif {
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-weight: 400;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    color: #aeb2ba;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

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

.small {
    font-size: 13px;
}

.mono {
    font-family:
        "SFMono-Regular",
        Consolas,
        "Liberation Mono",
        monospace;
    letter-spacing: -.02em;
}

/* ---------- BUTTONS ---------- */

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 21px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: var(--text);
    color: #101113;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    transition:
        transform .18s var(--ease),
        background .18s ease,
        opacity .18s ease;
}

.button:hover {
    transform: translateY(-2px);
    background: var(--accent);
}

.button.small {
    min-height: 39px;
    padding-inline: 17px;
    font-size: 13px;
}

.button.full {
    width: 100%;
}

.text-link {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    border-bottom: 1px solid var(--line-strong);
    padding-bottom: 3px;
    color: #d7d9dd;
    font-size: 14px;
}

.text-link:hover {
    color: white;
    border-color: white;
}

/* ---------- HERO ---------- */

.hero {
    min-height: calc(100vh - var(--nav-height));
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    align-items: center;
    gap: 7vw;
    padding-top: 72px;
    padding-bottom: 72px;
}

.hero-copy h1 {
    max-width: 700px;
}

.hero-description {
    margin-bottom: 34px;
    color: var(--muted);
    font-size: clamp(18px, 2vw, 23px);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 27px;
}

.hero-caption {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 90px;
    padding-top: 15px;
    border-top: 1px solid var(--line);
    color: var(--subtle);
    font-size: 10px;
    letter-spacing: .1em;
}

.hero-visual {
    border: 1px solid var(--line);
    border-radius: 25px;
    background:
        radial-gradient(circle at 70% 15%, rgba(216,255,87,.08), transparent 30%),
        linear-gradient(155deg, #16191f, #0d0f13);
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,.36);
}

.visual-heading,
.visual-bottom {
    min-height: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 23px;
    color: var(--muted);
    font-size: 11px;
    letter-spacing: .08em;
}

.visual-window {
    margin: 0 18px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 13px;
    background:
        linear-gradient(135deg, rgba(216,255,87,.09), transparent 45%),
        #08090b;
}

.visual-window img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: var(--subtle);
}

.visual-bottom {
    min-height: 96px;
}

.visual-bottom strong {
    color: white;
}

.circle-link {
    width: 49px;
    height: 49px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    transition: .2s ease;
}

.circle-link:hover {
    background: var(--text);
    color: var(--bg);
}

.live-dot {
    width: 6px;
    height: 6px;
    display: inline-block;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 4px rgba(134,232,155,.08);
}

/* ---------- PRINCIPLES ---------- */

.principles {
    border-block: 1px solid var(--line);
}

.principles .wrap {
    min-height: 74px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    align-items: center;
    gap: 24px;
    color: #898e98;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.principles span:not(:first-child) {
    border-left: 1px solid var(--line);
    padding-left: 24px;
}

/* ---------- SECTIONS ---------- */

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 55px;
}

.section-heading h2 {
    margin-bottom: 0;
}

.three-grid,
.two-grid,
.steps {
    display: grid;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

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

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

.three-grid article,
.two-grid > div,
.steps > div {
    background: var(--bg);
    padding: 38px;
}

.three-grid p,
.two-grid p,
.steps p {
    color: var(--muted);
}

.number {
    display: inline-block;
    margin-bottom: 90px;
    color: var(--accent);
    font-size: 12px;
    letter-spacing: .12em;
}

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

.steps > div > span {
    color: var(--subtle);
    font-size: 11px;
    letter-spacing: .1em;
}

.steps h3 {
    margin-top: 70px;
}

/* ---------- PRODUCTS ---------- */

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

.product-card,
.collection-note {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    overflow: hidden;
}

.product-card {
    transition:
        transform .25s var(--ease),
        border-color .25s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--line-strong);
}

.product-image {
    position: relative;
    min-height: 280px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 70% 30%, rgba(216,255,87,.12), transparent 30%),
        #0b0d10;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-monogram {
    font-size: clamp(70px,10vw,150px);
    font-weight: 800;
    color: rgba(255,255,255,.07);
}

.image-tag {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 7px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(10,11,13,.8);
    backdrop-filter: blur(10px);
    color: var(--muted);
    font-size: 10px;
    letter-spacing: .08em;
}

.card-content {
    padding: 27px;
}

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

.card-content h3 {
    margin: 0;
}

.card-content > p {
    min-height: 48px;
    margin-top: 18px;
    color: var(--muted);
}

.card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-top: 33px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.collection-note {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 42px;
    min-height: 440px;
    background:
        radial-gradient(circle at 85% 10%, rgba(216,255,87,.09), transparent 38%),
        var(--panel);
}

.collection-note p {
    max-width: 390px;
    color: var(--muted);
}

/* ---------- BADGES ---------- */

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
}

.badge i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--subtle);
}

.badge.online i,
.badge.active i,
.badge.fulfilled i,
.badge.paid i {
    background: var(--success);
}

.badge.maintenance i,
.badge.awaiting_payment i,
.badge.pending i {
    background: var(--warning);
}

.badge.offline i,
.badge.revoked i,
.badge.cancelled i {
    background: var(--danger);
}

/* ---------- PAGE HEAD ---------- */

.page-head {
    padding-top: 105px;
    padding-bottom: 62px;
}

.page-head h1 {
    max-width: 900px;
    margin-bottom: 24px;
}

.page-head > p {
    max-width: 650px;
    color: var(--muted);
    font-size: 19px;
}

/* ---------- PRODUCT DETAIL ---------- */

.product-detail {
    display: grid;
    grid-template-columns: minmax(0,1fr) 390px;
    gap: 70px;
    align-items: start;
    padding-bottom: 120px;
}

.detail-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
}

.prose {
    max-width: 800px;
    white-space: pre-line;
    color: #b4b8c0;
    font-size: 18px;
}

.feature-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.feature-list li {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    color: #b8bbc2;
}

.plan-panel {
    position: sticky;
    top: calc(var(--nav-height) + 24px);
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
}

.plan {
    margin: 25px 0;
    padding: 26px 0;
    border-block: 1px solid var(--line);
}

.price {
    margin: 20px 0;
    font-size: clamp(36px,4vw,54px);
    font-weight: 650;
    letter-spacing: -.05em;
}

.price small {
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
}

.plan p {
    color: var(--muted);
}

/* ---------- FORMS ---------- */

.form-panel {
    margin-bottom: 20px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
}

.form-panel label {
    display: grid;
    gap: 9px;
    margin-bottom: 18px;
    color: #c8cbd1;
    font-size: 13px;
    font-weight: 600;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-small);
    outline: none;
    background: #0b0d10;
    color: var(--text);
    padding: 13px 14px;
    transition: border .18s ease, box-shadow .18s ease;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
    border-color: rgba(216,255,87,.55);
    box-shadow: 0 0 0 3px rgba(216,255,87,.08);
}

input[type="checkbox"] {
    width: auto;
}

.alert {
    margin: 18px 0;
    padding: 15px 17px;
    border: 1px solid rgba(255,104,104,.25);
    border-radius: 11px;
    background: rgba(255,104,104,.07);
    color: #ffc6c6;
}

.specs {
    display: grid;
    grid-template-columns: 130px 1fr;
    margin: 24px 0;
}

.specs dt,
.specs dd {
    margin: 0;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
}

.specs dt {
    color: var(--muted);
    font-size: 13px;
}

.specs dd {
    text-align: right;
}

/* ---------- STATUS ---------- */

.status-strip {
    min-height: 130px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-block: 30px;
    border-block: 1px solid var(--line);
}

.status-strip h3 {
    margin: 0;
}

.status-strip > a {
    padding: 14px 20px;
    border: 1px solid var(--line);
    border-radius: 999px;
}

/* ---------- FAQ ---------- */

.faq-layout {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 10vw;
}

.faq details {
    border-top: 1px solid var(--line);
}

.faq details:last-child {
    border-bottom: 1px solid var(--line);
}

.faq summary {
    padding: 24px 0;
    cursor: pointer;
    font-weight: 600;
}

.faq details p {
    max-width: 670px;
    padding-bottom: 22px;
    color: var(--muted);
}

/* ---------- CLOSING ---------- */

.closing {
    padding-top: 140px;
    padding-bottom: 150px;
    text-align: center;
}

.closing h2 {
    margin-inline: auto;
    max-width: 850px;
}

/* ---------- WORKSPACE / DASHBOARD / ADMIN ---------- */

.workspace {
    display: grid;
    grid-template-columns: 220px minmax(0,1fr);
    gap: 60px;
    min-height: calc(100vh - var(--nav-height));
    padding-top: 54px;
    padding-bottom: 100px;
}

.sidebar {
    position: sticky;
    top: calc(var(--nav-height) + 35px);
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar a {
    padding: 10px 13px;
    border-radius: 9px;
    color: var(--muted);
    font-size: 14px;
}

.sidebar a:hover,
.sidebar a[aria-current="page"] {
    background: var(--panel);
    color: white;
}

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

.workspace-main > h1 {
    font-size: clamp(44px,5vw,76px);
}

.stats {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 12px;
    margin: 30px 0 50px;
}

.stats > div {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-small);
    background: var(--panel);
}

.stats span {
    display: block;
    margin-bottom: 25px;
    color: var(--muted);
    font-size: 12px;
}

.stats strong {
    font-size: 31px;
    letter-spacing: -.04em;
}

.activity {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    color: #c3c6cc;
}

/* ---------- TABLES ---------- */

.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius-small);
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 15px 17px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    white-space: nowrap;
}

th {
    color: var(--muted);
    font-size: 11px;
    letter-spacing: .07em;
    text-transform: uppercase;
}

td {
    font-size: 14px;
}

/* ---------- FOOTER ---------- */

.footer {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding-top: 65px;
    padding-bottom: 65px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 13px;
}

.footer > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer .brand {
    color: white;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 1050px) {
    .nav {
        grid-template-columns: 1fr auto;
    }

    .navlinks,
    .navright {
        display: none;
    }

    .mobile-nav {
        display: block;
        justify-self: end;
        position: relative;
    }

    .mobile-nav summary {
        cursor: pointer;
        list-style: none;
    }

    .mobile-nav > div {
        position: absolute;
        top: 40px;
        right: 0;
        width: 210px;
        display: grid;
        gap: 4px;
        padding: 10px;
        border: 1px solid var(--line);
        border-radius: 13px;
        background: #121419;
        box-shadow: 0 20px 60px rgba(0,0,0,.5);
    }

    .mobile-nav a {
        padding: 11px;
        border-radius: 8px;
    }

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

    .hero-caption {
        margin-top: 50px;
    }

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

    .plan-panel {
        position: static;
    }

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

    .sidebar {
        position: static;
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .sidebar .eyebrow {
        display: none;
    }
}

@media (max-width: 760px) {
    .wrap {
        width: min(calc(100% - 30px), var(--max));
    }

    .section {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    h1 {
        font-size: clamp(47px,16vw,72px);
    }

    h2 {
        font-size: clamp(36px,11vw,50px);
    }

    .hero {
        padding-top: 55px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .text-link {
        width: fit-content;
    }

    .hero-caption {
        display: none;
    }

    .principles .wrap {
        grid-template-columns: repeat(2,1fr);
        padding-block: 18px;
    }

    .principles span {
        padding: 8px !important;
        border: 0 !important;
    }

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

    .product-grid,
    .three-grid,
    .two-grid,
    .steps,
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .number {
        margin-bottom: 50px;
    }

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

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

    .status-strip {
        align-items: flex-start;
        flex-direction: column;
    }

    .form-panel {
        padding: 22px;
    }

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

    .specs dd {
        text-align: left;
        padding-top: 0;
    }
}


/* =========================================================
   FRONT V2 — AUTH / CHECKOUT / ORDERS / DASHBOARD
   ========================================================= */

.auth-layout {
    min-height: calc(100vh - var(--nav-height));
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 10vw;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 100px;
}

.auth-intro > p {
    color: var(--muted);
    font-size: 19px;
}

.auth-points {
    max-width: 560px;
    margin-top: 70px;
    border-top: 1px solid var(--line);
}

.auth-points > div {
    display: grid;
    grid-template-columns: 50px 1fr;
    align-items: center;
    min-height: 62px;
    border-bottom: 1px solid var(--line);
}

.auth-points span {
    color: var(--subtle);
    font-size: 11px;
}

.auth-points p {
    margin: 0;
    color: #c6c9ce;
}

.auth-card {
    padding: 38px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background:
        radial-gradient(circle at 100% 0, rgba(216,255,87,.05), transparent 35%),
        var(--panel);
    box-shadow: 0 30px 90px rgba(0,0,0,.25);
}

.auth-card h2 {
    font-size: 42px;
}

.auth-card-copy {
    margin-bottom: 30px;
}

.auth-card label {
    display: grid;
    gap: 9px;
    margin-bottom: 19px;
    font-size: 13px;
    font-weight: 600;
}

.auth-submit {
    margin-top: 8px;
}

.auth-switch {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    font-size: 13px;
}

.auth-switch a,
.inline-link {
    color: var(--text);
    text-decoration: underline;
    text-decoration-color: var(--line-strong);
    text-underline-offset: 4px;
}


/* Checkout */

.checkout-shell,
.order-shell {
    min-height: calc(100vh - var(--nav-height));
    display: grid;
    grid-template-columns: minmax(0,.78fr) minmax(480px,.72fr);
    gap: 8vw;
    align-items: start;
    padding-top: 100px;
    padding-bottom: 120px;
}

.checkout-heading,
.order-heading {
    position: sticky;
    top: calc(var(--nav-height) + 60px);
}

.checkout-heading > p,
.order-heading > p {
    max-width: 480px;
    color: var(--muted);
    font-size: 18px;
}

.checkout-card,
.order-card {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--panel);
    box-shadow: 0 35px 100px rgba(0,0,0,.22);
}

.checkout-product {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    padding-bottom: 28px;
}

.checkout-product h2 {
    margin-bottom: 8px;
    font-size: 34px;
}

.checkout-price {
    text-align: right;
    font-size: 41px;
    font-weight: 650;
    letter-spacing: -.05em;
}

.checkout-price small,
.checkout-price span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
}

.checkout-summary {
    margin: 0 0 30px;
    border-top: 1px solid var(--line);
}

.checkout-summary > div {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
}

.checkout-summary dt,
.checkout-summary dd {
    margin: 0;
}

.checkout-summary dt {
    color: var(--muted);
    font-size: 12px;
}

.checkout-summary dd {
    text-align: right;
    font-size: 13px;
}

.payment-section {
    padding-top: 15px;
}

.payment-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #0d0f12;
}

.payment-option-copy {
    display: grid;
    gap: 4px;
}

.payment-option-copy span {
    color: var(--muted);
    font-size: 12px;
}

.payment-divider {
    position: relative;
    display: grid;
    place-items: center;
    margin: 23px 0;
    color: var(--subtle);
    font-size: 11px;
}

.payment-divider::before {
    content: "";
    position: absolute;
    width: 100%;
    border-top: 1px solid var(--line);
}

.payment-divider span {
    position: relative;
    padding: 0 12px;
    background: var(--panel);
}

.gift-card-box {
    padding: 21px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #0d0f12;
}

.gift-card-box label {
    display: grid;
    gap: 8px;
    margin: 20px 0;
    font-size: 12px;
}

.checkout-note {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 12px;
}

.checkout-note span {
    color: var(--success);
}

.checkout-note p {
    margin: 0;
}


/* Order */

.order-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 28px;
}

.order-card-top h2 {
    margin: 8px 0 0;
    font-size: 37px;
}

.order-success {
    display: flex;
    gap: 18px;
    margin: 28px 0;
    padding: 20px;
    border: 1px solid rgba(134,232,155,.16);
    border-radius: 14px;
    background: rgba(134,232,155,.05);
}

.order-success-mark {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--success);
    color: #08100a;
    font-weight: 900;
}

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

.order-waiting {
    margin: 28px 0 20px;
    padding: 17px;
    border-radius: 12px;
    background: rgba(255,209,102,.06);
    color: #d6c28e;
    font-size: 13px;
}

.order-back {
    display: block;
    margin-top: 20px;
    text-align: center;
    color: var(--muted);
    font-size: 13px;
}


/* Dashboard */

.workspace-head {
    margin-bottom: 45px;
}

.workspace-head > p {
    max-width: 650px;
    color: var(--muted);
    font-size: 17px;
}

.sidebar-bottom {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.text-button {
    padding: 10px 13px;
    border: 0;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
}

.text-button:hover {
    color: white;
}

.dashboard-section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin: 65px 0 20px;
}

.dashboard-section-head h2 {
    margin: 0;
    font-size: 38px;
}

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

.dashboard-product {
    padding: 29px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background:
        radial-gradient(circle at 90% 0, rgba(216,255,87,.055), transparent 35%),
        var(--panel);
}

.dashboard-product h2 {
    margin: 38px 0 10px;
    font-size: 36px;
}

.dashboard-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-top: 50px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.empty {
    padding: 55px;
    border: 1px dashed var(--line-strong);
    border-radius: var(--radius);
    background: rgba(255,255,255,.015);
}

.empty p {
    color: var(--muted);
}

.table-link:hover {
    color: var(--accent);
}

.table-sub {
    display: block;
    margin-top: 3px;
    color: var(--muted);
}

.license-key {
    max-width: 340px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.downloads-grid {
    display: grid;
    gap: 18px;
}

.download-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
}

.download-card h2 {
    margin-bottom: 8px;
    font-size: 34px;
}

.download-card p {
    color: var(--muted);
}

.download-hash {
    grid-column: 1 / -1;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    display: grid;
    gap: 7px;
}

.download-hash span {
    color: var(--subtle);
    font-size: 10px;
    letter-spacing: .1em;
}

.download-hash code {
    overflow-wrap: anywhere;
    color: var(--muted);
    font-size: 11px;
}

.account-card {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 35px;
    padding: 35px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
}

.account-avatar {
    width: 90px;
    height: 90px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--text);
    color: var(--bg);
    font-size: 32px;
    font-weight: 800;
}

.account-main h2 {
    font-size: 38px;
}


@media (max-width: 950px) {
    .auth-layout,
    .checkout-shell,
    .order-shell {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .checkout-heading,
    .order-heading {
        position: static;
    }

    .auth-intro h1,
    .checkout-heading h1,
    .order-heading h1 {
        max-width: 650px;
    }

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


@media (max-width: 650px) {
    .auth-layout,
    .checkout-shell,
    .order-shell {
        padding-top: 55px;
        padding-bottom: 75px;
    }

    .auth-points {
        margin-top: 45px;
    }

    .auth-card,
    .checkout-card,
    .order-card {
        padding: 22px;
        border-radius: 17px;
    }

    .checkout-product {
        align-items: flex-start;
        flex-direction: column;
    }

    .checkout-price {
        text-align: left;
    }

    .payment-option {
        align-items: stretch;
        flex-direction: column;
    }

    .payment-option .button {
        width: 100%;
    }

    .checkout-summary > div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .checkout-summary dd {
        text-align: left;
    }

    .dashboard-section-head {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .download-hash {
        grid-column: auto;
    }

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

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

/* === QWARRS ADMIN V2 START === */

.admin-workspace {
    grid-template-columns: 205px minmax(0,1fr);
    gap: 48px;
}

.admin-sidebar {
    padding-top: 4px;
}

.admin-sidebar-brand {
    display: grid;
    gap: 4px;
    margin-bottom: 28px;
    padding: 0 13px;
}

.admin-sidebar-brand strong {
    font-size: 20px;
    letter-spacing: -.035em;
}

.admin-nav {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.admin-nav-label {
    margin: 22px 13px 6px;
    color: var(--subtle);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.admin-nav-label:first-child {
    margin-top: 0;
}

.admin-page-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 42px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
}

.admin-page-head h1 {
    margin: 7px 0 0;
    font-size: clamp(42px,5vw,68px);
    line-height: .98;
}

.admin-environment {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 34px;
    padding: 0 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--panel);
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
}

.admin-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 16px rgba(216,255,87,.3);
}

.admin-kpis {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 12px;
    margin-bottom: 42px;
}

.admin-kpi {
    min-width: 0;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.018),
            transparent
        ),
        var(--panel);
}

.admin-kpi > span {
    display: block;
    margin-bottom: 22px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 650;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.admin-kpi strong {
    display: block;
    font-size: 34px;
    letter-spacing: -.045em;
}

.admin-kpi small {
    display: block;
    margin-top: 5px;
    color: var(--subtle);
    font-size: 11px;
}

.admin-overview-grid,
.admin-two-column {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 20px;
}

.admin-card {
    padding: 27px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
}

.admin-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.admin-card-head h2 {
    margin: 7px 0 0;
    font-size: 28px;
}

.admin-revenue-list {
    display: grid;
}

.admin-revenue-list > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 0;
    border-top: 1px solid var(--line);
}

.admin-revenue-list span {
    color: var(--muted);
    font-size: 12px;
}

.admin-revenue-list strong {
    font-size: 24px;
}

.admin-definition-list {
    margin: 0;
}

.admin-definition-list > div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 0;
    border-top: 1px solid var(--line);
}

.admin-definition-list dt {
    color: var(--muted);
}

.admin-definition-list dd {
    margin: 0;
    text-align: right;
}

.admin-section-intro {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin: 0 0 20px;
}

.admin-section-intro h2 {
    margin: 0;
    font-size: 31px;
    letter-spacing: -.035em;
}

.admin-section-intro p {
    max-width: 620px;
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.admin-section-spaced {
    margin-top: 52px;
}

.admin-editor-list {
    display: grid;
    gap: 10px;
    margin-bottom: 28px;
}

.admin-editor {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--panel);
}

.admin-editor[open] {
    border-color: var(--line-strong);
}

.admin-editor > summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 20px 22px;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.admin-editor > summary::-webkit-details-marker {
    display: none;
}

.admin-editor > summary::after {
    content: "+";
    margin-left: auto;
    color: var(--muted);
    font-size: 20px;
}

.admin-editor[open] > summary::after {
    content: "−";
}

.admin-editor-title {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.admin-editor-title strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-editor-title span {
    color: var(--muted);
    font-size: 11px;
}

.admin-editor-meta {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-left: auto;
}

.admin-editor-body {
    padding: 26px;
    border-top: 1px solid var(--line);
}

.admin-create {
    margin-top: 30px;
    border-style: dashed;
}

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

.admin-switch-row {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 8px;
}

.admin-check {
    display: inline-flex !important;
    grid-template-columns: none !important;
    align-items: center;
    gap: 9px !important;
    margin: 0 !important;
    cursor: pointer;
}

.admin-form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.admin-badge {
    display: inline-flex;
    align-items: center;
    min-height: 25px;
    padding: 0 9px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    background: rgba(255,255,255,.025);
    color: #c8cbd1;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .035em;
    text-transform: uppercase;
    white-space: nowrap;
}

.admin-badge.is-active,
.admin-badge.is-online,
.admin-badge.is-paid,
.admin-badge.is-fulfilled {
    border-color: rgba(216,255,87,.23);
    background: rgba(216,255,87,.07);
    color: var(--accent);
}

.admin-badge.is-inactive,
.admin-badge.is-offline,
.admin-badge.is-revoked,
.admin-badge.is-expired {
    opacity: .66;
}

.admin-badge.is-maintenance,
.admin-badge.is-suspended,
.admin-badge.is-awaiting_payment,
.admin-badge.is-pending {
    border-color: rgba(255,216,118,.2);
    background: rgba(255,216,118,.055);
    color: #d6c28e;
}

.admin-table-wrap {
    background: var(--panel);
}

.admin-table-wrap table {
    min-width: 720px;
}

.admin-table-wrap tbody tr:last-child td {
    border-bottom: 0;
}

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

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

.admin-table-wrap td {
    vertical-align: middle;
}

.admin-actions-column {
    width: 1%;
}

.admin-inline-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.admin-inline-actions form {
    margin: 0;
}

.admin-code {
    display: block;
    max-width: 230px;
    overflow: hidden;
    color: var(--muted);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-compact-form {
    margin: 0;
}

.admin-release-layout {
    align-items: start;
}

.admin-secret-card {
    margin-bottom: 34px;
    padding: 28px;
    border: 1px solid rgba(216,255,87,.3);
    border-radius: var(--radius);
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(216,255,87,.09),
            transparent 42%
        ),
        var(--panel);
}

.admin-secret-card h2 {
    margin: 7px 0;
    font-size: 29px;
}

.admin-secret-card p {
    color: var(--muted);
}

.admin-secret-card code {
    display: block;
    margin: 22px 0 12px;
    padding: 17px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #0b0d10;
    overflow-wrap: anywhere;
}

.admin-secret-card small {
    color: var(--muted);
}

.admin-activity-list {
    border-top: 1px solid var(--line);
}

.admin-activity-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
}

.admin-activity-row > div {
    display: grid;
    gap: 4px;
}

.admin-activity-row > div:last-child {
    text-align: right;
}

.admin-activity-row span,
.admin-activity-row time {
    color: var(--muted);
    font-size: 11px;
}

.admin-empty-small {
    padding: 25px 0;
    color: var(--muted);
    font-size: 13px;
}

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

.admin-setting-card {
    min-width: 0;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--panel);
}

.admin-setting-card span {
    display: block;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.admin-setting-card strong {
    display: block;
    overflow-wrap: anywhere;
    font-size: 16px;
}

@media (max-width: 1100px) {

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

    .admin-two-column,
    .admin-overview-grid {
        grid-template-columns: 1fr;
    }

    .admin-settings-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {

    .admin-workspace {
        gap: 30px;
    }

    .admin-sidebar-brand,
    .admin-nav-label,
    .admin-sidebar .sidebar-bottom {
        display: none;
    }

    .admin-sidebar {
        gap: 5px;
    }

    .admin-nav {
        display: flex;
        flex-direction: row;
        gap: 4px;
        min-width: max-content;
    }

    .admin-page-head {
        margin-top: 12px;
    }
}

@media (max-width: 760px) {

    .admin-page-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-page-head h1 {
        font-size: 46px;
    }

    .admin-kpis {
        grid-template-columns: 1fr;
    }

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

    .admin-editor > summary {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .admin-editor-meta {
        order: 3;
        width: 100%;
        margin-left: 0;
    }

    .admin-editor > summary::after {
        position: absolute;
        right: 22px;
    }

    .admin-inline-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-activity-row {
        flex-direction: column;
        gap: 10px;
    }

    .admin-activity-row > div:last-child {
        text-align: left;
    }
}

/* === QWARRS ADMIN V2 END === */

/* === QWARRS ADMIN UI TUNING START === */

.admin-table-wrap .table-sub {
    display: block;
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-table-wrap .admin-code {
    max-width: 165px;
}

.admin-table-wrap td {
    max-width: 250px;
}

.admin-table-wrap form {
    margin: 0;
}

.admin-editor-list + .admin-create {
    margin-top: 18px;
}

.admin-create > summary {
    background: rgba(255,255,255,.012);
}

/* Desktop: éviter un scroll horizontal inutile */
@media (min-width: 1000px) {

    .admin-table-wrap table {
        min-width: 0;
    }
}

/* === QWARRS ADMIN UI TUNING END === */

/* === QWARRS FRONT V3 START === */

.storefront-v3 {
    --v3-black: #070807;
    --v3-panel: #0c0e0d;
    --v3-panel-2: #111311;
    --v3-line: rgba(255,255,255,.12);
    --v3-line-soft: rgba(255,255,255,.075);
    --v3-green: #d8ff57;
    --v3-white: #f4f5ef;
    --v3-muted: #8e938b;

    background:
        linear-gradient(
            rgba(255,255,255,.015) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.015) 1px,
            transparent 1px
        ),
        var(--v3-black);

    background-size:
        72px 72px;

    color: var(--v3-white);
}

.storefront-v3::before {
    content: "";
    position: fixed;
    z-index: -1;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(
            circle at 75% 2%,
            rgba(216,255,87,.07),
            transparent 24%
        );
}


/* NAV */

.storefront-v3 .top {
    border-color: var(--v3-line);
    background: rgba(7,8,7,.86);
}

.storefront-v3 .nav {
    min-height: 72px;
}

.storefront-v3 .brand {
    font-family:
        "Bahnschrift Condensed",
        "Arial Narrow",
        "Segoe UI",
        sans-serif;

    font-size: 21px;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.storefront-v3 .mark {
    border-radius: 2px;
    background: var(--v3-green);
    color: #080a06;
}

.storefront-v3 .navlinks a,
.storefront-v3 .navright > a:not(.button) {
    font-family:
        "Bahnschrift",
        "Segoe UI",
        sans-serif;

    color: #a2a69f;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.storefront-v3 .navlinks a:hover,
.storefront-v3 .navright > a:hover {
    color: var(--v3-green);
}


/* BUTTONS */

.storefront-v3 .button {
    min-height: 46px;
    padding: 0 19px;
    border-radius: 3px;

    background: var(--v3-green);
    color: #0a0b08;

    font-family:
        "Bahnschrift",
        "Segoe UI",
        sans-serif;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: .075em;
    text-transform: uppercase;
}

.storefront-v3 .button:hover {
    background: #ecff9b;
    transform: translateY(-2px);
}


/* COMMON TYPE */

.storefront-v3 h1,
.storefront-v3 h2,
.storefront-v3 h3 {
    font-family:
        "Bahnschrift Condensed",
        "Arial Narrow",
        "Segoe UI",
        sans-serif;

    font-stretch: condensed;
    text-transform: uppercase;
}

.storefront-v3 h1,
.storefront-v3 h2 {
    font-weight: 750;
    letter-spacing: -.018em;
}

.storefront-v3 h3 {
    letter-spacing: -.01em;
}

.v3-overline {
    color: var(--v3-muted);
    font-family:
        "Cascadia Code",
        Consolas,
        monospace;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.v3-section-index {
    display: flex;
    align-items: center;
    gap: 17px;

    color: #747a72;

    font-family:
        "Cascadia Code",
        Consolas,
        monospace;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.v3-section-index > :first-child {
    color: var(--v3-green);
}

.v3-section-index > :first-child::after {
    content: " —";
    color: #5e635d;
}


/* HERO */

.v3-hero {
    min-height: calc(100vh - 72px);

    display: grid;
    grid-template-columns:
        minmax(0,.88fr)
        minmax(520px,1.12fr);

    gap: clamp(50px,7vw,110px);
    align-items: center;

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

.v3-hero-copy h1 {
    margin: 34px 0 26px;

    font-size:
        clamp(76px,8.2vw,136px);

    line-height: .78;
}

.v3-hero-copy h1 span {
    color: transparent;
    -webkit-text-stroke:
        1px rgba(244,245,239,.38);
}

.v3-hero-lead {
    max-width: 550px;
    margin-bottom: 35px;

    color: #9da29a;

    font-size:
        clamp(17px,1.5vw,21px);

    line-height: 1.5;
}

.v3-hero-actions {
    display: flex;
    align-items: center;
    gap: 27px;
}

.v3-ghost-link,
.v3-arrow-link {
    display: inline-flex;
    align-items: center;
    width: fit-content;

    border-bottom:
        1px solid var(--v3-line);

    padding-bottom: 4px;

    color: #c5c8c1;

    font-size: 12px;
    font-weight: 650;
}

.v3-ghost-link:hover,
.v3-arrow-link:hover {
    border-color: var(--v3-green);
    color: var(--v3-green);
}

.v3-hero-metrics {
    display: grid;
    grid-template-columns:
        repeat(3,1fr);

    margin-top: 75px;
    border-top:
        1px solid var(--v3-line);
}

.v3-hero-metrics > div {
    display: grid;
    gap: 4px;

    padding: 18px 18px 0 0;
}

.v3-hero-metrics > div:not(:first-child) {
    padding-left: 20px;
    border-left:
        1px solid var(--v3-line);
}

.v3-hero-metrics strong {
    color: var(--v3-white);
    font-size: 15px;
}

.v3-hero-metrics span {
    color: #6f746d;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}


/* HERO STAGE */

.v3-hero-stage {
    overflow: hidden;

    border:
        1px solid var(--v3-line);

    background: #090b09;

    box-shadow:
        0 50px 150px rgba(0,0,0,.4);
}

.v3-stage-top,
.v3-stage-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    min-height: 58px;

    padding: 0 20px;

    color: #737871;

    font-family:
        "Cascadia Code",
        Consolas,
        monospace;

    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.v3-stage-media {
    display: block;
    margin: 0 14px;

    aspect-ratio: 16 / 10;

    overflow: hidden;

    border:
        1px solid var(--v3-line);
}

.v3-stage-media > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v3-stage-art {
    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 74% 20%,
            rgba(216,255,87,.16),
            transparent 23%
        ),
        linear-gradient(
            135deg,
            #10140d,
            #080a08 48%,
            #10110f
        );
}

.v3-stage-art::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            rgba(216,255,87,.055) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(216,255,87,.055) 1px,
            transparent 1px
        );

    background-size:
        42px 42px;
}

.v3-stage-word {
    position: absolute;
    right: 4%;
    bottom: -11%;

    color:
        rgba(255,255,255,.045);

    font-family:
        "Bahnschrift Condensed",
        "Arial Narrow",
        sans-serif;

    font-size:
        clamp(240px,27vw,490px);

    font-weight: 900;
    line-height: .8;
}

.v3-stage-coordinate {
    position: absolute;
    left: 24px;
    bottom: 22px;

    color: rgba(216,255,87,.62);

    font-family:
        "Cascadia Code",
        Consolas,
        monospace;

    font-size: 9px;
    letter-spacing: .12em;
}

.v3-stage-cross {
    position: absolute;
    z-index: 2;

    width: 42px;
    height: 42px;
}

.v3-stage-cross::before,
.v3-stage-cross::after {
    content: "";

    position: absolute;

    background:
        rgba(216,255,87,.8);
}

.v3-stage-cross::before {
    top: 20px;
    left: 0;

    width: 42px;
    height: 1px;
}

.v3-stage-cross::after {
    top: 0;
    left: 20px;

    width: 1px;
    height: 42px;
}

.cross-a {
    top: 20%;
    left: 19%;
}

.cross-b {
    top: 45%;
    right: 22%;

    transform:
        scale(.55);
}

.v3-stage-bottom {
    min-height: 82px;
}

.v3-stage-bottom > div {
    display: grid;
    gap: 5px;
}

.v3-stage-bottom strong {
    max-width: 400px;

    overflow: hidden;

    color: #d3d6cf;

    font-family:
        "Segoe UI",
        sans-serif;

    font-size: 12px;
    font-weight: 500;
    letter-spacing: normal;
    text-transform: none;

    text-overflow: ellipsis;
    white-space: nowrap;
}

.v3-circle {
    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    flex: 0 0 auto;

    border:
        1px solid var(--v3-line);

    color: var(--v3-green);
}


/* TRUST STRIP */

.v3-trust-strip {
    border-block:
        1px solid var(--v3-line);

    background:
        rgba(255,255,255,.012);
}

.v3-trust-strip .wrap {
    display: grid;
    grid-template-columns:
        repeat(4,1fr);

    min-height: 72px;
}

.v3-trust-strip span {
    display: flex;
    align-items: center;

    color: #7f847d;

    font-size: 10px;
    font-weight: 750;
    letter-spacing: .1em;

    text-transform: uppercase;
}

.v3-trust-strip span:not(:first-child) {
    padding-left: 25px;

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


/* SECTIONS */

.v3-section {
    padding-top: 125px;
    padding-bottom: 125px;

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

.v3-section-title {
    display: grid;
    grid-template-columns:
        minmax(0,1.5fr)
        minmax(260px,.5fr);

    align-items: end;
    gap: 60px;

    margin: 34px 0 65px;
}

.v3-section-title h1,
.v3-section-title h2 {
    margin: 0;

    font-size:
        clamp(66px,8vw,120px);

    line-height: .82;
}

.v3-section-title p {
    max-width: 440px;
    margin: 0 0 20px;

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


/* PRODUCT CARDS */

.v3-home-products,
.v3-catalog-grid {
    display: grid;
    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap: 20px;
}

.v3-product-card {
    min-width: 0;

    border:
        1px solid var(--v3-line);

    background:
        var(--v3-panel);

    transition:
        border-color .2s ease,
        transform .25s ease;
}

.v3-product-card:hover {
    border-color:
        rgba(216,255,87,.32);

    transform:
        translateY(-4px);
}

.v3-product-media {
    position: relative;

    display: block;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    border-bottom:
        1px solid var(--v3-line);

    background:
        #090b09;
}

.v3-product-media > img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .5s ease;
}

.v3-product-card:hover
.v3-product-media > img {
    transform:
        scale(1.025);
}

.v3-product-placeholder {
    position: relative;

    width: 100%;
    height: 100%;

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

    padding: 34px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 78% 20%,
            rgba(216,255,87,.14),
            transparent 27%
        ),
        linear-gradient(
            145deg,
            #11150e,
            #090b09
        );
}

.v3-product-placeholder::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        repeating-linear-gradient(
            90deg,
            transparent 0 61px,
            rgba(255,255,255,.025) 61px 62px
        );
}

.v3-product-placeholder span,
.v3-product-placeholder strong,
.v3-product-placeholder small {
    position: relative;
    z-index: 1;
}

.v3-product-placeholder span {
    margin-bottom: auto;

    color:
        rgba(216,255,87,.6);

    font-family:
        "Cascadia Code",
        monospace;

    font-size: 10px;
    letter-spacing: .14em;
}

.v3-product-placeholder strong {
    font-family:
        "Bahnschrift Condensed",
        "Arial Narrow",
        sans-serif;

    font-size:
        clamp(48px,5vw,80px);

    line-height: .85;

    text-transform: uppercase;
}

.v3-product-placeholder small {
    margin-top: 12px;

    color: #71776e;

    font-size: 9px;
    letter-spacing: .13em;
}

.v3-media-top {
    position: absolute;
    z-index: 2;

    top: 15px;
    left: 15px;
    right: 15px;

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

    color: #8c9189;

    font-family:
        "Cascadia Code",
        monospace;

    font-size: 9px;
    letter-spacing: .08em;
}

.v3-media-top .badge {
    padding: 6px 9px;

    border:
        1px solid rgba(255,255,255,.12);

    background:
        rgba(5,6,5,.66);

    backdrop-filter:
        blur(9px);
}

.v3-media-arrow {
    position: absolute;
    z-index: 2;

    right: 18px;
    bottom: 18px;

    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(255,255,255,.17);

    background:
        rgba(6,7,6,.58);

    color:
        var(--v3-green);
}

.v3-product-body {
    padding: 28px;
}

.v3-product-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 25px;
}

.v3-product-heading h3 {
    margin: 6px 0 0;

    font-size:
        clamp(35px,3.2vw,49px);

    line-height: .9;
}

.v3-card-price {
    display: grid;

    flex: 0 0 auto;

    text-align: right;
}

.v3-card-price span {
    color: #6e746b;

    font-size: 8px;
    font-weight: 700;
    letter-spacing: .12em;
}

.v3-card-price strong {
    margin-top: 4px;

    color:
        var(--v3-green);

    font-size: 16px;
}

.v3-product-body > p {
    max-width: 520px;
    min-height: 48px;

    margin: 25px 0 32px;

    color: #898f86;
}

.v3-product-foot {
    display: flex;
    justify-content: space-between;
    gap: 20px;

    padding-top: 18px;

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

.v3-product-foot > span {
    color: #686e66;

    font-family:
        "Cascadia Code",
        monospace;

    font-size: 9px;
    letter-spacing: .08em;
}

.v3-product-foot a {
    color: #c8cbc4;

    font-size: 11px;
    font-weight: 700;
}

.v3-product-foot a:hover {
    color:
        var(--v3-green);
}


/* PROCESS */

.v3-process-grid {
    display: grid;
    grid-template-columns:
        repeat(4,1fr);

    border-block:
        1px solid var(--v3-line);
}

.v3-process-grid article {
    min-height: 310px;

    padding: 28px;

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

.v3-process-grid article:first-child {
    border-left:
        1px solid var(--v3-line);
}

.v3-process-grid article > span {
    color:
        var(--v3-green);

    font-family:
        "Cascadia Code",
        monospace;

    font-size: 10px;
}

.v3-process-grid h3 {
    margin: 110px 0 15px;

    font-size: 32px;
}

.v3-process-grid p {
    color:
        var(--v3-muted);

    font-size: 13px;
}


/* VALUES */

.v3-values {
    display: grid;
    grid-template-columns:
        repeat(2,1fr);

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

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

.v3-values article {
    padding: 40px;

    border-right:
        1px solid var(--v3-line);

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

.v3-values article > span {
    color:
        #70766d;

    font-family:
        "Cascadia Code",
        monospace;

    font-size: 9px;
    letter-spacing: .1em;
}

.v3-values h3 {
    margin: 50px 0 15px;

    font-size: 38px;
}

.v3-values p {
    max-width: 470px;

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


/* STATUS */

.v3-status-list {
    border-top:
        1px solid var(--v3-line);
}

.v3-status-list > a {
    display: grid;

    grid-template-columns:
        100px
        minmax(180px,1fr)
        minmax(160px,.5fr)
        auto;

    align-items: center;
    gap: 25px;

    min-height: 80px;

    border-bottom:
        1px solid var(--v3-line);

    transition:
        padding .2s ease,
        color .2s ease;
}

.v3-status-list > a:hover {
    padding-left: 12px;
    color:
        var(--v3-green);
}

.v3-status-id {
    color: #656b63;

    font-family:
        "Cascadia Code",
        monospace;

    font-size: 9px;
}

.v3-status-list > a > span:not(.badge) {
    color: #777d74;

    font-size: 11px;
}


/* SUPPORT */

.v3-support-band {
    padding: 125px 0;

    border-bottom:
        1px solid var(--v3-line);

    background:
        linear-gradient(
            100deg,
            rgba(216,255,87,.055),
            transparent 35%
        ),
        #090b09;
}

.v3-support-copy {
    display: grid;
    grid-template-columns:
        1.3fr .7fr;

    align-items: end;
    gap: 80px;

    margin-top: 35px;
}

.v3-support-copy h2 {
    margin: 0;

    font-size:
        clamp(78px,10vw,155px);

    line-height: .78;
}

.v3-support-copy p {
    max-width: 390px;
    margin-bottom: 28px;

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


/* PRODUCTS PAGE */

.v3-page-hero {
    padding-top: 105px;
    padding-bottom: 80px;

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

.v3-page-hero .v3-section-title {
    margin-bottom: 0;
}

.v3-page-hero h1 {
    font-size:
        clamp(84px,10vw,150px);

    line-height: .75;
}

.v3-catalog {
    padding-top: 45px;
    padding-bottom: 130px;
}

.v3-catalog-head {
    display: flex;
    justify-content: space-between;

    margin-bottom: 24px;

    color:
        #686e66;

    font-family:
        "Cascadia Code",
        monospace;

    font-size: 9px;
    letter-spacing: .1em;
}

.v3-empty {
    padding: 55px;

    border:
        1px solid var(--v3-line);

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


/* PRODUCT DETAIL */

.v3-product-hero {
    padding-top: 75px;
    padding-bottom: 110px;
}

.v3-product-layout {
    display: grid;
    grid-template-columns:
        minmax(0,1.25fr)
        minmax(360px,.75fr);

    gap: 55px;

    align-items: start;

    margin-top: 32px;
}

.v3-product-showcase {
    border:
        1px solid var(--v3-line);

    background:
        var(--v3-panel);
}

.v3-showcase-meta,
.v3-showcase-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;

    min-height: 52px;

    padding: 0 17px;

    color:
        #6d736a;

    font-family:
        "Cascadia Code",
        monospace;

    font-size: 9px;
    letter-spacing: .09em;
}

.v3-product-main-image {
    margin: 0 13px;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    border:
        1px solid var(--v3-line);
}

.v3-product-main-image > img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.v3-detail-placeholder {
    min-height: 100%;
}

.v3-showcase-bottom {
    min-height: 76px;

    gap: 24px;
}

.v3-showcase-bottom > span {
    display: grid;
    gap: 4px;
}

.v3-showcase-bottom strong {
    color:
        #d5d7d2;

    font-family:
        "Segoe UI",
        sans-serif;

    font-size: 11px;
    letter-spacing: normal;
}

.v3-buy-panel {
    position: sticky;
    top: calc(var(--nav-height) + 22px);

    display: grid;
    gap: 32px;

    padding: 31px;

    border:
        1px solid var(--v3-line);

    background:
        var(--v3-panel);
}

.v3-buy-panel h1 {
    margin: 14px 0 18px;

    font-size:
        clamp(58px,6vw,92px);

    line-height: .82;
}

.v3-buy-panel > div:first-child > p {
    color:
        var(--v3-muted);

    font-size: 15px;
}

.v3-buy-plans {
    display: grid;
    gap: 12px;

    padding-top: 25px;

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

.v3-buy-plan {
    display: grid;
    grid-template-columns:
        1fr auto;

    align-items: center;
    gap: 16px;

    padding: 17px;

    border:
        1px solid var(--v3-line);

    background:
        #090b09;
}

.v3-buy-plan > div:first-child {
    display: grid;
    gap: 4px;
}

.v3-buy-plan > div:first-child span {
    color:
        #747a71;

    font-size: 10px;
}

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

.v3-plan-price strong {
    color:
        var(--v3-green);

    font-size: 22px;
}

.v3-plan-price span {
    color:
        #747a71;

    font-size: 9px;
}

.v3-buy-plan .button {
    grid-column: 1 / -1;
}

.v3-unavailable {
    grid-column: 1 / -1;

    padding: 12px;

    border:
        1px solid rgba(255,209,102,.2);

    color:
        #d7c794;

    font-size: 11px;
}


/* PRODUCT DESCRIPTION */

.v3-product-description {
    display: grid;
    grid-template-columns:
        1fr 1fr;

    gap: 70px;

    margin-top: 38px;
}

.v3-product-description h2 {
    margin: 0;

    font-size:
        clamp(65px,8vw,118px);

    line-height: .82;
}

.v3-product-description p {
    margin: 6px 0 0;

    color:
        #a1a69d;

    font-size: 17px;
    line-height: 1.75;

    white-space:
        pre-line;
}


/* FEATURES */

.v3-feature-grid {
    display: grid;
    grid-template-columns:
        repeat(2,1fr);

    border-left:
        1px solid var(--v3-line);

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

.v3-feature-grid article {
    min-height: 180px;

    padding: 27px;

    border-right:
        1px solid var(--v3-line);

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

.v3-feature-grid article > span {
    color:
        var(--v3-green);

    font-family:
        "Cascadia Code",
        monospace;

    font-size: 9px;
}

.v3-feature-grid h3 {
    margin-top: 65px;
    margin-bottom: 0;

    font-size: 31px;
}


/* COMPATIBILITY */

.v3-compatibility-list {
    border-top:
        1px solid var(--v3-line);
}

.v3-compatibility-list > div {
    display: grid;
    grid-template-columns:
        100px 1fr;

    align-items: center;

    min-height: 70px;

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

.v3-compatibility-list span {
    color:
        #676d65;

    font-family:
        "Cascadia Code",
        monospace;

    font-size: 9px;
}

.v3-compatibility-list strong {
    font-size: 15px;
    font-weight: 600;
}


/* PRODUCT FINAL */

.v3-product-final {
    padding: 130px 0;

    background:
        radial-gradient(
            circle at 70% 30%,
            rgba(216,255,87,.08),
            transparent 30%
        ),
        #090b09;
}

.v3-product-final h2 {
    margin: 25px 0 45px;

    font-size:
        clamp(88px,11vw,165px);

    line-height: .75;
}


/* FOOTER */

.storefront-v3 .footer {
    border-top: 0;

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

.storefront-v3 .footer p {
    color:
        #686e66;
}


/* RESPONSIVE */

@media (max-width: 1080px) {

    .v3-hero {
        grid-template-columns: 1fr;
    }

    .v3-hero-stage {
        max-width: 820px;
    }

    .v3-section-title,
    .v3-support-copy,
    .v3-product-description {
        grid-template-columns: 1fr;
    }

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

    .v3-buy-panel {
        position: static;
    }

    .v3-process-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

    .v3-process-grid article:nth-child(3) {
        border-left:
            1px solid var(--v3-line);
    }

    .v3-home-products,
    .v3-catalog-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 760px) {

    .v3-hero {
        min-height: auto;

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

    .v3-hero-copy h1 {
        font-size:
            clamp(65px,20vw,98px);
    }

    .v3-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .v3-hero-actions .button {
        width: 100%;
    }

    .v3-hero-metrics {
        grid-template-columns: 1fr;
    }

    .v3-hero-metrics > div {
        padding: 15px 0;
    }

    .v3-hero-metrics > div:not(:first-child) {
        padding-left: 0;

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

    .v3-stage-top {
        align-items: flex-start;
        flex-direction: column;

        padding-block: 14px;
    }

    .v3-stage-bottom strong {
        max-width: 220px;
    }

    .v3-trust-strip .wrap {
        grid-template-columns:
            repeat(2,1fr);
    }

    .v3-trust-strip span {
        min-height: 58px;
    }

    .v3-trust-strip span:nth-child(3) {
        border-left: 0;
    }

    .v3-section {
        padding-top: 85px;
        padding-bottom: 85px;
    }

    .v3-section-title {
        margin-bottom: 45px;
        gap: 28px;
    }

    .v3-section-title h1,
    .v3-section-title h2 {
        font-size:
            clamp(61px,19vw,90px);
    }

    .v3-process-grid,
    .v3-values,
    .v3-feature-grid {
        grid-template-columns: 1fr;
    }

    .v3-process-grid article {
        min-height: 230px;

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

    .v3-process-grid h3 {
        margin-top: 65px;
    }

    .v3-status-list > a {
        grid-template-columns:
            70px 1fr auto;
    }

    .v3-status-list > a > span:nth-child(3) {
        display: none;
    }

    .v3-support-copy h2 {
        font-size:
            clamp(70px,22vw,105px);
    }

    .v3-page-hero {
        padding-top: 75px;
    }

    .v3-page-hero h1 {
        font-size:
            clamp(70px,22vw,110px);
    }

    .v3-product-layout {
        margin-top: 25px;
    }

    .v3-buy-panel {
        padding: 23px;
    }

    .v3-buy-panel h1 {
        font-size:
            clamp(55px,19vw,85px);
    }

    .v3-product-description h2 {
        font-size:
            clamp(63px,20vw,95px);
    }

    .v3-product-final h2 {
        font-size:
            clamp(75px,22vw,110px);
    }

    .v3-showcase-bottom {
        align-items: flex-start;
        flex-direction: column;

        padding-block: 17px;
    }
}

/* === QWARRS FRONT V3 END === */
