:root {
  color-scheme: light;
  --ink: #111318;
  --muted: #5b6472;
  --line: #e5e8ed;
  --paper: #f7f6f1;
  --white: #ffffff;
  --green: #1c7c64;
  --green-dark: #0d4e42;
  --gold: #c88b2d;
  --blue: #255d86;
  --shadow: 0 24px 80px rgba(17, 19, 24, 0.14);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(17, 19, 24, 0.08);
  padding: 14px max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(247, 246, 241, 0.9);
  box-shadow: 0 10px 30px rgba(17, 19, 24, 0.04);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 218px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(17, 19, 24, 0.72);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a,
.header-action {
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.header-action {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 19, 24, 0.14);
  border-radius: 8px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(14px);
}

.header-action:hover {
  background: var(--white);
  border-color: rgba(17, 19, 24, 0.24);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 138px 24px 72px;
  background:
    linear-gradient(90deg, rgba(247, 246, 241, 0.97) 0%, rgba(247, 246, 241, 0.88) 44%, rgba(247, 246, 241, 0.55) 100%),
    radial-gradient(circle at 88% 20%, rgba(200, 139, 45, 0.18), transparent 28%),
    linear-gradient(135deg, #f7f6f1 0%, #eef3f0 54%, #f6efe0 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, var(--paper));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-top: 26px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(62px, 10vw, 126px);
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 610px;
  color: #354052;
  font-size: clamp(19px, 2.2vw, 26px);
  line-height: 1.45;
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.button.primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(17, 19, 24, 0.18);
}

.button.secondary {
  border-color: rgba(17, 19, 24, 0.16);
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
}

.button.light {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.hero-backdrop {
  position: absolute;
  z-index: 1;
  top: clamp(320px, 35vh, 390px);
  right: max(48px, calc((100vw - 1740px) / 2 + 80px));
  width: min(39vw, 560px);
  min-width: 420px;
  opacity: 0.96;
}

.workbench {
  position: relative;
  padding: 16px;
  border: 1px solid rgba(17, 19, 24, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.workbench-top {
  display: flex;
  gap: 8px;
  padding-bottom: 16px;
}

.workbench-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d8dfe6;
}

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

.signal-tile {
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(17, 19, 24, 0.1);
  border-radius: 8px;
  padding: 18px;
  background: #fbfbf8;
}

.signal-tile span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.signal-tile strong {
  color: var(--ink);
  font-size: 28px;
  letter-spacing: 0;
}

.signal-tile.active {
  background: #123c35;
  color: var(--white);
}

.signal-tile.active span,
.signal-tile.active strong {
  color: var(--white);
}

.flow-line {
  height: 10px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--blue));
}

.trust-strip {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 48px), var(--max));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: -28px auto 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(17, 19, 24, 0.08);
}

.trust-strip p {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border-right: 1px solid var(--line);
  padding: 16px;
  color: #333b48;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.trust-strip p:last-child {
  border-right: 0;
}

.section {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 108px 0 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 52px;
  align-items: end;
  margin-bottom: 36px;
}

h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

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

.service-card {
  min-height: 298px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
}

.service-number {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.service-card h3 {
  margin: auto 0 16px;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: 0;
}

.service-card p,
.approach-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 80px;
  align-items: start;
  padding-bottom: 108px;
}

.approach-copy {
  display: grid;
  gap: 22px;
  padding-top: 10px;
}

.contact-band {
  width: min(calc(100% - 48px), var(--max));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin: 0 auto 52px;
  border-radius: 8px;
  padding: 44px;
  background: #123c35;
  color: var(--white);
}

.contact-band .eyebrow {
  color: #a7d5c5;
}

.contact-band h2 {
  max-width: 760px;
  font-size: clamp(32px, 4.6vw, 58px);
}

.site-footer {
  width: min(calc(100% - 48px), var(--max));
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer img {
  width: 28px;
  height: 28px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1120px) {
  .hero {
    min-height: auto;
  }

  .hero-content {
    order: 1;
  }

  .hero-backdrop {
    position: relative;
    order: 2;
    top: auto;
    right: auto;
    bottom: auto;
    width: min(100%, 560px);
    min-width: 0;
    margin: 44px auto 0;
    transform: none;
  }
}

@media (max-width: 920px) {
  .site-header {
    padding-right: 18px;
    padding-left: 18px;
  }

  .brand img {
    width: 184px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 120px;
  }

  .section-heading,
  .split-section,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .split-section {
    gap: 28px;
  }

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

  .trust-strip p {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip p:last-child {
    border-bottom: 0;
  }

  .contact-band {
    display: grid;
    padding: 34px;
  }
}

@media (max-width: 560px) {
  .site-header {
    height: 68px;
  }

  .brand img {
    width: 156px;
  }

  .header-action {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero {
    padding: 102px 18px 54px;
  }

  h1 {
    font-size: clamp(58px, 19vw, 84px);
  }

  .hero-copy {
    font-size: 18px;
  }

  .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

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

  .signal-tile {
    min-height: 112px;
  }

  .trust-strip,
  .section,
  .contact-band,
  .site-footer {
    width: min(calc(100% - 32px), var(--max));
  }

  .section {
    padding-top: 78px;
  }

  .service-card {
    min-height: 250px;
  }

  .split-section {
    padding-bottom: 78px;
  }

  .contact-band {
    padding: 28px;
  }
}
