:root {
  --navy: #071a2b;
  --navy-2: #0d2438;
  --charcoal: #111822;
  --ink: #142033;
  --muted: #607086;
  --line: #d8e0ea;
  --offwhite: #f7f8f5;
  --pale: #eef3f7;
  --blue: #1f88df;
  --blue-dark: #176bb1;
  --gold: #c8aa67;
  --slate: #6f7f91;
  --white: #ffffff;
  --serif: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --sans: 'DM Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --max: 1180px;
  --radius: 10px;
  --radius-lg: 20px;
  --shadow: 0 20px 60px rgba(7, 26, 43, 0.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--offwhite);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 6px;
  z-index: 999;
}
.skip-link:focus { left: 12px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ─── NAV ──────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 26, 43, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 22px;
}
.brand { display: flex; align-items: center; }
.brand-svg { width: 140px; height: auto; display: block; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255,255,255,0.68);
  font-size: 0.9rem;
  font-weight: 500;
}
.site-nav a {
  text-decoration: none;
  transition: color 180ms ease;
}
.site-nav a:hover { color: var(--white); }
.nav-cta {
  padding: 9px 18px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  color: var(--white) !important;
  transition: border-color 180ms ease, background 180ms ease !important;
  font-weight: 600;
}
.nav-cta:hover {
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.06);
}
.nav-toggle { display: none; }

/* ─── LAYOUT ────────────────────────────────────────────── */
.section { padding: 96px 0; }
.section-dark {
  background: radial-gradient(circle at 12% 18%, rgba(31,136,223,0.14), transparent 34%),
              linear-gradient(135deg, var(--navy), #07111e 70%);
  color: var(--white);
}
.section-light { background: var(--offwhite); }
.section-muted { background: var(--pale); }

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}
.eyebrow::before {
  content: "";
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--blue);
  flex-shrink: 0;
}
.eyebrow.dark { color: var(--blue-dark); }
.eyebrow.dark::before { background: var(--blue-dark); }

h1, h2 {
  font-family: var(--serif);
  line-height: 1.06;
  margin: 0;
  letter-spacing: -0.02em;
}
h3 {
  font-family: var(--sans);
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.02em;
  font-weight: 650;
}
h1 { font-size: clamp(2.8rem, 5.5vw, 5.4rem); max-width: 910px; }
h2 { font-size: clamp(2rem, 3.8vw, 3.4rem); max-width: 880px; }
h3 { font-size: 1.22rem; }
p { margin: 0; }

.section-dark h1,
.hero h1 {
  background: linear-gradient(150deg, #ffffff 0%, rgba(190, 218, 255, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── SCROLL ANIMATION ──────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── HERO ──────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 92px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 60% 30%, black, transparent 70%);
  opacity: 0.45;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.55;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 80% 15%, rgba(31,136,223,0.16), transparent),
    radial-gradient(ellipse 40% 50% at 10% 85%, rgba(200,170,103,0.07), transparent);
  animation: glowBreath 14s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes glowBreath {
  0%   { opacity: 0.6; transform: scale(1);    }
  100% { opacity: 1;   transform: scale(1.06); }
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 58px;
  align-items: center;
}
.hero-subtitle {
  max-width: 720px;
  margin-top: 26px;
  color: rgba(255,255,255,0.72);
  font-size: clamp(1.02rem, 1.8vw, 1.16rem);
  line-height: 1.72;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.93rem;
  letter-spacing: 0.01em;
  font-family: var(--sans);
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease, border-color 200ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 10px 32px rgba(31,136,223,0.26);
}
.btn-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 16px 44px rgba(31,136,223,0.34);
}
.btn-secondary {
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--white);
  background: rgba(255,255,255,0.04);
}
.btn-secondary:hover {
  border-color: rgba(255,255,255,0.46);
  background: rgba(255,255,255,0.08);
}
.hero-note {
  margin-top: 20px;
  color: rgba(255,255,255,0.46);
  font-size: 0.92rem;
  max-width: 620px;
  font-style: italic;
}
.hero-visual {
  position: relative;
  min-height: 540px;
}
.signal-ring {
  position: absolute;
  inset: 40px 16px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 40px 100px rgba(0,0,0,0.24);
}
.signal-ring::before {
  content: "";
  position: absolute;
  inset: 58px;
  border-radius: 50%;
  border: 1px solid rgba(31,136,223,0.32);
  box-shadow: 0 0 50px rgba(31,136,223,0.14);
}
.capability-card {
  position: absolute;
  width: min(330px, 88%);
  padding: 20px 22px;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 18px 52px rgba(0,0,0,0.2);
}
.capability-card span {
  display: inline-flex;
  margin-bottom: 9px;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
}
.capability-card strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 7px;
  font-weight: 650;
  letter-spacing: -0.02em;
  font-family: var(--sans);
}
.capability-card p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.card-one { top: 16px; left: 0; }
.card-two { top: 192px; right: 0; }
.card-three { top: 368px; left: 36px; }

/* ─── SECTIONS ───────────────────────────────────────────── */
.section-intro {
  max-width: 830px;
  margin-bottom: 48px;
}
.section-intro.wide { max-width: none; }
.section-intro h2 + p,
.section-intro h2 + .intro-columns { margin-top: 22px; }
.section-intro p { color: var(--muted); font-size: 1.02rem; line-height: 1.74; }
.intro-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  max-width: 1060px;
}
.card-grid { display: grid; gap: 18px; }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }

/* ─── CARDS ──────────────────────────────────────────────── */
.info-card, .audience-card, .engagement-card {
  background: var(--white);
  border: 1px solid rgba(96,112,134,0.14);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(7,26,43,0.05);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.info-card:hover, .audience-card:hover, .engagement-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(7,26,43,0.09);
}
.info-card {
  padding: 30px;
  min-height: 260px;
}
.card-kicker {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  margin-bottom: 36px;
}
.info-card h3, .audience-card h3, .engagement-card h3 { margin-bottom: 12px; }
.info-card p, .audience-card p, .engagement-card p { color: var(--muted); line-height: 1.68; font-size: 0.97rem; }
.accent-blue { border-top: 2.5px solid var(--blue); }
.accent-gold { border-top: 2.5px solid var(--gold); }
.accent-slate { border-top: 2.5px solid var(--slate); }
.audience-card { padding: 28px; }

/* ─── ENGAGEMENT GRID ─────────────────────────────────────── */
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.engagement-card {
  grid-column: span 2;
  padding: 26px;
}
.engagement-card:nth-child(4) { grid-column: span 3; }
.engagement-card:nth-child(5) { grid-column: span 3; }

.featured-fl {
  background: linear-gradient(140deg, var(--navy) 0%, #0a1e32 100%);
  border: 1px solid rgba(31,136,223,0.24);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.featured-fl::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--blue), rgba(31,136,223,0.25));
}
.featured-fl:hover {
  border-color: rgba(31,136,223,0.4);
  box-shadow: 0 16px 44px rgba(7,26,43,0.24), 0 0 0 1px rgba(31,136,223,0.12);
}
.featured-fl h3 { color: var(--white); margin-bottom: 14px; }
.featured-fl p { color: rgba(255,255,255,0.7); line-height: 1.72; font-size: 0.97rem; }
.featured-fl p + p { margin-top: 12px; }
.fl-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}
.fl-label::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 3px rgba(31,136,223,0.18);
}
.fl-suited {
  font-size: 0.9rem !important;
  color: rgba(255,255,255,0.5) !important;
  font-style: italic;
}

/* ─── EXPERIENCE ──────────────────────────────────────────── */
.experience-section { background: linear-gradient(135deg, #071a2b, #0c1b2a); }
.experience-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 52px;
  align-items: start;
}
.experience-grid p { color: rgba(255,255,255,0.62); margin-top: 20px; font-size: 1.02rem; line-height: 1.74; }
.proof-panel {
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  padding: 30px;
  background: rgba(255,255,255,0.035);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.proof-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.proof-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(255,255,255,0.72);
  font-size: 0.96rem;
  line-height: 1.7;
}
.proof-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(31,136,223,0.12);
}

/* ─── TEAM ────────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.team-card {
  background: var(--white);
  border: 1px solid rgba(96,112,134,0.14);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(7,26,43,0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.team-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(7,26,43,0.09);
}
.team-photo-wrap {
  overflow: hidden;
  background: #e6eaee;
}
.team-photo-wrap img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(100%);
  transition: filter 400ms ease, transform 400ms ease;
  display: block;
}
.team-card:hover .team-photo-wrap img {
  filter: grayscale(75%);
  transform: scale(1.02);
}
.team-content { padding: 26px; }
.team-content h3 { margin-bottom: 5px; }
.role {
  font-weight: 600;
  font-size: 0.84rem;
  color: var(--blue-dark) !important;
  margin-bottom: 14px !important;
  letter-spacing: 0.01em;
}
.team-content > p { margin-bottom: 14px; color: var(--muted); line-height: 1.68; font-size: 0.96rem; }
.team-content ul {
  margin: 14px 0 20px;
  padding-left: 16px;
  color: var(--muted);
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
  line-height: 1.62;
}
.team-content a {
  display: inline-flex;
  color: var(--ink);
  font-weight: 650;
  font-size: 0.88rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(20,32,51,0.3);
  padding-bottom: 1px;
  transition: color 160ms ease, border-color 160ms ease;
}
.team-content a:hover { color: var(--blue-dark); border-color: var(--blue-dark); }

/* ─── NETWORK ─────────────────────────────────────────────── */
.network-grid, .contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 52px;
  align-items: center;
}
.network-grid h2, .contact-grid h2 { margin-bottom: 20px; }
.network-grid p, .contact-grid p { color: var(--muted); font-size: 1.02rem; margin-bottom: 14px; line-height: 1.74; }
.tag-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(96,112,134,0.12);
  box-shadow: var(--shadow);
}
.tag-panel span {
  padding: 9px 14px;
  border-radius: 5px;
  background: #f0f4f8;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.88rem;
  border: 1px solid rgba(96,112,134,0.1);
  transition: background 180ms ease, border-color 180ms ease;
  cursor: default;
}
.tag-panel span:hover {
  background: #e4ecf5;
  border-color: rgba(31,136,223,0.22);
}

/* ─── CONTACT ─────────────────────────────────────────────── */
.contact-section { padding: 80px 0; }
.contact-section p { color: rgba(255,255,255,0.68); }
.contact-card {
  padding: 34px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.11);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.email-link {
  display: inline-flex;
  margin-left: 16px;
  color: rgba(255,255,255,0.62);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  transition: color 160ms ease;
}
.email-link:hover { color: var(--white); }

/* ─── CONTACT FORM ────────────────────────────────────────── */
.contact-form { display: grid; gap: 16px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}
.form-group .req { color: var(--blue); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.5;
  transition: border-color 180ms ease, background 180ms ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-group select option { background: var(--navy-2); color: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(31,136,223,0.55);
  background: rgba(255,255,255,0.09);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 4px; width: 100%; }
.form-note {
  text-align: center;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.38);
  margin-top: 4px;
}
.form-note a { color: rgba(255,255,255,0.55); text-decoration: underline; text-underline-offset: 3px; }
.form-note a:hover { color: var(--white); }

/* ─── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: #030910;
  color: rgba(255,255,255,0.72);
  padding: 56px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 0.8fr 0.5fr 1.35fr;
  gap: 40px;
}
.footer-logo-svg { width: 130px; height: auto; margin-bottom: 16px; display: block; }
.footer-brand p, .footer-disclaimer p {
  color: rgba(255,255,255,0.44);
  font-size: 0.86rem;
  line-height: 1.66;
}
.footer-links {
  display: grid;
  gap: 10px;
  align-content: start;
}
.footer-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color 160ms ease;
}
.footer-links a:hover { color: var(--white); }
.footer-disclaimer { display: grid; gap: 10px; }
.copyright {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.34);
  font-size: 0.84rem;
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 6px;
    cursor: pointer;
  }
  .nav-toggle span:not(.sr-only) {
    width: 17px;
    height: 1.5px;
    background: var(--white);
    border-radius: 4px;
  }
  .site-nav {
    position: absolute;
    top: 72px;
    left: 22px;
    right: 22px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: rgba(7,26,43,0.98);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 10px;
    box-shadow: 0 20px 52px rgba(0,0,0,0.32);
  }
  .site-nav.open { display: flex; }
  .hero-grid,
  .experience-grid,
  .network-grid,
  .contact-grid,
  .intro-columns { grid-template-columns: 1fr; }
  .hero-visual { min-height: 460px; }
  .card-grid.three, .card-grid.two, .team-grid { grid-template-columns: 1fr; }
  .engagement-grid { grid-template-columns: 1fr; }
  .engagement-card,
  .engagement-card:nth-child(4),
  .engagement-card:nth-child(5) { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--max)); }
  .section { padding: 64px 0; }
  .hero { padding: 64px 0 56px; }
  h1 { font-size: clamp(2.1rem, 10vw, 2.8rem); }
  h2 { font-size: clamp(1.75rem, 8vw, 2.2rem); }
  h3 { font-size: 1.1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; justify-content: center; }
  .hero-visual { display: none; }
  #hero-canvas { opacity: 0.35; }
  .info-card,
  .audience-card,
  .engagement-card,
  .proof-panel,
  .tag-panel,
  .contact-card { padding: 20px; }
  .email-link { margin-left: 0; margin-top: 12px; display: flex; }
  .team-content { padding: 18px; }
  .team-photo-wrap img { aspect-ratio: 4 / 3; }
  .brand-svg { width: 112px; }
  .section-intro { margin-bottom: 32px; }
  .card-grid { gap: 14px; }
  .engagement-grid { gap: 14px; }
  .team-grid { gap: 16px; }
  .network-grid p { margin-bottom: 20px; }
  .footer-logo-svg { width: 110px; }
  .contact-card { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
}
