:root {
  --obsidian: #09090b;
  --ink: #18181b;
  --graphite: #3f3f46;
  --steel: #71717a;
  --ash: #a1a1aa;
  --pebble: #d4d4d8;
  --fog: #ececee;
  --mist: #f4f4f5;
  --snow: #ffffff;
  --brand: #2c6fae;
  --brand-strong: #235a8f;
  --brand-soft: #eaf2fb;
  --accent: #ef7f28;
  --radius-sm: 28px;
  --radius: 36px;
  --radius-hero: 48px;
  --shadow-soft: 0 18px 60px rgba(9, 9, 11, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 8%, rgba(44, 111, 174, 0.12), transparent 28rem),
    radial-gradient(circle at 88% 2%, rgba(239, 127, 40, 0.1), transparent 24rem),
    var(--mist);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

::selection {
  background: var(--brand);
  color: var(--snow);
}

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 100;
  background: var(--obsidian);
  color: var(--snow);
  padding: 0.75rem 1rem;
  border-radius: 0 0 14px 0;
  font-weight: 700;
}

.skip-link:focus {
  left: 0;
}

.container {
  width: min(1152px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.section-tight {
  padding-top: 0;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  padding: 16px 0 0;
}

.nav-shell {
  width: min(1152px, calc(100% - 48px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 14px;
  border: 1px solid rgba(212, 212, 216, 0.75);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 16px 42px rgba(9, 9, 11, 0.06);
  backdrop-filter: blur(14px);
}

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

.brand img {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
}

.brand span {
  display: grid;
  gap: 4px;
}

.brand strong {
  color: var(--obsidian);
  font-size: 15px;
  line-height: 1;
}

.brand small {
  color: var(--steel);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-right: 4px;
}

.nav-links a {
  border-radius: 999px;
  color: var(--graphite);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 14px;
}

.nav-links a:hover {
  background: var(--brand-soft);
  color: var(--brand-strong);
}

.hero {
  padding-top: 118px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  align-items: stretch;
}

.hero-copy {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px;
  border-radius: var(--radius-hero);
  background: var(--snow);
  box-shadow: var(--shadow-soft);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 11ch;
  margin-bottom: 24px;
  color: var(--obsidian);
  font-size: clamp(48px, 7vw, 82px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 22px;
  color: var(--obsidian);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

h2 span {
  color: var(--ash);
  font-weight: 500;
}

h3 {
  margin-bottom: 10px;
  color: var(--obsidian);
  font-size: 22px;
  line-height: 1.25;
}

.lead {
  max-width: 62ch;
  color: var(--graphite);
  font-size: 18px;
  line-height: 1.6;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--brand);
  color: var(--snow);
  box-shadow:
    rgba(255, 255, 255, 0.45) 0 0.5px 0 inset,
    rgba(0, 0, 0, 0.14) 0 8px 16px;
}

.button-primary:hover {
  background: var(--brand-strong);
}

.button-secondary {
  border: 1px solid var(--pebble);
  background: var(--snow);
  color: var(--ink);
}

.button-inverse {
  background: var(--snow);
  color: var(--obsidian);
}

.button-dark {
  background: rgba(255, 255, 255, 0.12);
  color: var(--snow);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-card {
  display: grid;
  gap: 12px;
  padding: 20px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 80% 0%, rgba(239, 127, 40, 0.18), transparent 50%),
    var(--obsidian);
  color: var(--snow);
}

.hero-card div {
  display: grid;
  align-content: end;
  min-height: 148px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
}

.metric {
  font-size: 46px;
  font-weight: 800;
  line-height: 1;
}

.metric-label {
  max-width: 18ch;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.media-feature {
  overflow: hidden;
  border-radius: var(--radius-hero);
  aspect-ratio: 12 / 5;
  box-shadow: var(--shadow-soft);
}

.media-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
}

.story-grid p,
.quote-panel p,
.service-card p,
.cta-band p {
  color: var(--graphite);
  font-size: 16px;
  line-height: 1.68;
}

.quote-panel {
  padding-top: 72px;
}

blockquote {
  margin-bottom: 24px;
  padding-left: 22px;
  border-left: 2px solid var(--pebble);
  color: var(--obsidian);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.35;
}

blockquote span {
  color: var(--ash);
  font-weight: 500;
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--pebble);
  box-shadow: var(--shadow-soft);
}

.stat-band div {
  display: grid;
  gap: 8px;
  padding: 28px;
  background: var(--snow);
}

.stat-band strong {
  color: var(--obsidian);
  font-size: 40px;
  line-height: 1;
}

.stat-band span {
  color: var(--steel);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

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

.service-list {
  display: grid;
  gap: 18px;
}

.service-card {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--fog);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.service-card div {
  padding-right: 24px;
}

.service-card-text {
  grid-template-columns: 1fr;
  padding: 36px 42px;
  background: var(--snow);
}

.service-card-text div {
  padding-right: 0;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 800;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 48px;
  border-radius: var(--radius-hero);
  background:
    radial-gradient(900px 360px at 88% -20%, rgba(239, 127, 40, 0.18), transparent 64%),
    var(--obsidian);
  color: var(--snow);
}

.cta-band h2 {
  max-width: 760px;
  color: var(--snow);
}

.cta-band p {
  max-width: 68ch;
  color: rgba(255, 255, 255, 0.7);
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 0 0 auto;
}

.site-footer {
  padding: 0 0 32px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--steel);
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .hero-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: auto;
  }

  h1 {
    max-width: 12ch;
  }

  .hero-card {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-card div {
    min-height: 132px;
  }

  .quote-panel {
    padding-top: 0;
  }

  .stat-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-actions {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .container,
  .nav-shell {
    width: min(100% - 28px, 1152px);
  }

  .section {
    padding: 68px 0;
  }

  .section-tight {
    padding-top: 0;
  }

  .site-header {
    top: 8px;
    padding-top: 8px;
  }

  .nav-shell {
    align-items: flex-start;
    border-radius: 28px;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    padding-right: 0;
  }

  .nav-links a {
    padding: 9px 10px;
  }

  .hero {
    padding-top: 82px;
  }

  .hero-copy,
  .cta-band {
    padding: 30px;
    border-radius: 34px;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 32px;
  }

  .lead {
    font-size: 16px;
  }

  .button,
  .hero-actions,
  .contact-actions {
    width: 100%;
  }

  .hero-card,
  .stat-band {
    grid-template-columns: 1fr;
  }

  .media-feature {
    aspect-ratio: 5 / 4;
    border-radius: 34px;
  }

  .service-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-card div {
    padding: 0 10px 12px;
  }

  .service-card-text {
    padding: 30px;
  }

  .service-card-text div {
    padding: 0;
  }

  .footer-inner {
    flex-direction: column;
  }
}
