:root {
  --blue: #00a7d8;
  --blue-deep: #008fc7;
  --blue-dark: #006fa3;
  --ink: #13161c;
  --body: #5d6470;
  --muted: #8c94a0;
  --line: #dfe4ea;
  --soft: #f6f7f9;
  --white: #fdfdfd;
  --black-band: #15171b;
  --footer-band: #111f25;
  --shadow: 0 22px 55px rgba(17, 24, 39, .08);
  --font: "Manrope", system-ui, sans-serif;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.55;
}

a { color: inherit; }

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 99;
  background: var(--blue);
  color: white;
  padding: 10px 14px;
  font-weight: 800;
}

.skip-link:focus { top: 16px; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 52px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 clamp(22px, 8vw, 250px);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.logo-seal {
  width: 15px;
  height: 15px;
  border: 2px solid var(--blue);
  border-radius: 999px;
  color: transparent;
  font-size: 0;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.3vw, 38px);
}

.nav-links a,
.nav-cta,
.footer a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 10px;
  font-weight: 800;
}

.nav-links a { color: #4d5560; }
.nav-links a:hover { color: var(--blue); }

.nav-cta {
  padding: 10px 20px;
  border-radius: 7px;
  color: white;
  background: linear-gradient(135deg, var(--blue), #0075ff);
  box-shadow: 0 12px 28px rgba(0, 167, 216, .24);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 575px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: center;
  gap: clamp(52px, 9vw, 180px);
  padding: 92px clamp(22px, 18vw, 265px) 86px;
  background:
    radial-gradient(circle at 91% 48%, rgba(0, 194, 220, .11), transparent 165px),
    linear-gradient(#fff, #fff);
}

.hero-content,
.hero-card,
.media-strip,
.welcome,
.documentary,
.services,
.expertise,
.cta,
.footer { position: relative; }

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 900;
  font-size: 10px;
}

h1,
h2,
h3,
p { margin-top: 0; }

h1,
h2,
h3 {
  font-family: var(--font);
  letter-spacing: -.045em;
  color: var(--ink);
}

h1 {
  max-width: 700px;
  margin-bottom: 26px;
  font-size: clamp(42px, 4.35vw, 64px);
  line-height: .98;
  font-weight: 900;
}

h1 .accent,
h2 .accent { color: var(--blue-deep); }

h2 {
  font-size: clamp(28px, 3.3vw, 46px);
  line-height: 1.04;
  font-weight: 900;
}

h3 {
  font-size: 18px;
  line-height: 1.15;
  font-weight: 900;
}

.hero-content > p:not(.eyebrow) {
  max-width: 610px;
  color: var(--body);
  font-size: 15px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 45px;
  padding: 12px 24px;
  border: 1px solid var(--line);
  border-radius: 7px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 30px rgba(17, 24, 39, .12);
}

.button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), #0075ff);
  color: white;
  box-shadow: 0 16px 32px rgba(0, 157, 216, .25);
}

.button.secondary {
  background: white;
  color: var(--ink);
}

.hero-card {
  width: 275px;
  justify-self: center;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #dce1e7;
  background: #f7f7f8;
  box-shadow: 0 28px 60px rgba(15, 23, 42, .16);
}

.expert-photo {
  position: relative;
  display: grid;
  place-items: end center;
  height: 332px;
  background: linear-gradient(180deg, #f6f6f7 0%, #eeeeef 38%, #bcbec2 65%, #5f6166 100%);
  overflow: hidden;
}

.expert-photo::before {
  content: "Paul Nebb";
  position: absolute;
  left: 10px;
  top: 10px;
  color: #1f2630;
  font-size: 11px;
}

.expert-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.expert-caption {
  margin-top: -58px;
  position: relative;
  z-index: 2;
  padding: 0 18px 18px;
  display: grid;
  gap: 2px;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 11px;
}

.expert-caption strong { color: var(--blue); }
.expert-caption span { color: white; font-weight: 900; }

.media-strip {
  min-height: 150px;
  display: grid;
  grid-template-columns: repeat(6, minmax(80px, 1fr));
  align-items: center;
  gap: 28px;
  padding: 38px clamp(22px, 6vw, 120px);
  background: #111820;
  border-block: 1px solid #1f2a35;
  overflow: hidden;
}

.media-strip p {
  position: absolute;
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  color: #7fdfff;
  text-transform: uppercase;
  letter-spacing: .25em;
  font-weight: 900;
  font-size: 9px;
}

.media-strip span,
.media-strip img {
  justify-self: center;
  margin-top: 28px;
  opacity: .92;
}

.media-strip span {
  color: #f1f6fb;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  font-weight: 600;
}

.media-strip img {
  display: block;
  max-height: 28px;
  width: auto;
  filter: grayscale(1) brightness(0) invert(1);
}

.documentary,
.services,
.expertise,
.footer {
  width: min(910px, calc(100% - 40px));
  margin-inline: auto;
}

.welcome {
  width: min(1080px, calc(100% - 40px));
  margin-inline: auto;
}

.welcome {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 68px;
  align-items: start;
  padding: 72px 0 74px;
}

.welcome-copy {
  max-width: 660px;
}

.welcome-copy p:not(.eyebrow) {
  color: var(--body);
  font-size: 14px;
}

.welcome-copy strong { color: var(--blue-deep); }

.credential-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  align-self: start;
}

.credential-grid div {
  min-height: 92px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  border: 1px solid #dfe4ea;
  border-radius: 8px;
  background: #fafafa;
}

.credential-grid strong {
  display: block;
  color: var(--blue-deep);
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}

.credential-grid span {
  color: #9aa1aa;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 9px;
  font-weight: 900;
}

.resource-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(260px, .75fr) 1fr;
  gap: 34px;
  align-items: start;
  margin-top: 18px;
  padding-top: 8px;
}

.resource-panel h3 { margin-bottom: 10px; }
.resource-panel p { color: var(--body); font-size: 14px; }

.download-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 10px;
}

.download-form label {
  color: var(--body);
  font-size: 11px;
  font-weight: 800;
}

.download-form input {
  width: 100%;
  margin-top: 5px;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  padding: 8px;
  font: inherit;
}

.download-form button {
  min-height: 42px;
  align-self: end;
  border: 0;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--blue), #0075ff);
  color: white;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.documentary {
  width: 100%;
  padding: 78px max(22px, calc((100vw - 910px) / 2)) 82px;
  display: grid;
  grid-template-columns: 410px minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  background: var(--black-band);
}

.poster-card {
  min-height: 240px;
  border: 1px solid #2c3037;
  border-radius: 9px;
  background: #101114;
  display: grid;
  place-items: center;
  box-shadow: 0 26px 55px rgba(0,0,0,.24);
}

.poster-card::before {
  content: "▶";
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: var(--blue);
  color: #101114;
  font-size: 23px;
  padding-left: 3px;
}

.poster-card span,
.poster-card strong { display: none; }

.documentary h2,
.documentary h2 .accent { color: white; }
.documentary h2 .accent { color: var(--blue); }
.documentary p:not(.eyebrow) { color: #bdc5ce; font-size: 14px; }

.services {
  padding: 72px 0 70px;
}

.section-heading { max-width: 680px; margin-bottom: 42px; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.service-grid article {
  min-height: 150px;
  grid-column: span 3;
  padding: 30px;
  border: 1px solid #dfe4ea;
  border-radius: 10px;
  background: white;
  box-shadow: 0 8px 24px rgba(17, 24, 39, .035);
}

.service-grid article:nth-child(n+3) { grid-column: span 2; }

.service-grid h3 { margin-bottom: 12px; }
.service-grid p { color: var(--body); margin-bottom: 0; font-size: 13px; }

.expertise {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 64px;
  padding: 72px 0 76px;
  border-top: 1px solid #f0f2f4;
}

.technical-domains h2 { font-size: 26px; }
.technical-domains p:not(.eyebrow) { color: var(--body); font-size: 13px; }

.domain-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 22px;
}

.domain-tags span {
  padding: 6px 11px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: #fafafa;
  color: #69717d;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 9px;
  font-weight: 900;
}

.focus-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 34px;
  padding: 34px;
  border: 1px solid #dfe4ea;
  border-radius: 10px;
  background: white;
}

.focus-lists > div:first-child { grid-column: 1 / -1; }
.focus-lists h3 { margin-bottom: 16px; }
.focus-lists ul { list-style: none; padding: 0; margin: 0; columns: 2; column-gap: 26px; }
.focus-lists > div:not(:first-child) ul { columns: 1; }
.focus-lists li { break-inside: avoid; margin-bottom: 9px; color: var(--body); font-size: 13px; }
.focus-lists li::before { content: "›"; color: var(--blue); font-weight: 900; margin-right: 8px; }

.cta {
  width: 100%;
  margin: 0;
  padding: 88px 22px 92px;
  display: grid;
  justify-items: center;
  text-align: center;
  background: var(--footer-band);
  color: white;
}

.cta h2 {
  max-width: 650px;
  color: white;
  font-size: clamp(34px, 4vw, 54px);
}

.cta h2 .accent { color: var(--blue); }
.cta p { max-width: 740px; color: #c7d0d7; font-size: 15px; }
.cta .button.secondary { background: transparent; color: white; border-color: rgba(255,255,255,.24); }

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 50px 0 48px;
  color: #777f8b;
}

.footer strong {
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: 12px;
}

.footer p {
  margin: 6px 0 0;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: 10px;
}

.footer nav { display: flex; flex-wrap: wrap; gap: 26px; align-items: center; }
.footer a { color: #777f8b; }
.footer a:hover { color: var(--blue); }

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .topbar { grid-template-columns: 1fr auto; padding-inline: 18px; }
  .nav-links { grid-column: 1 / -1; justify-content: flex-start; overflow-x: auto; padding-bottom: 10px; }
  .hero,
  .welcome,
  .documentary,
  .expertise { grid-template-columns: 1fr; }
  .hero { padding-inline: 24px; }
  .hero-card { justify-self: start; }
  .resource-panel { grid-template-columns: 1fr; }
  .download-form { grid-template-columns: 1fr 1fr; }
  .download-form button { grid-column: 1 / -1; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-grid article,
  .service-grid article:nth-child(n+3) { grid-column: auto; }
}

@media (max-width: 640px) {
  .nav-cta { display: none; }
  .hero { padding-top: 60px; }
  .hero-card { width: 100%; max-width: 300px; }
  .media-strip { grid-template-columns: repeat(3, 1fr); padding-top: 55px; }
  .credential-grid,
  .download-form,
  .service-grid,
  .focus-lists { grid-template-columns: 1fr; }
  .focus-lists > div:first-child { grid-column: auto; }
  .focus-lists ul { columns: 1; }
  .button { width: 100%; }
  .footer { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
