:root {
  --navy: #050d18;
  --navy-2: #0a1829;
  --ink: #122033;
  --muted: #5b6b80;
  --paper: #f4f7fb;
  --white: #ffffff;
  --blue: #1a6ef5;
  --blue-deep: #0d47c4;
  --orange: #ff7a18;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 22px 50px rgba(5, 13, 24, 0.12);
  --radius: 22px;
  --header: 84px;
  --font-display: "Outfit", sans-serif;
  --font-body: "Figtree", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 92px 0;
}

.eyebrow {
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 12px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-bottom: 14px;
}

.section-head {
  max-width: 680px;
  margin-bottom: 42px;
}

.section-head p {
  color: var(--muted);
}

.section-head.light h2,
.section-head.light p {
  color: var(--white);
}

.section-head.light p.eyebrow {
  color: #8cb6ff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  font-family: var(--font-display);
  transition: 0.25s ease;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--blue-deep);
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(5, 13, 24, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: #000;
  border-radius: 12px;
}

.brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.brand small {
  color: #9ab0c9;
  font-size: 0.75rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  color: #d5e2f0;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--white);
  background: rgba(26, 110, 245, 0.18);
}

.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding-inline: 16px !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-media {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 13, 24, 0.25) 0%, rgba(5, 13, 24, 0.88) 78%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 44px 0 48px;
  color: var(--white);
  max-width: 780px;
}

.hero-mark {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.hero-mark img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  background: #000;
  border-radius: 18px;
  flex-shrink: 0;
}

.hero-mark p {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 5.2rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--orange);
}

.hero-content .eyebrow {
  color: #9cc2ff;
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  margin-bottom: 18px;
}

.hero-lead {
  font-size: 1.12rem;
  color: #d7e4f3;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

main > section:not(.hero),
.site-footer {
  position: relative;
  z-index: 2;
}

.intro,
.why,
.path,
.cta {
  background: var(--white);
}

.strip {
  background: var(--navy);
  color: #c9d8ea;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  font-weight: 600;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.intro p {
  color: var(--muted);
  margin-bottom: 14px;
}

.accent-line {
  color: var(--blue) !important;
  font-weight: 700;
}

.pitch-service {
  background: var(--navy);
  color: var(--white);
}

.pitch-service .eyebrow {
  color: #8cb6ff;
}

.pitch-service h2 {
  max-width: 780px;
}

.pitch-service .pitch-tagline {
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  margin: 12px 0 22px;
}

.pitch-service .pitch-copy {
  max-width: 780px;
}

.pitch-service .pitch-copy p {
  color: #c9d8ea;
  margin-bottom: 14px;
}

.pitch-service .btn {
  margin-top: 8px;
}

.pillars {
  background: var(--paper);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pillar-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.pillar-card.featured {
  background: var(--navy-2);
  color: var(--white);
}

.pillar-card.featured p,
.pillar-card.featured li {
  color: #c7d6e8;
}

.pillar-num {
  display: inline-block;
  color: var(--blue);
  font-family: var(--font-display);
  font-weight: 800;
  margin-bottom: 12px;
}

.pillar-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.pillar-card p {
  color: var(--muted);
  margin-bottom: 16px;
}

.pillar-card li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.pillar-card li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  position: absolute;
  left: 0;
  top: 8px;
}

.pillar-card a {
  display: inline-block;
  margin-top: 16px;
  color: var(--blue);
  font-weight: 700;
}

.pillar-card.featured a {
  color: #8cb6ff;
}

.audience {
  background: var(--navy);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.audience-grid article {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  color: var(--white);
}

.audience-grid p {
  color: #b7c8db;
  margin-top: 10px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.why-grid p {
  color: var(--muted);
  margin-bottom: 18px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}

.check-list li::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #dce9ff;
  border: 5px solid var(--blue);
  position: absolute;
  left: 0;
  top: 4px;
}

.why-photo img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 28px;
}

.why-photo figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 600;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: none;
}

.path-grid li {
  background: var(--paper);
  border-radius: 18px;
  padding: 24px;
}

.path-grid span {
  font-family: var(--font-display);
  color: var(--blue);
  font-weight: 800;
}

.path-grid h3 {
  margin: 10px 0;
}

.path-grid p {
  color: var(--muted);
}

.cta-box {
  background: linear-gradient(135deg, #0b1c33, #12325a);
  color: var(--white);
  border-radius: 30px;
  padding: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cta-box p {
  color: #c9d8ea;
}

.site-footer {
  background: var(--navy);
  color: #c9d8ea;
  padding-top: 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
}

.footer-grid p {
  margin-top: 14px;
}

.footer-grid h4 {
  color: var(--white);
  margin-bottom: 12px;
}

.footer-grid a {
  display: block;
  margin-bottom: 8px;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-tag {
  margin-top: 18px;
  color: #8cb6ff;
  font-weight: 700;
}

.footer-base {
  border-top: 1px solid var(--line);
  padding: 18px 0;
  text-align: center;
  font-size: 0.92rem;
}

.site-nav.open {
  display: flex;
}

@media (max-width: 980px) {
  .strip-grid,
  .intro-grid,
  .pillar-grid,
  .audience-grid,
  .why-grid,
  .path-grid,
  .footer-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: block;
    z-index: 60;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 16px 20px 24px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav.open {
    display: flex;
  }

  .why-photo img {
    height: 280px;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 64px 0;
  }

  .hero-content {
    padding: 20px 0 48px;
  }

  .hero-mark {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero-mark img {
    width: 72px;
    height: 72px;
  }
}
