:root {
  color-scheme: dark;
  --black: #080808;
  --coal: #111111;
  --steel: #1b1d1d;
  --iron: #2a2c2c;
  --ash: #c7c1b7;
  --white: #f7f3ec;
  --orange: #f26a21;
  --orange-dark: #b94112;
  --line: rgba(247, 243, 236, 0.14);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

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

.announcement {
  background: var(--orange);
  color: #15100d;
  font-weight: 900;
  text-align: center;
  padding: 0.55rem 1rem;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding: 0.75rem clamp(1rem, 4vw, 3rem);
  background: rgba(8, 8, 8, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: max-content;
  text-decoration: none;
  font-weight: 950;
  letter-spacing: 0;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: var(--orange);
  color: #130c08;
  border: 2px solid #ff9a57;
  font-size: 0.85rem;
}

.nav-links {
  display: none;
  gap: clamp(1rem, 3vw, 2.25rem);
  color: var(--ash);
  font-weight: 800;
  font-size: 0.9rem;
}

.nav-links a,
.footer a {
  text-decoration: none;
}

.nav-links a:hover,
.footer a:hover {
  color: var(--orange);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 48px;
  padding: 0.85rem 1.1rem;
  border: 1px solid transparent;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.86rem;
  font-weight: 950;
  line-height: 1.1;
  text-align: center;
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.button-primary,
.button-small {
  background: var(--orange);
  color: #140d08;
  box-shadow: 0 0 0 2px rgba(242, 106, 33, 0.18);
}

.button-primary:hover,
.button-small:hover {
  background: #ff7d35;
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.button-small {
  min-height: 42px;
  padding: 0.7rem 0.9rem;
  font-size: 0.74rem;
  flex-shrink: 1;
}

.full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  width: max-content;
  margin-bottom: 0.85rem;
  color: var(--orange);
  font-weight: 950;
  text-transform: uppercase;
  text-decoration: none;
}

.text-link:hover {
  color: #ff9a57;
}

.section-pad {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 3rem);
}

.hero,
.section-heading,
.three-grid,
.review-grid,
.product-grid,
.steps,
.why,
.trust-row,
.compare-grid,
.accordion,
.final-cta,
.footer {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.hero {
  display: grid;
  gap: 2rem;
  min-height: calc(100vh - 112px);
  align-items: center;
  padding-top: clamp(2.5rem, 7vw, 5rem);
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  line-height: 0.96;
  text-transform: uppercase;
  font-weight: 950;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

h1 {
  max-width: 780px;
  margin-bottom: 1rem;
  font-size: clamp(3rem, 12vw, 6.8rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 7vw, 4.6rem);
}

h3 {
  font-size: clamp(1.35rem, 4vw, 2rem);
}

.hero-subhead {
  max-width: 660px;
  color: var(--ash);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
}

.hero-actions {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.proof-strip {
  display: grid;
  gap: 0.65rem;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-strip span,
.trust-row span,
.ingredient-list span {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.75rem 0.85rem;
}

.hero-media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--steel);
  aspect-ratio: 4 / 3;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8, 8, 8, 0.28));
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--black);
}

.band {
  width: 100%;
  max-width: none;
  background:
    linear-gradient(90deg, rgba(242, 106, 33, 0.08), transparent 42%),
    var(--coal);
  border-block: 1px solid var(--line);
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading > p,
.split-heading > p,
.why-detail p,
.product-card p,
.three-grid p {
  color: var(--ash);
}

.three-grid,
.review-grid,
.product-grid,
.steps,
.compare-grid {
  display: grid;
  gap: 1rem;
}

.three-grid article,
.quote-card,
.product-card,
.steps article,
.compare-grid article {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  padding: clamp(1.1rem, 3vw, 1.6rem);
}

.review-photo {
  display: block;
  width: clamp(128px, 34vw, 190px);
  height: clamp(128px, 34vw, 190px);
  aspect-ratio: 1;
  object-fit: cover;
  border: 3px solid var(--orange);
  border-radius: 10px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  margin: 1.1rem 0 1rem;
}

.review-strip {
  display: grid;
  gap: 0.75rem;
  width: min(100%, var(--max));
  margin: 1.2rem auto 0;
}

.review-strip p {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0;
  border-left: 4px solid var(--orange);
  background: rgba(255, 255, 255, 0.045);
  padding: 0.9rem 1rem;
  color: var(--white);
  font-weight: 900;
}

.review-strip-photo {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  object-fit: cover;
  border: 2px solid var(--orange);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
}

.review-strip strong {
  color: var(--orange);
}

.stat,
.steps span,
.product-type {
  color: var(--orange);
  font-weight: 950;
  text-transform: uppercase;
}

.stars {
  color: var(--orange);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.product-rating {
  display: inline-flex;
  text-decoration: none;
}

blockquote {
  margin: 0 0 1.25rem;
  font-size: clamp(1.3rem, 4vw, 2.1rem);
  line-height: 1.12;
  font-weight: 900;
}

figcaption {
  color: var(--ash);
  font-weight: 900;
}

.review-form {
  display: grid;
  gap: 1rem;
  width: min(100%, 780px);
  margin: 1.25rem auto 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  padding: clamp(1.1rem, 3vw, 1.6rem);
}

.review-form h3 {
  margin-bottom: 0;
}

.review-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--ash);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  background: #0d0d0d;
  color: var(--white);
  font: inherit;
  padding: 0.85rem;
}

.review-form input[type="file"] {
  padding: 0.65rem;
}

.review-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--orange);
  font-weight: 900;
}

.review-summary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  padding: clamp(1rem, 3vw, 1.5rem);
}

.review-summary span {
  display: block;
  color: var(--orange);
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 950;
  margin-bottom: 0.75rem;
}

.review-summary p {
  margin: 0;
  color: var(--ash);
}

.reviews-link {
  width: max-content;
  max-width: 100%;
  margin: 1rem auto 0;
}

.all-reviews-grid .quote-card {
  min-height: 260px;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 360px;
}

.product-card p {
  flex: 1;
}

.featured {
  border-color: rgba(242, 106, 33, 0.75);
  background:
    linear-gradient(160deg, rgba(242, 106, 33, 0.18), rgba(255, 255, 255, 0.035) 42%),
    var(--steel);
}

.badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  max-width: calc(100% - 2rem);
  background: var(--orange);
  color: #160d08;
  padding: 0.38rem 0.62rem;
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
  line-height: 1.1;
  text-align: center;
  white-space: normal;
}

.price {
  margin: 1rem 0;
  font-size: 2rem;
  font-weight: 950;
}

.price span {
  color: var(--orange);
  font-size: 1rem;
  text-transform: uppercase;
}

.why {
  display: grid;
  gap: 1.5rem;
}

.ingredient-list,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
}

.compare-grid ul {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--ash);
}

.compare-grid li {
  padding-left: 1.6rem;
  position: relative;
}

.compare-grid li::before {
  content: "X";
  position: absolute;
  left: 0;
  color: #ff4d35;
  font-weight: 950;
}

.compare-grid .with li::before {
  content: "+";
  color: var(--orange);
}

details {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  padding: 1.2rem 0.2rem;
  font-size: 1.1rem;
  font-weight: 950;
  text-transform: uppercase;
}

details p {
  max-width: 760px;
  margin: 0;
  padding: 0 0.2rem 1.2rem;
  color: var(--ash);
}

.final-cta {
  text-align: center;
}

.final-cta h2 {
  max-width: 900px;
  margin-inline: auto;
}

.footer {
  display: grid;
  gap: 1.25rem;
  padding: 2.5rem clamp(1rem, 4vw, 3rem) 6rem;
  color: var(--ash);
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-weight: 900;
}

.mobile-sticky {
  position: fixed;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.8rem;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  background: var(--orange);
  color: #140d08;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

.product-page .site-header .logo {
  color: var(--white);
}

.product-hero {
  display: grid;
  gap: 1.25rem;
  width: min(100%, var(--max));
  margin-inline: auto;
  align-items: stretch;
}

.product-media {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--steel);
  min-height: 100%;
}

.product-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: contain;
  background: var(--black);
}

.buy-box,
.upsell-box {
  min-width: 0;
  border: 1px solid rgba(242, 106, 33, 0.45);
  background:
    linear-gradient(155deg, rgba(242, 106, 33, 0.13), rgba(255, 255, 255, 0.035) 44%),
    var(--coal);
  padding: clamp(1.2rem, 4vw, 2rem);
}

.buy-box h1 {
  font-size: clamp(1.72rem, 4.6vw, 4.5rem);
  max-width: 100%;
}

.spray-page .buy-box h1 {
  font-size: clamp(1.45rem, 4vw, 4rem);
}

.buy-box p,
.product-page .section-heading p,
.product-page .compare-grid p,
.product-page .product-card li {
  color: var(--ash);
}

.buy-box > img,
#system > img {
  display: block;
  width: 100%;
  margin-top: 1rem;
  border: 1px solid var(--line);
  background: var(--black);
  object-fit: contain;
}

.buy-box > img {
  aspect-ratio: 4 / 3;
}

.purchase-options {
  display: grid;
  gap: 0.75rem;
}

.purchase-option {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  min-height: 58px;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  text-decoration: none;
  font-weight: 850;
}

.purchase-option span {
  min-width: 0;
}

.purchase-option:hover,
.purchase-option-featured {
  border-color: rgba(242, 106, 33, 0.72);
}

.purchase-option strong {
  color: var(--orange);
  white-space: nowrap;
}

.purchase-option s {
  color: var(--ash);
  font-size: 0.9rem;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 2px;
}

.purchase-option em {
  display: inline-flex;
  margin-left: 0.45rem;
  padding: 0.18rem 0.4rem;
  background: var(--orange);
  color: #140d08;
  font-size: 0.68rem;
  font-style: normal;
  letter-spacing: 0.08em;
}

#system > img {
  width: min(100%, var(--max));
  margin: 0 auto 1rem;
  aspect-ratio: 16 / 9;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin: 0.8rem 0 1rem;
  font-weight: 950;
}

.product-price span {
  font-size: clamp(2.1rem, 7vw, 3.5rem);
  line-height: 1;
}

.product-price s {
  color: var(--ash);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  text-decoration-color: var(--orange);
  text-decoration-thickness: 3px;
}

.buy-box .proof-strip {
  margin-top: 1rem;
}

.inline-badge {
  position: static;
  display: inline-flex;
  width: max-content;
  margin-bottom: 0.8rem;
}

.upsell .section-heading {
  margin-bottom: 0;
}

.upsell-box h3 {
  margin-bottom: 0;
}

.single-review {
  max-width: 850px;
}

.product-gallery,
.product-gallery-grid {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.product-gallery {
  padding-top: 0;
}

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

.product-gallery-grid img {
  width: 100%;
  aspect-ratio: 6 / 7;
  object-fit: contain;
  border: 1px solid var(--line);
  background: var(--black);
}

.included-grid .product-card {
  min-height: 0;
}

.included-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  border: 1px solid var(--line);
  background: var(--black);
  margin-bottom: 1rem;
}

.included-grid ul {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding-left: 1.1rem;
}

.product-page .final-cta .button {
  min-width: min(100%, 280px);
}

.trust h2 {
  font-size: clamp(1.85rem, 6vw, 4.6rem);
}

@media (min-width: 680px) {
  .hero-actions,
  .proof-strip,
  .review-strip {
    display: flex;
    flex-wrap: wrap;
  }

  .button {
    padding-inline: 1.35rem;
  }

  .review-grid,
  .compare-grid,
  .included-grid,
  .product-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .three-grid,
  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  }

  .product-hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.72fr);
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

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

  .featured {
    transform: translateY(-18px);
  }

  .why,
  .split-heading {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
    align-items: start;
  }

  .mobile-sticky {
    display: none;
  }

  .footer {
    padding-bottom: 2.5rem;
  }
}

@media (max-width: 520px) {
  .site-header {
    gap: 0.6rem;
  }

  .site-header .logo span:last-child {
    display: none;
  }

  .button-small {
    max-width: 190px;
  }
}
