:root {
    --bg: #F2EFE9;
    --bg-2: #EFEBE2;
    --ink: #0A0A0A;
    --muted: #4A4A4A;
    --dim: #5A5A5A;
    --card: #FFFFFF;
    --card-2: #EFEBE2;
    --yellow: #FFD600;
    --mint: #3DDC97;
    --coral: #E63946;
    --navy: #1D4ED8;
    --white: #FFFFFF;
    --black: #0A0A0A;
    --brand-deep: #180161;
    --accent-ink: #0A0A0A;
    --line: 3px solid var(--black);
    --border-thick: 3px solid var(--black);
    --border-thick-2: 2px solid var(--black);
    --shadow: 6px 6px 0 var(--black);
    --shadow-sm: 4px 4px 0 var(--black);
    --shadow-push: 2px 2px 0 var(--black);
    --red: var(--black);
    --red-bright: var(--yellow);
    --red-border: var(--black);
    --red-subtle: rgba(10, 10, 10, 0.06);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    min-height: 100vh;
    overflow-x: hidden;
    background:
        radial-gradient(ellipse 70% 40% at 8% -5%, rgba(255, 214, 0, 0.18), transparent 60%),
        radial-gradient(ellipse 60% 40% at 100% 10%, rgba(61, 220, 151, 0.16), transparent 55%),
        radial-gradient(ellipse 60% 45% at 100% 100%, rgba(255, 107, 94, 0.14), transparent 55%),
        var(--bg);
    color: var(--ink);
    font-family: "Space Grotesk", sans-serif;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

button, a { -webkit-tap-highlight-color: transparent; }
button {
    font: inherit;
    border: 0;
    cursor: pointer;
}

.page {
    position: relative;
    z-index: 1;
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: 88px 24px 36px;
}

.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    min-height: 64px;
    display: flex;
    align-items: center;
    background: var(--coral);
    border-bottom: var(--border-thick);
}

.site-nav::after { content: none; }

.nav-inner {
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    text-decoration: none;
    min-width: max-content;
}

.logo-icon {
    width: 36px;
    height: 36px;
    border: var(--border-thick);
    box-shadow: var(--shadow-sm);
    background: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-icon img {
    display: block;
    width: 86%;
    height: 86%;
    object-fit: contain;
}

.logo-text {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-style: normal;
    color: var(--black);
}

.logo-text span {
    color: var(--brand-deep);
    font-style: normal;
}

.nav-menu-btn {
    display: none;
    width: 36px;
    height: 36px;
    border: var(--border-thick);
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow-push);
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    min-width: 0;
}

.nav-dropdown {
    position: relative;
    display: inline-block;
    margin-right: 8px;
}

.nav-dropdown .dropdown-toggle {
    background: none;
    border: var(--border-thick-2);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    font-size: 13px;
    color: var(--ink);
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: all 0.15s ease;
    white-space: nowrap;
}

.nav-dropdown .dropdown-toggle:hover {
    background: var(--white);
    box-shadow: var(--shadow-push);
    transform: translate(-2px, -2px);
}

.nav-dropdown .dropdown-toggle .fa-chevron-down {
    font-size: 10px;
    margin-top: 2px;
    transition: transform 0.2s;
    margin-left: 6px;
}

.nav-dropdown.open .dropdown-toggle .fa-chevron-down {
    transform: rotate(180deg);
}

.nav-dropdown .dropdown-content {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 240px;
    background: var(--white);
    border: var(--border-thick);
    box-shadow: var(--shadow);
    padding: 8px 6px;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s 0.2s;
    pointer-events: none;
    z-index: 1000;
    border-radius: 0;
}

.nav-dropdown.open .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s 0s;
}

.nav-dropdown .dropdown-content .nav-link {
    display: block;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    white-space: nowrap;
    transition: all 0.15s ease;
    text-decoration: none;
}

.dropdown-divider {
    height: 2px;
    background: var(--black);
    margin: 6px 10px;
}

.nav-dropdown .dropdown-content .nav-link:hover {
    background: var(--yellow);
}

.nav-dropdown .dropdown-content .nav-link.is-active {
    background: var(--black);
    color: var(--yellow);
}

@media (max-width: 760px) {
    .nav-dropdown {
        position: static;
        width: 100%;
    }

    .nav-dropdown .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        background: var(--white);
        margin-bottom: 8px;
        padding: 10px 12px;
    }

    .nav-dropdown .dropdown-content {
        position: static;
        width: 100%;
        box-shadow: none;
        border: none;
        background: var(--card);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        margin-bottom: 8px;
        padding: 0;
    }

    .nav-dropdown.open .dropdown-content {
        max-height: 500px;
        padding: 8px 0;
    }
}

.nav-link {
    color: var(--ink);
    padding: 8px 14px;
    font-size: 13px;
    text-decoration: none;
    position: relative;
    font-weight: 700;
    transition: all 0.15s ease;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border: var(--border-thick-2);
}

.nav-link::after { content: none; }

.nav-link:hover {
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow-push);
    transform: translate(-2px, -2px);
}

.nav-link.is-active {
    background: var(--black);
    color: var(--yellow);
}

.nav-cta,
.btn-primary {
    background: var(--coral);
    color: var(--white);
    border: var(--border-thick);
    box-shadow: var(--shadow-sm);
    transition: all 0.12s ease;
    border-radius: 0;
}

.nav-cta:hover,
.btn-primary:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow);
    background: var(--navy);
    color: var(--white);
}

.nav-cta:active,
.btn-primary:active {
    transform: translate(3px, 3px);
    box-shadow: var(--shadow-push);
}

.nav-cta { min-height: 36px; padding: 0 18px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.btn-primary,
.btn-ghost { min-height: 42px; padding: 0 20px; font-size: 13px; line-height: 36px; box-sizing: border-box; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; border-radius: 0; }
.btn-ghost {
    color: var(--ink);
    border: var(--border-thick);
    background: var(--white);
    box-shadow: var(--shadow);
    transition: all 0.12s ease;
}
.btn-ghost:hover { transform: translate(-2px, -2px); }
.btn-ghost:active { transform: translate(3px, 3px); box-shadow: var(--shadow-push); }

.section {
    position: relative;
    padding: 48px 0 8px;
}

.section + .section {
    margin-top: 24px;
    border-top: var(--border-thick-2);
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.section-tag {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 8px;
    border: var(--border-thick-2);
    background: var(--mint);
    color: var(--black);
    padding: 4px 10px;
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: var(--shadow-push);
}

.section-title {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--ink);
    text-shadow: none;
    width: fit-content;
}

.text-red { color: var(--ink); }

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

.product-card {
    min-width: 0;
    overflow: hidden;
    border: var(--border-thick);
    background: var(--card);
    color: var(--ink);
    text-decoration: none;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: all 0.12s ease;
    text-align: left;
    width: 100%;
    border-radius: 0;
}

.product-card:hover {
    transform: translate(-3px, -3px);
    border-color: var(--black);
    box-shadow: 9px 9px 0 var(--black);
}
.product-card:active { transform: translate(2px, 2px); box-shadow: var(--shadow-push); }

.product-media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--card-2);
    border-bottom: var(--border-thick);
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.product-card:hover .product-media img { transform: scale(1.04); }
.product-body { padding: 12px; }
.product-title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-style: normal;
}

.product-subtitle {
    color: var(--dim);
    font-family: "JetBrains Mono", monospace;
    font-size: 9px;
    line-height: 1.4;
    margin-top: 4px;
    min-height: 24px;
}

.product-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 10px;
}

.product-price {
    display: inline-flex;
    align-items: center;
    color: var(--black);
    background: var(--yellow);
    border: var(--border-thick);
    padding: 4px 9px;
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    border-radius: 0;
}

.product-link {
    color: var(--ink);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.upgrade-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: var(--border-thick);
    background: var(--card);
    padding: 26px 30px;
    box-shadow: var(--shadow);
}

.upgrade-title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    font-style: normal;
}

.upgrade-title span {
    background: var(--yellow);
    color: var(--black);
    padding: 0 6px;
    border: var(--border-thick-2);
}
.upgrade-sub {
    color: var(--muted);
    font-size: 12px;
    margin-top: 6px;
}

.social-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.social-pill {
    min-height: 38px;
    padding: 0 16px;
    border: var(--border-thick);
    background: var(--white);
    color: var(--ink);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
    transition: all 0.12s ease;
}

.social-pill:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow); }

.testi-combo {
    padding-top: 20px;
}

.testi-combo .testimonial-head {
    margin-bottom: 10px;
}

.testi-combo .stats-grid {
    margin-bottom: 12px;
}

.testimonial-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.verified-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 8px;
    border: var(--border-thick-2);
    background: var(--mint);
    color: var(--black);
    padding: 4px 10px;
    font-family: "JetBrains Mono", monospace;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: var(--shadow-push);
}

.testimonial-title {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 32px;
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.testimonial-sub {
    color: var(--dim);
    font-size: 12px;
    margin-top: 5px;
}

.testimonial-more {
    min-height: 38px;
    padding: 0 16px;
    border: var(--border-thick);
    background: var(--white);
    color: var(--ink);
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
    transition: all 0.12s ease;
}
.testimonial-more:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow); }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 26px;
}

.stat-card {
    border: var(--border-thick);
    background: var(--card);
    padding: 18px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.stat-card:nth-child(1) { background: var(--yellow); color: var(--black); }
.stat-card:nth-child(2) { background: var(--navy); color: var(--white); }
.stat-card:nth-child(3) { background: var(--yellow); color: var(--black); }
.stat-card:nth-child(2) .stat-num,
.stat-card:nth-child(2) .stat-label { color: var(--white); }

.stat-num {
    color: var(--ink);
    font-family: "Space Grotesk", sans-serif;
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
}

.stat-label {
    margin-top: 6px;
    color: var(--ink);
    font-family: "JetBrains Mono", monospace;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.testi-scroll {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 4px 0 18px;
    scrollbar-width: thin;
    scrollbar-color: var(--black) transparent;
}

.testi-card {
    flex: 0 0 220px;
    height: 190px;
    position: relative;
    overflow: hidden;
    background: var(--card-2);
    cursor: pointer;
    border: var(--border-thick);
    box-shadow: var(--shadow-sm);
}

.testi-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testi-overlay {
    position: absolute;
    inset: 0;
    border: var(--border-thick-2);
    pointer-events: none;
}

.testi-info {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    color: var(--ink);
    font-family: "Space Grotesk", sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--yellow);
    border: var(--border-thick-2);
    padding: 3px 7px;
    width: fit-content;
}

.testi-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.testi-verified-dot {
    width: 8px;
    height: 8px;
    background: var(--black);
    border-radius: 50%;
}

.modal-overlay,
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(10, 10, 10, 0.72);
}

.modal-overlay.open,
.lightbox.open { display: flex; }

#contact-modal,
.lightbox {
    z-index: 240;
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 10;
    width: 42px;
    height: 42px;
    border: var(--border-thick);
    background: var(--coral);
    color: var(--white);
    box-shadow: var(--shadow-sm);
    border-radius: 0;
    transition: all 0.12s ease;
}
.modal-close:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow); }

.contact-box,
.product-modal {
    width: min(760px, 100%);
    max-height: 90vh;
    overflow: auto;
    position: relative;
    border: var(--border-thick);
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: 0;
}

.contact-box {
    width: min(420px, 100%);
    padding: 24px;
}

.contact-title {
    margin-bottom: 16px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
}

.contact-list {
    display: grid;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    border: var(--border-thick);
    background: var(--card-2);
    color: var(--ink);
    padding: 13px;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: var(--shadow-push);
    transition: all 0.12s ease;
}
.contact-item:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-sm); }

.lightbox img {
    max-width: min(920px, 96vw);
    max-height: 88vh;
    object-fit: contain;
    border: var(--border-thick);
    background: var(--white);
}

footer {
    position: relative;
    z-index: 1;
    border-top: var(--border-thick);
    background: var(--black);
    color: var(--white);
    padding: 22px 24px;
    text-align: center;
    font-family: "Space Grotesk", sans-serif;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@media (min-width: 640px) {
    .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .project-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
    .product-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
    .site-nav { min-height: 56px; }
    .nav-inner { padding: 0 14px; }
    .logo-icon { width: 30px; height: 30px; }
    .logo-text { font-size: 18px; letter-spacing: 0.05em; }
    .nav-menu-btn { display: inline-flex; align-items: center; justify-content: center; }
    .nav-links {
        position: absolute;
        left: 14px;
        right: 14px;
        top: calc(100% + 8px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        border: var(--border-thick);
        background: var(--white);
        padding: 8px;
        box-shadow: var(--shadow);
    }
    .site-nav.nav-open .nav-links { display: flex; }
    .nav-link, .nav-cta { width: 100%; min-height: 36px; font-size: 11px; }
    .page { padding: 68px 12px 28px; }
    .home-hero { padding: 28px 16px 24px; }
    .home-hero h1 { font-size: clamp(34px, 12vw, 48px); }
    .home-actions { margin-top: 14px; }
    .home-stats { margin-top: 18px; }
    .section { padding: 32px 0 8px; }
    .section-header { align-items: flex-start; flex-direction: column; }
    .section-title { font-size: 26px; }
    .upgrade-banner { align-items: flex-start; flex-direction: column; padding: 20px 16px; }
    .upgrade-title { font-size: 18px; }
    .social-pills { width: 100%; }
    .social-pill { flex: 1 1 calc(50% - 8px); }
    .testimonial-head { display: grid; grid-template-columns: 1fr; gap: 10px; margin-bottom: 14px; }
    .testimonial-title { font-size: 23px; }
    .testimonial-sub { font-size: 10px; }
    .testimonial-more { width: 100%; min-height: 36px; }
    .stats-grid { gap: 8px; margin-bottom: 18px; }
    .stat-card { padding: 10px 5px; }
    .stat-num { font-size: 26px; }
    .stat-label { font-size: 8px; }
    .testi-card { flex-basis: 188px; height: 164px; }
    .modal-overlay, .lightbox { padding: 12px; }
}

@media (max-width: 390px) {
    .product-grid { gap: 12px; }
    .product-body { padding: 10px; }
    .product-title { font-size: 12px; }
    .product-subtitle { font-size: 8px; min-height: 22px; }
    .product-price { font-size: 9px; padding: 0; }
}

/* ============================================
   Project Cards
   ============================================ */

.project-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.project-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 230px;
    overflow: hidden;
    border: var(--border-thick);
    background: var(--card);
    color: var(--ink);
    text-decoration: none;
    box-shadow: var(--shadow);
    transition: all 0.12s ease;
}

.project-card:hover {
    border-color: var(--black);
    box-shadow: 9px 9px 0 var(--black);
    transform: translate(-3px, -3px);
}

.project-card-top {
    position: relative;
    height: 96px;
    background: var(--card-2);
    border-bottom: var(--border-thick);
}

.project-card-top::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(10,10,10,0.10) 25%, rgba(10,10,10,0.55) 100%);
}

.project-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: transform 0.3s ease;
}

.project-card:hover .project-card-img {
    transform: scale(1.04);
}

.project-num {
    position: absolute;
    top: 12px;
    right: 14px;
    z-index: 1;
    background: var(--white);
    border: var(--border-thick-2);
    padding: 2px 7px;
    color: var(--ink);
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.project-icon {
    position: absolute;
    left: 18px;
    bottom: -28px;
    z-index: 2;
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: var(--border-thick);
    box-shadow: var(--shadow-sm);
    background: var(--yellow);
    color: var(--black);
    font-size: 22px;
}

.project-card:nth-child(2) .project-icon { background: var(--navy); color: var(--white); }
.project-card:nth-child(3) .project-icon { background: var(--mint); color: var(--black); }

.project-body {
    min-width: 0;
    padding: 44px 18px 16px;
}

.project-name {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 32px;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.project-desc {
    min-height: 34px;
    margin-top: 8px;
    color: var(--dim);
    font-size: 12px;
    line-height: 1.4;
}

.project-foot {
    margin-top: auto;
    padding: 13px 18px;
    border-top: var(--border-thick);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--card-2);
    color: var(--ink);
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 700;
}

.project-pill {
    padding: 4px 10px;
    background: var(--black);
    color: var(--yellow);
    border: var(--border-thick-2);
}

.project-arrow {
    color: var(--ink);
    font-size: 16px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.project-card:hover .project-arrow {
    transform: translateX(5px);
}

@media (max-width: 760px) {
    .project-list {
        grid-template-columns: 1fr;
    }
}

.home-hero {
    text-align: center;
    padding: 28px 28px 24px;
    border: none;
    background: transparent;
    box-shadow: none;
}

.home-hero h1 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(46px, 8vw, 80px);
    font-weight: 900;
    line-height: 0.92;
    text-transform: uppercase;
    color: var(--black);
}

.home-hero h1 span {
    color: var(--brand-deep);
}

.home-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
}

.home-actions .btn-primary,
.home-actions .btn-ghost {
    min-height: 42px;
    padding: 0 18px;
    font-size: 13px;
}

.home-stats {
    display: flex;
    gap: 12px;
    margin-top: 22px;
    justify-content: center;
}

.metric {
    border: var(--border-thick);
    background: var(--card);
    padding: 12px;
    box-shadow: var(--shadow-sm);
}

.metric:nth-child(2) { background: var(--navy); color: var(--white); }
.metric:nth-child(3) { background: var(--yellow); color: var(--black); }
.metric:nth-child(2) strong,
.metric:nth-child(2) span { color: var(--white); }

.metric strong {
    display: block;
    color: var(--ink);
    font-family: "Space Grotesk", sans-serif;
    font-size: 26px;
    line-height: 1;
}

.metric span {
    display: block;
    margin-top: 4px;
    color: var(--ink);
    font-family: "JetBrains Mono", monospace;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.category-product-section {
    border: var(--border-thick);
    background: var(--card);
    padding: 14px;
    box-shadow: var(--shadow-sm);
}

.category-product-section + .category-product-section { margin-top: 20px; }

.category-product-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.category-product-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-product-title h3 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.category-product-title span {
    display: inline-block;
    margin-top: 3px;
    color: var(--dim);
    font-family: "Space Grotesk", sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}