:root {
  --navy: #07133F;
  --blue: #0668E8;
  --blue-dark: #034DBD;
  --body: #536381;
  --line: #D8E1EF;
  --soft: #F6F9FD;
  --white: #FFFFFF;
  --content-w: 1010px;
  --gutter: 55px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

@media (max-width: 640px) {
  :root { --gutter: 20px; }
}
@media (max-width: 380px) {
  :root { --gutter: 16px; }
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
svg { fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--navy); color: #fff;
  padding: 10px 16px; z-index: 100;
}
.skip-link:focus { left: var(--gutter); }

/* ---------- Header ---------- */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1122px;
  margin: 0 auto;
  padding: 17px var(--gutter) 17px;
  position: relative;
}
.brand {
  font-size: 31px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
}
.nav a:hover { color: var(--blue); }
.actions { display: flex; align-items: center; gap: 18px; }
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  font-size: 14.5px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 8px;
  white-space: nowrap;
}
.btn-cta:hover { background: var(--blue-dark); }
.menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--navy);
  padding: 6px;
}
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  flex-direction: column;
  gap: 16px;
  padding: 20px var(--gutter) 24px;
  z-index: 50;
  border-top: 1px solid var(--line);
}
.mobile-nav a { font-size: 15px; font-weight: 500; }
.mobile-nav .btn-cta { justify-content: center; margin-top: 4px; }

@media (max-width: 860px) {
  .nav { display: none; }
  .menu-btn { display: inline-flex; }
  .actions .btn-cta { display: none; }
  .mobile-nav:not([hidden]) { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  max-width: 1122px;
  margin: 0 auto;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 26px var(--gutter) 40px;
  min-height: 340px;
}
.hero-copy { position: relative; z-index: 2; max-width: 560px; }
.hero-copy h1 {
  margin: 0 0 18px;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1.3px;
}
.hero-copy h1 .navy { color: var(--navy); }
.hero-copy h1 .blue { color: var(--blue); }
.hero-sub {
  margin: 0 0 26px;
  font-size: 15px;
  line-height: 1.35;
  color: var(--body);
  max-width: 500px;
}
.hero-cta-row {
  display: flex;
  gap: 14px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 22px;
  border-radius: 8px;
  border: none;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--blue-dark); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: var(--blue);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 22px;
  border-radius: 8px;
  border: 1.5px solid var(--line);
  white-space: nowrap;
}
.btn-secondary:hover { border-color: var(--blue); }
.trust-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--navy);
  font-weight: 500;
}
.trust-row li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-right: 18px;
  border-right: 1px solid var(--line);
}
.trust-row li:last-child { border-right: none; padding-right: 0; }
.trust-row svg { width: 17px; height: 17px; color: var(--blue); flex-shrink: 0; }

.hero-art {
  position: relative;
  z-index: 1;
  height: 385px;
  margin: -20px calc(var(--gutter) * -1) 0 0;
}
.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.5) 12%, #000 30%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.5) 12%, #000 30%);
}
.hero-art-label {
  position: absolute;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  line-height: 1.9;
  color: var(--navy);
}
.hero-art-label--top { top: 88px; left: 0; }
.hero-art-label--bottom { bottom: 42px; right: 0; text-align: left; color: #fff; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 18px; padding-bottom: 20px; }
  .hero-art { display: none; }
  .hero-copy { max-width: none; }
  .hero-copy h1 { font-size: 34px; letter-spacing: -1px; }
}
@media (max-width: 480px) {
  .hero-copy h1 { font-size: 28px; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { width: 100%; }
}

/* ---------- Audience cards ---------- */
.cards {
  max-width: 1122px;
  margin: 0 auto;
  padding: 24px var(--gutter) 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 14px;
  min-height: 365px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, var(--soft) 100%);
  display: flex;
}
.card-copy {
  position: relative;
  z-index: 2;
  padding: 26px 28px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.eyebrow {
  margin: 0 0 10px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--blue);
}
.card h2 {
  margin: 0 0 20px;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.25;
  max-width: 78%;
  color: var(--navy);
}
.feature-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 22px; }
.feature-list li { display: flex; align-items: flex-start; gap: 12px; max-width: 82%; }
.feature-list svg { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; margin-top: 1px; }
.feature-list strong { display: block; font-size: 14.5px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.feature-list span { display: block; font-size: 13px; line-height: 1.4; color: var(--body); }
.card-cta { margin-top: auto; width: 100%; }

.card-art {
  position: absolute;
  top: 168px;
  right: 0;
  bottom: 78px;
  width: 44%;
  z-index: 1;
}
.card-art--ops { top: 205px; }
.card-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.5) 25%, #000 60%), linear-gradient(to bottom, #000 80%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.5) 25%, #000 60%), linear-gradient(to bottom, #000 80%, transparent 100%);
  mask-composite: intersect;
}

@media (max-width: 900px) {
  .cards { grid-template-columns: 1fr; }
  .card { min-height: 0; }
  .card h2, .feature-list li { max-width: 100%; }
  .card-art { display: none; }
}

/* ---------- Specialization strip ---------- */
.specialization {
  max-width: 1122px;
  margin: 0 auto;
  padding: 34px var(--gutter) 30px;
}
.specialization-label {
  margin: 0 0 18px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--blue);
}
.specialization-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.specialization-grid li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border-right: 1px solid var(--line);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}
.specialization-grid li:first-child { padding-left: 0; }
.specialization-grid li:last-child { border-right: none; }
.specialization-grid svg { width: 26px; height: 26px; color: var(--blue); flex-shrink: 0; }

@media (max-width: 900px) {
  .specialization-grid { grid-template-columns: 1fr 1fr; gap: 20px 12px; }
  .specialization-grid li { border-right: none; padding: 0; }
}

/* ---------- Get Ahead ---------- */
.get-ahead {
  position: relative;
  background: var(--soft);
  overflow: hidden;
  margin-top: 10px;
}
.get-ahead-art {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 360px;
  z-index: 1;
}
.get-ahead-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  -webkit-mask-image: linear-gradient(to right, #000 30%, transparent 92%);
  mask-image: linear-gradient(to right, #000 30%, transparent 92%);
}
.get-ahead-inner {
  position: relative;
  z-index: 2;
  max-width: 1122px;
  margin: 0 auto;
  padding: 70px var(--gutter);
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 40px;
  align-items: start;
}
.get-ahead-copy { padding-top: 10px; padding-left: 300px; }
.rule {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--blue);
  margin-bottom: 18px;
  border-radius: 2px;
}
.get-ahead-copy h2 {
  margin: 0 0 14px;
  font-size: 34px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.8px;
}
.get-ahead-sub {
  margin: 0 0 34px;
  font-size: 15px;
  line-height: 1.4;
  color: var(--body);
  max-width: 380px;
}
.get-ahead-list { display: flex; flex-direction: column; gap: 22px; }
.get-ahead-list li { display: flex; align-items: flex-start; gap: 14px; }
.get-ahead-list svg { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.get-ahead-list strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--blue);
  margin-bottom: 3px;
}
.get-ahead-list span { display: block; font-size: 13.5px; color: var(--body); }

.get-ahead-inner > * { min-width: 0; }

@media (max-width: 980px) {
  .get-ahead-inner { grid-template-columns: 1fr; padding-top: 44px; padding-bottom: 44px; }
  .get-ahead-copy { padding-left: 0; }
  .get-ahead-art { position: static; width: 100%; height: 220px; margin-bottom: 20px; }
  .get-ahead-art img { mask-image: linear-gradient(to bottom, #000 60%, transparent 100%); -webkit-mask-image: linear-gradient(to bottom, #000 60%, transparent 100%); }
}

/* ---------- Pipeline card ---------- */
.pipeline-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 12px 32px rgba(7, 19, 63, 0.06);
}
.pipeline-eyebrow {
  margin: 0 0 6px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--blue);
}
.pipeline-desc {
  margin: 0 0 20px;
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--body);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.field { display: flex; flex-direction: column; margin-bottom: 14px; }
.field-row .field { margin-bottom: 0; }
.field label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.field label .optional { font-weight: 400; color: var(--body); }
.field input,
.field select {
  font-family: var(--font);
  font-size: 13.5px;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  background: #fff;
  outline: none;
  width: 100%;
}
.field input:focus,
.field select:focus { border-color: var(--blue); }
.field input::placeholder { color: #9AA7BD; }
.field small { margin-top: 6px; font-size: 11.5px; color: var(--body); line-height: 1.3; }
.input-icon { position: relative; }
.input-icon svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  color: var(--body);
}
.input-icon input { padding-left: 34px; }

.segmented {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.segmented input { position: absolute; opacity: 0; pointer-events: none; }
.segmented label {
  margin: 0;
  text-align: center;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
  padding: 11px 4px;
  border-left: 1px solid var(--line);
  cursor: pointer;
}
.segmented label[for="pf-clr-none"] { border-left: none; }
.segmented input:checked + label { background: var(--blue); color: #fff; }

.pipeline-submit {
  width: 100%;
  margin-top: 6px;
  padding: 15px 22px;
}
.pipeline-privacy {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin: 14px 0 0;
  font-size: 12px;
  color: var(--body);
}
.pipeline-privacy svg { width: 14px; height: 14px; color: var(--body); flex-shrink: 0; }

@media (max-width: 560px) {
  .field-row { grid-template-columns: 1fr; }
  .segmented { grid-template-columns: repeat(2, 1fr); }
  .segmented label[for="pf-clr-tssci"] { border-left: none; }
}

/* ---------- Footer ---------- */
.site-footer {
  max-width: 1122px;
  margin: 0 auto;
  padding: 30px var(--gutter) 40px;
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 30px;
}
.footer-left { display: flex; align-items: center; gap: 30px; }
.footer-brand { font-size: 22px; font-weight: 800; color: var(--navy); }
.footer-left nav, .footer-right nav { display: flex; gap: 22px; font-size: 14px; font-weight: 500; color: var(--navy); }
.footer-rule { flex: 1; height: 1px; background: var(--line); }
.footer-right { display: flex; align-items: center; gap: 22px; }
.footer-divider { width: 1px; height: 18px; background: var(--line); }
.footer-social { display: flex; align-items: center; gap: 14px; }
.footer-social svg { width: 18px; height: 18px; fill: var(--navy); stroke: none; }
.footer-social a:hover svg { fill: var(--blue); }

@media (max-width: 860px) {
  .footer-top { flex-direction: column; align-items: flex-start; gap: 18px; }
  .footer-rule { display: none; }
  .footer-right { flex-wrap: wrap; }
}
