/*
 * Coordinator insertion (custom-gates.html only):
 * <link rel=stylesheet href="/css/gate-hero-critical.css">
 * Place immediately before the async css/styles.min.css stylesheet link.
 */
html,
body {
  margin: 0;
}

html {
  padding: 0;
}

body {
  padding: 80px 0 0;
}

/* Keep the above-the-fold navigation out of document flow before async CSS lands. */
.nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 clamp(24px, 4vw, 64px);
}

.nav-mobile-menu {
  position: fixed;
  inset: 0;
  visibility: hidden;
  opacity: 0;
}

.gate-hero,
.gate-hero *,
.gate-hero *::before,
.gate-hero *::after {
  box-sizing: border-box;
}

.gate-hero {
  position: relative;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.gate-hero-content {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 180px clamp(24px, 5vw, 80px) 120px;
}

.gate-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(56px, 11vw, 140px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin: 0 0 56px;
}

.gate-hero-description {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  margin: 0;
}

.gate-hero-trust {
  margin: 4px 0 0;
}

@media (max-width: 768px) {
  .nav {
    height: 64px;
    padding: 0 20px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-mobile-toggle {
    display: flex;
  }

  .gate-hero-content {
    padding: 140px clamp(20px, 5vw, 40px) 100px;
  }
}
