/* ═══════════════════════════════════════════
   BLUE SKY GLOBAL — Shared Stylesheet
   ═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #070D1C;
  --navy-mid:  #0B1427;
  --navy-card: #0E1A33;
  --navy-hov:  #112040;
  --sky:       #00BFFF;
  --sky-soft:  rgba(0,191,255,0.10);
  --sky-bdr:   rgba(0,191,255,0.22);
  --sky-glow:  rgba(0,191,255,0.06);
  --white:     #FFFFFF;
  --off:       #E8EDF5;
  --muted:     rgba(232,237,245,0.55);
  --muted2:    rgba(232,237,245,0.28);
  --divider:   rgba(255,255,255,0.07);
  --radius:    5px;
  --fd: 'Raleway', sans-serif;
  --fc: 'Barlow Condensed', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--fd);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--sky-bdr); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px;
  background: rgba(7,13,28,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--divider);
}
.logo {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; flex-shrink: 0;
}
.logo-mark {
  width: 38px; height: 38px;
  border: 1.5px solid var(--sky);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.logo-mark svg { width: 19px; height: 19px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; gap: 2px; }
.logo-name {
  font-family: var(--fd); font-weight: 800;
  font-size: 17px; letter-spacing: 0.1em; color: var(--white);
}
.logo-sub {
  font-family: var(--fc); font-size: 10px;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--sky);
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-family: var(--fc); font-size: 14px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  transition: color 0.2s; position: relative; padding-bottom: 4px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--sky);
  transform: scaleX(0); transition: transform 0.25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  font-family: var(--fc); font-size: 13px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sky); border: 1px solid var(--sky-bdr);
  padding: 11px 28px; border-radius: var(--radius);
  text-decoration: none; transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--sky); color: var(--navy); }
.ham { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.ham span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: all 0.3s; }
.mob {
  display: none; position: fixed;
  top: 72px; left: 0; right: 0; z-index: 299;
  background: var(--navy-mid);
  border-bottom: 1px solid var(--sky-bdr);
  flex-direction: column;
}
.mob.open { display: flex; }
.mob a {
  font-family: var(--fc); font-size: 16px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--off); text-decoration: none;
  padding: 20px 32px;
  border-bottom: 1px solid var(--divider);
  transition: color 0.2s, padding-left 0.2s;
}
.mob a:hover { color: var(--sky); padding-left: 44px; }

/* ── SHARED LAYOUT ── */
.wrap { max-width: 1180px; margin: 0 auto; padding: 100px 56px; }
.wrap-sm { max-width: 900px; margin: 0 auto; padding: 100px 56px; }
.section-divider { border: none; border-top: 1px solid var(--divider); }

/* ── TYPOGRAPHY ── */
.eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--fc); font-size: 11px;
  letter-spacing: 0.44em; text-transform: uppercase;
  color: var(--sky); margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--sky); flex-shrink: 0; }
.heading {
  font-family: var(--fd); font-weight: 800;
  font-size: clamp(32px, 4.2vw, 56px);
  letter-spacing: 0.02em; line-height: 1.08; color: var(--white);
}
.subheading {
  font-family: var(--fd); font-weight: 700;
  font-size: clamp(20px, 2.6vw, 30px);
  letter-spacing: 0.02em; line-height: 1.2; color: var(--white);
}
.body-text {
  font-family: var(--fd); font-weight: 300;
  font-size: 15px; color: var(--muted); line-height: 1.88;
}
.body-text strong { color: var(--white); font-weight: 600; }

/* ── BUTTONS ── */
.btn-p {
  font-family: var(--fc); font-size: 13px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--navy); background: var(--sky);
  padding: 15px 34px; border-radius: var(--radius);
  text-decoration: none; display: inline-block;
  transition: opacity 0.2s, transform 0.15s; font-weight: 600;
}
.btn-p:hover { opacity: 0.86; transform: translateY(-1px); }
.btn-o {
  font-family: var(--fc); font-size: 13px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--white); border: 1px solid rgba(255,255,255,0.22);
  padding: 15px 34px; border-radius: var(--radius);
  text-decoration: none; display: inline-block;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-o:hover { border-color: var(--sky); color: var(--sky); transform: translateY(-1px); }

/* ── CARDS ── */
.card-base {
  background: var(--navy-card);
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  transition: background 0.3s, border-color 0.3s;
}
.card-base:hover { background: var(--navy-hov); border-color: var(--sky-bdr); }

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.72s ease, transform 0.72s ease; }
.reveal.vis { opacity: 1; transform: none; }
.d1 { transition-delay: 0.12s; }
.d2 { transition-delay: 0.22s; }
.d3 { transition-delay: 0.32s; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  min-height: 340px;
  display: flex; align-items: flex-end;
  padding: 130px 56px 60px;
  position: relative; overflow: hidden;
  background: linear-gradient(155deg, #0C1830 0%, var(--navy) 60%, #040912 100%);
  border-bottom: 1px solid var(--divider);
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,191,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,191,255,0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
}
.page-hero-glow {
  position: absolute; top: -20%; right: 5%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,191,255,0.07) 0%, transparent 68%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 2; max-width: 1180px; width: 100%; margin: 0 auto; }
.page-hero-content .eyebrow { margin-bottom: 14px; }
.page-hero-content .heading { font-size: clamp(36px, 5vw, 68px); }
.page-hero-sub {
  font-family: var(--fd); font-weight: 300;
  font-size: 16px; color: var(--muted);
  max-width: 560px; line-height: 1.8;
  margin-top: 16px;
}

/* ── GLOBAL BANNER ── */
.glob {
  background: var(--sky);
  padding: 0 56px; min-height: 64px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.glob-t {
  font-family: var(--fd); font-weight: 800;
  font-size: 22px; letter-spacing: 0.05em; color: var(--navy);
  white-space: nowrap;
}
.glob-rs { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.glob-r {
  font-family: var(--fc); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(7,13,28,0.6);
  display: flex; align-items: center; gap: 7px;
}
.glob-r::before { content: ''; width: 4px; height: 4px; background: rgba(7,13,28,0.35); border-radius: 50%; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  border-top: 1px solid var(--divider);
  padding: 44px 56px;
}
.footer-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .logo-name { font-size: 20px; margin-bottom: 12px; display: block; }
.footer-brand .logo-sub { display: block; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: var(--muted2); line-height: 1.75; max-width: 260px; }
.footer-col h4 {
  font-family: var(--fc); font-size: 11px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--sky); margin-bottom: 16px;
}
.footer-col a, .footer-col p {
  display: block; font-family: var(--fd); font-weight: 300;
  font-size: 13px; color: var(--muted); text-decoration: none;
  margin-bottom: 10px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1180px; margin: 36px auto 0;
  padding-top: 24px; border-top: 1px solid var(--divider);
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: var(--muted2); }
.footer-bottom .f-links { display: flex; gap: 20px; }
.footer-bottom .f-links a {
  font-family: var(--fc); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted2); text-decoration: none; transition: color 0.2s;
}
.footer-bottom .f-links a:hover { color: var(--sky); }

/* ── ANIMATIONS ── */
@keyframes fu { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:none} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

/* ── RESPONSIVE ── */
@media(max-width:980px){
  nav { padding: 0 22px; }
  .nav-links, .nav-cta { display: none; }
  .ham { display: flex; }
  .wrap, .wrap-sm { padding: 68px 22px; }
  .page-hero { padding: 110px 22px 48px; }
  .glob { padding: 18px 22px; }
  footer { padding: 44px 22px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media(max-width:540px){
  .footer-inner { grid-template-columns: 1fr; }
  .glob-rs { gap: 12px; }
}
