@import url("./resource-cards.css");

:root {
  --big-navy: #060a72;
  --big-navy-light: #1a1e8a;
  --big-navy-deep: #04074f;
  --big-ink: #161616;
  --big-text: #1e1d1d;
  --big-text-muted: #5a5752;
  --big-text-light: #8a837a;
  --big-paper: #ffffff;
  --big-canvas: #f7f5f1;
  --big-stone: #eee9e1;
  --big-rule: rgba(6, 10, 114, 0.12);
  --big-rule-strong: rgba(6, 10, 114, 0.22);
  --big-gold: #8b8172;
  --big-white: #fff;
  --big-cream: #f7f5f1;
  --big-cream-dark: #eee9e1;
  --big-border: rgba(22, 22, 22, 0.08);
  --big-border-dark: rgba(22, 22, 22, 0.16);
  --big-radius: 6px;
  --big-radius-sm: 4px;
  --big-shadow: 0 1px 2px rgba(4, 7, 79, 0.04), 0 8px 24px rgba(4, 7, 79, 0.06);
  --font-heading: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: var(--font-heading);
  --nav-height: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--big-paper);
  color: var(--big-text);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--big-navy);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--big-navy-light);
}

button,
input,
select,
textarea {
  font: inherit;
}

*:focus-visible {
  outline: 2px solid var(--big-navy);
  outline-offset: 3px;
}

.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;
}

.big-skip {
  position: absolute;
  left: 0;
  top: -100px;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--big-navy);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.big-skip:focus {
  top: 0;
  color: #fff;
}

.wrap {
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
}

.reading-wrap {
  width: min(100% - 48px, 760px);
  margin: 0 auto;
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.nav.scrolled {
  border-bottom-color: var(--big-border);
  box-shadow: 0 1px 16px rgba(4, 7, 79, 0.05);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.nav-logo img,
.nav-logo {
  display: block;
  width: auto;
  height: 44px;
  border-radius: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  color: var(--big-text-muted);
  font-size: 14px;
  font-weight: 550;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--big-navy);
}

.nav-links .has-dropdown {
  position: relative;
}

.nav-links .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: -16px;
  min-width: 248px;
  margin: 0;
  padding: 8px 0;
  border: 1px solid var(--big-border);
  border-radius: var(--big-radius-sm);
  background: var(--big-paper);
  box-shadow: var(--big-shadow);
  list-style: none;
}

.nav-links .has-dropdown:hover .dropdown,
.nav-links .has-dropdown:focus-within .dropdown {
  display: block;
}

.dropdown a {
  display: block;
  padding: 10px 18px;
}

.dropdown a:hover {
  background: var(--big-canvas);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 0;
  border-radius: var(--big-radius-sm);
  cursor: pointer;
  font-weight: 650;
  letter-spacing: 0.01em;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.nav-cta {
  min-height: 40px;
  padding: 8px 16px;
  background: var(--big-navy);
  color: #fff !important;
  font-size: 13px;
}

.nav-cta:hover {
  background: var(--big-navy-light);
  color: #fff !important;
}

.btn {
  font-size: 15px;
}

.btn-primary {
  background: var(--big-navy);
  color: #fff;
}

.btn-primary:hover {
  background: var(--big-navy-light);
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline,
.btn-ghost {
  border: 1px solid var(--big-rule-strong);
  background: transparent;
  color: var(--big-navy);
}

.btn-outline:hover,
.btn-ghost:hover {
  border-color: var(--big-navy);
  background: var(--big-paper);
  color: var(--big-navy);
}

.btn-light {
  background: #fff;
  color: var(--big-navy);
}

.btn-light:hover {
  background: var(--big-canvas);
  color: var(--big-navy);
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: transparent;
  color: #fff;
}

.btn-outline-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.nav-toggle {
  display: none;
  padding: 8px;
  border: 0;
  background: transparent;
  color: var(--big-navy);
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--big-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.premium h1,
body.premium h2,
body.premium h3 {
  margin: 0;
  color: var(--big-navy);
  font-family: var(--font-heading);
  font-style: normal;
  font-weight: 650;
  letter-spacing: -0.03em;
}

body.premium h1 {
  max-width: 16ch;
  font-size: clamp(2.15rem, 4.6vw, 3.35rem);
  line-height: 1.12;
}

body.premium h2 {
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  line-height: 1.2;
}

body.premium h3 {
  font-size: 1.05rem;
  letter-spacing: -0.015em;
  line-height: 1.35;
}

body.premium h1 em,
body.premium h2 em {
  font-family: inherit;
  font-style: normal;
  color: inherit;
}

body.premium .page-hero h1,
body.premium .final-cta h2,
body.premium .section-navy h2,
body.premium .section-navy h3 {
  color: #fff;
}

.page-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(560px, 78vh, 760px);
  overflow: hidden;
  background: var(--big-navy-deep);
  color: #fff;
}

.page-hero-media,
.page-hero-overlay,
.page-hero-fade {
  position: absolute;
  inset: 0;
}

.page-hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 7, 79, 0.88) 0%, rgba(6, 10, 114, 0.62) 46%, rgba(4, 7, 79, 0.28) 100%),
    linear-gradient(180deg, rgba(4, 7, 79, 0.18) 0%, rgba(4, 7, 79, 0.55) 100%);
}

.page-hero-fade {
  top: auto;
  height: 96px;
  background: linear-gradient(180deg, transparent, var(--big-paper));
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
  padding: calc(var(--nav-height) + 64px) 0 88px;
}

.page-hero .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.page-hero h1 {
  color: #fff;
}

.hero-lead {
  max-width: 42rem;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-lead p {
  margin: 0 0 12px;
}

.hero-lead p:last-child {
  margin-bottom: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.hero-phone:hover {
  color: #fff;
}

.section {
  padding: 88px 0;
}

.section-tight {
  padding: 64px 0;
}

.section-white {
  background: var(--big-paper);
}

.section-canvas {
  background: var(--big-canvas);
}

.section-navy {
  background: linear-gradient(160deg, var(--big-navy-deep), var(--big-navy));
  color: #fff;
}

.section-navy h2,
.section-navy h3,
.section-navy .eyebrow {
  color: #fff;
}

.section-navy .eyebrow {
  color: rgba(255, 255, 255, 0.62);
}

.section-header {
  max-width: 42rem;
  margin-bottom: 40px;
}

.section-header p,
.lede {
  margin: 14px 0 0;
  color: var(--big-text-muted);
  font-size: 1.05rem;
}

.industry-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.industry-feature-card {
  position: relative;
  display: flex;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--big-radius);
  background: var(--big-navy-deep);
  box-shadow: var(--big-shadow);
  color: #fff;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.industry-feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(4, 7, 79, 0.82) 0%,
    rgba(6, 10, 114, 0.7) 40%,
    rgba(30, 29, 29, 0.75) 100%
  );
}

.industry-feature-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: auto;
  padding: 34px;
}

.industry-feature-eyebrow {
  margin-bottom: 9px;
  color: var(--big-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.industry-feature-title {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.12;
}

.industry-feature-description {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.6;
}

.industry-feature-link {
  margin-top: 18px;
  color: var(--big-cream-dark);
  font-size: 13px;
  font-weight: 700;
}

.industry-feature-card:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(4, 7, 79, 0.16);
}

.industry-feature-card:focus-visible {
  outline: 3px solid var(--big-gold);
  outline-offset: 3px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 64px;
  align-items: center;
}

.split-reverse {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.split-copy p + p {
  margin-top: 14px;
}

.split-copy p {
  margin: 0;
  color: var(--big-text-muted);
  font-size: 1.02rem;
}

.media-frame {
  overflow: hidden;
  border-radius: var(--big-radius);
  box-shadow: var(--big-shadow);
}

.media-frame img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.media-full {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.media-full img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.coverage-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--big-rule);
}

.coverage-item {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid var(--big-rule);
}

.coverage-item:nth-child(even) {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.coverage-item:nth-child(even) .coverage-copy {
  order: -1;
}

.coverage-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--big-radius);
}

.coverage-index {
  display: block;
  margin-bottom: 10px;
  color: var(--big-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.coverage-copy p {
  margin: 12px 0 0;
  color: var(--big-text-muted);
}

.coverage-copy a {
  font-weight: 650;
  text-decoration: none;
}

.explore {
  max-width: 820px;
}

.explore details {
  border-bottom: 1px solid var(--big-rule);
}

.explore details:first-child {
  border-top: 1px solid var(--big-rule);
}

.explore summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  cursor: pointer;
  color: var(--big-navy);
  font-size: 1.02rem;
  font-weight: 650;
  list-style: none;
}

.explore summary::-webkit-details-marker {
  display: none;
}

.explore summary::after {
  content: "";
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  border-right: 1.5px solid var(--big-navy);
  border-bottom: 1.5px solid var(--big-navy);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.explore details[open] summary::after {
  transform: rotate(225deg);
}

.explore .explore-body {
  padding: 0 0 22px;
  color: var(--big-text-muted);
}

.explore .explore-body p,
.explore .explore-body li {
  margin: 0 0 12px;
  font-size: 0.98rem;
}

.explore .explore-body ul,
.explore .explore-body ol {
  margin: 0 0 12px;
  padding-left: 1.15rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 56px;
  align-items: start;
}

.proof-quote {
  padding: 0;
  border: 0;
  border-left: 1px solid var(--big-rule-strong);
  padding-left: 28px;
  background: transparent;
}

.proof-quote p {
  margin: 0 0 20px;
  color: var(--big-text);
  font-size: 1.12rem;
  line-height: 1.7;
}

.proof-quote footer {
  color: var(--big-text-muted);
  font-size: 13px;
}

.proof-quote strong {
  display: block;
  color: var(--big-navy);
  font-size: 14px;
}

.fact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fact-list li {
  padding: 18px 0;
  border-top: 1px solid var(--big-rule);
  color: var(--big-text-muted);
  font-size: 0.98rem;
}

.fact-list li:last-child {
  border-bottom: 1px solid var(--big-rule);
}

.fact-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--big-navy);
  font-size: 14px;
}

.process-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  counter-reset: process;
}

.process-step {
  position: relative;
  padding: 8px 32px 0 0;
  counter-increment: process;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 16px;
  left: 52px;
  border-top: 1px solid var(--big-rule-strong);
}

.process-step h3 {
  margin: 0 0 10px;
  padding-left: 52px;
}

.process-step h3::before {
  content: counter(process, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  color: var(--big-gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.process-step p {
  margin: 0;
  padding-left: 52px;
  padding-right: 16px;
  color: var(--big-text-muted);
  font-size: 0.98rem;
}

.final-cta {
  padding: 96px 0;
  background: var(--big-navy-deep);
  color: #fff;
}

.final-cta h2,
.final-cta .eyebrow {
  color: #fff;
}

.final-cta .eyebrow {
  color: rgba(255, 255, 255, 0.58);
}

.final-cta p {
  max-width: 38rem;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.final-cta .hero-actions {
  margin-top: 32px;
}

.final-cta .hero-phone {
  color: rgba(255, 255, 255, 0.88);
}

.sticky-cta {
  display: none;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.team-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0;
  border-top: 1px solid var(--big-navy);
}

.team-mark {
  display: grid;
  width: 100%;
  height: 168px;
  place-items: center;
  margin-bottom: 22px;
  background: var(--big-navy-deep);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 650;
  letter-spacing: 0.12em;
}

.team-card h3 {
  margin-bottom: 4px;
}

.team-role {
  margin: 0 0 14px;
  color: var(--big-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-card p {
  margin: 0;
  color: var(--big-text-muted);
  font-size: 0.95rem;
}

.team-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
  padding-top: 18px;
  font-size: 14px;
  font-weight: 650;
}

.team-contact a {
  text-decoration: none;
}

.office-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 48px;
  padding-top: 8px;
}

.office-panel p {
  margin: 0 0 12px;
  color: var(--big-text-muted);
}

.office-facts {
  padding: 28px 0 0;
  border-top: 1px solid var(--big-rule);
  color: var(--big-text);
  font-size: 0.98rem;
}

.office-facts a {
  font-weight: 650;
  text-decoration: none;
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.related-links a {
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.footer {
  padding: 64px 0 28px;
  background: var(--big-navy-deep);
  color: rgba(255, 255, 255, 0.68);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo,
.footer-brand img {
  width: auto;
  height: 48px;
  margin-bottom: 14px;
  border-radius: 4px;
}

.footer h2,
.footer h4 {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.46);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer p,
.footer a,
.footer li {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.footer a {
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
}

.footer ul,
.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer li + li,
.footer-links li + li {
  margin-top: 8px;
}

.footer-nap {
  margin: 0;
  line-height: 1.7;
}

.footer-nap a {
  color: rgba(255, 255, 255, 0.68);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}

.footer-bottom a,
.footer-bottom span {
  color: rgba(255, 255, 255, 0.5);
}

.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1024px) {
  .split,
  .split-reverse,
  .coverage-item,
  .coverage-item:nth-child(even),
  .proof-grid,
  .office-panel,
  .team-grid,
  .process-row {
    grid-template-columns: 1fr;
  }

  .coverage-item:nth-child(even) .coverage-copy {
    order: 0;
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

  .process-step {
    padding: 0 0 28px;
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: fixed;
    inset: var(--nav-height) 0 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 20px 24px 32px;
    overflow-y: auto;
    background: var(--big-paper);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 12px 0;
  }

  .nav-links .dropdown {
    position: static;
    display: block;
    min-width: 0;
    padding: 0 0 8px 14px;
    border: 0;
    box-shadow: none;
  }

  .nav-toggle {
    display: block;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-hero {
    min-height: 640px;
    align-items: flex-end;
  }

  .page-hero-content {
    padding-top: calc(var(--nav-height) + 40px);
    padding-bottom: 72px;
  }

  .page-hero h1 {
    max-width: 14ch;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

@media (max-width: 700px) {
  .wrap,
  .reading-wrap,
  .page-hero-content {
    width: min(100% - 32px, 1180px);
  }

  .section,
  .final-cta {
    padding: 64px 0;
  }

  .team-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  body.premium.has-sticky-cta {
    padding-bottom: 76px;
  }

  .sticky-cta {
    position: fixed;
    right: 16px;
    bottom: 14px;
    left: 16px;
    z-index: 900;
    display: inline-flex;
    min-height: 46px;
    box-shadow: 0 10px 30px rgba(4, 7, 79, 0.28);
  }
}

@media (max-width: 700px) {
  .industry-feature-grid {
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .industry-feature-card {
    min-height: 0;
  }

  .industry-feature-content {
    padding: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }

  .hero-video,
  .page-hero-video {
    display: none;
  }
}


/* Shared editorial blocks also appear inside the original homepage. */
#latest-resources { background: #fff; }
#latest-resources h2, #related-resources h2 { font-family: var(--font-heading); font-weight: 700; letter-spacing: -.035em; }
