/* Studio963 — production house */
:root {
  --bg: #0A0A0A;
  --bg-2: #111111;
  --fg: #F5F5F0;
  --fg-dim: rgba(245,245,240,0.55);
  --fg-faint: rgba(245,245,240,0.18);
  --accent: #FFBC00;
  --leading: 0.85;
  --rule: rgba(245,245,240,0.10);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
}

/* Grain overlay */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
body.no-grain::after { display: none; }

.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; }
.dim { color: var(--fg-dim); }
.ital { font-style: italic; font-family: 'Instrument Serif', 'Times New Roman', serif; font-weight: 400; }
.strike { text-decoration: line-through; text-decoration-thickness: 4px; opacity: 0.4; }
.hl-yellow { color: var(--accent); }
.hl-yellow-bg {
  background: var(--accent);
  color: var(--bg);
  padding: 0 0.18em;
  border-radius: 2px;
  font-style: normal;
}

.app { position: relative; }

/* ============== NAV ============== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px 22px;
  backdrop-filter: blur(14px);
  background: rgba(10,10,10,0.55);
  border-bottom: 1px solid var(--rule);
}
.nav-left { display: flex; align-items: center; gap: 10px; }
.nav-logo { height: 56px; width: auto; display: block; }
.nav-brand { font-family: 'Archivo Black', sans-serif; font-size: 14px; letter-spacing: 0.02em; }
.nav-mid {
  display: flex; gap: 4px;
  background: rgba(245,245,240,0.04);
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 4px;
  justify-self: center;
}
.nav-link {
  background: none; border: 0;
  color: var(--fg);
  font-family: inherit; font-size: 13px;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.18s, color 0.18s;
}
.nav-link:hover { background: var(--fg); color: var(--bg); }
.nav-link:hover .nav-link-dot { background: var(--bg); }
.nav-link-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--fg-faint);
  transition: background 0.18s;
}
.nav-right { display: flex; align-items: center; gap: 14px; justify-self: end; }
.nav-tc {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--fg-dim);
}
.nav-tc-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: blink 2s infinite;
}
@keyframes blink { 0%,49% { opacity: 1; } 50%,100% { opacity: 0.3; } }
.nav-cta {
  background: var(--accent);
  color: var(--bg);
  border: 0;
  padding: 11px 18px;
  border-radius: 999px;
  font-family: inherit; font-size: 13px; font-weight: 600;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform 0.18s;
  text-decoration: none;
}
.nav-cta:hover { transform: translateY(-1px); }
.side-mini-link { display: block; width: 100%; height: 100%; cursor: pointer; }
.side-mini-link iframe { display: block; width: 100%; height: 100%; }
.reel-mute {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 38px; height: 38px;
  border-radius: 999px;
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2);
  color: #F5F5F0;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: background 0.18s, transform 0.18s;
}
.reel-mute:hover { background: rgba(10,10,10,0.85); transform: scale(1.05); }
.reel-video { cursor: pointer; }

/* ============== HERO ============== */
.hero {
  min-height: 100vh;
  padding: 92px 22px 40px;
  position: relative;
  display: flex; flex-direction: column; gap: 40px;
  overflow: hidden;
  background: #0A0A0A;
  color: var(--fg);
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 20%;
  background: var(--bg);
  z-index: 1;
  pointer-events: none;
}
.hero .mono { color: rgba(255,255,255,0.7); }
.hero .mono.dim { color: rgba(255,255,255,0.45); }
.hero .live { color: var(--fg); }
.hero .live-dot { background: var(--fg); box-shadow: 0 0 8px rgba(255,255,255,0.5); }
.hero-meta { border-color: rgba(255,255,255,0.18) !important; border-top-color: rgba(255,255,255,0.18); border-bottom-color: rgba(255,255,255,0.18); }
.hero-meta .meta-cell + .meta-cell { border-left: 1px solid rgba(255,255,255,0.18); }
.hero-bottom { border-top: 0; }
.hero .hl-num { color: rgba(255,255,255,0.35); }
.hero .hl-char, .hero .hl-word { color: var(--fg); }
.hero-sub p { color: var(--fg); }
.hero .sub-marker { background: var(--fg); }
.hero .stat-num { color: var(--fg); }
.hero .stat:nth-child(2) .stat-num { color: var(--accent); }
.hero .stat-lbl { color: rgba(255,255,255,0.55); }
.hero .stat { border-left-color: rgba(255,255,255,0.18); }
.hl-row-2 .hl-word { -webkit-text-stroke: 0 !important; color: var(--fg) !important; }
.hl-row-2 .hl-char { color: var(--fg) !important; -webkit-text-stroke: 0 !important; }
.hero .hl-yellow { color: var(--fg); text-shadow: none; }
.hero .reel-cap { color: rgba(255,255,255,0.7); }
.hero .reel-cap .dim { color: rgba(255,255,255,0.45); }
.hero .reel-frame { border-color: rgba(255,255,255,0.2); }
.hero .reel-play { background: var(--accent); }
.hero .reel-play svg path { fill: var(--bg); }
.hero-tagline {
  margin: 28px auto 0;
  padding: 0 16px;
  max-width: 640px;
  text-align: center;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.45;
  color: rgba(255,255,255,0.72);
}
.hero-stats-center {
  margin: 36px auto 0 !important;
  max-width: 540px !important;
  grid-template-columns: repeat(3, auto) !important;
  justify-content: center;
  gap: 56px !important;
  text-align: left;
}
.hero-stats-center .stat {
  border-left: 1px solid rgba(255,255,255,0.18);
  padding: 4px 0 4px 14px;
}
.hero-stats-center .stat-num {
  color: var(--fg);
  font-size: clamp(28px, 2.4vw, 38px);
}
.hero-stats-center .stat:nth-child(2) .stat-num { color: var(--accent); }
.hero-stats-center .stat-lbl { color: rgba(255,255,255,0.55); }
.hero-char-bg { background: var(--accent); }
.hero-char-tag { background: var(--accent); color: var(--bg); }
.hero-char-tag .live-dot.dark { background: var(--bg); }
.hero-grid {
  position: absolute; inset: -40px;
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 80%);
  pointer-events: none;
  animation: gridPan 24s linear infinite, gridBreathe 8s ease-in-out infinite;
}
@keyframes gridPan {
  from { background-position: 0 0; }
  to { background-position: 80px 80px; }
}
@keyframes gridBreathe {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 0.5; }
}

/* Sweeping yellow scan line — disabled */
.hero::before {
  content: none;
}

/* Floating yellow accent dots */
.hero::after {
  content: "";
  position: absolute;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  top: 30%; left: 8%;
  box-shadow:
    0 0 14px var(--accent),
    18vw 22vh 0 -2px var(--accent),
    62vw 8vh 0 -1px rgba(255,188,0,0.6),
    78vw 38vh 0 -2px var(--accent),
    44vw -2vh 0 -1px rgba(255,188,0,0.5);
  pointer-events: none;
  z-index: 0;
  animation: float 7s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(8px, -12px); }
}

/* ================ 3D Object ================ */
.hero3d {
  position: absolute;
  top: 110px; right: 4vw;
  left: auto;
  transform: none;
  width: min(140px, 12vw);
  aspect-ratio: 1;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  animation: orbIn 1.4s 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
@keyframes orbIn {
  to { opacity: 1; }
}
.hero3d-stage {
  width: 100%; height: 100%;
  perspective: 1600px;
  display: grid; place-items: center;
  filter: drop-shadow(0 30px 60px rgba(255,188,0,0.18));
}
.hero3d-orb {
  position: relative;
  width: 60%; aspect-ratio: 1;
  transform-style: preserve-3d;
  transform: rotateX(calc(-12deg + var(--my, 0deg))) rotateY(var(--mx, 0deg));
  transition: transform 0.6s ease-out;
}

/* Curvy 4-point star */
.star-wrap {
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  transform-style: preserve-3d;
  animation: starSpin 14s linear infinite;
  filter: drop-shadow(0 0 30px rgba(255,188,0,0.55)) drop-shadow(0 0 80px rgba(255,188,0,0.35));
}
@keyframes starSpin {
  from { transform: rotateY(0) rotateZ(0); }
  to   { transform: rotateY(360deg) rotateZ(360deg); }
}
.star-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Orbiting rings */
.orbit {
  position: absolute;
  inset: -22%;
  border: 1px dashed rgba(245,245,240, 0.2);
  border-radius: 50%;
  transform-style: preserve-3d;
}
.orbit-1 {
  transform: rotateX(75deg) rotateZ(0);
  animation: orbit1 14s linear infinite;
  border-color: rgba(255,188,0,0.55);
  border-style: solid;
  border-width: 1.5px;
  box-shadow: 0 0 24px rgba(255,188,0,0.15);
}
.orbit-2 {
  inset: -34%;
  transform: rotateX(70deg) rotateY(35deg);
  animation: orbit2 18s linear infinite reverse;
}
.orbit-3 {
  inset: -10%;
  transform: rotateX(82deg) rotateY(-25deg);
  animation: orbit1 20s linear infinite;
  border-color: rgba(245,245,240, 0.12);
}
@keyframes orbit1 {
  from { transform: rotateX(75deg) rotateZ(0); }
  to   { transform: rotateX(75deg) rotateZ(360deg); }
}
@keyframes orbit2 {
  from { transform: rotateX(70deg) rotateY(35deg) rotateZ(0); }
  to   { transform: rotateX(70deg) rotateY(35deg) rotateZ(360deg); }
}
.orbit-dot {
  position: absolute;
  top: -7px; left: 50%;
  width: 14px; height: 14px;
  margin-left: -7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px var(--accent), 0 0 38px rgba(255,188,0,0.6);
}
.orbit-dot-w {
  background: #fff;
  box-shadow: 0 0 14px #fff, 0 0 30px rgba(255,255,255,0.6);
  width: 8px; height: 8px; top: -4px; margin-left: -4px;
}

.hero3d-label {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 14px;
  white-space: nowrap;
  color: #000;
}
.hero3d-label .dim { color: #000; }

@media (max-width: 700px) {
  .hero3d { width: 90px; top: 90px; right: 2vw; opacity: 0.7; }
}

/* ============== Hero Character ============== */
.hero-char {
  position: absolute;
  top: 50%;
  right: 3vw;
  transform: translateY(-48%);
  width: min(720px, 52vw);
  aspect-ratio: 1 / 1;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  animation: charIn 1.2s 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
@keyframes charIn {
  to { opacity: 1; }
}
.hero-char-bg {
  position: absolute;
  inset: 0;
  background: var(--accent);
  border-radius: 18px;
  box-shadow:
    0 30px 80px rgba(255,188,0,0.25),
    inset 0 0 0 1px rgba(0,0,0,0.08);
  overflow: hidden;
}
.hero-char-bg::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.18), transparent 50%),
    radial-gradient(circle at 80% 90%, rgba(0,0,0,0.18), transparent 60%);
}
.hero-char-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center bottom;
  animation: charBob 6s ease-in-out infinite;
}
@keyframes charBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.hero-char-tag {
  position: absolute;
  bottom: 14px; left: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 11px;
  background: var(--bg);
  color: var(--fg);
  border-radius: 999px;
  z-index: 2;
}

@media (max-width: 1100px) {
  .hero-char { width: 38vw; right: 2vw; }
}
@media (max-width: 700px) {
  .hero-char { position: relative; width: 100%; right: 0; top: auto; transform: none; margin: 20px 0; }
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 10px 0;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(-8px);
  animation: metaIn 0.8s 0.05s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
@keyframes metaIn {
  to { opacity: 1; transform: translateY(0); }
}
.meta-cell { opacity: 0; animation: cellIn 0.6s forwards cubic-bezier(0.2, 0.8, 0.2, 1); }
.meta-cell:nth-child(1) { animation-delay: 0.15s; }
.meta-cell:nth-child(2) { animation-delay: 0.25s; }
.meta-cell:nth-child(3) { animation-delay: 0.35s; }
@keyframes cellIn { to { opacity: 1; } }
.meta-cell { display: flex; gap: 10px; align-items: center; padding: 0 6px; }
.meta-cell + .meta-cell { border-left: 1px solid var(--rule); }
.live { display: inline-flex; align-items: center; gap: 8px; color: var(--accent); }
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: blink 1.5s infinite;
}
.live-dot.dark { background: var(--bg); box-shadow: 0 0 8px rgba(0,0,0,0.6); }

/* Headline */
.hero-headline {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 20px 0;
}
.hl-row {
  display: flex; align-items: baseline; gap: 22px;
  justify-content: center;
  position: relative;
  line-height: var(--leading);
}
.hl-row + .hl-row { margin-top: -0.04em; }
.hl-num {
  display: none;
}
@keyframes numIn { to { opacity: 1; } }
.hl-word-clip {
  display: inline-flex;
  overflow: hidden;
  padding: 0.05em 0.02em 0.12em;
  margin: -0.05em -0.02em -0.12em;
}
.hl-word {
  font-family: 'Archivo Black', 'Anton', sans-serif;
  font-size: clamp(56px, 8.5vw, 140px);
  letter-spacing: -0.04em;
  line-height: var(--leading);
  display: inline-flex;
}
.hl-char {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  animation: charRise 0.9s var(--cd, 0s) cubic-bezier(0.2, 0.85, 0.25, 1) forwards;
}
@keyframes charRise {
  to { transform: translateY(0); opacity: 1; }
}
/* Idle drift after reveal */
.hl-row-0 .hl-word { animation: drift1 9s ease-in-out infinite 1.6s; }
.hl-row-1 .hl-word { animation: drift2 11s ease-in-out infinite 1.7s; }
.hl-row-2 .hl-word { animation: drift1 10s ease-in-out infinite 1.8s; }
.hl-row-3 .hl-word { animation: drift2 12s ease-in-out infinite 1.9s; }
@keyframes drift1 {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(1.2vw); }
}
@keyframes drift2 {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-1.2vw); }
}
.hl-row-1 .hl-word { padding-left: 0; }
.hl-row-2 .hl-word { padding-left: 0; }
.hl-row-3 .hl-word {
  padding-left: 0;
}
.hl-yellow {
  color: var(--accent);
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(72px, 12vw, 200px);
  line-height: var(--leading);
  display: inline-block;
  animation: dotPulse 1.6s ease-in-out infinite;
  text-shadow: 0 0 30px var(--accent);
}
@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.18); opacity: 0.85; }
}

/* Bottom strip */
.hero-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}
  gap: 24px;
  align-items: end;
  position: relative; z-index: 2;
  border-top: 1px solid rgba(0,0,0,0.18);
  padding-top: 22px;
  opacity: 0;
  transform: translateY(20px);
  animation: bottomIn 1s 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  color: var(--fg);
}
.hero-bottom .hero-sub p { color: var(--fg); }
.hero-bottom .sub-marker { background: var(--accent); }
.hero-bottom .stat-num { color: var(--fg) !important; }
.hero-bottom .stat:nth-child(2) .stat-num { color: var(--accent) !important; }
.hero-bottom .stat-lbl { color: var(--fg-dim) !important; }
.hero-bottom .stat { border-left-color: var(--rule) !important; }
.hero-bottom .reel-cap { color: var(--fg-dim) !important; }
.hero-bottom .reel-cap .dim { color: var(--fg-faint) !important; }
.hero-bottom .reel-frame { border-color: var(--rule) !important; }
.hero-bottom .reel-play { background: var(--accent) !important; }
.hero-bottom .reel-play svg path { fill: var(--bg) !important; }
@keyframes bottomIn {
  to { opacity: 1; transform: translateY(0); }
}
.sub-marker { animation: markerPulse 2s ease-in-out infinite; transform-origin: center; }
@keyframes markerPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(1.15); opacity: 0.7; }
}
.stat-num { animation: statShimmer 3s ease-in-out infinite; }
.stat:nth-child(2) .stat-num { animation-delay: 0.3s; }
.stat:nth-child(3) .stat-num { animation-delay: 0.6s; }
@keyframes statShimmer {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}
.hero-sub { display: flex; gap: 12px; max-width: 360px; }
.sub-marker {
  width: 3px; min-height: 36px;
  background: var(--accent);
  flex-shrink: 0;
}
.hero-sub p { margin: 0; font-size: 14px; line-height: 1.45; color: var(--fg); }

.hero-reel {
  width: min(360px, 28vw);
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 8px;
  margin-left: auto;
}
.reel-frame {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--rule);
}
.reel-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.reel-hud {
  position: absolute;
  top: 10px; left: 10px; right: 10px;
  display: flex; justify-content: space-between;
  color: var(--fg);
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  padding: 6px 9px;
  border-radius: 8px;
  z-index: 2;
}
.reel-play {
  position: absolute;
  bottom: 14px; right: 14px;
  width: 48px; height: 48px;
  background: var(--accent);
  border-radius: 50%;
  display: grid; place-items: center;
  cursor: pointer;
  transition: transform 0.2s;
}
.reel-frame:hover .reel-play { transform: scale(1.08); }
.reel-cap { display: flex; justify-content: space-between; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-left: auto;
  width: 100%;
  max-width: 460px;
}
.stat {
  border-left: 1px solid var(--rule);
  padding: 6px 0 6px 12px;
}
.stat-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: 32px;
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat:nth-child(2) .stat-num { color: var(--accent); }
.stat-lbl { color: var(--fg-dim); margin-top: 6px; font-size: 10px; }

.hero-sticker {
  position: absolute;
  right: 28px; top: 110px;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  display: grid; place-items: center;
  z-index: 2;
  animation: spin 12s linear infinite;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.sticker-inner { display: flex; gap: 6px; transform: rotate(-15deg); }
@keyframes spin { to { transform: rotate(360deg); } }
.hero-sticker { animation: none; }
.hero-sticker::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(0,0,0,0.1) 90deg, transparent 180deg);
}

/* Replace sticker with rotating text ring */
.hero-sticker {
  background: var(--accent);
  font-size: 10px;
  text-transform: uppercase;
  animation: stickerSpin 8s linear infinite, stickerWobble 4s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(255,188,0,0.5);
}
@keyframes stickerSpin {
  to { transform: rotate(360deg); }
}
@keyframes stickerWobble {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,188,0,0.55); }
  50% { box-shadow: 0 0 0 18px rgba(255,188,0,0); }
}

/* ============== MARQUEE ============== */
.marquee {
  background: var(--accent);
  color: var(--bg);
  border-top: 1px solid var(--bg);
  border-bottom: 1px solid var(--bg);
  overflow: hidden;
  padding: 14px 0;
}
.marquee-track {
  display: flex; gap: 36px;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  width: max-content;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}
.marquee-item {
  font-family: 'Archivo Black', sans-serif;
  font-size: 38px;
  letter-spacing: -0.02em;
  display: inline-flex; align-items: center; gap: 36px;
}
.marquee-star { font-size: 22px; opacity: 0.7; }

/* ============== TAGS ============== */
.tag-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 12px;
  border: 1px solid var(--fg-faint);
  border-radius: 999px;
  color: var(--fg);
  background: rgba(245,245,240,0.03);
}
.tag-pill.dark {
  border-color: rgba(0,0,0,0.18);
  color: var(--bg);
  background: rgba(0,0,0,0.04);
}
.tag-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}
.tag-dot.dark { background: var(--bg); box-shadow: none; }

/* ============== ABOUT ============== */
.about {
  padding: 100px 22px 80px;
  position: relative;
  border-bottom: 1px solid var(--rule);
}
.about-tag { margin-bottom: 30px; }
.about-h {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  margin: 0 0 60px;
  max-width: 1300px;
  text-wrap: pretty;
}
.about-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.about-col {
  padding: 28px 24px 28px 0;
  border-right: 1px solid var(--rule);
}
.about-col:last-child { border-right: 0; padding-right: 0; }
.about-col + .about-col { padding-left: 24px; }
.col-num { color: var(--accent); margin-bottom: 18px; }
.col-h {
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.about-col p { margin: 0; font-size: 14px; line-height: 1.5; color: var(--fg-dim); max-width: 320px; }

/* ============== SERVICES ============== */
.services {
  padding: 100px 22px 80px;
  border-bottom: 1px solid var(--rule);
}
.services-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: end;
  gap: 30px;
  margin-bottom: 60px;
}
.services-h {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(48px, 7vw, 110px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin: 18px 0 0;
}
.services-sub { color: var(--fg-dim); font-size: 14px; max-width: 280px; margin-left: auto; line-height: 1.5; }
.services-list {
  display: flex; flex-direction: column;
}
.svc-row {
  display: grid;
  grid-template-columns: 90px 1.4fr 2fr 1fr 60px;
  align-items: center;
  gap: 24px;
  padding: 28px 14px;
  border-top: 1px solid var(--rule);
  position: relative;
  cursor: pointer;
  transition: padding 0.3s, background 0.3s;
}
.svc-row:last-child { border-bottom: 1px solid var(--rule); }
.svc-row.is-hover {
  background: var(--accent);
  color: var(--bg);
  padding-left: 28px;
}
.svc-code { color: var(--fg-dim); }
.svc-row.is-hover .svc-code { color: rgba(0,0,0,0.6); }
.svc-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(24px, 2.4vw, 42px);
  letter-spacing: -0.02em;
  line-height: 1;
}
.svc-desc { font-size: 14px; line-height: 1.5; color: var(--fg-dim); max-width: 460px; }
.svc-row.is-hover .svc-desc { color: rgba(0,0,0,0.75); }
.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.svc-tag {
  padding: 5px 9px;
  border: 1px solid var(--fg-faint);
  border-radius: 4px;
}
.svc-row.is-hover .svc-tag { border-color: rgba(0,0,0,0.4); }
.svc-arrow {
  display: flex; justify-content: flex-end;
  color: var(--fg-dim);
  transition: transform 0.3s, color 0.3s;
}
.svc-row.is-hover .svc-arrow { color: var(--bg); transform: translateX(8px) rotate(0deg); }
.svc-bar {
  position: absolute;
  left: 0; bottom: -1px;
  height: 1px; width: 0;
  background: var(--accent);
  transition: width 0.4s ease;
}
.svc-row.is-hover .svc-bar { width: 100%; background: var(--bg); }

/* ============== WORK ============== */
.work {
  background: var(--fg);
  color: var(--bg);
  padding: 100px 22px 80px;
}
.work-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 30px;
  margin-bottom: 50px;
}
.work-h {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(64px, 10vw, 160px);
  line-height: 0.86;
  letter-spacing: -0.04em;
  margin: 18px 0 0;
  grid-column: 1;
}
.work-h .ital { font-style: italic; }
.work-filter {
  display: flex; gap: 6px;
  align-self: end;
  grid-column: 2;
}
.filter-pill {
  padding: 8px 14px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.filter-pill:hover, .filter-pill.active {
  background: var(--bg);
  color: var(--fg);
  border-color: var(--bg);
}

.reel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.reel-card {
  display: flex; flex-direction: column;
  cursor: pointer;
  transition: transform 0.3s;
}
.reel-card:hover { transform: translateY(-4px); }
.reel-card-frame {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: 14px;
  overflow: hidden;
  background: #0A0A0A;
  margin-bottom: 12px;
}
.reel-card-hud {
  position: absolute;
  top: 12px; left: 12px; right: 12px;
  display: flex; justify-content: space-between;
  color: var(--fg);
  z-index: 2;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  padding: 7px 10px;
  border-radius: 8px;
}
.reel-card-play {
  position: absolute;
  bottom: 14px; right: 14px;
  width: 44px; height: 44px;
  background: var(--accent);
  border-radius: 50%;
  display: grid; place-items: center;
  z-index: 2;
  transition: transform 0.3s;
}
.reel-card:hover .reel-card-play { transform: scale(1.12); }
.reel-card-meta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: baseline;
}
.reel-card-num { color: rgba(0,0,0,0.45); }
.reel-card-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.reel-card-tag.dim { color: rgba(0,0,0,0.5); }

.work-foot {
  display: flex; align-items: center; gap: 18px;
  margin-top: 60px;
  padding-top: 22px;
  border-top: 1px solid rgba(0,0,0,0.15);
}
.work-foot .dim { color: rgba(0,0,0,0.5); }
.work-foot .line { flex: 1; height: 1px; background: rgba(0,0,0,0.15); }
.link-btn {
  background: var(--bg);
  color: var(--fg);
  border: 0;
  padding: 10px 16px;
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  cursor: pointer;
}

/* ============== Reel placeholder ============== */
.reel-ph { position: relative; width: 100%; height: 100%; overflow: hidden; }
.reel-ph-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 16px;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}
.reel-ph-tag {
  color: var(--accent);
  margin-bottom: 6px;
}
.reel-ph-label {
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  color: #F5F5F0;
  letter-spacing: -0.02em;
  line-height: 1;
}
.reel-ph-corner {
  position: absolute;
  top: 12px; right: 12px;
  color: rgba(245,245,240,0.6);
  z-index: 1;
}

/* ============== Square placeholder ============== */
.sq-ph { position: relative; width: 100%; height: 100%; overflow: hidden; border-radius: 12px; }
.sq-ph-label {
  position: absolute;
  bottom: 12px; left: 12px;
  color: rgba(245,245,240,0.65);
  z-index: 1;
}

/* ============== PROCESS ============== */
.process {
  padding: 100px 22px 80px;
  border-bottom: 1px solid var(--rule);
}
.process-head { margin-bottom: 60px; }
.process-h {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(40px, 6vw, 90px);
  line-height: 0.94;
  letter-spacing: -0.03em;
  margin: 18px 0 0;
  max-width: 1100px;
}
.process-timeline {
  display: flex; flex-direction: column;
}
.proc-step {
  display: grid;
  grid-template-columns: 60px 1fr 280px;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.proc-step:last-child { border-bottom: 1px solid var(--rule); }
.proc-rail {
  display: flex; flex-direction: column; align-items: center;
  height: 100%;
}
.proc-dot {
  width: 18px; height: 18px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
  margin-top: 4px;
}
.proc-dot span {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.proc-line { flex: 1; width: 1px; background: var(--rule); margin-top: 6px; }
.proc-num { color: var(--fg-dim); margin-bottom: 12px; }
.proc-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(28px, 3.4vw, 48px);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 16px;
}
.proc-desc { font-size: 15px; line-height: 1.55; color: var(--fg-dim); max-width: 540px; margin: 0; }
.proc-frame { aspect-ratio: 1; }

/* ============== PRICING ============== */
.pricing {
  background: var(--accent);
  color: var(--bg);
  padding: 100px 22px;
}
.price-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1500px;
  margin: 0 auto;
}
.price-h {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(48px, 7vw, 110px);
  letter-spacing: -0.03em;
  line-height: 0.9;
  margin: 18px 0 16px;
}
.price-sub { font-size: 16px; line-height: 1.5; max-width: 420px; margin: 0 0 24px; opacity: 0.85; }
.price-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.price-tags span {
  padding: 6px 10px;
  border: 1px solid var(--bg);
  border-radius: 4px;
}
.price-card {
  background: var(--bg);
  color: var(--fg);
  border-radius: 18px;
  padding: 32px;
  display: flex; flex-direction: column;
  gap: 22px;
}
.price-card-top {
  display: flex; justify-content: space-between;
  color: var(--fg-dim);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}
.price-card-top .live { color: var(--accent); }
.price-amount {
  display: flex; align-items: baseline; gap: 12px;
}
.price-from { color: var(--fg-dim); }
.price-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: 72px;
  letter-spacing: -0.04em;
  line-height: 1;
}
.price-per { color: var(--fg-dim); }
.price-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.price-list li {
  font-size: 14px;
  padding-left: 22px;
  position: relative;
  color: var(--fg);
}
.price-list li::before {
  content: "→";
  position: absolute; left: 0;
  color: var(--accent);
}
.price-cta {
  background: var(--accent);
  color: var(--bg);
  border: 0;
  padding: 16px 22px;
  border-radius: 999px;
  font-family: inherit; font-weight: 600; font-size: 15px;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  transition: transform 0.2s;
}
.price-cta:hover { transform: translateY(-2px); }
.cta-arr {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
}

/* ============== CONTACT ============== */
.contact { padding: 100px 22px 60px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 60px;
}
.contact-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent);
  margin-bottom: 28px;
}
.contact-h {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(64px, 10vw, 160px);
  line-height: 0.86;
  letter-spacing: -0.04em;
  margin: 0 0 20px;
}
.contact-sub { color: var(--fg-dim); font-size: 16px; max-width: 480px; margin: 0 0 36px; }
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 720px;
}
.contact-field {
  display: flex; flex-direction: column; gap: 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rule);
}
.contact-field.full { grid-column: 1 / -1; }
.field-label { color: var(--fg-dim); }
.field-input {
  background: none; border: 0;
  color: var(--fg);
  font-family: inherit; font-size: 18px;
  padding: 4px 0;
  outline: none;
}
.field-input::placeholder { color: var(--fg-faint); }
.contact-cta {
  grid-column: 1 / -1;
  background: var(--accent);
  color: var(--bg);
  border: 0;
  padding: 18px 26px;
  border-radius: 999px;
  font-family: inherit; font-weight: 600; font-size: 16px;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 8px;
  transition: transform 0.2s;
}
.contact-cta:hover { transform: translateY(-2px); }

.contact-side {
  display: flex; flex-direction: column; gap: 24px;
  border-left: 1px solid var(--rule);
  padding-left: 32px;
}
.side-block { display: flex; flex-direction: column; gap: 4px; }
.side-label { color: var(--fg-dim); }
.side-val { font-size: 17px; line-height: 1.4; }
.side-mini { aspect-ratio: 1.4; margin-top: 8px; }

/* ============== FOOTER ============== */
.foot {
  background: var(--bg);
  border-top: 1px solid var(--rule);
  padding: 60px 22px 22px;
  position: relative;
  overflow: hidden;
}
.hero-meta { display: flex !important; position: relative; }
.hero-meta .meta-cell-status { margin-left: auto; }
.hero-meta .meta-cell-center { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); padding-left: 16px; }
.foot-mega {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(60px, 14vw, 180px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  display: flex; gap: 0.04em;
  margin-bottom: 30px;
  user-select: none;
}
.foot-y {
  -webkit-text-stroke: 2px var(--accent);
  color: transparent;
}
.foot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 30px;
  border-top: 1px solid var(--rule);
  font-size: 14px;
  line-height: 1.5;
}
.foot-lbl { color: var(--fg-dim); margin-bottom: 10px; }
.foot-links { display: flex; flex-direction: column; gap: 4px; }
.foot-links a { color: var(--fg); text-decoration: none; cursor: pointer; }
.foot-links a:hover { color: var(--accent); }
.foot-strip {
  display: flex; justify-content: space-between;
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  color: var(--fg-dim);
}

/* ============== Responsive ============== */
@media (max-width: 1100px) {
  .nav-mid { display: none; }
  .hero-bottom { grid-template-columns: 1fr 1fr; }
  .hero-stats { grid-column: 1 / -1; max-width: 100%; }
  .services-head { grid-template-columns: 1fr; }
  .services-sub { margin-left: 0; }
  .svc-row { grid-template-columns: 70px 1.2fr 1.5fr 60px; }
  .svc-row .svc-tags { display: none; }
  .reel-grid { grid-template-columns: repeat(2, 1fr); }
  .price-row { grid-template-columns: 1fr; gap: 30px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-side { border-left: 0; padding-left: 0; border-top: 1px solid var(--rule); padding-top: 24px; }
  .proc-step { grid-template-columns: 40px 1fr; }
  .proc-frame { display: none; }
  .foot-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .hero { padding: 92px 16px 30px; }
  .hero-meta { display: grid !important; grid-template-columns: 1fr; position: static; }
  .hero-meta .meta-cell-center { position: static; transform: none; padding-left: 6px; margin: 0; }
  .hero-meta .meta-cell-status { margin-left: 0; }
  .meta-cell + .meta-cell { border-left: 0; border-top: 1px solid var(--rule); padding-top: 6px; margin-top: 6px; }
  .hero-bottom { grid-template-columns: 1fr; }
  .hero-reel { width: 100%; max-width: 220px; margin: 0 auto; }
  .hero-stats { grid-template-columns: 1fr; }
  .reel-grid { grid-template-columns: 1fr; }
  .nav-tc { display: none; }
  .marquee-item { font-size: 28px; }
  .hero-sticker { display: none; }
  .svc-row { grid-template-columns: 60px 1fr 32px; grid-template-rows: auto auto; column-gap: 14px; row-gap: 10px; padding: 22px 0; }
  .svc-row .svc-code { grid-column: 1; grid-row: 1; align-self: center; }
  .svc-row .svc-title { grid-column: 2; grid-row: 1; }
  .svc-row .svc-arrow { grid-column: 3; grid-row: 1; align-self: center; }
  .svc-row .svc-desc { grid-column: 2 / -1; grid-row: 2; max-width: 100%; }
  .svc-title { font-size: 22px; }
  .nav { background: rgba(10,10,10,0.92); grid-template-columns: auto 1fr; }
  .nav-right { justify-content: flex-end; }
}

/* Centered work grid + video card */
.reel-card-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.reel-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .reel-grid-3 { grid-template-columns: 1fr !important; }
}
