:root {
    --green: #2b5135;
    --green-dark: #1a3322;
    --green-light: #3d7048;
    --green-bright: #5a9968;
    --gold: #f9df8d;
    --gold-bright: #fcedb0;
    --gold-dim: #c4a840;
    --black: #090e0b;
    --surface: #0f1610;
    --surface2: #162019;
    --surface3: #1e2e22;
    --text: #F0ECE8;
    --text-dim: #98a89c;
    --on-air: #FF3B30;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--text);
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    min-height: 100vh;
  }

  /* ─── TICKER ─── */
  .ticker-wrap {
    background: var(--green);
    height: 36px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    z-index: 100;
  }
  .ticker-label {
    background: var(--gold);
    color: var(--black);
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    font-size: 13px;
    padding: 0 18px;
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
    z-index: 2;
  }
  .ticker-track {
    display: flex;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
  }
  .ticker-track span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    color: #fff;
    padding: 0 60px;
  }
  .ticker-track span::before {
    content: '▸';
    color: var(--gold);
    margin-right: 12px;
  }
  @keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ─── NAV ─── */
  nav {
    position: sticky;
    top: 0;
    z-index: 99;
    background: rgba(12, 10, 11, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 160, 23, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 64px;
  }
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
  }
  .nav-bear {
    width: 38px;
    height: 38px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent;
  }
  .nav-wordmark {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: var(--gold);
    letter-spacing: 3px;
    line-height: 1;
  }
  .nav-wordmark span { color: var(--gold); }
  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }
  .nav-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    padding: 8px 20px;
    border-radius: 3px;
    text-decoration: none;
    transition: background 0.2s;
  }
  .nav-cta:hover { background: var(--gold-bright); }

  /* ─── HERO ─── */
  .hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 60% at 70% 50%, rgba(43,81,53,0.45) 0%, transparent 70%),
      radial-gradient(ellipse 40% 40% at 20% 80%, rgba(212,160,23,0.08) 0%, transparent 60%);
  }
  .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(249,223,141,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(249,223,141,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
  }
  .hero-noise {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 256px;
  }
  .on-air-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 59, 48, 0.12);
    border: 1px solid rgba(255, 59, 48, 0.4);
    border-radius: 100px;
    padding: 6px 16px;
    margin-bottom: 28px;
    width: fit-content;
    animation: fadeUp 0.8s ease both;
  }
  .on-air-dot {
    width: 8px;
    height: 8px;
    background: var(--on-air);
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
  }
  @keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
  }
  .on-air-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--on-air);
  }
  .hero-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    animation: fadeUp 0.8s 0.1s ease both;
  }
  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(72px, 10vw, 148px);
    line-height: 0.88;
    letter-spacing: 2px;
    color: var(--text);
    margin-bottom: 24px;
    animation: fadeUp 0.9s 0.15s ease both;
  }
  .hero-title .accent { color: var(--gold); }
  .hero-title .green-fill { color: var(--green-bright); }
  .hero-title .outline {
    -webkit-text-stroke: 1px rgba(240,236,232,0.3);
    color: transparent;
  }
  .hero-sub {
    font-size: 17px;
    font-weight: 300;
    color: var(--text-dim);
    max-width: 520px;
    line-height: 1.65;
    margin-bottom: 44px;
    animation: fadeUp 1s 0.2s ease both;
  }
  .hero-actions {
    display: flex;
    gap: 16px;
    animation: fadeUp 1s 0.3s ease both;
  }
  .btn-primary {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--green);
    color: #fff;
    border: 1px solid var(--green-light);
    padding: 14px 34px;
    border-radius: 3px;
    text-decoration: none;
    transition: all 0.2s;
  }
  .btn-primary:hover { background: var(--green-light); border-color: var(--gold); }
  .btn-ghost {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: transparent;
    color: var(--text-dim);
    border: 1px solid rgba(240,236,232,0.15);
    padding: 14px 34px;
    border-radius: 3px;
    text-decoration: none;
    transition: all 0.2s;
  }
  .btn-ghost:hover { border-color: var(--gold-dim); color: var(--gold); }
  .hero-stat-row {
    margin-top: 80px;
    display: flex;
    gap: 0;
    border-top: 1px solid rgba(240,236,232,0.08);
    padding-top: 28px;
    flex-wrap: wrap;
    animation: fadeUp 1s 0.5s ease both;
  }
  .hero-stat {
    flex: 1;
    padding-right: 40px;
    border-right: 1px solid rgba(240,236,232,0.08);
    margin-right: 40px;
  }
  .hero-stat:last-child { border-right: none; margin-right: 0; }
  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    color: var(--gold);
    line-height: 1;
    letter-spacing: 1px;
  }
  .stat-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-top: 4px;
  }

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

  /* ─── SECTION UTILITY ─── */
  section { padding: 100px 80px; }
  .section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .section-label::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--gold);
  }
  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(42px, 5vw, 72px);
    letter-spacing: 1px;
    line-height: 0.95;
    color: var(--text);
  }

  /* ─── ABOUT ─── */
  .about {
    background: var(--surface);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
  }
  .about::before {
    content: 'BBN';
    position: absolute;
    right: 60px;
    top: 40px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 160px;
    color: rgba(249,223,141,0.04);
    letter-spacing: 8px;
    pointer-events: none;
    user-select: none;
  }
  .about-copy .section-title { margin-bottom: 28px; }
  .about-copy p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-dim);
    margin-bottom: 16px;
  }
  .about-copy p strong { color: var(--text); font-weight: 400; }
  .about-visual {
    position: relative;
  }
  .about-card {
    background: var(--surface2);
    border: 1px solid rgba(240,236,232,0.07);
    border-radius: 8px;
    padding: 24px 20px;
    position: relative;
    overflow: hidden;
    min-width: 0;
  }
  .about-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--gold));
  }
  .about-card-icon {
    font-size: 36px;
    margin-bottom: 16px;
  }
  .about-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 1px;
    color: var(--text);
    margin-bottom: 8px;
    word-break: break-word;
  }
  .about-card p {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.6;
  }
  .about-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /* ─── SHOWS ─── */
  .shows { background: var(--black); }
  .shows-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 52px;
  }
  .shows-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }
  @media (max-width: 900px) {
    .shows-grid { grid-template-columns: 1fr; }
  }
  .show-card {
    background: var(--surface2);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid rgba(240,236,232,0.04);
  }
  .show-card:hover { background: var(--surface3); border-color: rgba(212,160,23,0.2); }
  .show-card:hover .show-arrow { transform: translate(4px, -4px); }
  .show-tag {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(43,81,53,0.5);
    color: var(--gold);
    border: 1px solid rgba(212,160,23,0.25);
    padding: 3px 10px;
    border-radius: 2px;
    margin-bottom: 20px;
  }
  .show-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 30px;
    letter-spacing: 1px;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1;
  }
  .show-card p {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.6;
  }
  .show-arrow {
    position: absolute;
    top: 28px;
    right: 28px;
    color: var(--gold);
    font-size: 18px;
    transition: transform 0.25s;
  }
  .show-num {
    position: absolute;
    bottom: 20px;
    right: 24px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 60px;
    color: rgba(212,160,23,0.06);
    line-height: 1;
    pointer-events: none;
  }

  /* ─── RECOGNITION ─── */
  .recognition {
    background: linear-gradient(180deg, var(--surface) 0%, var(--black) 100%);
    position: relative;
    overflow: hidden;
  }
  .recognition::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(249,223,141,0.05) 0%, transparent 70%);
    pointer-events: none;
  }
  .recognition-header {
    max-width: 720px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
  }
  .recognition-intro {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dim);
    margin-top: 24px;
    max-width: 580px;
  }
  .recognition-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    position: relative;
    z-index: 1;
  }
  .award-card {
    background: var(--surface2);
    border: 1px solid rgba(240,236,232,0.07);
    border-radius: 8px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
  }
  .award-card:hover {
    border-color: rgba(249,223,141,0.25);
    transform: translateY(-3px);
  }
  .award-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold), var(--green));
    opacity: 0.4;
    transition: opacity 0.3s;
  }
  .award-card:hover::before { opacity: 1; }
  .award-card-feature {
    grid-column: span 1;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--surface2) 100%);
    border-color: rgba(249,223,141,0.2);
  }
  .award-card-feature::after {
    content: 'FEATURED';
    position: absolute;
    top: 16px;
    right: 16px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    background: rgba(249,223,141,0.1);
    border: 1px solid rgba(249,223,141,0.3);
    padding: 3px 8px;
    border-radius: 2px;
  }
  .award-medal {
    font-size: 36px;
    margin-bottom: 18px;
    line-height: 1;
  }
  .award-rank {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
  }
  .award-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    letter-spacing: 1px;
    color: var(--text);
    line-height: 1.05;
    margin-bottom: 12px;
  }
  .award-sub {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.55;
    margin-bottom: 0;
  }
  .award-detail {
    font-size: 12px;
    color: var(--gold);
    line-height: 1.5;
    margin-top: 10px;
    font-style: italic;
    opacity: 0.9;
  }
  @media (max-width: 1000px) {
    .recognition-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 600px) {
    .recognition-grid { grid-template-columns: 1fr; }
  }

  /* ─── TEAM ─── */
  .team { background: var(--surface); }
  .team-header { margin-bottom: 52px; }
  .team-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
  }
  @media (max-width: 1200px) {
    .team-grid { grid-template-columns: repeat(4, 1fr); }
  }
  @media (max-width: 768px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  }
  .team-card {
    background: var(--surface2);
    border: 1px solid rgba(240,236,232,0.06);
    border-radius: 6px;
    overflow: hidden;
    transition: border-color 0.2s;
  }
  .team-card:hover { border-color: rgba(212,160,23,0.3); }
  .team-avatar {
    height: 100px;
    background: linear-gradient(135deg, var(--green-dark), var(--surface3));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    position: relative;
    overflow: hidden;
  }
  .team-avatar::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--green), var(--gold));
  }
  .team-info { padding: 14px 14px; }
  .team-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text);
    margin-bottom: 3px;
    line-height: 1.2;
  }
  .team-role {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    line-height: 1.3;
  }

  /* ─── GET INVOLVED ─── */
  .join {
    background: var(--black);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .join-visual {
    background: var(--surface2);
    border: 1px solid rgba(240,236,232,0.07);
    border-radius: 8px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
  }
  .join-visual::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--green));
  }
  .join-visual-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: 2px;
    color: var(--text-dim);
  }
  .join-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(240,236,232,0.06);
  }
  .join-item:last-child { border-bottom: none; }
  .join-bullet {
    width: 28px;
    height: 28px;
    background: rgba(43,81,53,0.5);
    border: 1px solid var(--green-light);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .join-item-text h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
    letter-spacing: 0.5px;
  }
  .join-item-text p {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.55;
  }
  .join-copy .section-title { margin-bottom: 20px; }
  .join-copy p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-dim);
    margin-bottom: 32px;
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--surface);
    border-top: 1px solid rgba(240,236,232,0.07);
    padding: 60px 80px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
  }
  .footer-brand { }
  .footer-wordmark {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 4px;
  }
  .footer-wordmark span { color: var(--gold); }
  .footer-tagline {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 20px;
  }
  .footer-brand p {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.65;
    max-width: 260px;
  }
  .footer-col h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 12px; }
  .footer-col ul a {
    font-size: 13px;
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.15s;
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 0.5px;
  }
  .footer-col ul a:hover { color: var(--text); }
  .footer-bottom {
    padding: 20px 80px;
    background: var(--surface);
    border-top: 1px solid rgba(240,236,232,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer-bottom p {
    font-size: 11px;
    color: rgba(160,152,152,0.5);
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 1px;
  }
  .footer-bottom p span { color: var(--gold); }

  /* ─── DIVIDER ─── */
  .divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,160,23,0.2), transparent);
  }


  /* ─── FEATURED WORK ─── */
  .featured-work {
    background: var(--black);
    position: relative;
  }
  .featured-work::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(249,223,141,0.2), transparent);
  }
  .featured-header { margin-bottom: 52px; }
  .featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .video-card {
    background: var(--surface2);
    border: 1px solid rgba(240,236,232,0.07);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
  }
  .video-card:hover {
    border-color: rgba(249,223,141,0.25);
    transform: translateY(-3px);
  }
  .video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: var(--black);
    overflow: hidden;
  }
  .video-embed iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
  .video-info { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
  .video-award {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(249,223,141,0.08);
    border: 1px solid rgba(249,223,141,0.2);
    padding: 4px 10px;
    border-radius: 2px;
    width: fit-content;
    margin-bottom: 14px;
  }
  .video-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 1px;
    color: var(--text);
    line-height: 1.1;
    margin-bottom: 10px;
  }
  .video-card p {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.55;
    margin-bottom: 14px;
    flex: 1;
  }
  .video-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
  }
  .video-link:hover { gap: 10px; }
  @media (max-width: 1000px) {
    .featured-grid { grid-template-columns: 1fr; }
  }


  /* ─── PODCASTS ─── */
  .podcasts {
    background: var(--surface);
    position: relative;
    overflow: hidden;
  }
  .podcasts::before {
    content: '';
    position: absolute;
    bottom: -150px; left: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(43,81,53,0.18) 0%, transparent 70%);
    pointer-events: none;
  }
  .podcasts-header {
    margin-bottom: 56px;
    max-width: 720px;
    position: relative;
    z-index: 1;
  }
  .podcasts-intro {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dim);
    margin-top: 22px;
    max-width: 540px;
  }
  .podcasts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
  }
  .podcast-card {
    background: var(--surface2);
    border: 1px solid rgba(240,236,232,0.07);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .podcast-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-bright), var(--gold));
  }
  .podcast-card:hover {
    border-color: rgba(249,223,141,0.25);
    transform: translateY(-3px);
  }
  .podcast-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: var(--black);
    overflow: hidden;
  }
  .podcast-embed iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
  .podcast-info { padding: 26px 28px 30px; flex: 1; display: flex; flex-direction: column; }
  .podcast-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green-bright);
    margin-bottom: 12px;
  }
  .podcast-tag::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-bright);
  }
  .podcast-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 1.5px;
    color: var(--text);
    line-height: 1.05;
    margin-bottom: 8px;
  }
  .podcast-hosts {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
  }
  .podcast-desc {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.65;
    margin-bottom: 18px;
    flex: 1;
  }
  .podcast-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
    width: fit-content;
  }
  .podcast-link:hover { gap: 10px; }
  @media (max-width: 900px) {
    .podcasts-grid { grid-template-columns: 1fr; }
  }


  /* ─── WATCH (live + latest) ─── */
  .watch {
    background: linear-gradient(180deg, var(--black) 0%, var(--surface) 100%);
    padding-top: 90px;
    padding-bottom: 90px;
    position: relative;
    overflow: hidden;
  }
  .watch::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(43,81,53,0.18) 0%, transparent 70%);
    pointer-events: none;
  }
  .watch-header {
    max-width: 720px;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
  }
  .watch-intro {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dim);
    margin-top: 22px;
    max-width: 580px;
  }
  .watch-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    position: relative;
    z-index: 1;
  }
  .watch-card {
    background: var(--surface2);
    border: 1px solid rgba(240,236,232,0.07);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
  }
  .watch-card:hover {
    border-color: rgba(249,223,141,0.2);
  }
  .watch-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 22px;
    border-bottom: 1px solid rgba(240,236,232,0.06);
  }
  .watch-card-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text);
  }
  .watch-pulse {
    width: 10px; height: 10px;
    background: var(--on-air);
    border-radius: 50%;
    position: relative;
    animation: pulse-dot 1.5s ease-in-out infinite;
  }
  .watch-pulse::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--on-air);
    opacity: 0.3;
    animation: pulse-ring 2s ease-out infinite;
  }
  @keyframes pulse-ring {
    0% { transform: scale(0.7); opacity: 0.5; }
    100% { transform: scale(2); opacity: 0; }
  }
  .watch-new {
    width: 10px; height: 10px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(249,223,141,0.6);
  }
  .watch-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: var(--black);
    overflow: hidden;
  }
  .watch-embed iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
  .watch-note {
    padding: 16px 22px 20px;
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.55;
  }
  .watch-note a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(249,223,141,0.3);
  }
  .watch-note a:hover {
    border-color: var(--gold);
  }
  @media (max-width: 900px) {
    .watch-grid { grid-template-columns: 1fr; }
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1000px) {
    nav { padding: 0 24px; }
    .nav-links { display: none; }
    section { padding: 70px 32px; }
    .hero { padding: 60px 32px; }
    footer { padding: 50px 32px; grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-bottom { padding: 20px 32px; flex-direction: column; gap: 8px; text-align: center; }
    .about { grid-template-columns: 1fr; gap: 40px; }
    .about::before { font-size: 100px; right: 20px; }
    .join { grid-template-columns: 1fr; gap: 40px; }
    .ticker-wrap { padding-right: 0; }
  }
  @media (max-width: 600px) {
    .hero-stat-row { gap: 20px; }
    .hero-stat { flex: 1 1 40%; padding-right: 0; border-right: none; margin-right: 0; }
    .hero-actions { flex-direction: column; }
    .hero-actions a { text-align: center; }
    .shows-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    footer { grid-template-columns: 1fr; }
    .about-cards-grid { grid-template-columns: 1fr; }
  }