:root {
  --ink: #14201f;
  --muted: #63716d;
  --paper: #f6f4ed;
  --paper-strong: #fffaf0;
  --line: rgba(20, 32, 31, 0.14);
  --deep: #113a3d;
  --deep-2: #092426;
  --reef: #00a99d;
  --sun: #f7b538;
  --coral: #ef6f57;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(9, 36, 38, 0.18);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  padding: 0.65rem 0.9rem;
  color: var(--white);
  background: var(--deep-2);
  border-radius: var(--radius);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.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: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0.9rem clamp(1rem, 4vw, 3rem);
  color: var(--white);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-open {
  color: var(--ink);
  background: rgba(246, 244, 237, 0.95);
  box-shadow: 0 14px 34px rgba(9, 36, 38, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  font-weight: 800;
  line-height: 1;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--deep-2);
  background: var(--sun);
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  font-size: 0.85rem;
  letter-spacing: 0;
}

.brand small {
  display: block;
  margin-top: 0.2rem;
  color: currentColor;
  font-size: 0.76rem;
  font-weight: 700;
  opacity: 0.76;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.site-nav a,
.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.92rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus-visible,
.site-header.nav-open .site-nav a:hover,
.site-header.nav-open .site-nav a:focus-visible {
  background: rgba(17, 58, 61, 0.08);
}

.site-nav .nav-cta {
  color: var(--deep-2);
  background: var(--sun);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--radius);
  color: currentColor;
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 92svh;
  overflow: hidden;
  color: var(--white);
  background: var(--deep-2);
}

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 36, 38, 0.9) 0%, rgba(9, 36, 38, 0.56) 44%, rgba(9, 36, 38, 0.12) 100%),
    linear-gradient(0deg, rgba(9, 36, 38, 0.82) 0%, rgba(9, 36, 38, 0.1) 46%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 1160px);
  margin: 0 auto;
  padding: 8.5rem clamp(1rem, 4vw, 3rem) 6rem;
}

.eyebrow,
.card-kicker {
  margin: 0 0 0.85rem;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--sun);
}

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

h1 {
  max-width: 780px;
  margin-bottom: 1rem;
  font-size: clamp(4rem, 13vw, 8.8rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.24rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.04rem, 2vw, 1.28rem);
  line-height: 1.6;
}

.hero-actions,
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 900;
  line-height: 1.1;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.button-primary {
  color: var(--deep-2);
  background: var(--sun);
  box-shadow: 0 14px 34px rgba(247, 181, 56, 0.22);
}

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

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.2);
}

.quick-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 720px;
  margin: 3.5rem 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.quick-stats div {
  padding: 1rem;
  background: rgba(9, 36, 38, 0.36);
}

.quick-stats dt {
  font-weight: 950;
}

.quick-stats dd {
  margin: 0.24rem 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--paper-strong);
}

.feature-strip a {
  min-height: 126px;
  display: grid;
  align-content: center;
  gap: 0.4rem;
  padding: 1.4rem clamp(1rem, 4vw, 3rem);
  border-right: 1px solid var(--line);
}

.feature-strip a:last-child {
  border-right: 0;
}

.feature-strip a:hover,
.feature-strip a:focus-visible {
  outline: none;
  background: rgba(0, 169, 157, 0.08);
}

.feature-strip span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 850;
  text-transform: uppercase;
}

.feature-strip strong {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.15;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 3rem);
}

.section-heading,
.video-grid,
.gear-grid,
.merch-layout,
.about-grid {
  width: min(100%, 1160px);
  margin: 0 auto;
}

.section-heading {
  margin-bottom: 2.4rem;
}

.section-heading p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.7fr);
  gap: clamp(1.2rem, 5vw, 4rem);
  align-items: end;
}

.section-light {
  background: var(--paper-strong);
}

.section-dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(239, 111, 87, 0.12), rgba(0, 169, 157, 0.06)),
    var(--deep-2);
}

.section-dark .section-heading p,
.section-dark .drop-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.video-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.75fr);
  gap: 1.2rem;
}

.video-card,
.episode-list article,
.gear-card,
.drop-card,
.signup-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(9, 36, 38, 0.08);
}

.video-card {
  overflow: hidden;
}

.video-card a {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  background: var(--deep);
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 16px 30px rgba(9, 36, 38, 0.24);
}

.play-badge::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid var(--deep-2);
}

.video-card > div {
  padding: 1.3rem;
}

.video-card p,
.episode-list p,
.gear-card p {
  color: var(--muted);
  line-height: 1.6;
}

.episode-list {
  display: grid;
  gap: 1rem;
}

.episode-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.1rem;
}

.episode-list span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--deep-2);
  background: rgba(247, 181, 56, 0.5);
  border-radius: 50%;
  font-weight: 950;
}

.filter-bar {
  width: min(100%, 1160px);
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: -0.4rem auto 1.4rem;
}

.filter-button {
  min-height: 42px;
  padding: 0.58rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  font-weight: 850;
}

.filter-button[aria-selected="true"] {
  color: var(--white);
  background: var(--deep);
  border-color: var(--deep);
}

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

.gear-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}

.gear-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--deep);
}

.gear-card-body {
  display: grid;
  gap: 0.7rem;
  flex: 1;
  padding: 1.1rem;
}

.gear-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.gear-meta span {
  padding: 0.28rem 0.5rem;
  color: var(--deep);
  background: rgba(0, 169, 157, 0.12);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 850;
}

.gear-price {
  margin: auto 0 0;
  font-weight: 950;
}

.gear-card .button {
  width: 100%;
  margin-top: 0.2rem;
}

.affiliate-note {
  width: min(100%, 1160px);
  margin: 1.1rem auto 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.merch-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 1rem;
}

.drop-card,
.signup-form {
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.drop-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1fr);
  min-height: 360px;
  overflow: hidden;
}

.drop-visual {
  position: relative;
  min-height: 320px;
  background:
    radial-gradient(circle at 26% 24%, rgba(247, 181, 56, 0.86), transparent 19%),
    linear-gradient(135deg, rgba(0, 169, 157, 0.65), rgba(239, 111, 87, 0.22)),
    #174d4f;
}

.shirt-shape,
.cap-shape,
.decal-shape {
  position: absolute;
  display: block;
  filter: drop-shadow(0 22px 26px rgba(0, 0, 0, 0.24));
}

.shirt-shape {
  left: 16%;
  top: 22%;
  width: 44%;
  height: 48%;
  background: var(--paper-strong);
  clip-path: polygon(22% 0, 39% 8%, 62% 8%, 79% 0, 100% 22%, 82% 38%, 82% 100%, 18% 100%, 18% 38%, 0 22%);
}

.cap-shape {
  right: 14%;
  top: 18%;
  width: 34%;
  height: 18%;
  border-radius: 90px 90px 26px 26px;
  background: var(--deep-2);
}

.cap-shape::after {
  content: "";
  position: absolute;
  right: -32%;
  bottom: 0;
  width: 44%;
  height: 38%;
  border-radius: 0 999px 999px 0;
  background: var(--sun);
}

.decal-shape {
  right: 11%;
  bottom: 18%;
  width: 50%;
  padding: 0.7rem 0.9rem;
  color: var(--deep-2);
  background: var(--sun);
  border-radius: var(--radius);
  font-size: clamp(0.8rem, 2vw, 1rem);
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.drop-copy {
  align-self: center;
  padding: clamp(1.3rem, 4vw, 2.2rem);
}

.signup-form {
  align-self: stretch;
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: clamp(1.2rem, 4vw, 2rem);
}

.signup-form label {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 950;
  line-height: 1;
}

.signup-form input {
  min-width: 0;
  flex: 1 1 210px;
  min-height: 50px;
  padding: 0.85rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(0, 0, 0, 0.16);
}

.signup-form input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.form-message {
  min-height: 1.6rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: clamp(1.2rem, 5vw, 4rem);
}

.about-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--deep);
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem clamp(1rem, 4vw, 3rem);
  color: rgba(255, 255, 255, 0.75);
  background: var(--deep-2);
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  gap: 1rem;
}

.site-footer a {
  color: var(--white);
  font-weight: 850;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    left: 1rem;
    right: 1rem;
    display: none;
    padding: 0.8rem;
    color: var(--ink);
    background: var(--paper-strong);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a,
  .nav-cta {
    width: 100%;
    justify-content: space-between;
  }

  .split-heading,
  .video-grid,
  .merch-layout,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .gear-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 680px) {
  .hero {
    min-height: 94svh;
  }

  .hero-media::after {
    background:
      linear-gradient(0deg, rgba(9, 36, 38, 0.9) 0%, rgba(9, 36, 38, 0.5) 64%, rgba(9, 36, 38, 0.18) 100%),
      linear-gradient(90deg, rgba(9, 36, 38, 0.55), rgba(9, 36, 38, 0.08));
  }

  .hero-content {
    padding-bottom: 3.8rem;
  }

  h1 {
    font-size: clamp(3.4rem, 21vw, 5rem);
  }

  .quick-stats,
  .feature-strip,
  .gear-grid {
    grid-template-columns: 1fr;
  }

  .feature-strip a {
    min-height: 96px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-strip a:last-child {
    border-bottom: 0;
  }

  .episode-list article {
    grid-template-columns: 46px 1fr;
  }

  .hero-actions .button,
  .form-row .button {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
