:root {
  --bg: #050505;
  --fg: #f5f5f5;
  --muted: rgba(255, 255, 255, 0.62);
  --line: rgba(255, 255, 255, 0.1);
  --red: #e10600;
  --red2: #ff2a26;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
  scrollbar-width: thin;
  scrollbar-color: #e10600 #050505;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  overflow-x: hidden;
  scroll-behavior: smooth;
  overscroll-behavior-y: none;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--red); color: #fff; }

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background:
    linear-gradient(180deg, #050505, #120000 48%, #050505);
  border-left: 1px solid rgba(255, 255, 255, .04);
}

::-webkit-scrollbar-thumb {
  min-height: 72px;
  border: 3px solid #050505;
  border-radius: 999px;
  background:
    linear-gradient(180deg, #ff2a26 0%, #e10600 48%, #790200 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .18),
    0 0 18px rgba(225, 6, 0, .38);
}

::-webkit-scrollbar-thumb:hover {
  background:
    linear-gradient(180deg, #ff504c 0%, #ff1f1a 45%, #a80400 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .28),
    0 0 26px rgba(225, 6, 0, .62);
}

::-webkit-scrollbar-corner {
  background: #050505;
}

.container {
  width: min(100% - 3rem, 80rem);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 1.1rem 0;
  background: rgba(0, 0, 0, 0.72);
  border-bottom: 1px solid rgba(255,255,255,.05);
  backdrop-filter: blur(20px);
  animation: header-drop .7s ease both;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 950;
  letter-spacing: -.04em;
  font-size: 1.25rem;
}
.brand img { width: 2.25rem; height: 2.25rem; border-radius: .25rem; object-fit: contain; }
.brand strong { color: var(--red); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
}
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -.45rem;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--red);
  transition: transform .25s ease;
}
.nav-links a:hover { color: white; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .75rem 1.25rem;
  border-radius: 999px;
  background: var(--red);
  font-weight: 800;
  font-size: .88rem;
  box-shadow: 0 0 30px rgba(225,6,0,.24);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.bag-icon {
  position: relative;
  display: inline-block;
  width: 1rem;
  height: .9rem;
  border: 2px solid currentColor;
  border-radius: .18rem .18rem .28rem .28rem;
  transform: translateY(.05rem);
}
.bag-icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -.48rem;
  width: .55rem;
  height: .5rem;
  transform: translateX(-50%);
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: .55rem .55rem 0 0;
}
.bag-icon::after {
  content: "";
  position: absolute;
  inset: .22rem .25rem auto;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: .9;
}
.nav-cta:hover {
  transform: translateY(-2px);
  background: var(--red2);
  box-shadow: 0 0 36px rgba(225,6,0,.45);
}

.hero {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  padding: 7rem 0 3.5rem;
  isolation: isolate;
  scroll-margin-top: 0;
}
.hero-bg,
.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  z-index: -3;
}
.hero-bg {
  background:
    linear-gradient(90deg, #000 0%, rgba(0,0,0,.82) 46%, rgba(0,0,0,.42) 100%),
    radial-gradient(circle at 80% 20%, rgba(225,6,0,.22), transparent 36%),
    #000;
}
.hero::after {
  background: linear-gradient(0deg, #000 0%, transparent 30%, rgba(0,0,0,.45) 100%);
  z-index: -2;
}
.glow {
  position: absolute;
  border-radius: 50%;
  background: var(--red);
  filter: blur(130px);
  pointer-events: none;
  z-index: -1;
}
.glow-one { top: -14rem; right: -4rem; width: 36rem; height: 36rem; opacity: .2; }
.glow-two { bottom: -10rem; left: -8rem; width: 28rem; height: 28rem; opacity: .1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  align-items: center;
  gap: 3rem;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1.5rem;
  padding: .45rem 1rem;
  border: 1px solid rgba(225,6,0,.45);
  border-radius: 999px;
  background: rgba(225,6,0,.1);
  color: #ff2a26;
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .18em;
}
.pill span {
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 18px var(--red);
}
h1, h2, h3, p { margin: 0; }
.hero h1 {
  font-size: clamp(3.2rem, 7.6vw, 6rem);
  line-height: .95;
  text-transform: uppercase;
  font-weight: 1000;
  letter-spacing: -.07em;
}
em {
  font-style: normal;
  background: linear-gradient(135deg, #ff2a26 0%, #e10600 50%, #7a0200 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy > p {
  max-width: 36rem;
  margin-top: 1.2rem;
  color: rgba(255,255,255,.72);
  font-size: 1.12rem;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  border-radius: 999px;
  padding: 1rem 2rem;
  font-size: .88rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: .25s ease;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 0 36px rgba(225,6,0,.2);
}
.btn-primary:hover { background: var(--red2); box-shadow: 0 0 42px rgba(225,6,0,.55); }
.btn:hover { transform: translateY(-2px); }
.btn-ghost {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.05);
}
.btn-ghost:hover { border-color: rgba(255,255,255,.42); background: rgba(255,255,255,.1); }
.social-proof {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.2rem;
  color: rgba(255,255,255,.7);
  font-size: .92rem;
}
.stars { color: var(--red); letter-spacing: .05em; }
.social-proof i { width: 1px; height: 2rem; background: rgba(255,255,255,.2); }

.hero-product {
  position: relative;
  display: flex;
  min-height: 31rem;
  align-items: center;
  justify-content: center;
}
.product-glow {
  position: absolute;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  background: rgba(225,6,0,.16);
  filter: blur(90px);
}
.mockup-card {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 23.75rem);
  height: 29.375rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 50% 28%, rgba(225,6,0,.18), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(0,0,0,.08));
  box-shadow: 0 40px 90px rgba(0,0,0,.45);
  animation: float 6s ease-in-out infinite;
  will-change: transform;
}
.mockup-card img {
  position: relative;
  z-index: 1;
  height: 25rem;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 35px rgba(0,0,0,.55));
}
.mockup-shadow {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  width: 42%;
  height: 1.3rem;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,0,0,.7), transparent 70%);
  filter: blur(8px);
}
.mockup-label {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  z-index: 2;
  transform: translateX(-50%);
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  background: rgba(0,0,0,.52);
  padding: .55rem .85rem;
  color: rgba(255,255,255,.68);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #000;
  padding: .8rem 0;
  transform: translateZ(0);
}
.ticker div {
  display: flex;
  width: max-content;
  animation: ticker 30s linear infinite;
}
.ticker span {
  margin: 0 1rem;
  color: rgba(255,255,255,.8);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.ticker span::after {
  content: "✦";
  margin-left: 2rem;
  color: var(--red);
}
@keyframes ticker { to { transform: translateX(-50%); } }

.section {
  position: relative;
  padding: 4.5rem 0;
  background: #000;
  text-align: center;
  scroll-margin-top: 5.5rem;
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}
.section-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 8rem;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}
.narrow { max-width: 30rem; }
.eyebrow {
  margin-bottom: 1rem;
  color: var(--red);
  font-size: .86rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .4em;
}
.section h2,
.story h2,
.cta h2,
.order h2,
.features h2,
.testimonials h2 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: .98;
  text-transform: uppercase;
  font-weight: 1000;
  letter-spacing: -.06em;
}
.section-text {
  max-width: 42rem;
  margin: 1rem auto 0;
  color: rgba(255,255,255,.62);
  line-height: 1.7;
}

.product-card {
  position: relative;
  margin: 2.2rem auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: linear-gradient(#18181b, #000);
  text-align: left;
  transition: transform .45s ease, border-color .45s ease, box-shadow .45s ease;
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(225,6,0,.42);
  box-shadow: 0 0 44px rgba(225,6,0,.16);
}
.badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  padding: .35rem .7rem;
  border-radius: 999px;
  background: var(--red);
  font-size: .75rem;
  font-weight: 900;
}
.product-images {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: radial-gradient(circle at 50% 18%, #1d1d1d, #020202 65%);
}
.product-images img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.2rem;
  transition: opacity .4s ease, transform .5s ease;
}
.product-images .back { opacity: 1; }
.product-images .front { opacity: 0; }
.product-images:hover .back { opacity: 0; }
.product-images:hover .front { opacity: 1; transform: scale(1.04); }
.product-images span {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  background: rgba(0,0,0,.6);
  padding: .4rem .7rem;
  color: rgba(255,255,255,.7);
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.product-info { padding: 1.5rem; }
.product-info > p {
  color: var(--red);
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.product-info h3 {
  margin-top: .4rem;
  font-size: 1.6rem;
  text-transform: uppercase;
  font-weight: 1000;
}
.desc {
  display: block;
  margin-top: .85rem;
  color: rgba(255,255,255,.62);
  font-size: .94rem;
  line-height: 1.6;
}
.product-info ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .45rem;
  color: rgba(255,255,255,.75);
  font-size: .85rem;
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.price-row del {
  display: block;
  color: rgba(255,255,255,.4);
  font-size: .82rem;
}
.price-row strong {
  display: block;
  font-size: 1.7rem;
}
.price-row a {
  border: 1px solid var(--red);
  border-radius: 999px;
  padding: .7rem 1.2rem;
  color: #ff2a26;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.story {
  overflow: hidden;
  background: linear-gradient(#000, #09090b, #000);
}
.story-inner { max-width: 56rem; }
.story p:not(.eyebrow) {
  max-width: 48rem;
  margin: 1.3rem auto 0;
  color: rgba(255,255,255,.67);
  font-size: 1.05rem;
  line-height: 1.8;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.stats div {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(39,39,42,.5);
  padding: 1.2rem;
}
.stats strong {
  display: block;
  font-size: 2rem;
  background: linear-gradient(135deg, #ff2a26, #e10600, #7a0200);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 1000;
}
.stats span {
  display: block;
  margin-top: .3rem;
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.features,
.testimonials,
.order {
  background: linear-gradient(#000, #09090b, #000);
}
.feature-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.2rem;
  text-align: left;
}
.feature-grid article,
.review-grid article,
.static-form,
.summary {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: linear-gradient(180deg, rgba(24,24,27,.72), rgba(0,0,0,.86));
  padding: 2rem;
  transition: transform .45s ease, border-color .45s ease, box-shadow .45s ease;
}
.feature-grid article:hover,
.review-grid article:hover,
.static-form:hover,
.summary:hover {
  transform: translateY(-6px);
  border-color: rgba(225,6,0,.42);
  box-shadow: 0 0 38px rgba(225,6,0,.14);
}
.feature-grid b {
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1.2rem;
  border-radius: .85rem;
  background: rgba(225,6,0,.12);
  color: var(--red);
  font-size: 1.6rem;
}
.feature-grid h3,
.review-grid h3 {
  font-size: 1.2rem;
  margin-bottom: .55rem;
}
.feature-grid p,
.review-grid p {
  color: rgba(255,255,255,.62);
  line-height: 1.7;
}
.review-grid b {
  color: rgba(225,6,0,.65);
  font-size: 3rem;
  line-height: .7;
}
.review-grid span {
  display: block;
  margin: 1.2rem 0 1rem;
  color: var(--red);
}
.review-grid small { color: rgba(255,255,255,.5); }

.cta {
  padding: 3.8rem 0;
  background: #000;
  text-align: center;
}
.cta-box {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(225,6,0,.32);
  border-radius: 1.5rem;
  background: radial-gradient(circle at 85% 0%, rgba(225,6,0,.3), transparent 28%),
              radial-gradient(circle at 0% 100%, rgba(225,6,0,.18), transparent 28%),
              linear-gradient(135deg, #1a0000, #000 55%, #000);
  padding: clamp(2.25rem, 5vw, 3.25rem);
  transition: transform .45s ease, box-shadow .45s ease;
}
.cta-box:hover {
  transform: scale(1.01);
  box-shadow: 0 0 60px rgba(225,6,0,.16);
}
.cta-box > p:not(.eyebrow) {
  max-width: 38rem;
  margin: 1rem auto 0;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
}
.cta .btn { margin-top: 2rem; }

.order-grid {
  display: grid;
  grid-template-columns: 1.25fr .85fr;
  gap: 2rem;
  margin-top: 2.2rem;
  text-align: left;
}
.order-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s ease, visibility .28s ease;
}
.order-modal:target {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(225, 6, 0, .18), transparent 36%),
    rgba(0, 0, 0, .82);
  backdrop-filter: blur(18px);
}
.modal-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 1.25rem;
  width: min(100%, 64rem);
  max-height: min(92vh, 48rem);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 18% 0%, rgba(225, 6, 0, .14), transparent 30%),
    linear-gradient(180deg, rgba(24, 24, 27, .96), rgba(0, 0, 0, .98));
  padding: 1.25rem;
  box-shadow: 0 34px 100px rgba(0, 0, 0, .72), 0 0 50px rgba(225, 6, 0, .14);
  transform: translateY(18px) scale(.98);
  transition: transform .32s ease;
}
.order-modal:target .modal-card {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: .85rem;
  right: .85rem;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(0, 0, 0, .62);
  color: white;
  font-size: 1.65rem;
  line-height: 1;
  transition: background .2s ease, transform .2s ease;
}
.modal-close:hover {
  transform: rotate(90deg);
  background: var(--red);
}
.modal-product,
.modal-form {
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: rgba(0, 0, 0, .38);
  padding: 1.35rem;
}
.modal-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .8rem;
  margin-bottom: 1.3rem;
  border-radius: 1rem;
  background: #000;
  padding: .85rem;
}
.modal-images img {
  width: 100%;
  height: 17rem;
  object-fit: contain;
}
.modal-product h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: -.05em;
}
.modal-copy {
  margin-top: .85rem;
  color: rgba(255, 255, 255, .66);
  line-height: 1.65;
}
.modal-summary {
  display: grid;
  gap: .75rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.modal-summary span {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, .68);
}
.modal-summary strong { color: white; }
.modal-summary .red { color: var(--red); }
.modal-form h3 {
  font-size: 1.55rem;
  text-transform: uppercase;
}
.static-form h3,
.summary h3 {
  font-size: 1.6rem;
  text-transform: uppercase;
}
.field-grid {
  display: grid;
  gap: .85rem;
  margin-top: 1.5rem;
}
label {
  color: rgba(255,255,255,.7);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}
input, textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: .75rem;
  background: rgba(0,0,0,.42);
  color: white;
  padding: .95rem 1rem;
  font: inherit;
  outline: none;
}
.phone-field {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: .75rem;
  background: rgba(0,0,0,.42);
  overflow: hidden;
}
.phone-field span {
  height: 100%;
  display: grid;
  place-items: center;
  padding: 0 1rem;
  border-right: 1px solid rgba(255,255,255,.12);
  color: #fff;
  font-weight: 900;
  letter-spacing: .05em;
  background: rgba(255,255,255,.04);
}
.phone-field input {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding-left: .9rem;
}
textarea { min-height: 6.5rem; resize: vertical; }
.address-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
}
.address-grid > div {
  display: grid;
  gap: .85rem;
}
button.btn {
  border: 0;
  cursor: pointer;
  font: inherit;
}
.choice-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
  margin: 1.25rem 0;
}
.choice-row label {
  position: relative;
  display: grid;
  place-items: center;
  height: 3rem;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: .75rem;
  background: rgba(0,0,0,.4);
  font-weight: 900;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.choice-row input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.choice-row label:has(input:checked) {
  border-color: rgba(240, 12, 0, .95);
  background: rgba(240, 12, 0, .22);
  box-shadow: 0 0 22px rgba(240, 12, 0, .18);
}
.choice-row label:hover {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.32);
}
.wide { width: 100%; }
.static-form small,
.modal-form small {
  display: block;
  margin-top: 1rem;
  text-align: center;
  color: rgba(255,255,255,.45);
}
.summary-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
  margin: -1rem -1rem 1.5rem;
  padding: 1rem;
  border-radius: 1rem;
  background: #000;
}
.summary-images img {
  width: 100%;
  height: 16rem;
  object-fit: contain;
}
.summary > p {
  color: var(--red);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  color: rgba(255,255,255,.7);
}
.summary-row strong { color: #fff; }
.summary-row .red { color: var(--red); }
.summary-row.total {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  font-size: 1.1rem;
  font-weight: 900;
}

.mobile-order-bar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(225, 6, 0, .96), rgba(255, 42, 38, .96));
  color: white;
  padding: .85rem 1rem .85rem 1.15rem;
  box-shadow: 0 14px 40px rgba(225, 6, 0, .42), 0 16px 50px rgba(0, 0, 0, .45);
  backdrop-filter: blur(16px);
}
.mobile-order-bar span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: .85rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.mobile-order-bar strong {
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(0, 0, 0, .22);
  padding: .45rem .7rem;
  font-size: .8rem;
}

.footer {
  border-top: 1px solid var(--line);
  background: #000;
}
.gradient-line {
  height: 1px;
  background: linear-gradient(90deg, #e10600, #ff2a26, #7a0200, #e10600);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.25rem;
  padding: 3rem 1.5rem;
}
.footer p {
  max-width: 22rem;
  margin-top: 1rem;
  color: rgba(255,255,255,.62);
  line-height: 1.7;
}
.footer h4 {
  margin: 0 0 1rem;
  font-size: .85rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.footer a:not(.brand) {
  display: block;
  margin-top: .6rem;
  color: rgba(255,255,255,.62);
  font-size: .92rem;
}
.footer a:hover { color: var(--red); }
.copyright {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  border-top: 1px solid var(--line);
  color: rgba(255,255,255,.42);
  font-size: .8rem;
}

@media (max-width: 980px) {
  .nav-links, .nav-cta { display: none; }
  .hero-grid, .order-grid, .footer-grid { grid-template-columns: 1fr; }
  .modal-card { grid-template-columns: 1fr; width: min(100%, 42rem); }
  .hero-grid { gap: 2rem; }
  .hero-product { min-height: auto; }
  .feature-grid, .review-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 3.75rem 0; }
  .cta { padding: 3rem 0; }
  .footer-grid { padding: 2.5rem 1.5rem; }
}
@media (max-width: 620px) {
  .container { width: min(100% - 2rem, 80rem); }
  .hero { min-height: auto; padding: 6.25rem 0 2.8rem; }
  .hero h1 { font-size: clamp(2.75rem, 16vw, 4rem); }
  .hero-actions { margin-top: 1.5rem; }
  .social-proof { margin-top: 1.6rem; }
  .mockup-card { height: 24.5rem; }
  .mockup-card img { height: 21rem; }
  .social-proof i, .social-proof span:last-child { display: none; }
  .stats { grid-template-columns: 1fr 1fr; }
  .section { padding: 3.1rem 0; }
  .product-card,
  .feature-grid,
  .review-grid,
  .order-grid { margin-top: 1.7rem; }
  .modal-card {
    max-height: 86vh;
    border-radius: 1.15rem;
    padding: .8rem;
  }
  .modal-product,
  .modal-form {
    padding: 1rem;
  }
  .modal-images img {
    height: 12rem;
  }
  .modal-close {
    top: .55rem;
    right: .55rem;
  }
  .mobile-order-bar { display: flex; }
  .footer { padding-bottom: 4.5rem; }
  .cta-box { padding: 2rem 1.25rem; }
  .copyright { flex-direction: column; }
}

@keyframes header-drop {
  from { opacity: 0; transform: translateY(-18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(34px) scale(.985);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes reveal-soft {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero .pill { animation: reveal-soft .65s .08s ease both; }
  .hero h1 { animation: reveal-up .8s .16s ease both; }
  .hero-copy > p { animation: reveal-soft .75s .32s ease both; }
  .hero-actions { animation: reveal-soft .75s .46s ease both; }
  .social-proof { animation: reveal-soft .75s .62s ease both; }
  .hero-product { animation: reveal-up .9s .28s ease both; }
  .ticker { animation: reveal-soft .7s .76s ease both; }
}

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .collection .eyebrow,
    .collection h2,
    .collection .section-text,
    .story .eyebrow,
    .story h2,
    .story p,
    .features .eyebrow,
    .features h2,
    .testimonials .eyebrow,
    .testimonials h2,
    .order .eyebrow,
    .order h2,
    .order .section-text,
    .cta-box,
    .product-card,
    .stats div,
    .feature-grid article,
    .review-grid article,
    .static-form,
    .summary,
    .footer-grid > *,
    .copyright {
      animation: reveal-up .85s ease both;
      animation-timeline: view();
      animation-range: entry 8% cover 28%;
    }

    .stats div:nth-child(2),
    .feature-grid article:nth-child(2),
    .review-grid article:nth-child(2) {
      animation-range: entry 12% cover 32%;
    }

    .stats div:nth-child(3),
    .feature-grid article:nth-child(3),
    .review-grid article:nth-child(3) {
      animation-range: entry 16% cover 36%;
    }

    .stats div:nth-child(4),
    .feature-grid article:nth-child(4),
    .feature-grid article:nth-child(5),
    .feature-grid article:nth-child(6) {
      animation-range: entry 20% cover 40%;
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  html,
  body {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
