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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  color: #f5f7ff;
  background: radial-gradient(circle at top, #181d36 0, #050711 45%, #02030a 100%);
  -webkit-font-smoothing: antialiased;
}

a {
  color: #f7a34a;
  text-decoration: none;
  transition: color 0.18s ease, opacity 0.18s ease;
}
a:hover {
  color: #ffd8a0;
}

code,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 2.4rem;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(5, 7, 17, 0.94), rgba(5, 7, 17, 0.72), transparent);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.brand-icon {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 0.4rem;
  background: radial-gradient(circle at 0 0, rgba(0, 0, 0, 0.4), transparent 70%), url("icons/apex-192.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80% 80%;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 8px 18px rgba(0, 0, 0, 0.6);
}

.brand-mark {
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
  background: radial-gradient(circle at 0 0, #ff7b3f, #f7a34a);
  color: #12090a;
}

.brand-sub {
  color: #a5abc8;
  font-weight: 500;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}
.nav-links a {
  color: #a5abc8;
  position: relative;
  padding-bottom: 0.2rem;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff7b3f, #ffd8a0);
  transition: width 0.18s ease-out;
}
.nav-links a:hover {
  color: #f5f7ff;
}
.nav-links a:hover::after {
  width: 100%;
}

.hero {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 3.5rem 2.4rem 2.8rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background-color: #050711;
  background-image: radial-gradient(circle at 0% 0%, rgba(255, 179, 79, 0.25), transparent 55%), radial-gradient(circle at 100% -10%, rgba(103, 178, 255, 0.22), transparent 60%), linear-gradient(to bottom, rgba(5, 7, 17, 0.95), rgba(5, 7, 17, 0.9)), url("apex-header-2-rb@2x.webp");
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-position: left top, right top, center top, right center;
  background-size: 40rem 20rem, 40rem 20rem, 100% 100%, cover;
}

.hero-inner {
  max-width: 960px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.hero-logo-card {
  flex: 0 0 180px;
  height: 180px;
  border-radius: 1.4rem;
  background: radial-gradient(circle at 0 0, rgba(0, 0, 0, 0.65), transparent 70%), radial-gradient(circle at 100% 100%, rgba(255, 198, 128, 0.5), transparent 55%), url("icons/apex-192.png");
  background-repeat: no-repeat;
  background-position: top left, bottom right, center;
  background-size: 140% 140%, 140% 140%, 90% 90%;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.hero-copy {
  flex: 1 1 auto;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffd8a0;
  margin: 0 0 0.75rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.1rem);
  line-height: 1.1;
  margin: 0 0 0.7rem;
}

.tagline {
  margin: 0 0 1.5rem;
  max-width: 40rem;
  color: #a5abc8;
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.08s ease-out;
}

.btn.primary {
  background: linear-gradient(135deg, #ff7b3f, #f7a34a);
  color: #12090a;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(0, 0, 0, 0.4);
}
.btn.primary:hover {
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 245, 235, 0.4);
  transform: translateY(-1px);
}

.btn.secondary {
  background: rgba(11, 15, 33, 0.9);
  border-color: rgba(255, 255, 255, 0.14);
  color: #f5f7ff;
}
.btn.secondary:hover {
  background: rgba(20, 25, 50, 0.9);
  border-color: rgba(255, 255, 255, 0.28);
}

.page {
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem 2.4rem 3rem;
}

.page h2 {
  font-size: 1.4rem;
  margin-top: 2.4rem;
  margin-bottom: 0.9rem;
}

.page h3 {
  font-size: 1.05rem;
  margin-top: 1.4rem;
  margin-bottom: 0.4rem;
}

.page p {
  margin: 0 0 0.75rem;
  color: #a5abc8;
  font-size: 0.97rem;
}

.page ul,
.page ol {
  margin: 0.2rem 0 1rem 1.3rem;
  padding: 0;
  color: #a5abc8;
}

.page li + li {
  margin-top: 0.1rem;
}

pre {
  margin: 0 0 1rem;
  padding: 0.8rem 1rem;
  border-radius: 0.8rem;
  background: radial-gradient(circle at 0 0, rgba(255, 179, 79, 0.08), transparent 55%), rgba(8, 11, 26, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow-x: auto;
  font-size: 0.85rem;
  line-height: 1.5;
}

code {
  padding: 0.08rem 0.35rem;
  border-radius: 0.4rem;
  background: rgba(15, 20, 40, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #ffd8a0;
  font-size: 0.83rem;
}

pre code {
  padding: 0;
  border: none;
  background: transparent;
  color: #f5f7ff;
}

dl {
  margin: 0 0 1.5rem;
}

dt {
  font-weight: 600;
  margin-top: 0.6rem;
}

dd {
  margin: 0.2rem 0 0.3rem 0;
  color: #a5abc8;
}

@media (max-width: 720px) {
  .site-nav {
    padding-inline: 1.2rem;
  }
  .nav-links {
    gap: 0.8rem;
    font-size: 0.82rem;
  }
  .hero {
    padding-inline: 1.2rem;
    background-position: left top, right top, center top, right center;
  }
  .page {
    padding-inline: 1.2rem;
  }
}

/*# sourceMappingURL=styles.css.map */
