/* ==========================================================================
   SOMNIUS landing — stf.games
   Plain CSS, no frameworks. Palette follows the game's brand sheet:
   bone white text, cyan funnel glow, violet curse-web, deep plum night.
   ========================================================================== */

@font-face {
  font-family: "Luckiest Guy";
  src: url("assets/fonts/LuckiestGuy-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans";
  src: url("assets/fonts/NotoSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans";
  src: url("assets/fonts/NotoSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

:root {
  --bg:        #0b0a14;
  --bg-2:      #14122a;
  --bg-3:      #1d1a38;
  --line:      rgba(214, 203, 232, 0.12);

  --bone:      #f2ede4;
  --lilac:     #d6cbe8;
  --muted:     #a89fc0;

  --cyan:      #4fd8e8;
  --cyan-deep: #1fb2c6;
  --violet:    #7a4bd6;
  --danger:    #ff5f7a;

  --display:   "Luckiest Guy", "Impact", "Arial Black", sans-serif;
  --body:      "Noto Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --wrap:      1180px;
  --radius:    18px;
  --shadow:    0 30px 80px rgba(0, 0, 0, 0.55);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--bone);
  background: var(--bg);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 { margin: 0; font-family: var(--display); font-weight: 400; line-height: 1.05; letter-spacing: 0.01em; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
em { font-style: normal; color: var(--danger); }
figure { margin: 0; }

.wrap { width: min(var(--wrap), 100% - 2.5rem); margin-inline: auto; }
.center { text-align: center; }

h2 { font-size: clamp(2rem, 4.2vw, 3.3rem); text-shadow: 0 4px 0 rgba(0, 0, 0, 0.45); }
h3 { font-size: 1.5rem; }

.eyebrow {
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.7rem;
}

.skip { position: absolute; left: -999px; top: 0; background: var(--cyan); color: var(--bg); padding: 0.6rem 1rem; z-index: 100; }
.skip:focus { left: 1rem; top: 1rem; }

/* ---------- buttons ----------
   Luckiest Guy has no descenders and sits high in its line box, so we
   pin the button height, kill line-height and nudge the label down 1px.  */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.65rem;
  height: 54px;
  padding: 0 1.6rem;
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  line-height: 1;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s, color 0.2s;
  white-space: nowrap;
  cursor: pointer;
}
.btn > span { transform: translateY(1px); }
.btn .ico { width: 1.3em; height: 1.3em; fill: currentColor; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--steam {
  background: linear-gradient(180deg, #62e4f1 0%, var(--cyan-deep) 100%);
  border-color: rgba(255, 255, 255, 0.25);
  color: #06212a;
  box-shadow: 0 10px 30px rgba(79, 216, 232, 0.35);
}
.btn--steam:hover { box-shadow: 0 14px 40px rgba(79, 216, 232, 0.55); }

.btn--ghost {
  background: rgba(20, 18, 42, 0.55);
  border-color: rgba(214, 203, 232, 0.35);
  color: var(--bone);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { border-color: var(--cyan); color: var(--cyan); }

.btn--sm { height: 40px; font-size: 0.9rem; padding: 0 1.1rem; }
.btn--lg { height: 62px; font-size: 1.25rem; padding: 0 2.1rem; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 10, 20, 0.75);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__in { display: flex; align-items: center; justify-content: space-between; min-height: 72px; gap: 1rem; }
.nav__brand img { height: 34px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 1.6rem; font-weight: 700; font-size: 0.95rem; }
.nav__links a:not(.btn) { color: var(--lilac); position: relative; }
.nav__links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--cyan); transform: scaleX(0); transform-origin: left; transition: transform 0.2s;
}
.nav__links a:not(.btn):hover { color: var(--bone); }
.nav__links a:not(.btn):hover::after { transform: scaleX(1); }

.nav__toggle { position: absolute; opacity: 0; pointer-events: none; }
.nav__burger { display: none; width: 40px; height: 40px; cursor: pointer; flex-direction: column; justify-content: center; gap: 6px; }
.nav__burger span { height: 3px; border-radius: 2px; background: var(--bone); transition: transform 0.25s, opacity 0.25s; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: min(94vh, 920px);
  display: grid; place-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg, .hero__bg img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 45%;
  z-index: -2;
}
.hero__veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 60% 70% at 50% 60%, rgba(11, 10, 20, 0.15) 0%, rgba(11, 10, 20, 0.72) 70%),
    linear-gradient(180deg, rgba(11, 10, 20, 0.55) 0%, rgba(11, 10, 20, 0.25) 35%, rgba(11, 10, 20, 0.95) 100%);
}
.hero__in {
  text-align: center;
  padding: clamp(3rem, 7vw, 5rem) 0 4.5rem;
  display: flex; flex-direction: column; align-items: center;
}
.hero__logo {
  width: min(540px, 80vw);
  filter: drop-shadow(0 10px 40px rgba(79, 216, 232, 0.35)) drop-shadow(0 4px 0 rgba(0, 0, 0, 0.6));
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0) rotate(-0.6deg); } 50% { transform: translateY(-8px) rotate(0.6deg); } }

.hero__kicker {
  margin: 1.8rem 0 0.7rem;
  font-family: var(--display);
  letter-spacing: 0.2em; text-transform: uppercase;
  font-size: 1rem; color: var(--cyan);
}
.hero__title {
  font-size: clamp(2.2rem, 5.2vw, 4.2rem);
  max-width: 17ch;
  text-transform: uppercase;
  text-shadow: 0 6px 0 rgba(0, 0, 0, 0.5), 0 0 40px rgba(122, 75, 214, 0.5);
}
.hero__title span { color: var(--cyan); }
.hero__lead { max-width: 62ch; color: var(--lilac); font-size: 1.15rem; margin: 1.3rem 0 2.2rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.hero__meta {
  display: flex; flex-wrap: wrap; gap: 0.6rem 2.2rem; justify-content: center;
  margin-top: 2.4rem; font-size: 0.9rem; color: var(--muted);
}
.hero__meta strong { color: var(--bone); font-family: var(--display); letter-spacing: 0.04em; margin-right: 0.2rem; }

/* ---------- section rhythm ---------- */
section:not(.hero):not(.hook) { padding: clamp(4rem, 8vw, 7rem) 0; }

/* ---------- 10-second hook ---------- */
.hook { background: var(--bg-2); border-block: 1px solid var(--line); padding: 2.5rem 0; }
.hook__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.hook__row li { display: grid; grid-template-columns: auto 1fr; gap: 0 1rem; align-items: start; }
.hook__n {
  grid-row: span 2;
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--display); font-size: 1.3rem; padding-top: 3px;
  color: #06212a; background: var(--cyan);
  box-shadow: 0 0 24px rgba(79, 216, 232, 0.45);
}
.hook__row h3 { font-size: 1.25rem; margin-top: 0.4rem; }
.hook__row p { color: var(--lilac); font-size: 0.95rem; margin: 0.3rem 0 0; }

/* ---------- trailer ---------- */
.trailer-sec { background: var(--bg); }
.trailer-sec__grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; }
.trailer {
  position: relative; aspect-ratio: 16 / 9; overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-3);
  box-shadow: var(--shadow), 0 0 0 1px var(--line);
}
.trailer img { width: 100%; height: 100%; object-fit: cover; }
.trailer iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.trailer__play {
  position: absolute; inset: 0; margin: auto;
  width: 92px; height: 92px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--cyan); color: #06212a;
  display: grid; place-items: center;
  box-shadow: 0 0 0 12px rgba(79, 216, 232, 0.25), 0 20px 50px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s, box-shadow 0.2s;
}
.trailer__play svg { width: 44px; height: 44px; fill: currentColor; margin-left: 4px; }
.trailer__play:hover { transform: scale(1.08); box-shadow: 0 0 0 18px rgba(79, 216, 232, 0.25), 0 20px 50px rgba(0, 0, 0, 0.5); }
.trailer__soon {
  position: absolute; left: 50%; bottom: 1.2rem; transform: translateX(-50%);
  padding: 0.6rem 1.1rem; border-radius: 999px;
  background: rgba(11, 10, 20, 0.8); border: 1px solid var(--line);
  font-size: 0.85rem; font-weight: 700; color: var(--lilac); white-space: nowrap;
}
.trailer-sec__text h2 { margin-bottom: 1rem; }
.trailer-sec__text p { color: var(--lilac); margin-bottom: 1.6rem; }

/* ---------- features ---------- */
.features { background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.features > .wrap > h2 { margin-bottom: clamp(3rem, 6vw, 5rem); }
.feat {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(2rem, 4vw, 4.5rem);
  align-items: center;
  padding-block: clamp(1.5rem, 3vw, 2.5rem);
}
.feat + .feat { border-top: 1px solid var(--line); }
.feat--flip .feat__img { order: 2; }
.feat__img img {
  border-radius: var(--radius);
  box-shadow: var(--shadow), 0 0 0 1px var(--line);
  transform: rotate(-1.2deg);
  transition: transform 0.3s;
}
.feat--flip .feat__img img { transform: rotate(1.2deg); }
.feat:hover .feat__img img { transform: rotate(0); }
.feat__tag {
  display: inline-block; margin-bottom: 0.8rem;
  font-family: var(--display); font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cyan);
}
.feat__text h3 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); margin-bottom: 1rem; text-shadow: 0 3px 0 rgba(0, 0, 0, 0.4); }
.feat__text p { color: var(--lilac); }

.more {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
  margin-top: clamp(3rem, 6vw, 5rem); padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
}
.more li {
  padding: 1.5rem 1.4rem;
  background: rgba(29, 26, 56, 0.55); border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color 0.2s, transform 0.2s;
}
.more li:hover { border-color: rgba(79, 216, 232, 0.45); transform: translateY(-3px); }
.more h3 { font-size: 1.25rem; color: var(--cyan); margin-bottom: 0.5rem; }
.more--img { padding-top: 0.6rem; }
.more--img img {
  width: 70%; max-width: 260px; height: 260px; object-fit: contain;
  margin: 0 auto 0.6rem;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.6));
}
.more p { color: var(--lilac); font-size: 0.95rem; }
.dreamer__text p a { color: var(--cyan); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- for whom ---------- */
.forwho {
  position: relative; border-block: 1px solid var(--line);
  background: url("assets/img/bg-forwho.jpg") left center / cover no-repeat var(--bg);
  min-height: 640px; display: flex; align-items: center;
}
.forwho::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,10,20,0.1) 30%, rgba(11,10,20,0.75) 55%, rgba(11,10,20,0.92)); }
.forwho__in { position: relative; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 3rem; align-items: center; }
.forwho__in h2 { margin-bottom: 1.6rem; }
.forwho__list { display: grid; gap: 0.9rem; }
.forwho__list li {
  position: relative; padding: 1rem 1.2rem 1rem 3.2rem;
  background: rgba(20, 18, 42, 0.8); border: 1px solid var(--line); border-radius: 14px;
  color: var(--lilac);
}
.forwho__list li::before {
  content: "✓"; position: absolute; left: 1.1rem; top: 0.95rem;
  font-family: var(--display); color: var(--cyan); font-size: 1.2rem;
}

/* ---------- dreamer / wishlist band ---------- */
.dreamer {
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 50% 80% at 25% 50%, rgba(79, 216, 232, 0.18), transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 40%, rgba(122, 75, 214, 0.3), transparent 70%),
    var(--bg-2);
}
.dreamer__in { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 3rem; align-items: center; }
.dreamer__art {
  width: min(340px, 70vw); margin-inline: auto;
  filter: drop-shadow(0 0 40px rgba(79, 216, 232, 0.55));
  animation: float 5s ease-in-out infinite reverse;
}
.dreamer__text h2 { margin-bottom: 1.2rem; }
.dreamer__text p { color: var(--lilac); margin-bottom: 1.8rem; }
.dreamer__cta { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ---------- faq ---------- */
.faq { background: var(--bg); }
.faq__in { max-width: 800px; }
.faq h2 { margin-bottom: 2.5rem; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none;
  padding: 1.2rem 3rem 1.2rem 0; position: relative;
  font-weight: 700; font-size: 1.1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 0.4rem; top: 50%; transform: translateY(-50%);
  font-family: var(--display); font-size: 1.6rem; color: var(--cyan); transition: transform 0.2s;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { color: var(--lilac); padding: 0 0 1.3rem; margin: 0; }
.faq details a { color: var(--cyan); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- press kit ---------- */
.presskit { background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.presskit__head {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem;
  margin-bottom: 2.5rem;
}
.presskit__head p:last-child { color: var(--lilac); max-width: 56ch; margin-top: 0.8rem; }

.pk { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: auto; gap: 1.2rem; }
.pk__item {
  display: flex; flex-direction: column;
  background: rgba(29, 26, 56, 0.55);
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.pk__item:hover { border-color: rgba(79, 216, 232, 0.45); transform: translateY(-3px); }
.pk__item--tall { grid-row: span 2; }
.pk__item--wide { grid-column: span 2; }
.pk__item--shot .pk__preview { aspect-ratio: 16 / 9; }

.pk__preview {
  position: relative; flex: 1; min-height: 150px;
  display: grid; place-items: center; overflow: hidden;
  background: var(--bg-3);
}
.pk__preview img { width: 100%; height: 100%; object-fit: cover; }
.pk__item--tall .pk__preview img { object-fit: cover; }
.pk__preview--checker {
  padding: 1.5rem;
  background-color: #2a2748;
  background-image:
    linear-gradient(45deg, rgba(255,255,255,0.06) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.06) 75%),
    linear-gradient(45deg, rgba(255,255,255,0.06) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.06) 75%);
  background-size: 20px 20px; background-position: 0 0, 10px 10px;
}
.pk__preview--checker img { object-fit: contain; max-height: 140px; }
.pk__preview--icon { padding: 1.5rem; }
.pk__preview--icon img { width: 120px; height: 120px; border-radius: 24px; }
.pk__preview--video img { filter: brightness(0.6); }
.pk__playicon {
  position: absolute; width: 60px; height: 60px; padding: 14px 12px 14px 16px;
  border-radius: 50%; background: var(--cyan); fill: #06212a;
  box-shadow: 0 0 0 8px rgba(79, 216, 232, 0.25);
}

.pk__meta { padding: 1rem 1.1rem 1.1rem; display: grid; grid-template-columns: 1fr auto; gap: 0.1rem 0.8rem; align-items: center; }
.pk__meta h3 { font-size: 1.1rem; }
.pk__meta > span { grid-column: 1; font-size: 0.8rem; color: var(--muted); }
.pk__dl {
  grid-column: 2; grid-row: 1 / span 2;
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 0.9rem; border-radius: 999px;
  border: 1px solid rgba(79, 216, 232, 0.4); color: var(--cyan);
  font-size: 0.85rem; font-weight: 700;
  transition: background 0.2s, color 0.2s;
}
.pk__dl svg { width: 16px; height: 16px; fill: currentColor; }
.pk__dl:hover { background: var(--cyan); color: #06212a; }

.facts {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem 2rem;
  margin: 2.5rem 0 0; padding: 1.6rem 1.8rem;
  background: rgba(29, 26, 56, 0.4); border: 1px solid var(--line); border-radius: var(--radius);
}
.facts dt { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.facts dd { margin: 0.15rem 0 0; font-weight: 700; }
.facts dd a { color: var(--cyan); }

/* ---------- studio ---------- */
.studio { background: var(--bg); border-top: 1px solid var(--line); }
.studio__in { text-align: center; max-width: 760px; }
.studio__logo { width: 220px; margin: 0 auto 1.6rem; }
.studio h2 { margin-bottom: 1rem; }
.studio p { color: var(--lilac); }

.prev {
  display: grid; grid-template-columns: 280px 1fr; gap: 1.6rem; align-items: center;
  margin: 2.4rem auto 0; text-align: left;
  padding: 1rem; border-radius: var(--radius);
  background: rgba(29, 26, 56, 0.55); border: 1px solid var(--line);
  transition: border-color 0.2s, transform 0.2s;
}
.prev:hover { border-color: rgba(79, 216, 232, 0.45); transform: translateY(-3px); }
.prev img { border-radius: 12px; width: 100%; }
.prev__text { display: flex; flex-direction: column; gap: 0.3rem; }
.prev__label { font-family: var(--display); font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cyan); }
.prev__text > strong { font-family: var(--display); font-size: 1.5rem; line-height: 1.1; }
.prev__review { font-weight: 700; color: #6df2a0; font-size: 0.9rem; }
.prev__desc { color: var(--lilac); font-size: 0.95rem; }
.prev__cta { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 0.4rem; font-weight: 700; color: var(--cyan); font-size: 0.95rem; }
.prev__cta svg { width: 18px; height: 18px; fill: currentColor; }

.social { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem; margin-top: 2.4rem; }
.social a {
  display: inline-flex; align-items: center; gap: 0.6rem;
  height: 46px; padding: 0 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(29, 26, 56, 0.6);
  color: var(--lilac); font-weight: 700; font-size: 0.95rem;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.social a:hover { border-color: var(--cyan); color: var(--bone); transform: translateY(-2px); }
.social svg { width: 20px; height: 20px; fill: currentColor; }

/* ---------- final cta ---------- */
.final {
  position: relative;
  background: url("assets/img/bg-final.jpg") center 30% / cover no-repeat var(--bg);
  border-top: 1px solid var(--line);
  padding-top: clamp(14rem, 34vw, 30rem) !important;
}
.final::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,10,20,0.15) 0%, rgba(11,10,20,0.2) 40%, rgba(11,10,20,0.92) 68%, var(--bg) 100%); }
.final .wrap { position: relative; }
.final__in { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1.4rem; }
.final__in img { width: min(420px, 70vw); filter: drop-shadow(0 8px 30px rgba(79, 216, 232, 0.3)); }
.final__in p { color: var(--lilac); font-size: 1.15rem; max-width: 40ch; }

/* ---------- footer ---------- */
.footer { padding: 2rem 0 2.5rem; border-top: 1px solid var(--line); background: #07060e; }
.footer__in { display: grid; grid-template-columns: auto 1fr; gap: 0.6rem 2rem; align-items: center; }
.footer__in img { height: 26px; width: auto; }
.footer nav { display: flex; gap: 1.6rem; justify-content: flex-end; font-size: 0.9rem; font-weight: 700; color: var(--lilac); }
.footer nav a:hover { color: var(--cyan); }
.footer p { grid-column: 1 / -1; font-size: 0.8rem; color: var(--muted); }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .pk { grid-template-columns: repeat(3, 1fr); }
  .more { grid-template-columns: repeat(2, 1fr); }
  .facts { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .nav__burger { display: flex; }
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(11, 10, 20, 0.97);
    border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  }
  .nav__links a { padding: 1rem 1.25rem; border-top: 1px solid var(--line); }
  .nav__links a:not(.btn)::after { display: none; }
  .nav__links .btn { margin: 1rem 1.25rem; border-radius: 12px; }
  .nav__toggle:checked ~ .nav__links { max-height: 560px; }
  .nav__toggle:checked ~ .nav__burger span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
  .nav__toggle:checked ~ .nav__burger span:nth-child(2) { opacity: 0; }
  .nav__toggle:checked ~ .nav__burger span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

  .hero { min-height: auto; }
  .hero__bg img { object-position: 22% 50%; }
  .hook__row { grid-template-columns: 1fr; gap: 1.4rem; }
  .trailer-sec__grid, .feat, .forwho__in, .dreamer__in { grid-template-columns: 1fr; }
  .forwho { min-height: 0; background-position: 30% center; }
  .forwho::before { background: rgba(11,10,20,0.82); }
  .forwho__space { display: none; }
  .final { padding-top: clamp(10rem, 45vw, 16rem) !important; }
  .feat--flip .feat__img { order: 0; }
  .feat__img img, .feat--flip .feat__img img { transform: none; }
  .dreamer__art { width: min(240px, 60vw); }
  .dreamer__text { text-align: center; }
  .dreamer__cta { justify-content: center; }
  .presskit__head { flex-direction: column; align-items: flex-start; }
  .pk { grid-template-columns: repeat(2, 1fr); }
  .pk__item--tall { grid-row: span 1; }
  .pk__item--tall .pk__preview { aspect-ratio: 2 / 3; max-height: 420px; }
  .prev { grid-template-columns: 1fr; }
  .footer__in { grid-template-columns: 1fr; text-align: center; }
  .footer__in img { margin-inline: auto; }
  .footer nav { justify-content: center; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .hero__cta .btn, .dreamer__cta .btn { width: 100%; }
  .hero__meta { flex-direction: column; gap: 0.4rem; }
  .pk { grid-template-columns: 1fr; }
  .more { grid-template-columns: 1fr; }
  .pk__item--wide { grid-column: span 1; }
  .facts { grid-template-columns: 1fr; }
  .presskit__head .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
