*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
:root {
  --sky: #cf2e2e;
  --sky2: #e04444;
  --sky3: rgba(207, 46, 46, 0.12);
  --gold: #cf2e2e;
  --gold2: #e04444;
  --night: #000d22;
  --deep: #001544;
  --slate: #0a1c3d;
  --ink: #1f386a;
  --mist: #6f747e;
  --cloud: #bbcaea;
  --pale: #dce4f5;
  --white: #f8faff;
  --paper: #eeeff3;
  --sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --display: "Bebas Neue", sans-serif;
  --mono: "JetBrains Mono", "Courier New", monospace;
  --rad: 8px;
  --rad2: 16px;
  --rad3: 24px;
}
body {
  font-family: var(--sans);
  background: var(--night);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .container {
    padding: 0 48px;
  }
}
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sky);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.eyebrow:before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--sky);
  flex-shrink: 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--rad);
  font-size: 15px;
  font-weight: 700;
  font-family: var(--sans);
  transition: all 0.2s ease;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn:active {
  transform: scale(0.97);
}
.btn-sky {
  background: var(--sky);
  color: #fff;
}
.btn-sky:hover {
  background: var(--sky2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px #cf2e2e66;
}
.btn-gold {
  background: var(--gold);
  color: #fff;
}
.btn-gold:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px #cf2e2e59;
}
.btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
}
.btn-ghost:hover {
  border-color: var(--sky);
  color: var(--sky);
}
.btn-lg {
  padding: 17px 44px;
  font-size: 16px;
}
.btn-sm {
  padding: 9px 20px;
  font-size: 13px;
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal.d1 {
  transition-delay: 0.08s;
}
.reveal.d2 {
  transition-delay: 0.16s;
}
.reveal.d3 {
  transition-delay: 0.24s;
}
.reveal.d4 {
  transition-delay: 0.32s;
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 0;
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    background 0.3s,
    border-color 0.3s,
    backdrop-filter 0.3s;
}
nav.scrolled {
  background: #000;
  backdrop-filter: none;
  border-bottom-color: rgba(255,255,255,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
}
.brand-logo {
  height: 36px;
  width: auto;
  display: block;
}
.nav-links {
  display: none;
  list-style: none;
  gap: 2px;
  align-items: center;
}
@media (min-width: 860px) {
  .nav-links {
    display: flex;
  }
}
.nav-links > li > a,
.nav-parent {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  border-radius: var(--rad);
  font-size: 14px;
  font-weight: 500;
  color: var(--cloud);
  transition: all 0.2s;
  cursor: default;
  user-select: none;
}
.nav-links > li > a {
  cursor: pointer;
}
.nav-links > li > a:hover,
.has-dropdown:hover .nav-parent {
  background: #ffffff12;
  color: var(--white);
}
.chevron {
  transition: transform 0.2s;
  flex-shrink: 0;
}
.has-dropdown:hover .chevron {
  transform: rotate(180deg);
}
.has-dropdown {
  position: relative;
}
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  padding: 8px 6px 6px;
  list-style: none;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%) translateY(-4px);
  transition:
    opacity 0.18s ease 0.05s,
    transform 0.18s ease 0.05s,
    visibility 0.18s 0.05s;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%) translateY(0);
  transition-delay: 0s;
}
.dropdown:before {
  content: "";
  position: absolute;
  inset: 8px 0 0;
  background: #030712f5;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 16px 48px #00000080;
  z-index: -1;
}
.dropdown li a {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--cloud);
  white-space: nowrap;
  transition: all 0.15s;
}
.dropdown li a:hover {
  background: #ffffff14;
  color: var(--white);
}
.nav-end {
  display: flex;
  align-items: center;
  gap: 10px;
}
.desktop-cta {
  display: none;
}
@media (min-width: 860px) {
  .desktop-cta {
    display: inline-flex;
  }
}
.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
}
@media (min-width: 860px) {
  .burger {
    display: none;
  }
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 72px 0 0;
  background: var(--night);
  z-index: 199;
  padding: 32px 24px;
  overflow-y: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-direction: column;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  display: block;
  padding: 18px 0;
  font-size: 22px;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  transition: color 0.2s;
}
.mobile-menu a:hover {
  color: var(--sky);
}
.mobile-group-label {
  display: block;
  padding: 18px 0 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mist);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-sub {
  padding: 14px 0 14px 16px !important;
  font-size: 18px !important;
  color: var(--cloud) !important;
  border-left: 2px solid rgba(207, 46, 46, 0.4);
  margin-left: 4px;
}
.mobile-sub:hover {
  color: var(--sky) !important;
}
footer {
  background: var(--night);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 80px 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
@media (min-width: 640px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .footer-top {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}
.brand-row {
  margin-bottom: 16px;
}
.footer-logo {
  height: 32px;
  width: auto;
  display: block;
}
.footer-tagline {
  font-size: 14px;
  color: var(--cloud);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.footer-contact a {
  font-size: 14px;
  color: var(--cloud);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact a:hover {
  color: var(--sky);
}
.contact-label {
  font-size: 12px;
  color: var(--mist);
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--rad);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cloud);
  transition: all 0.2s;
}
.footer-social a:hover {
  border-color: var(--sky);
  color: var(--sky);
  background: #cf2e2e14;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fc-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cloud);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 14px;
  color: #ffffff80;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--white);
}
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-bottom p {
  font-size: 13px;
  color: #ffffff4d;
}
.footer-legal {
  max-width: 640px;
}
.mobile-sticky {
  display: flex;
  gap: 10px;
  padding: 12px 16px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #030712f2;
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 860px) {
  .mobile-sticky {
    display: none;
  }
}
