@font-face {
  font-family: "Bianca Display";
  src: url("display.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Bianca Sans";
  src: url("sans.woff2") format("woff2");
  font-display: swap;
}

:root {
  --ink: #080d20;
  --navy: #060b1c;
  --paper: #eff4ff;
  --white: #f8fbff;
  --lilac: #cdd5ff;
  --ice: #d9f5ff;
  --blue: #2858ff;
  --cyan: #36c5f4;
  --violet: #795cff;
  --magenta: #dc55c7;
  --line: rgba(8, 13, 32, 0.2);
  --sans: "Bianca Sans", Arial, Helvetica, sans-serif;
  --display: "Bianca Display", Georgia, "Times New Roman", serif;
  --pad: clamp(1.25rem, 3vw, 3.5rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
::selection { background: var(--blue); color: white; }

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 999;
  left: 1rem;
  top: 1rem;
  background: white;
  padding: .8rem 1rem;
  border-radius: 999px;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 0 var(--pad);
  transition: background .35s ease, color .35s ease, transform .35s ease;
}

.site-header.scrolled {
  background: rgba(239, 244, 255, .88);
  border-bottom: 1px solid rgba(11, 11, 12, .12);
  backdrop-filter: blur(16px);
}

.wordmark {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: -.02em;
}

.mark { font-size: 1.2rem; transition: transform .4s ease; }
.wordmark:hover .mark { transform: rotate(90deg); }

.site-nav { display: flex; align-items: center; gap: clamp(1.25rem, 3vw, 3rem); font-size: .78rem; font-weight: 700; }
.site-nav > a:not(.nav-cta) { position: relative; }
.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -.4rem;
  height: 1px;
  background: currentColor;
  transition: right .25s ease;
}
.site-nav > a:hover::after { right: 0; }

.nav-cta {
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: .7rem 1rem;
  transition: background .2s ease, color .2s ease;
}
.nav-cta:hover { background: var(--ink); color: white; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  padding: clamp(8rem, 14vh, 11rem) var(--pad) 2rem;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 88% 18%, rgba(54, 197, 244, .22), transparent 27%),
    radial-gradient(circle at 70% 72%, rgba(121, 92, 255, .18), transparent 28%),
    var(--paper);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .2;
  background-image: linear-gradient(rgba(11, 11, 12, .14) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 11, 12, .14) 1px, transparent 1px);
  background-size: 5vw 5vw;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

.hero-kicker,
.eyebrow,
.card-label {
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 700;
  font-size: .68rem;
}

.hero-kicker { display: flex; align-items: center; gap: .6rem; }
.status-dot,
.live-dot { width: .5rem; height: .5rem; border-radius: 50%; background: #31c869; display: inline-block; box-shadow: 0 0 0 .3rem rgba(49, 200, 105, .14); }

.hero-copy { position: relative; z-index: 4; width: min(520px, 34%); }
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin: clamp(2rem, 5vh, 4rem) 0 1.4rem;
  font-size: clamp(3.7rem, 5.2vw, 6.4rem);
  font-weight: 700;
  line-height: .83;
  letter-spacing: -.075em;
}

.serif { font-family: var(--display); font-weight: 400; font-style: italic; letter-spacing: -.04em; }
.hero-intro { width: min(390px, 100%); font-size: clamp(.95rem, 1.05vw, 1.08rem); line-height: 1.5; }

.round-link {
  position: absolute;
  right: 0;
  bottom: -1.8rem;
  width: 114px;
  aspect-ratio: 1;
  padding: 1.1rem;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  transition: transform .35s ease, background .25s ease, color .25s ease;
}
.round-link:hover { transform: rotate(-7deg) scale(1.05); background: var(--ink); color: white; }
.round-arrow { font-size: 1.3rem; align-self: flex-end; }

.hero-stage {
  position: absolute;
  z-index: 2;
  right: 1.6vw;
  top: 15vh;
  width: min(54vw, 920px);
  aspect-ratio: 1.12;
  transition: transform .2s ease-out;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: -8% -4% -8% 5%;
  border-radius: 48% 52% 44% 56%;
  background: linear-gradient(135deg, rgba(54, 197, 244, .55), rgba(121, 92, 255, .45));
  filter: blur(38px);
  opacity: .75;
  transform: rotate(-7deg);
}
.hero-blob { position: absolute; pointer-events: none; }
.blob-blue { width: 58%; right: -5%; top: -17%; opacity: .58; animation: float-a 8s ease-in-out infinite; }
.blob-violet { width: 42%; left: -5%; bottom: -14%; opacity: .55; filter: hue-rotate(195deg) saturate(.9) brightness(1.08); animation: float-b 7s ease-in-out infinite; }

.stage-ring { position: absolute; z-index: 1; border: 1px solid rgba(40, 88, 255, .5); border-radius: 50%; pointer-events: none; }
.ring-one { inset: -7% 5% 2% -2%; transform: rotate(22deg); }
.ring-two { inset: 3% -8% -7% 14%; border-style: dashed; border-color: rgba(121, 92, 255, .55); transform: rotate(-13deg); }

.hero-reel {
  position: relative;
  z-index: 5;
  margin-top: 9%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 1.2rem;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 36px 100px rgba(24, 49, 141, .34);
  transform: rotate(-.7deg);
  transition: transform .35s ease, box-shadow .35s ease;
}
.hero-reel:hover { transform: rotate(0); box-shadow: 0 42px 110px rgba(24, 49, 141, .42); }
.hero-reel-label { display: flex; align-items: center; justify-content: space-between; min-height: 48px; padding: 0 1rem; font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.hero-reel-label span { display: flex; align-items: center; gap: .55rem; }
.hero-reel-label i { display: block; width: .48rem; aspect-ratio: 1; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 .26rem rgba(54, 197, 244, .14); }
.hero-reel-status { color: rgba(255,255,255,.6); }
.hero-video-shell { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: linear-gradient(135deg, #122858, #283ea8 50%, #6750ca); }
.hero-video-shell::before,
.hero-video-shell::after { content: ""; position: absolute; border-radius: 48% 52% 42% 58%; filter: blur(4px); }
.hero-video-shell::before { width: 58%; aspect-ratio: 1; right: -6%; top: -28%; background: linear-gradient(135deg, var(--cyan), var(--blue), var(--violet)); animation: float-a 7s ease-in-out infinite; }
.hero-video-shell::after { width: 42%; aspect-ratio: 1; left: 5%; bottom: -35%; background: linear-gradient(135deg, var(--violet), var(--magenta)); opacity: .78; animation: float-b 8s ease-in-out infinite; }
.hero-coming-soon { position: relative; z-index: 2; min-height: 100%; padding: clamp(1.4rem, 3vw, 2.5rem); display: flex; flex-direction: column; justify-content: flex-end; color: var(--white); background: radial-gradient(circle at 72% 25%, rgba(255,255,255,.18), transparent 18%); }
.hero-coming-soon::before { content: ""; position: absolute; inset: 8% 5%; border: 1px solid rgba(255,255,255,.32); border-radius: 50%; transform: rotate(-13deg); }
.hero-coming-soon strong { position: relative; font-size: clamp(3.1rem, 5.7vw, 6.6rem); line-height: .82; letter-spacing: -.055em; }
.hero-coming-soon strong em { font-family: var(--display); font-weight: 400; }
.hero-year,
.hero-progress { position: relative; text-transform: uppercase; letter-spacing: .11em; font-size: .58rem; font-weight: 700; }
.hero-year { margin-bottom: auto; }
.hero-progress { margin-top: 1.4rem; color: rgba(255,255,255,.72); }
.frame-label { position: absolute; z-index: 4; font: 700 .65rem var(--sans); letter-spacing: .08em; }
.frame-a { top: 2%; left: 4%; }
.frame-b { right: 2%; top: 26%; writing-mode: vertical-rl; }

.pose-line { position: absolute; z-index: 3; background: var(--ink); border-radius: 999px; transform-origin: 50% 100%; }
.pose-head { width: 5.5%; aspect-ratio: 1; border-radius: 50%; left: 49%; top: 27%; background: transparent; border: 3px solid var(--ink); }
.pose-spine { width: 3px; height: 27%; left: 51.5%; top: 35%; transform: rotate(-11deg); }
.pose-arm-a { width: 3px; height: 24%; left: 49%; top: 40%; transform: rotate(57deg); }
.pose-arm-b { width: 3px; height: 22%; left: 54%; top: 40%; transform: rotate(-61deg); }
.pose-leg-a { width: 3px; height: 29%; left: 49%; top: 57%; transform: rotate(24deg); }
.pose-leg-b { width: 3px; height: 29%; left: 54%; top: 57%; transform: rotate(-28deg); }

.hero-foot {
  position: absolute;
  left: var(--pad);
  right: var(--pad);
  bottom: 1.6rem;
  display: flex;
  gap: 1.8rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}

@keyframes float-a { 50% { transform: translate(2%, -4%) rotate(4deg); } }
@keyframes float-b { 50% { transform: translate(-4%, -3%) rotate(-7deg); } }
@keyframes float-c { 50% { transform: translate(3%, -6%) rotate(32deg); } }

.section-dark { background: var(--navy); color: var(--white); }
.reels, .about, .contact { padding: clamp(5rem, 10vw, 10rem) var(--pad); }
.section-heading { display: grid; grid-template-columns: .42fr 1fr; align-items: start; margin-bottom: clamp(3rem, 6vw, 6rem); }
.section-heading h2,
.about h2,
.contact h2 { margin: 0; font-size: clamp(3.2rem, 7vw, 8rem); line-height: .88; letter-spacing: -.065em; }
.section-heading.compact { grid-template-columns: .35fr 1fr; }
.section-heading.compact h2 { font-size: clamp(3.4rem, 7vw, 7.2rem); }

.reel-grid { display: grid; grid-template-columns: 1.38fr .88fr; gap: 1.25rem; align-items: stretch; }
.reel-card { border: 1px solid rgba(255, 255, 255, .2); border-radius: 1.3rem; overflow: hidden; }
.new-reel { position: relative; min-height: 720px; display: flex; flex-direction: column; justify-content: space-between; background: #101932; }
.coming-soon-art { position: relative; min-height: 360px; overflow: hidden; }
.coming-soon-art::before {
  content: "";
  position: absolute;
  inset: 10% 12%;
  border-radius: 50%;
  background: linear-gradient(130deg, var(--blue), var(--cyan), var(--violet), var(--magenta));
  filter: blur(25px);
  opacity: .8;
  animation: pulse 5s ease-in-out infinite;
}
.coming-soon-art img { position: absolute; z-index: 2; width: 72%; left: 15%; top: 5%; filter: hue-rotate(195deg) saturate(.9) brightness(1.08); animation: float-b 8s ease-in-out infinite reverse; }
.orbit { position: absolute; z-index: 3; border: 1px solid rgba(255,255,255,.65); border-radius: 50%; }
.orbit-a { width: 72%; aspect-ratio: 1; left: 13%; top: -5%; transform: rotate(38deg); }
.orbit-b { width: 45%; aspect-ratio: 1.8; right: 3%; top: 28%; border-style: dashed; transform: rotate(-21deg); }
.counter { position: absolute; z-index: 5; right: 1.2rem; top: 1.2rem; font-size: .65rem; letter-spacing: .12em; }
@keyframes pulse { 50% { transform: scale(1.08) rotate(8deg); filter: blur(35px); } }
.reel-card-copy { position: relative; z-index: 4; padding: 2rem; }
.reel-card-copy h3 { margin: 1rem 0 1.2rem; font-size: clamp(2.6rem, 4vw, 4.6rem); line-height: .9; letter-spacing: -.05em; }
.reel-card-copy > p:last-child { max-width: 31rem; color: rgba(255,255,255,.68); line-height: 1.55; }
.card-label { display: flex; align-items: center; gap: .55rem; color: rgba(255,255,255,.65); }
.live-dot { width: .4rem; height: .4rem; background: var(--cyan); box-shadow: 0 0 0 .25rem rgba(54,197,244,.15); }

.old-reel { background: #0e1730; display: flex; flex-direction: column; }
.video-shell { position: relative; flex: 1; min-height: 390px; background: url("old-reel-cover.jpg") center / cover; }
.video-poster { display: grid; place-items: center; isolation: isolate; }
.video-poster::before { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(180deg, rgba(6,11,28,.08), rgba(6,11,28,.7)); transition: background .3s; }
.video-poster:hover::before { background: linear-gradient(180deg, rgba(40,88,255,.08), rgba(6,11,28,.56)); }
.poster-play { display: flex; align-items: center; gap: 1rem; border: 1px solid rgba(255,255,255,.75); border-radius: 999px; padding: .8rem .85rem .8rem 1.2rem; background: rgba(6,11,28,.6); backdrop-filter: blur(10px); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.poster-play i { width: 38px; aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center; background: var(--blue); font-style: normal; }
.reel-meta { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem 1.7rem; }
.reel-meta h3 { margin: .3rem 0 0; font-size: clamp(2.1rem, 3.5vw, 4rem); letter-spacing: -.05em; }
.small-arrow { width: 58px; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; display: grid; place-items: center; font-size: 1.4rem; transition: transform .25s, background .25s, color .25s; }
.small-arrow:hover { transform: rotate(45deg); background: white; color: black; }

.about { display: grid; grid-template-columns: .32fr 1fr; gap: clamp(2rem, 5vw, 6rem); background: linear-gradient(135deg, var(--lilac), var(--ice)); }
.about h2 { font-size: clamp(3rem, 6vw, 7rem); }
.about-sticker { margin-top: 5rem; width: min(250px, 100%); aspect-ratio: 1; border-radius: 50%; border: 1px solid var(--ink); display: grid; grid-template-columns: 1fr 1fr 1fr; place-items: center; padding: 1.3rem; transform: rotate(-8deg); }
.about-sticker span { font-weight: 700; font-size: 1.5rem; }
.about-sticker span:nth-child(2) { font-size: 2.2rem; animation: spin 8s linear infinite; }
.about-sticker small { grid-column: 1 / -1; text-align: center; font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; }
@keyframes spin { to { transform: rotate(360deg); } }
.about-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 4rem; padding-top: 1.4rem; border-top: 1px solid var(--ink); }
.about-columns p { max-width: 32rem; line-height: 1.6; }
.skill-chips { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 3rem; }
.skill-chips span { border: 1px solid var(--ink); border-radius: 999px; padding: .7rem 1rem; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; background: rgba(255,255,255,.14); }

.contact { position: relative; overflow: hidden; min-height: 92svh; display: flex; flex-direction: column; justify-content: center; }
.contact .eyebrow { margin-bottom: 2rem; }
.contact h2 { position: relative; z-index: 2; max-width: 1100px; }
.email-link { position: relative; z-index: 2; align-self: flex-start; margin-top: 4rem; padding-bottom: .6rem; border-bottom: 1px solid rgba(255,255,255,.7); font-size: clamp(1.1rem, 2vw, 2rem); transition: color .2s, border-color .2s; }
.email-link:hover { color: var(--cyan); border-color: var(--cyan); }
.contact-orbit { position: absolute; right: -10vw; top: 5%; width: min(58vw, 850px); opacity: .75; }
.contact-orbit::before { content: ""; position: absolute; inset: -5%; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; animation: spin 17s linear infinite; }
.contact-orbit img { width: 100%; animation: float-a 8s ease-in-out infinite; }
.site-footer { position: absolute; left: var(--pad); right: var(--pad); bottom: 1.7rem; padding-top: 1.3rem; border-top: 1px solid rgba(255,255,255,.28); display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; }
.site-footer p { margin: 0; }
.site-footer > a { text-align: right; }
.footer-links { display: flex; justify-content: center; gap: 1.5rem; }
.footer-links a:hover, .site-footer > a:hover { color: var(--cyan); }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.65,.3,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .site-header { min-height: 66px; }
  .menu-toggle { display: grid; position: relative; z-index: 3; width: 42px; aspect-ratio: 1; border: 1px solid currentColor; border-radius: 50%; background: transparent; place-content: center; gap: 5px; }
  .menu-toggle span:not(.sr-only) { display: block; width: 17px; height: 1px; background: currentColor; transition: transform .25s; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(3px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-3px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 0; background: linear-gradient(135deg, var(--ice), var(--lilac)); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: var(--pad); font-size: 2.2rem; transform: translateY(-105%); opacity: 0; visibility: hidden; pointer-events: none; transition: transform .45s cubic-bezier(.7,0,.2,1), opacity .25s ease, visibility 0s .45s; }
  .site-nav.open { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; transition-delay: 0s; }
  .nav-cta { font-size: 1rem; margin-top: 1.2rem; }
  .hero { min-height: 900px; }
  .hero-copy { width: 100%; }
  h1 { font-size: clamp(3.7rem, 13vw, 6.6rem); }
  .hero-intro { margin-left: 0; width: min(440px, 74%); }
  .hero-stage { width: 78vw; top: 45%; right: 2vw; }
  .round-link { right: auto; left: 0; bottom: -8rem; }
  .section-heading, .section-heading.compact { grid-template-columns: 1fr; gap: 1rem; }
  .reel-grid { grid-template-columns: 1fr; }
  .new-reel { min-height: 580px; }
  .about { grid-template-columns: 1fr; }
  .about-side { display: flex; justify-content: space-between; align-items: flex-start; }
  .about-sticker { margin-top: 0; width: 160px; }
}

@media (max-width: 620px) {
  .hero { min-height: 900px; padding-top: 7rem; }
  .hero::before { background-size: 18vw 18vw; }
  .hero-copy h1 { margin-top: 1.8rem; }
  .hero-intro { width: 100%; max-width: 360px; font-size: .96rem; }
  .hero-stage { width: 92vw; top: 53%; right: 4vw; }
  .hero-foot { gap: .8rem; justify-content: space-between; }
  .round-link { display: none; }
  .reels, .about, .contact { padding-top: 5.5rem; padding-bottom: 5.5rem; }
  .section-heading h2, .section-heading.compact h2, .about h2, .contact h2 { font-size: clamp(3.1rem, 15vw, 5.2rem); }
  .new-reel { min-height: 540px; }
  .coming-soon-art { min-height: 300px; }
  .video-shell { min-height: 260px; }
  .about-side { display: block; }
  .about-sticker { margin: 2rem 0 0 auto; }
  .about-columns { grid-template-columns: 1fr; gap: .5rem; margin-top: 2.5rem; }
  .contact { min-height: 760px; justify-content: flex-start; padding-top: 8rem; }
  .contact-orbit { width: 85vw; right: -26vw; top: 34%; opacity: .55; }
  .email-link { margin-top: 2.5rem; }
  .site-footer { grid-template-columns: 1fr 1fr; row-gap: 1rem; }
  .footer-links { order: 3; grid-column: 1 / -1; justify-content: flex-start; }
  .site-footer > a { text-align: right; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
