:root {
  --ink: #08130f;
  --pine: #0f2b20;
  --deep: #03140c;
  --green: #97df3f;
  --green-strong: #37d76e;
  --amber: #ffb51c;
  --red: #ef3340;
  --paper: #f4f8ef;
  --cream: #e9f1df;
  --steel: #9aa69f;
  --line: rgba(255, 255, 255, .15);
  --shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--paper);
  background: var(--deep);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(151, 223, 63, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(151, 223, 63, .045) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .75), transparent 82%);
  z-index: -1;
}

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

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

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  width: min(1180px, calc(100% - 28px));
  min-height: 64px;
  transform: translateX(-50%);
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 10px 12px 10px 18px;
  background: rgba(5, 18, 12, .82);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  box-shadow: 0 12px 38px rgba(0, 0, 0, .22);
  backdrop-filter: blur(16px);
}

.brand {
  font-weight: 900;
  font-size: 23px;
  line-height: 1;
}

.brand span {
  display: inline-block;
  color: var(--amber);
  background: var(--ink);
  padding: 7px 5px 8px 7px;
  margin-right: 3px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  color: rgba(244, 248, 239, .78);
  font-weight: 800;
  font-size: 14px;
}

.nav a {
  padding: 10px 0;
}

.nav a:hover {
  color: var(--paper);
}

.header-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 6px;
  color: var(--ink);
  background: var(--green);
  font-weight: 900;
}

.section-dark,
.section-light {
  position: relative;
  overflow: hidden;
}

section[id] {
  scroll-margin-top: 104px;
}

.section-dark {
  background:
    linear-gradient(135deg, rgba(9, 37, 27, .98), rgba(3, 20, 12, .98) 52%, rgba(21, 32, 2, .96));
}

.section-light {
  color: var(--ink);
  background: var(--paper);
}

.hero {
  min-height: 96vh;
  padding: 132px max(24px, calc((100vw - 1180px) / 2)) 78px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 54px;
}

.hero::after,
.benefits::after,
.specs::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0 34%, rgba(151, 223, 63, .07) 34% 34.4%, transparent 34.4% 100%);
}

.hero-copy,
.hero-stage,
.quick-strip,
.section-head,
.spec-layout,
.order-section {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  color: var(--green);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 40px;
  height: 4px;
  border-radius: 999px;
  background: var(--amber);
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  color: var(--paper);
  font-size: clamp(48px, 7vw, 96px);
  line-height: .92;
  font-weight: 900;
}

.lead {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgba(244, 248, 239, .74);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.58;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border: 0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.button.primary {
  color: var(--ink);
  background: linear-gradient(90deg, #baff4e, #7ade35);
  box-shadow: 0 16px 34px rgba(123, 222, 53, .28);
}

.button.ghost {
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .06);
}

.button.full {
  width: 100%;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-facts span {
  padding: 12px 17px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  color: rgba(244, 248, 239, .86);
  background: rgba(255, 255, 255, .06);
  font-weight: 900;
}

.hero-stage {
  min-height: min(720px, 72vh);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 72% 46%, rgba(55, 215, 110, .34), transparent 34%),
    radial-gradient(circle at 14% 12%, rgba(41, 77, 124, .52), transparent 42%),
    linear-gradient(135deg, #102035 0%, #0a2a22 53%, #06140e 100%);
  box-shadow: var(--shadow);
  isolation: isolate;
  overflow: hidden;
}

.stage-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(151, 223, 63, .075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(151, 223, 63, .075) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: .68;
  mask-image: radial-gradient(circle at 58% 46%, rgba(0, 0, 0, .9), rgba(0, 0, 0, .28) 64%, transparent 100%);
}

.stage-glow {
  position: absolute;
  inset: 10% 6% 14%;
  background:
    radial-gradient(circle at 58% 46%, rgba(55, 215, 110, .26), transparent 37%),
    radial-gradient(circle at 82% 22%, rgba(255, 181, 28, .16), transparent 22%);
  filter: blur(16px);
  transform: rotate(-8deg);
}

.stage-orbit {
  position: absolute;
  right: 6%;
  top: 12%;
  width: min(76%, 540px);
  aspect-ratio: 1;
  border: 3px dashed rgba(55, 215, 110, .42);
  border-radius: 50%;
  opacity: .72;
  animation: orbitSpin 24s linear infinite;
}

.stage-orbit span {
  position: absolute;
  right: 12%;
  top: 16%;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--green-strong);
  box-shadow: 0 0 0 10px rgba(55, 215, 110, .12), 0 0 28px rgba(55, 215, 110, .7);
}

.stage-scan {
  position: absolute;
  left: 16%;
  top: 48%;
  width: 68%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 181, 28, .92), rgba(55, 215, 110, .55), transparent);
  opacity: .72;
  transform: rotate(-17deg);
  animation: scanLine 3.8s ease-in-out infinite;
}

.product-float {
  position: absolute;
  inset: 5% 2% 28% 42%;
  display: grid;
  place-items: center;
  margin: 0;
  z-index: 2;
  pointer-events: none;
}

.product-float img {
  width: min(90%, 360px);
  max-height: 92%;
  object-fit: contain;
  filter: drop-shadow(0 34px 36px rgba(0, 0, 0, .48)) drop-shadow(0 0 30px rgba(151, 223, 63, .18));
  transform: rotate(-22deg);
  animation: floatTool 5.4s ease-in-out infinite;
}

.hero-badge {
  position: absolute;
  left: 40px;
  right: auto;
  top: 42%;
  z-index: 4;
  display: flex;
  width: 132px;
  height: 132px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 50%;
  color: var(--paper);
  background: var(--red);
  box-shadow: 0 18px 42px rgba(239, 51, 64, .34);
  transform: rotate(11deg);
  animation: badgePulse 3.9s ease-in-out infinite;
}

.hero-badge strong {
  font-size: 52px;
  line-height: .86;
  font-weight: 900;
}

.hero-badge span {
  font-size: 14px;
  line-height: 1.05;
  font-weight: 900;
  text-align: center;
}

.price-plate {
  position: absolute;
  left: 28px;
  right: auto;
  bottom: 26px;
  z-index: 3;
  width: min(360px, calc(100% - 56px));
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px 18px;
  align-items: end;
  padding: 22px 24px;
  color: var(--paper);
  background: rgba(7, 21, 17, .88);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  box-shadow: 0 22px 46px rgba(0, 0, 0, .24);
  backdrop-filter: blur(14px);
}

.price-plate span,
.price-card span {
  color: rgba(244, 248, 239, .72);
  font-weight: 800;
}

.price-plate strong,
.price-card strong {
  color: var(--green-strong);
  font-size: clamp(46px, 7vw, 92px);
  line-height: .88;
  font-weight: 900;
}

.price-plate small,
.price-card small {
  color: var(--paper);
  font-size: .36em;
}

.price-plate em,
.price-card em {
  grid-column: 1 / -1;
  color: var(--amber);
  font-style: normal;
  font-weight: 900;
}

.floating-note {
  position: absolute;
  z-index: 2;
  padding: 14px 22px;
  border-radius: 999px;
  background: #f6fbf0;
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .18);
}

.note-top {
  top: 78px;
  left: 38px;
}

.note-side {
  top: 39%;
  left: 178px;
  right: auto;
}

.note-bottom {
  left: 38px;
  right: auto;
  top: 54%;
  bottom: auto;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .08);
}

.quick-item {
  min-height: 170px;
  padding: 44px max(24px, calc((100vw - 1180px) / 2 + 24px));
  background: var(--ink);
}

.quick-item strong {
  display: block;
  margin-bottom: 10px;
  color: var(--amber);
  font-size: 24px;
  font-weight: 900;
}

.quick-item span {
  color: rgba(244, 248, 239, .72);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 800;
}

.kit-section,
.benefits,
.specs,
.order-section,
.precision,
.reviews {
  padding: 96px max(24px, calc((100vw - 1180px) / 2));
}

.section-head {
  max-width: 850px;
  margin-bottom: 42px;
}

.section-head h2,
.precision-copy h2,
.order-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(38px, 5vw, 70px);
  line-height: .98;
  font-weight: 900;
}

.section-head p,
.precision-copy p,
.order-copy p {
  color: rgba(8, 19, 15, .68);
  font-size: 20px;
  line-height: 1.55;
  font-weight: 800;
}

.section-dark .section-head p,
.section-dark .benefit p {
  color: rgba(244, 248, 239, .7);
}

.details-board {
  display: grid;
  grid-template-columns: 1.25fr repeat(2, 1fr);
  gap: 16px;
}

.detail-card {
  position: relative;
  min-height: 250px;
  padding: 26px;
  overflow: hidden;
  border-radius: 8px;
  color: var(--paper);
  background:
    linear-gradient(rgba(151, 223, 63, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(151, 223, 63, .055) 1px, transparent 1px),
    radial-gradient(circle at 82% 16%, rgba(151, 223, 63, .2), transparent 34%),
    #0d2117;
  background-size: 54px 54px, 54px 54px, auto, auto;
  box-shadow: 0 18px 44px rgba(4, 21, 12, .14);
}

.detail-card::after {
  content: "";
  position: absolute;
  right: -58px;
  bottom: -58px;
  width: 180px;
  height: 180px;
  border: 2px dashed rgba(151, 223, 63, .28);
  border-radius: 50%;
}

.detail-main {
  grid-row: span 2;
  min-height: 516px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at 70% 18%, rgba(255, 181, 28, .2), transparent 28%),
    radial-gradient(circle at 22% 14%, rgba(55, 215, 110, .2), transparent 32%),
    linear-gradient(135deg, #102b20, #071811);
}

.detail-number {
  display: inline-flex;
  width: 54px;
  height: 54px;
  margin-bottom: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--green);
  font-weight: 900;
}

.detail-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.05;
  font-weight: 900;
}

.detail-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: rgba(244, 248, 239, .72);
  font-size: 18px;
  line-height: 1.48;
  font-weight: 800;
}

.detail-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.detail-tags span {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--amber);
  font-weight: 900;
}

.photo-wall {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 230px;
  gap: 16px;
}

.photo-tile {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  border: 1px solid rgba(8, 19, 15, .1);
  background:
    linear-gradient(rgba(151, 223, 63, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(151, 223, 63, .06) 1px, transparent 1px),
    radial-gradient(circle at 68% 38%, rgba(55, 215, 110, .22), transparent 38%),
    #102419;
  background-size: 52px 52px, 52px 52px, auto, auto;
  box-shadow: 0 18px 44px rgba(4, 21, 12, .12);
}

.photo-tile.large {
  grid-column: span 2;
  grid-row: span 2;
}

.photo-tile.tall,
.photo-tile.poster {
  grid-row: span 2;
}

.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  filter: drop-shadow(0 22px 24px rgba(0, 0, 0, .3));
}

.photo-tile.clean-shot::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 8px;
  border: 1px solid rgba(244, 248, 239, .08);
  pointer-events: none;
}

.photo-tile figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--ink);
  background: var(--amber);
  font-weight: 900;
  z-index: 3;
}

.hero-shot img {
  width: 78%;
  height: 92%;
  margin: auto;
  transform: rotate(-18deg);
  animation: photoFloat 5.5s ease-in-out infinite;
}

.tile-orbit {
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  right: 7%;
  top: 12%;
  border: 2px dashed rgba(55, 215, 110, .4);
  border-radius: 50%;
  animation: orbitSpin 22s linear infinite;
}

.crop-handle img {
  width: 158%;
  height: 158%;
  object-position: 61% 27%;
  transform: translate(-20%, -16%) rotate(-10deg);
}

.crop-control img {
  width: 164%;
  height: 164%;
  object-position: 52% 38%;
  transform: translate(-13%, -8%) rotate(-14deg);
}

.box-shot img {
  width: 78%;
  margin: auto;
  transform: rotate(4deg);
}

.crop-nose img {
  width: 176%;
  height: 176%;
  object-position: 11% 80%;
  transform: translate(2%, -34%) rotate(-8deg);
}

.crop-logo img {
  width: 180%;
  height: 180%;
  object-position: 38% 64%;
  transform: translate(-10%, -25%) rotate(-13deg);
}

.spec-card,
.bit-card,
.charge-card,
.kit-shot {
  display: grid;
  place-items: center;
  padding: 22px;
  color: var(--paper);
}

.spec-card strong {
  color: var(--green-strong);
  font-size: 54px;
  line-height: .9;
  font-weight: 900;
}

.spec-card span,
.spec-card em,
.charge-card em {
  color: rgba(244, 248, 239, .74);
  font-style: normal;
  font-weight: 900;
}

.bit-card {
  align-content: center;
  gap: 12px;
}

.bit-row {
  width: 72%;
  height: 14px;
  border-radius: 999px;
  background:
    repeating-linear-gradient(90deg, #ccd3cd 0 18px, #6a746c 18px 25px),
    linear-gradient(90deg, #cdd5cf, #838d86);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .22);
}

.bit-row:nth-child(2),
.bit-row:nth-child(4) {
  transform: translateX(16px);
}

.charge-card span {
  color: rgba(244, 248, 239, .72);
  font-size: 26px;
  font-weight: 900;
}

.charge-card strong {
  color: var(--green-strong);
  font-size: 44px;
  line-height: 1;
  font-weight: 900;
}

.case-graphic {
  position: relative;
  display: block;
  width: min(82%, 240px);
  height: 148px;
  transform: rotate(-4deg);
}

.case-lid,
.case-body {
  position: absolute;
  left: 0;
  width: 100%;
  border: 2px solid rgba(244, 248, 239, .2);
  border-radius: 8px;
  background: linear-gradient(135deg, #27312c, #111a15);
  box-shadow: 0 18px 34px rgba(0, 0, 0, .26);
}

.case-lid {
  top: 0;
  height: 46px;
  transform: skewX(-8deg);
}

.case-body {
  bottom: 0;
  height: 92px;
  padding: 18px;
  display: grid;
  grid-template-columns: 1.8fr repeat(5, 1fr);
  gap: 7px;
  align-items: center;
}

.mini-driver,
.mini-bit {
  display: block;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), #1d271f 42%, #59645e);
}

.mini-driver {
  height: 22px;
}

.mini-bit {
  height: 28px;
  width: 11px;
  justify-self: center;
  background: linear-gradient(#cdd5cf, #6a746c);
}

.benefit-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.benefit {
  min-height: 330px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 48px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--green);
  font-weight: 900;
}

.benefit h3 {
  margin-bottom: 14px;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 900;
}

.benefit p {
  font-size: 17px;
  line-height: 1.5;
  font-weight: 800;
}

.precision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 58px;
}

.precision-visual {
  min-height: 530px;
  border-radius: 8px;
  background:
    linear-gradient(rgba(8, 19, 15, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 19, 15, .08) 1px, transparent 1px),
    var(--cream);
  background-size: 62px 62px;
  overflow: hidden;
}

.driver-demo {
  position: relative;
  height: 530px;
}

.driver-demo img {
  position: absolute;
  width: min(48%, 310px);
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%) rotate(-17deg);
  filter: drop-shadow(0 24px 22px rgba(0, 0, 0, .18));
}

.bit-line {
  position: absolute;
  left: 11%;
  bottom: 24%;
  width: 32%;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--amber), rgba(255, 181, 28, 0));
  animation: pulseLine 1.9s ease-in-out infinite;
}

.screw-head {
  position: absolute;
  left: 9%;
  bottom: 19%;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 9px solid #313833;
  background: #c8d0c8;
  box-shadow: inset 0 0 0 6px #edf1ea, 0 14px 28px rgba(0, 0, 0, .16);
  animation: spinScrew 1.5s linear infinite;
}

.screw-head::before,
.screw-head::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 34px;
  height: 7px;
  border-radius: 999px;
  background: #313833;
  transform: translate(-50%, -50%);
}

.screw-head::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.metric-row span {
  min-height: 112px;
  padding: 20px;
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 14px 34px rgba(2, 20, 12, .09);
  font-weight: 900;
}

.metric-row strong {
  display: block;
  color: var(--green-strong);
  font-size: 42px;
  line-height: 1;
}

.spec-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
}

.spec-table,
.bundle-card {
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
}

.spec-table {
  padding: 12px;
}

.spec-table dl {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.spec-table div {
  min-height: 92px;
  padding: 18px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .06);
}

.spec-table dt {
  margin-bottom: 8px;
  color: rgba(244, 248, 239, .62);
  font-weight: 800;
}

.spec-table dd {
  margin: 0;
  color: var(--paper);
  font-size: 22px;
  font-weight: 900;
}

.bundle-card {
  padding: 24px;
  overflow: hidden;
}

.bundle-stage {
  position: relative;
  min-height: 430px;
  margin-bottom: 28px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .14);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02)),
    rgba(8, 19, 15, .44);
  box-shadow: inset 0 0 0 1px rgba(244, 248, 239, .04);
}

.bundle-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: .75;
}

.bundle-product {
  position: absolute;
  inset: 32px 46px 74px;
  display: grid;
  place-items: center;
  margin: 0;
}

.bundle-product img {
  width: min(76%, 430px);
  max-height: 100%;
  object-fit: contain;
  padding: 10px;
  transform: rotate(-12deg);
  filter: drop-shadow(0 30px 34px rgba(0, 0, 0, .36)) drop-shadow(0 0 24px rgba(151, 223, 63, .16));
}

.bundle-note {
  position: absolute;
  z-index: 2;
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--paper);
  font-weight: 900;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .2);
}

.bundle-note.note-left {
  left: 28px;
  top: 28px;
}

.bundle-note.note-right {
  right: 26px;
  bottom: 26px;
}

.bundle-card h3 {
  margin-bottom: 12px;
  font-size: 30px;
  font-weight: 900;
}

.bundle-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bundle-card li {
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, .13);
  color: rgba(244, 248, 239, .74);
  font-weight: 800;
}

.reviews {
  background:
    linear-gradient(rgba(8, 19, 15, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 19, 15, .035) 1px, transparent 1px),
    var(--paper);
  background-size: 72px 72px;
}

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

.review-card {
  overflow: hidden;
  border-radius: 8px;
  background: #fbfff7;
  box-shadow: 0 18px 44px rgba(4, 21, 12, .12);
}

.review-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center 42%;
}

.review-card:nth-child(2) img {
  object-position: center 55%;
}

.review-card:nth-child(3) img {
  object-position: center 35%;
}

.review-card div {
  padding: 24px;
}

.stars {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--amber);
  font-size: 18px;
  letter-spacing: 0;
}

.review-card h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.08;
  font-weight: 900;
}

.review-card p {
  color: rgba(8, 19, 15, .68);
  font-size: 17px;
  line-height: 1.48;
  font-weight: 800;
}

.review-card strong {
  color: var(--ink);
  font-weight: 900;
}

.order-section {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 58px;
  align-items: center;
}

.price-card {
  margin-top: 34px;
  padding: 28px;
  border-radius: 8px;
  color: var(--paper);
  background: linear-gradient(135deg, #162e37, #153125);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 22px 60px rgba(3, 20, 12, .2);
}

.order-form {
  padding: 30px;
  border-radius: 8px;
  background: #dfe8dd;
  box-shadow: 0 26px 60px rgba(3, 20, 12, .18);
}

.order-form label {
  display: block;
  margin-bottom: 20px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.order-form input {
  width: 100%;
  height: 64px;
  margin-top: 8px;
  padding: 0 18px;
  border: 2px solid transparent;
  border-radius: 8px;
  outline: 0;
  font: inherit;
  font-weight: 800;
  background: #fbfff7;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.order-form input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(151, 223, 63, .26);
}

.form-note {
  margin: 18px 0 0;
  color: rgba(8, 19, 15, .56);
  line-height: 1.45;
  font-weight: 800;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  padding: 34px 24px 110px;
  color: rgba(244, 248, 239, .62);
  background: var(--deep);
  font-weight: 800;
}

.footer span {
  color: var(--paper);
}

.sticky-buy {
  position: fixed;
  right: max(18px, calc((100vw - 1180px) / 2));
  bottom: 18px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: min(520px, calc(100vw - 36px));
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(7, 20, 15, .92);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .28);
  backdrop-filter: blur(15px);
  transform: translateY(140%);
  transition: transform .35s ease;
}

.sticky-buy.is-visible {
  transform: translateY(0);
}

.sticky-buy div {
  flex: 1;
  padding-left: 12px;
}

.sticky-buy span {
  display: block;
  color: rgba(244, 248, 239, .58);
  font-weight: 900;
}

.sticky-buy strong {
  display: block;
  color: var(--green);
  font-size: 27px;
  font-weight: 900;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: transform .45s ease, filter .45s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatTool {
  0%,
  100% {
    transform: translateY(0) rotate(-22deg);
  }
  50% {
    transform: translateY(-18px) rotate(-19deg);
  }
}

@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes scanLine {
  0%,
  100% {
    opacity: .18;
    transform: translateY(-18px) rotate(-17deg) scaleX(.62);
  }
  50% {
    opacity: .86;
    transform: translateY(18px) rotate(-17deg) scaleX(1);
  }
}

@keyframes badgePulse {
  0%,
  100% {
    transform: rotate(11deg) scale(1);
  }
  50% {
    transform: rotate(11deg) scale(1.045);
  }
}

@keyframes photoFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-18deg);
  }
  50% {
    transform: translateY(-10px) rotate(-15deg);
  }
}

@keyframes pulseLine {
  0%,
  100% {
    opacity: .25;
    transform: scaleX(.6);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes spinScrew {
  to {
    transform: rotate(360deg);
  }
}

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

  .nav {
    display: none;
  }

  .hero,
  .precision,
  .spec-layout,
  .order-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 112px;
  }

  .hero-stage {
    min-height: 720px;
  }

  .product-float {
    inset: 5% 4% 28% 34%;
  }

  .details-board {
    grid-template-columns: 1fr 1fr;
  }

  .detail-main {
    grid-column: span 2;
    grid-row: auto;
    min-height: 360px;
  }

  .quick-strip,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .quick-item {
    min-height: 130px;
    padding: 28px 24px;
  }

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

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    min-height: 58px;
    padding: 8px 9px 8px 12px;
  }

  .brand {
    font-size: 18px;
  }

  .header-order {
    min-height: 38px;
    padding: 0 12px;
    font-size: 14px;
  }

  .hero,
  .kit-section,
  .benefits,
  .specs,
  .order-section,
  .precision,
  .reviews {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    gap: 28px;
    padding-top: 98px;
  }

  h1 {
    font-size: 44px;
  }

  .lead {
    font-size: 17px;
  }

  .button {
    min-height: 52px;
    width: 100%;
    padding: 0 18px;
  }

  .hero-stage {
    min-height: 660px;
  }

  .stage-orbit {
    top: 14%;
    right: -16%;
    width: 96%;
  }

  .stage-scan {
    left: 3%;
    width: 94%;
  }

  .product-float {
    inset: 74px 0 190px;
  }

  .product-float img {
    width: min(62%, 250px);
    max-height: 100%;
  }

  .hero-badge {
    width: 92px;
    height: 92px;
    left: auto;
    right: 12px;
    top: 78px;
  }

  .hero-badge strong {
    font-size: 35px;
  }

  .hero-badge span {
    font-size: 11px;
  }

  .price-plate {
    left: 12px;
    right: 12px;
    width: auto;
    bottom: 12px;
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .price-plate strong,
  .price-card strong {
    font-size: 56px;
  }

  .floating-note {
    padding: 11px 14px;
    font-size: 13px;
  }

  .note-top {
    top: 18px;
    left: 14px;
  }

  .note-side {
    top: 242px;
    left: 12px;
    right: auto;
  }

  .note-bottom {
    display: none;
  }

  .section-head h2,
  .precision-copy h2,
  .order-copy h2 {
    font-size: 38px;
  }

  .details-board {
    grid-template-columns: 1fr;
  }

  .detail-main {
    grid-column: auto;
    min-height: 330px;
  }

  .detail-card {
    min-height: auto;
    padding: 22px;
  }

  .review-card img {
    height: 220px;
  }

  .benefit {
    min-height: 260px;
  }

  .benefit-icon {
    margin-bottom: 30px;
  }

  .precision-visual,
  .driver-demo {
    min-height: 420px;
  }

  .driver-demo img {
    width: min(56%, 230px);
  }

  .bundle-stage {
    min-height: 390px;
  }

  .bundle-product {
    inset: 54px 12px 68px;
  }

  .bundle-product img {
    width: 88%;
    padding: 6px;
  }

  .bundle-note {
    padding: 10px 13px;
    font-size: 13px;
  }

  .bundle-note.note-left {
    left: 12px;
    top: 14px;
  }

  .bundle-note.note-right {
    right: 12px;
    bottom: 14px;
  }

  .metric-row,
  .spec-table dl {
    grid-template-columns: 1fr;
  }

  .sticky-buy {
    right: 12px;
    left: 12px;
    min-width: 0;
  }

  .sticky-buy .button {
    width: auto;
    min-height: 48px;
    padding: 0 16px;
  }
}

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