:root {
  --bg: #08111d;
  --text: #f5f7fb;
  --muted: rgba(255, 255, 255, 0.75);
  --line: rgba(255, 255, 255, 0.16);
  --panel: rgba(255, 255, 255, 0.04);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(180deg, #08111d 0%, #0b1624 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button {
  font: inherit;
}

.container {
  width: min(92%, 1280px);
  margin: 0 auto;
}

/* HEADER */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 30;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
}

.brand {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
}

.nav-links a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
}

.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 1px;
  background: rgba(255, 255, 255, 0.8);
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: 10px;
}

.nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.search-icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-icon {
  width: 28px;
  height: 24px;
  position: relative;
}

.menu-icon span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 4px 0;
  border-radius: 999px;
}

/* HERO */

.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  overflow: hidden;
  background: #000;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #000;
}

.hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  filter: brightness(0.4);
}

.hero-video-native {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(177.78vh, 140vw);
  height: max(56.25vw, 140vh);
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%) scale(1.18);
  pointer-events: none;
  filter: brightness(0.72);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.36) 18%, rgba(0, 0, 0, 0.46) 58%, rgba(0, 0, 0, 0.58) 100%),
    radial-gradient(circle at center, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.18) 70%, rgba(0, 0, 0, 0.35) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 110px;
  padding-bottom: 90px;
}

.hero-content {
  width: 100%;
  max-width: 1120px;
  text-align: center;
  color: #fff;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: clamp(3.5rem, 7.8vw, 6.6rem);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: 0 auto 34px;
  color: #67f0c1;
  text-align: center;
}

.hero-rule {
  width: 310px;
  max-width: 45%;
  height: 1px;
  background: rgba(255, 255, 255, 0.68);
  margin: 0 auto 36px;
}

.hero-subtext {
  max-width: 980px;
  margin: 0 auto 54px;
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 355px;
  min-height: 54px;
  padding: 15px 26px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.hero-button:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
  transform: translateY(-1px);
}

/* GENERAL */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #07101a;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid #fff;
  transition: 0.2s ease;
}

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

.btn.secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

section:not(.hero) {
  padding: 88px 0;
}

.section-head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 10px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.04;
  margin: 0 0 18px;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  line-height: 1.2;
}

p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.84);
}

.lead {
  font-size: 1.12rem;
  line-height: 1.7;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

.card,
.panel,
.cta {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(6px);
}

.card {
  height: 100%;
}

.card-body {
  padding: 22px;
}

.kicker {
  font-size: 0.74rem;
  letter-spacing: 0.11em;
  color: rgba(255, 255, 255, 0.62);
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 700;
}

.panel {
  padding: 26px;
}

.list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list li {
  margin-bottom: 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.dot {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  margin-top: 8px;
  flex: 0 0 auto;
}

/* SERVICE CARDS */

.service-media {
  width: 100%;
  height: 255px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* TEAM */

.team-photo {
  width: 100%;
  height: 420px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-role {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.cta {
  padding: 30px;
}

.actions {
  margin-top: 20px;
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

.center-actions {
  justify-content: center;
}

/* FOOTER */

footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.small {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.62);
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .nav-links {
    gap: 24px;
  }

  .hero-eyebrow {
    font-size: clamp(3rem, 8vw, 5.3rem);
  }

  .hero-rule {
    width: 260px;
  }

  .hero-button {
    min-width: 320px;
  }

  .team-photo {
    height: 380px;
  }

  .service-media {
    height: 235px;
  }
}

@media (max-width: 900px) {
  .nav {
    padding: 18px 0;
  }

  .nav-links {
    display: none;
  }

  .hero-inner {
    padding-top: 100px;
    padding-bottom: 70px;
  }

  .hero-video-native {
    width: max(220vh, 210vw);
    height: max(70vw, 170vh);
    transform: translate(-50%, -50%) scale(1.12);
  }

  .hero-eyebrow {
    font-size: clamp(2.8rem, 13vw, 4.8rem);
    margin-bottom: 24px;
  }

  .hero-rule {
    width: 180px;
    max-width: 55%;
    margin-bottom: 26px;
  }

  .hero-subtext {
    font-size: 1rem;
    max-width: 92%;
    margin-bottom: 34px;
  }

  .hero-button {
    min-width: 0;
    width: 100%;
    max-width: 320px;
    font-size: 0.9rem;
    padding: 14px 18px;
  }

  .section-head,
  .split,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  section:not(.hero) {
    padding: 68px 0;
  }

  .team-photo {
    height: 360px;
  }

  .service-media {
    height: 260px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(92%, 1280px);
  }

  .brand {
    font-size: 1.05rem;
  }

  .nav-icons {
    gap: 14px;
  }

  .hero-inner {
    padding-top: 88px;
    padding-bottom: 56px;
  }

  .hero-video-native {
    width: 260vw;
    height: 146.25vw;
    min-width: 220%;
    min-height: 135%;
    transform: translate(-50%, -50%) scale(1.08);
  }

  .hero-eyebrow {
    font-size: clamp(2.4rem, 14vw, 4rem);
    line-height: 0.98;
  }

  .hero-subtext {
    line-height: 1.45;
  }

  .panel,
  .cta,
  .card-body {
    padding-left: 18px;
    padding-right: 18px;
  }

  .team-photo {
    height: 320px;
  }

  .service-media {
    height: 220px;
  }
}
