:root {
  --black: #0d232c;
  --white: #f0ece4;
  --red: #fe8418;
  --gray: #133441;
  --gray-mid: #275669;
  --gray-light: #518093;
  --accent: #fe8418;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--black);
  color: var(--white);
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}
body {
  visibility: hidden;
}
body.ready {
  visibility: visible;
}
.cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition:
    width 0.2s,
    height 0.2s;
}
.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(170, 84, 7, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    width 0.3s,
    height 0.3s,
    border-color 0.3s;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.35;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  background: linear-gradient(
    to bottom,
    rgba(8, 8, 8, 0.98) 0%,
    transparent 100%
  );
  transition:
    padding 0.3s,
    background 0.3s;
}
nav.scrolled {
  padding: 12px 48px;
  background: rgba(8, 8, 8, 0.97);
  border-bottom: 1px solid #1e1e1e;
}
.logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.12em;
  color: var(--white);
  text-decoration: none;
  line-height: 1.1;
}
.logo .red {
  color: var(--red);
}
.logo .sub {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  color: var(--red);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
  cursor: none;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.nav-links a:hover {
  color: var(--white);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}
.lang-sw {
  display: flex;
  border: 1px solid var(--gray-mid);
  overflow: hidden;
}
.lang-btn {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 13px;
  background: transparent;
  border: none;
  color: var(--gray-light);
  cursor: none;
  transition:
    background 0.2s,
    color 0.2s;
}
.lang-btn.on {
  background: var(--red);
  color: var(--white);
}
.lang-btn:not(.on):hover {
  color: var(--white);
  background: var(--gray);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* MOBILE MENU */
.mob-menu {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 8, 0.98);
  z-index: 450;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mob-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mob-menu a {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.6rem;
  letter-spacing: 0.1em;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
  cursor: none;
}
.mob-menu a:hover {
  color: var(--red);
}

/* HERO */
#home {
  position: relative;
  height: 100vh;
  min-height: 660px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 0 48px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-sils {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.sil {
  position: absolute;
  bottom: 0;
  opacity: 0.18;
  filter: blur(0.5px);
}
.s1 {
  left: 5%;
  animation: sw1 4s ease-in-out infinite;
}
.s2 {
  left: 20%;
  animation: sw2 3.5s ease-in-out infinite 0.5s;
}
.s3 {
  right: 8%;
  animation: sw1 4.5s ease-in-out infinite 1s;
}
.s4 {
  right: 22%;
  animation: sw2 3.8s ease-in-out infinite 0.3s;
}
.s5 {
  left: 48%;
  transform: translateX(-50%);
  opacity: 0.28;
  animation: sw3 3s ease-in-out infinite;
}
@keyframes sw1 {
  0%,
  100% {
    transform: rotate(-2deg);
  }
  50% {
    transform: rotate(2deg);
  }
}
@keyframes sw2 {
  0%,
  100% {
    transform: rotate(1.5deg) translateY(0);
  }
  50% {
    transform: rotate(-1.5deg) translateY(-8px);
  }
}
@keyframes sw3 {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
  }
  50% {
    transform: translateX(-50%) scale(1.02) translateY(-5px);
  }
}
.hero-grad {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 50% at 50% 100%,
      rgba(232, 0, 28, 0.12) 0%,
      transparent 70%
    ),
    linear-gradient(to top, var(--black) 0%, transparent 60%),
    linear-gradient(to bottom, var(--black) 0%, transparent 30%);
}
.hero-scan {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.06) 2px,
    rgba(0, 0, 0, 0.06) 4px
  );
  pointer-events: none;
}
.hero-beams {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.beam {
  position: absolute;
  bottom: -10%;
  width: 2px;
  height: 80%;
  background: linear-gradient(to top, var(--red), transparent);
  opacity: 0;
  animation: bflash 6s ease-in-out infinite;
  transform-origin: bottom center;
}
.beam:nth-child(1) {
  left: 25%;
  animation-delay: 0s;
}
.beam:nth-child(2) {
  left: 50%;
  animation-delay: 2s;
}
.beam:nth-child(3) {
  left: 75%;
  animation-delay: 4s;
}
@keyframes bflash {
  0%,
  100% {
    opacity: 0;
    transform: rotate(-8deg) scaleY(0.3);
  }
  30% {
    opacity: 0.25;
    transform: rotate(-4deg) scaleY(1);
  }
  60% {
    opacity: 0.1;
    transform: rotate(2deg) scaleY(0.8);
  }
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
}
.hero-eyebrow {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
  animation: fup 1s ease 0.3s both;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.05) brightness(0.85);
  transform: scale(1.05);
  opacity: 0.5;
}
.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4rem, 12vw, 12rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
  color: var(--white);
  animation: fup 1s ease 0.5s both;
}
.hero-title .lr {
  color: var(--red);
  display: block;
}
.hero-title .lo {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}
.hero-sub {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(0.9rem, 1.8vw, 1.3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  margin-top: 22px;
  max-width: 480px;
  line-height: 1.58;
  animation: fup 1s ease 0.7s both;
}
.hero-cta {
  display: flex;
  gap: 18px;
  margin-top: 36px;
  animation: fup 1s ease 0.9s both;
  flex-wrap: wrap;
}
.btn-p {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  background: var(--red);
  border: 2px solid var(--red);
  padding: 13px 34px;
  position: relative;
  overflow: hidden;
  transition: color 0.3s;
  cursor: none;
  display: inline-block;
}
.btn-p::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: translateX(-100%);
  transition: transform 0.3s;
}
.btn-p:hover {
  color: var(--red);
}
.btn-p:hover::before {
  transform: translateX(0);
}
.btn-p span {
  position: relative;
  z-index: 1;
}
.btn-g {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  border: 1px solid rgba(240, 236, 228, 0.3);
  padding: 13px 34px;
  transition: border-color 0.3s;
  cursor: none;
  display: inline-block;
}
.btn-g:hover {
  border-color: var(--white);
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  right: 48px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fup 1s ease 1.2s both;
}
.hero-scroll span {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gray-light);
  writing-mode: vertical-rl;
}
.scline {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scp 2s ease-in-out infinite;
}
@keyframes scp {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 1;
  }
  50% {
    transform: scaleY(0.5);
    opacity: 0.4;
  }
}
@keyframes fup {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* SECTIONS */
section {
  padding: 110px 48px;
}
.sec-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.sec-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 44px;
}
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--red), transparent 60%);
}

/* MARQUEE */
.mq {
  background: var(--red);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
}
.mq-in {
  display: inline-block;
  animation: mq 20s linear infinite;
}
.mq-in span {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.15em;
  color: var(--white);
  margin-right: 56px;
}
.mq-in span.d {
  color: rgba(255, 255, 255, 0.4);
  margin-right: 56px;
}
@keyframes mq {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.mq2 {
  background: #111;
  border-top: 1px solid #1e1e1e;
  border-bottom: 1px solid #1e1e1e;
  padding: 11px 0;
  overflow: hidden;
  white-space: nowrap;
}
.mq2-in {
  display: inline-block;
  animation: mq 18s linear infinite reverse;
}
.mq2-in span {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.15em;
  color: rgba(240, 236, 228, 0.18);
  margin-right: 52px;
}
.mq2-in span.d2 {
  color: #222;
  margin-right: 52px;
}

/* ABOUT */
#about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-vis {
  position: relative;
  height: 560px;
}
.about-bg {
  width: 100%;
  height: 100%;
  background: var(--gray);
  position: relative;
  overflow: hidden;
}
.about-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(232, 0, 28, 0.08) 0%, transparent 50%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 10px,
      rgba(232, 0, 28, 0.03) 10px,
      rgba(232, 0, 28, 0.03) 11px
    );
}
.about-svg {
  width: 100%;
  height: 100%;
}
.about-frame {
  position: absolute;
  top: -14px;
  left: -14px;
  right: 14px;
  bottom: 14px;
  border: 1px solid rgba(232, 0, 28, 0.22);
  pointer-events: none;
}
.about-tag {
  position: absolute;
  bottom: 80px;
  right: -20px;
  background: var(--red);
  padding: 16px 18px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
}
.about-txt p {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(240, 236, 228, 0.74);
  margin-bottom: 20px;
}
.about-txt p strong {
  color: var(--white);
  font-weight: 400;
}
.stats {
  display: flex;
  gap: 40px;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid var(--gray-mid);
}
.sn {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.2rem;
  color: var(--red);
  line-height: 1;
}
.sl {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-top: 5px;
}

/* PRODUCTIONS */
.coming-soon {
  animation: flicker 2s infinite;
}
@keyframes flicker {
  0%,
  100% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.4;
  }
  60% {
    opacity: 0.15;
  }
}
.pc-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pc-link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
}
.ca {
  font-size: 4rem;
  opacity: 0.12;
  transition:
    opacity 0.3s,
    transform 0.3s;
}
.pc:hover .ca {
  opacity: 0.25;
  transform: scale(1.1);
}
.coming-soon {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.25em;
  color: rgba(199, 156, 129, 1);
  text-transform: uppercase;
}
#productions {
  background: var(--gray);
  position: relative;
  overflow: hidden;
}
#productions::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--red), var(--accent), transparent);
}
.prod-hd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 20px;
}
.pgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.pc {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--black);
  overflow: hidden;
  cursor: none;
}
.pc-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.pc:hover .pc-bg {
  transform: scale(1.08);
}
.pc-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 8, 8, 0.95) 0%,
    rgba(8, 8, 8, 0.2) 60%,
    transparent 100%
  );
  transition: background 0.4s;
}
.pc:hover .pc-ov {
  background: linear-gradient(
    to top,
    rgba(8, 8, 8, 0.98) 0%,
    rgba(232, 0, 28, 0.08) 60%,
    transparent 100%
  );
}
.pc-cnt {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 26px;
  transform: translateY(10px);
  transition: transform 0.4s;
}
.pc:hover .pc-cnt {
  transform: translateY(0);
}
.pt {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 7px;
}
.ptt {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.8rem;
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1;
}
.pa {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.15rem;
  font-weight: bold;
  color: rgba(240, 236, 228, 1);
  margin-top: 5px;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.4s 0.1s,
    transform 0.4s 0.1s;
}
.pc:hover .pa {
  opacity: 1;
  transform: translateY(0);
}
.pp {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition:
    opacity 0.3s,
    transform 0.3s;
}
.pc:hover .pp {
  opacity: 1;
  transform: scale(1);
}
.pi {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 11px solid white;
  margin-left: 2px;
}
.bg-1 {
  background: linear-gradient(160deg, #1a0a0a 0%, #2d0808 100%);
}
.bg-2 {
  background: linear-gradient(160deg, #0a0a0a 0%, #1a1a2e 100%);
}
.bg-3 {
  background: linear-gradient(160deg, #0a0d0a 0%, #0d1a0d 100%);
}
.bg-4 {
  background: linear-gradient(160deg, #0d0a14 0%, #1a0d28 100%);
}
.bg-5 {
  background: linear-gradient(160deg, #1a0a0a 0%, #200808 100%);
}
.bg-6 {
  background: linear-gradient(160deg, #0a0d10 0%, #0d141a 100%);
}
.ca {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.11;
  font-size: 6.5rem;
  transition: opacity 0.4s;
}
.pc:hover .ca {
  opacity: 0.05;
}

/* CONTACTS */
.ct-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.ci h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  margin-bottom: 28px;
}
.citem {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 26px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--gray-mid);
}
.citem:last-of-type {
  border-bottom: none;
}
.clabel {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--red);
}
.cval {
  font-size: 0.97rem;
  color: rgba(240, 236, 228, 0.78);
  font-weight: 300;
}
.socials {
  display: flex;
  gap: 10px;
  margin-top: 32px;
}
.sl-a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gray-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--gray-light);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    border-color 0.3s,
    color 0.3s,
    background 0.3s;
  cursor: none;
}
.sl-a:hover {
  border-color: var(--red);
  color: var(--white);
  background: rgba(232, 0, 28, 0.1);
}
.cf {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.fg {
  position: relative;
}
.fg input,
.fg textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--gray-mid);
  padding: 15px 0;
  font-family: "Barlow", sans-serif;
  font-size: 0.93rem;
  font-weight: 300;
  color: var(--white);
  outline: none;
  transition: border-color 0.3s;
  cursor: none;
}
.fg input::placeholder,
.fg textarea::placeholder {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-light);
}
.fg input:focus,
.fg textarea:focus {
  border-color: var(--red);
}
.fg textarea {
  resize: none;
  height: 112px;
}
.fline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width 0.4s;
}
.fg input:focus ~ .fline,
.fg textarea:focus ~ .fline {
  width: 100%;
}
.btn-sub {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--red);
  color: var(--red);
  padding: 15px 38px;
  cursor: none;
  align-self: flex-start;
  position: relative;
  overflow: hidden;
  transition: color 0.3s;
}
.btn-sub::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.btn-sub:hover {
  color: var(--white);
}
.btn-sub:hover::before {
  transform: scaleX(1);
}
.btn-sub span {
  position: relative;
  z-index: 1;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--gray-mid);
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
footer .logo {
  font-size: 0.9rem;
}
footer p {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gray-light);
  text-transform: uppercase;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.rd1 {
  transition-delay: 0.1s;
}
.rd2 {
  transition-delay: 0.2s;
}
.rd3 {
  transition-delay: 0.3s;
}

/* VUE TRANSITIONS */
.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.22s ease;
}
.fade-enter-from,
.fade-leave-to {
  opacity: 0;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  #about {
    grid-template-columns: 1fr;
  }
  .about-vis {
    height: 360px;
  }
  .about-tag {
    right: 0;
  }
  .pgrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ct-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }
}
@media (max-width: 768px) {
  nav {
    padding: 16px 22px;
  }
  nav.scrolled {
    padding: 11px 22px;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  section {
    padding: 72px 22px;
  }
  #home {
    padding: 0 22px 56px;
  }
  .hero-scroll {
    right: 22px;
  }
  .pgrid {
    grid-template-columns: 1fr;
  }
  footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 22px;
  }
  .stats {
    gap: 22px;
  }
}
@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
  }
  .prod-hd {
    flex-direction: column;
    align-items: flex-start;
  }
}
