:root {
  --ink: #172126;
  --ink-2: #2b393e;
  --steel: #5c6870;
  --paper: #f7f8f4;
  --white: #ffffff;
  --line: #d9ddd8;
  --mist: #edf1ed;
  --green: #2f6d62;
  --green-dark: #1f4945;
  --amber: #c58a27;
  --rust: #a84632;
  --blue: #315f7a;
  --shadow: 0 18px 45px rgba(23, 33, 38, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

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

p {
  color: var(--ink-2);
}

p,
h1,
h2,
h3,
li,
dd,
strong {
  overflow-wrap: break-word;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  padding: 0.75rem 1rem;
  background: var(--white);
  border: 2px solid var(--green);
  border-radius: 6px;
}

.skip-link:focus {
  top: 1rem;
}

.content {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 248, 244, 0.96);
  border-bottom: 1px solid rgba(23, 33, 38, 0.12);
  backdrop-filter: blur(12px);
}

.nav-shell {
  width: min(1180px, calc(100% - 2rem));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
}

.brand-logo {
  width: clamp(210px, 28vw, 326px);
  height: auto;
  max-height: 62px;
  object-fit: contain;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.93rem;
}

.site-menu a {
  color: var(--ink-2);
  text-decoration: none;
}

.site-menu a:hover {
  color: var(--green-dark);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.nav-cta {
  background: var(--ink);
  color: var(--white) !important;
}

.menu-button {
  display: none;
  min-height: 42px;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  padding: 5.5rem 0 4.5rem;
  background: var(--ink);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--ink);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  z-index: -1;
  height: 170px;
  background: var(--green-dark);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero-card {
  position: absolute;
  width: 210px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
}

.hero-card-one {
  right: 17%;
  top: 96px;
  transform: rotate(-4deg);
}

.hero-card-two {
  right: 4%;
  top: 178px;
  transform: rotate(5deg);
}

.hero-card-three {
  right: 12%;
  bottom: 52px;
  transform: rotate(-1deg);
}

.hero-content {
  max-width: 1120px;
}

.eyebrow {
  margin-bottom: 0.65rem;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.subhero h1 {
  margin-bottom: 1rem;
  color: var(--white);
  font-size: 4.75rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 560px;
  color: #e9efeb;
  font-size: 1.28rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 2rem 0;
}

.button.primary {
  background: var(--amber);
  color: var(--ink);
  border-color: var(--amber);
}

.button.secondary {
  background: transparent;
  color: var(--ink);
  border-color: rgba(23, 33, 38, 0.22);
}

.hero .button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-1px);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 760px;
  margin: 2.5rem 0 0;
}

.hero-facts div {
  min-height: 120px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-facts dt {
  margin-bottom: 0.35rem;
  color: var(--amber);
  font-size: 0.77rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  color: var(--white);
  font-weight: 700;
}

.intro-band,
.process-band,
.contact-band {
  padding: 4.5rem 0;
}

.intro-band {
  background: var(--white);
}

.two-column,
.split-feature,
.contact-content {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: start;
}

.two-column h2,
.section-heading h2,
.split-feature h2,
.contact-content h2 {
  margin-bottom: 1rem;
  color: var(--ink);
  font-size: 2.55rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.copy-block p:last-child {
  margin-bottom: 0;
}

.disclaimer {
  padding-left: 1rem;
  border-left: 4px solid var(--amber);
  color: var(--steel);
  font-size: 0.95rem;
}

.section {
  padding: 5rem 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2rem;
}

.section-heading.compact {
  margin-bottom: 1.5rem;
}

.section-heading p {
  font-size: 1.05rem;
}

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

.benefit-card,
.product-card,
.detail-card,
.contact-card,
.inspector-panel {
  min-width: 0;
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(23, 33, 38, 0.08);
}

.benefit-card {
  min-height: 260px;
  padding: 1.25rem;
}

.metric {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--mist);
  color: var(--green-dark);
  font-weight: 800;
}

.benefit-card h3,
.product-card h3 {
  margin-bottom: 0.55rem;
  color: var(--ink);
  font-size: 1.16rem;
  line-height: 1.2;
}

.benefit-card p,
.product-card p,
.detail-card p {
  margin-bottom: 0;
}

.process-band {
  background: var(--green-dark);
}

.process-band h2,
.process-band .eyebrow {
  color: var(--white);
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  margin: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  overflow: hidden;
}

.flow-steps li {
  min-height: 190px;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.09);
}

.flow-steps span {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--amber);
  font-weight: 800;
}

.flow-steps p {
  margin-bottom: 0;
  color: #eef4f0;
}

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

.product-card {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  min-height: 210px;
  padding: 1rem;
}

.product-card > div,
.detail-card > div {
  min-width: 0;
}

.product-card.featured {
  background: var(--ink);
}

.product-card.featured h3,
.product-card.featured p {
  color: var(--white);
}

.product-card img {
  width: 100px;
  height: 134px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--mist);
}

.product-card.featured img {
  width: 86px;
  height: 86px;
  justify-self: center;
  border-radius: 50%;
}

.tag {
  margin-bottom: 0.35rem;
  color: var(--rust);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 1.8rem;
}

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

.check-list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 1.4rem 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}

.inspector-panel {
  padding: 1rem;
}

.panel-row {
  display: grid;
  grid-template-columns: minmax(110px, 0.75fr) minmax(0, 1.25fr);
  gap: 1rem;
  align-items: center;
  min-height: 74px;
  border-bottom: 1px solid var(--line);
}

.panel-row span {
  color: var(--steel);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.panel-row strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.panel-note {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
}

.contact-band {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.contact-card {
  display: grid;
  gap: 0.6rem;
  padding: 1.25rem;
  font-style: normal;
}

.contact-card a {
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: none;
}

.site-footer {
  padding: 2rem 0;
  background: var(--ink);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.site-footer p {
  max-width: 560px;
  margin: 0 0 0.45rem;
  color: #dbe3de;
  font-size: 0.9rem;
}

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

.site-footer a {
  color: var(--amber);
  font-weight: 700;
  text-decoration: none;
}

.subhero {
  padding: 5rem 0 4rem;
  background: var(--ink);
}

.subhero .content {
  max-width: 900px;
}

.subhero p {
  max-width: 760px;
  color: #e9efeb;
  font-size: 1.18rem;
}

.product-detail-list {
  display: grid;
  gap: 1rem;
}

.detail-card {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
  padding: 1.25rem;
}

.detail-card img {
  width: 160px;
  height: 214px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--mist);
}

.detail-card.logo-card img {
  width: 118px;
  height: 118px;
  justify-self: center;
  border-radius: 50%;
}

.detail-card h2 {
  margin-bottom: 0.6rem;
  color: var(--ink);
  font-size: 1.55rem;
}

.detail-card ul {
  display: grid;
  gap: 0.35rem;
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.legal-hero p {
  max-width: 820px;
}

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

.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(23, 33, 38, 0.08);
}

.legal-nav a {
  padding: 0.6rem 0.7rem;
  border-radius: 6px;
  color: var(--ink-2);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.legal-nav a:hover {
  background: var(--mist);
  color: var(--green-dark);
}

.legal-copy {
  display: grid;
  gap: 1rem;
}

.legal-card {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(23, 33, 38, 0.08);
  scroll-margin-top: 96px;
}

.legal-card h2 {
  margin-bottom: 0.45rem;
  color: var(--ink);
  font-size: 1.75rem;
  line-height: 1.15;
}

.legal-card h3 {
  margin: 1.25rem 0 0.35rem;
  color: var(--ink);
  font-size: 1.05rem;
}

.legal-date {
  color: var(--steel);
  font-size: 0.93rem;
  font-weight: 700;
}

.legal-download {
  margin-top: 1.4rem;
}

.legal-address {
  display: grid;
  gap: 0.35rem;
  font-style: normal;
}

.legal-address a {
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 980px) {
  .hero-card {
    opacity: 0.24;
  }

  .hero-card-one {
    right: -20px;
  }

  .hero-card-two {
    right: 90px;
  }

  .benefit-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow-steps {
    grid-template-columns: 1fr;
  }

  .flow-steps li {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .nav-shell {
    min-height: 64px;
  }

  .subhero .content,
  .product-detail-list {
    width: min(358px, calc(100% - 2rem));
    margin-left: 1rem;
    margin-right: auto;
  }

  .menu-button {
    display: inline-flex;
  }

  .site-menu {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 70px;
    display: none;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-menu.is-open {
    display: grid;
    gap: 0.8rem;
  }

  .nav-cta {
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding: 4rem 0 3rem;
  }

  .hero h1,
  .subhero h1 {
    font-size: 3.05rem;
  }

  .hero-copy,
  .subhero p {
    font-size: 1.08rem;
  }

  .hero-card {
    width: 150px;
  }

  .hero-card-one {
    top: 76px;
  }

  .hero-card-two {
    top: 230px;
    right: -28px;
  }

  .hero-card-three {
    display: none;
  }

  .hero-facts,
  .two-column,
  .split-feature,
  .contact-content,
  .legal-layout,
  .benefit-grid,
  .product-grid,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
  }

  .footer-content {
    flex-direction: column;
  }

  .two-column h2,
  .section-heading h2,
  .split-feature h2,
  .contact-content h2 {
    font-size: 2.1rem;
  }

  .section,
  .intro-band,
  .process-band,
  .contact-band {
    padding: 3.5rem 0;
  }

  .product-card {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 1rem;
  }

  .detail-card {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .product-card img {
    width: 92px;
    height: 124px;
  }

  .product-card.featured img,
  .detail-card.logo-card img {
    width: 82px;
    height: 82px;
  }

  .detail-card img {
    width: 118px;
    height: 158px;
    justify-self: start;
  }

  .panel-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
    padding: 0.9rem 0;
  }
}

@media (max-width: 600px) {
  .content,
  .nav-shell {
    width: min(358px, calc(100% - 2rem));
    margin-left: 1rem;
    margin-right: auto;
  }
}

@media (max-width: 460px) {
  .content,
  .nav-shell {
    width: min(358px, calc(100% - 2rem));
  }

  .brand-logo {
    width: 186px;
  }

  .hero h1,
  .subhero h1 {
    font-size: 2.5rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-facts div,
  .benefit-card,
  .product-card,
  .detail-card {
    min-height: auto;
  }
}
