:root {
  --ink: #252520;
  --muted: #5f625e;
  --paper: #f5f7f8;
  --white: #ffffff;
  --line: #dde5eb;
  --brand-blue: #2a86c6;
  --brand-blue-dark: #1f6fa8;
  --brand-blue-soft: #e8f3fb;
  --slate: #33424a;
  --graphite: #1f211d;
  --shadow: 0 24px 80px rgba(31, 33, 29, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 18px clamp(20px, 5vw, 64px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(31, 33, 29, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(220px, 18vw, 300px);
  height: 58px;
  padding: 5px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 30px rgba(31, 33, 29, 0.1);
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.94rem;
  font-weight: 650;
}

.site-nav a {
  opacity: 0.88;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid currentColor;
  border-radius: 8px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 23px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 132px clamp(20px, 5vw, 64px) 78px;
  color: var(--white);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(31, 33, 29, 0.93) 0%, rgba(31, 33, 29, 0.76) 42%, rgba(31, 33, 29, 0.18) 100%),
    linear-gradient(0deg, rgba(31, 33, 29, 0.72) 0%, rgba(31, 33, 29, 0) 28%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
}

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

.hero .eyebrow,
.cta-section .eyebrow {
  color: #8ecbf0;
}

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

h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2.75rem, 7vw, 6.15rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.04rem, 1.6vw, 1.25rem);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.2;
}

.button-primary {
  color: var(--white);
  background: var(--brand-blue);
  box-shadow: 0 16px 42px rgba(42, 134, 198, 0.32);
}

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

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.button-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 5vw, 64px);
}

.section-inner,
.cta-inner,
.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
}

.align-start {
  align-items: start;
}

.section p {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.03rem;
}

.statement {
  padding-left: 20px;
  border-left: 4px solid var(--brand-blue);
  color: var(--ink) !important;
  font-size: 1.22rem !important;
  font-weight: 750;
}

.friction-panel {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  position: absolute;
  top: 0.1em;
  left: 0;
  color: var(--brand-blue);
  content: "✓";
  font-weight: 900;
}

.solution-section,
.process-section {
  background: var(--white);
}

.section-heading {
  max-width: 860px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.section-heading.narrow {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-heading p {
  margin-inline: auto;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.outcome-grid div {
  min-height: 220px;
  padding: 28px;
  background: var(--paper);
}

.outcome-grid span,
.process-list span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  font-weight: 800;
}

.outcome-grid strong {
  display: block;
  font-size: 1.08rem;
}

.toolkit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.tool-card {
  min-height: 310px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(22, 32, 29, 0.07);
}

.wide-card {
  grid-column: span 2;
}

.tool-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--white);
  background: var(--brand-blue);
}

.tool-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.accent-brass .tool-icon {
  background: var(--slate);
}

.accent-rust .tool-icon {
  background: var(--brand-blue-dark);
}

.accent-ink .tool-icon {
  background: var(--graphite);
}

.accent-blue .tool-icon {
  background: #4a9bd0;
}

.card-kicker {
  margin: 4px 0 12px;
  color: var(--brand-blue) !important;
  font-weight: 800;
}

.services-section {
  background: var(--brand-blue-soft);
}

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

.service-grid span,
.audience-list span {
  display: flex;
  min-height: 56px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.audience-list span {
  min-height: 48px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-list article {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.cta-section {
  padding: clamp(76px, 10vw, 130px) clamp(20px, 5vw, 64px);
  color: var(--white);
  background: var(--graphite);
}

.cta-inner {
  display: grid;
  justify-items: start;
  max-width: 880px;
}

.cta-section p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.text-link {
  color: var(--white);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.site-footer {
  padding: 30px clamp(20px, 5vw, 64px);
  background: var(--paper);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

@media (max-width: 980px) {
  .two-column,
  .outcome-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

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

  .wide-card {
    grid-column: span 2;
  }

  .hero {
    min-height: 820px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(31, 33, 29, 0.93) 0%, rgba(31, 33, 29, 0.72) 68%, rgba(31, 33, 29, 0.38) 100%),
      linear-gradient(0deg, rgba(31, 33, 29, 0.74) 0%, rgba(31, 33, 29, 0) 30%);
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
    padding-block: 12px;
  }

  .nav-toggle {
    display: block;
    color: currentColor;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px;
  }

  .nav-cta {
    color: var(--white);
    background: var(--brand-blue);
    text-align: center;
  }

  .hero {
    min-height: 760px;
    padding-top: 118px;
  }

  .hero-media img {
    object-position: 66% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(31, 33, 29, 0.94) 0%, rgba(31, 33, 29, 0.82) 100%),
      linear-gradient(0deg, rgba(31, 33, 29, 0.78) 0%, rgba(31, 33, 29, 0) 35%);
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4.2rem);
  }

  .button {
    width: 100%;
  }

  .button-secondary {
    background: rgba(255, 255, 255, 0.12);
  }

  .toolkit-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .wide-card {
    grid-column: auto;
  }

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

@media (max-width: 430px) {
  .brand {
    width: 176px;
    height: 46px;
    padding: 4px 8px;
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
  }

  .friction-panel,
  .tool-card,
  .process-list article {
    padding: 22px;
  }
}
