/* ============================================================
   JREED'S LOVE OF CARS — DESIGN SYSTEM
   Dark · aggressive · premium performance-car aesthetic
   ============================================================ */

:root {
  --bg:        #0a0a0c;
  --bg-2:      #0f0f13;
  --card:      #15151b;
  --card-2:    #1a1a22;
  --line:      #262630;
  --line-soft: rgba(255, 255, 255, 0.07);
  --text:      #f3f3f6;
  --muted:     #9a9aa6;
  --faint:     #6d6d7a;
  --red:       #e10600;
  --red-hot:   #ff2015;
  --red-deep:  #8f0400;
  --radius:    14px;
  --radius-sm: 10px;
  --shadow-1:  0 14px 40px rgba(0, 0, 0, 0.45);
  --shadow-2:  0 24px 70px rgba(0, 0, 0, 0.6);
  --glow:      0 8px 34px rgba(225, 6, 0, 0.42);
  --font-display: "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --container: 1180px;
  --nav-h: 70px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }

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

:focus-visible {
  outline: 2px solid var(--red-hot);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 300;
  background: var(--red); color: #fff; padding: 10px 18px;
  border-radius: 8px; font-weight: 600; transition: top .2s;
}
.skip-link:focus { top: 12px; }

/* ---------- Layout primitives ---------- */
.container { width: min(var(--container), 100% - 40px); margin-inline: auto; }
@media (min-width: 768px) { .container { width: min(var(--container), 100% - 64px); } }

.section { padding: clamp(64px, 9vw, 110px) 0; position: relative; }
.section-tight { padding: clamp(44px, 6vw, 72px) 0; }

.section-head { margin-bottom: clamp(28px, 4vw, 44px); }
.section-head.center { text-align: center; }
.section-head.center .kicker { justify-content: center; }

.kicker {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-weight: 600; font-size: 15px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--red-hot);
  margin-bottom: 14px;
}
.kicker::before { content: ""; width: 34px; height: 2px; background: var(--red); flex: none; }

.h2, .h3 {
  font-family: var(--font-display);
  font-weight: 700; text-transform: uppercase;
  line-height: 1.02; letter-spacing: 0.01em;
  text-wrap: balance;
}
.h2 { font-size: clamp(2.1rem, 5.4vw, 3.4rem); }
.h3 { font-size: clamp(1.4rem, 3.4vw, 2rem); }
.section-head p.lead { color: var(--muted); max-width: 640px; margin-top: 12px; font-size: 1.02rem; }
.section-head.center p.lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 11px;
  min-height: 54px; padding: 0 30px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 17px; letter-spacing: 0.09em; text-transform: uppercase;
  border-radius: var(--radius-sm); text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease,
              border-color .18s ease, color .18s ease;
  border: 1px solid transparent; white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn svg { width: 20px; height: 20px; flex: none; }

.btn-primary {
  background: linear-gradient(180deg, #f40d06 0%, #b90500 100%);
  color: #fff; border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 6px 22px rgba(225, 6, 0, 0.32);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--glow); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text); border-color: var(--line);
}
.btn-ghost:hover { border-color: rgba(255, 255, 255, 0.55); background: rgba(255, 255, 255, 0.06); }

.btn-light { background: #fff; color: #0a0a0c; }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255, 255, 255, 0.18); }

.btn-sm { min-height: 44px; padding: 0 20px; font-size: 15px; }
.btn-block { width: 100%; }

/* Text link with arrow */
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; font-size: 16px;
  color: var(--red-hot); text-decoration: none;
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .18s; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  background: rgba(10, 10, 12, 0.72);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, background-color .25s;
}
.nav.scrolled { border-bottom-color: var(--line-soft); background: rgba(10, 10, 12, 0.9); }
.nav-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; min-height: 44px; }
.brand img { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text .b1 {
  font-family: var(--font-display); font-weight: 700; font-size: 20px;
  letter-spacing: 0.04em; text-transform: uppercase; color: #fff;
}
.brand-text .b2 {
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  letter-spacing: 0.34em; text-transform: uppercase; color: var(--red-hot);
  margin-top: 3px;
}

.nav-links { display: none; align-items: center; gap: clamp(18px, 2.6vw, 34px); }
.nav-links a.nav-link {
  font-family: var(--font-display); font-weight: 600;
  font-size: 16.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; padding: 8px 2px;
  position: relative; transition: color .18s;
}
.nav-links a.nav-link::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 2px;
  height: 2px; background: var(--red); transition: right .22s ease;
}
.nav-links a.nav-link:hover, .nav-links a.nav-link[aria-current="page"] { color: #fff; }
.nav-links a.nav-link:hover::after, .nav-links a.nav-link[aria-current="page"]::after { right: 0; }

.nav-cta { display: none; }
@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none !important; }
}

/* Hamburger */
.nav-toggle {
  width: 46px; height: 46px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 10px;
}
.nav-toggle span { position: relative; width: 20px; height: 2px; background: #fff; transition: background .2s; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: #fff; transition: transform .22s, top .22s;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.menu-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 190;
  background: rgba(8, 8, 10, 0.96);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  display: flex; flex-direction: column; justify-content: center;
  padding: 90px 32px 40px;
  opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s;
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; }
.mobile-menu a.mm-link {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(1.9rem, 8vw, 2.6rem); letter-spacing: 0.04em;
  color: var(--text); text-decoration: none; padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  display: flex; align-items: center; justify-content: space-between;
  transform: translateY(14px); opacity: 0; transition: transform .35s ease, opacity .35s ease, color .18s;
}
body.menu-open .mobile-menu a.mm-link { transform: translateY(0); opacity: 1; }
.mobile-menu a.mm-link:hover { color: var(--red-hot); }
.mobile-menu a.mm-link .num { font-size: 0.95rem; color: var(--faint); letter-spacing: 0.2em; }
.mobile-menu .mm-cta { margin-top: 28px; }
.mobile-menu .mm-foot { margin-top: auto; color: var(--faint); font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: min(94svh, 860px);
  display: flex; align-items: flex-end;
  padding: calc(var(--nav-h) + 48px) 0 56px;
  isolation: isolate; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  animation: heroZoom 26s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.07); } }

.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(10, 10, 12, 0.62) 0%, rgba(10, 10, 12, 0.18) 34%, rgba(10, 10, 12, 0.86) 78%, var(--bg) 100%),
    linear-gradient(100deg, rgba(10, 10, 12, 0.88) 0%, rgba(10, 10, 12, 0.32) 46%, rgba(10, 10, 12, 0.12) 100%);
}

.hero-content { max-width: 780px; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(13px, 2.6vw, 15px); letter-spacing: 0.3em; text-transform: uppercase;
  color: #fff; background: rgba(225, 6, 0, 0.24);
  border: 1px solid rgba(225, 6, 0, 0.55);
  padding: 8px 18px; border-radius: 999px; margin-bottom: 22px;
}
.hero h1 {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(3rem, 10.5vw, 6.2rem); line-height: 0.96; letter-spacing: 0.005em;
  text-wrap: balance; text-shadow: 0 4px 40px rgba(0, 0, 0, 0.55);
}
.hero h1 .accent { color: var(--red-hot); }
.hero-sub {
  margin-top: 22px; max-width: 560px;
  color: #d6d6de; font-size: clamp(1rem, 2.6vw, 1.16rem); line-height: 1.7;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-cred {
  margin-top: 34px; display: flex; align-items: center; gap: 14px;
  color: var(--muted); font-size: 0.82rem; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 500;
}
.hero-cred .sep { width: 5px; height: 5px; border-radius: 50%; background: var(--red); flex: none; }
.hero-cred .name { color: #fff; font-weight: 700; }

.hero-scroll {
  position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%);
  color: var(--muted); display: none; animation: bob 2.2s ease-in-out infinite;
}
.hero-scroll svg { width: 26px; height: 26px; }
@keyframes bob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }
@media (min-width: 768px) { .hero-scroll { display: block; } }

/* ============================================================
   STATS STRIP (social proof — real numbers only)
   ============================================================ */
.stats-strip { border-bottom: 1px solid var(--line-soft); background: var(--bg-2); }
.stats-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--line-soft);
}
.stat-cell { background: var(--bg-2); padding: 26px 18px; text-align: center; }
.stat-cell .num {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.9rem, 5vw, 2.6rem); color: #fff; line-height: 1;
}
.stat-cell .num .u { color: var(--red-hot); }
.stat-cell .lbl {
  margin-top: 8px; font-size: 0.72rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--muted); font-weight: 600;
}
@media (min-width: 760px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

/* ============================================================
   FEATURED VIDEO
   ============================================================ */
.featured-grid { display: grid; gap: 34px; }
@media (min-width: 1000px) {
  .featured-grid { grid-template-columns: minmax(0, 1.9fr) minmax(0, 1fr); align-items: start; }
}
.featured-info { display: flex; flex-direction: column; gap: 16px; }
.featured-info h3 { font-size: clamp(1.5rem, 3.6vw, 2.2rem); }
.featured-meta {
  display: flex; flex-wrap: wrap; gap: 8px 14px; align-items: center;
  color: var(--muted); font-size: 0.85rem; font-weight: 500;
}
.featured-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--red); }
.featured-info p { color: var(--muted); }
.featured-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }

/* ============================================================
   VIDEO PLAYER FACADE (thumbnail → click to load iframe)
   ============================================================ */
.player-facade {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  background: #000; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
  cursor: pointer; padding: 0; display: block;
}
.player-facade img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease, filter .3s; }
.player-facade:hover img { transform: scale(1.035); }
.player-facade::after { /* gradient for play button legibility */
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.5) 100%);
  transition: background .3s;
}
.player-facade .play-btn {
  position: absolute; inset: 0; margin: auto; z-index: 2;
  width: clamp(64px, 12vw, 92px); height: clamp(64px, 12vw, 92px);
  border-radius: 50%;
  background: rgba(225, 6, 0, 0.92);
  display: grid; place-items: center;
  box-shadow: 0 0 0 10px rgba(225, 6, 0, 0.18), 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform .2s ease, background-color .2s, box-shadow .2s;
}
.player-facade .play-btn svg { width: 38%; height: 38%; margin-left: 6%; fill: #fff; }
.player-facade:hover .play-btn { transform: scale(1.09); background: var(--red-hot); box-shadow: 0 0 0 14px rgba(225, 6, 0, 0.22), 0 14px 40px rgba(0, 0, 0, 0.55); }
.player-facade .facade-label {
  position: absolute; left: 14px; bottom: 12px; right: 14px; z-index: 2;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  pointer-events: none;
}
.facade-label .fl-text {
  font-family: var(--font-display); font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; font-size: 13px; color: #fff;
  background: rgba(0, 0, 0, 0.55); padding: 5px 12px; border-radius: 6px;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.facade-label .fl-dur {
  font-family: var(--font-display); font-weight: 600; font-size: 14px; color: #fff;
  background: rgba(0, 0, 0, 0.65); padding: 3px 9px; border-radius: 6px; letter-spacing: 0.06em;
}
.player-facade iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.player-facade.loading .play-btn { animation: pulse 1.1s ease-in-out infinite; }
@keyframes pulse { 50% { transform: scale(0.94); opacity: .75; } }

/* ============================================================
   VIDEO GRID / CARDS
   ============================================================ */
.video-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 640px)  { .video-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (min-width: 1000px) { .video-grid { grid-template-columns: repeat(3, 1fr); } }

.video-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.video-card:hover { transform: translateY(-5px); border-color: rgba(225, 6, 0, 0.5); box-shadow: var(--shadow-1); }

.vc-thumb { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #000; }
.vc-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.video-card:hover .vc-thumb img { transform: scale(1.06); }
.vc-thumb .vc-dur {
  position: absolute; right: 10px; bottom: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 13.5px; letter-spacing: 0.05em;
  background: rgba(0, 0, 0, 0.78); color: #fff; padding: 2px 8px; border-radius: 5px;
}
.vc-thumb .vc-play {
  position: absolute; inset: 0; display: grid; place-items: center;
  opacity: 0; transition: opacity .22s; background: rgba(0, 0, 0, 0.25);
}
.vc-thumb .vc-play span {
  width: 58px; height: 58px; border-radius: 50%;
  background: rgba(225, 6, 0, 0.95); display: grid; place-items: center;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.5);
}
.vc-thumb .vc-play svg { width: 24px; height: 24px; fill: #fff; margin-left: 3px; }
.video-card:hover .vc-play, .vc-thumb:focus-within .vc-play { opacity: 1; }
@media (hover: none) { .vc-thumb .vc-play { opacity: 1; background: transparent; } .vc-thumb .vc-play span { width: 46px; height: 46px; opacity: .92; } }

.vc-body { padding: 18px 18px 16px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.vc-meta {
  display: flex; flex-wrap: wrap; gap: 6px 10px; align-items: center;
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--faint); font-weight: 600;
}
.vc-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--red); }
.vc-title {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: 1.28rem; line-height: 1.12; color: #fff;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.vc-desc {
  color: var(--muted); font-size: 0.92rem; line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.vc-watch {
  margin-top: auto; padding-top: 6px;
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 700; font-size: 15.5px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--red-hot);
}
.vc-watch svg { width: 15px; height: 15px; transition: transform .18s; }
.video-card:hover .vc-watch svg { transform: translateX(4px); }

.grid-foot { margin-top: clamp(28px, 4vw, 40px); text-align: center; }

/* ============================================================
   THE GARAGE
   ============================================================ */
.garage-grid { display: grid; gap: 26px; }
@media (min-width: 900px) { .garage-grid { grid-template-columns: repeat(2, 1fr); } }

.garage-card {
  position: relative; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.garage-card:hover { transform: translateY(-4px); border-color: rgba(225, 6, 0, 0.45); box-shadow: var(--shadow-1); }
.garage-card.featured { grid-column: 1 / -1; }
@media (min-width: 900px) {
  .garage-card.featured { flex-direction: row; }
  .garage-card.featured .gc-media { flex: 0 0 46%; }
  .garage-card.featured .gc-body { padding: 34px 36px; }
}
.gc-media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #000; }
.garage-card.featured .gc-media { aspect-ratio: auto; min-height: 260px; }
.gc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.garage-card:hover .gc-media img { transform: scale(1.05); }
.gc-power {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--font-display); font-weight: 700; font-size: 15px; letter-spacing: 0.1em;
  background: var(--red); color: #fff; padding: 4px 12px; border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}
.gc-teaser-badge {
  position: absolute; top: 14px; right: 14px;
  font-family: var(--font-display); font-weight: 700; font-size: 13.5px; letter-spacing: 0.16em;
  text-transform: uppercase; background: rgba(255, 255, 255, 0.1); color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3); padding: 4px 12px; border-radius: 999px;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.gc-body { padding: 24px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.gc-name { font-size: clamp(1.5rem, 3.4vw, 2rem); }
.gc-name .year { color: var(--red-hot); }
.gc-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.gc-chip {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--line); border-radius: 999px; padding: 4px 12px;
}
.gc-chip.mod { color: var(--red-hot); border-color: rgba(225, 6, 0, 0.4); }
.gc-story { color: var(--muted); font-size: 0.95rem; }
.gc-videos { margin-top: auto; border-top: 1px solid var(--line-soft); padding-top: 14px; }
.gc-videos .gc-vlabel {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--faint); font-weight: 700; margin-bottom: 10px;
}
.gc-vlist { display: grid; gap: 8px; }
.gc-vitem {
  display: flex; align-items: center; gap: 12px; text-decoration: none;
  border-radius: var(--radius-sm); padding: 6px; margin: -6px;
  transition: background-color .18s;
}
.gc-vitem:hover { background: rgba(255, 255, 255, 0.04); }
.gc-vitem img { width: 84px; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 6px; flex: none; }
.gc-vitem .vt {
  font-family: var(--font-display); font-weight: 600; font-size: 1rem; text-transform: uppercase;
  color: #dcdce4; line-height: 1.2; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* ============================================================
   CATEGORIES
   ============================================================ */
.cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (min-width: 760px)  { .cat-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }

.cat-card {
  position: relative; display: flex; flex-direction: column; gap: 10px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 20px; text-decoration: none; overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, background-color .2s ease;
}
.cat-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--red); transform: scaleY(0); transform-origin: top; transition: transform .25s ease;
}
.cat-card:hover { transform: translateY(-4px); border-color: rgba(225, 6, 0, 0.5); background: var(--card-2); }
.cat-card:hover::before { transform: scaleY(1); }
.cat-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: grid; place-items: center; flex: none;
  background: rgba(225, 6, 0, 0.12); border: 1px solid rgba(225, 6, 0, 0.35);
}
.cat-icon svg { width: 22px; height: 22px; stroke: var(--red-hot); }
.cat-name {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: 1.3rem; letter-spacing: 0.03em; color: #fff;
}
.cat-blurb { color: var(--muted); font-size: 0.85rem; line-height: 1.5; }
.cat-count {
  margin-top: 4px; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--faint); font-weight: 700;
}

/* ============================================================
   ABOUT / WHY
   ============================================================ */
.about-grid { display: grid; gap: 38px; align-items: center; }
@media (min-width: 940px) { .about-grid { grid-template-columns: 1fr 1fr; gap: clamp(44px, 6vw, 84px); } }
.about-media { position: relative; }
.about-media img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-2);
}
.about-media .about-badge {
  position: absolute; left: 18px; bottom: 18px;
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(10, 10, 12, 0.82); border: 1px solid var(--line);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  padding: 10px 16px; border-radius: 10px;
}
.about-badge img { width: 34px; height: 34px; border-radius: 50%; aspect-ratio: auto; border: 0; box-shadow: none; }
.about-badge .t { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; line-height: 1.15; }
.about-badge .t small { display: block; color: var(--red-hot); font-size: 0.72rem; letter-spacing: 0.24em; }
.about-copy p { color: var(--muted); margin-top: 18px; font-size: 1.03rem; }
.about-copy p strong { color: #fff; }
.about-copy .btn { margin-top: 28px; }

/* ============================================================
   SUBSCRIBE CTA BANNER
   ============================================================ */
.sub-cta { position: relative; overflow: hidden; }
.sub-cta .container { position: relative; z-index: 2; text-align: center; }
.sub-cta::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 120% at 50% 120%, rgba(225, 6, 0, 0.4) 0%, transparent 62%),
    linear-gradient(180deg, var(--bg) 0%, #12060a 50%, var(--bg) 100%);
}
.sub-cta::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(225, 6, 0, 0.55), transparent);
}
.sub-cta .kicker { justify-content: center; }
.sub-cta .h2 { font-size: clamp(2.4rem, 7vw, 4.4rem); }
.sub-cta p { color: #c9c9d2; max-width: 600px; margin: 20px auto 34px; }
.sub-cta .btn-sub { min-height: 62px; padding: 0 42px; font-size: 19px; }
.sub-cta .sub-note { margin-top: 18px; color: var(--faint); font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; }

/* ============================================================
   EMAIL SIGNUP
   ============================================================ */
.email-box {
  max-width: 640px; margin-inline: auto; text-align: center;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(28px, 5vw, 44px);
}
.email-form { display: grid; gap: 12px; margin-top: 24px; text-align: left; }
@media (min-width: 620px) {
  .email-form .row-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
}
.field label {
  display: block; font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); font-weight: 700; margin-bottom: 7px;
}
.field input {
  width: 100%; min-height: 52px; padding: 0 16px;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-sm);
  color: #fff; font: inherit; transition: border-color .18s;
}
.field input::placeholder { color: var(--faint); }
.field input:focus { outline: none; border-color: var(--red); }
.email-form .fine { color: var(--faint); font-size: 0.78rem; }
.email-form .fine a { color: var(--muted); }
.email-success {
  display: none; margin-top: 22px; padding: 16px;
  border: 1px solid rgba(46, 204, 113, 0.4); border-radius: var(--radius-sm);
  background: rgba(46, 204, 113, 0.08); color: #7be3a8; font-weight: 500;
}
.email-success.show { display: block; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative; padding: calc(var(--nav-h) + clamp(48px, 8vw, 90px)) 0 clamp(40px, 6vw, 64px);
  background:
    radial-gradient(ellipse 90% 90% at 50% -20%, rgba(225, 6, 0, 0.14) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line-soft);
}
.breadcrumb {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--faint); font-weight: 600; margin-bottom: 18px;
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--red-hot); }
.breadcrumb .sep { color: var(--red); }

/* Filter chips (videos page) */
.chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 18px; transition: all .18s; min-height: 44px;
  display: inline-flex; align-items: center; gap: 8px;
}
.chip:hover { color: #fff; border-color: rgba(255, 255, 255, 0.4); }
.chip.active { background: var(--red); border-color: var(--red); color: #fff; }
.chip .n { font-size: 0.78rem; opacity: 0.75; }

/* ============================================================
   VIDEO LANDING PAGE
   ============================================================ */
.vp-layout { display: grid; gap: 40px; }
@media (min-width: 1040px) { .vp-layout { grid-template-columns: minmax(0, 1.75fr) minmax(0, 1fr); } }
.vp-main h1 {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(1.9rem, 5vw, 3rem); line-height: 1.04; margin: 18px 0 14px;
}
.vp-meta { display: flex; flex-wrap: wrap; gap: 8px 14px; align-items: center; color: var(--muted); font-size: 0.85rem; font-weight: 500; margin-bottom: 20px; }
.vp-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--red); }
.vp-desc { color: var(--muted); font-size: 1.02rem; max-width: 760px; white-space: pre-line; }
.vp-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0; }

.share-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--line-soft); }
.share-row .sr-label { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--faint); font-weight: 700; }
.share-btn {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line); display: grid; place-items: center;
  color: var(--muted); transition: all .18s;
}
.share-btn:hover { color: #fff; border-color: var(--red); transform: translateY(-2px); }
.share-btn svg { width: 19px; height: 19px; fill: currentColor; }
.share-btn.copied { color: #7be3a8; border-color: rgba(46, 204, 113, 0.5); }

.vp-side .side-title {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: 1.25rem; letter-spacing: 0.05em; padding-bottom: 14px; margin-bottom: 18px;
  border-bottom: 2px solid var(--red);
}
.vp-list { display: grid; gap: 18px; }
.vp-item {
  display: flex; gap: 14px; align-items: flex-start; text-decoration: none;
  padding: 10px; margin: -10px; border-radius: var(--radius-sm); transition: background-color .18s;
}
.vp-item:hover { background: rgba(255, 255, 255, 0.04); }
.vp-item img { width: 132px; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 8px; flex: none; border: 1px solid var(--line); }
.vp-item .t {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  font-size: 1.05rem; line-height: 1.2; color: #e4e4ea; margin-bottom: 6px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.vp-item .m { font-size: 0.75rem; color: var(--faint); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; }

/* Watch-next block on landing pages */
.watch-next {
  margin-top: 44px; padding: clamp(22px, 4vw, 32px);
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  display: grid; gap: 22px;
}
@media (min-width: 860px) { .watch-next { grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); align-items: center; } }
.watch-next .wn-copy h3 { font-size: 1.4rem; margin-bottom: 10px; }
.watch-next .wn-copy p { color: var(--muted); font-size: 0.95rem; margin-bottom: 18px; }

/* ============================================================
   WATCH PAGE (Facebook ad landing — minimal chrome)
   ============================================================ */
body.watch-page { background: #0b0b0e; }
.watch-topbar {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 10px clamp(16px, 4vw, 28px);
  background: rgba(11, 11, 14, 0.86);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.watch-topbar .brand-text .b1 { font-size: 18px; }
.watch-wrap { max-width: 920px; margin-inline: auto; padding: clamp(20px, 4vw, 36px) clamp(16px, 4vw, 28px) 60px; }
.watch-wrap h1 {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(1.7rem, 5.4vw, 2.7rem); line-height: 1.05; margin: 20px 0 12px;
}
.watch-sub { color: var(--muted); max-width: 720px; }
.watch-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0 8px; }
.watch-foot {
  margin-top: 56px; padding: 28px clamp(16px, 4vw, 28px) 40px;
  border-top: 1px solid var(--line-soft); text-align: center;
  color: var(--faint); font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase;
}
.watch-foot a { color: var(--muted); text-decoration: none; }
.watch-foot a:hover { color: var(--red-hot); }

/* ============================================================
   MODAL PLAYER
   ============================================================ */
.modal {
  position: fixed; inset: 0; z-index: 300;
  display: none; align-items: center; justify-content: center;
  padding: 20px;
  background: rgba(5, 5, 8, 0.9);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.modal.open { display: flex; animation: modalIn .22s ease; }
@keyframes modalIn { from { opacity: 0; } to { opacity: 1; } }
.modal-box {
  width: min(980px, 100%); max-height: calc(100svh - 40px);
  overflow-y: auto; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-2);
  animation: modalUp .28s cubic-bezier(0.2, 0.9, 0.3, 1);
}
@keyframes modalUp { from { transform: translateY(26px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 14px 18px; border-bottom: 1px solid var(--line-soft); }
.modal-head .mh-title {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: 1.1rem; line-height: 1.2; color: #fff;
  display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
}
.modal-close { width: 40px; height: 40px; flex: none; border-radius: 8px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--muted); transition: all .15s; }
.modal-close:hover { color: #fff; border-color: var(--red); }
.modal-close svg { width: 17px; height: 17px; }
.modal-player { aspect-ratio: 16 / 9; background: #000; }
.modal-player iframe { width: 100%; height: 100%; border: 0; display: block; }
.modal-actions { display: flex; flex-wrap: wrap; gap: 12px; padding: 18px; justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line-soft); background: var(--bg-2); }
.footer-grid {
  display: grid; gap: 36px;
  padding: clamp(48px, 7vw, 72px) 0 40px;
}
@media (min-width: 860px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.1fr; } }
.footer .f-brand p { color: var(--muted); font-size: 0.92rem; margin-top: 14px; max-width: 300px; }
.f-head {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.18em; font-size: 0.95rem; color: #fff; margin-bottom: 16px;
}
.f-links { display: grid; gap: 10px; }
.f-links a { color: var(--muted); text-decoration: none; font-size: 0.92rem; transition: color .15s; }
.f-links a:hover { color: var(--red-hot); }
.f-social { display: flex; gap: 10px; }
.social-btn {
  width: 44px; height: 44px; border-radius: 10px; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--muted); transition: all .18s;
}
.social-btn:hover { color: #fff; border-color: var(--red); transform: translateY(-2px); }
.social-btn svg { width: 20px; height: 20px; fill: currentColor; }
.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding: 22px 0 30px;
  display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; justify-content: space-between;
  color: var(--faint); font-size: 0.8rem;
}
.footer-bottom .legal { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-bottom a { color: var(--muted); text-decoration: none; }
.footer-bottom a:hover { color: #fff; }
.yt-notice { color: var(--faint); font-size: 0.72rem; margin-top: 10px; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-body { max-width: 760px; }
.legal-body h2 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 1.45rem; margin: 36px 0 12px; }
.legal-body h2:first-of-type { margin-top: 0; }
.legal-body p, .legal-body li { color: var(--muted); margin-bottom: 12px; }
.legal-body ul { padding-left: 22px; list-style: disc; }
.legal-body strong { color: #e6e6ec; }
.legal-updated { color: var(--faint); font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 10px; }

/* ============================================================
   SCROLL REVEALS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); }
.reveal.in { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s cubic-bezier(0.2, 0.7, 0.3, 1); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.hidden { display: none !important; }
[hidden] { display: none !important; }

.empty-note {
  padding: 40px 20px; text-align: center; color: var(--muted);
  border: 1px dashed var(--line); border-radius: var(--radius);
}
