:root {
  --ink: #1f2426;
  --charcoal: #252d2f;
  --deep: #111718;
  --steel: #506368;
  --green: #287f74;
  --green-dark: #1e665e;
  --orange: #d96432;
  --orange-dark: #b94d22;
  --mist: #f2f4f3;
  --soft: #e7ecea;
  --line: #d7dedb;
  --panel: #fff;
  --muted: #687577;
  --max: 1180px;
  --radius: 9px;
  --shadow: 0 22px 60px rgba(23, 30, 32, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--mist);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
}

body.nav-open,
body.lightbox-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 15px;
  z-index: 200;
  padding: 10px 15px;
  color: #fff;
  background: var(--orange);
  border-radius: 5px;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  color: #fff;
  background: rgba(13, 17, 19, .82);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1240px, calc(100% - 36px));
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  margin-inline: auto;
}

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

.brand-mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #364247, var(--green));
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 7px;
}

.brand-mark svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy b {
  font-size: 15px;
  letter-spacing: .035em;
}

.brand-copy small {
  margin-top: 5px;
  color: #b5c2c1;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .14em;
}

.nav-links {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  color: #e6eeee;
  font-size: 13px;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding-block: 12px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 5px;
  height: 2px;
  background: var(--orange);
  transition: right .2s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  right: 0;
}

.nav-toggle {
  display: none;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 12px 30px rgba(217, 100, 50, .25);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--orange-dark);
}

.button-facebook {
  color: #fff;
  background: #1877f2;
  box-shadow: 0 12px 30px rgba(24, 119, 242, .24);
}

.button-facebook:hover,
.button-facebook:focus-visible {
  background: #0f66d2;
}

.button-dark {
  min-height: 42px;
  color: #fff;
  background: var(--charcoal);
}

.button-ghost {
  color: #fff;
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .34);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 255, 255, .12);
}

.nav-cta {
  min-height: 42px;
  padding-inline: 17px;
  font-size: 12px;
}

.hero {
  min-height: 780px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--deep);
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 17, 18, .97) 0%, rgba(12, 17, 18, .9) 42%, rgba(12, 17, 18, .36) 76%, rgba(12, 17, 18, .62) 100%),
    linear-gradient(180deg, rgba(12, 17, 18, .2), rgba(12, 17, 18, .64));
}

.hero-grid {
  min-height: 780px;
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .55fr;
  align-items: center;
  gap: 86px;
  padding-block: 132px 78px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: #75b9ae;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--orange);
}

.eyebrow-dark {
  color: var(--green);
}

.hero h1 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(52px, 6vw, 84px);
  line-height: .98;
  letter-spacing: -.052em;
}

.hero h1 em {
  color: #e58960;
  font-style: normal;
}

.hero-lead {
  max-width: 700px;
  margin: 28px 0 0;
  color: #d1dcda;
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 22px;
  margin-top: 33px;
  color: #b9c7c5;
  font-size: 12px;
  font-weight: 700;
}

.hero-checks i {
  margin-right: 5px;
  color: #73b9ad;
  font-style: normal;
}

.hero-brief {
  align-self: end;
  margin-bottom: 34px;
  padding: 25px;
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
  border-top: 4px solid var(--orange);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .35);
  backdrop-filter: blur(14px);
}

.brief-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .13em;
}

.brief-head i {
  color: var(--green);
  font-style: normal;
}

.hero-brief h2 {
  margin: 17px 0 20px;
  font-size: 20px;
  line-height: 1.25;
}

.hero-brief ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.hero-brief li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 45px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.hero-brief li span {
  color: var(--orange);
  font-size: 9px;
  font-weight: 900;
}

.hero-brief > a {
  display: flex;
  justify-content: space-between;
  margin-top: 19px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.proof-strip {
  color: #fff;
  background: #283235;
}

.proof-grid {
  min-height: 108px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.proof-grid > div {
  min-height: 58px;
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
  border-right: 1px solid rgba(255, 255, 255, .12);
}

.proof-grid > div:first-child {
  padding-left: 0;
}

.proof-grid > div:last-child {
  border-right: 0;
}

.proof-grid strong {
  align-self: start;
  padding-top: 5px;
  color: #7fbdb3;
  font-size: 10px;
}

.proof-grid span {
  color: #dce4e3;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.section {
  padding-block: 112px;
}

.section-heading h2,
.market-copy h3,
.video-copy h2,
.checklist-copy h2,
.faq-title h2,
.rfq-intro h2 {
  margin: 0;
  font-size: clamp(38px, 4.8vw, 62px);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.heading-split {
  display: grid;
  grid-template-columns: 1fr .75fr;
  align-items: end;
  gap: 90px;
}

.heading-split > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.market-section {
  background: #fff;
}

.market-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 56px;
  padding: 9px;
  background: var(--soft);
  border-radius: var(--radius);
}

.market-tab {
  min-height: 102px;
  display: grid;
  grid-template-columns: 50px 1fr;
  grid-template-rows: auto auto;
  align-content: center;
  gap: 2px 14px;
  padding: 18px 22px;
  text-align: left;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
}

.market-tab > span {
  width: 45px;
  height: 45px;
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  color: var(--green);
  background: rgba(40, 127, 116, .09);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
}

.market-tab b {
  align-self: end;
  font-size: 17px;
}

.market-tab small {
  align-self: start;
  color: var(--muted);
  font-size: 11px;
}

.market-tab.is-active {
  background: #fff;
  border-color: rgba(31, 36, 38, .08);
  box-shadow: 0 8px 24px rgba(31, 36, 38, .08);
}

.market-tab.is-active > span {
  color: #fff;
  background: var(--green);
}

.market-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 82px;
  margin-top: 58px;
}

.market-image-stack {
  min-height: 610px;
  position: relative;
}

.market-image-stack figure {
  margin: 0;
  overflow: hidden;
  background: var(--soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.market-image-main {
  width: 78%;
  height: 570px;
}

.market-image-main img,
.market-image-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.market-image-main figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 11px;
  color: #fff;
  background: rgba(15, 21, 22, .76);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.market-image-small {
  width: 42%;
  height: 330px;
  position: absolute;
  right: 0;
  bottom: 0;
  border: 7px solid #fff;
}

.market-label {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 7px 10px;
  color: var(--green);
  background: rgba(40, 127, 116, .09);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
}

.market-copy > p {
  margin: 23px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.market-points {
  display: grid;
  gap: 0;
  margin-top: 26px;
  border-top: 1px solid var(--line);
}

.market-points article {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  padding-block: 17px;
  border-bottom: 1px solid var(--line);
}

.market-points b {
  font-size: 12px;
}

.market-points span {
  color: var(--muted);
  font-size: 12px;
}

.text-button,
.card-rfq {
  padding: 0;
  color: var(--green);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(40, 127, 116, .3);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.text-button {
  display: inline-flex;
  gap: 24px;
  margin-top: 27px;
  padding-bottom: 7px;
}

.product-section {
  background: var(--mist);
}

.seo-hub-section {
  background: #fff;
}

.seo-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
  margin-top: 54px;
}

.seo-hub-grid a {
  min-height: 155px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  transition: transform .2s ease, box-shadow .2s ease, border-left-color .2s ease;
}

.seo-hub-grid a:hover {
  transform: translateY(-4px);
  border-left-color: var(--orange);
  box-shadow: var(--shadow);
}

.seo-hub-grid small {
  color: var(--orange);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .1em;
}

.seo-hub-grid b {
  margin-top: 11px;
  font-size: 20px;
}

.seo-hub-grid span {
  margin-top: auto;
  padding-top: 15px;
  color: var(--muted);
  font-size: 11px;
}

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

.product-card {
  display: grid;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .25s ease, box-shadow .25s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.product-card-wide {
  grid-column: span 2;
  grid-template-columns: 1.1fr .9fr;
}

.product-image {
  min-height: 270px;
  position: relative;
  overflow: hidden;
}

.product-card-wide .product-image {
  min-height: 480px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.035);
}

.product-image > span {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 7px 9px;
  color: #fff;
  background: rgba(24, 32, 34, .8);
  border-left: 3px solid var(--orange);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
}

.product-copy {
  padding: 30px;
}

.product-copy > small {
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
}

.product-copy h3 {
  margin: 13px 0 12px;
  font-size: 22px;
  line-height: 1.22;
}

.product-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.product-copy ul {
  display: grid;
  gap: 8px;
  margin: 21px 0 0;
  padding: 0;
  color: #4f5c5f;
  list-style: none;
  font-size: 12px;
}

.product-copy li::before {
  content: "+";
  margin-right: 9px;
  color: var(--green);
  font-weight: 900;
}

.card-rfq {
  width: max-content;
  max-width: 100%;
  margin-top: 24px;
  padding-bottom: 5px;
  text-align: left;
}

.evidence-section {
  color: #fff;
  background: var(--charcoal);
}

.evidence-heading {
  max-width: 760px;
}

.evidence-heading > p:last-child {
  margin: 20px 0 0;
  color: #aebbb9;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
  margin-top: 54px;
}

.gallery-item {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: #111;
  border: 0;
  border-radius: 6px;
  cursor: zoom-in;
}

.gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item-tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .88;
  transition: transform .4s ease, opacity .4s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
  opacity: 1;
}

.gallery-item > span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  padding: 30px 15px 13px;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, .78));
  font-size: 11px;
  font-weight: 800;
}

.gallery-item i {
  color: #f08c62;
  font-style: normal;
}

.video-section {
  background: #fff;
}

.video-grid {
  display: grid;
  grid-template-columns: .68fr 1.32fr;
  align-items: center;
  gap: 78px;
}

.video-copy > p:not(.eyebrow) {
  margin: 23px 0 0;
  color: var(--muted);
}

.video-selector {
  display: flex;
  gap: 8px;
  margin-top: 28px;
}

.video-tab {
  padding: 9px 13px;
  color: var(--muted);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
}

.video-tab.is-active {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.video-frame {
  position: relative;
  overflow: hidden;
  background: #101617;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.video-frame video {
  width: 100%;
  max-height: 620px;
  aspect-ratio: 16 / 10;
  object-fit: contain;
}

.video-frame > span {
  position: absolute;
  top: 13px;
  left: 13px;
  padding: 7px 9px;
  color: #fff;
  background: rgba(18, 24, 25, .77);
  border-left: 3px solid var(--orange);
  font-size: 9px;
  font-weight: 900;
}

.process-section {
  color: #fff;
  background: var(--deep);
}

.process-section .heading-split > p {
  color: #a3b0af;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 62px;
  border-top: 1px solid rgba(255, 255, 255, .17);
}

.process-grid article {
  position: relative;
  padding: 39px 28px 0 0;
}

.process-grid article::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--orange);
  border: 4px solid var(--deep);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .24);
}

.process-grid span {
  color: #65a69d;
  font-size: 10px;
  font-weight: 900;
}

.process-grid h3 {
  margin: 13px 0 9px;
  font-size: 17px;
}

.process-grid p {
  margin: 0;
  color: #98a6a5;
  font-size: 12px;
}

.checklist-section {
  background: #fff;
}

.checklist-grid {
  display: grid;
  grid-template-columns: .87fr 1.13fr;
  align-items: center;
  gap: 84px;
}

.checklist-image {
  min-height: 690px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.checklist-image img {
  width: 100%;
  height: 690px;
  object-fit: cover;
}

.checklist-image > div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  padding: 18px;
  color: #fff;
  background: rgba(17, 23, 24, .87);
  border-left: 4px solid var(--orange);
  border-radius: 5px;
}

.checklist-image b {
  font-size: 13px;
}

.checklist-image span {
  margin-top: 4px;
  color: #bdc8c6;
  font-size: 11px;
}

.checklist-copy ol {
  display: grid;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.checklist-copy li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 15px;
  padding-block: 16px;
  border-bottom: 1px solid var(--line);
}

.checklist-copy li > span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
}

.checklist-copy li > div {
  display: grid;
}

.checklist-copy b {
  font-size: 13px;
}

.checklist-copy small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.faq-section {
  background: var(--mist);
}

.faq-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 90px;
}

.faq-title > p:last-child {
  color: var(--muted);
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion article {
  border-bottom: 1px solid var(--line);
}

.accordion button {
  width: 100%;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
}

.accordion button i {
  width: 17px;
  height: 17px;
  position: relative;
  flex: 0 0 auto;
}

.accordion button i::before,
.accordion button i::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 1px;
  width: 15px;
  height: 2px;
  background: var(--green);
  transition: transform .2s ease;
}

.accordion button i::after {
  transform: rotate(90deg);
}

.accordion button[aria-expanded="true"] i::after {
  transform: rotate(0);
}

.accordion-panel p {
  margin: -2px 48px 23px 0;
  color: var(--muted);
  font-size: 13px;
}

.rfq-section {
  color: #fff;
  background: var(--green-dark);
}

.rfq-grid {
  display: grid;
  grid-template-columns: .66fr 1.34fr;
  gap: 78px;
}

.rfq-intro > p:not(.eyebrow) {
  color: #c7dbd7;
}

.rfq-note {
  display: grid;
  margin-top: 30px;
  padding: 17px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-left: 4px solid var(--orange);
  border-radius: 5px;
}

.rfq-note b {
  font-size: 12px;
}

.rfq-note span {
  margin-top: 4px;
  color: #b7d0cb;
  font-size: 11px;
}

.rfq-form {
  position: relative;
  padding: 34px;
  color: var(--ink);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 28px 70px rgba(7, 30, 27, .24);
}

.form-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.rfq-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
  color: #485557;
  font-size: 11px;
  font-weight: 800;
}

.rfq-form input,
.rfq-form select,
.rfq-form textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  background: #f7f9f8;
  border: 1px solid var(--line);
  border-radius: 5px;
  outline: none;
  font-size: 13px;
  font-weight: 500;
}

.rfq-form input,
.rfq-form select {
  min-height: 47px;
}

.rfq-form textarea {
  resize: vertical;
}

.rfq-form input:focus,
.rfq-form select:focus,
.rfq-form textarea:focus {
  background: #fff;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(40, 127, 116, .11);
}

.consent {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 9px !important;
  color: var(--muted) !important;
  font-weight: 500 !important;
}

.consent input {
  width: 17px;
  min-height: 17px;
  margin-top: 1px;
  accent-color: var(--green);
}

.form-submit {
  width: 100%;
}

.rfq-result {
  margin-top: 20px;
  padding: 18px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.result-title,
.result-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.result-title {
  margin-bottom: 11px;
}

#result-close {
  width: 30px;
  height: 30px;
  color: var(--muted);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 24px;
}

#rfq-summary {
  min-height: 250px;
  background: #fff;
  font-family: Consolas, "Courier New", monospace;
  font-size: 11px;
}

.result-actions {
  justify-content: flex-start;
  margin-top: 11px;
}

#copy-status {
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
}

.site-footer {
  padding-block: 70px 25px;
  color: #b9c5c3;
  background: #111718;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr .6fr .6fr 1.15fr;
  gap: 58px;
}

.footer-brand {
  color: #fff;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-grid > div:first-child > p,
.footer-grid > div:last-child > p {
  max-width: 390px;
  margin: 12px 0 0;
  color: #7f8d8c;
  font-size: 11px;
}

.footer-grid > div > b {
  margin-bottom: 7px;
  color: #fff;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-grid a:not(.brand),
.footer-market {
  padding: 0;
  color: #8d9a99;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 11px;
}

.footer-grid a:hover,
.footer-market:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 56px;
  padding-top: 20px;
  color: #667372;
  border-top: 1px solid rgba(255, 255, 255, .09);
  font-size: 10px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 46px;
  background: rgba(5, 8, 9, .94);
}

.lightbox[hidden] {
  display: none;
}

.lightbox figure {
  max-width: min(1000px, 92vw);
  max-height: 86vh;
  margin: 0;
}

.lightbox img {
  max-height: 78vh;
  margin-inline: auto;
  object-fit: contain;
}

.lightbox figcaption {
  padding-top: 12px;
  color: #bdc8c6;
  text-align: center;
  font-size: 12px;
}

.lightbox-close {
  width: 42px;
  height: 42px;
  position: absolute;
  top: 20px;
  right: 22px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  cursor: pointer;
  font-size: 27px;
}

@media (max-width: 1040px) {
  .nav {
    gap: 18px;
  }

  .nav-links {
    gap: 15px;
  }

  .hero-grid {
    grid-template-columns: 1fr .48fr;
    gap: 45px;
  }

  .market-panel,
  .checklist-grid {
    gap: 48px;
  }

  .video-grid,
  .rfq-grid {
    gap: 48px;
  }
}

@media (max-width: 900px) {
  .nav {
    grid-template-columns: auto 1fr auto;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    display: grid;
    grid-column: 2;
    place-content: center;
    justify-self: end;
    gap: 5px;
    padding: 0;
    color: #fff;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 5px;
    cursor: pointer;
  }

  .nav-toggle > span {
    width: 18px;
    height: 2px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    padding: 25px 20px 34px;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(17, 23, 24, .98);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    font-size: 17px;
  }

  .nav-cta {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .hero-brief {
    width: min(460px, 100%);
    align-self: auto;
    margin: 0;
  }

  .proof-grid {
    grid-template-columns: 1fr 1fr;
    padding-block: 20px;
  }

  .proof-grid > div:nth-child(2) {
    border-right: 0;
  }

  .heading-split,
  .market-panel,
  .video-grid,
  .checklist-grid,
  .faq-grid,
  .rfq-grid {
    grid-template-columns: 1fr;
  }

  .heading-split {
    gap: 25px;
  }

  .market-panel {
    gap: 35px;
  }

  .market-image-stack {
    max-width: 700px;
  }

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

  .seo-hub-grid {
    grid-template-columns: 1fr;
  }

  .product-card-wide {
    grid-column: 1 / -1;
  }

  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-grid {
    grid-template-columns: 1fr;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, .17);
  }

  .process-grid article {
    padding: 0 0 34px 31px;
  }

  .process-grid article::before {
    top: 3px;
    left: -6px;
  }

  .checklist-image {
    min-height: 520px;
  }

  .checklist-image img {
    height: 520px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr .6fr .6fr;
  }

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .container,
  .nav {
    width: min(100% - 28px, var(--max));
  }

  .nav {
    min-height: 66px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-copy b {
    font-size: 13px;
  }

  .brand-copy small {
    font-size: 7px;
  }

  .nav-links {
    top: 66px;
  }

  .hero {
    min-height: 910px;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(12, 17, 18, .97), rgba(12, 17, 18, .83));
  }

  .hero-grid {
    min-height: 910px;
    padding-block: 110px 54px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-checks {
    display: grid;
  }

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

  .proof-grid > div,
  .proof-grid > div:first-child {
    min-height: 62px;
    padding-inline: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .proof-grid > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding-block: 78px;
  }

  .section-heading h2,
  .market-copy h3,
  .video-copy h2,
  .checklist-copy h2,
  .faq-title h2,
  .rfq-intro h2 {
    font-size: 39px;
  }

  .market-switch {
    grid-template-columns: 1fr;
  }

  .market-image-stack {
    min-height: 470px;
  }

  .market-image-main {
    width: 88%;
    height: 440px;
  }

  .market-image-small {
    width: 43%;
    height: 245px;
  }

  .market-points article {
    grid-template-columns: 1fr;
    gap: 5px;
  }

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

  .product-card-wide {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .product-card-wide .product-image {
    min-height: 340px;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }

  .gallery-item-large {
    grid-column: span 2;
  }

  .gallery-item-tall {
    grid-row: span 1;
  }

  .video-selector {
    flex-wrap: wrap;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .rfq-form {
    padding: 21px;
  }

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

  .footer-grid > div:first-child,
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .lightbox {
    padding: 50px 12px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
