:root {
  --overlay: rgba(0, 6, 24, 0.55);
  --card: rgba(6, 12, 28, 0.8);
  --accent: #ff6a3d;
  --text: #f7f9ff;
  --section-gap: clamp(2.5rem, 6vw, 4.5rem);
}

* {
  box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  background-color: #001;
  font-family: "Sora", sans-serif;
  color: #fff;
  position: relative;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3 {
  font-weight: 600;
  letter-spacing: -0.01em;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
}

section + section {
  margin-top: var(--section-gap);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.site-footer {
  padding: 2.5rem 1.5rem 3rem;
  text-align: center;
  color: rgba(247, 249, 255, 0.6);
  font-size: 0.85rem;
}

.site-footer a {
  color: rgba(247, 249, 255, 0.9);
  text-decoration: none;
  font-weight: 600;
}

.site-footer a:hover {
  text-decoration: underline;
}

.hero-screen + .logo-loop-section {
  margin-top: calc(var(--section-gap) * 1.6);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  padding: clamp(1rem, 3vw, 2rem);
  z-index: 5;
  transition: opacity 0.2s ease;
}

.site-header.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.site-logo {
  display: block;
  width: clamp(70px, 9vw, 110px);
  height: auto;
  border-radius: 24px;
}

.sound-toggle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  padding: 0.65rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(6px);
}

.sound-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero-screen {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #001;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}

.hero-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.25) 85%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.35));
  mix-blend-mode: multiply;
  z-index: 3;
}

.hero-socials {
  position: absolute;
  top: 50%;
  right: clamp(1rem, 3vw, 2.5rem);
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  z-index: 4;
}

.hero-social {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.45);
  color: rgba(247, 249, 255, 0.85);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hero-social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.hero-social:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45), 0 0 18px rgba(255, 255, 255, 0.2);
}

.hero-social:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 2px;
}

.container {
  margin: 0 auto;
  padding: 2rem;
  position: relative;
  width: 100%;
  text-shadow: 0 0 5px #000, 0 0 10px #000;
  color: #fff;
  filter: drop-shadow(0 0 10px rgba(0, 0, 50, 0.7))
      drop-shadow(0 0 15px rgba(0, 0, 0, 0.5))
      drop-shadow(0 0 20px rgba(0, 0, 0, 0.3));
  z-index: 2;
  transition: opacity 0.4s ease;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.hero-content {
  max-width: 520px;
  display: grid;
  gap: 0.6rem;
}

.hero-eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.7rem;
  color: rgba(247, 249, 255, 0.7);
}

.hero-title {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.hero-subtitle {
  margin: 0;
  font-size: 1rem;
  color: rgba(247, 249, 255, 0.78);
  max-width: 36ch;
}

.info-section {
  position: relative;
  z-index: 3;
  padding: clamp(2rem, 4vw, 3.5rem);
  margin: 0 auto;
  max-width: 1100px;
}

.info-card {
  background: linear-gradient(135deg, rgba(6, 12, 28, 0.88), rgba(10, 14, 30, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: clamp(1.75rem, 3.5vw, 3rem);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45), 0 0 24px rgba(255, 106, 61, 0.1);
  color: #f7f9ff;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.info-card h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  line-height: 1.2;
}

.tagline-title {
  text-align: center;
}

.tagline-copy {
  margin: 0 auto;
  max-width: 60ch;
  text-align: center;
  color: rgba(247, 249, 255, 0.75);
}

.stats-card {
  display: grid;
  gap: clamp(1rem, 2vw, 1.75rem);
  text-align: center;
}

.stats-header p {
  margin: 0 auto;
  color: rgba(247, 249, 255, 0.75);
  max-width: 60ch;
}

.stats-header h2 {
  text-align: center;
}

.booking-card {
  display: grid;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  text-align: center;
}

.booking-header p {
  margin: 0 auto;
  color: rgba(247, 249, 255, 0.75);
  max-width: 60ch;
}

.booking-meta {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 249, 255, 0.6);
}

.booking-image {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  margin: 0 auto;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(0.75rem, 2vw, 1.25rem);
}

.stat-item {
  display: grid;
  gap: 0.35rem;
  padding: 1.25rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  position: relative;
  overflow: hidden;
}

.stat-item > * {
  position: relative;
  z-index: 1;
}

.stat-item::after {
  content: "";
  position: absolute;
  inset: -60% -20%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.6) 45%, transparent 70%);
  transform: translate3d(-120%, 0, 0) skewX(-12deg);
  opacity: 0;
  mix-blend-mode: screen;
  animation: stats-glimmer 4.8s ease-in-out infinite;
  pointer-events: none;
}

.stat-item:nth-child(2)::after {
  animation-delay: 0.8s;
}

.stat-item:nth-child(3)::after {
  animation-delay: 1.6s;
}

.stat-item:nth-child(4)::after {
  animation-delay: 2.4s;
}

@keyframes stats-glimmer {
  0% {
    opacity: 0;
    transform: translate3d(-120%, 0, 0) skewX(-12deg);
  }
  15% {
    opacity: 0.55;
  }
  45% {
    opacity: 0.25;
  }
  60% {
    opacity: 0;
    transform: translate3d(120%, 0, 0) skewX(-12deg);
  }
  100% {
    opacity: 0;
    transform: translate3d(120%, 0, 0) skewX(-12deg);
  }
}

.stat-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: rgba(247, 249, 255, 0.6);
}

.stat-value {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
}

.stat-meta {
  font-size: 0.85rem;
  color: rgba(247, 249, 255, 0.65);
}

.info-card h3 {
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
}

.info-card p {
  margin: 0 0 0.75rem 0;
  line-height: 1.7;
}

.info-card p:last-child {
  margin-bottom: 0;
}

.info-card ul {
  padding-left: 1.25rem;
  margin: 0;
  display: grid;
  gap: 0.5rem;
  line-height: 1.6;
}

.info-card li {
  list-style: disc;
}

.info-card::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 106, 61, 0.1), transparent 45%),
              radial-gradient(circle at 80% 10%, rgba(90, 180, 255, 0.12), transparent 35%);
  filter: blur(40px);
  opacity: 0.9;
  z-index: 0;
}

.info-card > * {
  position: relative;
  z-index: 1;
}

.episode-card {
  display: grid;
  gap: clamp(1rem, 2vw, 1.75rem);
}

.episode-header p {
  margin: 0;
  color: rgba(247, 249, 255, 0.75);
  max-width: 60ch;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.episode-header h2 {
  text-align: center;
}

.spotify-episodes {
  display: grid;
  gap: clamp(0.75rem, 2vw, 1.25rem);
}

.episode-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.55);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.episode-player.spotify-embed {
  aspect-ratio: auto;
  height: clamp(220px, 50vw, 360px);
}

.episode-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.videos-card {
  display: grid;
  gap: clamp(1rem, 2vw, 1.75rem);
  text-align: center;
}

.videos-header p {
  margin: 0 auto;
  color: rgba(247, 249, 255, 0.75);
  max-width: 60ch;
}

.videos-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.videos-tab {
  padding: 0.45rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  color: rgba(247, 249, 255, 0.75);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.12);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.3s ease;
}

.videos-tab.is-active {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.3), 0 0 32px rgba(255, 106, 61, 0.3);
}

.videos-tab.is-active::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.5) 45%, transparent 75%);
  transform: translateX(-120%);
  opacity: 0.35;
  animation: videos-more-glimmer 3s linear infinite;
  pointer-events: none;
}

.videos-tab:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.video-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card a {
  display: grid;
  grid-template-rows: auto 1fr;
  color: inherit;
  text-decoration: none;
  height: 100%;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: rgba(0, 0, 0, 0.5);
}

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

.video-meta {
  display: grid;
  gap: 0.35rem;
  padding: 0.9rem 1rem 1.1rem;
}

.video-meta h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
}

.video-meta time {
  font-size: 0.85rem;
  color: rgba(247, 249, 255, 0.65);
}

.videos-status {
  margin: 0;
  color: rgba(247, 249, 255, 0.7);
}

.videos-status.is-hidden {
  display: none;
}

.videos-more {
  align-self: start;
  justify-self: center;
  padding: 0.7rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  color: #f7f9ff;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.18), 0 0 32px rgba(255, 106, 61, 0.25);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.3s ease;
  animation: videos-more-glow 2.6s ease-in-out infinite;
}

.videos-more:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 22px rgba(255, 255, 255, 0.35), 0 0 46px rgba(255, 106, 61, 0.35);
}

.videos-more::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.55) 45%, transparent 75%);
  transform: translateX(-120%);
  opacity: 0.35;
  animation: videos-more-glimmer 2.8s linear infinite;
  pointer-events: none;
}

@keyframes videos-more-glow {
  0% {
    box-shadow: 0 0 14px rgba(255, 255, 255, 0.14), 0 0 26px rgba(255, 106, 61, 0.2);
  }
  50% {
    box-shadow: 0 0 26px rgba(255, 255, 255, 0.35), 0 0 54px rgba(255, 106, 61, 0.4);
  }
  100% {
    box-shadow: 0 0 14px rgba(255, 255, 255, 0.14), 0 0 26px rgba(255, 106, 61, 0.2);
  }
}

@keyframes videos-more-glimmer {
  0% {
    transform: translateX(-120%);
  }
  45% {
    transform: translateX(120%);
  }
  100% {
    transform: translateX(120%);
  }
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.about-card {
  display: grid;
  gap: clamp(1rem, 2vw, 1.75rem);
}

.about-header p {
  margin: 0;
  color: rgba(247, 249, 255, 0.75);
  max-width: 60ch;
  text-align: center;
}

.about-header h2 {
  text-align: center;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
  align-items: start;
}

.about-copy {
  display: grid;
  gap: 0.75rem;
  text-align: center;
}

.about-sequence {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
  align-items: start;
  justify-items: center;
}

.about-sequence li {
  margin: 0;
  list-style: none;
  grid-area: 1 / 1;
  opacity: 0;
  animation: about-sequence-fade 10s infinite;
}

.about-sequence li:nth-child(2) {
  animation-delay: 5s;
}

@keyframes about-sequence-fade {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-sequence {
    gap: 0.75rem;
  }

  .about-sequence li {
    grid-area: auto;
    opacity: 1;
    animation: none;
  }
}

.about-role {
  margin: 0.5rem 0 0 0;
  font-size: 0.95rem;
  color: rgba(247, 249, 255, 0.75);
  text-align: center;
}

.about-merits {
  margin: 0.35rem 0 0 0;
  font-size: 0.85rem;
  color: rgba(247, 249, 255, 0.65);
  text-align: center;
}

.info-tile {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1.25rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.info-tile h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.podcast-title {
  text-align: center;
}

.podcast-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  margin-bottom: 0.85rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.quotes-card,
.newsletter-card,
.press-card,
.support-card {
  display: grid;
  gap: clamp(1rem, 2vw, 1.75rem);
}

.quotes-header p,
.newsletter-header p,
.press-header p,
.support-header p {
  margin: 0;
  color: rgba(247, 249, 255, 0.75);
  max-width: 60ch;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.quotes-header h2 {
  text-align: center;
}

.newsletter-header h2 {
  text-align: center;
}

.press-header h2 {
  text-align: center;
}

.press-image {
  display: block;
  width: min(100%, 360px);
  margin: 1rem auto 0;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.support-header h2 {
  text-align: center;
}

.support-image {
  display: block;
  width: min(100%, 360px);
  margin: 1rem auto 0;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.quotes-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
}

.quotes-carousel.is-looping {
  overflow-x: hidden;
  scroll-snap-type: none;
  display: block;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.quotes-carousel.is-looping::-webkit-scrollbar {
  display: none;
}

.quotes-carousel.is-looping .quotes-track {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  width: max-content;
  animation: quotes-marquee var(--marquee-duration, 40s) linear infinite;
  will-change: transform;
}

.quotes-carousel.is-looping .quote-card {
  flex: 0 0 auto;
}

.quotes-carousel.is-looping:hover .quotes-track,
.quotes-carousel.is-looping:focus-within .quotes-track {
  animation-play-state: paused;
}

.quote-card {
  margin: 0;
  padding: 1.5rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  scroll-snap-align: start;
  max-width: 260px;
}

.quote-card p {
  margin: 0 0 0.75rem 0;
  font-size: 1.05rem;
}

.quote-card cite {
  font-style: normal;
  color: rgba(247, 249, 255, 0.7);
  font-size: 0.9rem;
}

@keyframes quotes-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.newsletter-form {
  display: grid;
  gap: 1rem;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

.newsletter-field {
  display: grid;
  gap: 0.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(247, 249, 255, 0.7);
  width: 100%;
}

.newsletter-field span {
  text-align: center;
}

.newsletter-field input {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.35);
  color: #f7f9ff;
  font-size: 1rem;
}

.newsletter-field input::placeholder {
  color: rgba(247, 249, 255, 0.4);
}


.newsletter-button {
  justify-self: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.16), 0 0 28px rgba(255, 106, 61, 0.22);
  transition: background 0.2s ease, border-color 0.2s ease;
  animation: videos-more-glow 2.6s ease-in-out infinite;
}

.newsletter-button:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.45);
}

.newsletter-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.5) 45%, transparent 75%);
  transform: translateX(-120%);
  opacity: 0.35;
  animation: videos-more-glimmer 2.8s linear infinite;
  pointer-events: none;
}

.press-grid,
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.press-item,
.support-item {
  padding: 1.5rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 0.75rem;
  text-align: center;
}

.press-item h3,
.support-item h3 {
  margin: 0;
}

.press-button,
.support-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.35);
  color: #f7f9ff;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.16), 0 0 28px rgba(255, 106, 61, 0.22);
  transition: background 0.2s ease, border-color 0.2s ease;
  animation: videos-more-glow 2.6s ease-in-out infinite;
}

.press-button:hover,
.support-button:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.45);
}

.press-button::after,
.support-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.5) 45%, transparent 75%);
  transform: translateX(-120%);
  opacity: 0.35;
  animation: videos-more-glimmer 2.8s linear infinite;
  pointer-events: none;
}

.press-link {
  color: #f7f9ff;
  text-decoration: none;
  font-weight: 500;
}

.press-link:hover {
  text-decoration: underline;
}

.support-note {
  font-weight: 600;
  color: rgba(247, 249, 255, 0.85);
}

.info-card ul {
  border-left: 2px solid rgba(255, 255, 255, 0.12);
  padding-left: 1rem;
}

.logo-loop-section {
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}

.logo-loop-heading {
  margin: 0 auto;
  max-width: 1100px;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.logo-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 1.1rem;
  color: rgba(247, 249, 255, 0.6);
}

.logo-loop {
  position: relative;
  z-index: 3;
  padding: 0.75rem 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.logo-loop-inner {
  margin: 0 auto;
  max-width: 1100px;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  overflow-x: hidden;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
}

.logo-loop-inner::-webkit-scrollbar {
  display: none;
}

.logo-loop::before,
.logo-loop::after {
  content: "";
  position: absolute;
  top: 0;
  width: 12%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.logo-loop::before {
  left: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), transparent);
}

.logo-loop::after {
  right: 0;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.7), transparent);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: max-content;
  animation: logo-marquee 18s linear infinite;
  position: relative;
  z-index: 1;
  will-change: transform;
}

.logo-loop.is-interactive .logo-track {
  animation-play-state: paused;
}

.logo-loop.is-interactive .logo-loop-inner {
  overflow-x: auto;
  cursor: grabbing;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 58px;
  padding: 0.4rem 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.logo-item img {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.35));
}

@keyframes logo-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (min-width: 1024px) {
  :root {
    --section-gap: clamp(2rem, 4.5vw, 3.5rem);
  }

  .hero-screen {
    background: #000;
  }

  .hero-video {
    inset: auto;
    top: 50%;
    left: 50%;
    width: auto;
    height: min(92vh, 860px);
    aspect-ratio: 9 / 16;
    transform: translate(-50%, -50%);
    object-fit: cover;
    box-shadow: 0 0 120px rgba(0, 0, 0, 0.85);
  }

  .hero-screen::after {
    background:
      radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 32%, rgba(0, 0, 0, 0.6) 70%, rgba(0, 0, 0, 0.9) 100%),
      linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.65));
  }

  .info-section {
    padding: clamp(1.75rem, 3vw, 3rem);
  }

  .info-card {
    padding: clamp(1.5rem, 2.6vw, 2.6rem);
  }
}

/* Phone User */
@media (max-width: 768px) {
  h1 {
    font-size: 1.25rem;
  }
  .container {
    font-size: 0.8rem;
    padding: 1rem 0.75rem;
  }
  .hero-socials {
    right: 0.75rem;
  }
  .hero-social {
    width: 38px;
    height: 38px;
  }
  .hero-social svg {
    width: 18px;
    height: 18px;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.22em;
  }
  .hero-title {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
    line-height: 1.1;
  }
  .hero-subtitle {
    font-size: 0.95rem;
    max-width: 30ch;
  }
  .info-card h2 {
    font-size: 1.35rem;
    line-height: 1.25;
  }
  .info-card h3 {
    font-size: 1.05rem;
    line-height: 1.3;
  }
  .info-card p,
  .info-card li,
  .quote-card p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .logo-label {
    font-size: 0.95rem;
    letter-spacing: 0.16em;
  }
  .videos-tab,
  .videos-more,
  .newsletter-field,
  .newsletter-button,
  .press-button,
  .support-button {
    font-size: 0.75rem;
    letter-spacing: 0.06em;
  }
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .newsletter-consent {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  .press-link,
  .support-note {
    overflow-wrap: anywhere;
  }
  .info-section,
  .logo-loop-inner,
  .logo-loop-heading {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .info-card {
    padding: 1.25rem;
  }
  .episode-card {
    padding: 1.25rem;
  }
  .episode-player {
    margin: 0 -0.75rem;
    width: calc(100% + 1.5rem);
    border-radius: 14px;
  }
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .about-sequence {
    gap: 0.75rem;
  }
  .about-sequence li {
    grid-area: auto;
    opacity: 1;
    animation: none;
  }
  .videos-more,
  .press-button,
  .support-button,
  .newsletter-button {
    animation: none;
  }
  .videos-more::after,
  .press-button::after,
  .support-button::after,
  .newsletter-button::after,
  .stat-item::after,
  .videos-tab.is-active::after {
    animation: none;
    opacity: 0;
  }
  .quotes-carousel.is-looping .quotes-track {
    animation: none;
    transform: none;
  }
}
