:root {
    --bg: #090d12;
    --bg-soft: #101720;
    --panel: rgba(18, 25, 34, .9);
    --panel-strong: #131c25;
    --line: rgba(216, 184, 119, .17);
    --line-light: rgba(255, 255, 255, .09);
    --gold: #d6ac59;
    --gold-light: #f0d28f;
    --copper: #8d5433;
    --red: #a83d32;
    --text: #f2eee7;
    --muted: #9da6ae;
    --green: #80bc75;
    --shadow: 0 25px 70px rgba(0, 0, 0, .35);
    --radius: 6px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--bg);
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
}

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

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

h1,
h2,
h3,
.brand,
.eyebrow {
    font-family: "Times New Roman", Cambria, serif;
}

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

button {
    cursor: pointer;
}

.ambient {
    position: fixed;
    z-index: -3;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.ambient-one {
    top: 120px;
    left: -180px;
    width: 430px;
    height: 430px;
    background: rgba(168, 61, 50, .13);
}

.ambient-two {
    right: -160px;
    bottom: 80px;
    width: 390px;
    height: 390px;
    background: rgba(214, 172, 89, .1);
}

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

.narrow {
    max-width: 760px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    height: 80px;
    border-bottom: 1px solid var(--line-light);
    background: rgba(9, 13, 18, .94);
    backdrop-filter: blur(16px);
}

.nav-wrap {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 38px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    flex-shrink: 0;
    letter-spacing: .15em;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold-light);
    font-size: 27px;
    line-height: 1;
    box-shadow: inset 0 0 20px rgba(214, 172, 89, .18);
}

.brand-word {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-word strong {
    color: #fff;
    font-weight: 500;
    font-size: 20px;
}

.brand-word small {
    margin-top: 6px;
    color: var(--gold);
    font: 10px "Segoe UI", Arial, sans-serif;
    letter-spacing: .3em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 29px;
    margin-left: auto;
}

.site-nav a {
    position: relative;
    color: #c4c9cd;
    font-size: 15px;
    transition: color .2s;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--text);
}

.site-nav a.active::after {
    position: absolute;
    right: 0;
    bottom: -29px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--gold);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-link,
.account-link {
    color: var(--muted);
    white-space: nowrap;
    font-size: 14px;
}

.cart-link span {
    display: inline-grid;
    place-items: center;
    min-width: 20px;
    height: 20px;
    margin-left: 5px;
    color: #090d12;
    background: var(--gold);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.account-link {
    padding: 10px 16px;
    color: var(--text);
    border: 1px solid var(--line);
    border-radius: 30px;
}

.nav-toggle {
    display: none;
    margin-left: auto;
    padding: 9px 13px;
    color: var(--text);
    border: 1px solid var(--line);
    background: transparent;
}

.flash-stack {
    position: fixed;
    z-index: 30;
    top: 96px;
    right: 24px;
    max-width: 390px;
}

.flash {
    margin-bottom: 8px;
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-left: 3px solid var(--gold);
    background: var(--panel-strong);
    box-shadow: var(--shadow);
}

.flash-success {
    border-left-color: var(--green);
}

.flash-error {
    border-left-color: #cf675a;
}

.hero {
    position: relative;
    min-height: calc(100vh - 80px);
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 69% 45%, rgba(213, 145, 69, .32), transparent 25%),
        radial-gradient(circle at 67% 58%, rgba(162, 48, 35, .25), transparent 32%),
        linear-gradient(100deg, #0a1016 25%, rgba(10, 16, 22, .7) 51%, #14130f 100%);
}

.hero::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 150px;
    content: "";
    background: linear-gradient(transparent, var(--bg));
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-backdrop::before {
    position: absolute;
    right: -3%;
    bottom: 0;
    width: 58%;
    height: 89%;
    content: "";
    clip-path: polygon(42% 0, 55% 4%, 65% 22%, 83% 32%, 93% 54%, 88% 100%, 3% 100%, 17% 52%, 31% 31%);
    background:
        radial-gradient(circle at 48% 18%, rgba(243, 206, 145, .38), transparent 12%),
        linear-gradient(133deg, rgba(222, 181, 102, .5), rgba(56, 45, 41, .24) 26%, rgba(16, 22, 29, .8) 54%),
        repeating-linear-gradient(142deg, transparent 0 44px, rgba(214, 172, 89, .12) 45px 47px);
    opacity: .9;
}

.hero-backdrop::after {
    position: absolute;
    right: 5%;
    bottom: 12%;
    width: 370px;
    height: 370px;
    content: "";
    border: 1px solid rgba(214, 172, 89, .18);
    border-radius: 50%;
    box-shadow: 0 0 90px rgba(214, 172, 89, .15), inset 0 0 70px rgba(168, 61, 50, .1);
}

.hero-rune {
    position: absolute;
    border: 1px solid rgba(214, 172, 89, .15);
    transform: rotate(45deg);
}

.rune-a {
    right: 22%;
    bottom: 24%;
    width: 116px;
    height: 116px;
}

.rune-b {
    right: 24.1%;
    bottom: 27.1%;
    width: 58px;
    height: 58px;
}

.hero-blade {
    position: absolute;
    right: 37%;
    bottom: 7%;
    width: 6px;
    height: 465px;
    background: linear-gradient(transparent, var(--gold-light) 30%, var(--gold), transparent);
    box-shadow: 0 0 23px rgba(240, 210, 143, .45);
    transform: rotate(22deg);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(450px, 54%) 1fr;
    align-items: center;
    min-height: calc(100vh - 80px);
    padding: 72px 0 100px;
}

.eyebrow {
    margin-bottom: 18px;
    color: var(--gold);
    font: 600 12px "Segoe UI", Arial, sans-serif;
    letter-spacing: .28em;
}

.hero h1 {
    max-width: 700px;
    margin-bottom: 22px;
    font-size: clamp(52px, 5.5vw, 74px);
    line-height: 1.09;
    font-weight: 400;
    letter-spacing: 0;
}

.hero h1 span {
    display: block;
    color: var(--gold-light);
}

.lead {
    max-width: 570px;
    margin-bottom: 37px;
    color: #c2c6c9;
    font-size: 18px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 56px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 51px;
    padding: 0 28px;
    border: 1px solid transparent;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 600;
    transition: transform .2s, border-color .2s, background .2s;
}

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

.button.primary {
    color: #17130d;
    background: linear-gradient(115deg, #bc8b3e, #e1bd6d);
}

.button.secondary {
    color: var(--text);
    border-color: var(--line);
    background: rgba(255, 255, 255, .02);
}

.button.block {
    width: 100%;
}

.trust-row {
    display: flex;
    gap: 31px;
    color: var(--muted);
    font-size: 13px;
}

.trust-row strong {
    display: block;
    color: var(--text);
    font: 27px Georgia, serif;
}

.hero-showcase {
    align-self: end;
    justify-self: end;
    position: relative;
    width: 306px;
    margin-bottom: 25px;
}

.release-badge {
    position: absolute;
    top: -118px;
    right: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 105px;
    height: 105px;
    color: white;
    border: 1px solid rgba(240, 210, 143, .6);
    border-radius: 50%;
    background: #85352d;
}

.release-badge small,
.release-badge span {
    font-size: 9px;
    letter-spacing: .1em;
}

.release-badge strong {
    font: 34px Georgia, serif;
    line-height: 1;
}

.showcase-panel {
    padding: 28px;
    border: 1px solid var(--line);
    background: rgba(10, 14, 19, .8);
    box-shadow: var(--shadow);
}

.showcase-panel p {
    color: var(--gold);
    font-size: 11px;
    letter-spacing: .22em;
}

.showcase-panel h2 {
    font-size: 27px;
    font-weight: 400;
}

.showcase-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 24px;
}

.showcase-tags span {
    padding: 5px 9px;
    color: var(--muted);
    border: 1px solid var(--line-light);
    font-size: 12px;
}

.showcase-panel a,
.text-link {
    color: var(--gold-light);
}

.section {
    padding: 92px 0;
}

.section-heading {
    margin-bottom: 46px;
}

.section-heading.centered {
    max-width: 670px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-heading h1,
.section-heading h2,
.split-heading h2,
.security-grid h2,
.cta-card h2 {
    margin-bottom: 13px;
    font-size: clamp(33px, 4vw, 43px);
    line-height: 1.18;
    font-weight: 400;
}

.section-heading p:not(.eyebrow),
.split-heading > p,
.security-grid > div > p:not(.eyebrow) {
    color: var(--muted);
}

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

.product-card {
    overflow: hidden;
    border: 1px solid var(--line-light);
    background: var(--panel);
    transition: transform .2s, border-color .2s;
}

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

.product-cover {
    position: relative;
    display: flex;
    align-items: end;
    justify-content: space-between;
    height: 132px;
    padding: 17px;
    overflow: hidden;
    color: #fff;
    background: #141c24;
}

.product-cover::before {
    position: absolute;
    top: -45px;
    right: -30px;
    width: 160px;
    height: 160px;
    content: "";
    border: 1px solid rgba(240, 210, 143, .28);
    border-radius: 50%;
}

.product-cover::after {
    position: absolute;
    right: 42px;
    bottom: -46px;
    width: 90px;
    height: 150px;
    content: "";
    border-left: 1px solid rgba(240, 210, 143, .2);
    transform: rotate(36deg);
}

.cover-addon {
    background: radial-gradient(circle at 78% 32%, rgba(214, 172, 89, .31), transparent 34%), linear-gradient(110deg, #111b25, #242018);
}

.cover-template {
    background: radial-gradient(circle at 80% 36%, rgba(170, 67, 53, .38), transparent 37%), linear-gradient(110deg, #111b25, #27171a);
}

.cover-bundle {
    background: radial-gradient(circle at 78% 35%, rgba(223, 185, 104, .47), transparent 34%), linear-gradient(110deg, #161a23, #362719);
}

.cover-service {
    background: linear-gradient(120deg, #101b26, #172a2a);
}

.product-cover span {
    position: relative;
    z-index: 1;
    color: var(--gold-light);
    font-size: 11px;
    letter-spacing: .22em;
}

.product-cover strong {
    position: relative;
    z-index: 1;
    font: 26px Georgia, serif;
}

.product-body {
    min-height: 217px;
    padding: 25px 22px 21px;
}

.tag {
    display: inline-block;
    margin-bottom: 11px;
    padding: 4px 10px;
    color: var(--gold-light);
    border: 1px solid var(--line);
    font-size: 11px;
    font-style: normal;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.product-body h3 {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.25;
}

.product-body p {
    min-height: 51px;
    margin-bottom: 22px;
    color: var(--muted);
    font-size: 14px;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--line-light);
    padding-top: 17px;
}

.product-meta b {
    color: var(--gold-light);
    font-size: 17px;
}

.text-link {
    font-size: 14px;
}

.center-action {
    margin-top: 43px;
    text-align: center;
}

.benefits {
    border-top: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
    background: var(--bg-soft);
}

.split-heading {
    display: grid;
    grid-template-columns: 1.1fr .8fr;
    align-items: end;
    gap: 70px;
    margin-bottom: 55px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.feature-grid article {
    padding: 30px 24px;
    border: 1px solid var(--line-light);
    background: rgba(255, 255, 255, .018);
}

.feature-grid article span {
    color: var(--gold);
    font-family: Georgia, serif;
}

.feature-grid h3 {
    margin: 18px 0 10px;
    font-size: 21px;
    font-weight: 400;
}

.feature-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.security-callout {
    background: radial-gradient(circle at 10% 50%, rgba(214, 172, 89, .07), transparent 39%);
}

.security-grid {
    display: grid;
    grid-template-columns: .94fr 1fr;
    gap: 72px;
    align-items: center;
}

.security-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.security-list p {
    margin: 0;
    padding: 25px 23px;
    border: 1px solid var(--line);
    background: var(--panel);
}

.security-list strong {
    display: block;
    margin-bottom: 7px;
    color: var(--gold-light);
}

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

.final-cta {
    padding-top: 0;
}

.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 47px 55px;
    border: 1px solid var(--line);
    background: linear-gradient(115deg, rgba(214, 172, 89, .09), rgba(168, 61, 50, .08));
}

.cta-card h2 {
    margin: 0;
}

.page-hero {
    padding: 75px 0 65px;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 80% 40%, rgba(214, 172, 89, .13), transparent 25%),
        var(--bg-soft);
}

.page-hero h1 {
    margin-bottom: 12px;
    font-size: clamp(40px, 5vw, 52px);
    font-weight: 400;
}

.page-hero p:last-child {
    color: var(--muted);
}

.catalog {
    padding-top: 52px;
}

.filter-row {
    display: flex;
    gap: 10px;
    margin-bottom: 38px;
}

.filter-row a {
    padding: 10px 22px;
    color: var(--muted);
    border: 1px solid var(--line-light);
}

.filter-row a.selected,
.filter-row a:hover {
    color: #14100b;
    border-color: var(--gold);
    background: var(--gold);
}

.product-detail {
    min-height: calc(100vh - 80px);
    padding: 68px 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 42% 1fr;
    gap: 64px;
    align-items: center;
}

.detail-cover {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: end;
    min-height: 545px;
    padding: 42px;
    border: 1px solid var(--line);
    overflow: hidden;
}

.detail-cover::before {
    position: absolute;
    top: 82px;
    right: -100px;
    width: 390px;
    height: 390px;
    content: "";
    border: 1px solid rgba(214, 172, 89, .23);
    border-radius: 50%;
    box-shadow: inset 0 0 70px rgba(214, 172, 89, .08);
}

.detail-cover span,
.detail-cover strong,
.detail-cover p {
    position: relative;
    z-index: 1;
}

.detail-cover span {
    color: var(--gold-light);
    font-size: 12px;
    letter-spacing: .34em;
}

.detail-cover strong {
    margin: 7px 0 24px;
    font: 72px Georgia, serif;
}

.detail-cover p {
    margin: 0;
    color: var(--muted);
    letter-spacing: .25em;
}

.detail-info h1 {
    margin: 14px 0 19px;
    font-size: clamp(42px, 5vw, 55px);
    line-height: 1.12;
    font-weight: 400;
}

.detail-summary {
    color: #d3d6d8;
    font-size: 20px;
}

.compat {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 8px 28px;
    margin: 31px 0;
    padding: 22px 0;
    border-top: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
}

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

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

.purchase-box {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 38px;
}

.purchase-box > strong {
    color: var(--gold-light);
    font: 31px Georgia, serif;
}

.delivery-note {
    margin-top: 23px;
    color: var(--muted);
    font-size: 13px;
}

.simple-page {
    min-height: calc(100vh - 80px);
    padding: 68px 0 92px;
}

.panel {
    padding: 33px;
    border: 1px solid var(--line-light);
    background: var(--panel);
    box-shadow: var(--shadow);
}

.panel h1 {
    font-size: clamp(34px, 4vw, 43px);
    font-weight: 400;
}

.command {
    overflow-x: auto;
    padding: 18px;
    color: var(--gold-light);
    border: 1px solid var(--line);
    background: var(--bg);
}

.empty {
    color: var(--muted);
    text-align: center;
}

.cart-grid,
.checkout-grid,
.account-grid {
    display: grid;
    grid-template-columns: 1fr 355px;
    gap: 25px;
    align-items: start;
}

.cart-lines {
    padding-top: 10px;
    padding-bottom: 10px;
}

.cart-line {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 26px;
    padding: 23px 0;
    border-bottom: 1px solid var(--line-light);
}

.cart-line:last-child {
    border-bottom: 0;
}

.cart-line h3 {
    margin: 0 0 6px;
    font-size: 21px;
    font-weight: 400;
}

.cart-line p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.cart-line > strong {
    color: var(--gold-light);
}

.remove,
.text-button {
    padding: 0;
    color: #d47c71;
    border: 0;
    background: none;
}

.cart-summary h2,
.order-review h2 {
    margin-bottom: 27px;
    font-size: 25px;
    font-weight: 400;
}

.cart-summary p,
.order-review p {
    display: flex;
    justify-content: space-between;
    color: var(--muted);
}

.cart-summary b,
.order-review b {
    color: var(--text);
}

.cart-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 22px 0 27px;
    padding-top: 21px;
    border-top: 1px solid var(--line);
}

.cart-total strong {
    color: var(--gold-light);
    font: 26px Georgia, serif;
}

.auth-page {
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 50% 20%, rgba(214, 172, 89, .09), transparent 36%);
}

.auth-panel {
    width: min(470px, calc(100% - 40px));
}

.form-stack {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-stack label {
    display: flex;
    flex-direction: column;
    gap: 7px;
    color: #c8ccd0;
    font-size: 14px;
}

.form-stack input:not([type="checkbox"]),
.form-stack textarea,
.form-stack select,
.inline-status select {
    width: 100%;
    padding: 12px 13px;
    color: var(--text);
    border: 1px solid var(--line-light);
    border-radius: 3px;
    background: #0c1218;
    outline: none;
}

.form-stack input:focus,
.form-stack textarea:focus,
.form-stack select:focus {
    border-color: var(--gold);
}

.form-stack small,
.muted {
    color: var(--muted);
    font-size: 13px;
}

.auth-switch {
    margin: 27px 0 0;
    color: var(--muted);
    text-align: center;
}

.payment-method {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 17px;
    border: 1px solid var(--line);
}

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

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

.profile-card h2 {
    margin-bottom: 8px;
    font-size: 27px;
    font-weight: 400;
}

.profile-card > p:not(.eyebrow) {
    margin-bottom: 8px;
    color: var(--muted);
    word-break: break-all;
}

.profile-card .button {
    margin: 26px 0 21px;
}

.profile-card form {
    margin-top: 25px;
}

.order-row {
    display: grid;
    grid-template-columns: 1fr auto 140px;
    align-items: center;
    gap: 23px;
    margin-bottom: 12px;
    padding: 19px 23px;
}

.order-row small {
    display: block;
    margin-top: 5px;
    color: var(--muted);
}

.order-row b {
    color: var(--gold-light);
    text-align: right;
}

.status {
    display: inline-flex;
    padding: 5px 12px;
    border: 1px solid var(--line-light);
    border-radius: 30px;
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
}

.status-paid,
.status-completed {
    color: #99d28c;
    border-color: rgba(128, 188, 117, .35);
}

.status-processing {
    color: var(--gold-light);
    border-color: var(--line);
}

.status-cancelled,
.status-refunded {
    color: #d47c71;
}

.order-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.delivery-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    margin-top: 28px;
    padding: 18px 0;
    border-top: 1px solid var(--line-light);
}

.delivery-item small {
    display: block;
    color: var(--muted);
}

.delivery-item code {
    grid-column: 1 / -1;
    padding: 11px 15px;
    color: var(--gold-light);
    border: 1px dashed var(--line);
    background: var(--bg);
}

.notice {
    padding: 14px 17px;
    color: #d1ba88;
    border: 1px solid var(--line);
    background: rgba(214, 172, 89, .07);
}

.admin-page h1 {
    font-size: clamp(39px, 5vw, 50px);
    font-weight: 400;
}

.admin-tabs {
    display: flex;
    gap: 8px;
    margin: 37px 0 34px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--line-light);
}

.admin-tabs a {
    padding: 10px 20px;
    color: var(--muted);
}

.admin-tabs a.selected {
    color: #15110d;
    background: var(--gold);
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 27px;
}

.stat-grid article {
    padding: 24px;
    border: 1px solid var(--line-light);
    background: var(--panel);
}

.stat-grid small {
    display: block;
    margin-bottom: 14px;
    color: var(--muted);
}

.stat-grid strong {
    color: var(--gold-light);
    font: 31px Georgia, serif;
}

.table-panel {
    overflow-x: auto;
}

.table-panel h2 {
    margin-bottom: 22px;
    font-size: 25px;
    font-weight: 400;
}

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

th {
    color: var(--muted);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .12em;
    text-align: left;
    text-transform: uppercase;
}

td,
th {
    padding: 15px 10px;
    border-bottom: 1px solid var(--line-light);
}

td small {
    display: block;
    color: var(--muted);
    font-size: 12px;
}

.admin-split {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 22px;
    align-items: start;
}

.product-form {
    gap: 14px;
}

.product-form h2 {
    margin-bottom: 12px;
    font-size: 26px;
    font-weight: 400;
}

.form-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.check-row {
    display: flex;
    gap: 25px;
    margin: 6px 0;
}

.check-row label {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
}

.inline-status {
    display: flex;
    gap: 7px;
}

.inline-status select {
    width: auto;
    padding: 7px 9px;
}

.inline-status button {
    color: #16120c;
    border: 0;
    background: var(--gold);
}

.log-note {
    margin-top: 20px;
}

.site-footer {
    padding-top: 67px;
    color: var(--muted);
    border-top: 1px solid var(--line-light);
    background: #070b10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.55fr 1fr 1fr 1fr;
    gap: 46px;
    padding-bottom: 52px;
}

.footer-brand {
    margin-bottom: 21px;
}

.footer-grid h4 {
    margin-bottom: 18px;
    color: var(--text);
    font: 18px Georgia, serif;
    font-weight: 400;
}

.footer-grid a:not(.brand) {
    display: block;
    margin-bottom: 10px;
}

.footer-grid a:not(.brand):hover {
    color: var(--gold-light);
}

.footer-grid p {
    color: var(--muted);
    font-size: 14px;
}

.copyright {
    padding: 22px 0;
    border-top: 1px solid var(--line-light);
    font-size: 13px;
}

@media (max-width: 1060px) {
    .nav-wrap {
        gap: 18px;
    }

    .site-nav {
        gap: 17px;
    }

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

    .hero-showcase {
        display: none;
    }

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

    .security-grid,
    .product-detail-grid {
        gap: 37px;
    }

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

@media (max-width: 820px) {
    .container {
        width: min(var(--container), calc(100% - 32px));
    }

    .site-header {
        height: 70px;
    }

    .brand-word strong {
        font-size: 17px;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: 70px;
        right: 16px;
        left: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 20px;
        border: 1px solid var(--line);
        background: var(--panel-strong);
    }

    .site-nav.open {
        display: flex;
    }

    .site-nav a {
        padding: 13px 0;
    }

    .site-nav a.active::after {
        display: none;
    }

    .account-link {
        display: none;
    }

    .hero-grid {
        min-height: auto;
        padding: 75px 0 92px;
    }

    .hero h1 {
        font-size: clamp(43px, 12vw, 55px);
    }

    .hero-backdrop::before,
    .hero-blade,
    .hero-rune {
        opacity: .33;
    }

    .section {
        padding: 67px 0;
    }

    .split-heading,
    .security-grid,
    .product-detail-grid,
    .cart-grid,
    .checkout-grid,
    .account-grid,
    .admin-split {
        grid-template-columns: 1fr;
        gap: 27px;
    }

    .detail-cover {
        min-height: 340px;
    }

    .cta-card {
        flex-direction: column;
        align-items: start;
        padding: 34px 28px;
    }

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

@media (max-width: 560px) {
    .brand-mark {
        width: 36px;
        height: 36px;
        font-size: 23px;
    }

    .brand-word small {
        display: none;
    }

    .nav-actions {
        gap: 5px;
    }

    .hero-buttons,
    .trust-row {
        flex-direction: column;
    }

    .product-grid,
    .feature-grid,
    .security-list,
    .stat-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .filter-row {
        overflow-x: auto;
    }

    .panel {
        padding: 23px 18px;
    }

    .cart-line,
    .order-row {
        grid-template-columns: 1fr auto;
    }

    .cart-line form,
    .order-row .status {
        grid-column: 1 / -1;
    }
}
