@font-face {
  font-family: "Manrope";
  src: url("./fonts/manrope-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("./fonts/manrope-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("./fonts/manrope-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("./fonts/manrope-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("./fonts/manrope-800.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-primary: #0b4ea2;
  --color-primary-dark: #083a79;
  --color-accent: #33b6cf;
  --color-accent-soft: #e7f8fb;
  --color-text: #163252;
  --color-text-soft: #54687f;
  --color-border: #d7e3f2;
  --color-surface: #ffffff;
  --color-surface-alt: #f5f9fc;
  --shadow-soft: 0 20px 60px rgba(11, 78, 162, 0.08);
  --shadow-card: 0 12px 30px rgba(9, 59, 123, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--color-text);
  background: #fff;
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link,
.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;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  padding: 0.75rem 1rem;
  background: var(--color-primary);
  color: #fff;
  border-radius: 999px;
  z-index: 1000;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.narrow {
  width: min(calc(100% - 2rem), 860px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(215, 227, 242, 0.7);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.brand-logo {
  width: auto;
  height: 88px;
  max-width: min(42vw, 320px);
  object-fit: contain;
  flex-shrink: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.main-nav a {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  color: var(--color-text-soft);
  font-weight: 700;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active {
  background: var(--color-accent-soft);
  color: var(--color-primary);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: #fff;
  padding: 0.85rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
  border-radius: 999px;
}

.nav-toggle span + span {
  margin-top: 0.35rem;
}

.nav-toggle:focus-visible {
  border-color: var(--color-accent);
}

.hero-section,
.page-hero {
  position: relative;
  overflow: clip;
}

.hero-section::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 38vw;
  height: 38vw;
  min-width: 280px;
  min-height: 280px;
  background: radial-gradient(circle, rgba(51, 182, 207, 0.14) 0%, rgba(51, 182, 207, 0) 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 3rem;
  align-items: center;
  padding: 5.5rem 0 4.5rem;
}

.page-hero .container {
  padding: 4.8rem 0 2.2rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--color-primary);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(1.9rem, 3.5vw, 3.15rem);
  max-width: 16ch;
}

h2 {
  font-size: clamp(1.5rem, 2.15vw, 2.15rem);
  max-width: 20ch;
}

h3 {
  font-size: 1.3rem;
}

.hero-lead,
.rich-text p,
.info-card p,
.value-card p,
.service-detail p,
.audience-card p,
.contact-card p,
.contact-card a,
.footer-copy,
.legal-box p,
.highlight-box p,
.cta-strip p,
.job-teaser p {
  color: var(--color-text-soft);
}

.hero-lead {
  font-size: 1.04rem;
  max-width: 60ch;
  margin: 1.5rem 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--color-primary), #176ad4);
  color: #fff;
  box-shadow: 0 16px 35px rgba(11, 78, 162, 0.2);
}

.button-secondary {
  border-color: var(--color-border);
  background: #fff;
  color: var(--color-primary);
}

.cta-strip .button-primary,
.job-teaser .button-secondary {
  background: #fff;
  color: var(--color-primary);
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 35px rgba(4, 25, 54, 0.16);
}

.cta-strip .button-primary:hover,
.cta-strip .button-primary:focus-visible,
.job-teaser .button-secondary:hover,
.job-teaser .button-secondary:focus-visible {
  background: #f3fbff;
  color: var(--color-primary-dark);
}

.card-surface,
.info-card,
.value-card,
.highlight-box,
.service-detail,
.contact-card,
.legal-box,
.careers-box {
  background: var(--color-surface);
  border: 1px solid rgba(215, 227, 242, 0.9);
  box-shadow: var(--shadow-card);
}

.hero-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.hero-visual img {
  aspect-ratio: 4 / 4.5;
  width: 100%;
  object-fit: cover;
}

.hero-panel {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.hero-panel strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.hero-panel p {
  margin: 0;
  color: var(--color-text-soft);
}

.hero-facts,
.check-list,
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-facts li,
.check-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--color-text-soft);
}

.hero-facts li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 6px rgba(51, 182, 207, 0.12);
}

.section {
  padding: 2rem 0 5.5rem;
}

.section-alt {
  background: linear-gradient(180deg, #f9fcff 0%, #f3f8fc 100%);
}

.section-heading {
  margin-bottom: 2rem;
}

.intro-grid,
.about-grid,
.contact-layout,
.careers-box,
.cta-strip,
.job-teaser,
.split-callout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.intro-grid,
.about-grid,
.cta-strip,
.job-teaser,
.split-callout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid {
  display: grid;
  gap: 1.35rem;
}

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.four-up {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card,
.value-card,
.service-detail,
.job-card,
.contact-card,
.highlight-box,
.legal-box {
  border-radius: var(--radius-md);
  padding: 1.7rem;
}

.info-card,
.value-card,
.service-detail,
.contact-card,
.audience-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.info-card:hover,
.value-card:hover,
.service-detail:hover,
.job-card:hover,
.contact-card:hover,
.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(51, 182, 207, 0.4);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.audience-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 1.2rem;
  align-items: stretch;
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(215, 227, 242, 0.9);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.audience-card img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  border-radius: 18px;
}

.cta-strip,
.job-teaser,
.split-callout {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  color: #fff;
  box-shadow: 0 20px 50px rgba(8, 58, 121, 0.18);
}

.cta-strip .eyebrow,
.job-teaser .eyebrow,
.split-callout .eyebrow,
.cta-strip p,
.job-teaser p,
.split-callout p,
.cta-strip h2,
.job-teaser h2,
.split-callout h2 {
  color: #fff;
}

.job-teaser .button-secondary,
.split-callout .button-primary {
  justify-self: start;
}

.cta-strip .button-primary {
  justify-self: end;
  align-self: center;
}

.job-teaser .button-secondary {
  justify-self: end;
  align-self: center;
}

.service-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
}

.contact-layout {
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
}

.job-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(215, 227, 242, 0.9);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.job-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.job-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: var(--color-accent-soft);
  color: var(--color-primary);
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
}

.job-card .check-list {
  margin-top: 1rem;
}

.job-contact {
  margin-bottom: 0;
  font-weight: 800;
}

.job-contact a {
  color: var(--color-primary);
}

.contact-panel {
  padding-top: 1rem;
}

.contact-card-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-form {
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.form-header {
  margin-bottom: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.2rem;
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  font-weight: 700;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: #fff;
  color: var(--color-text);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(51, 182, 207, 0.16);
}

.field-error {
  min-height: 1.2rem;
  margin: 0;
  color: #b42318;
  font-size: 0.92rem;
}

.form-status {
  margin: 1rem 0 0;
  color: var(--color-primary);
  font-weight: 700;
}

.highlight-box {
  background: linear-gradient(180deg, #fff 0%, #f6fbff 100%);
}

.legal-note {
  display: inline-flex;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: #fff2e2;
  color: #9b5c00;
  font-weight: 700;
}

.legal-box h2 {
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  max-width: none;
  line-height: 1.25;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.legal-box h3 {
  margin: 1.15rem 0 0.55rem;
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.legal-box h4 {
  margin: 1rem 0 0.45rem;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--color-text);
}

.legal-box h2 + p,
.legal-box p + h2 {
  margin-top: 1rem;
}

.legal-box ul {
  margin: 0.8rem 0 1rem;
}

.legal-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--color-text-soft);
}

.credits-section {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.legal-list li + li {
  margin-top: 0.85rem;
}

.legal-list a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.legal-list a:hover,
.legal-list a:focus-visible {
  color: var(--color-primary-dark);
}

.site-footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(215, 227, 242, 0.9);
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.8fr));
  gap: 2rem;
}

.footer-brand {
  margin-bottom: 1rem;
}

.site-footer h3 {
  margin-bottom: 0.8rem;
}

.footer-brand .brand-logo {
  height: 104px;
  max-width: min(60vw, 360px);
}

.footer-list li + li {
  margin-top: 0.2rem;
}

.footer-list strong {
  color: var(--color-text);
}

.footer-list a {
  color: var(--color-text-soft);
}

.footer-list a:hover,
.footer-list a:focus-visible {
  color: var(--color-primary);
}

@media (max-width: 1080px) {
  .four-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .intro-grid,
  .about-grid,
  .contact-layout,
  .careers-box,
  .cta-strip,
  .job-teaser,
  .split-callout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .three-up,
  .two-up,
  .service-layout,
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .header-inner {
    min-height: 80px;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }

  .main-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.75rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    border-radius: 16px;
  }

  .hero-grid {
    padding-top: 4rem;
  }

  .audience-card {
    grid-template-columns: 1fr;
  }

  .audience-card img {
    min-height: 220px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 0.98rem;
  }

  .brand-logo {
    height: 64px;
    max-width: min(56vw, 260px);
  }

  h1 {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
  }

  h2 {
    font-size: clamp(1.3rem, 6.2vw, 1.8rem);
  }

  .section {
    padding: 1rem 0 4rem;
  }

  .hero-grid,
  .page-hero .container {
    padding-top: 3rem;
  }

  .three-up,
  .two-up,
  .four-up,
  .service-layout,
  .audience-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .hero-facts {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .cta-strip,
  .job-teaser,
  .split-callout,
  .contact-form {
    padding: 1.5rem;
  }

  .cta-strip .button-primary {
    justify-self: stretch;
  }

  .job-teaser .button-secondary {
    justify-self: stretch;
  }

  .job-card-head {
    flex-direction: column;
    align-items: flex-start;
  }
}
