/* =========================================================================
   ALTERAVERSE — AI OTT Channel
   Dark cinematic / cosmic · amber-gold signature
   Single source of truth for the WordPress theme + standalone preview.
   ========================================================================= */

/* ----------------------------------------------------------------------- *
   1. TOKENS
 * ----------------------------------------------------------------------- */
:root {
  /* Surfaces */
  --bg:            #08070b;
  --bg-2:          #0c0a11;
  --surface:       #131119;
  --surface-2:     #1a1722;
  --line:          rgba(255, 245, 230, 0.09);
  --line-strong:   rgba(255, 245, 230, 0.16);

  /* Ink */
  --ink:           #f6f1e9;
  --ink-soft:      #cfc6ba;
  --ink-mute:      #8b8378;
  --ink-faint:     #5d564d;

  /* Gold signature */
  --gold:          #e8b04b;
  --gold-hi:       #f7d488;
  --gold-lo:       #c8881f;
  --gold-deep:     #8a5a13;
  --grad-gold:     linear-gradient(135deg, #f9dd9a 0%, #e8b04b 45%, #b87515 100%);
  --grad-gold-soft:linear-gradient(135deg, rgba(249,221,154,.18), rgba(184,117,21,.10));

  /* Cosmic depth (used sparingly behind the gold) */
  --cosmic-1:      #2a1a3e;
  --cosmic-2:      #3a1f24;
  --ember:         #ff7a3c;

  /* Glow */
  --glow-gold:     0 0 0 1px rgba(232,176,75,.35), 0 18px 60px -12px rgba(232,176,75,.45);

  /* Type */
  --f-display: "Sora", "Segoe UI", system-ui, sans-serif;
  --f-serif:   "Instrument Serif", Georgia, "Times New Roman", serif;
  --f-body:    "Inter", "Segoe UI", system-ui, sans-serif;

  /* Metrics */
  --container: 1280px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 18px;
  --radius-lg: 26px;
  --nav-h: 78px;

  /* Motion */
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-soft: cubic-bezier(.4, 0, .2, 1);
}

/* ----------------------------------------------------------------------- *
   2. RESET
 * ----------------------------------------------------------------------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }
input { font: inherit; }
::selection { background: var(--gold); color: #1a1206; }

/* ----------------------------------------------------------------------- *
   3. GLOBAL FX — grain + cursor
 * ----------------------------------------------------------------------- */
.grain {
  position: fixed; inset: 0; z-index: 9998; pointer-events: none;
  opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.cursor, .cursor-dot {
  position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none;
  border-radius: 50%; transform: translate(-50%, -50%);
  mix-blend-mode: screen; will-change: transform;
}
.cursor { width: 38px; height: 38px; border: 1px solid rgba(232,176,75,.6); transition: width .25s var(--ease), height .25s var(--ease), background .25s, opacity .3s; }
.cursor-dot { width: 5px; height: 5px; background: var(--gold-hi); }
.cursor.is-hover { width: 64px; height: 64px; background: rgba(232,176,75,.10); border-color: transparent; }
@media (hover: none), (max-width: 900px) { .cursor, .cursor-dot { display: none; } }

/* ----------------------------------------------------------------------- *
   5. LAYOUT HELPERS
 * ----------------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-display); font-size: 12px; font-weight: 600;
  letter-spacing: .26em; text-transform: uppercase; color: var(--gold);
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold); opacity: .7; }
.section { position: relative; padding: clamp(72px, 11vw, 150px) 0; }
.section__head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 64px); }
.section__head.center { margin-inline: auto; text-align: center; }
.section__head.center .eyebrow::before { display: none; }

h1,h2,h3,h4 { font-family: var(--f-display); font-weight: 700; line-height: 1.04; letter-spacing: -.02em; }
.h-display { font-size: clamp(44px, 8.5vw, 132px); font-weight: 800; line-height: .96; letter-spacing: -.035em; }
.h-1 { font-size: clamp(34px, 5.2vw, 72px); }
.h-2 { font-size: clamp(28px, 3.6vw, 50px); }
.serif-italic { font-family: var(--f-serif); font-style: italic; font-weight: 400; letter-spacing: -.01em; }
.text-gold { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead { font-size: clamp(16px, 1.4vw, 19px); color: var(--ink-soft); max-width: 56ch; }
.muted { color: var(--ink-mute); }

/* ----------------------------------------------------------------------- *
   6. BUTTONS
 * ----------------------------------------------------------------------- */
.btn {
  --pad-y: 15px; --pad-x: 28px;
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: var(--pad-y) var(--pad-x); border-radius: 100px;
  font-family: var(--f-display); font-weight: 600; font-size: 15px; letter-spacing: .01em;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s, color .35s, border-color .35s;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn--gold { background: var(--grad-gold); color: #20160a; box-shadow: 0 10px 36px -10px rgba(232,176,75,.6); }
.btn--gold:hover { box-shadow: 0 16px 50px -8px rgba(232,176,75,.85); transform: translateY(-2px); }
.btn--ghost { border: 1px solid var(--line-strong); color: var(--ink); background: rgba(255,255,255,.02); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-hi); background: rgba(232,176,75,.06); }
.btn--sm { --pad-y: 11px; --pad-x: 20px; font-size: 14px; }
.btn--lg { --pad-y: 18px; --pad-x: 38px; font-size: 16px; }

.play-ico { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: rgba(0,0,0,.18); }
.play-ico svg { width: 12px; height: 12px; }

/* ----------------------------------------------------------------------- *
   7. NAV
 * ----------------------------------------------------------------------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 1000; height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .4s var(--ease), backdrop-filter .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8,7,11,.72); backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%); border-bottom-color: var(--line);
}
.nav__inner { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--f-display); font-weight: 800; font-size: 19px; letter-spacing: -.01em; }
.brand__mark { width: 30px; height: 30px; flex: none; }
.brand b { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { font-size: 14.5px; color: var(--ink-soft); position: relative; padding: 6px 0; transition: color .3s; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--gold); transition: width .35s var(--ease); }
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__signin { font-family: var(--f-display); font-weight: 500; font-size: 14.5px; color: var(--ink-soft); }
.nav__signin:hover { color: var(--gold-hi); }

.burger { display: none; width: 42px; height: 42px; flex-direction: column; justify-content: center; align-items: center; gap: 6px; border-radius: 50%; border: 1px solid var(--line-strong); }
.burger span { display: block; width: 18px; height: 1.5px; background: var(--ink); transition: transform .35s var(--ease), opacity .25s; }
.burger.open span:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-3.75px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 999; background: rgba(8,7,11,.97); backdrop-filter: blur(8px);
  display: flex; flex-direction: column; justify-content: center; gap: 6px; padding: var(--gutter);
  transform: translateY(-100%); transition: transform .5s var(--ease); visibility: hidden;
}
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.mobile-menu a { font-family: var(--f-display); font-weight: 700; font-size: clamp(30px, 9vw, 52px); letter-spacing: -.02em; color: var(--ink); padding: 8px 0; opacity: .85; }
.mobile-menu a:hover { color: var(--gold-hi); }
.mobile-menu .btn { margin-top: 28px; align-self: flex-start; }

/* ----------------------------------------------------------------------- *
   8. HERO
 * ----------------------------------------------------------------------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding-top: var(--nav-h); overflow: hidden; }
.hero__canvas { position: absolute; inset: 0; z-index: 0; }
.hero__aurora {
  position: absolute; inset: -20% -10% auto; height: 120%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 50% at 70% 18%, rgba(232,176,75,.30), transparent 60%),
    radial-gradient(50% 45% at 22% 30%, rgba(255,122,60,.16), transparent 62%),
    radial-gradient(55% 60% at 50% 90%, rgba(42,26,62,.55), transparent 70%);
  filter: blur(20px); animation: auroraShift 18s var(--ease-soft) infinite alternate;
}
@keyframes auroraShift { to { transform: translate3d(-3%, 2%, 0) scale(1.08); } }
.hero__vignette { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(120% 80% at 50% 0%, transparent 40%, rgba(8,7,11,.7) 100%), linear-gradient(180deg, transparent 60%, var(--bg) 99%); }
.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px 8px 8px; border-radius: 100px;
  background: rgba(255,255,255,.04); border: 1px solid var(--line); font-size: 13px; color: var(--ink-soft); margin-bottom: 30px;
}
.hero__badge .dot { width: 22px; height: 22px; border-radius: 50%; background: var(--grad-gold); display: grid; place-items: center; color: #20160a; font-weight: 800; font-size: 11px; font-family: var(--f-display); }
.hero h1 { max-width: 15ch; }
.hero__sub { margin-top: 26px; max-width: 52ch; font-size: clamp(16px, 1.5vw, 20px); color: var(--ink-soft); }
.hero__actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero__meta { margin-top: 46px; display: flex; flex-wrap: wrap; gap: 30px 44px; align-items: center; }
.hero__stat .n { font-family: var(--f-display); font-weight: 800; font-size: clamp(24px, 2.6vw, 34px); }
.hero__stat .l { font-size: 13px; color: var(--ink-mute); letter-spacing: .02em; }
.hero__scroll { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--ink-mute); font-size: 11px; letter-spacing: .25em; text-transform: uppercase; }
.hero__scroll .mouse { width: 22px; height: 36px; border: 1px solid var(--line-strong); border-radius: 12px; position: relative; }
.hero__scroll .mouse::after { content: ""; position: absolute; top: 7px; left: 50%; width: 3px; height: 7px; border-radius: 3px; background: var(--gold); transform: translateX(-50%); animation: scrollDot 1.6s var(--ease) infinite; }
@keyframes scrollDot { 0%,100% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; transform: translate(-50%, 8px); } }

/* floating poster cluster (desktop hero side) */
.hero__stage { position: relative; height: 540px; display: none; }
.poster-float { position: absolute; border-radius: 16px; overflow: hidden; box-shadow: 0 40px 90px -30px rgba(0,0,0,.8); border: 1px solid var(--line); will-change: transform; }
.poster-float .poster__art { height: 100%; }
.poster-float:nth-child(1) { width: 210px; height: 300px; top: 30px; right: 120px; z-index: 3; }
.poster-float:nth-child(2) { width: 175px; height: 250px; top: 200px; right: 0; z-index: 2; }
.poster-float:nth-child(3) { width: 165px; height: 235px; top: 245px; right: 280px; z-index: 1; }

/* ----------------------------------------------------------------------- *
   9. MARQUEE
 * ----------------------------------------------------------------------- */
.marquee { position: relative; border-block: 1px solid var(--line); padding: 22px 0; overflow: hidden; background: linear-gradient(180deg, rgba(255,255,255,.015), transparent); }
.marquee__track { display: flex; gap: 56px; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { display: inline-flex; align-items: center; gap: 16px; font-family: var(--f-display); font-weight: 600; font-size: clamp(18px, 2vw, 26px); color: var(--ink-mute); letter-spacing: -.01em; white-space: nowrap; }
.marquee__item .star { color: var(--gold); font-size: .7em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ----------------------------------------------------------------------- *
   10. ROWS (Netflix-style)
 * ----------------------------------------------------------------------- */
.row { margin-bottom: clamp(40px, 5vw, 64px); }
.row:last-child { margin-bottom: 0; }
.row__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.row__title { font-size: clamp(20px, 2.4vw, 30px); display: flex; align-items: center; gap: 12px; }
.row__title .tag { font-family: var(--f-body); font-weight: 600; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(232,176,75,.35); padding: 3px 9px; border-radius: 100px; }
.row__nav { display: flex; gap: 8px; }
.row__nav button { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-strong); color: var(--ink-soft); display: grid; place-items: center; transition: all .3s; }
.row__nav button:hover { border-color: var(--gold); color: var(--gold); background: rgba(232,176,75,.08); }
.row__nav button svg { width: 16px; height: 16px; }

.scroller { display: flex; gap: 18px; overflow-x: auto; scroll-behavior: smooth; scroll-snap-type: x mandatory; padding: 6px 4px 18px; margin-inline: -4px; scrollbar-width: none; cursor: grab; }
.scroller::-webkit-scrollbar { display: none; }
.scroller.dragging { cursor: grabbing; scroll-behavior: auto; scroll-snap-type: none; }

.poster { position: relative; flex: 0 0 auto; width: clamp(180px, 22vw, 250px); scroll-snap-align: start; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s; }
.poster:hover { transform: translateY(-8px); box-shadow: 0 30px 60px -24px rgba(0,0,0,.85); border-color: rgba(232,176,75,.5); }
.poster__art { aspect-ratio: 2/3; position: relative; display: flex; flex-direction: column; justify-content: space-between; padding: 16px; overflow: hidden; }
.poster__art::after { content: ""; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E"); opacity: .06; mix-blend-mode: overlay; }
.poster__top { display: flex; justify-content: space-between; align-items: start; position: relative; z-index: 1; }
.poster__rating { display: inline-flex; align-items: center; gap: 5px; padding: 4px 9px; border-radius: 100px; background: rgba(8,7,11,.55); backdrop-filter: blur(6px); font-size: 12px; font-weight: 600; }
.poster__rating .star { color: var(--gold); }
.poster__badge { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 4px 8px; border-radius: 6px; background: var(--grad-gold); color: #20160a; }
.poster__bottom { position: relative; z-index: 1; }
.poster__genre { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 6px; }
.poster__name { font-family: var(--f-display); font-weight: 700; font-size: 19px; line-height: 1.1; letter-spacing: -.01em; text-shadow: 0 2px 18px rgba(0,0,0,.6); }
.poster__hover { position: absolute; inset: 0; z-index: 2; display: flex; align-items: flex-end; padding: 16px; opacity: 0; background: linear-gradient(0deg, rgba(8,7,11,.92), transparent 70%); transition: opacity .4s var(--ease); }
.poster:hover .poster__hover { opacity: 1; }
.poster__hover .row__play { width: 44px; height: 44px; border-radius: 50%; background: var(--grad-gold); color: #20160a; display: grid; place-items: center; transform: translateY(8px); transition: transform .4s var(--ease); }
.poster:hover .poster__hover .row__play { transform: translateY(0); }

/* ----------------------------------------------------------------------- *
   11. SPOTLIGHT
 * ----------------------------------------------------------------------- */
.spotlight { position: relative; overflow: hidden; }
.spotlight__bg { position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(70% 80% at 80% 30%, rgba(232,176,75,.16), transparent 60%), radial-gradient(60% 60% at 10% 80%, rgba(58,31,36,.6), transparent 70%); }
.spotlight__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 0.86fr 1.14fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.spotlight__grid--flip { grid-template-columns: 1.14fr 0.86fr; }
.spotlight__grid--flip .spotlight__poster { order: -1; }
.spotlight__grid + .spotlight__grid { margin-top: clamp(48px, 7vw, 100px); }
.spotlight__poster { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-strong); box-shadow: 0 50px 110px -40px rgba(0,0,0,.9); }
.spotlight__poster .poster__art { aspect-ratio: 16/9; padding: 0; }
.spotlight__tag { position: absolute; top: 16px; left: 16px; z-index: 3; font-family: var(--f-display); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: 6px 12px; border-radius: 100px; background: rgba(8,7,11,.6); backdrop-filter: blur(6px); color: var(--gold-hi); border: 1px solid rgba(232,176,75,.35); }
.spotlight__play { position: absolute; inset: 0; display: grid; place-items: center; z-index: 2; }
.spotlight__play button { width: 94px; height: 94px; border-radius: 50%; background: rgba(8,7,11,.4); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.25); color: var(--gold-hi); display: grid; place-items: center; transition: all .4s var(--ease); }
.spotlight__play button:hover { background: var(--grad-gold); color: #20160a; transform: scale(1.08); border-color: transparent; }
.spotlight__play button svg { width: 26px; height: 26px; }
.spotlight__play .pulse { position: absolute; width: 94px; height: 94px; border-radius: 50%; border: 1px solid rgba(232,176,75,.5); animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.9); opacity: 0; } }
.spotlight__chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 8px; }
.chip { font-size: 12.5px; padding: 6px 14px; border-radius: 100px; border: 1px solid var(--line-strong); color: var(--ink-soft); }
.spotlight__meta { display: flex; gap: 18px; align-items: center; color: var(--ink-mute); font-size: 14px; margin-bottom: 22px; }
.spotlight__meta b { color: var(--ink); font-weight: 600; }

/* ----------------------------------------------------------------------- *
   12. GENRE GRID
 * ----------------------------------------------------------------------- */
.genres { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.genre { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 200px; border: 1px solid var(--line); display: flex; align-items: flex-end; padding: 24px; isolation: isolate; transition: transform .45s var(--ease), border-color .45s; }
.genre::before { content: ""; position: absolute; inset: 0; z-index: -1; opacity: .9; transition: transform .6s var(--ease), opacity .45s; }
.genre:hover { transform: translateY(-6px); border-color: rgba(232,176,75,.45); }
.genre:hover::before { transform: scale(1.08); opacity: 1; }
.genre__name { font-family: var(--f-display); font-weight: 700; font-size: 24px; letter-spacing: -.01em; }
.genre__count { font-size: 13px; color: rgba(255,255,255,.65); margin-top: 4px; }
.genre__arrow { position: absolute; top: 22px; right: 22px; width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); display: grid; place-items: center; opacity: 0; transform: translate(-6px,6px); transition: all .4s var(--ease); }
.genre:hover .genre__arrow { opacity: 1; transform: translate(0,0); }

/* ----------------------------------------------------------------------- *
   13. FEATURES — The AI difference
 * ----------------------------------------------------------------------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature { padding: 34px 30px; border-radius: var(--radius); border: 1px solid var(--line); background: linear-gradient(180deg, rgba(255,255,255,.025), transparent); transition: transform .4s var(--ease), border-color .4s, background .4s; }
.feature:hover { transform: translateY(-6px); border-color: rgba(232,176,75,.35); background: var(--grad-gold-soft); }
.feature__ico { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; background: rgba(232,176,75,.10); border: 1px solid rgba(232,176,75,.25); color: var(--gold-hi); margin-bottom: 22px; }
.feature__ico svg { width: 26px; height: 26px; }
.feature h3 { font-size: 22px; margin-bottom: 10px; }
.feature p { color: var(--ink-mute); font-size: 15px; }

/* ----------------------------------------------------------------------- *
   14. STATS BAND
 * ----------------------------------------------------------------------- */
.stats { border-block: 1px solid var(--line); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat__n { font-family: var(--f-display); font-weight: 800; font-size: clamp(26px, 3.2vw, 44px); letter-spacing: -.02em; line-height: 1.05; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat__l { margin-top: 12px; color: var(--ink-mute); font-size: 14px; letter-spacing: .02em; }

/* ----------------------------------------------------------------------- *
   15. PRICING
 * ----------------------------------------------------------------------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan { position: relative; padding: 36px 32px; border-radius: var(--radius-lg); border: 1px solid var(--line); background: linear-gradient(180deg, rgba(255,255,255,.02), transparent); display: flex; flex-direction: column; transition: transform .4s var(--ease), border-color .4s; }
.plan:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.plan--feat { border-color: rgba(232,176,75,.5); background: var(--grad-gold-soft); box-shadow: 0 40px 90px -40px rgba(232,176,75,.4); }
.plan--feat::before { content: "Most Popular"; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--grad-gold); color: #20160a; font-family: var(--f-display); font-weight: 700; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; padding: 6px 16px; border-radius: 100px; white-space: nowrap; }
.plan__name { font-family: var(--f-display); font-weight: 700; font-size: 16px; letter-spacing: .04em; text-transform: uppercase; color: var(--gold); }
.plan__price { margin: 18px 0 4px; display: flex; align-items: flex-end; gap: 6px; }
.plan__price .amt { font-family: var(--f-display); font-weight: 800; font-size: 56px; letter-spacing: -.03em; line-height: 1; }
.plan__price .per { color: var(--ink-mute); font-size: 15px; margin-bottom: 8px; }
.plan__desc { color: var(--ink-mute); font-size: 14.5px; margin-bottom: 24px; }
.plan__list { display: flex; flex-direction: column; gap: 13px; margin-bottom: 30px; flex: 1; }
.plan__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; color: var(--ink-soft); }
.plan__list svg { width: 18px; height: 18px; flex: none; color: var(--gold); margin-top: 2px; }
.plan .btn { width: 100%; }

/* ----------------------------------------------------------------------- *
   16. FAQ
 * ----------------------------------------------------------------------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; text-align: left; padding: 26px 4px; font-family: var(--f-display); font-weight: 600; font-size: clamp(17px, 2vw, 21px); letter-spacing: -.01em; transition: color .3s; }
.faq__q:hover { color: var(--gold-hi); }
.faq__icon { flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; position: relative; transition: all .35s var(--ease); }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--gold); transition: transform .35s var(--ease); }
.faq__icon::before { width: 12px; height: 1.5px; }
.faq__icon::after { width: 1.5px; height: 12px; }
.faq__item.open .faq__icon { background: rgba(232,176,75,.12); border-color: var(--gold); }
.faq__item.open .faq__icon::after { transform: scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq__a p { padding: 0 4px 26px; color: var(--ink-mute); font-size: 15.5px; max-width: 70ch; }

/* ----------------------------------------------------------------------- *
   17. CTA BAND
 * ----------------------------------------------------------------------- */
.cta { position: relative; overflow: hidden; }
.cta__panel { position: relative; border-radius: var(--radius-lg); padding: clamp(48px, 7vw, 90px) var(--gutter); text-align: center; overflow: hidden; border: 1px solid rgba(232,176,75,.3); }
.cta__panel::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(80% 130% at 50% 0%, rgba(232,176,75,.28), transparent 60%), var(--surface); }
.cta__panel h2 { max-width: 18ch; margin-inline: auto; }
.cta__panel .lead { margin: 20px auto 36px; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta__note { margin-top: 20px; font-size: 13px; color: var(--ink-mute); }

/* ----------------------------------------------------------------------- *
   18. FOOTER
 * ----------------------------------------------------------------------- */
.footer { border-top: 1px solid var(--line); padding-top: clamp(56px, 7vw, 90px); }
.footer__top { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; padding-bottom: 50px; }
.footer__brand .brand { font-size: 22px; margin-bottom: 18px; }
.footer__brand p { color: var(--ink-mute); font-size: 14.5px; max-width: 34ch; margin-bottom: 22px; }
.footer__news { display: flex; gap: 8px; max-width: 360px; }
.footer__news input { flex: 1; padding: 13px 16px; border-radius: 100px; background: rgba(255,255,255,.04); border: 1px solid var(--line-strong); color: var(--ink); transition: border-color .3s; }
.footer__news input:focus { outline: none; border-color: var(--gold); }
.footer__col h4 { font-family: var(--f-display); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 18px; }
.footer__col a { display: block; padding: 7px 0; color: var(--ink-soft); font-size: 14.5px; transition: color .3s, transform .3s; }
.footer__col a:hover { color: var(--gold-hi); transform: translateX(4px); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding: 28px 0; border-top: 1px solid var(--line); color: var(--ink-mute); font-size: 13.5px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; transition: all .3s; }
.footer__social a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.footer__social svg { width: 17px; height: 17px; }

/* ----------------------------------------------------------------------- *
   19. SCROLL REVEAL
 * ----------------------------------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }

/* ----------------------------------------------------------------------- *
   20. RESPONSIVE
 * ----------------------------------------------------------------------- */
@media (min-width: 1080px) {
  .hero__inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; }
  .hero__stage { display: block; }
}
@media (max-width: 1024px) {
  .spotlight__grid, .spotlight__grid--flip { grid-template-columns: 1fr; }
  .spotlight__poster { order: -1; }
  .features, .genres, .plans { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .nav__links, .nav__signin { display: none; }
  .burger { display: flex; }
  .nav__cta .btn { display: none; }
  .hero__meta { gap: 22px 32px; }
  .features, .genres, .plans { grid-template-columns: 1fr; }
  .plan--feat { order: -1; }
  .row__nav { display: none; }
  .footer__top { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
}
@media (max-width: 420px) {
  .stats__grid { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; }
}

/* ----------------------------------------------------------------------- *
   21. PHOTO ART (real cinematic imagery)
   Posters/genre tiles carry a cover photo; a top+bottom scrim keeps the
   rating, genre and title text legible over any frame.
 * ----------------------------------------------------------------------- */
.poster__art,
.spotlight__poster .poster__art {
  background-size: cover;
  background-position: center;
  background-color: #0b0a12;
}
.poster__art::before {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg,
    rgba(8,7,11,.48) 0%,
    rgba(8,7,11,0) 24%,
    rgba(8,7,11,0) 48%,
    rgba(8,7,11,.55) 74%,
    rgba(8,7,11,.96) 100%);
}
.spotlight__poster .poster__art::before {
  background: linear-gradient(180deg, rgba(8,7,11,.25), rgba(8,7,11,0) 45%, rgba(8,7,11,.45));
}
/* photo-backed genre tiles */
.genre__media {
  position: absolute; inset: 0; z-index: -1;
  background-size: cover; background-position: center;
}
.genre__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,7,11,.15), rgba(8,7,11,.35) 45%, rgba(8,7,11,.9));
}
.genre::before { display: none; } /* replaced by .genre__media photo layer */

/* subtle photographic backdrop behind the animated hero (Ken-Burns drift) */
.hero__photo {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center top;
  opacity: .30; filter: blur(1px) saturate(1.1);
  transform-origin: 70% 35%;
  animation: heroKenBurns 28s var(--ease-soft) infinite alternate;
  -webkit-mask-image: radial-gradient(125% 105% at 72% 28%, #000 26%, transparent 76%);
          mask-image: radial-gradient(125% 105% at 72% 28%, #000 26%, transparent 76%);
}
@keyframes heroKenBurns { from { transform: scale(1.02); } to { transform: scale(1.12); } }

/* cinematic hero video loop (desktop); mobile falls back to the Ken-Burns photo */
.hero__video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  opacity: .42; filter: saturate(1.05);
  -webkit-mask-image: radial-gradient(125% 105% at 72% 28%, #000 26%, transparent 76%);
          mask-image: radial-gradient(125% 105% at 72% 28%, #000 26%, transparent 76%);
}
@media (min-width: 761px) { .hero__photo { display: none; } }
@media (max-width: 760px) { .hero__video { display: none; } }

/* ----------------------------------------------------------------------- *
   22. COSMIC BACKGROUND (site-wide sci-fi universe)
 * ----------------------------------------------------------------------- */
.cosmos {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
  background:
    radial-gradient(55% 45% at 82% 6%, rgba(232,176,75,.12), transparent 60%),
    radial-gradient(45% 40% at 10% 26%, rgba(126,86,196,.08), transparent 65%),
    radial-gradient(85% 55% at 50% 118%, rgba(74,36,21,.42), transparent 72%);
}
.cosmos__stars { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.planet { position: fixed; z-index: 0; border-radius: 50%; pointer-events: none; }
/* content sits above the cosmos (robust positive-z, no negative z-index) */
main, .footer { position: relative; z-index: 1; }
.planet--1 {
  width: min(38vw, 430px); height: min(38vw, 430px); top: 8%; right: -9vw;
  background: radial-gradient(circle at 34% 30%, #261b32 0%, #14101c 56%, #0a0712 100%);
  box-shadow: inset 22px -14px 52px rgba(0,0,0,.65), inset -36px 24px 76px rgba(232,176,75,.13), 0 0 90px rgba(232,176,75,.05);
  opacity: .55;
}
.planet--2 {
  width: min(20vw, 190px); height: min(20vw, 190px); bottom: 14%; left: -6vw;
  background: radial-gradient(circle at 36% 32%, #3a2a14 0%, #1a1208 60%, #0c0904 100%);
  box-shadow: inset 12px -8px 28px rgba(0,0,0,.7), 0 0 60px rgba(232,176,75,.07);
  opacity: .5;
}
@media (max-width: 760px) { .planet--1 { opacity: .38; } .planet--2 { display: none; } }

/* ----------------------------------------------------------------------- *
   23. REAL LOGO (wordmark image)
 * ----------------------------------------------------------------------- */
.brand__logo { height: 44px; width: auto; display: block; }
.footer__logo { height: 78px; width: auto; display: block; margin-bottom: 18px; }
@media (max-width: 760px) { .brand__logo { height: 34px; } .footer__logo { height: 60px; } }

/* hero logo (big wordmark as the headline) */
.hero__title { margin: 0; line-height: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.hero__logo { display: block; width: 600px; max-width: 92vw; height: auto; filter: drop-shadow(0 12px 46px rgba(232,176,75,.2)); }
@media (max-width: 1080px) { .hero__logo { width: 560px; } }
@media (max-width: 760px) { .hero__logo { width: 440px; max-width: 90vw; } }

/* footer partners — powered by (logo + name) */
.footer__partners {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 20px 44px; padding: 40px 0; border-top: 1px solid var(--line);
}
.partner__label { font-family: var(--f-display); font-size: 12px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-mute); white-space: nowrap; }
.footer__partners a.partner { display: inline-flex; align-items: center; gap: 15px; transition: transform .3s var(--ease), filter .3s; }
.footer__partners a.partner:hover { transform: translateY(-2px); filter: drop-shadow(0 8px 22px rgba(232,176,75,.4)); }
.partner__logo { height: 116px; width: auto; display: block; }
.partner__logo--aaf { height: 116px; }
.partner__name { font-family: var(--f-display); font-weight: 600; font-size: 16px; color: var(--ink-soft); letter-spacing: .01em; line-height: 1.25; }
@media (max-width: 760px) {
  .footer__partners { gap: 24px 30px; }
  .partner__label { flex-basis: 100%; text-align: center; }
  .partner__logo { height: 90px; } .partner__logo--aaf { height: 90px; }
  .partner__name { font-size: 14px; }
}
@media (max-width: 460px) { .footer__partners a.partner { flex-basis: 100%; justify-content: center; } }

/* ----------------------------------------------------------------------- *
   25. AUTH (sign in / create account / phone)
 * ----------------------------------------------------------------------- */
.auth { position: relative; z-index: 1; min-height: 100svh; display: grid; grid-template-columns: 1.05fr .95fr; }
.auth__visual { position: relative; display: flex; flex-direction: column; justify-content: space-between; padding: clamp(32px, 4vw, 60px); overflow: hidden; border-right: 1px solid var(--line); }
.auth__visual-bg { position: absolute; inset: 0; z-index: -1; background-size: cover; background-position: center; }
.auth__visual-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(8,7,11,.5), rgba(8,7,11,.9)); }
.auth__brand img { height: 34px; width: auto; display: block; }
.auth__visual-copy { margin-top: auto; }
.auth__visual-copy h2 { font-size: clamp(26px, 2.6vw, 40px); max-width: 16ch; }
.auth__visual-copy p { color: var(--ink-soft); max-width: 44ch; margin-top: 14px; }
.auth__panel { display: flex; align-items: center; justify-content: center; padding: clamp(28px, 4vw, 56px); }
.auth__card { width: 100%; max-width: 416px; }
.auth__back { display: inline-flex; align-items: center; gap: 8px; color: var(--ink-mute); font-size: 14px; margin-bottom: 26px; transition: color .25s; }
.auth__back:hover { color: var(--gold-hi); }
.auth__back svg { width: 16px; height: 16px; }
.auth__card h1 { font-size: clamp(24px, 3vw, 32px); }
.auth__sub { color: var(--ink-mute); margin: 8px 0 24px; font-size: 15px; }
.auth__social { display: flex; flex-direction: column; gap: 11px; }
.auth-btn { display: flex; align-items: center; justify-content: center; gap: 12px; width: 100%; padding: 13px 18px; border-radius: 12px; border: 1px solid var(--line-strong); background: rgba(255,255,255,.03); color: var(--ink); font-family: var(--f-display); font-weight: 500; font-size: 15px; cursor: pointer; transition: border-color .25s, background .25s; }
.auth-btn:hover { border-color: var(--gold); background: rgba(232,176,75,.06); }
.auth-btn svg { width: 19px; height: 19px; flex: none; }
.auth__divider { display: flex; align-items: center; gap: 14px; color: var(--ink-mute); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; margin: 22px 0; }
.auth__divider::before, .auth__divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.auth__methods { display: flex; gap: 6px; background: rgba(255,255,255,.03); border: 1px solid var(--line); border-radius: 12px; padding: 4px; margin-bottom: 18px; }
.auth__method { flex: 1; padding: 9px; border-radius: 9px; text-align: center; font-family: var(--f-display); font-size: 14px; font-weight: 600; color: var(--ink-mute); cursor: pointer; transition: all .25s; }
.auth__method.active { background: var(--grad-gold); color: #20160a; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 13px; color: var(--ink-soft); margin-bottom: 6px; }
.field input, .field select { width: 100%; padding: 13px 14px; border-radius: 11px; background: rgba(255,255,255,.04); border: 1px solid var(--line-strong); color: var(--ink); font-size: 15px; transition: border-color .25s; }
.field input::placeholder { color: var(--ink-faint); }
.field input:focus, .field select:focus { outline: none; border-color: var(--gold); }
.field__row { display: flex; gap: 10px; }
.field__row select { max-width: 116px; }
.auth__row { display: flex; justify-content: space-between; align-items: center; margin: 2px 0 18px; font-size: 13.5px; color: var(--ink-mute); }
.auth__row a { color: var(--gold-d); }
.auth__row label { display: inline-flex; align-items: center; gap: 7px; cursor: pointer; }
.auth .btn--gold { width: 100%; }
.auth__toggle { text-align: center; margin-top: 22px; color: var(--ink-mute); font-size: 14.5px; }
.auth__toggle a { color: var(--gold-hi); font-weight: 600; cursor: pointer; }
.auth__terms { text-align: center; color: var(--ink-faint); font-size: 12px; margin-top: 18px; line-height: 1.5; }
.auth__terms a { color: var(--ink-mute); text-decoration: underline; }
.auth__card:not(.auth--create) .only-create { display: none; }
.auth__card.auth--create .only-signin { display: none; }
@media (max-width: 900px) { .auth { grid-template-columns: 1fr; } .auth__visual { display: none; } }

/* ----------------------------------------------------------------------- *
   26. MOVIE DETAIL PAGE
 * ----------------------------------------------------------------------- */
.movie { position: relative; z-index: 1; }
.movie__backdrop { position: absolute; top: 0; left: 0; right: 0; height: 94vh; z-index: -1; background-size: cover; background-position: center 22%; filter: blur(9px) saturate(1.18); opacity: .62; transform: scale(1.06); }
.movie__backdrop::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,7,11,.4) 0%, rgba(8,7,11,.18) 32%, rgba(8,7,11,.82) 84%, var(--bg) 100%); }
.movie__inner { padding-top: calc(var(--nav-h) + clamp(28px, 5vw, 60px)); padding-bottom: clamp(60px, 9vw, 110px); }
.movie__back { display: inline-flex; align-items: center; gap: 8px; color: var(--ink-mute); font-size: 14px; margin-bottom: 26px; transition: color .25s; }
.movie__back:hover { color: var(--gold-hi); }
.movie__back svg { width: 16px; height: 16px; }
.movie__hero { display: grid; grid-template-columns: 300px 1fr; gap: clamp(28px, 4vw, 60px); align-items: start; }
.movie__poster { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-strong); box-shadow: 0 50px 110px -40px rgba(0,0,0,.9); aspect-ratio: 2/3; }
.movie__poster img { width: 100%; height: 100%; object-fit: cover; display: block; }
.movie__poster .poster__badge { position: absolute; top: 14px; left: 14px; z-index: 2; }
.movie__title { font-size: clamp(34px, 5vw, 60px); line-height: 1.02; letter-spacing: -.02em; }
.movie__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 7px 14px; margin: 18px 0; color: var(--ink-soft); font-size: 15px; }
.movie__meta .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--ink-faint); }
.movie__meta .rating { color: var(--gold-hi); font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }
.movie__meta .quality { border: 1px solid var(--line-strong); border-radius: 6px; padding: 1px 8px; font-size: 12px; letter-spacing: .04em; }
.movie__chips { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 22px; }
.movie__synopsis { font-size: clamp(16px, 1.4vw, 18px); color: var(--ink-soft); max-width: 64ch; line-height: 1.7; margin-bottom: 28px; }
.movie__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.movie__details { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px 36px; max-width: 620px; }
.movie__details dt { font-family: var(--f-display); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 4px; }
.movie__details dd { color: var(--ink); margin: 0; font-size: 15px; font-weight: 500; }
.movie__trailer { margin-top: clamp(46px, 7vw, 90px); }
.movie__trailer-head { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.movie__trailer-head h2 { font-size: clamp(20px, 2.4vw, 30px); }
.movie__player { max-width: 1040px; }
@media (max-width: 760px) {
  .movie__hero { grid-template-columns: 1fr; }
  .movie__poster { max-width: 220px; }
  .movie__details { grid-template-columns: 1fr; }
}

/* click-to-play trailer iframe (fills the player) */
.trailer-frame { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 5; border-radius: inherit; }
.spotlight__poster[data-trailer] { cursor: pointer; }

/* ----------------------------------------------------------------------- *
   27. JOIN BANNER (poster wall + email capture)
 * ----------------------------------------------------------------------- */
.join { position: relative; overflow: hidden; border-top: 1px solid var(--line); }
.join__wall { position: absolute; inset: -8% -4%; z-index: 0; display: grid; grid-template-columns: repeat(9, 1fr); gap: 10px; opacity: .95; transform: rotate(-4deg) scale(1.08); }
.join__wall img { width: 100%; aspect-ratio: 2/3; object-fit: cover; border-radius: 8px; }
.join__overlay { position: absolute; inset: 0; z-index: 1; background: radial-gradient(120% 88% at 50% 42%, rgba(8,7,11,.42), rgba(8,7,11,.74) 64%, rgba(8,7,11,.95) 100%); }
.join__inner { position: relative; z-index: 2; text-align: center; max-width: 760px; margin-inline: auto; padding: clamp(72px, 12vw, 150px) var(--gutter); }
.join__inner h2, .join__price, .join__lead { text-shadow: 0 2px 26px rgba(0,0,0,.9), 0 1px 4px rgba(0,0,0,.7); }
.join__inner h2 { font-size: clamp(30px, 5.2vw, 58px); line-height: 1.05; letter-spacing: -.025em; }
.join__price { font-family: var(--f-display); font-size: clamp(17px, 2vw, 22px); color: var(--ink); margin: 20px 0 8px; font-weight: 600; }
.join__lead { color: var(--ink-soft); font-size: clamp(15px, 1.5vw, 18px); margin: 0 auto 26px; max-width: 46ch; }
.join__form { display: flex; gap: 12px; max-width: 540px; margin: 0 auto; }
.join__form input { flex: 1; min-width: 0; padding: 16px 18px; border-radius: 12px; background: rgba(255,255,255,.06); border: 1px solid var(--line-strong); color: var(--ink); font-size: 16px; transition: border-color .25s; }
.join__form input::placeholder { color: var(--ink-mute); }
.join__form input:focus { outline: none; border-color: var(--gold); }
.join__form .btn { white-space: nowrap; }
.join__note { color: var(--ink-mute); font-size: 13px; margin-top: 16px; }
@media (max-width: 620px) {
  .join__form { flex-direction: column; }
  .join__wall { grid-template-columns: repeat(5, 1fr); }
}

/* ----------------------------------------------------------------------- *
   24. ABOUT US
 * ----------------------------------------------------------------------- */
.about__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px, 6vw, 90px); align-items: center; }
.about__mark { display: flex; justify-content: center; align-items: center; }
.about__a { display: block; width: 400px; max-width: 72vw; height: auto; filter: drop-shadow(0 0 50px rgba(232,176,75,.3)); animation: aGlow 5.5s var(--ease-soft) infinite alternate; }
@keyframes aGlow { from { filter: drop-shadow(0 0 34px rgba(232,176,75,.22)); transform: translateY(0); } to { filter: drop-shadow(0 0 80px rgba(232,176,75,.5)); transform: translateY(-8px); } }
.about__content .lead { margin-bottom: 16px; }
.about__content p { color: var(--ink-mute); margin-bottom: 14px; max-width: 60ch; }
.about__pillars { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 26px 0 0; padding: 0; }
.about__pillars li { display: flex; gap: 12px; align-items: center; color: var(--ink-soft); font-size: 15px; }
.about__pillars svg { width: 20px; height: 20px; flex: none; color: var(--gold); }
@media (prefers-reduced-motion: reduce) { .about__a { animation: none; } }
@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__mark { order: -1; }
  .about__a { width: 260px; max-width: 58vw; }
}
