:root {
    --ink: #f0f4ed;
    --paper: #090b0a;
    --acid: #a8ff00;
    --cyan: #00e5ff;
    --line: #273029;
    --muted: #89948a;
    --white: #111512;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: 'Space Grotesk', sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

.page-shell {
    overflow: hidden;
}

.site-header {
    align-items: center;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    padding: 24px 5vw;
}

.brand {
    align-items: center;
    display: flex;
    font-size: 15px;
    font-weight: 700;
    gap: 10px;
    letter-spacing: .12em;
}

.brand em {
    color: var(--muted);
    font-size: 10px;
    font-style: normal;
    letter-spacing: .2em;
    margin-left: 4px;
}

.brand-mark {
    align-items: center;
    background: var(--ink);
    color: var(--acid);
    display: flex;
    font-family: 'DM Mono', monospace;
    font-size: 14px;
    height: 28px;
    justify-content: center;
    width: 28px;
}

.main-nav {
    display: flex;
    font-size: 12px;
    font-weight: 500;
    gap: 34px;
    letter-spacing: .02em;
    margin-left: 120px;
    text-rendering: geometricPrecision;
}

.main-nav a {
    color: var(--muted);
    transition: color .2s;
}

.main-nav a:hover {
    color: var(--ink);
}

.cart-button {
    align-items: center;
    background: none;
    border: 0;
    cursor: pointer;
    display: flex;
    font-size: 12px;
    gap: 9px;
    letter-spacing: .06em;
    padding: 8px 0;
}

.cart-icon {
    align-items: center;
    border: 1px solid var(--ink);
    border-radius: 50%;
    display: flex;
    font-size: 18px;
    height: 24px;
    justify-content: center;
    line-height: 1;
    transform: rotate(45deg);
    width: 24px;
}

.cart-button b {
    background: var(--acid);
    border-radius: 50%;
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    padding: 4px 6px;
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 620px;
}

.hero-copy {
    align-self: center;
    padding: 90px 10vw 90px 12vw;
}

.eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: .12em;
    margin: 0 0 24px;
    text-transform: uppercase;
}

.eyebrow span {
    background: var(--acid);
    display: inline-block;
    height: 8px;
    margin-right: 8px;
    width: 8px;
}

.hero h1 {
    font-size: clamp(52px, 6vw, 88px);
    letter-spacing: -.07em;
    line-height: .92;
    margin: 0 0 28px;
}

.hero h1 i,
.about-section h2 i {
    font-family: Georgia, serif;
    font-weight: 400;
    letter-spacing: -.08em;
}

.hero-description {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 34px;
    max-width: 390px;
}

.button {
    align-items: center;
    border: 1px solid var(--ink);
    display: inline-flex;
    font-size: 12px;
    gap: 30px;
    justify-content: space-between;
    letter-spacing: .04em;
    padding: 15px 18px;
    transition: background .2s, color .2s, transform .2s;
}

.button:hover {
    transform: translateY(-2px);
}

.button-dark {
    background: var(--ink);
    color: var(--paper);
}

.button-dark:hover {
    background: #343434;
}

.button-light {
    background: var(--acid);
    color: var(--ink);
}

.hero-art {
    background: var(--ink);
    min-height: 620px;
    overflow: hidden;
    position: relative;
}

.art-grid {
    background-image: linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: 42px 42px;
    inset: 0;
    position: absolute;
    transform: skewY(-20deg) scale(1.5);
}

.art-ring {
    border: 1px solid var(--acid);
    border-radius: 50%;
    height: 360px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 360px;
}

.ring-two {
    border-color: rgba(217, 255, 86, .3);
    height: 500px;
    width: 500px;
}

.art-label,
.art-stamp {
    color: var(--acid);
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: .08em;
    line-height: 1.4;
    position: absolute;
}

.art-label {
    left: 9%;
    top: 10%;
}

.art-stamp {
    border: 1px solid var(--acid);
    bottom: 11%;
    padding: 9px;
    right: 9%;
}

.ticker {
    background: var(--acid);
    display: flex;
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    justify-content: space-around;
    letter-spacing: .1em;
    padding: 14px 5%;
    text-transform: uppercase;
}

.ticker span::before {
    content: '+';
    margin-right: 22px;
}

.catalog-section {
    padding: 120px 8vw;
}

.section-heading {
    align-items: end;
    display: flex;
    justify-content: space-between;
    margin-bottom: 62px;
}

.section-heading h2,
.about-section h2,
.support-section h2 {
    font-size: clamp(38px, 5vw, 64px);
    letter-spacing: -.07em;
    line-height: .95;
    margin: 0;
}

.section-note {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
    max-width: 280px;
}

.catalog-layout {
    display: grid;
    gap: 7vw;
    grid-template-columns: 180px 1fr;
}

.catalog-aside {
    border-top: 1px solid var(--ink);
    padding-top: 17px;
}

.filter {
    background: none;
    border: 0;
    color: var(--muted);
    cursor: pointer;
    display: flex;
    font-size: 13px;
    justify-content: space-between;
    padding: 8px 0;
    text-align: left;
    width: 100%;
}

.filter.active,
.filter:hover {
    color: var(--ink);
    font-weight: 600;
}

.filter span {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
}

.aside-rule {
    border-top: 1px solid var(--line);
    margin: 38px 0 24px;
}

.mono-copy {
    color: var(--muted);
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    line-height: 1.6;
}

.product-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-card {
    border-top: 1px solid var(--ink);
    padding-top: 14px;
}

.product-visual {
    align-items: flex-end;
    display: flex;
    height: 235px;
    justify-content: space-between;
    margin-bottom: 18px;
    overflow: hidden;
    padding: 18px;
    position: relative;
}

.product-visual::before {
    border: 1px solid rgba(23, 23, 23, .25);
    border-radius: 50%;
    content: '';
    height: 220px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
}

.visual-a {
    background: #d8d4c7;
}

.visual-b {
    background: #b8c6b1;
}

.visual-c {
    background: #ded1bd;
}

.visual-d {
    background: #a9b5bf;
}

.visual-e {
    background: #cdc4b3;
}

.visual-f {
    background: #d5d1ca;
}

.visual-number {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    position: relative;
}

.visual-word {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -.09em;
    position: relative;
    transform: rotate(-90deg);
}

.product-info {
    align-items: end;
    display: flex;
    justify-content: space-between;
}

.product-info h3 {
    font-size: 17px;
    letter-spacing: -.03em;
    margin: 0 0 7px;
}

.product-meta {
    color: var(--muted);
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
}

.product-price {
    display: flex;
    flex-direction: column;
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    gap: 4px;
    text-align: right;
}

.product-price del,
.cart-item del {
    color: var(--muted);
    font-size: 10px;
}

.product-price strong {
    color: var(--cyan);
    font-weight: 400;
}

.add-button {
    background: none;
    border: 0;
    border-bottom: 1px solid var(--ink);
    cursor: pointer;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    margin-top: 16px;
    padding: 0 0 5px;
}

.add-button:hover {
    background: var(--acid);
}

.about-section {
    background: var(--ink);
    color: var(--paper);
    padding: 120px 12vw;
}

.about-section .eyebrow {
    color: var(--acid);
}

.about-content {
    align-items: end;
    display: flex;
    gap: 12vw;
    justify-content: space-between;
}

.about-section h2 {
    max-width: 560px;
}

.about-content p {
    color: #aaa8a1;
    font-size: 14px;
    line-height: 1.7;
    max-width: 330px;
}

.support-section {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 100px 12vw;
}

.support-section h2 {
    font-size: clamp(34px, 4vw, 55px);
}

.site-footer {
    border-top: 1px solid var(--line);
    color: var(--muted);
    display: flex;
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    justify-content: space-between;
    padding: 23px 5vw;
}

.cart-drawer {
    background: var(--white);
    bottom: 0;
    box-shadow: -20px 0 50px rgba(0, 0, 0, .12);
    display: flex;
    flex-direction: column;
    max-width: 440px;
    padding: 32px;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(105%);
    transition: transform .35s ease;
    width: 100%;
    z-index: 10;
}

.cart-drawer.open {
    transform: translateX(0);
}

.drawer-backdrop {
    background: rgba(23, 23, 23, .4);
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    transition: opacity .3s;
    z-index: 9;
}

.drawer-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

.drawer-header {
    align-items: start;
    display: flex;
    justify-content: space-between;
}

.drawer-header h2 {
    font-size: 44px;
    letter-spacing: -.07em;
    margin: 0;
}

.close-button {
    background: none;
    border: 0;
    cursor: pointer;
    font-size: 30px;
    line-height: 1;
}

.cart-items {
    flex: 1;
    padding: 38px 0;
}

.empty-cart {
    color: var(--muted);
    font-family: 'DM Mono', monospace;
    font-size: 11px;
}

.cart-item {
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
}

.cart-item h3 {
    font-size: 14px;
    margin: 0 0 5px;
}

.cart-item p {
    align-items: flex-start;
    color: var(--muted);
    display: flex;
    flex-direction: column;
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    gap: 3px;
    margin: 0;
}

.cart-item p del {
    color: var(--muted);
    font-size: 10px;
    line-height: 1;
}

.cart-item p strong {
    color: var(--cyan);
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
}

.remove-item {
    background: none;
    border: 0;
    color: var(--muted);
    cursor: pointer;
    font-size: 16px;
}

.cart-footer {
    border-top: 1px solid var(--ink);
    padding-top: 18px;
}

.cart-footer>div {
    display: flex;
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    justify-content: space-between;
    margin-bottom: 22px;
}

.checkout-button {
    border: 0;
    cursor: pointer;
    width: 100%;
}

.checkout-button:disabled {
    cursor: not-allowed;
    opacity: .4;
}

.checkout-note {
    color: var(--muted);
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    margin: 14px 0 0;
    text-align: center;
}

@media (max-width:700px) {
    .site-header {
        padding: 18px 6vw;
    }

    .main-nav {
        display: none;
    }

    .hero {
        display: block;
    }

    .hero-copy {
        padding: 76px 8vw 70px;
    }

    .hero-art {
        min-height: 410px;
    }

    .ticker {
        gap: 24px;
        justify-content: start;
        overflow: hidden;
        white-space: nowrap;
    }

    .ticker span:nth-child(n+3) {
        display: none;
    }

    .catalog-section {
        padding: 80px 8vw;
    }

    .section-heading {
        align-items: start;
        display: block;
    }

    .section-note {
        margin-top: 24px;
    }

    .catalog-layout {
        display: block;
    }

    .catalog-aside {
        display: flex;
        gap: 18px;
        margin-bottom: 35px;
        overflow: auto;
        padding-bottom: 12px;
    }

    .filter {
        flex: none;
        gap: 10px;
        width: auto;
    }

    .filter span {
        display: none;
    }

    .aside-rule,
    .mono-copy {
        display: none;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-visual {
        height: 250px;
    }

    .about-section {
        padding: 80px 8vw;
    }

    .about-content {
        align-items: start;
        display: block;
    }

    .about-content p {
        margin-top: 30px;
    }

    .support-section {
        align-items: start;
        display: block;
        padding: 80px 8vw;
    }

    .support-section .button {
        margin-top: 32px;
    }

    .site-footer {
        display: block;
        line-height: 2;
    }

    .site-footer span,
    .site-footer a {
        display: block;
    }

    .cart-drawer {
        padding: 25px;
    }
}

/* MKNZ Labs dark developer theme */
.site-header {
    background: #090b0a;
}

.brand-logo {
    display: block;
    height: 62px;
    object-fit: contain;
    width: 138px;
}

.main-nav a:hover,
.cart-button:hover {
    color: var(--acid);
}

.cart-icon {
    border-bottom: 1px solid var(--acid);
    border-left: 1px solid var(--acid);
    border-radius: 0 0 2px 2px;
    height: 10px;
    margin: 0 3px 2px 0;
    position: relative;
    transform: none;
    width: 17px;
}

.cart-icon::before {
    border-top: 1px solid var(--acid);
    content: '';
    height: 1px;
    left: -5px;
    position: absolute;
    top: -4px;
    width: 8px;
}

.cart-icon::after {
    background: var(--acid);
    border-radius: 50%;
    box-shadow: 10px 0 0 var(--acid);
    content: '';
    height: 3px;
    left: 3px;
    position: absolute;
    top: 12px;
    width: 3px;
}

.cart-label {
    color: var(--ink);
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.cart-button b {
    align-items: center;
    color: #090b0a;
    display: flex;
    font-size: 9px;
    height: 18px;
    justify-content: center;
    min-width: 18px;
    padding: 0;
}

.hero-art {
    background: #050706;
}

.art-grid {
    background-image: linear-gradient(rgba(168, 255, 0, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(168, 255, 0, .08) 1px, transparent 1px);
}

.art-ring {
    border-color: var(--acid);
    box-shadow: 0 0 28px rgba(168, 255, 0, .12);
}

.ring-two {
    border-color: rgba(0, 229, 255, .35);
}

.hero-logo {
    bottom: 12%;
    left: 9%;
    opacity: .95;
    position: absolute;
    width: min(280px, 52%);
}

.button-dark {
    background: var(--acid);
    border-color: var(--acid);
    color: #090b0a;
    font-weight: 600;
}

.button-dark:hover {
    background: #c7ff5c;
}

.button-light {
    border-color: var(--acid);
    color: #090b0a;
    font-weight: 600;
}

.button-light:hover {
    background: #c7ff5c;
    color: #090b0a;
}

.ticker {
    align-items: center;
    background: var(--acid);
    color: #090b0a;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    min-height: 46px;
    text-rendering: geometricPrecision;
}

.ticker span {
    opacity: 1;
}

.ticker span::before {
    font-weight: 700;
    margin-right: 24px;
}

.catalog-section {
    background: #090b0a;
}

.catalog-aside,
.product-card {
    border-color: var(--line);
}

.filter.active,
.filter:hover {
    color: var(--acid);
}

.product-visual {
    background: #111713;
    border: 1px solid #273029;
}

.product-visual::before {
    border-color: rgba(168, 255, 0, .32);
}

.visual-a {
    background: #131b15;
}

.visual-b {
    background: #101b1b;
}

.visual-c {
    background: #171616;
}

.visual-d {
    background: #101920;
}

.visual-e {
    background: #171b13;
}

.visual-f {
    background: #141719;
}

.visual-number,
.visual-word {
    color: var(--acid);
}

.product-price {
    color: var(--cyan);
}

.add-button {
    border-color: var(--acid);
    color: var(--acid);
}

.add-button:hover {
    color: #090b0a;
}

.about-section {
    background: #050706;
    border-top: 1px solid var(--line);
}

.about-section {
    color: var(--ink);
}

.about-content p {
    color: #b7c2b8;
}

.support-section {
    background: #0d110e;
}

.site-footer {
    background: #090b0a;
    border-color: var(--line);
}

.cart-drawer {
    background: #111512;
    border-left: 1px solid var(--acid);
    color: var(--ink);
}

.drawer-header h2 {
    color: var(--acid);
    font-family: 'Oxanium', sans-serif;
    font-size: 42px;
    text-transform: uppercase;
}

.drawer-header .eyebrow {
    color: var(--cyan);
}

.cart-item h3 {
    color: var(--ink);
    text-transform: uppercase;
}

.close-button,
.remove-item {
    color: var(--muted);
}

.cart-footer {
    border-color: var(--line);
}

.checkout-button {
    color: #090b0a;
}

/* Operator interface layer */
.site-header {
    min-height: 86px;
    padding-bottom: 14px;
    padding-top: 14px;
}

.brand-wordmark {
    align-items: baseline;
    display: flex;
    gap: 11px;
    letter-spacing: .12em;
}

.brand-wordmark strong {
    color: var(--acid);
    font-size: 19px;
    letter-spacing: .04em;
}

.brand-wordmark small {
    color: var(--muted);
    font-family: 'DM Mono', monospace;
    font-size: 8px;
    letter-spacing: .12em;
}

.hero {
    min-height: 560px;
}

.hero {
    grid-template-columns: 1fr;
}

.hero-copy {
    max-width: 850px;
    padding-left: 10vw;
    padding-right: 7vw;
}

.hero h1 {
    font-size: clamp(48px, 5.5vw, 78px);
    letter-spacing: -.065em;
    max-width: 620px;
    text-transform: uppercase;
}

.hero h1 i {
    color: var(--acid);
    font-family: 'Oxanium', sans-serif;
    font-style: normal;
    font-weight: 600;
    letter-spacing: -.04em;
}

.about-section h2 i {
    color: var(--acid);
    font-family: 'Oxanium', sans-serif;
    font-style: normal;
    font-weight: 600;
    letter-spacing: -.04em;
}

.hero-description {
    max-width: 405px;
}

.hero-actions {
    align-items: center;
    display: flex;
    gap: 24px;
}

.availability {
    color: var(--muted);
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.availability i {
    background: var(--acid);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--acid);
    display: inline-block;
    height: 6px;
    margin-right: 7px;
    width: 6px;
}

.hero-art {
    border-left: 1px solid var(--line);
    min-height: 560px;
}

.hero-art::after {
    background: linear-gradient(90deg, transparent 0 49%, rgba(0, 229, 255, .25) 50%, transparent 51%);
    content: '';
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.scanline {
    animation: scan 5s linear infinite;
    background: var(--cyan);
    box-shadow: 0 0 18px var(--cyan);
    height: 1px;
    left: 8%;
    opacity: .65;
    position: absolute;
    right: 8%;
    top: 20%;
    z-index: 1;
}

.art-readout {
    bottom: 10%;
    color: var(--cyan);
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    line-height: 1.8;
    position: absolute;
    right: 9%;
    z-index: 2;
}

.art-readout span {
    color: var(--muted);
    margin-right: 9px;
}

@keyframes scan {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(330px);
    }
}

.section-heading {
    border-bottom: 1px solid var(--line);
    padding-bottom: 28px;
}

.section-heading h2 {
    text-transform: uppercase;
}

.section-heading h2 i {
    color: var(--acid);
    font-family: 'Oxanium', sans-serif;
    font-style: normal;
    text-transform: uppercase;
}

.section-note {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
}

.catalog-layout {
    gap: 5vw;
}

.catalog-aside {
    border-top: 2px solid var(--acid);
}

.filter {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
}

.product-grid {
    gap: 0 28px;
}

.product-card {
    padding: 18px 0 28px;
}

.product-visual {
    clip-path: polygon(0 0, 100% 0, 100% 88%, 92% 100%, 0 100%);
    height: 265px;
}

.product-visual::after {
    color: var(--cyan);
    content: '// READY';
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    position: absolute;
    right: 18px;
    top: 18px;
}

.visual-word {
    bottom: 18px;
    font-size: 32px;
    letter-spacing: .02em;
    position: absolute;
    right: 18px;
    transform: none;
    writing-mode: vertical-rl;
}

.product-image {
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    width: 100%;
    z-index: 0;
}

.product-visual.has-image::before {
    display: none;
}

.product-visual.has-image::after {
    background: rgba(5, 7, 6, .72);
    padding: 4px 6px;
    z-index: 1;
}

.product-visual.has-image .visual-number,
.product-visual.has-image .visual-word {
    text-shadow: 0 1px 4px #000;
    z-index: 1;
}

.product-info h3 {
    font-size: 20px;
    text-transform: uppercase;
}

.product-meta {
    color: #aab7ad;
    font-size: 11px;
    letter-spacing: .025em;
    line-height: 1.45;
    text-rendering: geometricPrecision;
}

.add-button {
    text-transform: uppercase;
    transition: background-color .18s ease, color .18s ease, padding .18s ease;
}

.add-button:hover {
    background: var(--acid);
    color: #090b0a;
    padding-left: 8px;
    padding-right: 8px;
}

.add-button:focus-visible {
    background: var(--acid);
    color: #090b0a;
    outline: 2px solid var(--cyan);
    outline-offset: 4px;
    padding-left: 8px;
    padding-right: 8px;
}

.about-section {
    position: relative;
}

.about-section::before {
    color: rgba(168, 255, 0, .13);
    content: 'MKNZ / 02';
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    position: absolute;
    right: 12vw;
    top: 120px;
}

.support-section {
    border-top: 1px solid var(--line);
}

.support-section h2 {
    text-transform: uppercase;
}

.site-footer {
    text-transform: uppercase;
}

.drawer-header h2 {
    text-transform: uppercase;
}

.cart-item {
    border-color: var(--line);
}

.product-card {
    cursor: pointer;
}

.product-card:hover .product-visual {
    border-color: var(--acid);
}

.product-detail {
    background: #090b0a;
    min-height: calc(100vh - 86px);
    padding: 90px 10vw 120px;
}

.detail-back {
    color: var(--cyan);
    display: inline-block;
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: .08em;
    margin-bottom: 52px;
    text-transform: uppercase;
}

.detail-layout {
    margin: 0 auto;
    max-width: 1120px;
    width: 100%;
}

.detail-copy {
    margin: 0 auto;
    max-width: 1000px;
    width: 100%;
}

.detail-copy h1 {
    font-size: clamp(42px, 5vw, 76px);
    letter-spacing: -.06em;
    line-height: .95;
    margin: 0 auto 24px;
    max-width: 1000px;
    text-align: center;
    text-transform: uppercase;
}

.detail-description {
    color: #b7c2b8;
    font-size: 16px;
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
}

.detail-long-description {
    color: #d5ded5;
    max-width: 720px;
    white-space: pre-line;
}

.detail-data {
    border-bottom: 1px solid var(--line);
    border-top: 1px solid var(--line);
    display: flex;
    gap: 30px;
    margin: 38px 0;
    padding: 18px 0;
}

.detail-data span {
    color: var(--muted);
    font-family: 'DM Mono', monospace;
    font-size: 9px;
}

.detail-data strong {
    color: var(--ink);
    display: block;
    font-size: 10px;
    margin-top: 7px;
    text-transform: uppercase;
}

.detail-data .detail-price {
    align-items: center;
    display: flex;
    gap: 10px;
    text-transform: none;
}

.detail-data .detail-price del {
    color: var(--muted);
    font-size: 10px;
}

.detail-data .detail-price strong {
    color: var(--cyan);
    display: inline;
    font-size: 11px;
    margin-top: 0;
    text-transform: none;
}

.detail-add {
    cursor: pointer;
}

@media (max-width:700px) {
    .detail-data {
        flex-wrap: wrap;
    }

    .product-detail {
        padding: 60px 8vw 90px;
    }
}

/* Readability pass */
body {
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

.eyebrow {
    color: #c1cbc1;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .1em;
}

.section-note {
    color: #b7c2b8;
    font-size: 12px;
}

.mono-copy {
    color: #aab7ad;
    font-size: 11px;
}

.availability {
    color: #b7c2b8;
    font-size: 10px;
}

.site-footer {
    color: #aab7ad;
    font-size: 10px;
}

.checkout-note {
    color: #aab7ad;
    font-size: 10px;
}

.detail-data span {
    color: #aab7ad;
    font-size: 10px;
    letter-spacing: .04em;
}

.detail-data strong {
    color: #f0f4ed;
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.2;
    margin-top: 7px;
    text-rendering: geometricPrecision;
    text-transform: uppercase;
}

.detail-back {
    font-size: 11px;
    font-weight: 500;
}

@media (max-width:700px) {
    .brand-wordmark small {
        display: none;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .section-heading h2 {
        font-size: 44px;
    }

    .about-section::before {
        right: 8vw;
        top: 80px;
    }

    .product-visual {
        height: 250px;
    }
}