/* MEDIOCRE BROKER — Joe Rogan inspired (dark, bold, media-heavy) */
:root {
  --bg: #0A0A0A;
  --bg2: #141414;
  --bg3: #1F1F1F;
  --ink: #F5F5F5;
  --mute: #999;
  --line: #2A2A2A;
  --red: #E53935;
  --red-dark: #B71C1C;
  --accent: #FFC857;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); text-decoration: none; transition: color .15s; }
a:hover { color: var(--red); }
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* TOP BAR */
.topbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 32px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.brand {
  font-family: 'Anton', Impact, sans-serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.05em;
  color: var(--ink);
}
.brand:hover { color: var(--red); }
.topnav { display: flex; gap: 28px; }
.topnav a {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  position: relative;
}
.topnav a.alt { color: var(--accent); }
.topnav a:hover { color: var(--red); }
.topnav a:hover::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--red);
}

/* HERO */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 60px;
  background:
    radial-gradient(circle at 75% 50%, rgba(229, 57, 53, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(229, 57, 53, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, #0A0A0A 0%, #141414 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}
.hero-text {
  position: relative; z-index: 2;
}
.hero-portrait {
  position: relative;
}
.cover-art {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--bg2);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 4px 12px rgba(229,57,53,0.2);
  transform: rotate(-2deg);
  transition: transform .3s;
}
.cover-art:hover { transform: rotate(0deg) scale(1.02); }
.cover-art img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.85) contrast(1.15) brightness(0.95);
}
.cover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.05) 0%, rgba(10,10,10,0.4) 60%, rgba(10,10,10,0.95) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
}
.cover-mark {
  position: absolute; top: 20px; left: 20px;
  background: var(--red); color: #fff;
  font-family: 'Anton', Impact, sans-serif;
  padding: 6px 12px; font-size: 14px; letter-spacing: 0.08em;
}
.cover-title {
  font-family: 'Anton', Impact, sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0.01em;
  color: #fff;
  line-height: 0.95;
}
.cover-sub {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  margin-top: 8px;
}
.cover-stack {
  display: flex; gap: 8px; justify-content: center; margin-top: 32px;
}
.cover-stack .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--mute);
}
.cover-stack .dot:first-child { background: var(--red); }
.kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 24px;
  padding: 6px 0;
  border-top: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  padding: 8px 0;
}
.kicker.red { color: var(--red); }
.kicker.center { display: block; text-align: center; max-width: 350px; margin: 0 auto 18px; }
.hero h1 {
  font-family: 'Anton', Impact, sans-serif;
  font-weight: 400;
  font-size: clamp(72px, 14vw, 200px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 24px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.hero .lede {
  font-family: 'DM Serif Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 32px);
  color: var(--mute);
  max-width: 720px;
  margin-bottom: 42px;
  line-height: 1.3;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  border: 2px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all .15s;
}
.btn.primary { background: var(--red); color: #fff; border-color: var(--red); }
.btn.primary:hover { background: var(--red-dark); border-color: var(--red-dark); color: #fff; }
.btn.ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn.ghost:hover { background: var(--ink); color: var(--bg); }
.btn.big { padding: 18px 36px; font-size: 13px; }

.hero-socials { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-socials a {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--mute);
  position: relative;
  padding-bottom: 4px;
}
.hero-socials a:hover { color: var(--red); }
.hero-socials a + a::before {
  content: '·';
  margin-right: 28px;
  margin-left: -28px;
  color: var(--line);
  position: absolute;
  left: -14px;
}

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  z-index: 2;
}
.hero-scroll span {
  font-size: 10px; letter-spacing: 0.3em; color: var(--mute); font-weight: 700;
}
.scroll-line {
  width: 1px; height: 40px; background: linear-gradient(180deg, var(--mute), transparent);
  animation: scrolldown 2s ease-in-out infinite;
}
@keyframes scrolldown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* PODCAST FEATURE */
.podcast {
  background: var(--bg2);
  padding: 120px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.podcast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.podcast-image img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  filter: grayscale(0.4) contrast(1.05);
}
.podcast-cover-wrap { position: relative; }
.podcast-cover {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--bg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0,0,0,0.7), inset 0 0 80px rgba(229,57,53,0.08);
}
.podcast-cover img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.95) contrast(1.2) brightness(0.9);
}
.podcast-cover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(165deg, rgba(229,57,53,0.0) 0%, rgba(229,57,53,0.25) 35%, rgba(10,10,10,0.0) 60%, rgba(10,10,10,0.95) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 36px;
}
.cover-bar { width: 64px; height: 3px; background: var(--red); margin-bottom: 18px; }
.cover-show {
  font-family: 'Anton', Impact, sans-serif;
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: 0.005em;
  color: #fff;
  line-height: 0.95;
}
.cover-host {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  margin-top: 10px;
}
.podcast-platforms {
  margin-top: 22px;
  display: flex; justify-content: space-between;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 600; color: var(--mute);
}
.podcast-text h2 {
  font-family: 'Anton', Impact, sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.005em;
  margin: 18px 0 24px;
  color: var(--ink);
}
.podcast-text p {
  color: var(--mute);
  font-size: 16px;
  margin-bottom: 18px;
  line-height: 1.65;
}
.podcast-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

/* EPISODES */
.episodes {
  background: var(--bg);
  padding: 120px 0;
}
.section-head { text-align: center; margin-bottom: 64px; }
.section-head h2 {
  font-family: 'Anton', Impact, sans-serif;
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1;
  letter-spacing: -0.005em;
  margin-top: 18px;
  color: var(--ink);
}
.episode-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.ep {
  background: var(--bg2);
  border: 1px solid var(--line);
  transition: transform .2s, border-color .2s;
}
.ep:hover { border-color: var(--red); transform: translateY(-4px); }
.ep-thumb {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: linear-gradient(135deg, #1F1F1F 0%, #0A0A0A 50%, #2a0a0a 100%);
  display: flex; align-items: center; justify-content: center;
}
.ep-cover-mini {
  width: 60%;
  aspect-ratio: 1/1;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,0.6);
  transition: transform .3s;
}
.ep:hover .ep-cover-mini { transform: scale(1.05) rotate(-1deg); }
.ep-cover-mini img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.85) contrast(1.15);
}
.ep-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.5) contrast(1.05);
  transition: filter .2s, transform .4s;
}
.ep:hover .ep-thumb img { filter: grayscale(0) contrast(1.1); transform: scale(1.05); }
.ep-num {
  position: absolute; top: 14px; left: 14px;
  background: var(--red); color: #fff;
  padding: 5px 10px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  font-family: 'Anton', Impact, sans-serif;
}
.ep-play {
  position: absolute; bottom: 14px; right: 14px;
  background: rgba(10,10,10,0.85);
  color: #fff;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  border: 2px solid #fff;
}
.ep-meta {
  display: flex; justify-content: space-between;
  padding: 18px 22px 6px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 600;
}
.ep h3 {
  font-family: 'Anton', Impact, sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.003em;
  padding: 0 22px 12px;
  color: var(--ink);
}
.ep p {
  padding: 0 22px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--mute);
  margin-bottom: 14px;
}
.ep-link {
  display: inline-block;
  padding: 0 22px 22px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--red);
}
.see-all { text-align: center; margin-top: 56px; }

/* VIDEO FEATURE */
.video-feature {
  background: var(--bg2);
  padding: 120px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.video-feature h2 {
  font-family: 'Anton', Impact, sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 1;
  letter-spacing: -0.005em;
  text-align: center;
  margin-bottom: 14px;
  color: var(--ink);
}
.video-feature .sub {
  text-align: center;
  color: var(--mute);
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 18px;
  margin-bottom: 56px;
}
.center { text-align: center; }
.video-frame {
  position: relative;
  aspect-ratio: 16/9;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
}
.video-frame img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.5) contrast(1.1) brightness(0.6);
}
.video-bg { width: 100%; height: 100%; position: absolute; inset: 0; overflow: hidden; }
.video-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.4) brightness(0.45);
  transform: scale(1.2);
  filter: grayscale(0.95) contrast(1.25) brightness(0.4) blur(2px);
}
.video-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.play-big {
  width: 100px; height: 100px;
  border: 3px solid #fff;
  background: rgba(229, 57, 53, 0.85);
  color: #fff;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  transition: transform .15s, background .15s;
}
.play-big:hover { transform: scale(1.05); background: var(--red); }
.video-len {
  position: absolute; bottom: 16px; right: 16px;
  background: rgba(10,10,10,0.85); color: #fff;
  padding: 4px 10px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.04em;
}

/* ABOUT */
.about {
  background: var(--bg);
  padding: 120px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
.about-photo {
  position: relative;
}
.about-photo img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  filter: grayscale(0.85) contrast(1.15) brightness(0.95);
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.about-photo::after {
  content: '';
  position: absolute;
  inset: -8px -8px 24px -8px;
  border: 2px solid var(--red);
  z-index: -1;
}
.about-photo .caption {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--mute);
  margin-top: 16px;
  text-align: center;
}
.about-text h2 {
  font-family: 'Anton', Impact, sans-serif;
  font-weight: 400;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.95;
  margin: 18px 0 32px;
  color: var(--ink);
}
.about-text h3 {
  font-family: 'Anton', Impact, sans-serif;
  font-weight: 400;
  font-size: 28px;
  margin: 36px 0 16px;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.about-text p {
  color: var(--mute);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 18px;
}
.about-text ul { padding-left: 0; list-style: none; }
.about-text ul li {
  color: var(--mute);
  font-size: 15px;
  line-height: 1.7;
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
}
.about-text ul li::before {
  content: '▸';
  position: absolute; left: 0;
  color: var(--red);
  font-size: 14px;
}
.about-links { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.about-links .btn { padding: 12px 22px; font-size: 11px; }

/* SUBSCRIBE */
.subscribe {
  background: var(--bg2);
  padding: 100px 0;
  border-top: 1px solid var(--line);
}
.subscribe-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.subscribe h2 {
  font-family: 'Anton', Impact, sans-serif;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  margin: 18px 0 12px;
  color: var(--ink);
}
.subscribe p { color: var(--mute); font-size: 16px; }
.sub-form { display: flex; gap: 0; }
.sub-form input {
  flex: 1;
  padding: 18px 20px;
  background: var(--bg);
  border: 2px solid var(--line);
  color: var(--ink);
  font-size: 14px;
  font-family: inherit;
  outline: none;
}
.sub-form input:focus { border-color: var(--red); }
.sub-form button {
  padding: 18px 30px;
  background: var(--red);
  color: #fff;
  border: 2px solid var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .15s;
}
.sub-form button:hover { background: var(--red-dark); border-color: var(--red-dark); }
.sub-form button:disabled { background: #444; border-color: #444; cursor: not-allowed; }

/* FOOTER */
.site-footer {
  background: var(--bg);
  padding: 80px 0 40px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.brand-foot {
  font-family: 'Anton', Impact, sans-serif;
  font-size: 28px;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 14px;
}
.site-footer p { color: var(--mute); font-size: 14px; }
.site-footer h4 {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 16px;
  font-weight: 700;
}
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 8px; }
.site-footer ul li a {
  color: var(--mute);
  font-size: 14px;
}
.site-footer ul li a:hover { color: var(--red); }
.bottom-row {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--mute);
}
.bottom-row a { color: var(--mute); border-bottom: 1px solid var(--line); }
.bottom-row a:hover { color: var(--red); border-bottom-color: var(--red); }

/* RESPONSIVE */
@media (max-width: 960px) {
  .topbar { padding: 14px 20px; }
  .topnav { gap: 18px; }
  .topnav a { font-size: 11px; letter-spacing: 0.1em; }
  .container { padding: 0 20px; }
  .podcast, .episodes, .video-feature, .about, .subscribe { padding: 80px 0; }
  .podcast-grid, .about-grid, .subscribe-inner, .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-portrait { max-width: 360px; margin: 0 auto; }
  .episode-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .topnav a:not(.alt) { display: none; }
  .topnav a.alt { display: inline; }
  .episode-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .bottom-row { flex-direction: column; gap: 8px; }
  .hero-socials { gap: 18px; }
  .hero-socials a + a::before { margin-right: 18px; margin-left: -18px; left: -9px; }
  .play-big { width: 70px; height: 70px; font-size: 22px; }
}
