/* ============================================================
   ZeitCrimes — Crimes That Changed The Nation
   Host: Rene Hinojosa
   Brand: #cb3131 (blood red) / #f6f2f2 (bone) on dark
   Font: Space Grotesk
   ============================================================ */
:root {
    --red: #cb3131;
    --red-deep: #8f1f1f;
    --red-glow: rgba(203, 49, 49, 0.55);
    --bone: #f6f2f2;
    --bg: #0a0807;
    --bg-2: #100b0a;
    --panel: #15100f;
    --panel-2: #1c1514;
    --line: rgba(246, 242, 242, 0.10);
    --muted: #9a8c8c;
    --muted-2: #6f6363;
    --font: "Space Grotesk", "Segoe UI", system-ui, -apple-system, sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --maxw: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--bone);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* ---------- Global texture / grain / vignette ---------- */
body::before {
    /* film grain */
    content: "";
    position: fixed;
    inset: -50%;
    z-index: 9998;
    pointer-events: none;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    animation: grain 0.6s steps(2) infinite;
}

body::after {
    /* scanlines + vignette */
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9997;
    pointer-events: none;
    background: repeating-linear-gradient(to bottom, rgba(0,0,0,0) 0 2px, rgba(0,0,0,0.10) 2px 4px),
    radial-gradient(120% 90% at 50% 10%, transparent 40%, rgba(0,0,0,0.55) 100%);
}

@keyframes grain {
    0% {
        transform: translate(0,0);
    }

    25% {
        transform: translate(-4%, 3%);
    }

    50% {
        transform: translate(3%, -2%);
    }

    75% {
        transform: translate(-2%, 4%);
    }

    100% {
        transform: translate(2%, -3%);
    }
}

::selection {
    background: var(--red);
    color: var(--bone);
}

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

img {
    max-width: 100%;
    display: block;
}

/* ---------- Layout helpers ---------- */
.wrap {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 110px 0;
    position: relative;
}

.section--alt {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.74rem;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 600;
    margin-bottom: 18px;
}

.eyebrow::before {
    content: "";
    width: 32px;
    height: 1px;
    background: var(--red);
    display: inline-block;
}

.h-sec {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -0.02em;
    margin-bottom: 22px;
}

.lede {
    color: var(--muted);
    font-size: 1.08rem;
    max-width: 60ch;
}

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

/* ---------- Buttons ---------- */
.btn {
    --b: var(--red);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 1px solid var(--b);
    color: var(--bone);
    background: transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.4s var(--ease), transform 0.2s var(--ease);
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--b);
    transform: translateY(101%);
    transition: transform 0.4s var(--ease);
    z-index: -1;
}

.btn:hover::before {
    transform: translateY(0);
}

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

.btn--solid {
    background: var(--red);
    border-color: var(--red);
}

.btn--solid::before {
    background: var(--bone);
}

.btn--solid:hover {
    color: var(--bg);
}

.btn span,
.btn svg {
    position: relative;
    z-index: 1;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background 0.4s var(--ease), border-color 0.4s var(--ease), padding 0.4s var(--ease);
    border-bottom: 1px solid transparent;
    padding: 18px 0;
}

.nav.scrolled {
    background: rgba(10, 8, 7, 0.82);
    backdrop-filter: blur(14px);
    border-bottom-color: var(--line);
    padding: 12px 0;
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.01em;
}

.brand__mark {
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
}

.brand b {
    color: var(--red);
}

.brand small {
    display: block;
    font-size: 0.58rem;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav__links a {
    font-size: 0.86rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

.nav__links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    height: 2px;
    width: 0;
    background: var(--red);
    transition: width 0.3s var(--ease);
}

.nav__links a:hover,
.nav__links a.active {
    color: var(--bone);
}

.nav__links a:hover::after,
.nav__links a.active::after {
    width: 100%;
}

.nav__cta {
    margin-left: 6px;
}

.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 24px;
    position: relative;
}

.burger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--bone);
    transition: 0.3s var(--ease);
}

.burger span:nth-child(1) {
    top: 2px;
}

.burger span:nth-child(2) {
    top: 11px;
}

.burger span:nth-child(3) {
    top: 20px;
}

.burger.open span:nth-child(1) {
    top: 11px;
    transform: rotate(45deg);
}

.burger.open span:nth-child(2) {
    opacity: 0;
}

.burger.open span:nth-child(3) {
    top: 11px;
    transform: rotate(-45deg);
}

/* mobile drawer */
.drawer {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(8,6,6,0.97);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 26px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease), visibility 0.4s;
}

.drawer.open {
    opacity: 1;
    visibility: visible;
}

.drawer a {
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--bone);
}

.drawer a:hover {
    color: var(--red);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 90px;
    background: radial-gradient(80% 60% at 80% 20%, rgba(203,49,49,0.16), transparent 60%),
    radial-gradient(60% 50% at 10% 90%, rgba(203,49,49,0.08), transparent 60%),
    var(--bg);
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.hero__rec {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 26px;
    font-size: 0.74rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
}

.hero__rec .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--red);
    animation: blink 1.4s infinite;
    box-shadow: 0 0 12px var(--red-glow);
}

@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.15;
    }
}

.hero h1 {
    font-size: clamp(3rem, 9vw, 7rem);
    font-weight: 700;
    line-height: 0.92;
    letter-spacing: -0.04em;
    margin-bottom: 22px;
}

.glitch {
    position: relative;
    display: inline-block;
    color: var(--bone);
}

.glitch[data-text]::before,
.glitch[data-text]::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    clip-path: inset(0 0 0 0);
}

.glitch[data-text]::before {
    color: var(--red);
    animation: glitchTop 3.6s infinite steps(2);
    transform: translate(-2px,-2px);
    opacity: 0.85;
}

.glitch[data-text]::after {
    color: #2bd6d6;
    animation: glitchBot 3.2s infinite steps(2);
    transform: translate(2px,2px);
    opacity: 0.5;
    mix-blend-mode: screen;
}

@keyframes glitchTop {
    0%,
    88%,
    100% {
        clip-path: inset(0 0 100% 0);
        transform: translate(0);
    }

    90% {
        clip-path: inset(0 0 40% 0);
        transform: translate(-3px,-2px);
    }

    93% {
        clip-path: inset(0 0 65% 0);
        transform: translate(3px,1px);
    }

    96% {
        clip-path: inset(0 0 20% 0);
        transform: translate(-2px,2px);
    }
}

@keyframes glitchBot {
    0%,
    86%,
    100% {
        clip-path: inset(100% 0 0 0);
        transform: translate(0);
    }

    89% {
        clip-path: inset(55% 0 0 0);
        transform: translate(3px,2px);
    }

    92% {
        clip-path: inset(30% 0 0 0);
        transform: translate(-3px,-1px);
    }

    95% {
        clip-path: inset(70% 0 0 0);
        transform: translate(2px,-2px);
    }
}

.hero .tagline {
    font-size: clamp(1.05rem, 2.4vw, 1.5rem);
    color: var(--bone);
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-bottom: 14px;
}

.hero .tagline .text-red {
    font-style: italic;
}

.hero__sub {
    color: var(--muted);
    max-width: 46ch;
    margin-bottom: 34px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.hero__host {
    margin-top: 36px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--muted);
    font-size: 0.9rem;
}

.hero__host .line {
    width: 40px;
    height: 1px;
    background: var(--line);
}

.hero__host b {
    color: var(--bone);
}

/* floating dust particles */
.particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.particles i {
    position: absolute;
    bottom: -10px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--red);
    opacity: 0.4;
    animation: rise linear infinite;
}

@keyframes rise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-100vh) scale(0.3);
        opacity: 0;
    }
}

/* ---------- DISTRESSED CLOCK ---------- */
.clock-stage {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.clock-stage::after {
    content: "";
    position: absolute;
    width: 78%;
    height: 78%;
    border-radius: 50%;
    background: radial-gradient(circle, var(--red-glow), transparent 70%);
    filter: blur(40px);
    animation: pulseGlow 4s ease-in-out infinite;
    z-index: 0;
}

@keyframes pulseGlow {
    0%,
    100% {
        opacity: 0.4;
        transform: scale(0.92);
    }

    50% {
        opacity: 0.85;
        transform: scale(1.05);
    }
}

.clock {
    width: min(440px, 78vw);
    height: auto;
    position: relative;
    z-index: 1;
    animation: sway 8s ease-in-out infinite;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6));
}

@keyframes sway {
    0%,
    100% {
        transform: rotate(-1.2deg);
    }

    50% {
        transform: rotate(1.2deg);
    }
}

.clock .hand {
    transform-origin: 200px 200px;
}

.clock .hand--hour {
    animation: spin 43200s linear infinite;
}

.clock .hand--min {
    animation: spin 3600s linear infinite;
}

.clock .hand--sec {
    animation: tick 60s steps(60) infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes tick {
    to {
        transform: rotate(360deg);
    }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--panel);
    overflow: hidden;
    padding: 18px 0;
    white-space: nowrap;
}

.marquee__track {
    display: inline-flex;
    gap: 50px;
    animation: scrollX 28s linear infinite;
}

.marquee:hover .marquee__track {
    animation-play-state: paused;
}

.marquee span {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    display: inline-flex;
    align-items: center;
    gap: 50px;
}

.marquee span::after {
    content: "✦";
    color: var(--red);
}

@keyframes scrollX {
    to {
        transform: translateX(-50%);
    }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: center;
}

.about__photo {
    position: relative;
    aspect-ratio: 4/5;
    border: 1px solid var(--line);
    background: repeating-linear-gradient(135deg, rgba(203,49,49,0.06) 0 12px, transparent 12px 24px),
    linear-gradient(160deg, var(--panel-2), var(--bg));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about__photo .mic {
    width: 50%;
    opacity: 0.85;
}

.about__photo .badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
}

.about__photo .badge b {
    color: var(--red);
    display: block;
    font-size: 1.05rem;
    letter-spacing: 0.04em;
}

.signature {
    font-size: 1.6rem;
    color: var(--red);
    font-style: italic;
    margin-top: 18px;
    opacity: 0.9;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 40px;
}

.stat {
    border: 1px solid var(--line);
    padding: 22px;
    background: var(--panel);
}

.stat b {
    display: block;
    font-size: 2.2rem;
    color: var(--red);
    line-height: 1;
}

.stat small {
    color: var(--muted);
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

/* ============================================================
   CARDS / EPISODES / SEASONS
   ============================================================ */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.card {
    border: 1px solid var(--line);
    background: var(--panel);
    padding: 26px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease), border-color 0.4s, background 0.4s;
}

.card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--red);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s var(--ease);
}

.card:hover {
    transform: translateY(-6px);
    border-color: rgba(203,49,49,0.4);
    background: var(--panel-2);
}

.card:hover::before {
    transform: scaleY(1);
}

.ep {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

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

.ep__no {
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 600;
}

.ep__len {
    font-size: 0.78rem;
    color: var(--muted);
}

.ep__title {
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.2;
}

.ep__desc {
    color: var(--muted);
    font-size: 0.94rem;
}

.ep__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 6px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.ep__date {
    font-size: 0.8rem;
    color: var(--muted-2);
    letter-spacing: 0.08em;
}

.play {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--bone);
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
}

.play .ico {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--red);
    display: grid;
    place-items: center;
    transition: 0.3s var(--ease);
}

.play:hover .ico {
    background: var(--red);
    transform: scale(1.08);
}

.play:hover {
    color: var(--red);
}

/* mini waveform */
.wave {
    display: inline-flex;
    align-items: flex-end;
    gap: 3px;
    height: 22px;
}

.wave i {
    width: 3px;
    background: var(--red);
    border-radius: 2px;
    animation: eq 1s ease-in-out infinite;
}

.wave i:nth-child(2) {
    animation-delay: .15s;
}

.wave i:nth-child(3) {
    animation-delay: .3s;
}

.wave i:nth-child(4) {
    animation-delay: .45s;
}

.wave i:nth-child(5) {
    animation-delay: .1s;
}

@keyframes eq {
    0%,
    100% {
        height: 5px;
    }

    50% {
        height: 20px;
    }
}

.season {
    border: 1px solid var(--line);
    background: var(--panel);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
    transition: 0.4s var(--ease);
}

.season:hover {
    border-color: rgba(203,49,49,0.45);
    transform: translateY(-5px);
}

.season__num {
    font-size: 4rem;
    font-weight: 700;
    color: rgba(203,49,49,0.18);
    line-height: 1;
    position: absolute;
    top: 14px;
    right: 22px;
}

.season__tag {
    font-size: 0.74rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--red);
}

.season h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.season p {
    color: var(--muted);
    font-size: 0.95rem;
}

.season ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 6px;
}

.season li {
    color: var(--muted);
    font-size: 0.9rem;
    display: flex;
    gap: 10px;
    align-items: baseline;
}

.season li::before {
    content: "›";
    color: var(--red);
}

.season__meta {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--muted-2);
    letter-spacing: 0.08em;
}

/* ============================================================
   PATREON
   ============================================================ */
.patreon {
    position: relative;
}

.tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.tier {
    border: 1px solid var(--line);
    background: var(--panel);
    padding: 34px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    transition: 0.4s var(--ease);
}

.tier:hover {
    transform: translateY(-8px);
    border-color: rgba(203,49,49,0.5);
}

.tier--feat {
    border-color: var(--red);
    background: linear-gradient(180deg, rgba(203,49,49,0.12), var(--panel));
}

.tier__flag {
    position: absolute;
    top: 0;
    right: 24px;
    transform: translateY(-50%);
    background: var(--red);
    color: var(--bg);
    font-size: 0.66rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 6px 12px;
    color: var(--bone);
}

.tier h3 {
    font-size: 1.3rem;
    font-weight: 600;
}

.tier .price {
    font-size: 2.6rem;
    font-weight: 700;
}

.tier .price small {
    font-size: 0.9rem;
    color: var(--muted);
    font-weight: 400;
}

.tier ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 8px 0 20px;
}

.tier li {
    color: var(--muted);
    font-size: 0.92rem;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.tier li svg {
    flex: 0 0 auto;
    margin-top: 4px;
}

.tier .btn {
    margin-top: auto;
    justify-content: center;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: start;
}

.contact__list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 30px;
}

.contact__item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact__item .ic {
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    color: var(--red);
    flex: 0 0 auto;
}

.contact__item small {
    color: var(--muted-2);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.72rem;
}

.contact__item b {
    display: block;
    font-weight: 500;
    font-size: 1.02rem;
}

.form {
    display: grid;
    gap: 18px;
}

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

.row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.field label {
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
}

.field input,
.field select,
.field textarea {
    font-family: var(--font);
    background: var(--panel);
    border: 1px solid var(--line);
    color: var(--bone);
    padding: 14px 16px;
    font-size: 0.96rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}

.field textarea {
    resize: vertical;
    min-height: 130px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(203,49,49,0.15);
}

.field input.invalid,
.field textarea.invalid {
    border-color: var(--red);
}

.err {
    color: var(--red);
    font-size: 0.78rem;
    min-height: 1em;
}

.form__note {
    color: var(--muted-2);
    font-size: 0.82rem;
}

.form-success {
    border: 1px solid var(--red);
    background: rgba(203,49,49,0.1);
    padding: 16px 18px;
    color: var(--bone);
    font-size: 0.95rem;
    display: none;
}

.form-success.show {
    display: block;
    animation: fadeUp 0.5s var(--ease);
}

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.pagehead {
    padding: 180px 0 70px;
    position: relative;
    background: radial-gradient(70% 120% at 80% 0%, rgba(203,49,49,0.14), transparent 60%),
    var(--bg);
    border-bottom: 1px solid var(--line);
}

.pagehead h1 {
    font-size: clamp(2.6rem, 7vw, 5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
}

.pagehead p {
    color: var(--muted);
    margin-top: 16px;
    max-width: 60ch;
}

.crumbs {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted-2);
    margin-bottom: 18px;
}

.crumbs a:hover {
    color: var(--red);
}

/* legal / prose */
.prose {
    max-width: 820px;
}

.prose h2 {
    font-size: 1.5rem;
    margin: 42px 0 14px;
    font-weight: 600;
}

.prose h2 .num {
    color: var(--red);
    margin-right: 12px;
}

.prose p {
    color: var(--muted);
    margin-bottom: 16px;
}

.prose ul {
    color: var(--muted);
    margin: 0 0 16px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.prose a {
    color: var(--red);
}

.prose strong {
    color: var(--bone);
}

.updated {
    color: var(--muted-2);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
}

/* filter chips */
.chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.chip {
    font-family: var(--font);
    background: var(--panel);
    border: 1px solid var(--line);
    color: var(--muted);
    padding: 9px 18px;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s var(--ease);
}

.chip:hover {
    color: var(--bone);
    border-color: var(--muted);
}

.chip.active {
    background: var(--red);
    border-color: var(--red);
    color: var(--bone);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--bg-2);
    border-top: 1px solid var(--line);
    padding: 70px 0 30px;
    position: relative;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 40px;
}

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

.footer__about {
    color: var(--muted);
    font-size: 0.92rem;
    max-width: 34ch;
}

.footer h4 {
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 18px;
}

.footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer ul a {
    color: var(--muted);
    font-size: 0.92rem;
    transition: 0.3s;
}

.footer ul a:hover {
    color: var(--bone);
    padding-left: 5px;
}

.socials {
    display: flex;
    gap: 12px;
}

.socials a {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    color: var(--muted);
    transition: 0.3s var(--ease);
}

.socials a:hover {
    color: var(--bone);
    border-color: var(--red);
    background: var(--red);
    transform: translateY(-3px);
}

.sub {
    display: flex;
    gap: 0;
    margin-top: 16px;
}

.sub input {
    flex: 1;
    background: var(--panel);
    border: 1px solid var(--line);
    color: var(--bone);
    padding: 12px 14px;
    font-family: var(--font);
    outline: none;
}

.sub input:focus {
    border-color: var(--red);
}

.sub button {
    background: var(--red);
    border: 1px solid var(--red);
    color: var(--bone);
    padding: 0 18px;
    cursor: pointer;
    font-family: var(--font);
    font-weight: 600;
}

.footer__bottom {
    margin-top: 50px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    color: var(--muted-2);
    font-size: 0.82rem;
}

.footer__bottom a:hover {
    color: var(--red);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.in {
    opacity: 1;
    transform: none;
}

.reveal[data-delay="1"] {
    transition-delay: 0.1s;
}

.reveal[data-delay="2"] {
    transition-delay: 0.2s;
}

.reveal[data-delay="3"] {
    transition-delay: 0.3s;
}

.reveal[data-delay="4"] {
    transition-delay: 0.4s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* scroll progress bar */
.progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: var(--red);
    z-index: 1001;
    box-shadow: 0 0 10px var(--red-glow);
}

/* back to top */
.totop {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 900;
    width: 48px;
    height: 48px;
    border: 1px solid var(--red);
    background: rgba(10,8,7,0.8);
    color: var(--red);
    display: grid;
    place-items: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s var(--ease);
    backdrop-filter: blur(6px);
}

.totop.show {
    opacity: 1;
    transform: none;
}

.totop:hover {
    background: var(--red);
    color: var(--bg);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
    .hero__grid,
    .about__grid,
    .contact__grid {
        grid-template-columns: 1fr;
    }

    .clock-stage {
        order: -1;
        margin-bottom: 10px;
    }

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

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

@media (max-width: 680px) {
    .nav__links {
        display: none;
    }

    .nav__cta {
        display: none;
    }

    .burger {
        display: block;
    }

    .section {
        padding: 80px 0;
    }

    .grid-3,
    .tiers,
    .grid-2,
    .stats,
    .row-2,
    .footer__top {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .stat b {
        font-size: 1.6rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* ============================================================
   PLATFORM BUTTONS (replaces marquee)
   ============================================================ */
.platforms {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--panel);
    padding: 40px 0;
}

.platforms__head {
    text-align: center;
    margin-bottom: 26px;
}

.platforms__head .eyebrow {
    justify-content: center;
    margin-bottom: 8px;
}

.platforms__head p {
    color: var(--muted);
    font-size: 0.95rem;
}

.platforms__row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.plat {
    --brand: #cb3131;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 13px 22px;
    border: 1px solid var(--line);
    background: var(--bg-2);
    color: var(--bone);
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.03em;
    cursor: pointer;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s, color 0.4s;
}

.plat::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--brand);
    transform: translateY(102%);
    transition: transform 0.45s var(--ease);
    z-index: -1;
}

.plat::after {
    /* shine sweep */
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,0.25), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s var(--ease);
}

.plat:hover::before {
    transform: translateY(0);
}

.plat:hover::after {
    left: 140%;
}

.plat:hover {
    transform: translateY(-5px);
    border-color: var(--brand);
    box-shadow: 0 14px 34px -10px var(--brand);
    color: #fff;
}

.plat:active {
    transform: translateY(-1px) scale(0.98);
}

.plat__ic {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    transition: transform 0.4s var(--ease);
}

.plat:hover .plat__ic {
    transform: scale(1.18) rotate(-7deg);
}

.plat__ic--fill {
    fill: currentColor;
}

/* ============================================================
   AUDIO PLAYER
   ============================================================ */
.player {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 6px;
    padding: 14px;
    border: 1px solid var(--line);
    background: var(--bg-2);
}

.player__btn {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    border-radius: 50%;
    border: 1px solid var(--red);
    background: transparent;
    color: var(--red);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: 0.3s var(--ease);
}

.player__btn:hover {
    background: var(--red);
    color: var(--bg);
    transform: scale(1.07);
}

.player.playing .player__btn {
    background: var(--red);
    color: var(--bg);
    animation: pulseRing 1.6s infinite;
}

@keyframes pulseRing {
    0% {
        box-shadow: 0 0 0 0 rgba(203,49,49,0.5);
    }

    100% {
        box-shadow: 0 0 0 14px rgba(203,49,49,0);
    }
}

.player__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.player__bar {
    height: 6px;
    background: var(--panel-2);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 3px;
}

.player__bar:hover {
    height: 8px;
}

.player__prog {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--red-deep), var(--red));
    border-radius: 3px;
    transition: width 0.1s linear;
}

.player__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.74rem;
    color: var(--muted);
    letter-spacing: 0.05em;
    font-variant-numeric: tabular-nums;
}

.player__eq {
    display: inline-flex;
    align-items: flex-end;
    gap: 2px;
    height: 12px;
    opacity: 0;
    transition: opacity 0.3s;
}

.player.playing .player__eq {
    opacity: 1;
}

.player__eq i {
    width: 2px;
    background: var(--red);
    border-radius: 1px;
    height: 3px;
}

.player.playing .player__eq i {
    animation: eq 0.9s ease-in-out infinite;
}

.player__eq i:nth-child(2) {
    animation-delay: 0.2s;
}

.player__eq i:nth-child(3) {
    animation-delay: 0.4s;
}

.player__eq i:nth-child(4) {
    animation-delay: 0.1s;
}

/* ============================================================
   CAPTCHA
   ============================================================ */
.captcha__box {
    display: flex;
    align-items: stretch;
    gap: 10px;
}

.captcha__q {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 18px;
    background: var(--panel-2);
    border: 1px solid var(--line);
    color: var(--bone);
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
    user-select: none;
}

.captcha__q b {
    color: var(--red);
}

.captcha__box input {
    flex: 1;
    width: 100%;
}

.captcha__refresh {
    flex: 0 0 auto;
    width: 48px;
    border: 1px solid var(--line);
    background: var(--panel);
    color: var(--muted);
    cursor: pointer;
    font-size: 1.1rem;
    transition: 0.3s var(--ease);
}

.captcha__refresh:hover {
    color: var(--red);
    border-color: var(--red);
    transform: rotate(90deg);
}

/* ============================================================
   BLOG
   ============================================================ */
.post {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.post__cat {
    align-self: flex-start;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--red);
    border: 1px solid rgba(203,49,49,0.4);
    padding: 5px 11px;
}

.post__title {
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.22;
}

.post__desc {
    color: var(--muted);
    font-size: 0.95rem;
    flex: 1;
}

.post__meta {
    display: flex;
    gap: 14px;
    font-size: 0.78rem;
    color: var(--muted-2);
    letter-spacing: 0.06em;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.post__more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--bone);
    font-weight: 600;
    font-size: 0.84rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: 0.3s var(--ease);
}

.post__more:hover {
    color: var(--red);
    gap: 14px;
}

.post--feat {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    padding: 0;
    overflow: hidden;
}

.post--feat .post__img {
    background: repeating-linear-gradient(135deg, rgba(203,49,49,0.08) 0 14px, transparent 14px 28px),
    linear-gradient(160deg, var(--panel-2), var(--bg));
    min-height: 280px;
    display: grid;
    place-items: center;
    border-right: 1px solid var(--line);
}

.post--feat .post__img svg {
    width: 64px;
    opacity: 0.5;
}

.post--feat .post__pad {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-content: center;
}

.post--feat .post__title {
    font-size: 2rem;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
    align-items: center;
}

.about-hero .about__photo {
    aspect-ratio: 4/5;
}

.quote {
    border-left: 3px solid var(--red);
    padding: 8px 0 8px 28px;
    margin: 10px 0 0;
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    font-weight: 500;
    line-height: 1.4;
    font-style: italic;
}

.quote span {
    color: var(--red);
}

.timeline {
    position: relative;
    margin-top: 36px;
    padding-left: 32px;
    border-left: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.tl-item {
    position: relative;
}

.tl-item::before {
    content: "";
    position: absolute;
    left: -39px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 5px var(--bg), 0 0 16px var(--red-glow);
}

.tl-item .yr {
    color: var(--red);
    font-weight: 600;
    letter-spacing: 0.14em;
    font-size: 0.82rem;
}

.tl-item h4 {
    font-size: 1.18rem;
    font-weight: 600;
    margin: 5px 0 6px;
}

.tl-item p {
    color: var(--muted);
    font-size: 0.96rem;
}

@media (max-width: 980px) {
    .about-hero,
    .post--feat {
        grid-template-columns: 1fr;
    }

    .post--feat .post__img {
        border-right: none;
        border-bottom: 1px solid var(--line);
        min-height: 200px;
    }
}

@media (max-width: 680px) {
    .plat {
        flex: 1 1 auto;
        justify-content: center;
    }

    .platforms__row {
        gap: 10px;
    }

    .post--feat .post__pad {
        padding: 26px;
    }
}
