* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Monument";
  src: url("fonts/PPMonumentExtended-Black.otf");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "MonumentR";
  src: url("fonts/PPMonumentExtended-Regular.otf");
  font-weight: 600;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #000;
  color: #fff;
}

body.intro-lock {
  overflow: hidden;
  height: 100vh;
}


/* =========================
   LANGUAGE SWITCHER
========================= */

.language-switcher {
  position: fixed;
  top: 24px;
  right: 28px;
  z-index: 9999;
  display: flex;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(8px);
}

.language-btn {
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  padding: 7px 9px 6px;
  font-family: "MonumentR", Arial, Helvetica, sans-serif;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}

.language-btn:hover,
.language-btn.is-active {
  background: #fff;
  color: #000;
}

@media (max-width: 768px) {
  .language-switcher {
    top: 16px;
    right: 16px;
  }

  .language-btn {
    font-size: 9px;
    padding: 7px 8px 6px;
  }
}


/* =========================
   VIDEO BACKGROUND
========================= */

.video-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.4s ease, transform 1.8s ease;
}

.video-background.reveal {
  opacity: 1;
  transform: scale(1);
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

/* =========================
   INTRO
========================= */

.intro {
  position: relative;
  min-height: 100svh;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  overflow: hidden;
}

.intro-center {
  position: relative;
  width: 100%;
  max-width: 1400px;
  height: 100svh;
}

.intro-text {
  position: absolute;
  font-family: "Monument";
  font-size: 21px;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
  opacity: 0;
  transition:
    transform 1.6s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1.1s ease;
}

.intro-text-left {
  top: 43%;
  left: 47%;
  transform: translate(-180%, -50%);
}

.intro-text-right {
  top: 48%;
  left: 45%;
  transform: translate(80%, -50%);
}

.intro-text.show {
  opacity: 1;
}

.intro-text-left.show {
  transform: translate(-58%, -50%);
}

.intro-text-right.show {
  transform: translate(-8%, -50%);
}

.intro-text-left.fade-out-left {
  opacity: 0;
  transform: translate(-40%, -50%) scale(0.98);
}

.intro-text-right.fade-out-right {
  opacity: 0;
  transform: translate(-18%, -50%) scale(0.98);
}

.logo-wrap {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%) scale(1);
  width: min(48vw, 460px);
  opacity: 0;
  transition:
    opacity 0.8s ease,
    transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.logo-wrap.show {
  opacity: 1;
}

.logo-wrap.shrink {
  transform: translate(-50%, -58%) scale(0.5);
}

#comtechLogo {
  width: 80%;
  height: auto;
  display: block;
  overflow: visible;
  margin-left: auto;
}

.logo-shape {
  fill: #fff;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: left center;
  clip-path: inset(0 100% 0 0);
}

.logo-shape.draw {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transition:
    clip-path 650ms cubic-bezier(0.65, 0, 0.35, 1),
    opacity 120ms ease;
}

.company-name {
  margin-top: 28px;
  width: min(42vw, 420px);
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.company-name.show {
  opacity: 1;
  transform: translateY(0);
}

#companyNameSvg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

#companyNameSvg path,
#companyNameSvg rect {
  fill: #ffffff;
}

.intro-bottom {
  position: absolute;
  bottom: 36px;
  z-index: 3;
  opacity: 0;
  transform: translateY(28px);
  font-size: clamp(12px, 1.1vw, 18px);
  letter-spacing: 0.06em;
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.intro-bottom.show {
  opacity: 1;
  transform: translateY(0);
}

.intro-bottom-left {
  left: 40px;
  display: flex;
}

.intro-bottom-left span,
.intro-bottom-right span {
  display: block;
  width: 3px;
  height: auto;
  background-color: white;
}

.intro-bottom-left span {
  margin-right: 9px;
}

.intro-bottom-left div p {
  font-family: "MonumentR";
  font-size: 13px;
  line-height: 16px;
}

.intro-bottom-right {
  right: 40px;
  text-align: right;
  display: flex;
}

.intro-bottom-right span {
  margin-left: 9px;
}

.intro-bottom-right div {
  display: flex;
  flex-direction: column;
}

.intro-bottom-right div a {
  font-family: "MonumentR";
  font-size: 13px;
  line-height: 16px;
  padding: 3px 0;
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.intro-bottom-right div a:hover {
  letter-spacing: 2px;
}

/* =========================
   SECTION POETIC
========================= */

.section-poetic {
  position: relative;
  z-index: 1;
  padding: 14svh 6vw 32svh;
  background: black;
  overflow: hidden;
}

.section-poetic-inner {
  position: relative;
  z-index: 3;
  max-width: 980px;
}

.section-poetic-inner p {
  font-family: "Monument", Arial, Helvetica, sans-serif;
  font-size: 2.5vw;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12svh;
}

/* =========================
   ADVANTAGE PANELS
========================= */

.advantage-panel {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.panel-1 {
  background: #fffae6;
  z-index: 2;
  margin-bottom: 17vw;
}

.panel-2 {
  background: #347543;
  z-index: 3;
  margin-bottom: 17vw;
}

.panel-3 {
  background: #006837;
  z-index: 4;
  margin-bottom: 17vw;
}

.panel-4 {
  background: #293b01;
  z-index: 5;
  margin-bottom: 17vw;
}

.advantage-inner {
  height: 100%;
  display: flex;
  flex-direction: row-reverse;
  gap: 28px;
  padding: 28px;
}

.advantage-image {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
}

.advantage-image img {
  width: 46vw;
  height: calc(100vh - 56px);
  object-fit: cover;
  object-position: top;
  display: block;
}

.advantage-content {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding-right: 1rem;
  color: #24170f;
  height: calc(100vh - 56px);
}

.advantage-title {
  line-height: 0.82;
  width: 100vw;
}

.title-bold {
  display: block;
  position: relative;
  z-index: 9;
  font-family: "Monument", Arial, sans-serif;
  font-size: 10vw;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

section.advantage-panel:nth-child(8) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > span:nth-child(1){
  font-size: 7vw;
}

.title-light {
  display: block;
  position: relative;
  z-index: 9;
  font-family: "sherborne-variable", sans-serif;
  font-variation-settings: "opsz" 30, "wght" 400;
  font-size: 10vw;
  font-weight: 400;
  line-height: 0.9;
}

.advantage-text {
  align-self: end;
  max-width: 420px;
  margin-left: 0.75rem;
  padding-bottom: 10svh;
  font-family: "sherborne-variable", sans-serif;
  font-variation-settings: "opsz" 30, "wght" 600;
  font-size: 16px;
  line-height: 1;
  z-index: 9;
}

.panel-2 .title-bold,
.panel-3 .title-bold,
.panel-4 .title-bold,
.panel-2 .title-light,
.panel-3 .title-light,
.panel-4 .title-light,
.panel-2 .advantage-text,
.panel-3 .advantage-text,
.panel-4 .advantage-text {
  color: whitesmoke;
}

/* =========================
   FOOTER
========================= */

.site-footer {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  padding: 11vw 50px 36px;
  background: black;
  backdrop-filter: blur(2px);
}

.footer-left {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  color: #fff;
  font-size: 10px;
  line-height: 16px;
  font-family: "MonumentR";
}

.footer-logo {
  width: 140px;
  flex-shrink: 0;
}

.footer-logo-svg {
  width: 100%;
  height: auto;
  display: block;
}

.footer-logo-svg line {
  stroke: #fff;
  stroke-width: 12px;
  fill: none;
}

.footer-left span {
  display: block;
  width: 3px;
  height: 48px;
  background-color: white;
}

.footer-left div {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.footer-left div a {
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.footer-left div a:hover {
  color: #347543;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.footer-right a {
  color: #fff;
  text-decoration: none;
  font-family: "Monument";
  font-size: clamp(20px, 3vw, 56px);
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: 0.3s;
}

.footer-right a:hover {
  color: #347543;
}

/* =========================
   DIVERS
========================= */

.panel-5{
    background:#111;
    z-index:6;
    margin-bottom: 17svh;
}

.advantage-inner-cta{
  display: flex;
  flex-direction: column;
    justify-content:center;
    align-items:center;
}

.cta-content .advantage-title{
  text-align:center;
  color: #347543;
  margin-left: -28px;
}

.cta-content .advantage-title .title-bold{
  font-size: 7vw;
}

.cta-content{
    display:flex;
    flex-direction:column;
    justify-content:center;
    height:100%;
    padding-right: 1rem;
}

.cta-link{
    display:inline-block;
    margin-top:20px;
    font-family:"Monument";
    font-size:5vw;
    line-height:0.95;
    color:#347543;
    text-decoration:none;
    text-transform:uppercase;
    transition:.3s;
    text-align:center;
}

.cta-link:hover{
    letter-spacing:4px;
    color: white;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  .intro-text-left.show {
    transform: translate(-50%, -35%);
  }

  .intro-text-right.show {
    transform: translate(-50%, 38%);
  }

  .intro-text-left,
  .intro-text-right {
    left: 50%;
    text-align: center;
    font-size: 1.2em;
  }

  .intro-text-left {
    top: 35%;
  }

  .intro-text-right {
    top: 38%;
  }

  .logo-wrap {
    transform: translate(-50%, -50%) scale(1.8);
  }

  .logo-wrap.shrink {
    transform: translate(-50%, -58%) scale(1);
  }

  .intro-bottom-left,
  .intro-bottom-right {
    left: 20px;
    text-align: left;
  }

  .intro-bottom-left {
    bottom: 92px;
  }

  .intro-bottom-right {
    bottom: 22px;
    left: 20px;
    right: auto;
    flex-direction: row-reverse;
  }

  .intro-bottom-right span {
    margin-left: 0;
    margin-right: 9px;
  }

  .section-poetic {
    padding: 12svh 24px 12svh;
    min-height: auto;
  }

  .section-poetic-inner p {
    font-size: 6vw;
    margin: 4svh 0;
  }

  .advantage-panel {
    position: relative;
    height: auto;
    min-height: 100vh;
    margin-bottom: 10vw;
  }

  .panel-1,
  .panel-2,
  .panel-3,
  .panel-4,
  .panel-5 {
    margin-bottom: 0;
  }

  .advantage-inner {
    flex-direction: column;
    gap: 18px;
    padding: 20px;
  }

  .advantage-image {
    height: 42vh;
  }

  .advantage-image img {
    width: 100%;
    height: 42vh;
    max-width: none;
  }

  .advantage-content {
    height: auto;
    padding-right: 0;
  }

  .advantage-title {
    width: 100%;
  }

  .title-bold,
  .title-light {
    font-size: 12vw;
  }

  .advantage-text {
    max-width: 280px;
    margin-left: 0;
    padding-bottom: 0;
    padding-top: 21px;
  }

  .site-footer {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 32px;
    padding: 28px 20px 24px;
  }

  .footer-right {
    width: 100%;
    align-items: flex-start;
    margin: 0;
  }

  .footer-right a {
    font-size: 4vw;
    line-height: 0.95;
  }

  .footer-left {
    gap: 12px;
  }

  .footer-logo {
    width: 110px;
  }

  section.advantage-panel:nth-child(8){
    display: none;
  }

  .cta-content{
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-right: 0;
  }

  .cta-content .advantage-title{
    margin-left: 0;
  }

  .panel-5 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}




