:root {
  --orange: #f47b16;
  --green: #00843d;
  --ink: #0b0b0b;
  --charcoal: #171717;
  --paper: #f6f5f1;
  --white: #ffffff;
  --muted: #676b72;
  --line: rgba(11, 11, 11, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  padding: 14px clamp(18px, 4vw, 70px);
  color: var(--white);
  background: rgba(9, 9, 9, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}
.brand img {
  display: block;
  width: clamp(160px, 18vw, 250px);
  height: 58px;
  object-fit: cover;
  object-position: center;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}
.nav-cta, .button.primary {
  color: var(--white);
  background: var(--orange);
}
.nav-cta {
  padding: 13px 17px;
  border-radius: 8px;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 8px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 10px;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: calc(92svh - 86px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}
.hero-image {
  background-image: url("assets/sportswrap-studio-shot.jpg");
  background-size: cover;
  background-position: 58% center;
}
.hero-shade {
  background:
    linear-gradient(90deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.78) 42%, rgba(0,0,0,.34) 74%, rgba(0,0,0,.18) 100%),
    linear-gradient(0deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,0) 38%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(780px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 90px);
  padding: 52px 0;
}
.show-logo {
  display: block;
  width: min(350px, 76vw);
  height: 126px;
  margin-bottom: 18px;
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 10px 28px rgba(0,0,0,.7));
}
h1, h2, h3 {
  margin: 0;
  font-weight: 900;
  text-transform: uppercase;
  line-height: .96;
}
h1 { max-width: 760px; font-size: clamp(3.2rem, 6.8vw, 6.3rem); }
h2 { font-size: clamp(2.1rem, 4.5vw, 4.3rem); }
h3 { font-size: 1.25rem; }
.hero p {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.86);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-weight: 800;
  line-height: 1.45;
  text-shadow: 0 2px 14px rgba(0,0,0,.9);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 14px 20px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-size: .88rem;
  font-weight: 900;
  text-transform: uppercase;
}
.button.secondary {
  color: var(--white);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.28);
}

.credibility {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--white);
  background: var(--charcoal);
}
.credibility div { padding: 24px clamp(18px, 3vw, 34px); border-right: 1px solid rgba(255,255,255,.1); }
.credibility strong { display: block; font-size: clamp(1.4rem, 2vw, 2.1rem); font-weight: 900; }
.credibility span { color: rgba(255,255,255,.72); font-weight: 800; }

.section { padding: clamp(70px, 9vw, 118px) clamp(18px, 5vw, 72px); }
.split, .about, .contact, .affiliate {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, .72fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
}
.kicker { margin: 0 0 12px; color: var(--orange); font-size: .78rem; font-weight: 900; text-transform: uppercase; }
.section p, .sponsor-section p { color: var(--muted); font-weight: 700; line-height: 1.55; }
.watch-copy { margin-top: 18px; max-width: 620px; }
.video-panel {
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(11, 11, 11, 0.18);
}
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--orange), var(--ink) 55%, var(--green));
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
}
.video-frame iframe.is-loaded { opacity: 1; }
.video-frame::before {
  content: "Latest episode will load from YouTube";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  color: rgba(255,255,255,.82);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}
.video-meta {
  padding: 18px 20px 20px;
}
.video-meta span {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.video-meta h3 {
  line-height: 1.1;
}
.video-meta a {
  display: inline-block;
  margin-top: 14px;
  color: rgba(255,255,255,.78);
  font-size: .88rem;
  font-weight: 900;
  text-transform: uppercase;
}
.shorts-section {
  padding: clamp(58px, 7vw, 92px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(11,11,11,.98), rgba(11,11,11,.92)),
    radial-gradient(circle at 88% 18%, rgba(244,123,22,.28), transparent 34%);
}
.shorts-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
}
.shorts-heading h2 {
  font-size: clamp(2rem, 4vw, 3.75rem);
}
.shorts-heading p:not(.kicker) {
  max-width: 430px;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-weight: 800;
  line-height: 1.5;
}
.shorts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.short-card {
  overflow: hidden;
  min-width: 0;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(0,0,0,.28);
}
.short-frame {
  position: relative;
  aspect-ratio: 9 / 16;
  min-height: clamp(420px, 124vw, 640px);
  background: linear-gradient(135deg, var(--orange), var(--ink) 58%, var(--green));
}
.short-frame::before {
  content: "Short will load from YouTube";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  color: rgba(255,255,255,.78);
  font-size: .84rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}
.short-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.short-card h3 {
  padding: 14px 15px 16px;
  font-size: .96rem;
  line-height: 1.15;
}
.short-card h3 a {
  color: inherit;
}
.shorts-more {
  margin-top: 24px;
}
.newsletter-section {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(320px, .7fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: center;
  padding: clamp(46px, 6vw, 74px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0,0,0,.96), rgba(0,0,0,.9)),
    radial-gradient(circle at 90% 20%, rgba(244,123,22,.22), transparent 34%);
}
.newsletter-logo {
  display: block;
  width: min(420px, 100%);
  height: auto;
  margin: 0 0 18px;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0,0,0,.28);
}
.newsletter-section h2 {
  max-width: 620px;
  font-size: clamp(1.85rem, 3.4vw, 3.15rem);
}
.newsletter-section p:not(.kicker) {
  max-width: 560px;
  color: rgba(255,255,255,.76);
  font-weight: 800;
  line-height: 1.55;
  margin-bottom: 0;
}
.newsletter-section .button {
  margin-top: 18px;
}
.substack-embed {
  overflow: hidden;
  min-height: 280px;
  background: var(--white);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0,0,0,.26);
}
.substack-embed iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
  background: var(--white);
}
.listen-section {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(320px, .7fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
  padding: clamp(56px, 7vw, 88px) clamp(18px, 5vw, 72px);
  background: var(--paper);
}
.listen-section p {
  max-width: 620px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.55;
}
.podcast-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.podcast-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
}
.podcast-player {
  padding: 22px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(11,11,11,.18);
}
.podcast-player span {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.podcast-player h3 {
  line-height: 1.12;
}
.podcast-player p {
  color: rgba(255,255,255,.62);
  font-size: .9rem;
}
.podcast-player audio {
  width: 100%;
  margin-top: 14px;
}
.podcast-player a {
  display: inline-block;
  margin-top: 16px;
  color: rgba(255,255,255,.78);
  font-size: .88rem;
  font-weight: 900;
  text-transform: uppercase;
}
.about {
  color: var(--white);
  background: var(--charcoal);
}
.about-portrait {
  position: relative;
  min-height: 460px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border-left: 6px solid var(--orange);
  background: var(--ink);
}
.about-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.28), rgba(0,0,0,0) 45%);
  pointer-events: none;
}
.about-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center 28%;
}
.about h2 { max-width: 760px; }
.about p:not(.kicker) {
  max-width: 720px;
  color: rgba(255,255,255,.74);
  font-size: 1.04rem;
  line-height: 1.65;
}
.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 34px; }
.cards article { min-height: 260px; padding: 24px; background: white; border: 1px solid var(--line); border-radius: 8px; }
.cards span { display: block; margin-bottom: 44px; color: var(--orange); font-weight: 900; text-transform: uppercase; }
.cards p { margin-bottom: 0; }
.shop-section {
  padding: clamp(70px, 8vw, 108px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(180deg, rgba(255,255,255,.62), rgba(255,255,255,.2)),
    var(--paper);
}
.shop-intro {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .55fr);
  gap: clamp(22px, 5vw, 62px);
  align-items: end;
  margin-bottom: 32px;
}
.shop-intro h2 {
  max-width: 920px;
  font-size: clamp(2rem, 4.25vw, 4.1rem);
}
.shop-intro p:not(.kicker) {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.55;
}
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}
.collection-card {
  display: grid;
  gap: 44px;
  min-height: 260px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(11,11,11,.08);
}
.collection-card span {
  color: var(--orange);
  font-size: .78rem;
  font-weight: 1000;
  text-transform: uppercase;
}
.collection-card h3 {
  line-height: 1.08;
}
.collection-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.5;
}
.first-collection {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .55fr) auto;
  gap: clamp(18px, 4vw, 40px);
  align-items: center;
  margin-top: 18px;
  padding: clamp(20px, 3vw, 30px);
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(11,11,11,.12);
}
.first-collection h3 {
  font-size: clamp(1.45rem, 2.8vw, 2.4rem);
  line-height: 1.02;
}
.first-collection p:not(.kicker) {
  max-width: 720px;
  color: rgba(255,255,255,.76);
  font-weight: 800;
  line-height: 1.55;
}
.first-collection .button {
  justify-self: end;
}
.launch-badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 10px;
  color: var(--ink);
  background: var(--orange);
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 1000;
  text-transform: uppercase;
}
.collection-products {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.collection-products li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.86);
  font-weight: 900;
}
.collection-products li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  background: var(--green);
  border-radius: 999px;
  vertical-align: middle;
}
.sponsor-section {
  padding: clamp(76px, 9vw, 126px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--ink);
}
.sponsor-section p { max-width: 720px; color: rgba(255,255,255,.76); }
.sponsor-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
}
.sponsor-intro .button {
  min-width: 190px;
}
.sponsor-proof {
  margin-top: clamp(36px, 5vw, 58px);
}
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.sponsor-grid article {
  min-height: 230px;
  padding: 20px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
}
.sponsor-grid span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  color: var(--ink);
  background: var(--orange);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 1000;
}
.sponsor-grid h3 {
  font-size: 1.02rem;
  line-height: 1.12;
}
.sponsor-grid p {
  margin-bottom: 0;
  color: rgba(255,255,255,.72);
  font-size: .94rem;
  font-weight: 750;
}
.affiliate {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
  gap: clamp(28px, 4vw, 54px);
  background: var(--orange);
  align-items: center;
}
.affiliate .kicker, .affiliate p { color: rgba(0,0,0,.74); }
.affiliate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.affiliate-logos {
  justify-self: end;
  width: min(100%, 460px);
  padding: 18px;
  background: var(--ink);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(0,0,0,.18);
}
.affiliate-logos span {
  display: block;
  margin-bottom: 16px;
  color: rgba(255,255,255,.72);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.affiliate-logos img {
  display: block;
  width: min(100%, 330px);
  height: auto;
  margin: 0 auto;
}
.button.light { color: var(--ink); border-color: rgba(0,0,0,.2); }
.finder-hero {
  padding: clamp(64px, 9vw, 108px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0,0,0,.94), rgba(0,0,0,.86)),
    radial-gradient(circle at 90% 18%, rgba(244,123,22,.22), transparent 32%);
}
.finder-hero h1 {
  max-width: 940px;
}
.finder-hero p {
  max-width: 720px;
  color: rgba(255,255,255,.78);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  font-weight: 800;
  line-height: 1.5;
}
.finder-section {
  padding: clamp(42px, 6vw, 72px) clamp(18px, 5vw, 72px) clamp(76px, 9vw, 120px);
}
.finder-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, .32fr);
  gap: 14px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(11,11,11,.08);
}
.finder-summary {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  margin: 22px 0;
  color: var(--muted);
  font-weight: 900;
}
.affiliate-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.affiliate-card {
  display: grid;
  gap: 12px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.affiliate-card .market {
  color: var(--orange);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.affiliate-card h2 {
  font-size: 1.45rem;
  line-height: 1.08;
}
.affiliate-card dl {
  display: grid;
  gap: 8px;
  margin: 0;
}
.affiliate-card div {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 10px;
}
.affiliate-card dt {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.affiliate-card dd {
  margin: 0;
  font-weight: 800;
}
.empty-results {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-weight: 800;
}
form { display: grid; gap: 16px; padding: 22px; background: white; border: 1px solid var(--line); border-radius: 8px; }
label { font-weight: 900; }
input, select, textarea { width: 100%; margin-top: 8px; padding: 13px 14px; border: 1px solid var(--line); border-radius: 8px; }
textarea { min-height: 128px; resize: vertical; }
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 10px 13px;
  color: white;
  background: white;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 10px 18px rgba(0,0,0,.12);
  transition: transform .18s ease, filter .18s ease;
}
.social-mark {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: inherit;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 1000;
  line-height: 1;
  text-transform: none;
}
.social-link.youtube { background: #ff0033; }
.social-link.instagram { background: linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #8134af 70%, #515bd4 100%); }
.social-link.tiktok { background: #010101; }
.social-link.facebook { background: #1877f2; }
.social-link.x-social { background: #000; }
.social-link.threads { background: #242424; }
.social-link.newsletter { background: #ff6719; }
.social-link.podcast { background: #8e44ad; }
.social-links a:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px clamp(18px,5vw,72px);
  color: white;
  background: var(--ink);
}
footer img { width: 230px; height: 78px; object-fit: cover; object-position: center; }
footer p { color: rgba(255,255,255,.7); font-weight: 700; }
.footer-socials {
  justify-content: flex-end;
  margin-top: 0;
}
.footer-socials a {
  color: white;
  border-color: rgba(255,255,255,.12);
  box-shadow: none;
}

.footer-brand {
  display: grid;
  justify-items: start;
}
.footer-brand p { margin: 8px 0 10px; }
.footer-about-link {
  color: var(--orange);
  font-size: .8rem;
  font-weight: 900;
  text-transform: uppercase;
}

/* About Jason Page */
.jason-page { background: var(--ink); }
.jason-page .site-nav a[aria-current="page"] { color: var(--orange); }

.jason-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: calc(92svh - 86px);
  overflow: hidden;
  color: var(--white);
  background: #050505;
}
.jason-hero-image,
.jason-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.jason-hero-image {
  object-fit: cover;
  object-position: 74% 31%;
}
.jason-hero-shade {
  background:
    linear-gradient(90deg, rgba(0,0,0,.98) 0%, rgba(0,0,0,.88) 34%, rgba(0,0,0,.46) 63%, rgba(0,0,0,.14) 100%),
    linear-gradient(0deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,0) 42%);
}
.jason-hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding: 76px 0;
}
.jason-hero h1 {
  max-width: 700px;
  font-size: 5.5rem;
}
.jason-hero-subtitle {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--orange);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.35;
}
.jason-hero-copy {
  max-width: 640px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.82);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.6;
}

.jason-profile-band,
.jason-productions-band {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .72fr);
  gap: clamp(36px, 7vw, 104px);
  align-items: start;
  padding: 112px clamp(18px, 6vw, 96px);
  background: var(--paper);
}
.jason-section-heading h2,
.jason-productions-band h2 {
  max-width: 780px;
  font-size: 3.8rem;
}
.jason-body-copy p,
.jason-productions-band > p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.72;
}
.jason-body-copy p:last-child { margin-bottom: 0; }

.jason-story-band {
  display: grid;
  grid-template-columns: minmax(160px, .32fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
  padding: 112px clamp(18px, 7vw, 112px);
  color: var(--white);
  background: var(--charcoal);
  border-top: 6px solid var(--orange);
}
.jason-story-number {
  color: transparent;
  font-size: 9rem;
  font-weight: 900;
  line-height: .8;
  -webkit-text-stroke: 2px rgba(244,123,22,.72);
}
.jason-story-band h2 { max-width: 850px; font-size: 4rem; }
.jason-story-band p:last-child {
  max-width: 880px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.74);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.7;
}

.jason-stats {
  padding: 106px clamp(18px, 6vw, 96px);
  color: var(--white);
  background: #050505;
}
.jason-stats-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 44px;
}
.jason-stats-heading h2 { max-width: 760px; font-size: 3.8rem; }
.jason-stat-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.jason-stat-grid article {
  min-width: 0;
  padding: 34px 22px;
  border-right: 1px solid rgba(255,255,255,.18);
}
.jason-stat-grid article:last-child { border-right: 0; }
.jason-stat-grid strong {
  display: block;
  color: var(--orange);
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
}
.jason-stat-grid span {
  display: block;
  margin-top: 12px;
  color: rgba(255,255,255,.78);
  font-size: .85rem;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.jason-productions-band {
  background: var(--white);
}
.jason-productions-band > p { margin: 0; }

.jason-cta {
  padding: 110px clamp(18px, 7vw, 112px);
  color: var(--white);
  background: var(--charcoal);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.jason-cta h2 { max-width: 820px; font-size: 4.4rem; }
.jason-cta > p:not(.kicker) {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.74);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.6;
}

@media (max-width: 940px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 18px 18px;
    background: rgba(9,9,9,.97);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 13px 0; }
  .nav-cta { text-align: center; }
  .credibility, .split, .newsletter-section, .listen-section, .about, .contact, .affiliate, .cards, .affiliate-results, .finder-controls, .shop-intro, .collection-grid, .first-collection, .sponsor-intro { grid-template-columns: 1fr; }
  .first-collection .button { justify-self: stretch; }
  .sponsor-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .shorts-heading { display: grid; }
  .shorts-grid {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    margin: 0 -18px;
    padding: 0 18px 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .short-card {
    flex: 0 0 min(78vw, 300px);
    scroll-snap-align: start;
  }
  .short-frame {
    height: min(132vw, 520px);
    min-height: 420px;
    aspect-ratio: auto;
  }
  .affiliate-logos { justify-self: stretch; width: 100%; }
  footer { display: grid; }
  .footer-socials { justify-content: flex-start; }
  .jason-profile-band,
  .jason-productions-band { grid-template-columns: 1fr; }
  .jason-stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .jason-stat-grid article { border-bottom: 1px solid rgba(255,255,255,.18); }
  .jason-stat-grid article:nth-child(2n) { border-right: 0; }
  .jason-stat-grid article:last-child { border-bottom: 0; }
}

@media (max-width: 560px) {
  .site-header { min-height: 74px; }
  .brand img { width: 150px; height: 48px; }
  .hero { min-height: calc(88svh - 74px); }
  .hero-image { background-position: 48% center; }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.66)),
      linear-gradient(0deg, rgba(0,0,0,.72), rgba(0,0,0,.12) 42%);
  }
  .hero-content { width: calc(100% - 32px); margin: 0 auto; }
  .show-logo { width: min(304px, 82vw); height: 112px; }
  h1 { font-size: 3.2rem; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .affiliate-actions { display: grid; }
  .credibility { grid-template-columns: repeat(2, 1fr); }
  .about-portrait,
  .about-portrait img { min-height: 360px; }
  .about-actions { display: grid; }
  .substack-embed, .substack-embed iframe { min-height: 320px; height: 320px; }
  .sponsor-grid { grid-template-columns: 1fr; }
  .jason-hero { min-height: calc(92svh - 74px); align-items: end; }
  .jason-hero-image { object-position: 58% 24%; }
  .jason-hero-shade {
    background:
      linear-gradient(0deg, rgba(0,0,0,.98) 0%, rgba(0,0,0,.78) 52%, rgba(0,0,0,.18) 100%),
      linear-gradient(90deg, rgba(0,0,0,.54), rgba(0,0,0,.18));
  }
  .jason-hero-content {
    width: calc(100% - 32px);
    margin: 0 auto;
    padding: 230px 0 42px;
  }
  .jason-hero h1 { font-size: 3.2rem; }
  .jason-hero-subtitle { font-size: 1.08rem; }
  .jason-hero-copy { font-size: .98rem; line-height: 1.5; }
  .jason-profile-band,
  .jason-productions-band,
  .jason-story-band,
  .jason-stats,
  .jason-cta { padding: 72px 18px; }
  .jason-section-heading h2,
  .jason-productions-band h2,
  .jason-story-band h2,
  .jason-stats-heading h2,
  .jason-cta h2 { font-size: 2.55rem; }
  .jason-story-band { grid-template-columns: 1fr; }
  .jason-story-number { font-size: 5rem; }
  .jason-stats-heading { display: block; }
  .jason-stat-grid { grid-template-columns: 1fr; }
  .jason-stat-grid article,
  .jason-stat-grid article:nth-child(2n) {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.18);
  }
  .jason-stat-grid strong { font-size: 2.8rem; }
}
