@font-face {
  font-family: "Bahnschrift Heading";
  src: url("../fonts/823-NMXQNX+Bahnschrift.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Bahnschrift;
  src: url("../fonts/824-KFJYXD+Bahnschrift.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bahnschrift Label";
  src: url("../fonts/825-FAWUFN+Bahnschrift.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Abel;
  src: url("../fonts/822-OLHWBV+Abel-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: ArialRounded;
  src: url("../fonts/821-QTLNDR+ArialRoundedMTBold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: Poppins, Arial, sans-serif;
  font-weight: 300;
}

@keyframes rotate-text {
  to { transform: rotate(360deg); }
}

@keyframes shake-diagonal {
  0%, 100% { transform: translate(8px, -8px) rotate(26deg); }
  50% { transform: translate(-8px, 8px) rotate(22deg); }
}

.hero-section {
  position: relative;
  min-height: 100vh;
  height: auto;
  display: flex;
  align-items: center;
  padding: 100px 50px;
  overflow: hidden;
  isolation: isolate;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.hero-section .container {
  position: relative;
  z-index: 1;
  width: 1900px;
  max-width: 100%;
  margin: 0 auto;
  color: #fff;
}

.hero-row-overlay {
  position: relative;
  padding-top: 100px;
}

.hero-row {
  position: relative;
  display: flex;
  align-items: flex-start;
}

.first-col {
  flex: 1 1 57%;
  padding-left: 150px;
}

.second-col {
  flex: 1 1 43%;
}

.hero-logo {
  position: absolute;
  top: -90px;
  left: 15px;
  width: 200px;
  height: auto;
}

.hero-rail {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  color: #fff;
  font-family: Poppins, Arial, sans-serif;
  font-size: 19px;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-rail span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-rail i {
  flex: 1 1 auto;
  width: 2px;
  min-height: 165px;
  background: #fff;
}

.hero-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 26px 120px;
  border: 2px solid #efd177;
  border-radius: 28px;
  background: transparent;
  font-family: Poppins, Arial, sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  color: #efd177;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.hero-contact:hover {
  background: #efd177;
  color: #050505;
}

.hero-heading {
  font-family: Poppins, Arial, sans-serif;
  font-size: 45px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 50px;
}

.hero-copy {
  font-size: 23px;
  font-weight: 300;
  line-height: 1.35;
  max-width: 760px;
}

.hero-copy p {
  margin: 0 0 28px;
}

.hero-partners > span {
  display: block;
  font-family: Abel, Arial, sans-serif;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #929296;
  text-transform: uppercase;
}

.hero-partners {
  margin-top: 56px;
}

.hero-partners img {
  display: block;
  width: 750px;
  max-width: 100%;
  height: auto;
  margin-top: 16px;
}

.second-col {
  display: flex;
  justify-content: center;
}

.hero-visual {
  position: relative;
  width: 600px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
}

.hero-grafiti,
.hero-rotating-text {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-grafiti {
  inset: unset;
  top: 10%;
  left: 10%;
  z-index: 1;
  transform: scale(1.22);
}

.hero-rotating-text {
  z-index: 2;
  animation: rotate-text 20s linear infinite;
}

.hero-shaker {
  position: absolute;
  top: 11%;
  left: -2%;
  z-index: 3;
  width: 100%;
  height: 90%;
  object-fit: contain;
  animation: shake-diagonal 3.6s ease-in-out infinite;
}

@media (max-width: 1749.98px) {
  .hero-section {
    padding: 80px 40px;
    padding-bottom: 40px;
  }

  .hero-section .container {
    width: 100%;
  }

  .hero-row-overlay {
    padding-top: 80px;
  }

  .first-col {
    padding-left: 120px;
  }

  .hero-logo {
    top: -100px;
    width: 170px;
  }

  .hero-rail {
    font-size: 17px;
  }

  .hero-rail i {
    min-height: 135px;
  }

  .hero-heading {
    font-size: 38px;
    margin-bottom: 36px;
  }

  .hero-copy {
    max-width: 680px;
    font-size: 20px;
  }

  .hero-copy p {
    margin-bottom: 22px;
  }

  .hero-contact {
    padding: 22px 90px;
    border-radius: 24px;
    font-size: 24px;
  }

  .hero-partners > span {
    font-size: 22px;
  }

  .hero-partners {
    margin-top: 40px;
  }

  .hero-partners img {
    width: 650px;
  }

  .hero-visual {
    width: 540px;
  }
}

@media (max-width: 1599.98px) {
  .hero-heading {
    font-size: 30px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-copy p {
    margin-bottom: 26px;
  }

  .hero-rail {
    font-size: 16px;
  }

  .hero-visual {
    width: 470px;
  }
}

@media (max-width: 1399.98px) {
  .hero-contact {
    padding: 18px 65px;
  }

  .hero-rail i {
    min-height: 110px;
  }
}

@media (max-width: 1299.98px) {
  .first-col {
    padding-left: 90px;
  }

  .hero-logo {
    width: 150px;
  }

  .hero-visual {
    width: 420px;
  }
}

@media (max-width: 1249.98px) {
  .hero-heading {
    font-size: 28px;
  }

  .hero-copy {
    font-size: 16px;
  }
}

@media (max-width: 1199.98px) {
  .hero-section {
    padding: 70px 30px;
    padding-bottom: 20px;
  }

  .hero-row-overlay {
    padding-top: 65px;
  }

  .hero-row {
    gap: 24px;
  }

  .first-col {
    flex-basis: 65%;
    padding-left: 80px;
  }

  .second-col {
    flex-basis: 35%;
  }

  .hero-logo {
    top: -55px;
    width: 145px;
  }

  .hero-rail {
    font-size: 15px;
    gap: 10px;
  }

  .hero-rail i {
    min-height: 110px;
  }

  .hero-heading {
    font-size: 28px;
    margin-bottom: 28px;
  }

  .hero-copy {
    font-size: 16px;
    line-height: 1.45;
  }

  .hero-copy p {
    margin-bottom: 20px;
  }

  .hero-contact {
    min-height: 70px;
    padding: 18px 60px;
    border-radius: 21px;
    font-size: 20px;
  }

  .hero-partners {
    margin-top: 26px;
  }

  .hero-partners > span {
    font-size: 19px;
  }

  .hero-partners img {
    margin-top: 12px;
  }

  .hero-visual {
    width: 400px;
  }
}

@media (max-width: 991.98px) {
  .hero-section {
    min-height: 100svh;
    align-items: flex-start;
    padding: 28px 20px 100px;
  }

  .hero-logo {
    position: relative;
    top: auto;
    left: auto;
    display: block;
    width: 140px;
    margin-bottom: 28px;
  }

  .hero-row-overlay {
    padding-top: 0;
  }

  .hero-row {
    flex-direction: column;
    gap: 34px;
    padding-top: 50px;
  }

  .hero-rail {
    display: none;
  }

  .first-col,
  .second-col {
    flex: 0 0 100%;
    width: 100%;
  }

  .first-col {
    padding-left: 0;
  }

  .hero-heading {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 24px;
  }

  .hero-copy {
    max-width: none;
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-copy p {
    margin-bottom: 18px;
  }

  .hero-contact {
    width: 100%;
    padding: 18px 24px;
    font-size: 19px;
  }

  .hero-partners {
    margin-top: 24px;
  }

  .hero-partners > span {
    font-size: 18px;
  }

  .hero-partners img {
    width: 100%;
  }

  .second-col {
    justify-content: center;
  }

  .hero-visual {
    width: min(100%, 400px);
  }
}

@media (max-width: 479.98px) {
  .hero-section {
    padding-inline: 16px;
  }

  .hero-heading {
    font-size: 29px;
  }

  .hero-visual {
    width: min(100%, 340px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-rotating-text,
  .hero-shaker {
    animation: none;
  }
}
