:root {
  --bg: #090b11;
  --text: #f6f4ef;
  --muted: #bcc3d8;
  --hot: #c8ff12;
  --sun: #7dff3b;
  --cyan: #3fd0ff;
  --line: rgba(246, 244, 239, 0.16);
  --card-bg: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015));
  --card-border: rgba(246, 244, 239, 0.19);
  --card-shadow: 0 20px 42px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: "Space Grotesk", sans-serif;
  background: linear-gradient(180deg, #07080d, #0b1120 55%, #090b11 100%);
  color: var(--text);
  overflow-x: hidden;
}

body.intro-lock {
  overflow: hidden;
}

.intro-splash {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(200, 255, 18, 0.16), transparent 40%),
    radial-gradient(circle at 80% 75%, rgba(63, 208, 255, 0.12), transparent 42%),
    linear-gradient(180deg, #05070d, #090d17 60%, #06080d);
  transition: opacity 650ms ease, visibility 650ms ease;
}

.intro-splash.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-content {
  text-align: center;
  width: min(620px, 86vw);
}

.intro-kicker {
  margin: 0;
  color: var(--sun);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  animation: introRise 900ms ease both;
}

.intro-title {
  margin: 0.4rem 0 0.6rem;
  display: grid;
  line-height: 0.9;
}

.intro-title .outline,
.intro-title .solid {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.1rem, 7.3vw, 4.6rem);
  letter-spacing: 0.06em;
  grid-area: 1 / 1;
  text-transform: uppercase;
}

.intro-title .outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(246, 244, 239, 0.55);
  opacity: 0.75;
  transform: translate(2px, 2px);
  animation: introRise 900ms 80ms ease both;
}

.intro-title .solid {
  background: linear-gradient(90deg, var(--hot), #e5ff7d 45%, var(--sun));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 24px rgba(200, 255, 18, 0.32);
  animation: introRise 900ms 140ms ease both;
}

.intro-sub {
  margin: 0 0 0.95rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.72rem;
  animation: introRise 900ms 220ms ease both;
}

.intro-bar {
  height: 2px;
  width: 100%;
  background: rgba(246, 244, 239, 0.2);
  overflow: hidden;
  border-radius: 999px;
}

.intro-bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--hot), var(--sun));
  box-shadow: 0 0 14px rgba(200, 255, 18, 0.65);
  animation: introLoad 3.2s ease forwards;
}

.preload .site-header,
.preload .hero-main,
.preload .hero-panel {
  opacity: 0;
  transform: translateY(18px);
}

.site-header,
.hero-main,
.hero-panel {
  transition: opacity 520ms ease, transform 520ms ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(rgba(7, 8, 13, 0.8), rgba(9, 11, 17, 0.86)),
    url("./assets/Hyper_realistic_professional_creative_studio_works_delpmaspu-2.png") center / contain no-repeat;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 40;
  background: rgba(255, 255, 255, 0.08);
}

.scroll-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--hot), var(--sun));
  box-shadow: 0 0 14px rgba(200, 255, 18, 0.7);
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.07;
  z-index: -1;
  background-image: radial-gradient(#fff 0.4px, transparent 0.4px);
  background-size: 4px 4px;
}

.orb {
  position: fixed;
  width: 36vw;
  aspect-ratio: 1;
  filter: blur(38px);
  pointer-events: none;
  z-index: -1;
  border-radius: 50%;
  opacity: 0.2;
}

.orb-one {
  left: -10vw;
  top: 8vh;
  background: radial-gradient(circle, rgba(200, 255, 18, 0.92), transparent 64%);
}

.orb-two {
  right: -10vw;
  top: 55vh;
  background: radial-gradient(circle, rgba(63, 208, 255, 0.95), transparent 64%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 5vw;
  backdrop-filter: blur(10px);
  background: rgba(7, 9, 15, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.site-header.scrolled {
  background: rgba(7, 9, 15, 0.84);
  border-bottom-color: rgba(200, 255, 18, 0.32);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}

.brand {
  color: var(--text);
  text-decoration: none;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.08em;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: transparent;
  padding: 0.5rem 0.9rem;
  font: inherit;
}

.nav {
  display: flex;
  gap: 1.3rem;
}

.nav a {
  position: relative;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 220ms ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
  background: linear-gradient(90deg, var(--hot), var(--sun));
}

.nav a:hover {
  color: var(--hot);
}

.nav a:hover::after {
  transform: scaleX(1);
}

main {
  width: min(1220px, 90vw);
  margin: 0 auto;
  padding-bottom: 7rem;
}

section {
  padding: clamp(3.6rem, 8vw, 7.6rem) 0;
}

section + section {
  border-top: 1px solid rgba(246, 244, 239, 0.08);
}

.eyebrow {
  color: var(--cyan);
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  margin-bottom: 0.7rem;
}

.micro-line {
  margin: 0 0 0.7rem;
  display: inline-flex;
  flex-direction: column;
  gap: 0.2rem;
}

.micro-line span:first-child {
  color: var(--cyan);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.micro-line span:last-child {
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 1rem;
  align-items: end;
  min-height: 82vh;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 11.5vw, 8.4rem);
  line-height: 0.88;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.02em;
}

.accent {
  color: var(--hot);
}

.hero-copy {
  max-width: 64ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.hero-main {
  position: relative;
  isolation: isolate;
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-panel,
.reel-card,
.mosaic .tile,
.service-list article,
.timeline > div,
.contact {
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  border-radius: 1.15rem;
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(6px);
}

.hero-panel {
  padding: 1.25rem;
  background:
    radial-gradient(circle at top right, rgba(200, 255, 18, 0.26), transparent 50%),
    var(--card-bg);
  position: relative;
  overflow: hidden;
}

.hero-panel p,
.hero-panel li {
  color: var(--muted);
}

.hero-panel h2 {
  margin: 0.2rem 0 0.6rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: 0.03em;
  line-height: 1.05;
}

.hero-panel ul {
  margin: 0.6rem 0;
  padding-left: 1.1rem;
}

.panel-meta {
  margin-top: 0.9rem;
  color: var(--sun) !important;
}

.panel-kicker {
  color: var(--sun) !important;
}

.reel-card .reel-label {
  color: var(--text) !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  line-height: 1;
  border: none;
  appearance: none;
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.06);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.btn-primary {
  color: #0a0b10;
  background: linear-gradient(90deg, var(--hot), var(--sun));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45), 0 10px 20px rgba(72, 109, 18, 0.32);
}

.btn-ghost {
  color: var(--text);
  border: 1px solid var(--line);
}

.ticker {
  padding: 1rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(246, 244, 239, 0.12);
  border-bottom: 1px solid rgba(246, 244, 239, 0.12);
  margin-bottom: 1.2rem;
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 2rem;
  transform: translateX(0);
  will-change: transform;
}

.ticker-track span {
  white-space: nowrap;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
}

.reel {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.1fr 1fr;
}

.reel-card {
  padding: clamp(1.3rem, 2vw, 2rem);
  min-height: 350px;
  position: relative;
  overflow: hidden;
}

.feature-video {
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 0;
  border: 0;
  object-fit: contain;
  background: #07080d;
  transition: opacity 280ms ease, transform 260ms ease, box-shadow 260ms ease, filter 260ms ease;
}

.feature-video:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 16px 24px rgba(0, 0, 0, 0.35);
  filter: saturate(1.12);
}

.feature-video-shell {
  position: relative;
  margin: 0.8rem 0 0.9rem;
  height: clamp(220px, 40vw, 320px);
  border-radius: 0.8rem;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #07080d;
}

.feature-video-shell.switching .feature-video {
  opacity: 0.25;
}

.video-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  border: 1px solid rgba(200, 255, 18, 0.6);
  background: rgba(200, 255, 18, 0.24);
  color: #dfff6b;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.video-nav.prev {
  left: 0.6rem;
}

.video-nav.next {
  right: 0.6rem;
}

.video-nav:hover {
  background: rgba(200, 255, 18, 0.32);
  border-color: rgba(200, 255, 18, 0.9);
  transform: translateY(-50%) scale(1.06);
}

.reel-card h2,
.services h2,
.process h2,
.contact h2 {
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.03em;
  font-size: clamp(2rem, 5vw, 3.25rem);
}

.reel-card h2 {
  color: var(--hot);
}

.services h2 {
  color: var(--hot);
}

.process h2 {
  color: var(--hot);
}

.contact h2 {
  color: var(--hot);
}

.reel-card p,
.service-list p,
.timeline p,
.contact p {
  color: var(--muted);
}

.proof h2 {
  margin: 0.2rem 0 1rem;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.03em;
  font-size: clamp(2rem, 5vw, 3.1rem);
  color: var(--hot);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.proof-stat,
.proof-quote {
  border: 1px solid var(--card-border);
  border-radius: 1rem;
  background: var(--card-bg);
  box-shadow: var(--card-shadow);
  padding: 1rem;
}

.proof-stat strong {
  display: block;
  color: var(--sun);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: 0.04em;
}

.proof-stat p,
.proof-quote p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.proof-quote span {
  display: block;
  margin-top: 0.55rem;
  color: var(--text);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.proof-quote.switching {
  opacity: 0.35;
  transform: translateY(4px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.tile {
  min-height: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: stretch;
  overflow: hidden;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
  position: relative;
}

.tile::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 35%);
  opacity: 0.35;
}

.tile h3 {
  margin: 0;
}

.mosaic-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: 100%;
  border-radius: 0.7rem;
  border: 1px solid var(--line);
  object-fit: cover;
  object-position: center;
  background: #07080d;
  transition: transform 240ms ease, filter 240ms ease;
}

.tile:hover {
  transform: translateY(-5px);
  border-color: rgba(200, 255, 18, 0.36);
  box-shadow: 0 16px 24px rgba(0, 0, 0, 0.32);
}

.tile:hover .mosaic-video {
  transform: scale(1.02);
  filter: saturate(1.15);
}

.tile-a {
  background:
    radial-gradient(circle at 80% 20%, rgba(200, 255, 18, 0.36), transparent 40%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01));
}

.tile-b {
  background:
    radial-gradient(circle at 20% 20%, rgba(63, 208, 255, 0.4), transparent 46%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01));
}

.tile-c {
  background:
    radial-gradient(circle at 70% 70%, rgba(125, 255, 59, 0.34), transparent 48%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01));
}

.tile-d {
  background:
    radial-gradient(circle at 18% 66%, rgba(200, 255, 18, 0.3), transparent 44%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01));
}

.tile-e {
  background:
    radial-gradient(circle at 78% 26%, rgba(63, 208, 255, 0.34), transparent 44%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01));
}

.tile-f {
  background:
    radial-gradient(circle at 24% 76%, rgba(125, 255, 59, 0.32), transparent 44%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01));
}

.tile-g {
  background:
    radial-gradient(circle at 52% 20%, rgba(200, 255, 18, 0.28), transparent 46%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01));
}

.service-list {
  display: grid;
  gap: 0.9rem;
}

.service-list article {
  padding: 1.1rem;
  transition: transform 220ms ease, border-color 220ms ease;
}

.service-list article:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 255, 18, 0.38);
}

.services-note {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.service-list span {
  color: var(--hot);
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.07em;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.timeline > div {
  padding: 1rem;
  transition: transform 220ms ease, border-color 220ms ease;
}

.timeline > div:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 255, 18, 0.34);
}

.timeline strong {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
}

.contact {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: clamp(1.35rem, 2.2vw, 2.1rem);
  border: 1px solid var(--card-border);
  border-radius: 1.15rem;
  background:
    radial-gradient(circle at top right, rgba(200, 255, 18, 0.16), transparent 52%),
    var(--card-bg);
  box-shadow: var(--card-shadow);
}

.contact .eyebrow {
  margin-bottom: 0.4rem;
  color: var(--sun);
}

.contact h2 {
  margin-bottom: 0.45rem;
}

.contact > p {
  max-width: 62ch;
}

.contact-form {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.34rem;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border-radius: 0.58rem;
  border: 1px solid rgba(246, 244, 239, 0.16);
  background: rgba(5, 8, 14, 0.55);
  color: var(--text);
  font: inherit;
  padding: 0.68rem 0.74rem;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(200, 255, 18, 0.62);
  box-shadow: 0 0 0 2px rgba(200, 255, 18, 0.1);
}

.contact-message {
  grid-column: 1 / -1;
}

.contact-form button {
  justify-self: start;
  margin-top: 0.1rem;
  white-space: nowrap;
}

.contact-direct {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-direct a {
  color: var(--text);
}

.mobile-cta {
  display: none;
  position: fixed;
  left: 50%;
  bottom: 0.9rem;
  transform: translateX(-50%);
  z-index: 45;
  text-decoration: none;
  padding: 0.72rem 1.15rem;
  border-radius: 999px;
  color: #0a0b10;
  font-weight: 700;
  background: linear-gradient(90deg, var(--hot), var(--sun));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45), 0 12px 24px rgba(72, 109, 18, 0.35);
}

.site-footer {
  margin-top: 2.1rem;
  padding: 1.2rem 0 0.6rem;
  border-top: 1px solid rgba(246, 244, 239, 0.14);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.9rem;
}

.footer-main p {
  margin: 0;
  color: var(--muted);
}

.footer-main p:first-child {
  color: var(--text);
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--hot);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatSlow {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

@keyframes introRise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes introLoad {
  from { width: 0%; }
  to { width: 100%; }
}


@media (max-width: 980px) {
  .hero,
  .reel,
  .timeline,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .menu-btn {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    right: 6vw;
    top: 64px;
    min-width: 170px;
    padding: 0.75rem;
    display: none;
    flex-direction: column;
    border-radius: 0.8rem;
    background: #0f1422;
    border: 1px solid var(--line);
  }

  .nav.open {
    display: flex;
  }

  .mosaic {
    grid-template-columns: 1fr;
  }

  .mobile-cta {
    display: inline-flex;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    padding-bottom: 4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
