@font-face {
  font-family: Montserrat;
  src: url("../fonts/montserrat-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Montserrat;
  src: url("../fonts/montserrat-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Montserrat;
  src: url("../fonts/montserrat-800.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Lato;
  src: url("../fonts/lato-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #020202;
  --panel: #0b0b0b;
  --panel-soft: #121212;
  --line: rgba(255, 255, 255, 0.12);
  --text: #f7f7f7;
  --muted: rgba(255, 255, 255, 0.72);
  --faint: rgba(255, 255, 255, 0.48);
  --orange: #ff6a00;
  --orange-2: #ff8b2b;
  --green: #1ebf74;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--bg);
  background-size: 80px 80px;
  color: var(--text);
  font-family: Montserrat, Arial, sans-serif;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100%;
  min-height: 84px;
  padding: 18px clamp(22px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.55), transparent);
  transition: background 0.25s ease, border-color 0.25s ease, min-height 0.25s ease;
}

.site-header.is-solid {
  min-height: 72px;
  background: rgba(3, 3, 3, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 154px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 34px;
  flex: 1;
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
}

.nav-secondary {
  color: var(--faint);
}

.main-nav a {
  transition: color 0.2s ease;
  white-space: nowrap;
}

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

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  padding: 11px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: flex-end;
  padding: 140px clamp(22px, 7vw, 92px) 110px;
  isolation: isolate;
  overflow: hidden;
}

.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  z-index: -3;
  transform: scale(1.02);
}

.hero-shade {
  z-index: -2;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 106, 0, 0.16), transparent 31%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.73) 44%, rgba(0, 0, 0, 0.22) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), #020202 98%);
}

.hero-content {
  width: min(820px, 100%);
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-size: 0.73rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--orange);
}

.hero h1 {
  margin: 24px 0 0;
  max-width: 980px;
  font-size: clamp(3.4rem, 8.2vw, 8.9rem);
  line-height: 0.82;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: lowercase;
}

.hero-word {
  min-height: 1.05em;
  margin: 4px 0 0;
  color: var(--orange);
  font-size: clamp(3.4rem, 8.2vw, 8.9rem);
  line-height: 0.86;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: lowercase;
}

.hero-copy {
  max-width: 620px;
  margin: 30px 0 34px;
  color: var(--muted);
  font-family: Lato, Arial, sans-serif;
  font-size: 1.22rem;
  line-height: 1.7;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 0;
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button.primary {
  background: var(--orange);
  color: #101010;
}

.button.secondary {
  border-color: var(--orange);
  color: var(--text);
}

.button:hover {
  transform: translateY(-1px);
}

.section {
  padding: clamp(82px, 10vw, 150px) clamp(22px, 6vw, 82px);
}

.section-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 48px;
  align-items: start;
}

.section-heading {
  position: sticky;
  top: 116px;
}

.section-heading h2,
.wide-title h2,
.section-title-row h2,
.career-content h2 {
  margin: 18px 0 18px;
  font-size: clamp(2.2rem, 4.8vw, 5.1rem);
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading p,
.career-content p {
  margin: 0;
  color: var(--muted);
  font-family: Lato, Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.75;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.solution-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: #111;
  border: 1px solid var(--line);
}

.solution-card:nth-child(7) {
  grid-column: 1 / -1;
  min-height: 360px;
}

.solution-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.92) brightness(0.8);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.solution-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.86) 100%);
}

.solution-card div {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
}

.solution-card h3,
.media-card h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.2;
  font-weight: 800;
}

.solution-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-family: Lato, Arial, sans-serif;
  line-height: 1.55;
}

.solution-card:hover img {
  transform: scale(1.06);
  filter: saturate(1) brightness(1);
}

.wide-title,
.section-title-row {
  max-width: var(--max);
  margin: 0 auto 54px;
}

.stat-strip {
  max-width: var(--max);
  margin: 0 auto 70px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat-strip div {
  padding: 30px 24px;
  border-right: 1px solid var(--line);
}

.stat-strip div:last-child {
  border-right: 0;
}

.stat-strip strong {
  display: block;
  color: var(--orange);
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
}

.stat-strip span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-family: Lato, Arial, sans-serif;
}

.conquest-stack {
  max-width: 1120px;
  margin: 0 auto;
}

.conquest-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: center;
  gap: 34px;
  margin: 0 0 34px;
}

.conquest-item.reverse {
  grid-template-columns: 0.72fr 1fr;
}

.conquest-item.reverse img {
  order: 2;
}

.conquest-item img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  filter: brightness(0.82) saturate(0.92);
}

.conquest-item p {
  margin: 0;
  padding: 38px;
  background: rgba(0, 0, 0, 0.72);
  border-left: 3px solid var(--orange);
  font-size: clamp(1.55rem, 3vw, 3.4rem);
  line-height: 1.08;
  font-weight: 800;
  text-transform: uppercase;
}

.clients {
  overflow: hidden;
}

.logo-slider {
  max-width: var(--max);
  margin: 0 auto;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 34px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logo-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: logo-scroll 38s linear infinite;
}

.logo-track img {
  flex: 0 0 auto;
  width: 180px;
  max-height: 72px;
  object-fit: contain;
  margin: 0 42px;
  filter: grayscale(1) brightness(1.6);
  opacity: 0.68;
  transition: filter 0.25s ease, opacity 0.25s ease;
}

.logo-track img:hover {
  filter: none;
  opacity: 1;
}

.logo-slider:hover .logo-track {
  animation-play-state: paused;
}

@keyframes logo-scroll {
  to {
    transform: translateX(-50%);
  }
}

.media-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.media-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.media-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: brightness(0.78);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.88) 100%);
}

.media-card h3 {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
}

.media-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.96);
}

.career {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  align-items: center;
  gap: 48px;
}

.career-image img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: brightness(0.84) saturate(0.95);
}

.career-content {
  padding-right: 20px;
}

.career-content h2 {
  text-transform: none;
}

.career-content .button {
  margin-top: 30px;
}

.site-footer {
  padding: 70px clamp(22px, 6vw, 82px) 44px;
  background: #050505;
  border-top: 1px solid var(--line);
}

.footer-top {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 58px;
}

.footer-brand img {
  width: 168px;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 26px;
}

.socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
}

.socials img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: invert(1);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
}

.footer-links h3 {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 0.92rem;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  margin: 0 0 12px;
  color: var(--muted);
  font-family: Lato, Arial, sans-serif;
  line-height: 1.45;
}

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

.footer-links small {
  color: var(--faint);
}

.copyright {
  max-width: var(--max);
  margin: 54px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-family: Lato, Arial, sans-serif;
  font-size: 0.86rem;
  line-height: 1.7;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
}

.floating-whatsapp img {
  width: 31px;
  height: 31px;
}

@media (max-width: 1100px) {
  .main-nav {
    position: fixed;
    inset: 72px 18px auto 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 24px;
    background: rgba(7, 7, 7, 0.96);
    border: 1px solid var(--line);
    backdrop-filter: blur(14px);
  }

  body.menu-open .main-nav {
    display: flex;
  }

  .nav-group {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .menu-toggle {
    display: block;
  }

  .section-grid,
  .career,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .section-heading {
    position: static;
  }

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

@media (max-width: 760px) {
  .site-header {
    min-height: 72px;
    padding: 15px 18px;
  }

  .brand img {
    width: 132px;
  }

  .hero {
    min-height: 88vh;
    padding: 120px 22px 72px;
  }

  .hero h1,
  .hero-word {
    font-size: clamp(3rem, 14vw, 5.2rem);
  }

  .hero-copy {
    font-size: 1.05rem;
  }

  .section {
    padding: 78px 22px;
  }

  .solution-grid,
  .stat-strip,
  .media-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .solution-card,
  .solution-card:nth-child(7),
  .media-card {
    min-height: 340px;
  }

  .stat-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat-strip div:last-child {
    border-bottom: 0;
  }

  .conquest-item,
  .conquest-item.reverse {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .conquest-item.reverse img {
    order: 0;
  }

  .conquest-item img,
  .career-image img {
    height: 310px;
    min-height: 310px;
  }

  .conquest-item p {
    padding: 24px;
    font-size: 1.45rem;
  }

  .logo-track img {
    width: 150px;
    margin: 0 28px;
  }

  .floating-whatsapp {
    width: 52px;
    height: 52px;
    right: 18px;
    bottom: 18px;
  }
}
