:root {
  --bg: #f4f7f6;
  --surface: #ffffff;
  --surface-muted: #edf2f0;
  --text: #202124;
  --muted: #626b67;
  --line: #d2dcda;
  --accent: #2f5d62;
  --accent-dark: #173f43;
  --shadow: 0 24px 70px rgba(32, 33, 36, 0.09);
  --content-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 17px;
  line-height: 1.68;
}

a {
  color: inherit;
}

a:focus-visible {
  outline: 3px solid rgba(47, 93, 98, 0.35);
  outline-offset: 4px;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 1.04rem;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--accent-dark);
  box-shadow: 0 10px 30px rgba(32, 33, 36, 0.08);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 1.02rem;
}

.site-nav a {
  border-radius: 6px;
  padding: 9px 12px;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.7);
}

.hero {
  position: relative;
  width: min(var(--content-width), calc(100% - 56px));
  margin: 0 auto;
  padding: 126px 0 128px;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 72px;
  width: min(34%, 320px);
  height: 1px;
  background: var(--line);
  content: "";
}

.hero-content {
  max-width: 900px;
  padding-left: 56px;
  border-left: 4px solid var(--accent);
}

.eyebrow,
.section-label {
  margin: 0;
  color: var(--accent-dark);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 840px;
  margin-bottom: 28px;
  font-size: clamp(3.25rem, 6.6vw, 6.35rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.4vw, 3.05rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-copy,
.section p,
.product p {
  color: var(--muted);
  font-size: 1.22rem;
  line-height: 1.72;
}

.hero-copy {
  max-width: 700px;
  margin-bottom: 0;
  font-size: 1.32rem;
  line-height: 1.62;
}

.section {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.section.muted {
  background: var(--surface-muted);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(170px, 0.3fr) minmax(0, 1fr);
  gap: 60px;
  width: min(var(--content-width), calc(100% - 56px));
  margin: 0 auto;
  padding: 84px 0;
}

.section-grid > div,
.product {
  max-width: 860px;
}

.product {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 42px;
}

.text-link,
.email-link {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.text-link {
  flex: 0 0 auto;
  margin-top: 12px;
  font-size: 1.05rem;
}

.email-link {
  font-size: 1.36rem;
}

.contact p:last-child,
.product p {
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(var(--content-width), calc(100% - 56px));
  margin: 0 auto;
  padding: 34px 0 46px;
  color: var(--muted);
  font-size: 1rem;
}

.site-footer p {
  margin-bottom: 0;
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
    line-height: 1.62;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    width: min(100% - 40px, var(--content-width));
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    font-size: 0.98rem;
  }

  .site-nav a {
    padding-inline: 0;
  }

  .hero {
    width: min(100% - 40px, var(--content-width));
    padding: 66px 0 72px;
  }

  .hero-content {
    padding-left: 24px;
  }

  .hero-copy,
  .section p,
  .product p {
    font-size: 1.08rem;
    line-height: 1.66;
  }

  .hero-copy {
    font-size: 1.14rem;
  }

  .section-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    width: min(100% - 40px, var(--content-width));
    padding: 54px 0;
  }

  .product {
    flex-direction: column;
    gap: 18px;
  }

  .text-link {
    margin-top: 0;
  }

  .site-footer {
    flex-direction: column;
    gap: 6px;
    width: min(100% - 40px, var(--content-width));
    font-size: 0.96rem;
  }
}

@media (max-width: 430px) {
  .site-header,
  .hero,
  .section-grid,
  .site-footer {
    width: min(100% - 28px, var(--content-width));
  }

  .hero-content {
    padding-left: 18px;
  }

  h1 {
    font-size: clamp(2.35rem, 15vw, 3.4rem);
  }
}
