:root {
  --ink: #0c1413;
  --deep: #13201e;
  --forest: #1d3a33;
  --teal: #2b8d86;
  --mint: #b8ead7;
  --copper: #c8824c;
  --steel: #5d6b72;
  --paper: #f6f4ef;
  --white: #ffffff;
  --line: rgba(12, 20, 19, 0.14);
  --shadow: 0 28px 80px rgba(12, 20, 19, 0.18);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font, "Inter", sans-serif);
}

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

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

.site-header {
  align-items: center;
  background: rgba(12, 20, 19, 0.36);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  left: 0;
  padding: 18px clamp(20px, 5vw, 72px);
  position: fixed;
  right: 0;
  top: 0;
  transition: background 220ms ease, border-color 220ms ease, padding 220ms ease;
  z-index: 20;
}

.site-header.is-scrolled {
  background: rgba(12, 20, 19, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-block: 12px;
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.hero-actions,
.hero-proof,
.metrics,
.footer {
  align-items: center;
  display: flex;
}

.brand {
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  height: 38px;
  place-items: center;
  width: 38px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.nav {
  gap: clamp(16px, 3vw, 34px);
  font-size: 14px;
  font-weight: 600;
}

.nav a {
  opacity: 0.8;
  transition: opacity 180ms ease, color 180ms ease;
}

.nav a:hover {
  color: var(--mint);
  opacity: 1;
}

.header-cta {
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 17px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.header-cta:hover {
  background: var(--white);
  color: var(--ink);
  transform: translateY(-1px);
}

.hero {
  min-height: 92vh;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 124px clamp(20px, 7vw, 96px) 64px;
}

.hero-media,
.hero-shade {
  inset: 0;
  position: absolute;
  z-index: -2;
}

.hero-media {
  background-image: url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=82");
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
}

.hero-shade {
  background:
    radial-gradient(circle at 72% 24%, rgba(43, 141, 134, 0.34), transparent 27%),
    linear-gradient(90deg, rgba(12, 20, 19, 0.94) 0%, rgba(12, 20, 19, 0.74) 44%, rgba(12, 20, 19, 0.28) 100%);
  z-index: -1;
}

.hero-content {
  color: var(--white);
  max-width: 820px;
}

.hero-entry {
  animation: heroRise 760ms ease both;
}

.eyebrow {
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.hero .eyebrow,
.process .eyebrow,
.cta .eyebrow {
  color: var(--mint);
}

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

h1 {
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.95;
  margin-bottom: 24px;
  max-width: 880px;
}

h2 {
  font-size: clamp(32px, 4.8vw, 58px);
  line-height: 1;
  margin-bottom: 18px;
}

h3 {
  font-size: 22px;
  line-height: 1.15;
  margin-bottom: 12px;
}

p {
  color: var(--steel);
  line-height: 1.7;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 22px);
  max-width: 680px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 32px;
}

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 800;
  min-height: 52px;
  padding: 0 22px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.primary {
  background: var(--mint);
  color: var(--ink);
  box-shadow: 0 16px 34px rgba(184, 234, 215, 0.25);
}

.secondary {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.hero-proof {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 22px;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.hero-proof strong {
  color: var(--mint);
  display: block;
  font-size: 24px;
}

.authority-band,
.services,
.industries {
  padding: clamp(72px, 9vw, 120px) clamp(20px, 6vw, 88px);
}

.section-heading {
  margin: 0 auto 42px;
  max-width: 860px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  font-size: 18px;
}

.signal-grid,
.service-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
}

.signal,
.service-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.signal:hover,
.service-card:hover {
  border-color: rgba(200, 130, 76, 0.42);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.signal-icon {
  color: var(--copper);
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 42px;
}

.split-section {
  background: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  min-height: 640px;
}

.split-image {
  background-image:
    linear-gradient(rgba(12, 20, 19, 0.05), rgba(12, 20, 19, 0.1)),
    url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=1200&q=82");
  background-position: center;
  background-size: cover;
  min-height: 420px;
}

.split-copy {
  align-self: center;
  padding: clamp(48px, 8vw, 96px);
}

.split-copy p {
  font-size: 17px;
}

.metrics {
  border-top: 1px solid var(--line);
  gap: 30px;
  margin-top: 34px;
  padding-top: 28px;
}

.metrics div {
  min-width: 0;
}

.metrics strong {
  display: block;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1;
}

.metrics span {
  color: var(--steel);
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-top: 8px;
  text-transform: uppercase;
}

.services {
  background: #edf2ee;
}

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

.service-card ul {
  border-top: 1px solid var(--line);
  color: var(--deep);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
  list-style: none;
  margin: 22px 0 0;
  padding: 18px 0 0;
}

.service-card li::before {
  content: "";
  background: var(--teal);
  border-radius: 50%;
  display: inline-block;
  height: 6px;
  margin-right: 10px;
  vertical-align: middle;
  width: 6px;
}

.process {
  background: var(--deep);
  color: var(--white);
  padding: clamp(72px, 9vw, 120px) clamp(20px, 6vw, 88px);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: "";
  border: 1px solid rgba(184, 234, 215, 0.14);
  border-radius: 50%;
  height: 520px;
  position: absolute;
  right: -170px;
  top: -170px;
  width: 520px;
}

.process-inner {
  margin: 0 auto;
  max-width: 1180px;
  position: relative;
}

.process h2,
.cta h2 {
  color: var(--white);
}

.process p,
.cta p {
  color: rgba(255, 255, 255, 0.72);
}

.timeline {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.step {
  background: rgba(19, 32, 30, 0.86);
  min-height: 230px;
  padding: 28px;
}

.step span {
  color: var(--mint);
  display: block;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 46px;
}

.industry-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1220px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.industry-strip figure {
  background: var(--ink);
  margin: 0;
  min-height: 310px;
  position: relative;
  overflow: hidden;
}

.industry-strip img {
  height: 100%;
  object-fit: cover;
  opacity: 0.76;
  transition: transform 600ms ease, opacity 220ms ease;
  width: 100%;
}

.industry-strip figure:hover img {
  opacity: 0.94;
  transform: scale(1.06);
}

.industry-strip figcaption {
  bottom: 20px;
  color: var(--white);
  font-weight: 800;
  left: 20px;
  position: absolute;
  right: 20px;
}

.cta {
  align-items: center;
  background:
    linear-gradient(110deg, rgba(12, 20, 19, 0.94), rgba(29, 58, 51, 0.86)),
    url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1600&q=82");
  background-position: center;
  background-size: cover;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  padding: clamp(72px, 9vw, 126px) clamp(20px, 7vw, 96px);
}

.cta-copy {
  max-width: 760px;
}

.contact-panel {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 34px;
}

.contact-panel a {
  color: var(--ink);
  display: block;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.contact-panel a + a {
  margin-top: 18px;
}

.contact-panel p {
  border-top: 1px solid var(--line);
  color: var(--steel);
  margin: 26px 0 0;
  padding-top: 22px;
}

.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.74);
  gap: 20px;
  justify-content: space-between;
  padding: 24px clamp(20px, 5vw, 72px);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .signal-grid,
  .service-grid,
  .timeline,
  .industry-strip,
  .cta,
  .split-section {
    grid-template-columns: 1fr 1fr;
  }

  .split-copy {
    padding: 46px;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding-inline: 16px;
  }

  .brand span:last-child {
    display: none;
  }

  .header-cta {
    font-size: 13px;
    padding-inline: 13px;
  }

  .hero {
    min-height: 86vh;
    padding: 108px 18px 44px;
  }

  .hero-shade {
    background:
      radial-gradient(circle at 70% 18%, rgba(43, 141, 134, 0.3), transparent 34%),
      linear-gradient(90deg, rgba(12, 20, 19, 0.94) 0%, rgba(12, 20, 19, 0.78) 100%);
  }

  h1 {
    font-size: clamp(44px, 14vw, 64px);
  }

  h2 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .hero-proof,
  .metrics {
    align-items: flex-start;
    flex-direction: column;
  }

  .signal-grid,
  .service-grid,
  .timeline,
  .industry-strip,
  .cta,
  .split-section {
    grid-template-columns: 1fr;
  }

  .authority-band,
  .services,
  .industries,
  .process {
    padding-inline: 18px;
  }

  .split-copy {
    padding: 48px 18px;
  }

  .industry-strip figure {
    min-height: 230px;
  }

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