:root {
  --bg: #000000;
  --bg-elevated: #0c0c0c;
  --ink: #ffffff;
  --ink-muted: #b8b8b8;
  --accent: #e10600;
  --accent-2: #ffb400;
  --line: rgba(255, 255, 255, 0.12);
  --danger-soft: #ff4d4d;
  --shell: 1120px;
  --font-display: "Syne", sans-serif;
  --font-body: "Figtree", sans-serif;
  --radius: 14px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.hdhub4u-body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  min-height: 100vh;
  position: relative;
}

body.hdhub4u-body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(225, 6, 0, 0.22), transparent 55%),
    radial-gradient(ellipse 55% 40% at 100% 15%, rgba(255, 180, 0, 0.12), transparent 50%),
    linear-gradient(180deg, #050505 0%, #000000 45%, #000000 100%);
}

.site-atmosphere {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.site-header,
.site-main,
.site-footer {
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-2);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: #ffd24d;
}

.shell {
  width: min(100% - 2rem, var(--shell));
  margin-inline: auto;
}

.shell--narrow {
  width: min(100% - 2rem, 760px);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: #111;
  padding: 0.6rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Header */
.site-header {
  padding: 1rem 0 0.5rem;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.brand__link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.brand__link:hover {
  opacity: 0.92;
}

.brand__logo {
  display: block;
  width: auto;
  height: 48px;
  max-width: min(220px, 52vw);
  object-fit: contain;
}

.brand__logo--footer {
  height: 44px;
  max-width: 200px;
}

.custom-logo-link {
  display: inline-flex;
  line-height: 0;
}

.custom-logo {
  height: 48px;
  width: auto;
  max-width: min(220px, 52vw);
}

.nav-primary {
  margin-left: auto;
}

.menu {
  display: flex;
  gap: 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.menu a {
  color: var(--ink-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.menu a:hover,
.menu .current-menu-item > a {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  cursor: pointer;
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  margin: 0 auto;
  position: relative;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after { top: 6px; }

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.lang-switch__btn {
  border: 0;
  background: transparent;
  color: var(--ink-muted);
  padding: 0.4rem 0.7rem;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}

.lang-switch__btn.is-active {
  background: rgba(225, 6, 0, 0.25);
  color: var(--ink);
}

.header-search input {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  min-width: 160px;
  font: inherit;
}

.header-search input::placeholder {
  color: var(--ink-muted);
}

/* Hero — one composition, brand first */
.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: grid;
  align-items: end;
  padding: 4rem 0 5rem;
  overflow: hidden;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  animation: rise 0.9s ease both;
}

.hero__brand {
  margin: 0 0 1.25rem;
  line-height: 0;
  animation: brand-glow 4s ease-in-out infinite alternate;
}

.hero__logo {
  display: block;
  width: min(100%, 520px);
  height: auto;
  max-height: clamp(72px, 18vw, 130px);
  object-fit: contain;
  object-position: left center;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.85rem;
  max-width: 18ch;
  color: var(--ink);
}

.hero__support {
  margin: 0 0 1.75rem;
  color: var(--ink-muted);
  font-size: 1.05rem;
  max-width: 42ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero__beam {
  position: absolute;
  width: 55vmax;
  height: 55vmax;
  right: -12%;
  top: 10%;
  border-radius: 40% 60% 55% 45%;
  background:
    conic-gradient(from 210deg, rgba(225, 6, 0, 0.0), rgba(225, 6, 0, 0.28), rgba(255, 180, 0, 0.14), transparent 70%);
  filter: blur(8px);
  animation: drift 14s ease-in-out infinite alternate;
}

.hero__grain {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.03) 50%, transparent 100%);
  mix-blend-mode: overlay;
  animation: sweep 8s linear infinite;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes brand-glow {
  from { filter: drop-shadow(0 0 0 rgba(225, 6, 0, 0)); }
  to { filter: drop-shadow(0 8px 28px rgba(225, 6, 0, 0.35)); }
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0) rotate(0deg); }
  to { transform: translate3d(-4%, 6%, 0) rotate(8deg); }
}

@keyframes sweep {
  from { transform: translateX(-30%); opacity: 0.2; }
  to { transform: translateX(30%); opacity: 0.45; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.8rem 1.25rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--accent);
  color: #ffffff;
}

.btn--primary:hover {
  background: #ff1a12;
  color: #ffffff;
}

.btn--ghost {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.03);
}

.btn--ghost:hover {
  border-color: var(--accent-2);
  color: var(--ink);
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section__head {
  margin-bottom: 1.75rem;
  max-width: 46rem;
}

.section__head--row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  max-width: none;
}

.section__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.5rem;
  letter-spacing: -0.03em;
}

.section__head p {
  margin: 0;
  color: var(--ink-muted);
}

.text-link {
  color: var(--accent-2);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

/* Intent — interactive cards OK */
.intent__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.intent-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.25rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
  text-decoration: none;
  color: inherit;
  min-height: 120px;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.intent-card:hover {
  border-color: rgba(225, 6, 0, 0.65);
  transform: translateY(-3px);
  color: inherit;
  background: rgba(225, 6, 0, 0.1);
}

.intent-card__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
}

.intent-card__hint {
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.platform {
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
}

.platform h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.platform p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

/* Posts */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.post-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.post-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 180, 0, 0.55);
}

.post-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
}

.post-card__media {
  aspect-ratio: 16 / 9;
  background: #123038;
  overflow: hidden;
}

.post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card__media--empty {
  background:
    linear-gradient(135deg, rgba(225,6,0,0.35), transparent 50%),
    linear-gradient(225deg, rgba(255,180,0,0.2), #141414);
}

.post-card__body {
  padding: 1rem 1.05rem 1.2rem;
}

.post-card__title {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.25;
}

.post-card__excerpt {
  margin: 0 0 0.75rem;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.post-card__cta {
  color: var(--accent-2);
  font-weight: 600;
  font-size: 0.9rem;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.65rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.02);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  color: var(--ink-muted);
  margin: 0.75rem 0 0.25rem;
}

/* Layout */
.layout-with-sidebar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 2rem;
  padding: 2.5rem 0 4rem;
}

.page-head {
  margin-bottom: 1.75rem;
}

.page-head h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin: 0 0 0.5rem;
  letter-spacing: -0.03em;
}

.page-head p {
  margin: 0;
  color: var(--ink-muted);
}

.article__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0.25rem 0 0.75rem;
}

.article__deck,
.article__meta {
  color: var(--ink-muted);
}

.article__media {
  margin: 1.25rem 0 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content p,
.entry-content li {
  font-size: 1.05rem;
}

.sidebar__widgets .widget {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.widget-title {
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 0 0 0.5rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 1rem 0 2rem;
  margin-top: 1rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  padding: 1.5rem 0;
}

.site-footer__disclaimer {
  color: var(--ink-muted);
  font-size: 0.92rem;
  max-width: 42ch;
  margin: 0.75rem 0 0;
}

.site-footer__base {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  color: var(--ink-muted);
  font-size: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
  align-items: center;
}

.page-block {
  padding: 2.5rem 0 4rem;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0;
}

.site-footer__legal a {
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 0.85rem;
}

.site-footer__legal a:hover {
  color: var(--accent-2);
}

.empty-state {
  grid-column: 1 / -1;
  padding: 2rem 0;
}

.navigation.pagination {
  margin-top: 2rem;
}

.navigation.pagination .nav-links {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.navigation.pagination a,
.navigation.pagination .current {
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  color: var(--ink);
}

.navigation.pagination .current {
  background: rgba(225, 6, 0, 0.25);
}

.view-all-wrap {
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  margin-top: 1.75rem;
  padding: 1.25rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(225, 6, 0, 0.1), rgba(255, 255, 255, 0.02));
  text-align: center;
}

.view-all-wrap--compact {
  background: transparent;
  border-style: dashed;
  padding: 1rem;
}

.btn--view-all {
  min-width: min(100%, 320px);
  font-size: 1.05rem;
  padding: 0.95rem 1.5rem;
}

.view-all-note {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.seo-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.seo-intro p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 1.05rem;
}

/* Movie grids */
.movie-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.movie-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.movie-card:hover {
  transform: translateY(-3px);
  border-color: rgba(225, 6, 0, 0.55);
}

.movie-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.movie-card__poster {
  position: relative;
  aspect-ratio: 2 / 3;
  background:
    linear-gradient(160deg, rgba(225, 6, 0, 0.35), transparent 55%),
    linear-gradient(20deg, #1a1a1a, #0a0a0a);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.movie-card__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.movie-card__initials {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
}

.movie-card__badge {
  position: absolute;
  left: 0.65rem;
  top: 0.65rem;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(255, 180, 0, 0.45);
  color: var(--accent-2);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.25rem 0.45rem;
  border-radius: 6px;
}

.movie-card__body {
  padding: 0.85rem 0.9rem 1rem;
  display: grid;
  gap: 0.35rem;
}

.movie-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.98rem;
  line-height: 1.25;
}

.movie-card__meta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  color: var(--ink-muted);
  font-size: 0.8rem;
}

.movie-card__cta {
  color: var(--accent-2);
  font-size: 0.82rem;
  font-weight: 600;
}

.section__more {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.movie-section--alt {
  background: linear-gradient(180deg, rgba(225, 6, 0, 0.06), transparent);
}

.empty-hint {
  grid-column: 1 / -1;
  color: var(--ink-muted);
}

/* Path chips / dwell */
.path-strip__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.path-strip__row--tight {
  margin-top: 1rem;
}

.path-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.path-chip:hover {
  border-color: var(--accent);
  background: rgba(225, 6, 0, 0.12);
  color: var(--ink);
}

.continue-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  margin: 0 0 1.25rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.9rem;
}

.continue-bar span {
  color: var(--ink-muted);
  font-weight: 600;
}

.continue-bar a {
  color: var(--accent-2);
  text-decoration: none;
  font-weight: 600;
}

.continue-bar a:hover {
  color: #ffd24d;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
  color: var(--ink-muted);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.breadcrumbs a {
  color: var(--ink-muted);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--accent-2);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.75rem 0 0;
}

.tag {
  display: inline-flex;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 0.78rem;
}

.tag:hover {
  border-color: var(--accent-2);
  color: var(--ink);
}

.article-wrap,
.archive-wrap {
  padding: 2rem 0 3.5rem;
}

.article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.trailer-embed {
  margin: 1rem 0 1.25rem;
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #111;
}

.trailer-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* SEO keyword strip */
.seo-strip {
  border-top: 1px solid var(--line);
  padding: 2.5rem 0 2rem;
  background: rgba(255, 255, 255, 0.02);
}

.seo-strip__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.seo-strip__lead {
  color: var(--ink-muted);
  max-width: 70ch;
  margin: 0 0 1rem;
}

.seo-strip__keywords {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.seo-strip__keywords a {
  display: inline-flex;
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.85rem;
  background: rgba(0, 0, 0, 0.25);
}

.seo-strip__keywords a:hover {
  border-color: var(--accent);
  color: var(--accent-2);
}

.seo-strip__note {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.88rem;
}

/* Contact form */
.contact-form {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.25rem;
  max-width: 560px;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.92rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  padding: 0.7rem 0.85rem;
  font: inherit;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  height: 0 !important;
  overflow: hidden !important;
}

.form-notice {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  margin: 1rem 0;
}

.form-notice--ok {
  background: rgba(62, 180, 100, 0.15);
  border: 1px solid rgba(62, 180, 100, 0.4);
}

.form-notice--err {
  background: rgba(225, 6, 0, 0.12);
  border: 1px solid rgba(225, 6, 0, 0.4);
}

@media (max-width: 960px) {
  .intent__grid,
  .platform-grid,
  .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .movie-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .layout-with-sidebar,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
    margin-left: auto;
  }

  .nav-primary {
    width: 100%;
    order: 5;
    margin-left: 0;
  }

  .nav-primary .menu {
    display: none;
    flex-direction: column;
    padding: 0.75rem 0 0.25rem;
  }

  .nav-primary.is-open .menu {
    display: flex;
  }

  .header-tools {
    width: 100%;
    justify-content: space-between;
  }

  .header-search {
    flex: 1;
  }

  .header-search input {
    width: 100%;
    min-width: 0;
  }

  .intent__grid,
  .platform-grid,
  .post-grid,
  .movie-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: auto;
    padding: 3rem 0 3.5rem;
    align-items: start;
  }

  .section__head--row {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 480px) {
  .movie-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* —— Gateway splash (home) —— */
body.home .site-header {
  border-bottom: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: transparent;
  backdrop-filter: none;
}

body.home .brand,
body.home .nav-primary {
  display: none;
}

body.home .site-header__inner {
  justify-content: flex-end;
}

body.home .site-footer__grid {
  display: none;
}

body.home .site-atmosphere {
  opacity: 0.25;
}

.gateway {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 5.5rem 1.25rem 3rem;
  text-align: center;
  overflow: hidden;
}

.gateway__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 45% at 50% 20%, rgba(225, 6, 0, 0.22), transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(255, 180, 0, 0.1), transparent 55%),
    #0a0a0a;
  z-index: 0;
}

.gateway__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 640px);
  display: grid;
  gap: 2rem;
  justify-items: center;
  animation: rise 0.8s ease both;
}

.gateway__logo {
  width: min(100%, 380px);
  height: auto;
  margin: 0 auto 1rem;
  filter: drop-shadow(0 10px 28px rgba(225, 6, 0, 0.28));
}

.gateway__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3.5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #fff;
}

.gateway__sub {
  margin: 0.75rem 0 0;
  color: var(--ink-muted);
  font-size: 0.98rem;
}

.gateway__cta {
  display: grid;
  gap: 0.85rem;
  justify-items: center;
  width: 100%;
}

.gateway__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: min(100%, 420px);
  padding: 1rem 1.5rem;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffd28a 0%, #f0b34a 100%);
  color: #111;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  text-decoration: none;
  box-shadow: 0 12px 40px rgba(240, 179, 74, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  animation: gateway-pulse 2.4s ease-in-out infinite;
}

.gateway__btn:hover {
  transform: translateY(-2px) scale(1.01);
  color: #111;
  filter: brightness(1.05);
  box-shadow: 0 16px 48px rgba(240, 179, 74, 0.4);
}

.gateway__btn-icon {
  display: inline-grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: #111;
  color: #f0b34a;
  font-size: 1rem;
  line-height: 1;
}

.gateway__fallback {
  margin: 0;
  color: #ddd;
  font-size: 0.95rem;
}

.gateway__fallback a {
  color: #b8ff4a;
  font-weight: 700;
  text-decoration: none;
}

.gateway__fallback a:hover {
  text-decoration: underline;
  color: #d4ff7a;
}

.gateway__share {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: rgba(20, 20, 20, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gateway__share-copy {
  display: grid;
  gap: 0.15rem;
  text-align: left;
}

.gateway__share-copy strong {
  color: #f0b34a;
  font-size: 0.95rem;
}

.gateway__share-copy span {
  color: var(--ink-muted);
  font-size: 0.82rem;
}

.gateway__share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
}

.share-btn--tg { background: #2aabee; }
.share-btn--x { background: #111; border: 1px solid #333; }
.share-btn--fb { background: #1877f2; }
.share-btn--rd { background: #ff4500; }

.share-btn:hover {
  filter: brightness(1.08);
  color: #fff;
}

.gateway__quick {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1rem;
}

.gateway__quick a {
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
}

.gateway__quick a:hover {
  color: var(--accent-2);
}

.gateway__shares {
  display: block;
  margin-top: 0.2rem;
  font-style: normal;
  font-size: 0.8rem;
  color: #9a9a9a;
  font-weight: 600;
}

.gateway-seo {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--line);
  background: #050505;
}

.gateway-seo h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
}

.gateway-seo p {
  color: var(--ink-muted);
  margin: 0 0 0.85rem;
  font-size: 0.98rem;
}

.shell--readable {
  width: min(100% - 2rem, 760px);
  margin-inline: auto;
}

.longform {
  padding: 2.75rem 0 3.5rem;
}

.longform__block {
  margin-bottom: 2.25rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--line);
}

.longform__block:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.longform h2 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.6vw, 1.65rem);
  margin: 0 0 0.9rem;
  letter-spacing: -0.02em;
  color: #fff;
}

.longform h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 1.25rem 0 0.5rem;
  color: var(--accent-2);
}

.longform p,
.longform li {
  color: var(--ink-muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.longform ul {
  margin: 0.5rem 0 0.75rem;
  padding-left: 1.2rem;
}

.longform li {
  margin-bottom: 0.45rem;
}

.longform__links {
  list-style: none;
  padding-left: 0;
}

.longform__links li {
  margin-bottom: 0.55rem;
}

.longform__links a {
  color: var(--accent-2);
  font-weight: 600;
  text-decoration: none;
}

.longform__links a:hover {
  color: #ffd24d;
  text-decoration: underline;
}

.longform__cta {
  text-align: center;
  padding-top: 0.5rem;
}

.longform__copy {
  margin-top: 1.25rem !important;
  font-size: 0.88rem !important;
  color: #888 !important;
}

@keyframes gateway-pulse {
  0%, 100% { box-shadow: 0 12px 40px rgba(240, 179, 74, 0.25); }
  50% { box-shadow: 0 14px 48px rgba(240, 179, 74, 0.45); }
}

@media (max-width: 640px) {
  .gateway__share {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .gateway__share-copy {
    text-align: center;
  }

  .gateway__share-actions {
    justify-content: center;
  }
}
