:root {
  --ink: #1A1A1A;
  --muted: #6E6E6E;
  --paper: #ffffff;
  --soft: #EDEDED;
  --cta: #E3123F;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
}

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

.brand {
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--soft);
  font-size: 13px;
  letter-spacing: 0;
}

nav {
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

nav a {
  text-decoration: none;
}

.nav-cta {
  color: var(--cta);
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 46px;
  width: min(1120px, calc(100% - 32px));
  margin: 20px auto 0;
  min-height: calc(100vh - 130px);
  align-items: center;
  padding: 36px 0 84px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-weight: 800;
  line-height: 1.03;
  color: var(--ink);
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(46px, 7vw, 82px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(31px, 4.6vw, 56px);
}

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

.hero-text {
  max-width: 650px;
  color: var(--muted);
  font-size: 19px;
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-proof span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cta);
  content: "";
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 20px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  border-color: var(--cta);
  background: var(--cta);
  color: #ffffff;
  box-shadow: 0 7px 0 var(--ink);
}

.hero-art {
  position: relative;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 28px;
  background:
    radial-gradient(circle at 14px 14px, #d7d7d7 2px, transparent 3px) 0 0 / 28px 28px,
    var(--soft);
  box-shadow: 12px 12px 0 var(--ink);
}

.hero-art svg {
  display: block;
  width: 100%;
  height: auto;
  max-height: 500px;
}

.recognition,
.trust,
.cta-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.recognition {
  padding: 76px 0;
}

.recognition h2 {
  max-width: 850px;
}

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

.check-card {
  min-height: 315px;
  padding: 24px;
  border: 2px solid var(--ink);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: 7px 7px 0 var(--soft);
}

.check-icon {
  display: inline-block;
  width: 32px;
  height: 32px;
  margin-bottom: 22px;
  border: 2px solid var(--ink);
  border-radius: 10px;
  background:
    linear-gradient(135deg, transparent 44%, var(--ink) 45%, var(--ink) 56%, transparent 57%),
    linear-gradient(45deg, transparent 48%, var(--ink) 49%, var(--ink) 61%, transparent 62%);
}

.check-card p,
.trust p,
.scope-panel span,
.fallback {
  color: var(--muted);
}

.trust {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 32px;
  padding: 82px 0;
  border-top: 2px solid var(--soft);
  border-bottom: 2px solid var(--soft);
}

.trust-copy p {
  max-width: 560px;
  font-size: 18px;
}

.scope-panel {
  display: grid;
  gap: 14px;
}

.scope-panel article {
  padding: 22px;
  border: 2px solid var(--ink);
  border-radius: 20px;
  background: var(--soft);
}

.scope-panel strong,
.scope-panel span {
  display: block;
}

.scope-panel strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 20px;
}

.process-section {
  padding: 84px 0;
}

.process-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.process-shell h2 {
  max-width: 780px;
}

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

.process-grid article {
  padding-top: 18px;
  border-top: 3px solid var(--ink);
}

.process-number {
  display: block;
  margin-bottom: 28px;
  color: var(--cta);
  font-size: 13px;
  font-weight: 800;
}

.process-grid h3 {
  font-size: 20px;
}

.process-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.testimonial-section {
  padding: 92px 0;
  background: var(--ink);
  color: #ffffff;
}

.testimonial-shell {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
  gap: 46px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.testimonial-sticky { position: sticky; top: 28px; }
.testimonial-section .eyebrow,
.testimonial-section h2 { color: #ffffff; }
.testimonial-section h2 { margin-bottom: 20px; }
.testimonial-lead { max-width: 360px; color: var(--soft); font-size: 17px; }
.testimonial-index { display: grid; gap: 9px; margin-top: 36px; color: #bdbdbd; font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.testimonial-index span:first-child { color: #ffffff; }
.testimonial-mosaic { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.testimonial-card { overflow: hidden; border: 2px solid #ffffff; border-radius: 22px; background: #ffffff; color: var(--ink); box-shadow: 7px 7px 0 var(--cta); }
.testimonial-card-featured,
.testimonial-card-wide { grid-column: span 2; }
.testimonial-card-featured { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(220px, .85fr); }
.testimonial-card-wide { display: grid; grid-template-columns: minmax(0, .9fr) minmax(220px, 1.1fr); }
.testimonial-media { position: relative; min-height: 230px; background: #2a2a2a; }
.testimonial-media video { display: block; width: 100%; height: 100%; min-height: 230px; object-fit: cover; background: #2a2a2a; }
.testimonial-number { position: absolute; top: 12px; left: 12px; display: grid; place-items: center; width: 38px; height: 38px; border: 2px solid #ffffff; border-radius: 50%; background: var(--cta); color: #ffffff; font-size: 12px; font-weight: 800; }
.testimonial-card-copy { display: flex; flex-direction: column; justify-content: center; padding: 26px; }
.testimonial-logo { display: block; width: auto; max-width: 150px; max-height: 42px; margin-bottom: 22px; object-fit: contain; object-position: left center; }
.testimonial-quote { margin-bottom: 18px; font-size: 17px; font-weight: 700; line-height: 1.4; }
.testimonial-byline { margin-bottom: 0; color: var(--muted); font-size: 13px; font-weight: 700; }

.case-study-section {
  padding: 84px 0;
  background: var(--soft);
}

.case-study-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.case-study-shell h2 {
  max-width: 720px;
}

.case-study-lead {
  max-width: 680px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 18px;
}

.case-study-faq {
  max-width: 880px;
  margin-top: 36px;
  border-top: 2px solid var(--ink);
}

.case-study-faq details {
  padding: 25px 0 24px;
  border-bottom: 2px solid var(--ink);
}

.case-study-faq summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  list-style: none;
  font-size: clamp(21px, 2.5vw, 29px);
  font-weight: 800;
}

.case-study-faq summary::-webkit-details-marker {
  display: none;
}

.case-study-faq summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--cta);
  font-size: 28px;
  line-height: 1;
}

.case-study-faq details[open] summary::after {
  content: "−";
}

.case-study-answer {
  max-width: 760px;
  padding: 19px 54px 0 0;
}

.case-study-answer p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.case-study-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  margin-top: 22px;
  padding-top: 15px;
  border-top: 1px solid #cfcfcf;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.case-study-meta strong {
  color: var(--ink);
}

.cta {
  padding: 76px 0;
  background: var(--ink);
  color: #ffffff;
}

.cta h2,
.cta .eyebrow {
  color: #ffffff;
}

.cta-lead {
  max-width: 520px;
  color: var(--soft);
  font-size: 18px;
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 36px;
  align-items: start;
}

.cta form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 2px solid #ffffff;
  border-radius: 24px;
  background: #ffffff;
  color: var(--ink);
}

label span {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
}

input,
textarea {
  width: 100%;
  border: 2px solid var(--ink);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: #ffffff;
}

textarea {
  resize: vertical;
}

.fallback {
  margin-bottom: 0;
}

.cta .fallback {
  color: var(--soft);
}

.fallback a {
  color: #ffffff;
  font-weight: 800;
}

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

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

  .hero {
    min-height: auto;
    padding-top: 24px;
  }

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

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

  .testimonial-shell {
    grid-template-columns: 1fr;
  }

  .testimonial-sticky {
    position: static;
  }

}

@media (max-width: 620px) {
  .site-header,
  nav {
    align-items: flex-start;
  }

  .site-header {
    flex-direction: column;
  }

  nav {
    flex-wrap: wrap;
  }

  h1 {
    font-size: 42px;
  }

  .check-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-mosaic {
    grid-template-columns: 1fr;
  }

  .testimonial-card-featured,
  .testimonial-card-wide {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .testimonial-card-featured .testimonial-media,
  .testimonial-card-wide .testimonial-media {
    min-height: 220px;
  }

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

  .button {
    width: 100%;
  }

  .hero-art {
    box-shadow: 8px 8px 0 var(--ink);
  }

  .cta-inner {
    gap: 22px;
  }

  .case-study-answer {
    padding-right: 0;
  }

  .case-study-meta {
    display: grid;
  }

}
