:root {
  --blue: #08a9de;
  --blue-deep: #057da8;
  --navy: #072d41;
  --navy-soft: #153f52;
  --red: #ef1724;
  --yellow: #ffef00;
  --ink: #17313d;
  --muted: #60747d;
  --cloud: #eef8fb;
  --line: #d8e7ec;
  --white: #fff;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -0.035em; }
h1 { font-size: clamp(3rem, 6vw, 5.8rem); margin-bottom: 1.35rem; }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); }
h3 { font-size: 1.35rem; }

.site-header {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.15rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand { display: flex; align-items: center; gap: .85rem; }
.brand img { width: 62px; height: 62px; object-fit: cover; border-radius: 50%; }
.brand span { display: grid; }
.brand strong { color: var(--navy); font-size: 1.2rem; }
.brand small { color: var(--muted); font-size: .72rem; letter-spacing: .02em; }
nav { display: flex; align-items: center; gap: 1.6rem; font-size: .92rem; font-weight: 650; }
nav a:hover { color: var(--blue-deep); }
.nav-cta { padding: .85rem 1.05rem; color: var(--white); background: var(--navy); border-radius: 999px; }
.nav-cta:hover { color: var(--white); background: var(--blue-deep); }

.hero {
  min-height: 740px;
  padding: clamp(4.5rem, 10vw, 8rem) max(1.5rem, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, .65fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 15%, rgba(8,169,222,.55), transparent 28%),
    linear-gradient(118deg, var(--navy) 0 60%, #0a5068 100%);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  width: 420px;
  height: 420px;
  position: absolute;
  right: -180px;
  bottom: -220px;
  border: 54px solid rgba(255,239,0,.35);
  border-radius: 50%;
}
.hero-copy { position: relative; z-index: 1; }
.eyebrow {
  color: var(--blue-deep);
  margin-bottom: 1rem;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.hero .eyebrow, .light { color: #71dafc; }
.hero-lede { max-width: 760px; color: #d8edf5; font-size: clamp(1.05rem, 2vw, 1.32rem); }
.hero-actions { margin: 2rem 0 2.4rem; display: flex; gap: .9rem; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: .85rem 1.2rem; border-radius: 8px; font-weight: 750; }
.button.primary { background: var(--red); color: var(--white); }
.button.primary:hover { background: #cf101c; }
.button.secondary { color: var(--white); border: 1px solid rgba(255,255,255,.4); }
.button.secondary:hover { background: rgba(255,255,255,.08); }
.trust-line { display: flex; flex-wrap: wrap; gap: 1.5rem; color: #bbd8e2; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; }
.trust-line span::before { content: ""; width: 7px; height: 7px; margin-right: .55rem; display: inline-block; background: var(--yellow); border-radius: 50%; }
.hero-card { position: relative; z-index: 1; padding: 2.2rem; background: rgba(255,255,255,.96); color: var(--ink); border-top: 7px solid var(--yellow); box-shadow: 0 30px 80px rgba(0,0,0,.22); }
.hero-card-label { color: var(--red); font-size: .72rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.hero-card h2 { margin: .9rem 0 1.6rem; font-size: 2rem; }
.hero-card ul { margin: 0; padding: 0; list-style: none; }
.hero-card li { padding: .9rem 0; border-top: 1px solid var(--line); font-weight: 650; }
.hero-card li::before { content: "→"; margin-right: .7rem; color: var(--blue-deep); }

.band, .section, .leader-section, .purpose-section, .contact-section, footer { padding-left: max(1.5rem, calc((100vw - var(--max)) / 2)); padding-right: max(1.5rem, calc((100vw - var(--max)) / 2)); }
.intro { padding-top: 5rem; padding-bottom: 5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; background: var(--cloud); align-items: end; }
.intro h2 { margin-bottom: 0; }
.intro > p { color: var(--muted); font-size: 1.15rem; margin-bottom: .3rem; }
.section { padding-top: 7rem; padding-bottom: 7rem; }
.section-heading { max-width: 760px; margin-bottom: 3rem; }
.section-heading > p:last-child { color: var(--muted); font-size: 1.08rem; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-height: 290px; padding: 2rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: transform .2s, box-shadow .2s; }
.service-card:hover { position: relative; z-index: 2; transform: translateY(-5px); box-shadow: 0 18px 50px rgba(7,45,65,.1); background: var(--white); }
.service-card > span { display: block; color: var(--blue-deep); margin-bottom: 3rem; font-weight: 850; }
.service-card p { color: var(--muted); margin-bottom: 0; }
.service-card.featured { color: var(--white); background: var(--blue-deep); }
.service-card.featured > span, .service-card.featured p { color: #cceefa; }

.leader-section { padding-top: 7rem; padding-bottom: 7rem; display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 8vw, 7rem); align-items: center; background: #f7fafb; }
.portrait-wrap { position: relative; }
.portrait-wrap img { width: 100%; aspect-ratio: 4 / 4.25; object-fit: cover; object-position: center top; filter: saturate(.92); position: relative; z-index: 1; }
.portrait-accent { position: absolute; width: 65%; height: 65%; left: -20px; bottom: -20px; background: var(--yellow); }
.credentials { color: var(--blue-deep); font-weight: 800; }
.leader-copy > p:not(.eyebrow):not(.credentials) { color: var(--muted); font-size: 1.06rem; }
.expertise-tags { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.6rem; }
.expertise-tags span { padding: .6rem .8rem; border: 1px solid var(--line); background: var(--white); font-size: .82rem; font-weight: 750; }

.purpose-section { padding-top: 7rem; padding-bottom: 7rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); }
.purpose-section article { padding: clamp(2rem, 5vw, 4.5rem); background: var(--white); }
.purpose-section article:first-child { border-top: 7px solid var(--blue); }
.purpose-section article:last-child { border-top: 7px solid var(--red); }
.purpose-section p:last-child { color: var(--muted); }
.approach { background: var(--navy); color: var(--white); }
.section-heading.compact { margin-bottom: 2rem; }
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.15); }
.steps li { min-height: 250px; padding: 1.7rem; background: var(--navy); }
.steps li > span { display: grid; place-items: center; width: 38px; height: 38px; margin-bottom: 3rem; color: var(--navy); background: var(--yellow); border-radius: 50%; font-weight: 900; }
.steps p { color: #bcd2db; margin-bottom: 0; }

.contact-section { padding-top: 7rem; padding-bottom: 7rem; display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(3rem, 8vw, 7rem); color: var(--white); background: var(--blue-deep); }
.contact-section > div:first-child p:last-child { color: #c7ebf7; max-width: 650px; font-size: 1.08rem; }
.contact-card { padding: 2rem; background: var(--white); color: var(--ink); box-shadow: 0 24px 55px rgba(0,0,0,.14); }
.contact-card > a:not(.button), .contact-card address { padding: 1rem 0; display: grid; border-bottom: 1px solid var(--line); font-style: normal; }
.contact-card small { color: var(--muted); text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }
.contact-card strong { overflow-wrap: anywhere; }
.contact-card address span { color: var(--muted); }
.button.white { width: 100%; margin-top: 1.3rem; background: var(--red); color: var(--white); }

footer { padding-top: 3rem; padding-bottom: 3rem; display: grid; grid-template-columns: 1fr 1.3fr; gap: 2rem; color: #aec1ca; background: #041d29; font-size: .8rem; }
.footer-brand { display: flex; align-items: center; gap: .8rem; }
.footer-brand img { width: 54px; height: 54px; object-fit: cover; border-radius: 50%; }
.footer-brand div { display: grid; }
.footer-brand strong { color: var(--white); }
footer small { grid-column: 1 / -1; padding-top: 1.3rem; border-top: 1px solid rgba(255,255,255,.12); }

@media (max-width: 900px) {
  nav a:not(.nav-cta) { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero-card { max-width: 620px; }
  .intro, .leader-section, .purpose-section, .contact-section { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  footer { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .site-header { padding: .85rem 1rem; }
  .brand img { width: 50px; height: 50px; }
  .brand small { max-width: 180px; }
  .nav-cta { padding: .7rem .8rem; font-size: .78rem; }
  .hero { padding-top: 4.5rem; padding-bottom: 4.5rem; }
  h1 { font-size: 3.2rem; }
  .hero-card { padding: 1.4rem; }
  .intro { padding-top: 4rem; padding-bottom: 4rem; }
  .section, .leader-section, .purpose-section, .contact-section { padding-top: 5rem; padding-bottom: 5rem; }
  .service-grid, .steps { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .service-card > span { margin-bottom: 1.8rem; }
  .steps li { min-height: auto; }
  .steps li > span { margin-bottom: 1.7rem; }
  .contact-card { padding: 1.3rem; }
}
