:root {
  --bg: #0a0a0c;
  --bg2: #121216;
  --ink: #f2f0ec;
  --dim: #8a8792;
  --hot: #ff2244;
  --display: 'Anton', sans-serif;
  --body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
em { font-style: normal; color: var(--hot); }

/* ---------- loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 100;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: transform .6s cubic-bezier(.7, 0, .3, 1), visibility 0s .6s;
}
.loader.done { transform: translateY(-100%); visibility: hidden; }
.loader-name { font-family: var(--display); font-size: clamp(3rem, 10vw, 8rem); letter-spacing: .02em; }
.loader-name span { display: inline-block; transform: translateY(120%); animation: rise .7s cubic-bezier(.2, .8, .2, 1) forwards; }
.loader-name span:nth-child(2) { animation-delay: .05s; } .loader-name span:nth-child(3) { animation-delay: .1s; }
.loader-name span:nth-child(4) { animation-delay: .15s; } .loader-name span:nth-child(5) { animation-delay: .2s; }
.loader-name span:nth-child(6) { animation-delay: .25s; } .loader-name span:nth-child(7) { animation-delay: .3s; }
.loader-name span:nth-child(8) { animation-delay: .35s; }
@keyframes rise { to { transform: translateY(0); } }

/* ---------- reveals (JS adds .js/.intro-done/.inview; without JS all visible) ---------- */
body.js .hero-content, body.js .scroll-cue { opacity: 0; transform: translateY(26px); transition: opacity .9s ease .15s, transform .9s cubic-bezier(.2, .8, .2, 1) .15s; }
body.intro-done .hero-content, body.intro-done .scroll-cue { opacity: 1; transform: none; }
body.js .section-title, body.js .lock-card, body.js .about-photo, body.js .cta-title {
  opacity: 0; transform: translateY(36px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2, .8, .2, 1);
}
body.js .inview { opacity: 1; transform: none; }
body.js .lock-card:nth-child(2) { transition-delay: .08s; }
body.js .lock-card:nth-child(3) { transition-delay: .16s; }
body.js .lock-card:nth-child(4) { transition-delay: .24s; }
body.js .lock-card:nth-child(5) { transition-delay: .32s; }
body.js .lock-card:nth-child(6) { transition-delay: .4s; }

/* ---------- cursor ---------- */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 99;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--hot);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width .25s, height .25s, background .25s;
  display: flex; align-items: center; justify-content: center;
  mix-blend-mode: difference;
}
.cursor.big { width: 74px; height: 74px; background: var(--ink); mix-blend-mode: difference; }
.cursor-label { font-size: 11px; font-weight: 700; color: var(--bg); letter-spacing: .1em; }
@media (hover: none) { .cursor { display: none; } }

/* ---------- pill cta ---------- */
.pill-cta {
  position: fixed; bottom: 22px; right: 22px; z-index: 60;
  display: flex; align-items: center; gap: 8px;
  background: var(--hot); color: #fff;
  font-weight: 700; font-size: 13px; letter-spacing: .12em;
  padding: 14px 22px; border-radius: 999px;
  box-shadow: 0 8px 30px rgba(255, 34, 68, .45);
  transition: transform .25s;
}
.pill-cta:hover { transform: scale(1.06); }
.pill-dot { width: 8px; height: 8px; border-radius: 50%; background: #fff; animation: pulse 1.4s infinite; }
@keyframes pulse { 50% { opacity: .3; transform: scale(.7); } }

/* ---------- hero ---------- */
.hero { position: relative; height: 100svh; overflow: hidden; }
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center 20%;
}
.hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,12,.35) 0%, rgba(10,10,12,.15) 45%, rgba(10,10,12,.92) 100%);
}
.hero-content {
  position: absolute; left: 0; right: 0; bottom: 4vh;
  text-align: center; padding: 0 20px;
}
.hero-kicker { font-size: 12px; letter-spacing: .4em; color: var(--dim); margin-bottom: 8px; }
.hero-name {
  font-family: var(--display);
  font-size: clamp(3.2rem, 10vw, 8rem);
  line-height: .9; letter-spacing: .01em;
  display: flex; justify-content: center;
}
.hn-line { display: block; }
.hn-accent { color: var(--hot); }
.hero-sub { margin-top: 18px; font-size: 12px; letter-spacing: .35em; color: var(--ink); opacity: .8; }
.scroll-cue {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  font-size: 10px; letter-spacing: .3em; color: var(--dim);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.scroll-cue span { width: 1px; height: 34px; background: var(--hot); animation: drop 1.6s infinite; }
@keyframes drop { 0% { transform: scaleY(0); transform-origin: top; } 60% { transform: scaleY(1); } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- marquee ---------- */
.marquee { overflow: hidden; border-block: 1px solid #1d1d22; padding: 16px 0; background: var(--bg2); }
.marquee-track { display: flex; white-space: nowrap; width: max-content; }
.marquee-track span {
  font-family: var(--display); font-size: clamp(1.4rem, 3.4vw, 2.6rem);
  color: transparent; -webkit-text-stroke: 1px #3a3a42; padding-right: 12px;
}

/* ---------- sections ---------- */
section { padding: 14vh 0; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 8px; padding: 0 5vw; margin-bottom: 5vh; }
.section-title { font-family: var(--display); font-size: clamp(2.6rem, 7.5vw, 5.5rem); line-height: .95; }
.section-note { font-size: 12px; letter-spacing: .18em; color: var(--dim); text-transform: uppercase; }

/* ---------- reel rail ---------- */
.rail { overflow: hidden; cursor: grab; }
.rail:active { cursor: grabbing; }
.rail-track { display: flex; gap: 14px; width: max-content; will-change: transform; padding: 4px 0; }
.reel-card {
  position: relative; flex: 0 0 auto;
  width: clamp(200px, 24vw, 300px); aspect-ratio: 9 / 16;
  border-radius: 14px; overflow: hidden; background: var(--bg2);
}
.reel-card video, .reel-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.reel-card:hover video, .reel-card:hover img { transform: scale(1.06); }
.reel-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(10,10,12,.55));
  pointer-events: none;
}
.reel-num {
  position: absolute; bottom: 10px; left: 12px; z-index: 2;
  font-family: var(--display); font-size: 1rem; color: var(--ink); opacity: .85;
}

/* ---------- locked ---------- */
.locked { background: var(--bg2); }
.locked-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; padding: 0 5vw;
}
.lock-card {
  position: relative; aspect-ratio: 3 / 4.6; border-radius: 12px; overflow: hidden;
}
.lock-card img {
  width: 100%; height: 100%; object-fit: cover;
  filter: blur(16px) brightness(.42) saturate(1.15);
  transform: scale(1.15);
  transition: filter .5s ease, transform .5s ease;
}
.lock-card:hover img { filter: blur(9px) brightness(.55) saturate(1.2); transform: scale(1.08); }
.lock-ic {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; opacity: .9; text-shadow: 0 2px 14px rgba(0,0,0,.6);
}
.locked-line { text-align: center; margin-top: 5vh; font-size: 15px; color: var(--dim); }
.locked-link { color: var(--hot); font-weight: 700; border-bottom: 1px solid var(--hot); padding-bottom: 2px; }

/* ---------- about ---------- */
.about {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 6vw;
  align-items: center; padding-inline: 8vw;
}
.about-photo { border-radius: 16px; overflow: hidden; }
.about-photo img { width: 100%; }
.about-copy p { margin-top: 20px; font-size: clamp(1rem, 1.6vw, 1.2rem); line-height: 1.7; color: #c9c6cf; max-width: 46ch; }
.about-copy p:first-of-type { color: var(--ink); font-weight: 700; font-size: clamp(1.2rem, 2vw, 1.5rem); }
.about-name { font-size: 12px !important; letter-spacing: .3em; text-transform: uppercase; color: var(--dim) !important; font-weight: 500 !important; margin-top: 10px !important; }

/* ---------- cta ---------- */
.cta { text-align: center; padding-inline: 20px; }
.cta-kicker { font-size: 12px; letter-spacing: .4em; color: var(--dim); margin-bottom: 14px; }
.cta-title { font-family: var(--display); font-size: clamp(3rem, 10vw, 8rem); line-height: .92; margin-bottom: 6vh; }
.cta-btn {
  display: inline-block;
  font-family: var(--display); font-size: clamp(1.2rem, 2.6vw, 1.9rem); letter-spacing: .06em;
  color: #fff; background: var(--hot);
  padding: 22px 54px; border-radius: 999px;
  box-shadow: 0 10px 44px rgba(255, 34, 68, .4);
  transition: transform .2s;
  will-change: transform;
}
.cta-fine { margin-top: 18px; font-size: 12px; color: var(--dim); letter-spacing: .1em; }

/* ---------- bio / faq ---------- */
.bio { background: var(--bg2); padding: 10vh 5vw; }
.bio-title { font-family: var(--display); font-size: clamp(2rem, 5vw, 3.4rem); margin-bottom: 5vh; }
.bio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.bio-grid h3 { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.bio-grid p { font-size: 15px; line-height: 1.75; color: #a8a5b0; }
@media (max-width: 900px) { .bio-grid { grid-template-columns: 1fr; gap: 30px; } }

/* ---------- footer ---------- */
.footer { padding: 40px 5vw; border-top: 1px solid #1d1d22; text-align: center; }
.footer p { font-size: 11px; color: var(--dim); letter-spacing: .12em; }
.socials { display: flex; justify-content: center; gap: 28px; margin-bottom: 18px; flex-wrap: wrap; }
.socials a {
  font-size: 12px; font-weight: 700; letter-spacing: .2em; color: var(--ink);
  border-bottom: 1px solid transparent; padding-bottom: 3px; transition: color .25s, border-color .25s;
}
.socials a:hover { color: var(--hot); border-color: var(--hot); }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(5,5,7,.94);
  display: none; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox video { max-height: 86vh; max-width: 92vw; border-radius: 12px; }
.lb-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: 1px solid #3a3a42; color: var(--ink);
  width: 44px; height: 44px; border-radius: 50%; font-size: 16px; cursor: pointer;
}
.lb-close:hover { border-color: var(--hot); color: var(--hot); }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .locked-grid { grid-template-columns: repeat(3, 1fr); }
  .about { grid-template-columns: 1fr; padding-inline: 6vw; }
  .about-photo { max-width: 420px; }
}
@media (max-width: 560px) {
  .locked-grid { grid-template-columns: repeat(2, 1fr); }
  .reel-card { width: 62vw; }
  .pill-cta { bottom: 14px; right: 14px; padding: 12px 18px; font-size: 12px; }
  .scroll-cue { left: 24px; transform: none; align-items: flex-start; }
}
