:root {
  --ink: #101719;
  --ink-2: #253236;
  --muted: #607074;
  --paper: #f7f8f4;
  --white: #ffffff;
  --line: #dfe5df;
  --teal: #0f8f8c;
  --teal-dark: #0a686a;
  --amber: #d7a63f;
  --green: #718d4d;
  --shadow: 0 18px 60px rgba(13, 27, 30, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0) 420px),
    var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(16, 23, 25, 0.72), rgba(16, 23, 25, 0));
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  font-size: 0.94rem;
}

.nav a {
  opacity: 0.9;
}

.nav a:hover,
.nav a:focus-visible {
  opacity: 1;
}

.nav-cta {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
}

.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  z-index: -2;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(11, 17, 19, 0.94) 0%, rgba(11, 17, 19, 0.74) 40%, rgba(11, 17, 19, 0.2) 72%),
    linear-gradient(180deg, rgba(11, 17, 19, 0.15), rgba(11, 17, 19, 0.46));
}

.hero-content {
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding: 104px 0 56px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 730px;
  font-size: clamp(2.65rem, 4.7vw, 4.45rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
}

h3 {
  font-size: 1.22rem;
}

.hero-copy {
  max-width: 650px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.26rem);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-proof span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  font-weight: 750;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 8px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

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

.button.primary {
  color: var(--white);
  background: var(--teal);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--teal-dark);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip span {
  min-height: 78px;
  display: grid;
  place-items: center;
  padding: 16px;
  background: var(--white);
  color: var(--ink-2);
  font-weight: 800;
  text-align: center;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 112px) 0;
  scroll-margin-top: 24px;
}

.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 7vw, 88px);
  align-items: start;
}

.intro-copy > p,
.fit-list p,
.service-card p,
.example-card p,
.timeline p,
.faq p {
  color: var(--muted);
}

.intro-copy p {
  margin-top: 0;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.metric-row strong {
  min-height: 86px;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--ink-2);
  line-height: 1.15;
}

.section-heading {
  max-width: 760px;
}

.services {
  border-top: 1px solid var(--line);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.service-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(16, 23, 25, 0.04);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 143, 140, 0.26);
  box-shadow: 0 16px 40px rgba(13, 27, 30, 0.08);
}

.service-card.accent {
  border-color: rgba(15, 143, 140, 0.38);
  background: #f0f8f5;
}

.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 52px;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
}

.service-card:nth-child(2) .icon,
.service-card:nth-child(5) .icon {
  background: var(--green);
}

.service-card:nth-child(3) .icon,
.service-card:nth-child(6) .icon {
  background: var(--teal);
}

.service-card p {
  margin-bottom: 0;
}

.examples {
  width: 100%;
  max-width: none;
  padding-right: 0;
  padding-left: 0;
  background: var(--ink);
  color: var(--white);
}

.examples .section-heading {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.examples h2 {
  max-width: 880px;
}

.example-grid {
  width: min(1180px, calc(100% - 36px));
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 18px;
  margin: 38px auto 0;
}

.example-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #162123;
}

.example-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.example-card div {
  padding: 24px;
}

.card-kicker {
  margin: 0 0 10px;
  color: var(--amber) !important;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.example-card h3 {
  font-size: 1.36rem;
}

.example-card p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.example-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.example-card li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

.example-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 2px;
  background: var(--teal);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 8vw, 96px);
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-band {
  width: min(1180px, calc(100% - 36px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  margin-top: clamp(34px, 5vw, 64px);
  margin-bottom: clamp(34px, 5vw, 64px);
}

.proof-band div {
  display: grid;
  gap: 36px;
  min-height: 170px;
  padding: 24px;
  background: var(--white);
}

.proof-band strong {
  color: var(--teal);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
}

.proof-band span {
  color: var(--ink-2);
  font-size: 1.15rem;
  font-weight: 850;
  line-height: 1.2;
}

.fit-list {
  display: grid;
  gap: 12px;
}

.fit-list p {
  margin: 0;
  padding: 18px 0 18px 26px;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.fit-list p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 27px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--amber);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.timeline article {
  padding: 24px;
  border-left: 3px solid var(--teal);
  background: rgba(255, 255, 255, 0.58);
}

.timeline span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 44px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
}

.cta-band {
  width: min(1180px, calc(100% - 36px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(34px, 6vw, 58px);
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.cta-band h2 {
  max-width: 780px;
}

.faq {
  max-width: 900px;
}

.faq details {
  border-top: 1px solid var(--line);
  background: transparent;
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  padding: 22px 0;
  font-weight: 850;
  font-size: 1.08rem;
}

.faq p {
  margin: 0;
  padding: 0 0 22px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 34px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.74);
  background: var(--ink);
}

.site-footer p {
  margin: 4px 0 0;
  font-size: 0.9rem;
}

.site-footer strong,
.site-footer a {
  color: var(--white);
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: auto;
    align-items: flex-end;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(11, 17, 19, 0.34) 0%, rgba(11, 17, 19, 0.92) 66%),
      linear-gradient(90deg, rgba(11, 17, 19, 0.72), rgba(11, 17, 19, 0.28));
  }

  .hero-content {
    margin: 0 auto;
    padding: 112px 0 56px;
  }

  .trust-strip,
  .intro,
  .service-grid,
  .split,
  .example-grid,
  .proof-band,
  .timeline {
    grid-template-columns: 1fr;
  }

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

  .trust-strip span:last-child {
    grid-column: 1 / -1;
  }

  .service-card {
    min-height: auto;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .examples {
    padding-right: 0;
    padding-left: 0;
  }

  .proof-band {
    margin-top: 18px;
    margin-bottom: 18px;
  }

  .icon,
  .timeline span {
    margin-bottom: 28px;
  }

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

@media (max-width: 520px) {
  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-proof {
    display: flex;
  }

  h1 {
    font-size: clamp(2.25rem, 11.5vw, 3rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-proof span {
    padding: 7px 10px;
    font-size: 0.86rem;
  }

  .hero-content {
    padding-bottom: 44px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip span:last-child {
    grid-column: auto;
  }
}
