@import url("footer.css");
:root {
  --ink: #16222d;
  --paper: #f7f8f5;
  --line: #cbd4d4;
  --teal: #0d766d;
  --mist: #e6efed;
  --orange: #e57b43;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 16px/1.55 Arial, sans-serif;
}
a {
  color: inherit;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px 6vw;
  background: #f7f7f7;
  border-bottom: 1px solid var(--line);
}
.nav img {
  height: 32px;
}
.nav-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
  margin-left: auto;
}
.nav-links a {
  text-decoration: none;
}
.nav-links a:hover {
  color: var(--teal);
}
.source-download {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid #79aaa5;
  border-radius: 50%;
  color: var(--teal);
  line-height: 1;
  text-decoration: none;
  transition: border-color .18s, background .18s, color .18s;
}
.source-download svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}
.source-download:hover,.source-download:focus-visible {
  border-color: var(--teal);
  background: #e6efed;
  color: #075f59;
  outline: none;
}
.hero,.section,.page-head {
  max-width: 1180px;
  margin: auto;
  padding: 72px 6vw;
}
.eyebrow {
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(250px, .65fr);
  gap: 48px;
  align-items: center;
  padding-top: 88px;
}
.hero h1 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.02;
  margin: 12px 0 22px;
  letter-spacing: -.045em;
}
.hero p {
  max-width: 640px;
  font-size: 20px;
  color: #43515a;
}
.hero-art {
  width: 100%;
  max-width: 350px;
  justify-self: end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(22, 34, 45, .09);
}
.hero-art img {
  width: 100%;
  display: block;
  aspect-ratio: 9/16;
  object-fit: cover;
  mix-blend-mode: normal;
}
.button {
  display: inline-block;
  background: var(--teal);
  color: white;
  border-radius: 3px;
  padding: 13px 19px;
  text-decoration: none;
  font-weight: 700;
  margin: 12px 12px 0 0;
}
.button.secondary {
  background: transparent;
  color: var(--teal);
  border: 1px solid var(--teal);
}
.band {
  background: var(--ink);
  color: white;
}
.band .section {
  padding-top: 48px;
  padding-bottom: 48px;
}
.cards,.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.band-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(0, 1.9fr);
  gap: 48px;
  align-items: center;
}
.band-lead h2 {
  font-size: clamp(34px, 4.4vw, 56px);
  margin-bottom: 0;
}
.band-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.band-grid p {
  color: #c7d4d5;
  margin: 6px 0;
}
.section h2,.page-head h1 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  margin: 8px 0 16px;
  letter-spacing: -.03em;
}
.intro {
  max-width: 760px;
  color: #4b5a62;
  font-size: 18px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: 10px;
}
.card img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  background: #f0f2ee;
  margin: -4px 0 18px;
}
.card h3 {
  margin: 0 0 6px;
  font-size: 21px;
}
.card p {
  color: #516069;
  margin: 0 0 15px;
}
.card a {
  color: var(--teal);
  font-weight: 700;
  text-decoration: none;
}
.solutions-img {
  width: 100%;
  border-radius: 12px;
  display: block;
  border: 1px solid var(--line);
}
.caption {
  font-size: 12px;
  color: #607078;
  margin-top: 8px;
}
.notice {
  background: #fff4db;
  border-left: 4px solid var(--orange);
  padding: 18px 20px;
  margin: 26px 0;
  max-width: 850px;
}
.support {
  background: var(--mist);
  border-radius: 14px;
  padding: 30px;
  margin-top: 28px;
}
.support strong {
  font-size: 22px;
}
.page-head {
  padding-bottom: 30px;
}
.product-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.product-hero img {
  width: 100%;
  border: 1px solid var(--line);
  background: #f0f2ee;
}
.bullet-list {
  padding-left: 20px;
  color: #45555d;
}
.footer {
  padding: 34px 6vw;
  background: var(--ink);
  color: #d6e1df;
  font-size: 14px;
}
.footer a {
  color: white;
}
@media(max-width:760px) {
  .hero,.product-hero {
    grid-template-columns: 1fr;
    padding-top: 48px;
  }
  .cards,.band-grid,.spec-grid {
    grid-template-columns: 1fr;
  }
  .band-copy {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .nav {
    padding: 14px 5vw;
  }
  .nav-links {
    gap: 12px;
    font-size: 12px;
  }
  .section,.page-head {
    padding: 48px 5vw;
  }
}
