.hero {
  min-height: 100vh;
  position: relative;
  background: linear-gradient(135deg, var(--bg-navy) 0%, var(--bg-void) 100%);
  overflow-x: clip;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(135deg, rgb(212 175 55 / 3%) 0%, transparent 50%);
}

.hero::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(212 175 55 / 6%) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 180px 0 120px 48px;
  max-width: 600px;
  flex: 0 0 45%;
}

.hero-content .eyebrow {
  color: var(--gold);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 24px;
  font-weight: 600;
}

.eyebrow-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.eyebrow-row .eyebrow {
  margin-bottom: 0;
}

.hero-flags {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-flag {
  font-size: 18px;
  line-height: 1;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.hero-flag:hover {
  opacity: 1;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.75rem, 7vw, 4.5rem);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 32px;
  letter-spacing: -2px;
}

.hero-content p {
  color: var(--text-secondary);
  font-size: 20px;
  max-width: 550px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.hero-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 55%;
  height: 90vh;
  padding: 0;
  z-index: 2;
}

.hero-graphic svg {
  width: 100%;
  height: 100%;
}

.trust-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 28px 48px;
  background: rgb(0 0 0 / 40%);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 48px;
}

.trust-bar span {
  color: var(--text-muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
}

.trust-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  opacity: 0.55;
}

.trust-logo {
  height: 22px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.72;
}

.trust-logo--aws {
  max-width: 72px;
}

.trust-logo--gcp {
  max-width: 108px;
}

.trust-logo--azure {
  max-width: 92px;
}

.trust-logo--vanta {
  max-width: 88px;
}

.trust-logo--crowdstrike {
  max-width: 128px;
}

.trust-logo--agency {
  max-width: 140px;
}

.trust-logo--jumpcloud {
  max-width: 120px;
}

.trust-logo--ycombinator {
  max-width: 150px;
}

@media (max-width: 1024px) {
  .hero-graphic .micro-elements,
  .hero-graphic .bg-texture,
  .hero-graphic .layer-control-test {
    display: none;
  }
}

@media (max-width: 1000px) {
  .hero {
    flex-direction: column;
  }

  .hero-content {
    flex: none;
    padding: 160px 32px 60px;
    max-width: 700px;
  }

  .hero-graphic {
    flex: none;
    width: 100%;
    max-width: 500px;
    height: auto;
    margin-right: 0;
    padding: 0 32px 100px;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .trust-logos {
    gap: 24px;
  }

  .trust-logo {
    height: 20px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 140px 24px 48px;
  }


  .hero-graphic {
    display: none;
  }

  .trust-bar {
    padding: 20px 24px;
    gap: 20px;
    align-items: flex-start;
  }

  .trust-logos {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 24px;
    scrollbar-width: none;
  }

  .trust-logos::-webkit-scrollbar {
    display: none;
  }

  .trust-logo {
    height: 16px;
    opacity: 0.75;
  }
}
