:root {
  color-scheme: light;
  --bg: #f7f8f5;
  --surface: #ffffff;
  --surface-strong: #121417;
  --text: #16181c;
  --muted: #5b6472;
  --line: #d9ded6;
  --brand: #0f6f61;
  --brand-strong: #0a4d45;
  --accent: #c86b2d;
  --shadow: 0 24px 60px rgb(28 35 32 / 14%);
}

* {
  box-sizing: border-box;
}

html {
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

body {
  margin: 0;
  min-width: 320px;
}

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

main {
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: 82vh;
  padding: clamp(2rem, 6vw, 5rem);
}

.hero__content {
  max-width: 680px;
}

.eyebrow,
.site-footer__label {
  margin: 0 0 0.75rem;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 12ch;
  margin-bottom: 1.25rem;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero__copy {
  max-width: 620px;
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-weight: 800;
}

.button--primary {
  background: var(--brand);
  color: #ffffff;
}

.button--secondary {
  border-color: var(--line);
  background: var(--surface);
}

.button:focus-visible,
a:focus-visible {
  outline: 3px solid rgb(15 111 97 / 32%);
  outline-offset: 3px;
}

.product-shot {
  border: 1px solid #20262b;
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.product-shot__bar {
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid #2a3036;
  padding: 1rem;
}

.product-shot__bar span {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
  background: #e15f41;
}

.product-shot__bar span:nth-child(2) {
  background: #f0b84f;
}

.product-shot__bar span:nth-child(3) {
  background: #4dbb7f;
}

.product-shot__body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(1rem, 3vw, 2rem);
}

.metric,
.timeline {
  min-height: 8rem;
  border: 1px solid #2a3036;
  border-radius: 8px;
  background: #191d22;
  padding: 1rem;
}

.metric--wide,
.timeline {
  grid-column: 1 / -1;
}

.metric small {
  display: block;
  margin-bottom: 1rem;
  color: #9ba7b6;
  font-weight: 700;
}

.metric strong {
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
}

.timeline {
  display: grid;
  gap: 0.85rem;
  align-content: center;
}

.timeline span {
  display: block;
  width: var(--w);
  height: 0.7rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}

.services {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: 0 clamp(2rem, 6vw, 5rem) clamp(3rem, 7vw, 6rem);
}

.services h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

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

.service-grid article {
  min-height: 13rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 1.25rem;
}

.service-grid h3 {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.service-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.site-footer {
  background: #101417;
  color: #ffffff;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(260px, 1.2fr) minmax(180px, 0.8fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(2rem, 5vw, 4rem) clamp(2rem, 6vw, 5rem);
}

.site-footer__label {
  color: #72d1bf;
}

.site-footer h2 {
  margin-bottom: 0;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  letter-spacing: 0;
}

address {
  display: grid;
  gap: 0.45rem;
  color: #d9e1df;
  font-style: normal;
  line-height: 1.5;
}

.site-footer__contact {
  display: grid;
  gap: 0.65rem;
  align-content: start;
  font-weight: 800;
}

.site-footer__contact a {
  width: max-content;
  border-bottom: 1px solid rgb(255 255 255 / 35%);
  padding-bottom: 0.2rem;
}

@media (max-width: 900px) {
  .hero,
  .services,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

@media (max-width: 520px) {
  .hero,
  .services,
  .site-footer__inner {
    padding-inline: 1rem;
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .product-shot__body {
    grid-template-columns: 1fr;
  }

  .metric,
  .timeline {
    grid-column: 1 / -1;
  }
}
