*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: hsl(217, 55%, 7%);
  --primary: hsl(217, 91%, 60%);
  --primary-fg: #fff;
  --muted: hsl(215, 20%, 55%);
  --blue-400: #60a5fa;
}
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; background: var(--bg); color: #fff; line-height: 1.6; }
h1, h2, h3, h4, .font-serif { font-family: 'Montserrat', sans-serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

.max-w-7xl { max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; }
.max-w-6xl { max-width: 72rem; margin: 0 auto; padding: 0 1.5rem; }
.max-w-5xl { max-width: 64rem; margin: 0 auto; padding: 0 1.5rem; }
.max-w-4xl { max-width: 56rem; margin: 0 auto; padding: 0 1.5rem; }
.max-w-2xl { max-width: 42rem; margin: 0 auto; }
.max-w-90 { max-width: 90rem; margin: 0 auto; padding: 0 1.5rem; }

.glow-card {
  border-radius: 33px;
  border: 1px solid rgba(59,130,246,0.2);
  box-shadow: 0 0 80px 0px rgba(169,206,249,0.34);
  transition: border-color 0.3s;
}
.glow-card:hover { border-color: rgba(59,130,246,0.4); }
.glow-card-soft {
  border-radius: 33px;
  border: 1px solid rgba(59,130,246,0.2);
  box-shadow: 0 0 80px 0px rgba(169,206,249,0.15);
  transition: border-color 0.3s;
}
.glow-card-soft:hover { border-color: rgba(59,130,246,0.4); }

.icon-circle {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 4rem; height: 4rem; flex-shrink: 0;
}
.icon-circle .outer {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(59,130,246,0.4);
  transition: all 0.3s;
}
.icon-circle .inner {
  position: absolute; inset: 4px; border-radius: 50%;
  border: 1px solid rgba(59,130,246,0.1);
}
.icon-circle.dark .outer { background: rgba(15,23,42,0.8); }
.icon-circle.light .outer { background: rgba(59,130,246,0.1); }
.icon-circle svg { position: relative; z-index: 1; width: 1.5rem; height: 1.5rem; color: var(--primary); }

.gradient-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(to right, var(--primary), var(--blue-400));
  color: #ffffff !important; font-family: 'Montserrat', sans-serif; font-weight: 700;
  padding: 0.625rem 1.5rem; border-radius: 9999px; border: none; cursor: pointer;
  font-size: 0.875rem; letter-spacing: 0.05em; text-transform: uppercase;
  box-shadow: 0 0 20px rgba(59,130,246,0.3); transition: opacity 0.3s;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
.gradient-btn:hover { opacity: 0.9; }
.gradient-btn svg { stroke: #ffffff; }

.reveal { opacity: 0; transform: translateY(2rem); transition: opacity 0.7s ease-out, transform 0.7s ease-out; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* DESKTOP NAV */
.desktop-nav { display: none; position: sticky; top: 0; z-index: 50; background: var(--bg); border-bottom: 1px solid rgba(59,130,246,0.1); transition: all 0.3s; }
.desktop-nav.scrolled { background: rgba(10,15,28,0.95); backdrop-filter: blur(12px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.desktop-nav-inner { max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; height: 6rem; display: flex; align-items: center; justify-content: space-between; }
.desktop-nav-links { display: flex; align-items: center; gap: 2rem; }
.desktop-nav-links a { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); transition: color 0.3s; font-family: 'Poppins', sans-serif; }
.desktop-nav-links a:hover, .desktop-nav-links a.active { color: var(--primary); }
.desktop-nav-links a.gradient-btn { color: #ffffff !important; }
.nav-logo { height: 7rem; width: auto; object-fit: contain; padding-bottom: 1.25rem; }

/* MOBILE NAV */
.mobile-header { display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 1rem; background: var(--bg); border-bottom: 1px solid rgba(59,130,246,0.1); }
.mobile-header.scrolled-mobile { position: sticky; top: 0; z-index: 50; background: rgba(10,15,28,0.95); backdrop-filter: blur(12px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.mobile-logo-big { height: 5rem; width: auto; }
.mobile-logo-small { height: 2rem; width: auto; }
.hamburger { background: none; border: none; color: #fff; cursor: pointer; padding: 0.5rem; }
.hamburger svg { width: 1.75rem; height: 1.75rem; }

/* MOBILE OVERLAY */
.mobile-overlay { display: none; position: fixed; inset: 0; z-index: 100; background: rgba(10,15,28,0.92); backdrop-filter: blur(24px); flex-direction: column; }
.mobile-overlay.open { display: flex; }
.mobile-overlay-header { display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 1rem; border-bottom: 1px solid rgba(59,130,246,0.1); }
.mobile-overlay-grid { flex: 1; display: flex; align-items: center; justify-content: center; padding: 1.5rem; overflow-y: auto; }
.mobile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; width: 100%; max-width: 24rem; }
.mobile-grid a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; padding: 2rem 1rem; border-radius: 1rem; border: 1px solid rgba(59,130,246,0.2); background: rgba(10,15,28,0.6); backdrop-filter: blur(4px); transition: all 0.3s; }
.mobile-grid a:hover { border-color: rgba(59,130,246,0.5); background: rgba(59,130,246,0.05); }
.mobile-grid a svg { width: 2rem; height: 2rem; color: var(--primary); }
.mobile-grid a span { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: #fff; font-weight: 500; font-family: 'Poppins', sans-serif; text-align: center; }
.mobile-grid .call-tile { background: rgba(59,130,246,0.1); }

/* HERO */
.hero { position: relative; padding: 5rem 0 7rem; overflow: hidden; background: var(--bg); }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center right; background-repeat: no-repeat; pointer-events: none; }
.hero h1 { font-size: clamp(3rem, 8vw, 6rem); font-weight: 500; line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 2rem; }
.hero .accent { color: var(--primary); font-style: italic; }
.hero .sub { font-size: clamp(1.125rem, 2.5vw, 1.5rem); color: var(--muted); margin-bottom: 1.5rem; line-height: 1.6; max-width: 42rem; }
.hero .cta { font-size: clamp(1.125rem, 2.5vw, 1.5rem); color: #fff; font-weight: 500; }

/* PAGE HEADER (Contact/Leadership) */
.page-header { position: relative; padding: 5rem 0 4rem; background: var(--bg); overflow: hidden; }
.page-header h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 500; line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 1.5rem; color: #fff; }
.page-header h1 .accent { color: var(--primary); font-style: italic; }
.page-header p { font-size: clamp(1rem, 2vw, 1.25rem); color: var(--muted); max-width: 42rem; line-height: 1.65; }
.page-header-bg { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 1000px; height: 500px; background: rgba(59,130,246,0.06); border-radius: 100%; filter: blur(120px); pointer-events: none; }

/* STATS */
.stats { padding: 2rem 0; background: var(--bg); border-top: 1px solid rgba(59,130,246,0.1); position: relative; overflow: hidden; }
.stats-grid { display: grid; grid-template-columns: 1fr; text-align: center; }
.stat-item { padding: 1rem 0; display: flex; flex-direction: column; align-items: center; }
.stat-item + .stat-item { border-top: 1px solid rgba(59,130,246,0.2); }
.stat-value { font-family: 'Montserrat', sans-serif; font-size: 1.875rem; color: #fff; margin-bottom: 0.25rem; }
.stat-label { font-size: 0.625rem; letter-spacing: 0.2em; color: var(--primary); text-transform: uppercase; font-weight: 500; }

/* LIGHT SECTIONS */
.light-section { background: #fff; color: #1e293b; padding: 6rem 0; position: relative; overflow: hidden; }

/* PILLARS */
.pillars-grid { display: grid; gap: 2rem; }
.pillar-card { background: #fff; padding: 2.5rem; display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; overflow: hidden; }
.pillar-card h3 { font-size: 1.5rem; font-weight: 700; color: #0f172a; margin-bottom: 1.25rem; }
.pillar-card p { color: #475569; font-size: 1rem; line-height: 1.6; }
.section-label { font-family: 'Montserrat', sans-serif; color: var(--primary); letter-spacing: 0.2em; font-size: 0.875rem; font-weight: 700; text-transform: uppercase; margin-bottom: 1rem; text-align: center; }

/* AUDIT DEFENSE */
.audit-section { padding: 7rem 0; background: var(--bg); position: relative; overflow: hidden; border-top: 1px solid rgba(59,130,246,0.2); border-bottom: 1px solid rgba(59,130,246,0.2); }
.audit-bg { position: absolute; inset: 0; background-size: cover; background-position: center; pointer-events: none; }
.audit-section h2 { font-size: clamp(2rem, 5vw, 3.75rem); font-weight: 500; color: #fff; margin-bottom: 1.5rem; line-height: 1.1; text-align: center; letter-spacing: -0.02em; }
.audit-list { list-style: none; }
.audit-list li { display: flex; align-items: flex-start; margin-bottom: 2rem; }
.audit-dot { margin-top: 0.625rem; width: 0.5rem; height: 0.5rem; background: rgba(59,130,246,0.8); border-radius: 50%; margin-right: 1.5rem; flex-shrink: 0; box-shadow: 0 0 8px rgba(59,130,246,0.5); }
.audit-list .term { font-weight: 700; font-size: 1.125rem; color: #fff; padding-right: 0.75rem; }
.audit-list .desc { font-size: 1.125rem; color: var(--muted); line-height: 1.6; }

/* CAPABILITIES */
.cap-grid { display: grid; gap: 2rem; }
.cap-card { background: #fff; padding: 2rem; position: relative; overflow: hidden; }
.cap-card .cap-bg-icon { position: absolute; top: 1.5rem; right: 1.5rem; opacity: 0.1; color: var(--primary); transition: opacity 0.3s; }
.cap-card:hover .cap-bg-icon { opacity: 0.2; }
.cap-card .cap-label { font-family: 'Montserrat', sans-serif; color: var(--primary); letter-spacing: 0.15em; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; margin-bottom: 1rem; }
.cap-card h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: #0f172a; font-size: 1.25rem; margin-bottom: 2rem; }
.cap-list { list-style: none; border-top: 1px solid rgba(59,130,246,0.1); padding-top: 1.5rem; }
.cap-list li { font-size: 0.875rem; color: #475569; border-bottom: 1px solid #f1f5f9; padding-bottom: 1rem; margin-bottom: 1rem; }
.cap-list li:last-child { border-bottom: none; margin-bottom: 0; }
.cap-list li.bold { font-weight: 700; color: #0f172a; }

/* WHY US */
.why-section { padding: 6rem 0; background: var(--bg); border-top: 1px solid rgba(59,130,246,0.2); position: relative; overflow: hidden; }
.why-grid { display: grid; gap: 3rem; }
.why-card { padding: 2.5rem; display: flex; flex-direction: column; align-items: center; text-align: center; background: rgba(10,15,28,0.5); backdrop-filter: blur(4px); }
.why-card h3 { font-family: 'Poppins', sans-serif; font-weight: 700; color: #fff; font-size: 1.25rem; margin-bottom: 1rem; }
.why-card p { color: var(--muted); font-size: 1rem; line-height: 1.6; }

/* CONTACT */
.contact-section { padding: 5rem 0; background: var(--bg); border-top: 1px solid rgba(59,130,246,0.1); }
.contact-band { border-radius: 33px; border: 1px solid var(--primary); background: rgba(10,15,28,0.5); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2rem 1.5rem; gap: 1.5rem; text-align: center; margin-bottom: 3rem; box-shadow: 0 0 80px 0px rgba(169,206,249,0.34); }
.contact-band a { display: flex; align-items: center; gap: 0.75rem; transition: color 0.3s; }
.contact-band a:hover { color: var(--primary); }
.contact-icon { width: 2.5rem; height: 2.5rem; border-radius: 50%; border: 1px solid rgba(59,130,246,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 1rem; height: 1rem; color: var(--primary); }
.contact-band span { font-size: 0.875rem; color: #fff; font-weight: 500; letter-spacing: 0.05em; }
.contact-divider-h { width: 100%; height: 1px; background: rgba(59,130,246,0.2); }
.contact-divider-v { display: none; }

/* CONTACT PAGE - info & map */
.contact-grid { display: grid; gap: 2rem; margin-bottom: 4rem; }
.contact-info-card, .contact-map-card { border-radius: 33px; border: 1px solid rgba(59,130,246,0.2); background: rgba(10,15,28,0.5); padding: 2.5rem; box-shadow: 0 0 80px 0px rgba(169,206,249,0.2); }
.contact-info-card h2 { font-family: 'Montserrat', sans-serif; color: #fff; font-size: 1.75rem; margin-bottom: 2rem; font-weight: 500; }
.contact-info-list { display: flex; flex-direction: column; gap: 1.75rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-info-item .ci-icon { width: 2.75rem; height: 2.75rem; border-radius: 50%; border: 1px solid rgba(59,130,246,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-item .ci-icon svg { width: 1.125rem; height: 1.125rem; color: var(--primary); }
.contact-info-item .ci-label { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.25rem; }
.contact-info-item .ci-value { font-size: 1.125rem; color: #fff; font-weight: 500; line-height: 1.4; }
.contact-info-item a.ci-value:hover { color: var(--primary); transition: color 0.3s; }

.contact-map-card { padding: 0; overflow: hidden; position: relative; min-height: 24rem; }
.map-wrapper { position: relative; width: 100%; height: 100%; min-height: 24rem; }
.map-wrapper iframe { width: 100%; height: 100%; min-height: 24rem; border: 0; display: block; filter: invert(0.92) hue-rotate(180deg) saturate(0.7) brightness(0.95) contrast(0.95); }
.map-pin-overlay { position: absolute; inset: 0; pointer-events: none; display: flex; align-items: center; justify-content: center; }
.map-pin-overlay svg { width: 3rem; height: 3rem; color: var(--primary); filter: drop-shadow(0 0 12px rgba(59,130,246,0.8)); transform: translateY(-1.5rem); }
.map-overlay-tint { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at center, transparent 40%, rgba(10,15,28,0.55) 100%); }

/* LEADERSHIP */
.leader-stack { display: flex; flex-direction: column; gap: 4rem; }
.leader-card { border-radius: 33px; border: 1px solid rgba(59,130,246,0.2); background: rgba(10,15,28,0.5); padding: 1.5rem; box-shadow: 0 0 80px 0px rgba(169,206,249,0.2); transition: border-color 0.3s; }
.leader-card:hover { border-color: rgba(59,130,246,0.4); }
.leader-card::after { content: ''; display: block; clear: both; }
.leader-photo-wrap { width: 100%; border-radius: 24px; overflow: hidden; border: 1px solid rgba(59,130,246,0.2); margin-bottom: 1.25rem; }
.leader-photo { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; object-position: center top; display: block; }
.leader-body h2 { font-family: 'Montserrat', sans-serif; color: #fff; font-size: 1.375rem; font-weight: 600; margin-bottom: 0.5rem; line-height: 1.2; }
.leader-body .title { font-family: 'Montserrat', sans-serif; color: var(--primary); letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.6875rem; font-weight: 700; margin-bottom: 1.25rem; }
.leader-body .bio p { color: var(--muted); font-size: 0.875rem; line-height: 1.65; margin-bottom: 0.875rem; }
.leader-body .bio p:last-child { margin-bottom: 0; }

/* Leadership CTA */
.leader-cta { margin-top: 4rem; border-radius: 33px; border: 1px solid var(--primary); background: rgba(10,15,28,0.5); padding: 3rem 1.5rem; text-align: center; box-shadow: 0 0 80px 0px rgba(169,206,249,0.34); }
.leader-cta h3 { font-family: 'Montserrat', sans-serif; color: #fff; font-size: 1.5rem; font-weight: 500; margin-bottom: 0.75rem; line-height: 1.25; }
.leader-cta h3 .accent { color: var(--primary); font-style: italic; }
.leader-cta p { color: var(--muted); font-size: 0.9375rem; line-height: 1.6; margin-bottom: 1.75rem; max-width: 36rem; margin-left: auto; margin-right: auto; }
.leader-cta-buttons { display: flex; flex-direction: column; gap: 0.75rem; align-items: center; justify-content: center; }

@media (min-width: 768px) {
  .leader-card { padding: 2.5rem; }
  .leader-photo-wrap { float: left; width: 360px; margin: 0 2.25rem 1rem 0; }
  .leader-card.reverse .leader-photo-wrap { float: right; margin: 0 0 1rem 2.25rem; }
  .leader-body h2 { font-size: 1.875rem; }
  .leader-body .title { font-size: 0.8125rem; margin-bottom: 1.5rem; }
  .leader-body .bio p { font-size: 1rem; line-height: 1.7; margin-bottom: 1rem; }
  .leader-cta { padding: 4rem 3rem; }
  .leader-cta h3 { font-size: 2.25rem; margin-bottom: 1rem; }
  .leader-cta p { font-size: 1.0625rem; margin-bottom: 2rem; }
  .leader-cta-buttons { flex-direction: row; gap: 1rem; }
}
@media (min-width: 1024px) {
  .leader-photo-wrap { width: 420px; }
}

/* FORM */
.contact-form { margin-bottom: 5rem; }
.contact-form h3 { font-size: 1.5rem; color: #fff; text-align: center; margin-bottom: 0.5rem; }
.contact-form .form-sub { color: var(--muted); font-size: 0.875rem; text-align: center; margin-bottom: 2rem; }
.form-grid { display: grid; gap: 1.25rem; margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.5rem; font-family: 'Poppins', sans-serif; }
.form-input, .form-textarea { width: 100%; background: var(--bg); border: 1px solid rgba(59,130,246,0.2); border-radius: 0.5rem; padding: 0.75rem 1rem; color: #fff; font-family: 'Poppins', sans-serif; font-size: 0.875rem; outline: none; transition: border-color 0.3s; }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(148,163,184,0.5); }
.form-input:focus, .form-textarea:focus { border-color: rgba(59,130,246,0.6); }
.form-textarea { resize: none; }
.form-submit { text-align: center; }

/* FOOTER */
.site-footer { padding: 4rem 1.5rem 3rem; background: var(--bg); border-top: 1px solid rgba(59,130,246,0.1); }
.footer { display: flex; flex-direction: column; align-items: center; gap: 2rem; max-width: 80rem; margin: 0 auto; }
.footer-logo { height: 8rem; width: auto; opacity: 0.9; }
.footer p { font-size: 0.875rem; color: var(--muted); letter-spacing: 0.05em; text-transform: uppercase; }

/* RESPONSIVE */
@media (min-width: 768px) {
  .desktop-nav { display: block; }
  .mobile-header { display: none; }
  .hero { padding: 8rem 0 10rem; }
  .page-header { padding: 7rem 0 5rem; }
  .stats { padding: 4rem 0; }
  .stats-grid { grid-template-columns: 1fr 1fr 1fr; }
  .stat-item { padding: 0; }
  .stat-item + .stat-item { border-top: none; border-left: 1px solid rgba(59,130,246,0.2); }
  .stat-value { font-size: 3.75rem; margin-bottom: 0.75rem; }
  .stat-label { font-size: 0.875rem; }
  .pillars-grid { grid-template-columns: 1fr 1fr 1fr; }
  .cap-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .contact-band { flex-direction: row; padding: 2.5rem 2rem; gap: 2.5rem; }
  .contact-band span { font-size: 1.5rem; }
  .contact-icon { width: 3rem; height: 3rem; }
  .contact-icon svg { width: 1.25rem; height: 1.25rem; }
  .contact-divider-h { display: none; }
  .contact-divider-v { display: block; width: 1px; height: 3rem; background: rgba(59,130,246,0.3); }
  .form-grid { grid-template-columns: 1fr 1fr; }
  .footer-logo { height: 10rem; }
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .map-wrapper, .map-wrapper iframe, .contact-map-card { min-height: 100%; }
}
@media (min-width: 1280px) {
  .cap-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
}
