:root {
  --cinema-black: #050505;
  --dark: #111111;
  --navy: #1a2330;
  --steel: #243a55;
  --white: #f2f2f2;
  --orange: #ff8a00;
  --soft: #d9a5a5;
  --muted: rgba(242, 242, 242, 0.68);
  --line: rgba(242, 242, 242, 0.12);
  --panel: rgba(17, 17, 17, 0.82);
  --max: 1360px;
  --strip-height: 32px;
  --header-height: 78px;
  --radius: 8px;
  --shadow-orange: 0 0 38px rgba(255, 138, 0, 0.22);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--strip-height) + var(--header-height) + 28px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(26, 35, 48, 0.58) 0%, rgba(5, 5, 5, 0.9) 42%, #050505 100%),
    #050505;
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    repeating-radial-gradient(circle at 17% 21%, rgba(255, 255, 255, 0.2) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 7px);
  mix-blend-mode: screen;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(255, 138, 0, 0.84);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2000;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--orange);
  color: #050505;
  padding: 10px 14px;
  font-weight: 900;
}

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

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.section-pad {
  padding: clamp(64px, 8vw, 116px) 0;
}

.top-strip {
  position: sticky;
  top: 0;
  z-index: 1100;
  height: var(--strip-height);
  overflow: hidden;
  background: var(--orange);
  color: #080808;
  border-bottom: 1px solid rgba(0, 0, 0, 0.24);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.top-strip__track {
  display: flex;
  width: max-content;
  min-width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  gap: 56px;
  margin-inline: auto;
  padding-inline: 24px;
  text-align: center;
  animation: strip-drift 20s linear infinite;
}

.top-strip__track span {
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: var(--strip-height);
  z-index: 1000;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(255, 138, 0, 0.2);
  background: rgba(5, 5, 5, 0.88);
}

.header-inner {
  width: min(calc(100% - 40px), var(--max));
  min-height: var(--header-height);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-link {
  display: inline-grid;
  place-items: center;
  width: 74px;
  height: 74px;
  flex: 0 0 auto;
}

.brand-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(255, 138, 0, 0.18));
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 46px);
  color: rgba(242, 242, 242, 0.74);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.site-nav a,
.footer-nav a {
  position: relative;
  padding: 8px 0;
  transition: color 180ms ease;
}

.site-nav a::after,
.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--orange);
  transition: transform 180ms ease;
}

.site-nav a:hover,
.footer-nav a:hover,
.site-nav a:focus-visible,
.footer-nav a:focus-visible {
  color: var(--white);
}

.site-nav a:hover::after,
.footer-nav a:hover::after,
.site-nav a:focus-visible::after,
.footer-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 138, 0, 0.62);
  border-radius: 999px;
  background: linear-gradient(135deg, #ff9a1f 0%, #ff8a00 46%, #f06f00 100%);
  color: #080808;
  padding: 12px 20px;
  box-shadow: var(--shadow-orange);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.nav-cta:hover,
.button:hover,
.nav-cta:focus-visible,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0 46px rgba(255, 138, 0, 0.36);
  filter: saturate(1.08);
}

.button-small {
  min-height: 38px;
  padding: 11px 16px;
  font-size: 0.7rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 17, 17, 0.78);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  border-radius: 10px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  padding-top: clamp(24px, 3.2vw, 48px);
}

.hero-player {
  position: relative;
  isolation: isolate;
  aspect-ratio: 16 / 9;
  min-height: 430px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255, 138, 0, 0.38);
  border-radius: clamp(16px, 2vw, 28px);
  background: #090909;
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.56),
    0 0 72px rgba(255, 138, 0, 0.2);
}

.hero-player::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.66) 0%, rgba(5, 5, 5, 0.13) 50%, rgba(5, 5, 5, 0.44) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.05) 0%, rgba(5, 5, 5, 0.62) 100%);
}

.hero-player::after {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 3;
  pointer-events: none;
  border: 1px solid rgba(242, 242, 242, 0.16);
  border-radius: calc(clamp(16px, 2vw, 28px) - 8px);
}

.hero-player.is-playing {
  cursor: default;
}

.hero-player.is-playing::before,
.hero-player.is-playing::after,
.hero-player.is-playing .player-vignette,
.hero-player.is-playing .hero-player__content,
.hero-player.is-playing .play-button {
  display: none;
}

.hero-player.is-local-preview {
  cursor: default;
}

.local-video-notice {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 18px;
  padding: clamp(24px, 6vw, 70px);
  background:
    linear-gradient(135deg, rgba(255, 138, 0, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(26, 35, 48, 0.78), rgba(5, 5, 5, 0.94));
  text-align: center;
}

.local-video-notice h2 {
  max-width: 720px;
  font-size: clamp(1.8rem, 5vw, 4.8rem);
}

.local-video-notice p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(242, 242, 242, 0.76);
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
}

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

.hero-poster {
  z-index: 1;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 420ms ease, filter 420ms ease;
}

.hero-player:hover .hero-poster,
.hero-player:focus-visible .hero-poster {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.05);
}

.player-vignette {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 3;
  height: 54%;
  background: linear-gradient(180deg, transparent, rgba(5, 5, 5, 0.82));
  pointer-events: none;
}

.hero-player__content {
  position: absolute;
  left: clamp(22px, 5vw, 68px);
  bottom: clamp(22px, 5vw, 58px);
  z-index: 4;
  width: min(760px, calc(100% - 44px));
  pointer-events: none;
}

.eyebrow,
.tag {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Arial Black", Impact, Haettenschweiler, "Arial Narrow Bold", system-ui, sans-serif;
  letter-spacing: 0;
  line-height: 0.94;
  text-transform: uppercase;
}

h1 {
  max-width: 900px;
  font-size: clamp(2.5rem, 7vw, 7.35rem);
  text-wrap: balance;
}

.hero-player h1 {
  max-width: 760px;
  font-size: clamp(2.35rem, 4.25vw, 5.1rem);
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

h2 {
  font-size: clamp(2rem, 4.8vw, 5.35rem);
  text-wrap: balance;
}

h3 {
  font-size: clamp(1.16rem, 2vw, 2rem);
}

p {
  margin: 0;
  color: var(--muted);
}

.hero-player__content p:last-child {
  max-width: 670px;
  margin-top: 18px;
  color: rgba(242, 242, 242, 0.82);
  font-size: clamp(0.95rem, 1.5vw, 1.18rem);
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  display: grid;
  width: clamp(74px, 8vw, 110px);
  height: clamp(74px, 8vw, 110px);
  transform: translate(-50%, -50%);
  place-items: center;
  cursor: pointer;
  border: 1px solid rgba(255, 138, 0, 0.7);
  border-radius: 999px;
  background: rgba(255, 138, 0, 0.9);
  box-shadow:
    0 0 0 12px rgba(255, 138, 0, 0.12),
    0 0 55px rgba(255, 138, 0, 0.5);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.play-button span {
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid #050505;
}

.hero-player:hover .play-button,
.hero-player:focus-visible .play-button {
  transform: translate(-50%, -50%) scale(1.05);
}

.studio-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(17, 17, 17, 0.72);
}

.studio-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.studio-strip span {
  display: grid;
  min-height: 74px;
  place-items: center;
  border-left: 1px solid var(--line);
  color: rgba(242, 242, 242, 0.76);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
}

.studio-strip span:last-child {
  border-right: 1px solid var(--line);
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(26, 35, 48, 0.48), rgba(5, 5, 5, 0.12)),
    rgba(17, 17, 17, 0.36);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(28px, 4vw, 54px);
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.section-head > p {
  max-width: 560px;
  font-size: clamp(0.96rem, 1.25vw, 1.12rem);
}

.section-kicker {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  gap: clamp(14px, 2.2vw, 26px);
  min-width: 0;
}

.section-kicker h2 {
  max-width: 820px;
}

.title-line {
  display: block;
  white-space: nowrap;
}

.section-title-main {
  font-size: clamp(1.2rem, 2.18vw, 2.6rem);
}

.section-kicker img {
  width: clamp(58px, 7vw, 94px);
  height: clamp(58px, 7vw, 94px);
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(255, 138, 0, 0.16));
}

.section-kicker--lefty img {
  filter: drop-shadow(0 0 18px rgba(36, 58, 85, 0.6));
}

.series-feature-card,
.video-card,
.shop-panel,
.concept-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(26, 35, 48, 0.72), rgba(17, 17, 17, 0.9) 54%),
    var(--panel);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
}

.series-feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.9fr);
  overflow: hidden;
  border-radius: 18px;
}

.series-feature-card__thumb,
.video-card__thumb {
  position: relative;
  display: block;
  min-width: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 138, 0, 0.18), rgba(36, 58, 85, 0.38)),
    #101010;
}

.series-feature-card__thumb {
  min-height: 380px;
  aspect-ratio: 16 / 9;
}

.series-feature-card__thumb img,
.video-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.thumb-fallback-text {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  color: rgba(242, 242, 242, 0.78);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.series-feature-card__thumb::after,
.video-card__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5, 5, 5, 0.66));
  pointer-events: none;
}

.series-feature-card:hover img,
.video-card:hover img,
.concept-card:hover::before {
  transform: scale(1.045);
}

.series-feature-card:hover,
.video-card:hover,
.concept-card:hover {
  border-color: rgba(255, 138, 0, 0.5);
  box-shadow:
    0 28px 82px rgba(0, 0, 0, 0.34),
    0 0 34px rgba(255, 138, 0, 0.12);
}

.thumb-play {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 2;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 28px rgba(255, 138, 0, 0.42);
}

.thumb-play::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 16px;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #050505;
}

.series-feature-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
  padding: clamp(28px, 4vw, 56px);
}

.series-feature-card__body p {
  max-width: 420px;
  font-size: 1.02rem;
}

.tag {
  display: inline-flex;
  margin: 0;
  border: 1px solid rgba(255, 138, 0, 0.34);
  border-radius: 999px;
  background: rgba(255, 138, 0, 0.08);
  padding: 8px 11px;
  line-height: 1;
}

.tag-solid {
  background: var(--orange);
  color: #050505;
}

.creative-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.35fr);
  gap: 22px;
  align-items: start;
}

.shorts-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.wide-rail {
  display: grid;
  gap: 22px;
}

.video-card {
  overflow: hidden;
  border-radius: 16px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.video-card:hover {
  transform: translateY(-5px);
}

.video-card.vertical {
  background:
    linear-gradient(180deg, rgba(36, 58, 85, 0.7), rgba(17, 17, 17, 0.96)),
    var(--panel);
}

.video-card.vertical .video-card__thumb {
  width: calc(100% - 26px);
  margin: 13px auto 0;
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(242, 242, 242, 0.12);
  border-radius: 24px;
  box-shadow: inset 0 0 0 7px rgba(5, 5, 5, 0.72);
}

.video-card.wide {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(250px, 0.9fr);
  min-height: 272px;
}

.video-card.wide .video-card__thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 100%;
}

.video-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
  padding: 22px;
}

.video-card.vertical .video-card__body {
  padding: 20px 18px 22px;
}

.video-card__body h3 {
  font-size: clamp(1.05rem, 1.8vw, 1.58rem);
  line-height: 1;
}

.video-card__body p {
  font-size: 0.94rem;
}

.format-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.72);
  color: var(--white);
  padding: 7px 9px;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.shop-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(26px, 4vw, 62px);
  overflow: hidden;
  border-radius: 20px;
  padding: clamp(28px, 5vw, 64px);
}

.shop-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, rgba(255, 138, 0, 0.16), transparent 36%),
    linear-gradient(270deg, rgba(36, 58, 85, 0.52), transparent 52%);
}

.shop-panel__copy,
.drop-grid {
  position: relative;
  z-index: 1;
}

.shop-panel__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.shop-panel__copy h2 {
  font-size: clamp(3rem, 8vw, 8.4rem);
}

.shop-panel__copy p {
  max-width: 450px;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.is-disabled {
  cursor: not-allowed;
  opacity: 0.74;
}

.is-disabled:hover,
.is-disabled:focus-visible {
  transform: none;
  box-shadow: var(--shadow-orange);
}

.drop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-self: stretch;
}

.drop-grid article {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid rgba(242, 242, 242, 0.12);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 138, 0, 0.16), transparent 42%),
    linear-gradient(135deg, rgba(36, 58, 85, 0.76), rgba(5, 5, 5, 0.72));
  padding: 20px;
}

.drop-grid span {
  color: rgba(255, 138, 0, 0.9);
  font-weight: 950;
}

.drop-grid h3 {
  font-size: clamp(1.18rem, 2.2vw, 2.28rem);
}

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

.concept-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: 16px;
  padding: 22px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.concept-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(135deg, rgba(255, 138, 0, 0.14), transparent 28%),
    linear-gradient(320deg, rgba(36, 58, 85, 0.92), rgba(5, 5, 5, 0.72)),
    repeating-linear-gradient(90deg, rgba(242, 242, 242, 0.05) 0 1px, transparent 1px 18px);
  transition: transform 480ms ease;
}

.concept-card::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--steel));
}

.concept-card span,
.concept-card h3 {
  position: relative;
  z-index: 1;
}

.concept-card span {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.58);
  color: rgba(242, 242, 242, 0.78);
  padding: 8px 10px;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.1em;
}

.concept-card h3 {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 42px;
  font-size: clamp(1.35rem, 2.2vw, 2.5rem);
}

.concept-card:hover {
  transform: translateY(-5px);
}

.site-footer {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.78), #050505),
    #050505;
  padding: clamp(62px, 8vw, 104px) 0 28px;
}

.footer-grid {
  display: block;
}

.footer-brand {
  display: grid;
  gap: 22px;
  justify-items: start;
}

.footer-brand img {
  width: clamp(92px, 10vw, 148px);
  height: clamp(92px, 10vw, 148px);
  object-fit: contain;
}

.footer-brand h2 {
  max-width: 820px;
  font-size: clamp(2.4rem, 6vw, 7.2rem);
}

.footer-brand p {
  max-width: 640px;
  font-size: 1.02rem;
}

.footer-support {
  display: block;
  width: min(100%, 760px);
  margin-top: clamp(16px, 2.8vw, 28px);
  border-top: 1px solid var(--line);
  padding-top: clamp(16px, 2.4vw, 24px);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 20px;
  color: rgba(242, 242, 242, 0.72);
  font-size: 0.82rem;
  font-weight: 850;
}

.footer-bottom {
  margin-top: clamp(40px, 6vw, 76px);
  border-top: 1px solid var(--line);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.86rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@keyframes strip-drift {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-48px);
  }
}

@media (max-width: 1120px) {
  .creative-grid,
  .shop-panel {
    grid-template-columns: 1fr;
  }

  .video-card.wide {
    grid-template-columns: minmax(260px, 1fr) minmax(240px, 0.78fr);
  }

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

@media (max-width: 920px) {
  :root {
    --header-height: 70px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    z-index: 1200;
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    justify-content: stretch;
    justify-items: stretch;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.98), rgba(17, 17, 17, 0.98)),
      #050505;
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.48);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .site-nav a {
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.025);
    padding: 18px 20px;
    text-align: center;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a::after {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .nav-cta {
    margin-left: auto;
  }

  .brand-link {
    width: 64px;
    height: 64px;
  }

  .brand-logo {
    width: 62px;
    height: 62px;
  }

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

  .section-head {
    display: grid;
    align-items: start;
  }

  .section-head > p {
    max-width: 720px;
  }

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

  .series-feature-card__thumb {
    min-height: 0;
  }

}

@media (max-width: 760px) {
  :root {
    --strip-height: 34px;
  }

  .container,
  .header-inner {
    width: min(calc(100% - 28px), var(--max));
  }

  .top-strip__track {
    justify-content: flex-start;
    animation-duration: 16s;
  }

  .nav-cta {
    display: none;
  }

  .hero-player {
    min-height: 0;
    aspect-ratio: 16 / 11;
    border-radius: 18px;
  }

  .hero-player__content {
    left: 18px;
    bottom: 18px;
    width: calc(100% - 36px);
  }

  .hero-player__content p:last-child {
    display: none;
  }

  h1 {
    font-size: clamp(2.12rem, 13vw, 4.4rem);
  }

  .play-button {
    top: 42%;
    width: 62px;
    height: 62px;
  }

  .play-button span {
    border-top-width: 10px;
    border-bottom-width: 10px;
    border-left-width: 16px;
  }

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

  .studio-strip span {
    min-height: 58px;
    padding: 0 10px;
    font-size: 0.68rem;
  }

  .section-kicker {
    align-items: flex-start;
  }

  .section-kicker img {
    width: 52px;
    height: 52px;
  }

  .shorts-rail,
  .drop-grid,
  .concept-grid {
    grid-template-columns: 1fr;
  }

  .video-card.wide {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .video-card.wide .video-card__thumb {
    min-height: 0;
  }

  .drop-grid article,
  .concept-card {
    min-height: 210px;
  }

  .footer-brand h2 {
    font-size: clamp(2.3rem, 12vw, 4.4rem);
  }
}

@media (max-width: 480px) {
  .section-pad {
    padding: 56px 0;
  }

  .header-inner {
    gap: 10px;
  }

  .brand-link {
    width: 58px;
    height: 58px;
  }

  .brand-logo {
    width: 56px;
    height: 56px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-player {
    aspect-ratio: 4 / 5;
  }

  .hero-player::after {
    inset: 8px;
  }

  .series-feature-card__body,
  .video-card__body,
  .shop-panel {
    padding: 20px;
  }

  .video-card.vertical .video-card__thumb {
    width: min(82%, 290px);
  }

  .footer-nav {
    gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
