:root {
  --font-geist-sans: "Segoe UI Variable", "Segoe UI", Arial, Helvetica, sans-serif;
  --font-geist-mono: "Cascadia Mono", Consolas, "Courier New", monospace;
  --ink: #172225;
  --muted: #5a686b;
  --cream: #f6f2e9;
  --paper: #fffcf6;
  --orange: #f05d3d;
  --orange-dark: #c83f24;
  --mint: #b9e8d0;
  --mint-dark: #296b55;
  --line: #d9d6cb;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
}

::selection {
  background: var(--mint);
  color: var(--ink);
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 26px 0;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(23, 34, 37, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 750;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 10px 10px 10px 3px;
  background: var(--orange);
  box-shadow: 3px 3px 0 var(--ink);
  color: var(--paper);
  font-family: var(--font-geist-mono), monospace;
  font-size: 16px;
  font-weight: 900;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 600;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:not(.nav-cta):hover {
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.nav-cta {
  padding: 10px 18px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.nav-cta:hover {
  box-shadow: 1px 1px 0 var(--ink);
  transform: translate(2px, 2px);
}

.hero {
  position: relative;
  display: grid;
  width: min(1180px, calc(100% - 48px));
  min-height: 690px;
  margin: 0 auto;
  padding: 82px 0 96px;
  align-items: center;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 72px;
}

.hero::before {
  position: absolute;
  top: 4%;
  right: 29%;
  width: 140px;
  height: 140px;
  border: 1px dashed rgba(23, 34, 37, 0.19);
  border-radius: 50%;
  content: "";
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: flex;
  margin: 0 0 20px;
  align-items: center;
  gap: 10px;
  color: var(--mint-dark);
  font-family: var(--font-geist-mono), monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #33a66f;
  box-shadow: 0 0 0 5px rgba(51, 166, 111, 0.14);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(54px, 7vw, 96px);
  font-weight: 760;
  letter-spacing: -0.075em;
  line-height: 0.96;
}

.hero h1 span {
  display: block;
  color: var(--orange);
}

.hero-intro {
  max-width: 610px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  margin-top: 36px;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 13px 22px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1.5px solid var(--ink);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease,
    background-color 160ms ease;
}

.button-primary {
  background: var(--orange);
  box-shadow: 4px 4px 0 var(--ink);
  color: white;
}

.button-primary:hover,
.button-light:hover {
  box-shadow: 1px 1px 0 var(--ink);
  transform: translate(3px, 3px);
}

.button-secondary {
  background: transparent;
}

.button-secondary:hover {
  background: var(--paper);
}

.email-line {
  margin-top: 22px;
  color: var(--muted);
  font-size: 13px;
}

.email-line a {
  color: var(--ink);
  font-weight: 650;
  text-underline-offset: 3px;
}

.hero-panel {
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 24px 24px 24px 8px;
  background: var(--paper);
  box-shadow: 12px 12px 0 var(--ink);
  transform: rotate(1.2deg);
}

.panel-bar {
  display: flex;
  height: 56px;
  padding: 0 18px;
  align-items: center;
  gap: 8px;
  border-bottom: 1.5px solid var(--ink);
  background: var(--mint);
}

.panel-bar > span {
  width: 9px;
  height: 9px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
}

.panel-bar p {
  margin: 0 0 0 auto;
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.problem-list {
  display: grid;
  padding: 28px 26px 18px;
  gap: 12px;
}

.problem {
  display: flex;
  padding: 15px 16px;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
}

.problem span {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 9px;
  background: #fff0eb;
  color: var(--orange-dark);
  font-family: var(--font-geist-mono), monospace;
  font-weight: 900;
}

.problem p {
  margin: 0;
  font-size: 14px;
  font-weight: 620;
}

.problem-one {
  transform: translateX(-7px);
}

.problem-two {
  transform: translateX(7px);
}

.panel-answer {
  display: flex;
  margin: 8px 26px 28px;
  padding: 18px;
  align-items: center;
  gap: 14px;
  border: 1.5px solid var(--ink);
  border-radius: 14px;
  background: var(--ink);
  color: white;
}

.answer-check {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--ink);
  font-weight: 900;
}

.panel-answer strong {
  font-size: 14px;
}

.panel-answer p {
  margin: 3px 0 0;
  color: #dce5e4;
  font-size: 13px;
}

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

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

.section-heading {
  display: grid;
  margin-bottom: 48px;
  grid-template-columns: 1.25fr 0.75fr;
  column-gap: 84px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2,
.trust h2,
.about h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(36px, 4.5vw, 62px);
  font-weight: 740;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.section-heading > p:last-child {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

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

.service-card {
  min-height: 310px;
  padding: 28px;
  border: 1.5px solid var(--ink);
  border-radius: 18px 18px 18px 5px;
  background: var(--paper);
  box-shadow: 5px 5px 0 rgba(23, 34, 37, 0.9);
}

.service-card:nth-child(2) {
  background: #e7f5ed;
}

.service-card:nth-child(3) {
  background: #fff0eb;
}

.card-number {
  display: block;
  margin-bottom: 68px;
  color: var(--orange-dark);
  font-family: var(--font-geist-mono), monospace;
  font-size: 12px;
  font-weight: 850;
}

.service-card h3,
.steps h3 {
  margin: 0;
  font-size: 21px;
  letter-spacing: -0.025em;
}

.service-card p,
.steps p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.scope-note {
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}

.scope-note strong {
  color: var(--ink);
}

.process {
  padding: 112px 0;
  border-top: 1px solid var(--line);
}

.process-heading {
  display: block;
  max-width: 760px;
}

.consultation-note {
  display: flex;
  max-width: 760px;
  margin: -8px 0 34px;
  padding: 18px 20px;
  align-items: center;
  gap: 18px;
  border: 1.5px solid var(--ink);
  border-radius: 14px 14px 14px 4px;
  background: var(--mint);
  box-shadow: 4px 4px 0 var(--ink);
}

.consultation-note > span {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.consultation-note strong {
  font-size: 16px;
}

.consultation-note p {
  margin: 4px 0 0;
  color: #34594d;
  font-size: 14px;
  line-height: 1.55;
}

.steps {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
}

.steps li {
  display: grid;
  min-height: 280px;
  padding: 28px 26px 26px;
  grid-template-rows: auto 1fr;
  gap: 42px;
  border: 1px solid var(--line);
  border-radius: 16px 16px 16px 5px;
  background: rgba(255, 252, 246, 0.55);
}

.steps li:nth-child(2) {
  background: rgba(231, 245, 237, 0.72);
}

.steps li > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-family: var(--font-geist-mono), monospace;
  font-size: 13px;
  font-weight: 800;
}

.trust {
  display: grid;
  padding: 94px 74px;
  grid-template-columns: 1fr 0.85fr;
  gap: 82px;
  border-radius: 26px 26px 26px 7px;
  background: var(--ink);
  color: white;
}

.trust .eyebrow {
  color: var(--mint);
}

.trust-copy > p:last-child {
  max-width: 630px;
  margin: 28px 0 0;
  color: #c9d2d1;
  font-size: 16px;
  line-height: 1.75;
}

.safeguards {
  display: grid;
  margin: 0;
  padding: 0;
  align-content: center;
  gap: 0;
  list-style: none;
}

.safeguards li {
  display: flex;
  padding: 18px 0;
  align-items: flex-start;
  gap: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: #e3e9e8;
  font-size: 14px;
  line-height: 1.55;
}

.safeguards li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.safeguards span {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.about {
  display: grid;
  padding: 130px 0;
  grid-template-columns: 0.4fr 1fr;
  gap: 90px;
}

.about-label {
  align-self: start;
  padding-top: 7px;
  color: var(--orange-dark);
  font-family: var(--font-geist-mono), monospace;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.about-copy p {
  max-width: 790px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.final-cta {
  padding: 96px 64px;
  border-radius: 26px 26px 7px 26px;
  background: var(--orange);
  color: white;
  text-align: center;
}

.final-cta .eyebrow {
  justify-content: center;
  color: white;
}

.final-cta h2 {
  max-width: 800px;
  margin: 0 auto;
}

.final-cta > p:not(.eyebrow) {
  margin: 22px auto 32px;
  font-size: 17px;
}

.button-light {
  border-color: var(--ink);
  background: var(--paper);
  box-shadow: 4px 4px 0 var(--ink);
  color: var(--ink);
}

footer {
  display: grid;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 46px 0 54px;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 36px;
  color: var(--muted);
  font-size: 13px;
}

footer p {
  margin: 0;
}

footer > a:last-child {
  font-weight: 650;
  text-underline-offset: 4px;
}

.footer-brand {
  color: var(--ink);
}

@media (max-width: 1100px) {
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps li {
    min-height: 240px;
  }
}

@media (max-width: 900px) {
  .site-nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: 0;
    padding: 72px 0 88px;
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-panel {
    width: min(570px, 100%);
    margin: 0 auto;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section-heading .eyebrow {
    grid-column: auto;
  }

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

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

  .card-number {
    margin-bottom: 48px;
  }

  .steps li,
  .steps li:first-child,
  .steps li:last-child {
    min-height: 0;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto;
    gap: 20px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-radius: 14px 14px 14px 4px;
  }

  .trust {
    padding: 72px 44px;
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about {
    padding: 100px 0;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .section-shell,
  footer {
    width: min(100% - 30px, 1180px);
  }

  .site-header {
    padding: 18px 0;
  }

  .brand {
    gap: 9px;
    font-size: 15px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .nav-cta {
    padding: 9px 14px;
  }

  .hero {
    padding: 58px 0 72px;
    gap: 56px;
  }

  .hero h1 {
    font-size: clamp(50px, 16vw, 72px);
  }

  .hero-intro {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .email-line {
    line-height: 1.6;
  }

  .hero-panel {
    border-radius: 18px 18px 18px 6px;
    box-shadow: 7px 7px 0 var(--ink);
    transform: none;
  }

  .panel-bar {
    padding: 0 14px;
  }

  .problem-list {
    padding: 20px 16px 12px;
  }

  .problem {
    padding: 13px;
    transform: none;
  }

  .problem p {
    font-size: 13px;
  }

  .panel-answer {
    margin: 6px 16px 18px;
    padding: 15px;
  }

  .services,
  .process {
    padding: 82px 0;
  }

  .consultation-note {
    margin-bottom: 28px;
    padding: 16px;
    align-items: flex-start;
  }

  .consultation-note > span {
    width: 50px;
    height: 50px;
    font-size: 10px;
  }

  .service-card {
    min-height: 240px;
    padding: 24px;
  }

  .trust {
    padding: 58px 24px;
    border-radius: 20px 20px 20px 6px;
  }

  .about {
    padding: 84px 0;
  }

  .about-copy p {
    font-size: 16px;
  }

  .final-cta {
    padding: 70px 24px;
  }

  .final-cta > p:not(.eyebrow) {
    line-height: 1.6;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
