:root {
  --ink: #123829;
  --ink-soft: #284c3e;
  --muted: #7d8b84;
  --line: #dfe7df;
  --page: #fbfcf8;
  --white: #ffffff;
  --mist: #edf6ea;
  --chip: #eef4ec;
  --shell: 1272px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.shell {
  margin: 0 auto;
  max-width: var(--shell);
  width: calc(100% - 168px);
}

.site-header {
  background: var(--page);
  position: relative;
  z-index: 10;
}

.utility {
  background: var(--ink);
  color: var(--white);
  height: 36px;
}

.utility-inner {
  align-items: center;
  display: flex;
  font-size: 8px;
  font-weight: 800;
  height: 36px;
  justify-content: space-between;
  text-transform: uppercase;
}

.nav-wrap {
  border-bottom: 1px solid rgba(18, 56, 41, 0.08);
  height: 84px;
}

.nav-inner {
  align-items: center;
  display: grid;
  grid-template-columns: 270px 1fr auto;
  height: 84px;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 18px;
  width: max-content;
}

.brand-mark {
  align-items: center;
  background: var(--ink);
  border-radius: 13px;
  color: var(--white);
  display: inline-flex;
  font-size: 18px;
  font-weight: 900;
  height: 43px;
  justify-content: center;
  line-height: 1;
  width: 43px;
}

.brand-copy {
  display: grid;
  gap: 5px;
}

.brand-copy strong {
  font-size: 17px;
  line-height: 1;
}

.brand-copy small {
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 30px;
  justify-content: flex-end;
  padding-right: 31px;
}

nav a,
.language-switch button {
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.nav-actions {
  align-items: center;
  display: flex;
  gap: 32px;
}

.language-switch {
  align-items: center;
  display: flex;
  gap: 7px;
}

.language-switch button {
  background: transparent;
  border: 0;
  color: rgba(18, 56, 41, 0.52);
  padding: 0;
  text-transform: uppercase;
}

.language-switch button[aria-pressed="true"] {
  color: var(--ink);
}

.language-switch button + button::before {
  color: rgba(18, 56, 41, 0.5);
  content: "·";
  margin-right: 7px;
}

.pill {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  height: 54px;
  justify-content: center;
  line-height: 1;
  min-width: 156px;
  padding: 0 28px;
  white-space: nowrap;
}

.pill-dark {
  background: var(--ink);
  color: var(--white);
}

.pill-outline {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--ink);
  color: var(--ink);
  min-width: 182px;
}

.hero {
  height: 645px;
  position: relative;
}

.hero-media {
  bottom: 0;
  height: 645px;
  max-width: 932px;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  width: 64.72vw;
}

.hero-media::before {
  background: linear-gradient(90deg, var(--page) 0%, rgba(251, 252, 248, 0.96) 18%, rgba(251, 252, 248, 0.38) 43%, rgba(251, 252, 248, 0) 67%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

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

.hero-inner {
  padding-top: 99px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  align-items: center;
  color: #2f7b54;
  display: flex;
  font-size: 10px;
  font-weight: 900;
  gap: 17px;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

.eyebrow span {
  background: currentColor;
  display: inline-block;
  flex: 0 0 29px;
  height: 2px;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.82);
}

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

h1 {
  color: var(--ink);
  font-size: 68px;
  font-weight: 900;
  line-height: 0.96;
  margin-top: 42px;
  max-width: 742px;
}

h2 {
  color: var(--ink);
  font-size: 44px;
  font-weight: 900;
  line-height: 0.98;
  white-space: pre-line;
}

h3 {
  color: var(--ink);
  font-weight: 900;
  white-space: pre-line;
}

.hero-text {
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
  margin-top: 80px;
  max-width: 535px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 56px;
}

.proof-line {
  color: #6e7f77;
  font-size: 10px;
  font-weight: 900;
  margin-top: 58px;
}

.products {
  background: var(--page);
  padding: 83px 0 44px;
}

.section-intro {
  align-items: start;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 96px;
}

.section-intro h2 {
  margin-top: 44px;
}

.section-intro > p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
  padding-top: 25px;
}

.product-grid {
  display: grid;
  gap: 31px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 49px;
}

.product-card {
  background: var(--white);
  border: 1px solid rgba(18, 56, 41, 0.08);
  border-radius: 22px;
  box-shadow: 0 34px 56px rgba(35, 72, 45, 0.07);
  min-height: 416px;
  overflow: hidden;
}

.product-card > img {
  height: 178px;
  object-fit: cover;
  width: 100%;
}

.card-body {
  display: flex;
  flex-direction: column;
  min-height: 238px;
  padding: 31px 27px 22px;
}

.card-body h3 {
  font-size: 24px;
  line-height: 0.98;
}

.card-body p {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
  margin-top: 33px;
  max-width: 292px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
  padding-top: 20px;
}

.tag-row span {
  align-items: center;
  background: var(--chip);
  border: 1px solid rgba(18, 56, 41, 0.12);
  border-radius: 999px;
  color: var(--ink);
  display: inline-flex;
  font-size: 8px;
  font-weight: 900;
  height: 23px;
  justify-content: center;
  line-height: 1;
  min-width: 52px;
  padding: 0 10px;
}

.support {
  background: var(--mist);
  padding: 128px 0 151px;
}

.support-grid {
  align-items: center;
  display: grid;
  gap: 151px;
  grid-template-columns: 500px minmax(0, 1fr);
}

.support-image {
  border-radius: 22px;
  height: 408px;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.support-image::after {
  background: linear-gradient(0deg, rgba(13, 47, 34, 0.42), rgba(13, 47, 34, 0));
  bottom: 0;
  content: "";
  height: 122px;
  left: 0;
  position: absolute;
  right: 0;
}

.support-image img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.support-image figcaption {
  bottom: 41px;
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
  left: 32px;
  position: absolute;
  text-transform: uppercase;
  z-index: 1;
}

.support-copy {
  padding-top: 6px;
}

.support-copy h2 {
  margin-top: 38px;
  max-width: 600px;
}

.support-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.58;
  margin-top: 44px;
  max-width: 520px;
}

.support-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 45px;
}

.support-list div {
  align-items: center;
  border-top: 1px solid rgba(18, 56, 41, 0.12);
  display: grid;
  gap: 24px;
  grid-template-columns: 20px 1fr;
  min-height: 68px;
}

.support-list span {
  color: #2f7b54;
  font-size: 10px;
  font-weight: 900;
}

.support-list strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.process {
  background: var(--page);
  padding: 72px 0 64px;
}

.process-intro > p {
  padding-top: 31px;
}

.steps {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 50px;
}

.steps article {
  border-left: 1px solid var(--line);
  min-height: 155px;
  padding: 35px 22px 24px;
}

.steps article:first-child {
  border-left: 0;
}

.steps article > span {
  color: #d8e8cf;
  display: block;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 22px;
}

.steps h3 {
  font-size: 15px;
  line-height: 1.2;
}

.steps p {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.55;
  margin-top: 18px;
  max-width: 180px;
}

.rfq {
  background: var(--ink);
  color: var(--white);
  padding: 60px 0;
}

.rfq-grid {
  align-items: center;
  display: grid;
  gap: 60px;
  grid-template-columns: minmax(0, 1fr) 652px;
}

.rfq-copy h2 {
  color: var(--white);
  font-size: 44px;
  line-height: 1.01;
  margin-top: 47px;
}

.rfq-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.58;
  margin-top: 57px;
  max-width: 460px;
}

.contact-row {
  display: flex;
  gap: 92px;
  margin-top: 70px;
}

.contact-row a,
.contact-row div {
  display: grid;
  gap: 13px;
}

.contact-row strong {
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
}

.contact-row span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  font-weight: 700;
}

.rfq-form {
  background: var(--page);
  border-radius: 22px;
  color: var(--ink);
  display: grid;
  gap: 23px;
  padding: 38px 32px 38px;
}

.rfq-form h3 {
  color: #2f7b54;
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
}

.field-row {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
}

.rfq-form input,
.rfq-form textarea {
  background: var(--white);
  border: 1px solid rgba(18, 56, 41, 0.16);
  border-radius: 12px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  outline: none;
  padding: 0 18px;
}

.rfq-form input {
  height: 51px;
}

.rfq-form textarea {
  height: 134px;
  padding-top: 18px;
  resize: vertical;
}

.rfq-form input::placeholder,
.rfq-form textarea::placeholder {
  color: rgba(125, 139, 132, 0.72);
}

.rfq-form .pill {
  border: 0;
  height: 53px;
  justify-self: stretch;
  margin-top: 1px;
}

.rfq-form > p {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-align: center;
}

.footer {
  background: var(--page);
  padding: 74px 0 80px;
}

.footer-inner {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}

.footer-inner > div {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.7;
  text-align: right;
}

@media (max-width: 1100px) {
  .shell {
    width: calc(100% - 56px);
  }

  .nav-inner {
    grid-template-columns: 220px 1fr;
    row-gap: 12px;
  }

  nav {
    display: none;
  }

  .nav-actions {
    justify-content: flex-end;
  }

  .section-intro,
  .support-grid,
  .rfq-grid {
    gap: 42px;
    grid-template-columns: 1fr;
  }

  .support-image,
  .rfq-form {
    max-width: 652px;
  }

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

@media (max-width: 760px) {
  .shell {
    width: calc(100% - 32px);
  }

  .utility {
    display: none;
  }

  .nav-wrap,
  .nav-inner {
    height: auto;
  }

  .nav-inner {
    display: flex;
    gap: 22px;
    justify-content: space-between;
    padding: 18px 0;
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .nav-actions {
    gap: 14px;
  }

  .nav-actions > .pill {
    display: none;
  }

  .hero {
    display: flex;
    flex-direction: column-reverse;
    height: auto;
  }

  .hero-media {
    height: 320px;
    max-width: none;
    position: relative;
    width: 100%;
  }

  .hero-media::before {
    background: linear-gradient(0deg, var(--page) 0%, rgba(251, 252, 248, 0) 45%);
  }

  .hero-inner {
    padding: 54px 0 44px;
  }

  h1 {
    font-size: 44px;
    max-width: 100%;
  }

  h2,
  .rfq-copy h2 {
    font-size: 34px;
  }

  .hero-text {
    font-size: 16px;
    margin-top: 32px;
  }

  .hero-actions {
    flex-direction: column;
    margin-top: 30px;
  }

  .hero-actions .pill {
    width: 100%;
  }

  .proof-line {
    line-height: 1.5;
    margin-top: 30px;
  }

  .products,
  .support,
  .process,
  .rfq {
    padding: 58px 0;
  }

  .section-intro {
    gap: 28px;
  }

  .section-intro h2 {
    margin-top: 31px;
  }

  .section-intro > p {
    padding-top: 0;
  }

  .product-grid,
  .steps {
    margin-top: 42px;
  }

  .support-image {
    height: 330px;
  }

  .support-copy h2 {
    margin-top: 32px;
  }

  .support-copy > p,
  .support-list {
    margin-top: 34px;
  }

  .support-list,
  .steps,
  .field-row {
    grid-template-columns: 1fr;
  }

  .support-list div,
  .steps article {
    min-height: auto;
  }

  .steps article {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
  }

  .steps article:first-child {
    border-top: 0;
  }

  .rfq-grid {
    gap: 46px;
  }

  .contact-row,
  .footer-inner {
    flex-direction: column;
    gap: 28px;
  }

  .footer-inner > div {
    text-align: left;
  }
}
