:root {
  --ink: #020812;
  --panel: rgba(8, 17, 29, 0.62);
  --line: rgba(167, 199, 255, 0.18);
  --text: #eef5ff;
  --muted: #9ba8bb;
  --blue: #6ea0ff;
  --cyan: #7dd8ff;
  --glow: 0 0 45px rgba(93, 142, 255, 0.32);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    sans-serif;
  background: #020812;
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.5;
}
body:before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 12%,
      rgba(56, 111, 190, 0.22),
      transparent 30%
    ),
    radial-gradient(
      circle at 82% 28%,
      rgba(50, 163, 255, 0.14),
      transparent 26%
    ),
    linear-gradient(180deg, #030a14 0%, #020812 48%, #01050b 100%);
  z-index: -4;
}
.noise {
  position: fixed;
  inset: 0;
  background-image: url(images/texture1.jpg);
  opacity: 0.035;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 20;
}
.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}
.section-pad {
  padding: 120px 0 40px;
}
.section-small {
  padding: 56px 0;
}
.glass {
  background: linear-gradient(
    135deg,
    rgba(10, 22, 37, 0.72),
    rgba(4, 11, 20, 0.48)
  );
  border: 1px solid var(--line);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 30px 90px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(22px);
}
.site-header {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 30;
  padding: 0 24px;
}
.nav-wrap {
  width: min(1120px, 100%);
  height: 72px;
  margin: auto;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}
.brand img {
  width: 95px;
  height: 50px;
  object-fit: contain;
  filter: brightness(1.2);
}
.nav-links {
  display: flex;
  gap: 38px;
}
.nav-links a,
.footer a {
  color: #dbe6f5;
  text-decoration: none;
  font-size: 14px;
  transition: 0.25s;
}
.nav-links a:hover,
.nav-links .active {
  color: #fff;
  text-shadow: 0 0 18px var(--blue);
}
.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
}
.nav-cta {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 22px;
  font-size: 14px;
}
.menu-btn {
  display: none;
  background: none;
  border: 0;
}
.menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px;
}
.hero {
  position: relative;
  min-height: 100vh;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 32px;
}
.hero-media {
  position: relative;
  height: 760px;
  min-height: 640px;
  overflow: visible;
}
.hero-media img {
  position: absolute;
  right: 0;
  top: -30px;
  width: 780px;
  height: 830px;
  max-width: none;
  object-fit: cover;
  object-position: left;
  border-radius: 34px;
  opacity: 0.78;
  filter: contrast(1.08) saturate(0.85);
}
.hero-media:after {
  content: "";
  position: absolute;
  inset: -30px -70px -30px 25%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(2, 8, 18, 0.82) 72%,
    #020812
  );
  pointer-events: none;
}
.vertical-text {
  position: absolute;
  left: 0;
  bottom: 150px;
  writing-mode: vertical-rl;
  font-size: 12px;
  letter-spacing: 0.35em;
  color: #98a5b7;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 11px;
  font-weight: 700;
  color: #b8c8e4;
}
.eyebrow:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 18px var(--blue);
}
h1 {
  font-size: clamp(48px, 6vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}
h1 span,
h2 span,
.text-gradient,
.stats b,
.experience b,
.cta span,
.center span {
  background: linear-gradient(90deg, #fff 0%, #82aaff 45%, #64d7ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy {
  margin-top: 26px;
  color: #c3cede;
  font-size: 19px;
  max-width: 500px;
}
.hero-actions {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-top: 38px;
  flex-wrap: wrap;
}
.btn {
  border-radius: 14px;
  padding: 15px 25px;
  font-weight: 700;
  font-size: 14px;
}
.primary {
  background: linear-gradient(135deg, #4f86ff, #174ec5);
  box-shadow: var(--glow);
}
.secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}
.compact {
  padding: 12px 18px;
}
.play-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}
.play-link i,
.work-card button,
.video-frame button {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-radius: 50%;
}
.play-link i {
  width: 44px;
  height: 44px;
  font-size: 12px;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.orb-one {
  right: 10%;
  top: 110px;
  width: 360px;
  height: 360px;
  background: rgba(48, 117, 255, 0.22);
}
.orb-two {
  left: -80px;
  bottom: 10%;
  width: 260px;
  height: 260px;
  background: rgba(69, 207, 255, 0.12);
}
.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 64px;
}
.profile-wrap {
  position: relative;
  width: 390px;
  height: 390px;
  margin: auto;
}
.profile-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(179, 207, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 90px rgba(86, 143, 255, 0.12);
}
.profile-wrap > img {
  position: absolute;
  inset: 38px;
  width: 314px;
  height: 314px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.45);
  filter: grayscale(1) contrast(1.1);
}
.experience {
  position: absolute;
  right: 0;
  bottom: 55px;
  border-radius: 24px;
  padding: 20px 24px;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(40, 102, 180, 0.82),
    rgba(9, 44, 83, 0.78)
  );
}
.experience b {
  font-size: 42px;
  display: block;
  line-height: 1;
}
.experience small {
  color: #d8e7ff;
}
.about-text h2,
.section-head h2,
.center h2,
.studio h2,
.films h2,
.testimonials h2,
.cta h2 {
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}
.about-text p {
  color: #c2ccda;
  margin: 22px 0;
  max-width: 520px;
}
.signature {
  width: 110px;
  height: 70px;
  object-fit: cover;
  filter: invert(1) grayscale(1) contrast(1.4);
  mix-blend-mode: screen;
  margin-right: 40px;
  vertical-align: middle;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 28px;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.work-card {
  position: relative;
  height: 330px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
  transition: 0.35s;
}
.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.work-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.86));
}
.work-card div {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
}
.work-card h3 {
  font-size: 16px;
}
.work-card p {
  font-size: 13px;
  color: #b6c2d3;
}
.work-card button {
  position: absolute;
  right: 16px;
  bottom: 18px;
  z-index: 2;
  width: 42px;
  height: 42px;
}
.work-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--glow);
}
.work-card:hover img {
  transform: scale(1.08);
}
.center {
  text-align: center;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 38px;
}
.service-card {
  padding: 36px 28px;
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(
    145deg,
    rgba(15, 28, 47, 0.55),
    rgba(3, 9, 16, 0.65)
  );
  transition: 0.35s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--glow);
}
.service-card i {
  font-style: normal;
  font-size: 42px;
  color: var(--blue);
  display: block;
  margin-bottom: 24px;
}
.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.service-card p,
.studio p,
.films p,
.cta p {
  color: #aeb9ca;
}
.studio-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  border-radius: 26px;
  overflow: hidden;
  padding: 0;
}
.studio-text {
  padding: 70px 64px;
}
.studio ul {
  list-style: none;
  margin: 26px 0;
  color: #c6d2e4;
}
.studio li {
  margin: 12px 0;
}
.studio li:before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  border: 1px solid var(--blue);
  border-radius: 50%;
  color: var(--blue);
  font-size: 12px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 34px;
  padding: 24px;
  border-radius: 18px;
}
.stats div {
  display: grid;
  gap: 4px;
  text-align: center;
}
.stats b {
  font-size: 32px;
}
.stats small {
  color: #b8c4d4;
}
.studio-img {
  position: relative;
  min-height: 540px;
  overflow: hidden;
}
.studio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.05);
}
.studio-img:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #020812 0%, transparent 40%);
}
.studio-img span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 12px 20px;
  background: rgba(255, 175, 57, 0.12);
  color: #ffbf62;
  font-weight: 900;
  letter-spacing: 0.12em;
  border: 1px solid rgba(255, 191, 98, 0.28);
}
.film-block {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
  margin: 60px 0;
}
.film-block.reverse {
  grid-template-columns: 1.1fr 1fr;
}
.video-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--glow);
  border: 1px solid var(--line);
}
.video-frame img {
  width: 100%;
  height: 315px;
  object-fit: cover;
  display: block;
}
.video-frame button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: #f00;
  border: 0;
}
.testimonial-card {
  max-width: 760px;
  margin: 36px auto 0;
  border-radius: 20px;
  padding: 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
}
.testimonial-card img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-card p {
  color: #d5deec;
}
.testimonial-card small {
  display: block;
  color: #99a8ba;
}
.testimonial-card span {
  color: #ffbd41;
  display: block;
  margin-top: 8px;
}
.cta {
  margin-top: 40px;
  margin-bottom: 44px;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 42px 78px;
  background:
    radial-gradient(
      circle at 75% 50%,
      rgba(64, 125, 255, 0.35),
      transparent 25%
    ),
    linear-gradient(135deg, rgba(11, 28, 54, 0.88), rgba(5, 12, 23, 0.75));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--glow);
}
.footer {
  margin-bottom: 32px;
  border-radius: 20px;
  padding: 42px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr 1.2fr 1.3fr;
  gap: 28px;
}
.footer img {
  width: 100px;
  filter: brightness(1.25);
}
.footer h4 {
  margin-bottom: 14px;
}
.footer a {
  display: block;
  margin: 8px 0;
  color: #aeb9ca;
}
.footer p {
  color: #aeb9ca;
  font-size: 14px;
}
.footer form {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 14px;
}
.footer input {
  flex: 1;
  background: transparent;
  border: 0;
  color: #fff;
  padding: 14px;
  min-width: 0;
}
.footer button {
  width: 48px;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.show {
  opacity: 1;
  transform: none;
}
.delay-1 {
  transition-delay: 0.08s;
}
.delay-2 {
  transition-delay: 0.16s;
}
.delay-3 {
  transition-delay: 0.24s;
}
.cursor-glow {
  position: fixed;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(84, 140, 255, 0.16),
    transparent 65%
  );
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media (max-width: 980px) {

  .container {
    width: min(100% - 32px, 720px);
  }

  .nav-wrap {
    height: 66px;
    padding: 0 18px;
  }

  .nav-cta {
    display: none;
  }

  .menu-btn {
    display: block;
    position: relative;
    z-index: 1001;
    cursor: pointer;
    background: transparent;
    border: 0;
  }

  .menu-btn span {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    margin: 6px 0;
    border-radius: 20px;
    transition: .35s ease;
  }

  .menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }

  .menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }

  .nav-links {
    position: fixed;
    top: 84px;
    right: -100%;

    width: calc(100% - 24px);
    height: calc(100vh - 96px);

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

    gap: 28px;

    padding: 50px 30px;

    border-radius: 28px;

    background: rgba(2, 8, 18, 0.96);

    backdrop-filter: blur(24px);

    border: 1px solid rgba(255,255,255,0.08);

    box-shadow:
      0 25px 80px rgba(0,0,0,.55),
      inset 0 1px 0 rgba(255,255,255,.05);

    transition: .45s ease;

    z-index: 999;

    opacity: 0;
    visibility: hidden;
  }

  .nav-links.open {
    right: 12px;
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    letter-spacing: .03em;
  }

  .hero-grid,
  .about,
  .studio-card,
  .film-block,
  .film-block.reverse {
    grid-template-columns: 1fr;
  }

  .hero-media {
    height: 460px;
    min-height: 460px;
  }

  .hero-media img {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    top: 0;
    width: 100%;
    height: 480px;
  }

  .hero-media:after {
    inset: 0;
    background: linear-gradient(180deg, transparent, #020812 92%);
  }

  .hero-content {
    text-align: left;
  }

  .work-grid,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .studio-text {
    padding: 42px 26px;
  }

  .footer {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta {
    padding: 34px;
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonial-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .section-head {
    align-items: flex-start;
  }

  .section-head .btn {
    display: none;
  }
}
@media (max-width: 620px) {
  .site-header {
    padding: 0 12px;
    top: 10px;
  }
  .section-pad {
    padding-top: 90px;
  }
  .container {
    width: calc(100% - 24px);
  }
  h1 {
    font-size: 44px;
  }
  .about-text h2,
  .section-head h2,
  .center h2,
  .studio h2,
  .films h2,
  .testimonials h2,
  .cta h2 {
    font-size: 32px;
  }
  .hero-media {
    height: 390px;
    min-height: 390px;
  }
  .hero-media img {
    height: 410px;
    border-radius: 22px;
  }
  .profile-wrap {
    width: 300px;
    height: 300px;
  }
  .profile-wrap > img {
    inset: 30px;
    width: 240px;
    height: 240px;
  }
  .experience {
    right: -2px;
    bottom: 35px;
    padding: 14px 18px;
  }
  .work-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }
  .work-card {
    height: 390px;
  }
  .studio-img {
    min-height: 340px;
  }
  .stats {
    grid-template-columns: 1fr;
  }
  .video-frame img {
    height: 230px;
  }
  .footer {
    grid-template-columns: 1fr;
    padding: 28px;
  }
  .cta {
    padding: 28px;
  }
  .hero-actions {
    gap: 18px;
  }
  .nav-wrap {
    padding: 0 16px;
  }
  .brand img {
    width: 82px;
  }
}

