:root {
  --orange: #f7941d;
  --orange-soft: #ffb45d;
  --black: #080808;
  --black-2: #111111;
  --paper: #f6f2ec;
  --white: #ffffff;
  --muted: #746f67;
  --line: rgba(8, 8, 8, 0.12);
  --line-dark: rgba(255, 255, 255, 0.13);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 32px), var(--max));
  padding: 12px 20px;
  color: var(--white);
  background: rgba(8, 8, 8, 0.78);
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  transform: translateX(-50%);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  height: 34px;
}

.brand img {
  width: auto;
  height: 100%;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 400;
}

.site-header a:hover {
  color: var(--orange-soft);
}

.site-header .channel-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 16px;
  color: var(--black);
  background: var(--white);
  border-radius: 999px;
}

.site-header .channel-link span {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 16px;
  color: var(--white);
  background: var(--black);
  border-radius: 4px;
  font-size: 0.62rem;
  line-height: 1;
}

.site-header .channel-link:hover {
  color: var(--black);
  background: var(--orange);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.success-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(8, 8, 8, 0.66);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    backdrop-filter 220ms ease;
  backdrop-filter: blur(16px);
}

.success-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.success-card {
  position: relative;
  width: min(100%, 430px);
  overflow: hidden;
  padding: 34px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 12%, rgba(247, 148, 29, 0.22), transparent 30%),
    linear-gradient(145deg, rgba(25, 25, 25, 0.98), rgba(5, 5, 5, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
  transform: translateY(16px) scale(0.97);
  transition: transform 260ms ease;
}

.success-modal.is-visible .success-card {
  transform: translateY(0) scale(1);
}

.success-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.success-check {
  position: relative;
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin-bottom: 22px;
  color: var(--black);
  background: var(--orange);
  border-radius: 999px;
  box-shadow: 0 0 0 10px rgba(247, 148, 29, 0.12);
  transform: scale(0.7);
  animation: check-pop 520ms cubic-bezier(0.2, 1.4, 0.28, 1) forwards;
}

.success-check svg {
  width: 34px;
  height: 34px;
}

.success-check path {
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 34;
  stroke-dashoffset: 34;
  animation: check-draw 520ms ease 180ms forwards;
}

.success-kicker {
  position: relative;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.success-card h2 {
  position: relative;
  margin-bottom: 12px;
  color: var(--white);
  font-size: 2.05rem;
  line-height: 1.04;
  font-weight: 600;
}

.success-card p,
.success-card ul,
.success-count {
  position: relative;
}

.success-card p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
}

.success-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.76);
}

.success-card li {
  display: flex;
  gap: 10px;
  align-items: center;
}

.success-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  background: var(--orange);
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(247, 148, 29, 0.72);
}

.success-count {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-left: auto;
  color: var(--orange);
  border: 1px solid rgba(247, 148, 29, 0.32);
  border-radius: 999px;
  font-size: 1.16rem;
  font-weight: 600;
}

@keyframes check-pop {
  to {
    transform: scale(1);
  }
}

@keyframes check-draw {
  to {
    stroke-dashoffset: 0;
  }
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(390px, 0.9fr) minmax(430px, 1.1fr);
  min-height: 860px;
  padding: 126px max(24px, calc((100vw - var(--max)) / 2)) 0;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 38%, rgba(247, 148, 29, 0.22), transparent 32%),
    linear-gradient(115deg, #070707 0%, #111 58%, #070707 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 520px;
  padding: 0 0 96px;
}

.kicker {
  margin: 0 0 13px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  max-width: 9ch;
  font-size: clamp(3rem, 4.4vw, 4.15rem);
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: 0;
}

.intro {
  max-width: 520px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(0.96rem, 1.18vw, 1.05rem);
  line-height: 1.48;
}

.privacy-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.9rem;
}

.privacy-note span {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  color: var(--black);
  background: var(--orange);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.hero-media {
  position: relative;
  z-index: 1;
  align-self: end;
  min-height: 734px;
}

.brand-mark {
  position: absolute;
  right: -18%;
  bottom: 6%;
  width: min(42vw, 560px);
  aspect-ratio: 1;
  background: url("assets/logo-black.png") center / contain no-repeat;
  opacity: 0.12;
}

.hero-media img {
  position: absolute;
  top: 0;
  right: -92px;
  bottom: 0;
  width: min(59vw, 860px);
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: bottom right;
  filter: drop-shadow(0 26px 30px rgba(0, 0, 0, 0.44));
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  width: min(100%, 430px);
}

.lead-form input,
.lead-form button {
  min-height: 52px;
  border-radius: 8px;
}

.lead-form input {
  width: 100%;
  min-width: 0;
  padding: 0 15px;
  color: var(--black);
  background: var(--white);
  border: 1px solid transparent;
  outline: none;
}

.lead-form input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(247, 148, 29, 0.2);
}

.lead-form button {
  padding: 0 22px;
  color: var(--black);
  font-weight: 600;
  background: var(--orange);
  border: 0;
  cursor: pointer;
  white-space: nowrap;
}

.lead-form button:hover {
  background: var(--orange-soft);
}

.lead-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-feedback {
  min-height: 20px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.intro-section,
.host-section,
.pillars,
.table-section {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 72px;
  align-items: center;
  padding: 98px 0 56px;
}

.section-copy h2 {
  max-width: 12.5ch;
}

.section-copy h2,
.host-copy h2 {
  margin: 0;
  font-size: clamp(2.1rem, 3.4vw, 3.35rem);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: 0;
}

.section-text p,
.host-copy p,
.list-section p,
.footer-main p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.68;
}

.section-text p:last-child,
.host-copy p:last-child {
  margin-bottom: 0;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 0 0 88px;
}

.pillars article {
  min-height: 210px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.pillar-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 36px;
  color: var(--orange);
  background: rgba(247, 148, 29, 0.1);
  border: 1px solid rgba(247, 148, 29, 0.24);
  border-radius: 999px;
}

.pillar-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.pillars h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  line-height: 1.15;
  font-weight: 600;
}

.pillars p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.host-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(360px, 1fr);
  gap: 56px;
  align-items: center;
  padding: 90px 0;
  border-top: 1px solid var(--line);
}

.host-image {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(circle at 58% 28%, rgba(247, 148, 29, 0.2), transparent 34%),
    var(--black);
  border-radius: 8px;
}

.host-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
}

.host-copy a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--black);
  font-weight: 500;
}

.host-copy h2 {
  margin-bottom: 22px;
}

.host-copy a:hover {
  color: var(--orange);
}

.episodes {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 92px 0 104px;
  border-top: 1px solid var(--line);
}

.section-title {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: end;
  margin-bottom: 30px;
}

.section-title .kicker {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
}

.section-title h2,
.list-section h2 {
  margin: 0;
  font-size: clamp(2.1rem, 3.8vw, 3.6rem);
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: 0;
}

.section-title a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding-bottom: 8px;
  color: var(--muted);
  font-weight: 500;
}

.section-title a:hover {
  color: var(--orange);
}

.youtube-icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 16px;
  margin-right: 8px;
  color: var(--white);
  background: var(--black);
  border-radius: 4px;
  font-size: 0.62rem;
  line-height: 1;
}

.media-row-block + .media-row-block {
  margin-top: 46px;
}

.row-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.row-title h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.12;
  font-weight: 600;
}

.row-title span {
  color: var(--muted);
  font-size: 0.95rem;
}

.carousel-bleed {
  position: relative;
  width: 100vw;
  margin-left: calc((var(--max) - 100vw) / 2);
  overflow: visible;
}

.carousel-bleed::before,
.carousel-bleed::after {
  position: absolute;
  top: 0;
  bottom: 12px;
  z-index: 2;
  width: max(110px, calc((100vw - var(--max)) / 2 + 120px));
  pointer-events: none;
  content: "";
}

.carousel-bleed::before {
  left: 0;
  background: linear-gradient(90deg, var(--paper), rgba(246, 242, 236, 0));
}

.carousel-bleed::after {
  right: 0;
  background: linear-gradient(270deg, var(--paper), rgba(246, 242, 236, 0));
}

.media-row {
  display: grid;
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  padding: 14px max(24px, calc((100vw - var(--max)) / 2)) 34px;
  scroll-padding-inline: max(24px, calc((100vw - var(--max)) / 2));
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(8, 8, 8, 0.22) transparent;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.media-row::-webkit-scrollbar {
  display: none;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 12px 30px rgba(8, 8, 8, 0.15);
}

.carousel-arrow.previous {
  left: max(18px, calc((100vw - var(--max)) / 2 + 10px));
}

.carousel-arrow.next {
  right: max(18px, calc((100vw - var(--max)) / 2 + 10px));
}

.carousel-arrow:hover {
  background: var(--orange);
}

.video-row {
  grid-auto-columns: minmax(380px, 540px);
}

.shorts-row {
  grid-auto-columns: clamp(250px, 22vw, 310px);
}

.video-card {
  display: block;
  overflow: hidden;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  scroll-snap-align: center;
  transform: scale(0.92);
  transform-origin: center;
  opacity: 0.72;
  transition:
    transform 240ms ease,
    opacity 240ms ease,
    box-shadow 240ms ease;
}

.video-card.is-centered {
  transform: scale(1);
  opacity: 1;
  box-shadow: 0 14px 28px rgba(8, 8, 8, 0.13);
}

.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  background: #161616;
}

.short-card .video-thumb {
  aspect-ratio: 9 / 16;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.video-card:hover .video-thumb img {
  transform: scale(1.03);
}

.skeleton-card {
  pointer-events: none;
}

.skeleton-card,
.skeleton-card.is-centered {
  opacity: 0.78;
  transform: scale(0.96);
  box-shadow: none;
}

.skeleton-shimmer,
.skeleton-line {
  position: relative;
  overflow: hidden;
  background: linear-gradient(110deg, #e5dfd6 0%, #f3eee7 42%, #ddd6cc 68%, #e5dfd6 100%);
  background-size: 220% 100%;
  animation: skeleton-shimmer 1.15s ease-in-out infinite;
}

.skeleton-line {
  display: block;
  height: 18px;
  border-radius: 999px;
}

.skeleton-line.title {
  width: 84%;
  margin-bottom: 16px;
}

.skeleton-line.meta {
  width: 52%;
}

@keyframes skeleton-shimmer {
  to {
    background-position-x: -220%;
  }
}

.video-duration {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 4px 7px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.78);
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 500;
}

.video-info {
  padding: 16px;
}

.video-info h3 {
  display: -webkit-box;
  overflow: hidden;
  margin: 0 0 14px;
  color: var(--black);
  font-size: 1.04rem;
  line-height: 1.3;
  font-weight: 600;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.short-card .video-info h3 {
  min-height: 44px;
  font-size: 0.92rem;
}

.video-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.25;
}

.short-card .video-meta {
  display: flex;
  justify-content: flex-start;
  gap: 6px;
}

.short-card .video-meta span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.loading {
  color: var(--muted);
}

.list-section {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 88px max(24px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background:
    radial-gradient(circle at 82% 34%, rgba(247, 148, 29, 0.25), transparent 28%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    var(--black);
  background-size: auto, 48px 48px, 48px 48px, auto;
}

.list-section::after {
  position: absolute;
  top: 0;
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 0;
  width: min(42vw, 560px);
  transform: translateX(8%);
  content: "";
  background: url("assets/gongocast-grafismo.png") center / contain no-repeat;
  opacity: 0.2;
  filter: brightness(0) invert(1);
}

.list-panel {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.list-panel img {
  width: 62px;
  height: 62px;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 22px rgba(247, 148, 29, 0.34));
}

.list-section p {
  max-width: 640px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.table-section {
  padding: 92px 0;
}

.table-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(390px, 0.68fr);
  gap: 42px;
  align-items: start;
  margin-bottom: 34px;
}

.table-heading .kicker {
  grid-column: 1 / -1;
  margin-bottom: -6px;
}

.table-heading h2 {
  margin: 0;
  max-width: 30ch;
  font-size: clamp(1.35rem, 1.65vw, 1.7rem);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: 0;
}

.table-heading p:not(.kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.table-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.table-grid article {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 24px;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 0%, rgba(247, 148, 29, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015)),
    var(--black);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 45px rgba(8, 8, 8, 0.08);
}

.table-grid article::after {
  position: absolute;
  inset: auto -20% -35% 35%;
  height: 120px;
  content: "";
  background: rgba(247, 148, 29, 0.16);
  filter: blur(34px);
}

.table-grid span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 54px;
  color: var(--black);
  background: var(--orange);
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
}

.table-grid h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  line-height: 1.18;
  font-weight: 600;
}

.table-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.55;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
  gap: 70px;
  padding: 64px max(24px, calc((100vw - var(--max)) / 2)) 30px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--black-2);
}

.footer-wordmark {
  width: min(100%, 210px);
  height: auto;
  margin-bottom: 18px;
}

.footer-main p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 42px;
  align-content: start;
}

.footer-columns h3 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
}

.footer-columns a {
  display: block;
  margin-bottom: 10px;
  font-weight: 400;
}

.site-footer a:hover {
  color: var(--orange);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 28px;
  color: rgba(255, 255, 255, 0.48);
  border-top: 1px solid var(--line-dark);
}

.footer-bottom span span {
  color: var(--orange);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 118px;
  }

  .hero-content {
    max-width: 720px;
    padding-bottom: 34px;
  }

  .hero-media {
    min-height: 500px;
  }

  .hero-media img {
    top: 0;
    right: 50%;
    width: min(86vw, 620px);
    height: 100%;
    transform: translateX(50%);
  }

  .intro-section,
  .host-section,
  .table-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .pillars,
  .table-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .carousel-bleed {
    margin-left: calc(24px - 50vw);
  }
}

@media (max-width: 700px) {
  .site-header {
    top: 10px;
    width: min(calc(100% - 20px), var(--max));
    padding: 10px 14px;
  }

  .brand {
    height: 30px;
  }

  .brand img {
    width: auto;
    max-width: 150px;
    object-fit: contain;
  }

  .site-header nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
    gap: 4px;
    width: 38px;
    height: 38px;
    place-content: center;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--line-dark);
    border-radius: 999px;
  }

  .menu-toggle span {
    display: block;
    width: 15px;
    height: 1.5px;
    background: currentColor;
    border-radius: 99px;
  }

  .mobile-menu {
    position: fixed;
    top: 74px;
    right: 10px;
    z-index: 30;
    display: grid;
    width: min(270px, calc(100vw - 20px));
    overflow: hidden;
    color: var(--white);
    background: rgba(8, 8, 8, 0.94);
    border: 1px solid var(--line-dark);
    border-radius: 14px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 160ms ease,
      transform 160ms ease;
    backdrop-filter: blur(18px);
  }

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

  .mobile-menu a {
    padding: 15px 16px;
    border-bottom: 1px solid var(--line-dark);
    font-weight: 400;
  }

  .mobile-menu a:last-child {
    border-bottom: 0;
  }

  .hero {
    display: flex;
    flex-direction: column;
    padding-inline: 20px;
    padding-top: 88px;
    min-height: auto;
  }

  .hero-content {
    order: 2;
    padding-bottom: 54px;
  }

  h1 {
    font-size: clamp(3.9rem, 17vw, 5.35rem);
  }

  .lead-form {
    width: 100%;
    max-width: none;
  }

  .hero-media {
    order: 1;
    width: 100%;
    min-height: 430px;
    margin-top: 4px;
  }

  .hero-media img {
    top: 0;
    right: 50%;
    width: min(115vw, 620px);
    height: 100%;
    object-position: bottom center;
    transform: translateX(50%);
    mask-image: linear-gradient(to bottom, black 0%, black 78%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 78%, transparent 100%);
  }

  .brand-mark {
    right: -28%;
    bottom: 8%;
    width: 82vw;
  }

  .intro-section,
  .host-section,
  .pillars,
  .table-section {
    width: min(calc(100% - 32px), var(--max));
  }

  .intro-section {
    padding-top: 68px;
  }

  .pillars,
  .table-grid {
    grid-template-columns: 1fr;
    padding-bottom: 68px;
  }

  .episodes {
    width: min(calc(100% - 32px), var(--max));
    padding: 64px 0 72px;
  }

  .section-title {
    grid-template-columns: 1fr;
  }

  .section-title a {
    padding-bottom: 0;
  }

  .row-title {
    display: block;
  }

  .row-title h3 {
    margin-bottom: 6px;
  }

  .video-row {
    grid-auto-columns: minmax(280px, min(82vw, 540px));
  }

  .shorts-row {
    grid-auto-columns: minmax(220px, min(62vw, 300px));
  }

  .video-thumb {
    aspect-ratio: 16 / 9;
  }

  .short-card .video-thumb {
    aspect-ratio: 9 / 16;
  }

  .media-row {
    gap: 14px;
    padding-inline: var(--carousel-edge, 0px);
    scroll-padding-inline: var(--carousel-edge, 0px);
  }

  .carousel-bleed {
    width: 100%;
    margin-left: 0;
    overflow: hidden;
  }

  .carousel-bleed::before,
  .carousel-bleed::after {
    width: 28px;
  }

  .carousel-arrow {
    display: none;
  }

  .list-section {
    padding: 68px 20px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-columns {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
    text-align: center;
    font-size: 0.72rem;
    line-height: 1.25;
  }
}
