/* ════════════════════════════════════════
   THE LGCY SERIES — Landing Page
   style.css
   Brand Book v-01/2026: White / Chrome / Black
════════════════════════════════════════ */

:root {
  --w:   #FFFFFF;
  --c1:  #F2F2F2;
  --c2:  #D6D6D6;
  --c3:  #CFCFCF;
  --c4:  #BEBEBE;
  --c5:  #9C9C9C;
  --c6:  #5F5F5F;
  --bk:  #000000;
  --bk2: #0b0b0b;
  --gl:  rgba(255,255,255,0.08);
  --cg:  linear-gradient(135deg, #F2F2F2 0%, #D6D6D6 25%, #BEBEBE 50%, #9C9C9C 75%, #5F5F5F 100%);
  --f:   'Nunito Sans', 'Avenir', 'Century Gothic', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bk);
  color: var(--w);
  font-family: var(--f);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* noise overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  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='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
  opacity: .45;
  pointer-events: none;
  z-index: 9999;
}

::-webkit-scrollbar { width: 2px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: var(--c4); }

/* ── UTILITIES ── */
.chrome-text {
  background: var(--cg);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 40px;
  transition: all .4s ease;
}

.nav.scrolled {
  background: rgba(0,0,0,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gl);
  padding: 16px 40px;
}

.nav-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(207,207,207,.06) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(255,255,255,.02) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(255,255,255,.02) 0%, transparent 60%),
    #000;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 64px 64px;
  animation: gridDrift 24s linear infinite;
}

@keyframes gridDrift {
  0%   { transform: translateY(0); }
  100% { transform: translateY(64px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero-logo {
  height: clamp(80px, 14vw, 160px);
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 48px rgba(207,207,207,.2));
  opacity: 0;
  animation: fadeUp .8s ease .1s forwards;
  margin-bottom: 0;
}

/* ── SLOGAN BLOCK ── */
.slogan-block {
  margin: 48px 0 0;
  opacity: 0;
  animation: fadeUp .8s ease .3s forwards;
}

.slogan-takeover {
  font-size: clamp(52px, 11vw, 140px);
  font-weight: 900;
  line-height: .88;
  letter-spacing: -.02em;
  background: var(--cg);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.slogan-takeover .dot {
  -webkit-text-fill-color: rgba(255,255,255,.15);
}

/* ── COMING SOON TAG ── */
.tickets-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255,255,255,.15);
  padding: 12px 28px;
  margin-top: 36px;
  opacity: 0;
  animation: fadeUp .8s ease .5s forwards;
}

.tickets-tag .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--w);
  animation: pulse 2s ease infinite;
}

.tickets-tag span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--c3);
}

@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.3; transform:scale(.7); }
}

/* ── LINES ── */
.lines {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
  opacity: 0;
  animation: fadeUp .8s ease .65s forwards;
}

.line {
  font-size: clamp(11px, 1.4vw, 14px);
  font-weight: 300;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c5);
  line-height: 1;
}

.line-sep {
  width: 1px;
  height: 16px;
  background: var(--c6);
  opacity: .4;
}

/* ── TRAILER ── */
.trailer-section {
  position: relative;
  padding: 0 0 clamp(60px, 8vw, 100px);
  background: var(--bk);
}

.trailer-wrap {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.trailer-inner {
  position: relative;
  width: 100%;
  background: #000;
  border: 1px solid var(--gl);
  overflow: hidden;
}

.trailer-inner::before {
  content: '';
  display: block;
  padding-top: 56.25%; /* 16:9 */
}

.trailer-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  display: block;
}

/* play overlay */
.trailer-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(3px);
  cursor: pointer;
  transition: opacity .3s;
  z-index: 2;
}

.trailer-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.play-btn {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.4);
  transition: all .25s;
  margin-bottom: 14px;
}

.play-btn:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--w);
  transform: scale(1.07);
}

.play-tri {
  width: 0; height: 0;
  border-style: solid;
  border-width: 14px 0 14px 26px;
  border-color: transparent transparent transparent var(--w);
  margin-left: 5px;
}

.play-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}

/* corner logo on video */
.trailer-logo {
  position: absolute;
  top: 16px;
  right: 16px;
  height: 32px;
  width: auto;
  object-fit: contain;
  opacity: .6;
  pointer-events: none;
  z-index: 3;
  filter: brightness(1.2);
}

/* progress */
.trailer-progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(255,255,255,.08);
  z-index: 4;
}

.trailer-bar {
  height: 100%;
  width: 0%;
  background: var(--cg);
  transition: width .1s linear;
}

/* fullscreen btn */
.trailer-fullscreen {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 4;
  background: rgba(0,0,0,.6);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--c4);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 6px 12px;
  cursor: pointer;
  font-family: var(--f);
  transition: all .2s;
}

.trailer-fullscreen:hover {
  background: rgba(255,255,255,.1);
  color: var(--w);
}

/* ── DIVIDER LINE ── */
.hdiv {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.07), transparent);
  margin: 0 24px;
}

/* ── STARS SECTION ── */
.stars-section {
  padding: clamp(60px, 8vw, 100px) 24px;
  background: var(--bk);
}

.stars-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--c5);
  text-align: center;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.stars-label::before,
.stars-label::after {
  content: '';
  display: block;
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c6));
}

.stars-label::after {
  background: linear-gradient(90deg, var(--c6), transparent);
}

.stars-title {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 900;
  line-height: .9;
  letter-spacing: -.02em;
  text-align: center;
  margin-bottom: 56px;
}

/* STARS GRID */
.stars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}

.star-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #0a0a0a;
}

/* Aspect ratio 3:4 portrait */
.star-card::before {
  content: '';
  display: block;
  padding-top: 133%;
}

.star-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .6s ease;
  filter: grayscale(20%) contrast(1.05);
}

.star-card:hover .star-img {
  transform: scale(1.05);
}

/* gradient overlay */
.star-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(0,0,0,.4) 70%,
    rgba(0,0,0,.92) 100%
  );
  z-index: 1;
}

/* chrome shimmer top edge */
.star-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--cg);
  z-index: 2;
  opacity: 0;
  transition: opacity .3s;
}

.star-card:hover::after {
  opacity: 1;
}

.star-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 20px 22px;
  z-index: 3;
  transform: translateY(4px);
  transition: transform .3s ease;
}

.star-card:hover .star-info {
  transform: translateY(0);
}

.star-name {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 900;
  letter-spacing: -.01em;
  line-height: 1;
  margin-bottom: 5px;
}

.star-role {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c4);
  background: var(--cg);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* DENNIS — first card, featured with extra presence */
.star-card.featured {
  grid-row: span 1;
}

.star-card.featured .star-name {
  font-size: clamp(20px, 2.5vw, 28px);
}

/* ── CLOSING SLOGANS ── */
.closing-section {
  padding: clamp(60px, 8vw, 100px) 24px;
  text-align: center;
  background: var(--bk2);
  position: relative;
  overflow: hidden;
}

.closing-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(207,207,207,.04) 0%, transparent 70%);
  pointer-events: none;
}

.closing-slogans {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.cs-line {
  font-size: clamp(13px, 1.8vw, 18px);
  font-weight: 300;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c5);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  width: 100%;
  max-width: 700px;
}

.cs-line:last-of-type {
  border-bottom: none;
}

.cs-main {
  font-size: clamp(44px, 7.5vw, 96px);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: .88;
  margin: 40px 0;
  background: var(--cg);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--gl);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bk);
}

.footer-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
  opacity: .55;
}

.footer-copy {
  font-size: 9px;
  letter-spacing: .14em;
  color: rgba(255,255,255,.18);
  text-align: center;
}

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.22);
  text-decoration: none;
  transition: color .2s;
}

.footer-social a:hover { color: var(--c3); }

/* ── MODAL ── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.94);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.modal.open {
  opacity: 1;
  pointer-events: all;
}

.modal-inner {
  position: relative;
  width: min(94vw, 1120px);
}

.modal-inner::before {
  content: '';
  display: block;
  padding-top: 56.25%;
}

.modal-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--c5);
  cursor: pointer;
  border: 1px solid rgba(255,255,255,.14);
  padding: 7px 16px;
  background: transparent;
  font-family: var(--f);
  transition: all .2s;
}

.modal-close:hover { color: var(--w); border-color: var(--w); }

/* ── TICKER ── */
.ticker {
  background: var(--w);
  overflow: hidden;
  white-space: nowrap;
  padding: 11px 0;
}

.ticker-inner {
  display: inline-flex;
  animation: tickerMove 30s linear infinite;
}

.ticker-inner span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--bk);
  padding: 0 36px;
}

.ticker-inner .sep { color: rgba(0,0,0,.2); padding: 0; }

@keyframes tickerMove {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── REVEAL ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.in { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }
.delay-4 { transition-delay: .32s; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .stars-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 28px 20px;
  }

  .footer-social { justify-content: center; }

  .nav { padding: 18px 20px; }
  .nav.scrolled { padding: 12px 20px; }
}

@media (max-width: 480px) {
  .stars-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1px;
  }
}
