:root {
  --bg: #020202;
  --panel: #080808;
  --line: rgba(255, 132, 18, 0.42);
  --orange: #ff7b18;
  --orange-bright: #ff9a19;
  --teal: #24d6be;
  --text: #f6f6f6;
  --muted: #a2a2a2;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 50% 9%, rgba(255, 122, 18, 0.13), transparent 28rem),
    radial-gradient(circle at 87% 28%, rgba(255, 122, 18, 0.09), transparent 23rem),
    linear-gradient(180deg, #010101 0%, #060606 56%, #010101 100%);
  color: var(--text);
  font-family: "Arial Narrow", Impact, Haettenschweiler, "Roboto Condensed", Arial, sans-serif;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.014) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.25;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle at center, transparent 0 38%, rgba(0,0,0,0.58) 78%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(var(--max), calc(100% - 44px));
  min-height: 88px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255, 122, 18, 0.21);
  background: rgba(2, 2, 2, 0.84);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 4vw, 50px);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  color: rgba(255,255,255,0.78);
  transition: color 180ms ease;
}

.site-nav a:is(:hover, .active) {
  color: var(--orange);
}

.ig-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--orange);
  border-radius: 999px;
  color: var(--orange);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.ig-button:hover {
  transform: translateY(-2px);
  background: rgba(255, 122, 18, 0.08);
  box-shadow: 0 0 30px rgba(255, 122, 18, 0.2);
}

.ig-button.teal {
  border-color: var(--teal);
  color: var(--teal);
}

.ig-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border: 2px solid currentColor;
  border-radius: 6px;
}

.ig-icon::before {
  position: absolute;
  inset: 4px;
  border: 2px solid currentColor;
  border-radius: 50%;
  content: "";
}

.ig-icon::after {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  background: transparent;
  color: white;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(320px, 0.87fr) minmax(420px, 1.13fr);
  align-items: center;
  width: min(var(--max), calc(100% - 44px));
  min-height: 620px;
  margin: 0 auto;
  padding: 54px 0 58px;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 560px;
  margin: 0;
  color: var(--orange);
  font-size: clamp(74px, 11vw, 150px);
  font-weight: 900;
  line-height: 0.86;
  text-transform: uppercase;
  text-shadow: 0 3px 0 rgba(255,255,255,0.12), 0 0 24px rgba(255,122,18,0.18);
}

.hero h1 span {
  display: block;
  color: white;
}

.subline {
  margin: 18px 0 24px;
  color: var(--teal);
  font-family: Arial, sans-serif;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 900;
  letter-spacing: 12px;
  text-transform: uppercase;
}

.intro {
  max-width: 430px;
  margin: 0 0 34px;
  color: #d3d3d3;
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.age-note {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: Arial, sans-serif;
  text-transform: uppercase;
}

.age-note strong {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 2px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
  font-size: 17px;
}

.age-note span {
  color: #d9d9d9;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
}

.hero-art {
  position: relative;
  min-height: 570px;
}

.poly {
  position: absolute;
  filter: drop-shadow(0 0 30px rgba(255, 111, 0, 0.55));
  opacity: 0.9;
}

.poly::before {
  position: absolute;
  inset: 0;
  clip-path: polygon(0 55%, 14% 30%, 30% 42%, 45% 6%, 59% 32%, 75% 22%, 100% 48%, 82% 75%, 60% 62%, 43% 92%, 22% 69%);
  background:
    linear-gradient(138deg, transparent 0 19%, rgba(255,255,255,0.28) 20% 20.5%, transparent 21%),
    linear-gradient(42deg, transparent 0 33%, rgba(255,255,255,0.2) 34% 34.5%, transparent 35%),
    linear-gradient(160deg, #ff9c13, #de4f00 55%, #ff7b00);
  content: "";
}

.poly-a {
  top: 42px;
  right: -84px;
  width: min(700px, 78vw);
  height: 390px;
}

.poly-b {
  top: 168px;
  left: -4px;
  width: 360px;
  height: 230px;
  transform: rotate(-11deg);
  opacity: 0.6;
}

.poly-c {
  right: 24px;
  bottom: 96px;
  width: 310px;
  height: 160px;
  transform: scaleY(-1);
  opacity: 0.25;
  filter: blur(2px);
}

.hero-pack {
  position: absolute;
  z-index: 2;
  top: 92px;
  left: 50%;
  width: min(520px, 78vw);
  transform: translateX(-43%) rotate(6deg);
  filter: drop-shadow(0 32px 38px rgba(0,0,0,0.78));
}

.hero-reflection {
  position: absolute;
  z-index: 1;
  top: 405px;
  left: 50%;
  width: min(470px, 70vw);
  transform: translateX(-44%) scaleY(-0.42) rotate(6deg);
  opacity: 0.2;
  filter: blur(3px);
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.8), transparent 72%);
}

.floor-glow {
  position: absolute;
  right: -8%;
  bottom: 130px;
  left: 14%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff7b18 22%, #ff9b1e 55%, transparent);
  box-shadow: 0 0 24px #ff7818;
}

.stock-section {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 8px 0 42px;
}

.section-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  margin: 0 0 34px;
}

.section-title span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,122,18,0.72));
}

.section-title span:last-child {
  background: linear-gradient(90deg, rgba(255,122,18,0.72), transparent);
}

.section-title h2,
.faq h2 {
  margin: 0;
  color: var(--orange);
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 900;
  letter-spacing: 12px;
  text-transform: uppercase;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.product-card {
  position: relative;
  grid-column: span 2;
  display: flex;
  min-height: 575px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent), transparent 48%);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.12)),
    var(--image) center / cover no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02), 0 25px 40px rgba(0,0,0,0.36);
}

.product-card::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 36%;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.62) 34%, rgba(0,0,0,0.96) 67%, #000 100%);
  content: "";
}

.product-card::before {
  position: absolute;
  z-index: 1;
  inset: 0 0 auto;
  height: 116px;
  background: linear-gradient(180deg, #000 0%, #000 46%, rgba(0,0,0,0.9) 66%, rgba(0,0,0,0) 100%);
  content: "";
}

.status {
  position: absolute;
  z-index: 3;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 22px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(0,0,0,0.45);
}

.card-spacer {
  min-height: 1px;
  flex: 1;
}

.product-info {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 102px;
  left: 24px;
  display: grid;
  justify-items: center;
  text-align: center;
  text-transform: uppercase;
}

.product-info p {
  margin: 0 0 12px;
  color: var(--accent);
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 2px;
}

.mg {
  display: inline-grid;
  min-width: 74px;
  min-height: 32px;
  place-items: center;
  padding: 0 16px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  font-family: Arial, sans-serif;
  font-size: 17px;
  font-weight: 900;
  background: rgba(0,0,0,0.44);
}

.card-cta {
  position: absolute;
  z-index: 3;
  right: 45px;
  bottom: 24px;
  left: 45px;
  min-height: 48px;
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0,0,0,0.25);
}

.wide-left {
  grid-column: 2 / span 2;
}

.wide-right {
  grid-column: 4 / span 2;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(var(--max), calc(100% - 44px));
  margin: 12px auto 36px;
  padding: 22px 28px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  background: rgba(255,255,255,0.035);
  box-shadow: inset 0 0 26px rgba(255,255,255,0.025);
}

.trust-strip article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  min-width: 0;
  padding: 0 22px;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.trust-strip article:first-child {
  padding-left: 0;
}

.trust-strip article:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-strip h3 {
  margin: 0 0 6px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-strip p {
  margin: 0;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 1.45;
}

.line-icon {
  position: relative;
  display: block;
  width: 42px;
  height: 42px;
  color: var(--orange);
}

.line-icon::before,
.line-icon::after {
  position: absolute;
  content: "";
}

.shield::before {
  inset: 3px 7px;
  border: 3px solid currentColor;
  clip-path: polygon(50% 0, 100% 18%, 88% 78%, 50% 100%, 12% 78%, 0 18%);
}

.shield::after {
  left: 17px;
  top: 12px;
  width: 8px;
  height: 16px;
  border: solid currentColor;
  border-width: 0 3px 3px 0;
  transform: rotate(40deg);
}

.lock::before {
  right: 8px;
  bottom: 6px;
  left: 8px;
  height: 22px;
  border: 3px solid currentColor;
  border-radius: 4px;
}

.lock::after {
  top: 3px;
  left: 13px;
  width: 16px;
  height: 20px;
  border: 3px solid currentColor;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}

.truck::before {
  left: 3px;
  top: 14px;
  width: 23px;
  height: 12px;
  border: solid currentColor;
  border-width: 3px 0 3px 3px;
}

.truck::after {
  right: 3px;
  top: 18px;
  width: 15px;
  height: 8px;
  border: 3px solid currentColor;
  border-left: 0;
  box-shadow: -22px 13px 0 -8px currentColor, -2px 13px 0 -8px currentColor;
}

.chat::before {
  inset: 6px 3px 10px;
  border: 3px solid currentColor;
  border-radius: 16px;
}

.chat::after {
  left: 12px;
  top: 18px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 9px 0 currentColor, 18px 0 currentColor;
}

.faq {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 28px;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 16px 0 42px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid rgba(255, 122, 18, 0.24);
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  font-family: Arial, sans-serif;
}

summary {
  cursor: pointer;
  padding: 17px 18px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

details p {
  margin: 0;
  padding: 0 18px 17px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.site-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 14px 0 28px;
  color: rgba(255,255,255,0.34);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.site-footer span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 50%;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    min-height: 76px;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header.open .site-nav {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    border: 1px solid rgba(255,122,18,0.25);
    border-radius: 0 0 14px 14px;
    background: rgba(4,4,4,0.98);
  }

  .site-header.open .site-nav a {
    padding: 17px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 34px;
  }

  .hero-art {
    order: -1;
    min-height: 470px;
  }

  .hero-copy {
    margin-top: -22px;
  }

  .hero h1 {
    font-size: clamp(70px, 22vw, 128px);
  }

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

  .product-card,
  .wide-left,
  .wide-right {
    grid-column: auto;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 0;
  }

  .trust-strip article:nth-child(2) {
    border-right: 0;
    padding-right: 0;
  }

  .trust-strip article:nth-child(3) {
    padding-left: 0;
  }

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

@media (max-width: 640px) {
  .site-header,
  .hero,
  .stock-section,
  .trust-strip,
  .faq,
  .site-footer {
    width: min(100% - 28px, var(--max));
  }

  .brand {
    font-size: 22px;
  }

  .hero {
    padding-bottom: 32px;
  }

  .hero-art {
    min-height: 380px;
  }

  .poly-a {
    top: 48px;
    right: -150px;
    width: 620px;
    height: 310px;
  }

  .hero-pack {
    top: 84px;
    width: min(360px, 86vw);
    transform: translateX(-50%) rotate(6deg);
  }

  .hero-reflection {
    top: 292px;
    width: min(330px, 78vw);
    transform: translateX(-50%) scaleY(-0.4) rotate(6deg);
  }

  .floor-glow {
    bottom: 86px;
    left: 0;
  }

  .subline,
  .section-title h2 {
    letter-spacing: 7px;
  }

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

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: clamp(315px, 78vw, 430px);
    padding: 12px;
    border-radius: 8px;
    background-position: center top;
  }

  .product-card::before {
    height: 86px;
  }

  .product-card::after {
    height: 42%;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 24%, rgba(0,0,0,0.98) 58%, #000 100%);
  }

  .product-info {
    right: 8px;
    bottom: 58px;
    left: 8px;
  }

  .product-info p {
    margin-bottom: 7px;
    font-size: 10px;
    letter-spacing: 1px;
  }

  .mg {
    min-width: 48px;
    min-height: 22px;
    padding: 0 8px;
    font-size: 11px;
  }

  .status {
    top: 12px;
    padding: 6px 12px;
    font-size: 10px;
  }

  .card-cta {
    right: 10px;
    bottom: 14px;
    left: 10px;
    min-height: 38px;
    padding-inline: 14px;
    gap: 7px;
    font-size: 9px;
    line-height: 1.05;
    white-space: normal;
    text-align: center;
  }

  .card-cta .ig-icon {
    width: 14px;
    height: 14px;
    border-radius: 5px;
  }

  .trust-strip article,
  .trust-strip article:first-child,
  .trust-strip article:nth-child(3),
  .trust-strip article:last-child {
    padding: 0;
    border-right: 0;
  }

  .site-footer {
    flex-direction: column;
    gap: 14px;
  }
}
