:root {
    --orange: #E7692E;
    --orange-hover: #ff7a3d;
    --orange-dim: rgba(231, 105, 46, 0.12);
    --orange-glow: rgba(231, 105, 46, 0.06);
    --blue: #2E8CE7;
    --blue-hover: #4da3f7;
    --blue-dim: rgba(46, 140, 231, 0.12);
    --black: #000000;
    --bg: #050505;
    --surface: #0a0a0a;
    --surface2: #111111;
    --border: #1a1a1a;
    --border-hover: #333;
    --text: #cccccc;
    --text-dim: #777777;
    --text-bright: #ffffff;
    --stripe: repeating-linear-gradient(
        -45deg,
        var(--orange) 0,
        var(--orange) 2px,
        transparent 2px,
        transparent 8px
    );
}

* {
    box-sizing: border-box;
}

::selection {
    background: var(--orange);
    color: #ffffff;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--orange);
    border-radius: 0;
}

body {
    font-family: "Inter", -apple-system, sans-serif;
    color: var(--text);
    background-color: var(--bg);
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    height: auto;
    -webkit-font-smoothing: antialiased;
    background-image: radial-gradient(rgba(231, 105, 46, 0.04) 1px, transparent 1px);
    background-size: 32px 32px;
    position: relative;
    overflow-x: hidden;
}



.wrapper {
    max-width: 1040px;
    width: 100%;
    padding: 0 32px;
}

/* ── Header ── */

header {
    display: flex;
    justify-content: start;
    margin: 48px 0 96px 0;
    padding-bottom: 24px;
    border-bottom: none;
    position: relative;
}

header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--stripe);
}

header a {
    text-decoration: none;
    color: var(--text-dim);
    font-family: "Space Grotesk", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.15s;
}

header a:hover {
    color: var(--text-bright);
    text-decoration: none;
}

.site-title {
    text-transform: uppercase;
    font-family: "JetBrains Mono", monospace;
    color: var(--orange);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0;
    letter-spacing: 3px;
}

.site-title:hover {
    text-decoration: none;
    color: var(--orange-hover);
}

/* ── Typography ── */

a {
    color: var(--blue);
    text-decoration: none;
    transition: color 0.15s;
}

a:hover {
    text-decoration: underline;
    color: var(--blue-hover);
}

h1 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    display: block;
    width: 100%;
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text-bright);
    line-height: 1.1;
}

h2 {
    color: var(--text-bright);
    font-family: "Space Grotesk", sans-serif;
    font-size: 22px;
    margin-bottom: 0;
    margin-top: 0;
    font-weight: 700;
}

h3 {
    color: var(--text-bright);
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
}

/* ── Article / Content ── */

article {
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 40px 0;
}

article p, article ol, article ul li {
    font-size: 16px;
    font-family: "Inter", sans-serif;
    color: var(--text);
    line-height: 1.75;
    font-weight: 400;
}

article p, article pre, article ul li {
    margin: 20px 0;
}

article a {
    text-decoration: underline;
    color: var(--blue);
}

article a:hover {
    color: var(--blue-hover);
}

article h2 {
    margin: 56px 0 16px;
    font-size: 22px;
    padding: 12px 16px;
    border-bottom: none;
    border-left: 4px solid var(--orange);
    background: linear-gradient(90deg, var(--orange-dim) 0%, transparent 50%);
}

article img {
    max-width: 100%;
    height: auto;
    margin: 36px auto;
    display: block;
    width: 66%;
    border-radius: 0;
}

article ul {
    list-style: none;
    padding-left: 0;
}

article ul li {
    position: relative;
    padding-left: 20px;
}

article ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 3px;
    background: var(--orange);
}

pre {
    display: block;
    overflow-x: auto;
    padding: 1.2em;
    border-radius: 0;
    background-color: var(--surface) !important;
    border: 1px solid var(--border);
    border-left: 4px solid var(--orange);
}

pre code {
    width: 100%;
    overflow-x: auto;
    color: var(--text);
}

/* ── Product Grid ── */

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 56px;
}

/* ── Product Card ── */

.product-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 0;
    overflow: visible;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    /* hard corner cut */
    clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
}

/* large corner brackets */
.product-card::before,
.product-card::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    border-color: var(--orange);
    border-style: solid;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 2;
    pointer-events: none;
}

.product-card::before {
    top: 8px;
    left: 8px;
    border-width: 3px 0 0 3px;
    transform: translate(4px, 4px);
}

.product-card::after {
    bottom: 8px;
    right: 8px;
    border-width: 0 3px 3px 0;
    transform: translate(-4px, -4px);
}

.product-card:hover::before,
.product-card:hover::after {
    opacity: 1;
    transform: translate(0, 0);
}

.product-card:hover {
    text-decoration: none;
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(231, 105, 46, 0.06);
}

.product-image {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--surface2);
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s, filter 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1);
}

/* big triangle earmark */
.product-image::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 56px 56px 0;
    border-color: transparent var(--orange) transparent transparent;
    z-index: 1;
    opacity: 0.9;
    transition: border-width 0.3s;
}

.product-card:hover .product-image::before {
    border-width: 0 72px 72px 0;
}

/* scan line on card hover */
.product-card .product-image .scanline {
    display: none;
}

.product-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* orange notch on left edge of product-info */
.product-info::before {
    content: "";
    position: absolute;
    left: 0;
    top: 24px;
    width: 4px;
    height: 24px;
    background: var(--orange);
}

.product-info h2 {
    font-size: 18px;
    margin: 0 0 12px 12px;
    color: var(--text-bright);
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
}

.product-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-bright);
    margin: 0 0 0 12px;
    font-family: "JetBrains Mono", monospace;
    position: relative;
    display: inline-block;
}

.product-blurb {
    font-size: 13px;
    color: var(--text-dim);
    margin: 12px 0 0 12px;
    line-height: 1.6;
    font-family: "Inter", sans-serif;
}

/* ── Product Badges ── */

.product-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 16px;
    padding-left: 12px;
}

.badge {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 0;
}

.badge-price {
    background: var(--orange-dim);
    color: var(--orange);
    border-left: 3px solid var(--orange);
}

.badge-free {
    background: rgba(46, 140, 231, 0.1);
    color: var(--blue);
    border-left: 3px solid var(--blue);
}

/* ── Product Detail Page ── */

.product-page {
    width: 100%;
}

.product-hero {
    margin-bottom: 48px;
    border-radius: 0;
    overflow: hidden;
    background: var(--surface);
    border: none;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 48px), calc(100% - 48px) 100%, 0 100%);
}

.product-hero img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
}

/* crosshair top-left */
.product-hero::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 24px;
    width: 32px;
    height: 32px;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(var(--orange), var(--orange)) center/1px 100% no-repeat,
        linear-gradient(var(--orange), var(--orange)) center/100% 1px no-repeat;
    opacity: 0.7;
}

/* solid orange bar at bottom */
.product-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 48px;
    height: 5px;
    background: var(--orange);
}

/* giant faded watermark letter behind product detail */
.product-detail {
    position: relative;
}

.product-detail::before {
    content: "H";
    position: absolute;
    top: -80px;
    right: -40px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 400px;
    font-weight: 800;
    color: var(--orange);
    opacity: 0.02;
    line-height: 1;
    pointer-events: none;
    z-index: -1;
}

.product-meta {
    display: flex;
    gap: 16px;
    align-items: center;
    margin: 24px 0 0 0;
}

.product-meta .product-price {
    font-size: 36px;
    font-weight: 800;
    color: var(--orange);
    position: relative;
}

.product-meta .product-price::before {
    content: "";
    position: absolute;
    left: -12px;
    top: -4px;
    bottom: -4px;
    right: -12px;
    background: var(--orange-dim);
    transform: skewX(-8deg);
    z-index: -1;
}

.product-meta .product-format {
    background: var(--blue-dim);
    color: var(--blue);
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 0;
    font-family: "JetBrains Mono", monospace;
    border-left: 3px solid var(--blue);
}

/* ── Product Page title ── */

.product-page h1 {
    position: relative;
    display: inline-block;
    width: auto;
}

.product-page h1::after {
    content: "";
    display: block;
    margin-top: 12px;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg,
        var(--orange) 0%, var(--orange) 55%,
        transparent 55%, transparent 58%,
        var(--orange) 58%, var(--orange) 70%,
        transparent 70%, transparent 73%,
        var(--orange) 73%, var(--orange) 78%,
        transparent 78%
    );
}

/* ── Buy Button ── */

.buy-button {
    display: inline-block;
    background: var(--orange);
    color: #ffffff;
    border: none;
    padding: 20px 52px;
    font-family: "JetBrains Mono", monospace;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: background 0.15s, transform 0.1s, box-shadow 0.2s;
    border-radius: 0;
    margin: 32px 0;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

/* corner accents on buy button */
.buy-button::before {
    content: "";
    position: absolute;
    top: 4px;
    right: 20px;
    width: 8px;
    height: 8px;
    border-top: 2px solid rgba(0,0,0,0.3);
    border-right: 2px solid rgba(0,0,0,0.3);
}

.buy-button::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 20px;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid rgba(0,0,0,0.3);
    border-left: 2px solid rgba(0,0,0,0.3);
}

.buy-button:hover {
    background: var(--orange-hover);
    text-decoration: none;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow:
        0 8px 24px rgba(231, 105, 46, 0.35),
        0 0 60px rgba(231, 105, 46, 0.1);
}

.buy-button:active {
    transform: translateY(0);
    box-shadow: none;
}

.buy-button:disabled {
    background: #222;
    color: #555;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    clip-path: none;
}

/* ── Buy Section ── */

.buy-section {
    margin-top: 16px;
    padding-top: 40px;
    position: relative;
}

/* ── Version Grid ── */

.version-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.version-card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 24px;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
    transition: border-color 0.2s;
    display: flex;
    flex-direction: column;
}

.version-card:hover {
    border-color: rgba(231, 105, 46, 0.3);
}

.version-name {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dim);
    margin: 0 0 8px;
}

.version-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--orange);
    display: block;
    margin-bottom: 20px;
}

.version-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex: 1;
}

.version-features li {
    font-size: 13px;
    color: var(--text);
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
    padding-left: 16px;
    position: relative;
}

.version-features li::before {
    content: "+";
    position: absolute;
    left: 0;
    color: var(--orange);
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    opacity: 0.6;
}

.version-features li:last-child {
    border-bottom: none;
}

/* ── Free Download Form ── */

.free-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.free-email {
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-bright);
    font-family: "JetBrains Mono", monospace;
    font-size: 13px;
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.15s;
}

.free-email::placeholder {
    color: var(--text-dim);
}

.free-email:focus {
    border-color: var(--orange);
}

.free-note {
    font-size: 11px;
    color: var(--text-dim);
    margin: 0;
    font-family: "JetBrains Mono", monospace;
}

.version-card .buy-button {
    width: 100%;
    text-align: center;
    margin: 0;
    font-size: 13px;
    padding: 14px 20px;
}

/* ── Quantity Selector ── */

.qty-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
}

.qty-btn {
    width: 36px;
    height: 36px;
    background: var(--surface);
    border: none;
    color: var(--text);
    font-size: 16px;
    font-family: "JetBrains Mono", monospace;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, color 0.15s;
    padding: 0;
}

.qty-btn:hover {
    background: var(--orange-dim);
    color: var(--orange);
}

.qty-value {
    width: 40px;
    text-align: center;
    font-family: "JetBrains Mono", monospace;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-bright);
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    line-height: 36px;
}

.qty-label {
    font-size: 11px;
    color: var(--text-dim);
    font-family: "JetBrains Mono", monospace;
    letter-spacing: 0.5px;
}

.buy-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 160px;
    height: 4px;
    background: var(--stripe);
}

/* small crosshair next to buy section */
.buy-section::after {
    content: "+";
    position: absolute;
    top: -8px;
    left: 172px;
    font-family: "JetBrains Mono", monospace;
    font-size: 16px;
    color: var(--orange);
    opacity: 0.4;
    line-height: 1;
}

.buy-note {
    font-size: 12px;
    color: var(--text-dim);
    margin: 0;
    letter-spacing: 0.5px;
}

.footer-price {
    color: var(--orange);
    font-family: "JetBrains Mono", monospace;
    font-weight: 700;
    font-size: 13px;
    margin-left: 8px;
}

/* ── Product Page Footer (more products) ── */

.product-page footer {
    border-top: none;
    margin-top: 80px;
    padding-top: 40px;
    position: relative;
}

.product-page footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--stripe);
}

.product-page footer ul {
    font-family: "Inter", sans-serif;
    list-style-type: none;
    padding: 0;
}

.product-page footer li {
    margin: 0;
    font-size: 14px;
    color: var(--text-dim);
    padding: 16px 0 16px 20px;
    border-bottom: 1px solid var(--border);
    border-left: 4px solid transparent;
    transition: border-color 0.2s, padding-left 0.2s, background 0.2s;
}

.product-page footer li:hover {
    border-left-color: var(--orange);
    padding-left: 28px;
    background: linear-gradient(90deg, var(--orange-dim) 0%, transparent 40%);
}

.product-page footer a {
    color: var(--text);
    transition: color 0.15s;
}

.product-page footer a:hover {
    color: var(--orange);
    text-decoration: none;
}

/* ── Product Carousel ── */

.product-carousel {
    cursor: grab;
    -webkit-user-select: none;
    user-select: none;
}

.product-carousel-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
}

.product-carousel-slide img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
}

.product-carousel-slide-video video {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
    background: #000;
}

/* play toggle for video slides */
.carousel-play-toggle {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(231, 105, 46, 0.5);
    color: var(--orange);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
    transition: background 0.15s;
    padding: 0;
    z-index: 3;
}

.carousel-play-toggle:hover {
    background: rgba(0, 0, 0, 0.9);
}

/* arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(231, 105, 46, 0.3);
    color: var(--orange);
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
    z-index: 3;
    padding: 0;
    transition: background 0.15s, border-color 0.15s;
    opacity: 0;
}

.product-carousel:hover .carousel-arrow {
    opacity: 1;
}

.carousel-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(231, 105, 46, 0.6);
}

.carousel-arrow-prev {
    left: 12px;
}

.carousel-arrow-next {
    right: 12px;
}

/* dots */
.carousel-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.carousel-dot {
    width: 24px;
    height: 4px;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: background 0.2s, width 0.2s;
    padding: 0;
    border: none;
    clip-path: none;
}

.carousel-dot.active {
    background: var(--orange);
    width: 40px;
}

/* slide counter */
.carousel-counter {
    position: absolute;
    top: 24px;
    right: 24px;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    z-index: 3;
    pointer-events: none;
    letter-spacing: 1px;
}
}

/* ── Success Page ── */

.success-page {
    width: 100%;
}

.success-page h1 {
    color: var(--text-bright);
}

.success-page h1::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: var(--stripe);
    margin-top: 20px;
}

/* ── Home ── */

.home {
    width: 100%;
    position: relative;
}

/* massive orange wedge bleed */
.home::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(ellipse at top right, rgba(231, 105, 46, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* diagonal slash across home section */
.home::after {
    content: "";
    position: absolute;
    top: 20px;
    right: 0;
    width: 200px;
    height: 3px;
    background: var(--orange);
    transform: rotate(-30deg);
    transform-origin: right center;
    opacity: 0.2;
    pointer-events: none;
}

.home > h1 {
    font-size: 64px;
    letter-spacing: -2px;
    position: relative;
    padding-left: 28px;
}

.home > h1::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 8px;
    background: var(--orange);
}

/* large rotated square */
.home > h1::after {
    content: "";
    position: absolute;
    right: -20px;
    top: 50%;
    width: 100px;
    height: 100px;
    border: 2px solid var(--orange);
    opacity: 0.08;
    transform: translateY(-50%) rotate(45deg);
    pointer-events: none;
}

.home > article {
    padding-bottom: 0;
}

.home > article p {
    font-size: 22px;
    color: var(--text-dim);
    font-family: "Space Grotesk", sans-serif;
    line-height: 1.6;
}

/* ── Shop listing ── */

.shop {
    width: 100%;
    position: relative;
}

.shop-category {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-dim);
    margin: 48px 0 20px;
    padding-left: 28px;
    position: relative;
}

.shop-category::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--orange);
    opacity: 0.4;
}

.shop > h1 {
    position: relative;
    padding-left: 28px;
    font-size: 52px;
}

.shop > h1::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 8px;
    background: var(--orange);
}

.shop > h1::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    width: 16px;
    height: 16px;
    background: var(--orange);
    transform: translateY(-50%) rotate(45deg);
    opacity: 0.3;
}

/* ── Page (about, etc) ── */

.post {
    width: 100%;
}

.post > h1 {
    position: relative;
    padding-left: 28px;
}

.post > h1::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 8px;
    background: var(--orange);
}

/* ── Site Footer ── */

.site-footer {
    margin-top: 120px;
    padding: 24px 0 0 0;
    font-size: 12px;
    color: #444;
    border-top: none;
    position: relative;
    width: 100%;
}

.site-footer .footer-inner {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 32px 32px;
}

.site-footer-bars {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    line-height: 0;
}

/* ── Tag / Badge ── */

.tag {
    display: inline-block;
    background: var(--blue-dim);
    color: var(--blue);
    padding: 3px 10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    border-left: 3px solid var(--blue);
    margin-right: 6px;
}

/* ── Responsive ── */

@media (max-width: 768px) {
    .wrapper {
        padding: 0 20px;
    }

    header {
        margin: 28px 0 56px 0;
    }

    h1 {
        font-size: 32px;
    }

    .home > h1 {
        font-size: 40px;
    }

    .home > h1::after,
    .home::after {
        display: none;
    }

    .home::before {
        width: 250px;
        height: 250px;
        right: -100px;
    }

    .product-detail::before {
        font-size: 200px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-meta .product-price {
        font-size: 24px;
    }

    .buy-button {
        width: 100%;
        text-align: center;
    }

    .product-hero {
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%);
    }

    .shop > h1 {
        font-size: 36px;
    }

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

    .product-carousel-slide img,
    .product-carousel-slide-video video {
        max-height: 320px;
    }

    .carousel-arrow {
        opacity: 1;
        width: 32px;
        height: 32px;
    }
}
