:root {
  --yellow: #F5D020;
  --blue: #0B1E3A;
  --lime: #A3E635;
  --night: #071224;
  --deep-night: #050D1A;
  --white: #FFFFFF;
  --light-blue: #B0C4DE;
  --glow: #FFE66D;
  --card-blue: #122A4A;
  --header-h: 64px;
  --font-head: Impact, 'Arial Black', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --container-max: 1280px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-card: 0 18px 48px rgba(0, 0, 0, .38);
  --ease-out: cubic-bezier(.22, .61, .36, 1);
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  min-height: 100vh;
  background:
    radial-gradient(1200px 640px at 82% -8%, rgba(245, 208, 32, .1), transparent 60%),
    radial-gradient(940px 520px at 12% 28%, rgba(163, 230, 53, .06), transparent 55%),
    linear-gradient(165deg, #0B1E3A 0%, #071224 68%, #050D1A 100%);
  background-color: var(--night);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: .01em;
}
h1 {
  font-size: clamp(44px, 7vw, 88px);
}
h2 {
  font-size: clamp(30px, 4.5vw, 52px);
}
h3 {
  font-size: clamp(22px, 2.5vw, 30px);
}
p {
  margin-bottom: 1rem;
}
a {
  color: var(--light-blue);
  text-decoration: none;
}
ul, ol {
  list-style: none;
}
img, svg {
  display: block;
  max-width: 100%;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}
:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 3000;
  padding: 12px 18px;
  background: var(--yellow);
  color: var(--blue);
  border-radius: var(--radius-sm);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform .25s ease;
  box-shadow: 0 8px 24px rgba(245, 208, 32, .4);
}
.skip-link:focus {
  transform: translateY(0);
  width: auto;
  height: auto;
  clip: auto;
  clip-path: none;
  white-space: normal;
  color: var(--blue);
}
.site-main {
  min-height: 70vh;
  padding: calc(var(--header-h) + 28px) 20px 64px;
}
.site-main:focus {
  outline: none;
}
.content-container {
  max-width: var(--container-max);
  margin: 0 auto;
}
@media (min-width: 768px) {
  :root {
    --header-h: 72px;
  }
  .site-main {
    padding: calc(var(--header-h) + 36px) 40px 80px;
  }
}
@media (min-width: 1100px) {
  .site-main {
    padding-left: 64px;
    padding-right: 300px;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .25s, transform .25s, border-color .25s, box-shadow .25s;
}
.btn-primary {
  background: var(--yellow);
  color: var(--blue);
  box-shadow: 0 8px 24px rgba(245, 208, 32, .35);
}
.btn-primary:hover {
  background: var(--glow);
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(245, 208, 32, .5);
}
.btn-ghost {
  color: var(--yellow);
  border-color: rgba(245, 208, 32, .55);
  background: rgba(245, 208, 32, .06);
}
.btn-ghost:hover {
  background: rgba(245, 208, 32, .14);
  transform: translateY(-2px);
  border-color: var(--yellow);
}
.section {
  padding: 64px 0;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 14px;
}
.section-label::before {
  content: "";
  width: 22px;
  height: 3px;
  background: var(--lime);
  border-radius: 999px;
}
.section-title {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 20px;
  line-height: 1.05;
}
.content-card {
  background: linear-gradient(145deg, var(--card-blue), #0D2139);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(176, 196, 222, .14);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: border-color .25s, transform .25s;
}
.content-card:hover {
  border-color: rgba(245, 208, 32, .4);
  transform: translateY(-3px);
}
.split-screen {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 30px;
}
.split-content,
.split-media {
  min-width: 0;
}
@media (min-width: 960px) {
  .split-screen {
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, .75fr);
    align-items: center;
  }
  .split-screen--flip {
    grid-template-columns: minmax(280px, .75fr) minmax(0, 1.45fr);
  }
  .split-screen--flip > .split-media {
    order: 2;
  }
  .split-screen--flip > .split-content {
    order: 1;
  }
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  font-size: 14px;
  color: var(--light-blue);
  padding: 16px 0 8px;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
}
.breadcrumbs a {
  color: var(--light-blue);
  transition: color .2s, border-color .2s;
  border-bottom: 1px solid transparent;
}
.breadcrumbs a:hover {
  color: var(--yellow);
  border-bottom-color: rgba(245, 208, 32, .5);
}
.breadcrumbs [aria-current="page"] {
  color: var(--yellow);
  font-weight: 700;
}
.breadcrumbs-sep {
  color: var(--light-blue);
  opacity: .5;
}
.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245, 208, 32, .22);
  box-shadow: var(--shadow-card);
  background: linear-gradient(135deg, var(--card-blue), var(--blue));
}
.media-frame::before {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}
.media-frame > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-frame .media-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-blue);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.media-frame--tall::before {
  padding-bottom: 125%;
}
.media-frame--video::before {
  padding-bottom: 56.25%;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
}
.header-bar {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  background: linear-gradient(180deg, rgba(11, 30, 58, .94), rgba(7, 18, 36, .88));
  border-bottom: 1px solid rgba(245, 208, 32, .2);
  box-shadow: 0 8px 26px rgba(0, 0, 0, .32);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
  position: relative;
  z-index: 5;
}
.brand-bolt {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--glow) 100%);
  border-radius: 12px;
  color: var(--blue);
  box-shadow: 0 6px 18px rgba(245, 208, 32, .38);
}
.bolt-icon {
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, .2));
}
.brand-name {
  font-family: var(--font-head);
  font-size: 23px;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--white);
  text-shadow: 0 0 14px rgba(245, 208, 32, .25);
  line-height: 1;
}
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(245, 208, 32, .35);
  background: rgba(18, 42, 74, .55);
  transition: background .2s, border-color .2s;
}
.nav-toggle:hover {
  background: rgba(245, 208, 32, .12);
  border-color: var(--yellow);
}
.nav-toggle-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 20px;
}
.nav-line {
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--yellow);
  transition: transform .3s var(--ease-out), opacity .2s;
}
.nav-toggle.is-open .nav-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-open .nav-line:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open .nav-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.site-nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 999;
  padding: 12px;
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
  background: linear-gradient(180deg, rgba(18, 42, 74, .97), rgba(7, 18, 36, .98));
  border-bottom: 1px solid rgba(245, 208, 32, .3);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s;
}
.site-nav[data-open] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav-lock {
  overflow: hidden;
}
.nav-rail {
  counter-reset: nav-num;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.nav-rail-item {
  counter-increment: nav-num;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-rail-item::before {
  content: "0" counter(nav-num);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--yellow);
  opacity: .55;
  min-width: 22px;
  text-align: right;
}
.nav-link {
  position: relative;
  display: block;
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid transparent;
  border-left: 3px solid transparent;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--light-blue);
  background: transparent;
  transition: color .2s, background .2s, border-color .2s, transform .2s;
}
.nav-link::before {
  display: none;
}
.nav-link:hover {
  color: var(--yellow);
  background: rgba(245, 208, 32, .08);
  border-left-color: rgba(245, 208, 32, .6);
}
.nav-link[aria-current="page"] {
  color: var(--yellow);
  background: linear-gradient(90deg, rgba(245, 208, 32, .16), transparent);
  border-left-color: var(--yellow);
}
@media (min-width: 768px) {
  .header-bar {
    padding: 0 30px;
  }
  .site-nav {
    padding: 16px 24px;
  }
  .nav-rail {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .nav-link {
    text-align: center;
  }
  .nav-rail-item::before {
    display: none;
  }
}
@media (min-width: 1100px) {
  .site-header {
    height: auto;
  }
  .header-bar {
    height: var(--header-h);
    padding: 0 40px;
  }
  .nav-toggle {
    display: none;
  }
  .site-nav {
    position: fixed;
    top: 50%;
    right: 18px;
    left: auto;
    bottom: auto;
    transform: translateY(-50%);
    max-height: calc(100vh - 48px);
    padding: 18px 12px;
    background: rgba(7, 18, 36, .82);
    border: 1px solid rgba(245, 208, 32, .26);
    border-radius: 20px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .25), 0 24px 56px rgba(0, 0, 0, .42);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: none;
    overflow: visible;
  }
  .nav-rail {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .nav-rail-item {
    gap: 6px;
  }
  .nav-rail-item::before {
    display: block;
    min-width: 20px;
    font-size: 10px;
    color: var(--yellow);
    opacity: .45;
  }
  .nav-link {
    text-align: left;
    padding: 10px 14px 10px 14px;
    font-size: 14px;
    white-space: nowrap;
    border-left: 3px solid transparent;
    border-radius: 8px;
  }
  .nav-link::before {
    display: block;
    content: "";
    width: 4px;
    height: 4px;
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    background: currentColor;
    opacity: .6;
  }
  .nav-link:hover,
  .nav-link[aria-current="page"] {
    background: rgba(245, 208, 32, .1);
    border-left-color: var(--yellow);
  }
}
.site-footer {
  position: relative;
  background: linear-gradient(180deg, var(--night) 0%, var(--deep-night) 40%);
  border-top: 1px solid rgba(255, 230, 109, .18);
}
.footer-glow {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 230, 109, .8) 35%, rgba(245, 208, 32, .85) 65%, transparent 100%);
  pointer-events: none;
}
.footer-shell {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 48px 20px 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px 28px;
}
.footer-col {
  min-width: 0;
}
.footer-brand,
.footer-quick,
.footer-contact {
  min-width: 0;
}
.footer-brand .brand-lockup {
  margin-bottom: 14px;
}
.brand-lockup--footer .brand-bolt {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}
.brand-lockup--footer .brand-name {
  font-size: 21px;
}
.footer-tagline {
  max-width: 340px;
  color: var(--light-blue);
  font-size: 14px;
  line-height: 1.7;
  opacity: .85;
}
.footer-heading {
  font-family: var(--font-head);
  font-size: 15px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 8px;
}
.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 26px;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
}
.footer-list {
  display: grid;
  gap: 12px;
}
.footer-list a {
  color: var(--light-blue);
  font-size: 15px;
  transition: color .2s, padding-left .2s;
  border-bottom: 1px solid transparent;
}
.footer-list a:hover {
  color: var(--yellow);
  border-bottom-color: rgba(245, 208, 32, .4);
  padding-left: 4px;
}
.footer-label {
  color: var(--light-blue);
  font-size: 13px;
}
.footer-list--contact li {
  color: var(--white);
  font-size: 15px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  padding-top: 24px;
  margin-top: 44px;
  border-top: 1px solid rgba(176, 196, 222, .14);
  font-size: 13px;
  color: var(--light-blue);
}
.footer-legal a {
  color: var(--light-blue);
  transition: color .2s;
}
.footer-legal a:hover {
  color: var(--yellow);
}
.legal-dot {
  opacity: .4;
}
.legal-copy {
  margin-left: auto;
  color: var(--white);
}
.legal-icp {
  color: var(--light-blue);
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1.3fr;
  }
}
@media (min-width: 1100px) {
  .footer-shell {
    padding-left: 64px;
    padding-right: 300px;
  }
}
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity .7s ease var(--reveal-delay, 0s),
    transform .7s var(--ease-out) var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    transition-delay: 0ms !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
  .skip-link {
    transition: none;
  }
}
