:root {
  --ink: #111412;
  --charcoal: #171c18;
  --night: #070908;
  --paper: #f6f0dc;
  --white: #ffffff;
  --volt: #f6c24a;
  --signal: #58ddff;
  --cyan: #2e78ff;
  --amber: #ff9f24;
  --amber-deep: #a65f13;
  --teal: #147f74;
  --brick: #b66d18;
  --mist: #e5dcc1;
  --muted: #5f5d55;
  --line: rgba(17, 20, 18, 0.18);
  --shadow: 0 28px 90px rgba(7, 9, 8, 0.24);
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", "Franklin Gothic Heavy", ui-sans-serif, system-ui, sans-serif;
  color-scheme: light;
  font-family: "Trebuchet MS", "Aptos", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(17, 20, 18, 0.04) 1px, transparent 1px) 0 0 / 64px 64px,
    linear-gradient(180deg, rgba(246, 194, 74, 0.14), transparent 340px),
    var(--paper);
  color: var(--ink);
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

body.cart-open {
  overflow: hidden;
}

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

img,
svg {
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--white);
  text-transform: uppercase;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  background: rgba(246, 240, 220, 0.94);
  box-shadow: 0 12px 40px rgba(7, 9, 8, 0.14);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 66px;
  height: 44px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  background: var(--volt);
  color: var(--night);
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 9px 100%, 0 calc(100% - 9px));
}

.brand-mark-logo {
  overflow: hidden;
  background: var(--night);
}

.brand-mark-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.28);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 0.98rem;
  letter-spacing: 0;
  font-family: var(--display);
  font-weight: 900;
}

.brand small {
  margin-top: 3px;
  color: currentColor;
  font-size: 0.72rem;
  font-weight: 700;
  opacity: 0.72;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 34px);
  font-size: 0.82rem;
  font-weight: 900;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 4px;
  content: "";
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 2px solid currentColor;
  border-radius: 0;
  color: inherit;
  background: var(--volt);
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 9px 100%, 0 calc(100% - 9px));
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  color: var(--white);
  background: var(--night);
}

.hero::before {
  position: absolute;
  right: clamp(-72px, -4vw, -24px);
  bottom: clamp(18px, 6vw, 62px);
  z-index: 1;
  content: "UNLOCK";
  color: transparent;
  font-family: var(--display);
  font-size: clamp(4rem, 14vw, 13rem);
  line-height: 0.8;
  opacity: 0.44;
  pointer-events: none;
  text-transform: uppercase;
  -webkit-text-stroke: 1px rgba(88, 221, 255, 0.58);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/hero-podcast-studio.png");
  background-position: center;
  background-size: cover;
  filter: saturate(1.18) contrast(1.08);
  transform: scale(1.04);
}

.hero-overlay {
  background:
    linear-gradient(108deg, rgba(7, 9, 8, 0.96) 0 46%, rgba(7, 9, 8, 0.78) 46% 61%, rgba(7, 9, 8, 0.18) 61%),
    linear-gradient(180deg, rgba(7, 9, 8, 0.2), rgba(7, 9, 8, 0.82)),
    repeating-linear-gradient(90deg, rgba(88, 221, 255, 0.1) 0 2px, transparent 2px 18px);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 88svh;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 134px 0 82px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--signal);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(3.35rem, 9vw, 8rem);
}

h1 span {
  display: block;
}

.hero-unlocked {
  display: inline-block;
  width: fit-content;
  padding: 0 0.08em 0.04em;
  color: var(--night);
  background: var(--signal);
  text-shadow: none;
  clip-path: polygon(0 0, calc(100% - 0.18em) 0, 100% 0.18em, 100% 100%, 0.18em 100%, 0 calc(100% - 0.18em));
}

h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.05rem, 4.8vw, 4.2rem);
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.32rem, 2vw, 1.65rem);
}

.hero-copy {
  max-width: 630px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  font-weight: 700;
}

.hero-actions,
.platform-links,
.footer-inner div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border: 2px solid transparent;
  border-radius: 0;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--night);
  background: var(--volt);
  border-color: var(--volt);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--amber);
  border-color: var(--amber);
}

.button-youtube {
  color: var(--white);
  background: #e62117;
  border-color: #e62117;
  box-shadow: 0 0 0 4px rgba(230, 33, 23, 0.18);
}

.button-youtube:hover,
.button-youtube:focus-visible {
  color: var(--white);
  background: #b9140d;
  border-color: #b9140d;
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.48);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(88, 221, 255, 0.18);
  border-color: var(--signal);
}

.button-secondary-dark {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.46);
  border-color: var(--ink);
}

.button-secondary-dark:hover,
.button-secondary-dark:focus-visible {
  color: var(--night);
  background: rgba(88, 221, 255, 0.2);
  border-color: var(--ink);
}

.section,
.listen-band,
.newsletter,
.site-footer {
  position: relative;
}

.section-inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.listen-band {
  padding: 34px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(246, 194, 74, 0.24), rgba(88, 221, 255, 0.18) 54%, transparent),
    repeating-linear-gradient(135deg, rgba(246, 194, 74, 0.11) 0 2px, transparent 2px 18px),
    var(--night);
}

.listen-grid,
.newsletter-inner,
.contact-layout,
.guest-layout,
.split-section,
.footer-inner {
  display: grid;
  gap: clamp(24px, 5vw, 64px);
}

.listen-grid {
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
}

.listen-grid h2,
.newsletter h2 {
  margin-bottom: 0;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.listen-copy {
  max-width: 500px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.listen-band .section-kicker,
.newsletter .section-kicker {
  color: currentColor;
  opacity: 0.72;
}

.platform-links {
  justify-content: flex-end;
}

.listen-actions {
  display: grid;
  align-content: center;
  gap: 18px;
}

.platform-links a,
.footer-inner a {
  border-bottom: 1px solid currentColor;
  font-weight: 800;
}

.platform-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 14px;
  border: 2px solid rgba(88, 221, 255, 0.64);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  line-height: 1;
  text-align: center;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.platform-links .platform-featured {
  color: var(--white);
  background: #e62117;
  border-color: #e62117;
  box-shadow: 0 0 0 4px rgba(230, 33, 23, 0.2);
}

.listen-player-card {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 2px solid rgba(88, 221, 255, 0.72);
  background:
    linear-gradient(135deg, rgba(246, 194, 74, 0.16), rgba(88, 221, 255, 0.12)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 10px 10px 0 rgba(88, 221, 255, 0.2);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

.listen-player-card h3 {
  margin-bottom: 0;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.listen-player-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.listen-player-label {
  color: var(--volt);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.listen-player-card audio {
  width: 100%;
  min-height: 42px;
}

.section {
  padding: clamp(72px, 10vw, 128px) 0;
}

.section-light {
  background:
    linear-gradient(90deg, rgba(17, 20, 18, 0.055) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--paper);
}

.section-dark {
  color: var(--white);
  background:
    repeating-linear-gradient(90deg, rgba(88, 221, 255, 0.06) 0 1px, transparent 1px 36px),
    var(--charcoal);
}

.section-heading {
  display: grid;
  margin-bottom: 28px;
  gap: 10px;
}

.episode-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.episode-tabs button {
  min-height: 42px;
  padding: 9px 15px;
  border: 2px solid var(--ink);
  border-radius: 0;
  color: var(--ink);
  background: var(--paper);
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 9px 100%, 0 calc(100% - 9px));
  cursor: pointer;
  font-weight: 950;
  text-transform: uppercase;
}

.episode-tabs button[aria-selected="true"] {
  color: var(--night);
  background: var(--volt);
  border-color: var(--ink);
}

.episode-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.episode-card {
  display: flex;
  min-height: 360px;
  min-width: 0;
  padding: 26px;
  border: 2px solid var(--ink);
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(88, 221, 255, 0.14), transparent 42%),
    rgba(255, 255, 255, 0.7);
  box-shadow: 10px 10px 0 var(--ink);
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

.episode-card-featured {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(246, 194, 74, 0.2), rgba(88, 221, 255, 0.16) 54%, transparent),
    var(--charcoal);
}

.episode-card.is-hidden {
  display: none;
}

.episode-number {
  margin-bottom: 8px;
  color: var(--signal);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.episode-card h3 {
  margin-bottom: 0;
}

.episode-card p:not(.episode-number) {
  color: var(--muted);
}

.episode-card-featured .episode-number {
  color: var(--volt);
}

.episode-card-featured p:not(.episode-number) {
  color: rgba(255, 255, 255, 0.78);
}

.episode-meta {
  margin-bottom: 0;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.episode-summary {
  margin-bottom: 4px;
}

.episode-player {
  display: block;
  width: 100%;
  min-height: 42px;
  margin-top: auto;
}

.episode-actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: auto;
  gap: 12px;
}

.episode-card a {
  width: max-content;
  color: var(--ink);
  font-weight: 900;
  border-bottom: 4px solid var(--volt);
}

.episode-card-featured a {
  color: var(--white);
}

.episode-actions a {
  margin-top: 0;
  line-height: 1.2;
}

.episode-youtube-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 2px solid #e62117;
  background: #e62117;
  color: var(--white);
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 9px 100%, 0 calc(100% - 9px));
}

.episode-card .episode-youtube-link,
.episode-card-featured .episode-youtube-link {
  color: var(--white);
  border-bottom: 0;
}

.episode-subscribe-link {
  align-self: center;
}

.episode-section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.episode-section-cta .button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.58);
  border-color: var(--ink);
}

.split-section {
  grid-template-columns: 0.8fr 1.2fr;
}

.section-dark .section-kicker {
  color: var(--volt);
}

.rich-copy {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
}

.rich-copy p:last-child,
.founder-copy p:last-of-type,
.merch-copy p:last-of-type,
.guest-panel p:last-child,
.contact-layout p:last-child {
  margin-bottom: 0;
}

.founder-section {
  overflow: hidden;
}

.founder-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  align-items: center;
  gap: clamp(28px, 6vw, 76px);
}

.founder-media {
  position: relative;
  min-height: 680px;
}

.founder-media::before {
  position: absolute;
  right: 18px;
  bottom: 38px;
  content: "CEO";
  color: transparent;
  font-family: var(--display);
  font-size: clamp(5.5rem, 13vw, 11rem);
  line-height: 0.8;
  opacity: 0.2;
  pointer-events: none;
  -webkit-text-stroke: 2px var(--signal);
}

.founder-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: var(--night);
  box-shadow: 12px 12px 0 var(--ink);
}

.founder-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}

.founder-photo-main {
  inset: 0 74px 42px 0;
}

.founder-photo-main img {
  object-position: center 35%;
}

.founder-photo-accent {
  right: 0;
  bottom: 0;
  width: min(46%, 260px);
  aspect-ratio: 1;
  box-shadow: 10px 10px 0 var(--volt);
}

.founder-photo-accent img {
  object-position: center 26%;
}

.founder-copy {
  position: relative;
}

.founder-copy::before {
  display: block;
  width: 76px;
  height: 10px;
  margin-bottom: 22px;
  content: "";
  background: var(--volt);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 0 100%);
}

.founder-copy p {
  max-width: 600px;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 700;
}

.founder-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0;
}

.founder-stats div {
  min-height: 112px;
  padding: 16px;
  border: 2px solid var(--ink);
  background:
    linear-gradient(135deg, rgba(246, 194, 74, 0.22), rgba(88, 221, 255, 0.08) 58%, transparent),
    rgba(255, 255, 255, 0.74);
  box-shadow: 6px 6px 0 var(--ink);
}

.founder-stats strong,
.founder-stats span {
  display: block;
}

.founder-stats strong {
  margin-bottom: 7px;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.6vw, 1.8rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.founder-stats span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.merch-section {
  overflow: hidden;
}

.merch-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: clamp(28px, 5vw, 66px);
}

.merch-copy {
  position: sticky;
  top: 104px;
}

.merch-copy p {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.05rem;
}

.merch-copy .button {
  margin-top: 12px;
}

.merch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.merch-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.merch-card {
  min-height: 360px;
  padding: 18px;
  border: 2px solid var(--ink);
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(36, 199, 183, 0.14), transparent 48%),
    rgba(255, 255, 255, 0.76);
  box-shadow: 9px 9px 0 rgba(17, 20, 18, 0.9);
}

.merch-card-featured {
  background:
    linear-gradient(135deg, rgba(246, 194, 74, 0.18), rgba(88, 221, 255, 0.12) 56%, transparent),
    var(--night);
  color: var(--white);
}

.merch-status {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--signal);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.merch-card-featured .merch-status {
  color: var(--volt);
}

.merch-product {
  position: relative;
  display: grid;
  height: 150px;
  margin-bottom: 20px;
  place-items: center;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 0;
  background:
    repeating-linear-gradient(135deg, rgba(17, 20, 18, 0.08) 0 2px, transparent 2px 13px),
    var(--mist);
}

.merch-card-featured .merch-product {
  border-color: rgba(255, 255, 255, 0.28);
  background:
    repeating-linear-gradient(135deg, rgba(246, 194, 74, 0.12) 0 2px, transparent 2px 14px),
    rgba(255, 255, 255, 0.08);
}

.merch-product::before,
.merch-product::after {
  position: absolute;
  content: "";
}

.hoodie::before {
  width: 112px;
  height: 122px;
  border-radius: 34px 34px 12px 12px;
  background: linear-gradient(145deg, #32352f, #070908);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.hoodie::after {
  width: 48px;
  height: 32px;
  top: 24px;
  border: 3px solid var(--volt);
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
}

.tee::before {
  width: 116px;
  height: 108px;
  clip-path: polygon(18% 0, 39% 0, 50% 15%, 61% 0, 82% 0, 100% 28%, 80% 42%, 80% 100%, 20% 100%, 20% 42%, 0 28%);
  background: linear-gradient(145deg, #fff8e1, #f6b13a);
  box-shadow: inset 0 0 0 2px rgba(22, 22, 22, 0.08);
}

.tee::after {
  width: 34px;
  height: 34px;
  border: 3px solid var(--night);
  border-radius: 50%;
}

.cap::before {
  width: 122px;
  height: 58px;
  border-radius: 80px 80px 22px 22px;
  background: linear-gradient(145deg, var(--signal), var(--cyan));
}

.cap::after {
  width: 78px;
  height: 25px;
  right: 58px;
  bottom: 48px;
  border-radius: 0 24px 24px 0;
  background: var(--volt);
  transform: rotate(-5deg);
}

.journal::before {
  width: 92px;
  height: 118px;
  border-radius: 6px;
  background: linear-gradient(145deg, var(--volt), #8f5c19);
  box-shadow: 12px 10px 0 rgba(22, 22, 22, 0.12);
}

.journal::after {
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.76);
  border-radius: 50%;
}

.merch-card h3 {
  margin-bottom: 10px;
}

.merch-card p {
  color: var(--muted);
}

.merch-card-featured p {
  color: rgba(255, 255, 255, 0.75);
}

.merch-link {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin-top: 14px;
  padding-bottom: 4px;
  border-bottom: 4px solid var(--volt);
  color: var(--ink);
  font-weight: 950;
  text-transform: uppercase;
}

.ecosystem-section {
  background:
    linear-gradient(135deg, rgba(246, 194, 74, 0.18), rgba(88, 221, 255, 0.1) 32%, rgba(7, 9, 8, 0) 58%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 44px),
    var(--charcoal);
}

.ecosystem-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  align-items: end;
  gap: clamp(22px, 5vw, 70px);
  margin-bottom: clamp(28px, 5vw, 46px);
}

.ecosystem-intro p:last-child {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.ecosystem-card {
  min-height: 270px;
  padding: 24px;
  border: 2px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(88, 221, 255, 0.12), rgba(246, 194, 74, 0.08) 52%, transparent),
    rgba(255, 255, 255, 0.06);
}

.ecosystem-card span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--volt);
  font-weight: 950;
}

.ecosystem-card p {
  color: rgba(255, 255, 255, 0.72);
}

.ecosystem-path {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
  border: 2px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  overflow: hidden;
}

.ecosystem-path div {
  min-height: 118px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.09);
}

.ecosystem-path div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.ecosystem-path strong,
.ecosystem-path span {
  display: block;
}

.ecosystem-path strong {
  margin-bottom: 8px;
  color: var(--volt);
}

.ecosystem-path span {
  color: rgba(255, 255, 255, 0.72);
}

.shows-section {
  position: relative;
  overflow: hidden;
}

.shows-section::before {
  position: absolute;
  top: 34px;
  right: -28px;
  content: "LINKED";
  color: transparent;
  font-family: var(--display);
  font-size: clamp(5rem, 15vw, 13rem);
  line-height: 0.8;
  opacity: 0.2;
  pointer-events: none;
  -webkit-text-stroke: 2px var(--signal);
}

.shows-header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(22px, 5vw, 70px);
  align-items: end;
  margin-bottom: clamp(30px, 5vw, 50px);
}

.shows-header p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 700;
}

.show-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.show-card {
  display: flex;
  min-height: 390px;
  padding: 24px;
  border: 2px solid var(--ink);
  background:
    linear-gradient(135deg, rgba(246, 194, 74, 0.18), rgba(88, 221, 255, 0.08) 50%, transparent),
    rgba(255, 255, 255, 0.74);
  box-shadow: 10px 10px 0 var(--ink);
  flex-direction: column;
}

.show-card-featured {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(246, 194, 74, 0.2), rgba(88, 221, 255, 0.18) 58%, transparent),
    var(--night);
  box-shadow: 10px 10px 0 var(--volt);
}

.show-card-media {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1fr);
  min-height: 430px;
  gap: 22px;
  align-items: start;
}

.show-card-media .show-label,
.show-card-media h3,
.show-card-media p:not(.show-label),
.show-card-media .show-link {
  grid-column: 2;
}

.show-art {
  grid-row: 1 / span 5;
  aspect-ratio: 1;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: var(--night);
  box-shadow: 8px 8px 0 var(--volt);
}

.show-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.building-better-card .show-art {
  display: grid;
  place-items: center;
  border-color: rgba(255, 255, 255, 0.28);
  background: #050505;
  box-shadow: 8px 8px 0 rgba(246, 194, 74, 0.82);
}

.building-better-card .show-art img {
  padding: 12px;
  object-fit: contain;
}

.show-mark {
  display: grid;
  width: 68px;
  height: 68px;
  margin-bottom: 24px;
  place-items: center;
  border: 2px solid currentColor;
  background: var(--volt);
  color: var(--night);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  font-family: var(--display);
  font-size: 1.6rem;
}

.show-label {
  margin-bottom: 12px;
  color: var(--signal);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.show-card-featured .show-label {
  color: var(--volt);
}

.show-card p:not(.show-label) {
  color: var(--muted);
}

.show-card-featured p:not(.show-label) {
  color: rgba(255, 255, 255, 0.74);
}

.show-link {
  width: max-content;
  max-width: 100%;
  margin-top: auto;
  padding-bottom: 4px;
  border-bottom: 4px solid var(--volt);
  color: currentColor;
  font-weight: 950;
  text-transform: uppercase;
}

.guest-layout {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
}

.guest-panel {
  padding: clamp(28px, 4vw, 44px);
  border: 2px solid var(--ink);
  border-radius: 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(246, 194, 74, 0.18), rgba(88, 221, 255, 0.1) 54%, transparent),
    var(--night);
  box-shadow: 12px 12px 0 var(--volt);
}

.guest-panel p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.guest-points {
  display: grid;
  gap: 14px;
}

.guest-points div {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  min-height: 74px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  gap: 18px;
}

.guest-points span {
  color: var(--signal);
  font-weight: 950;
}

.guest-points strong {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.newsletter {
  padding: clamp(56px, 8vw, 88px) 0;
  color: var(--night);
  background:
    linear-gradient(135deg, rgba(88, 221, 255, 0.2), transparent 55%),
    repeating-linear-gradient(135deg, rgba(7, 9, 8, 0.1) 0 2px, transparent 2px 18px),
    var(--volt);
}

.newsletter-inner {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  align-items: center;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.youtube-subscribe-panel {
  display: grid;
  gap: 18px;
}

.youtube-subscribe-panel p {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(7, 9, 8, 0.78);
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  font-weight: 800;
}

.youtube-subscribe-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.youtube-subscribe-actions .button-secondary {
  color: var(--night);
  background: rgba(255, 255, 255, 0.38);
  border-color: var(--night);
}

.shop-page {
  background:
    linear-gradient(90deg, rgba(17, 20, 18, 0.055) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--paper);
}

.shop-hero {
  position: relative;
  overflow: hidden;
  padding: 140px 0 82px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(246, 194, 74, 0.22), rgba(88, 221, 255, 0.15) 42%, transparent 70%),
    repeating-linear-gradient(90deg, rgba(88, 221, 255, 0.08) 0 1px, transparent 1px 42px),
    var(--night);
}

.shop-hero::after {
  position: absolute;
  right: -38px;
  bottom: 34px;
  content: "MERCH";
  color: transparent;
  font-family: var(--display);
  font-size: clamp(5.2rem, 16vw, 14rem);
  line-height: 0.8;
  opacity: 0.24;
  pointer-events: none;
  -webkit-text-stroke: 2px rgba(88, 221, 255, 0.72);
}

.shop-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.62fr);
  align-items: center;
  gap: clamp(28px, 6vw, 76px);
}

.cart-count {
  display: inline-grid;
  min-width: 24px;
  min-height: 24px;
  margin-left: 8px;
  padding: 2px 6px;
  place-items: center;
  color: var(--night);
  background: var(--signal);
  font-size: 0.82rem;
  line-height: 1;
}

.shop-hero-panel {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 3vw, 30px);
  border: 2px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(246, 194, 74, 0.18), rgba(88, 221, 255, 0.14) 58%, transparent),
    rgba(255, 255, 255, 0.06);
  box-shadow: 12px 12px 0 var(--volt);
}

.shop-hero-panel img {
  display: block;
  width: min(100%, 340px);
  border: 2px solid rgba(255, 255, 255, 0.18);
}

.shop-hero-stat {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.shop-hero-stat strong,
.shop-hero-stat span {
  display: block;
}

.shop-hero-stat strong {
  margin-bottom: 5px;
  color: var(--volt);
  font-family: var(--display);
  font-size: 1.5rem;
  line-height: 0.96;
  text-transform: uppercase;
}

.shop-hero-stat span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.shop-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  margin-bottom: clamp(28px, 5vw, 48px);
}

.shop-section-heading h2 {
  margin-bottom: 0;
}

.shop-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.shop-card {
  display: flex;
  min-height: 100%;
  padding: 18px;
  border: 2px solid var(--ink);
  background:
    linear-gradient(135deg, rgba(246, 194, 74, 0.16), rgba(88, 221, 255, 0.08) 52%, transparent),
    rgba(255, 255, 255, 0.78);
  box-shadow: 9px 9px 0 rgba(17, 20, 18, 0.92);
  flex-direction: column;
}

.shop-product-art {
  min-height: 180px;
  margin-bottom: 20px;
  border: 2px solid var(--ink);
  background:
    repeating-linear-gradient(135deg, rgba(17, 20, 18, 0.08) 0 2px, transparent 2px 13px),
    var(--mist);
}

.shop-product-art .merch-product {
  height: 180px;
  margin-bottom: 0;
  border: 0;
  background: transparent;
}

.shop-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.shop-card-body p:not(.shop-price) {
  color: var(--muted);
  font-weight: 700;
}

.shop-price {
  margin: auto 0 16px;
  color: var(--brick);
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
}

.shop-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 78px;
  gap: 10px;
}

.shop-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.shop-form .button {
  grid-column: 1 / -1;
  width: 100%;
}

.shop-cta .button {
  width: max-content;
  justify-self: end;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(7, 9, 8, 0.56);
  backdrop-filter: blur(4px);
}

.cart-overlay[hidden] {
  display: none;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 41;
  display: grid;
  width: min(100%, 430px);
  padding: 24px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(88, 221, 255, 0.14), transparent 260px),
    var(--paper);
  box-shadow: -24px 0 80px rgba(7, 9, 8, 0.3);
  grid-template-rows: auto 1fr auto;
  transform: translateX(110%);
  transition: transform 180ms ease;
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--ink);
}

.cart-header h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 8vw, 3.5rem);
}

.cart-close {
  display: grid;
  width: 44px;
  height: 44px;
  border: 2px solid var(--ink);
  color: var(--night);
  background: var(--volt);
  cursor: pointer;
  font-weight: 950;
  place-items: center;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 12px;
  overflow: auto;
  padding: 18px 2px;
}

.cart-empty {
  color: var(--muted);
  font-weight: 800;
}

.cart-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 14px;
  border: 2px solid var(--ink);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 5px 5px 0 var(--ink);
}

.cart-item strong,
.cart-item span,
.cart-item small {
  display: block;
}

.cart-item span,
.cart-item small {
  color: var(--muted);
  font-weight: 800;
}

.cart-item-controls {
  display: inline-grid;
  grid-template-columns: 32px 28px 32px;
  align-items: center;
  border: 2px solid var(--ink);
  background: var(--white);
}

.cart-item-controls button {
  width: 32px;
  height: 32px;
  border: 0;
  color: var(--night);
  background: var(--volt);
  cursor: pointer;
  font-weight: 950;
}

.cart-item-controls span {
  color: var(--ink);
  font-weight: 950;
  text-align: center;
}

.cart-remove {
  grid-column: 1 / -1;
  width: max-content;
  padding: 0;
  border: 0;
  color: var(--brick);
  background: transparent;
  cursor: pointer;
  font-weight: 950;
  text-transform: uppercase;
}

.cart-summary {
  display: grid;
  gap: 12px;
  padding-top: 18px;
  border-top: 2px solid var(--ink);
}

.cart-summary > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.cart-summary strong {
  color: var(--brick);
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
}

.contact-layout {
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  align-items: start;
}

.contact-layout > div > p {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.05rem;
}

.email-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--brick);
  font-weight: 900;
  overflow-wrap: anywhere;
  border-bottom: 2px solid currentColor;
}

.founder-socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
  max-width: 660px;
  margin: 28px 0 30px;
  padding: 16px 0;
  border-block: 2px solid rgba(17, 20, 18, 0.26);
}

.founder-socials-label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 11px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.74rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.founder-social-links {
  display: flex;
  flex: 1 1 360px;
  flex-wrap: wrap;
  gap: 12px 22px;
  min-width: 0;
}

.founder-social-link {
  position: relative;
  display: grid;
  gap: 1px;
  min-width: 108px;
  max-width: 100%;
  padding: 2px 0 8px;
  color: var(--ink);
}

.founder-social-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  content: "";
  background: var(--signal);
  transform: scaleX(0.36);
  transform-origin: left;
  transition: transform 160ms ease, background 160ms ease;
}

.founder-social-link:hover::after,
.founder-social-link:focus-visible::after {
  background: var(--volt);
  transform: scaleX(1);
}

.founder-social-link span,
.founder-social-link strong {
  display: block;
  min-width: 0;
}

.founder-social-link span {
  color: var(--brick);
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.founder-social-link strong {
  color: var(--ink);
  font-size: clamp(0.82rem, 1.4vw, 0.94rem);
  font-weight: 900;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 10px;
  padding: clamp(22px, 4vw, 34px);
  border: 2px solid var(--ink);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 9px 9px 0 var(--ink);
}

.contact-form label {
  font-size: 0.88rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 2px solid rgba(17, 20, 18, 0.34);
  border-radius: 0;
  color: var(--ink);
  background: var(--white);
}

input,
select {
  min-height: 48px;
  padding: 0 14px;
}

textarea {
  min-height: 140px;
  padding: 13px 14px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(88, 221, 255, 0.52);
  outline-offset: 3px;
}

.form-status {
  min-height: 24px;
  margin: 3px 0 0;
  color: inherit;
  font-size: 0.92rem;
  font-weight: 750;
}

.contact-form .form-status {
  color: var(--brick);
}

.site-footer {
  padding: 30px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, var(--volt) 0 8px, transparent 8px),
    var(--night);
}

.footer-inner {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.footer-inner p {
  margin-bottom: 0;
  font-weight: 850;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 76px 14px auto;
    display: grid;
    padding: 18px;
    border: 2px solid var(--ink);
    border-radius: 0;
    color: var(--ink);
    background: rgba(246, 240, 220, 0.98);
    box-shadow: 8px 8px 0 var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    min-height: 82svh;
  }

  .hero-media {
    background-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 9, 8, 0.95), rgba(7, 9, 8, 0.68)),
      linear-gradient(180deg, rgba(7, 9, 8, 0.22), rgba(7, 9, 8, 0.84));
  }

  .hero-content {
    min-height: 82svh;
    padding-top: 116px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 5rem);
  }

  .listen-grid,
  .newsletter-inner,
  .contact-layout,
  .founder-layout,
  .merch-layout,
  .shop-hero-grid,
  .shop-section-heading,
  .ecosystem-intro,
  .shows-header,
  .guest-layout,
  .split-section,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .merch-copy {
    position: static;
  }

  .ecosystem-grid,
  .show-grid,
  .ecosystem-path {
    grid-template-columns: 1fr;
  }

  .show-card-media {
    grid-template-columns: 1fr;
  }

  .show-card-media .show-label,
  .show-card-media h3,
  .show-card-media p:not(.show-label),
  .show-card-media .show-link,
  .show-art {
    grid-column: auto;
  }

  .show-art {
    grid-row: auto;
  }

  .ecosystem-path div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .platform-links {
    justify-content: flex-start;
  }

  .episode-grid,
  .merch-showcase,
  .shop-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .episode-grid,
  .merch-showcase {
    grid-template-columns: 1fr;
  }

  .shop-section-heading .button {
    justify-self: start;
  }

  .episode-card-featured {
    grid-column: auto;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .footer-inner div {
    justify-content: flex-start;
  }

  .founder-media {
    min-height: 620px;
  }
}

@media (max-width: 520px) {
  .site-header {
    min-height: 70px;
    padding-inline: 14px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 58px;
    height: 38px;
  }

  .brand strong {
    max-width: 176px;
    font-size: 0.92rem;
  }

  .site-nav {
    inset-top: 70px;
  }

  .section-inner,
  .hero-content {
    width: min(100% - 28px, 1120px);
  }

  .hero-actions,
  .hero-actions .button,
  .episode-section-cta,
  .episode-section-cta .button,
  .youtube-subscribe-actions,
  .youtube-subscribe-actions .button,
  .merch-actions,
  .merch-actions .button,
  .shop-section-heading .button,
  .shop-cta .button {
    width: 100%;
  }

  .hero-copy {
    font-size: 1.05rem;
  }

  .platform-links a {
    width: 100%;
    padding: 10px 0;
  }

  .founder-media {
    min-height: 520px;
  }

  .founder-photo-main {
    inset: 0 38px 88px 0;
  }

  .founder-photo-accent {
    width: min(54%, 210px);
  }

  .founder-stats {
    grid-template-columns: 1fr;
  }

  .episode-card,
  .merch-card,
  .show-card,
  .guest-panel,
  .contact-form {
    padding: 22px;
  }

  .founder-socials,
  .founder-social-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .merch-card {
    min-height: 330px;
  }

  .shop-hero {
    padding-top: 116px;
  }

  .shop-product-grid {
    grid-template-columns: 1fr;
  }

  .shop-form {
    grid-template-columns: 1fr;
  }

  .cart-drawer {
    padding: 18px;
  }
}
