*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg: #0a0a0a;
    --surface: #111111;
    --surface2: #161616;
    --border: #1f1f1f;
    --border-hover: #e01a1a;
    --text: #f0ece4;
    --text-muted: #555;
    --red: #e01a1a;
    --red-dim: #8a1010;
    --white: #f0ece4;
    --card-radius: 2px;
    --gap: 10px;
}

html { font-size: 16px; scroll-behavior: smooth; }

/* ─── PAGE LOAD ANIMATION ────────────────────── */
body {
    opacity: 0;
    animation: pageReveal 0.5s ease 0.1s forwards;
}

@keyframes pageReveal {
    to { opacity: 1; }
}

/* ticker slides down on load */
.ticker {
    transform: translateY(-100%);
    animation: tickerReveal 0.5s ease 0.2s forwards;
}

@keyframes tickerReveal {
    to { transform: translateY(0); }
}

/* header slides down */
.header {
    transform: translateY(-100%);
    animation: headerReveal 0.5s cubic-bezier(0.4,0,0.2,1) 0.3s forwards;
}

@keyframes headerReveal {
    to { transform: translateY(0); }
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    /* subtle noise texture */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' 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='0.03'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ─── HEADER ─────────────────────────────────── */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    cursor: pointer;
    letter-spacing: 0.08em;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    transition: color 0.2s;
}

.header-btn:hover { color: var(--white); }

.header-btn sup {
    font-size: 9px;
    color: var(--red);
    font-family: 'Space Mono', monospace;
}

/* ─── LOGO ─────────────────────────────────── */
.logo-link {
    display: flex;
    gap: 2px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 0.06em;
    overflow: hidden;
    height: 34px;
    color: var(--white);
}

.flipper-digit {
    position: relative;
    overflow: hidden;
    width: 18px;
    height: 34px;
}

.flipper-digit span {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(110%);
    transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.flipper-digit span.visible { transform: translateY(0); }

/* red dot after logo */
.logo-dot {
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    align-self: flex-end;
    margin-bottom: 7px;
    margin-left: 2px;
    opacity: 0;
    transition: opacity 0.3s ease 0.7s;
}
.logo-dot.visible { opacity: 1; }

/* ─── NAV PANEL ─────────────────────────────── */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 200;
}

.nav-panel {
    position: fixed;
    top: 0; left: 0;
    width: 300px;
    height: 100%;
    background: var(--surface);
    border-right: 1px solid var(--border);
    z-index: 201;
    padding: 28px 28px 44px;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}

.nav-panel.open { transform: translateX(0); }
.nav-overlay.open { display: block; }

.nav-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 20px;
    cursor: pointer;
    align-self: flex-end;
    margin-bottom: 40px;
    transition: color 0.2s;
}
.nav-close:hover { color: var(--red); }

.nav-links { list-style: none; flex: 1; }
.nav-links li + li { margin-top: 2px; }

.nav-links a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 0.04em;
    padding: 6px 0;
    display: block;
    color: var(--border-hover);
    opacity: 0.25;
    transition: opacity 0.2s, color 0.2s;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--white);
}

.badge {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    font-size: 8px;
    font-family: 'Space Mono', monospace;
    padding: 2px 5px;
    border-radius: 1px;
    margin-left: 8px;
    vertical-align: middle;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.nav-bottom {
    margin-top: 40px;
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

.nav-bottom p {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.nav-social {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.nav-social a {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: var(--text-muted);
    transition: color 0.2s;
    letter-spacing: 0.04em;
}

.nav-social a:hover { color: var(--white); }

/* ─── LAYOUT ─────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex: 1;
}

.page { flex: 1; padding: 16px 0; }

/* ─── GRID ───────────────────────────────────── */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
}

@media (max-width: 900px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid { grid-template-columns: 1fr; } }

/* ─── CARDS ──────────────────────────────────── */
.card {
    background: var(--surface);
    border-radius: var(--card-radius);
    overflow: hidden;
    border: 1px solid var(--border);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease forwards;
    transition: border-color 0.3s, transform 0.3s;
    position: relative;
}

/* red bottom line that grows on hover */
.card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.35s cubic-bezier(0.4,0,0.2,1);
    z-index: 2;
}

.card:hover::after { width: 100%; }
.card:hover { border-color: #2a2a2a; transform: translateY(-3px); }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.card:nth-child(1)  { animation-delay: 0.00s; }
.card:nth-child(2)  { animation-delay: 0.06s; }
.card:nth-child(3)  { animation-delay: 0.12s; }
.card:nth-child(4)  { animation-delay: 0.18s; }
.card:nth-child(5)  { animation-delay: 0.24s; }
.card:nth-child(6)  { animation-delay: 0.30s; }
.card:nth-child(7)  { animation-delay: 0.36s; }
.card:nth-child(8)  { animation-delay: 0.42s; }
.card:nth-child(9)  { animation-delay: 0.48s; }
.card:nth-child(10) { animation-delay: 0.54s; }

/* ─── WIDE INTRO CARD ────────────────────────── */
.card-wide {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 40px 44px;
    background: var(--surface2);
    min-height: 160px;
    position: relative;
    overflow: hidden;
}

/* red left border accent */
.card-wide::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--red);
}

.card-wide-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px;
    letter-spacing: 0.04em;
    line-height: 1;
    margin-bottom: 14px;
}

.card-wide-content h2 .brand { color: var(--white); }
.card-wide-content h2 .tagline { color: var(--red); }

.card-wide-content p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 460px;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.card-wide-meta {
    text-align: right;
    flex-shrink: 0;
}

.card-wide-meta span {
    display: block;
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.card-wide-meta strong {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: var(--red);
    letter-spacing: 0.06em;
}

/* ─── HERO CARD ──────────────────────────────── */
.card-hero {
    grid-column: span 2;
    position: relative;
    min-height: 380px;
    cursor: pointer;
}

@media (max-width: 560px) {
    .card-hero { grid-column: span 1; min-height: 260px; }
}

.card-media {
    position: relative;
    overflow: hidden;
}

.card-media .card-image-wrap {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.card-hero .card-image-wrap {
    aspect-ratio: unset;
    height: 100%;
    min-height: 380px;
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.card:hover .card-media img { transform: scale(1.08); }

.img-hover {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card:hover .img-hover { opacity: 1; }

.card-info {
    padding: 12px 14px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    transform: translateY(4px);
    transition: transform 0.3s ease;
}

.card:hover .card-info { transform: translateY(0); }

.card-title {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.04em;
}

.card-title .id {
    color: var(--red);
    margin-right: 8px;
    font-size: 10px;
}

.card-title .name { color: var(--white); }

.card-price {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: var(--text-muted);
}

.card-hero .card-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px 22px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    border-top: none;
}

.card-hero .card-title .name { font-size: 14px; }

/* ─── FILTER BAR ─────────────────────────────── */
.filter-bar {
    grid-column: 1 / -1;
    display: flex;
    gap: 6px;
    padding: 4px 0;
}

.filter-btn {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 1px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.15s;
}

.filter-btn.active {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.filter-btn.ghost {
    background: transparent;
    color: var(--text-muted);
    border-color: var(--border);
}

.filter-btn.ghost:hover {
    color: var(--white);
    border-color: #333;
}

/* ─── FOOTER ─────────────────────────────────── */
.footer {
    border-top: 1px solid var(--border);
    padding: 32px 20px;
    margin-top: 40px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.newsletter-label {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
}

.newsletter-label svg { flex-shrink: 0; color: var(--red); }

.newsletter-form { display: flex; gap: 6px; }

.newsletter-input {
    background: var(--surface);
    border: 1px solid var(--border);
    color:#e01a1a;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    padding: 9px 14px;
    border-radius: 1px;
    outline: none;
    width: 210px;
    transition: border-color 0.2s;
    letter-spacing: 0.04em;
}

.newsletter-input:focus { border-color: var(--red); }
.newsletter-input::placeholder { color: var(--text-muted); }

.newsletter-btn {
    background: var(--red);
    color: var(--white);
    border: none;
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 9px 18px;
    border-radius: 1px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.newsletter-btn:hover { opacity: 0.85; }

.payment-logos {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
}

.payment-logo {
    height: 22px;
    width: auto;
    opacity: 0.35;
    transition: opacity 0.2s;
}

.payment-logo:hover { opacity: 0.7; }

.footer-copy {
    width: 100%;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy span {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.footer-copy .red { color: var(--red); }

/* ─── CUSTOM CURSOR ──────────────────────────── */
@media (hover: hover) {
    body { cursor: none; }
    a, button { cursor: none; }

    #cursor {
    width: 7px;
    height: 7px;
    background: var(--red);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    top: 0; left: 0;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, opacity 0.2s, background 0.2s;
    mix-blend-mode: normal;
    }

    #cursor.hover {
    width: 30px;
    height: 30px;
    background: transparent;
    border: 1.5px solid var(--red);
    opacity: 0.8;
    }
}

/* ─── DROP TICKER ────────────────────────────── */
.ticker {
    background: var(--red);
    overflow: hidden;
    height: 28px;
    display: flex;
    align-items: center;
}

.ticker-track {
    display: flex;
    gap: 0;
    animation: ticker 18s linear infinite;
    white-space: nowrap;
}

.ticker-track span {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    padding: 0 28px;
}

.ticker-track span::before {
    content: '◆';
    margin-right: 12px;
    opacity: 0.6;
}

@keyframes ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}