:root {
  --ink: #07070b;
  --panel: #12131a;
  --panel-2: #191a24;
  --paper: #f7f7fb;
  --muted: #a8adbd;
  --cyan: #26e9ff;
  --pink: #ff3ec8;
  --lime: #b8ff3d;
  --amber: #ffd166;
  --danger: #ff5a5f;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 10%, rgba(38, 233, 255, 0.22), transparent 32rem),
    radial-gradient(circle at 80% 18%, rgba(255, 62, 200, 0.18), transparent 28rem),
    #0d0e13;
  color: var(--paper);
  font-family: "Manrope", Arial, sans-serif;
}

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

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

.page-shell {
  position: relative;
  width: min(100%, 480px);
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 16rem),
    var(--ink);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), var(--shadow);
}

.page-shell::before {
  content: "";
  position: fixed;
  z-index: 3;
  top: 0;
  left: 50%;
  width: min(100%, 480px);
  height: 4px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--cyan), var(--pink), var(--amber), var(--lime), var(--cyan));
  background-size: 220% 100%;
  animation: neonFlow 5s linear infinite;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 14px 16px 10px;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 82px -80px auto;
  z-index: -1;
  height: 360px;
  border-radius: 999px;
  background: conic-gradient(from 140deg, var(--cyan), var(--pink), var(--amber), var(--lime), var(--cyan));
  filter: blur(54px);
  opacity: 0.26;
}

.sale-strip {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.sale-strip::-webkit-scrollbar {
  display: none;
}

.sale-strip span {
  flex: 0 0 auto;
  min-height: 32px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #f5f7ff;
  font-size: 11px;
  font-weight: 800;
}

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

.eyebrow {
  margin: 0 0 8px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Russo One", "Manrope", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 440px;
  font-size: clamp(34px, 10vw, 48px);
  line-height: 0.98;
}

.hero-subtitle {
  max-width: 430px;
  margin: 10px 0 0;
  color: #e8ebf7;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.38;
}

h2 {
  font-size: 26px;
  line-height: 1.08;
}

.hero-image-wrap {
  position: relative;
  margin-top: 14px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--panel);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.48);
}

.hero-image {
  width: 100%;
  aspect-ratio: 1 / 0.7;
  object-fit: cover;
  object-position: center;
}

.price-badge {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: grid;
  min-width: 158px;
  padding: 10px 12px 11px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(7, 7, 11, 0.82);
  box-shadow: 0 0 24px rgba(255, 62, 200, 0.42);
  backdrop-filter: blur(10px);
}

.discount-label {
  position: absolute;
  top: -12px;
  right: 10px;
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--lime);
  color: #06070b;
  box-shadow: 0 0 18px rgba(184, 255, 61, 0.56);
  font-size: 12px;
  font-weight: 1000;
}

.price-label {
  color: var(--amber);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.price-badge strong {
  color: #fff;
  font-size: 31px;
  line-height: 1;
}

.old-price {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-decoration: line-through;
}

.save-price {
  margin-top: 3px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
}

.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 10px;
}

.hero-proof-grid span {
  display: grid;
  place-items: center;
  min-height: 38px;
  padding: 7px 6px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: #f4f6ff;
  font-size: 11px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
}

.timer-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  padding: 8px 10px;
  border: 1px solid rgba(38, 233, 255, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(38, 233, 255, 0.1), rgba(255, 62, 200, 0.08)),
    rgba(255, 255, 255, 0.06);
}

.timer-label {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.timer-card strong {
  color: var(--amber);
  font-size: 14px;
}

.timer {
  display: flex;
  gap: 6px;
}

.timer span {
  display: grid;
  place-items: center;
  width: 46px;
  min-height: 44px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.36);
}

.timer b {
  font-size: 18px;
  line-height: 1;
}

.timer small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.primary-cta {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 52px;
  margin-top: 10px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--pink), #8c5cff 48%, var(--cyan));
  color: #fff;
  box-shadow: 0 10px 28px rgba(255, 62, 200, 0.28);
  cursor: pointer;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.primary-cta:focus-visible,
.sticky-cta:focus-visible,
.gallery-item:focus-visible,
input:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

.microtrust {
  margin: 8px auto 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.quick-hooks,
.section,
.order-section {
  padding: 18px 16px;
}

.quick-hooks {
  display: grid;
  gap: 10px;
  background: #101117;
}

.quick-hooks article {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.quick-hooks strong {
  color: var(--lime);
  font-family: "Russo One", "Manrope", Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
}

.quick-hooks span {
  color: #e9ebf5;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section-heading {
  margin-bottom: 14px;
}

.feature-photo,
.preview-frame {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.feature-photo img,
.preview-frame img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.benefit-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.benefit-list div {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.benefit-list p {
  margin: 0;
  color: #e7e9f3;
  font-size: 14px;
  line-height: 1.45;
}

.dot {
  width: 11px;
  height: 11px;
  margin-top: 5px;
  border-radius: 50%;
}

.dot-cyan {
  background: var(--cyan);
  box-shadow: 0 0 15px var(--cyan);
}

.dot-pink {
  background: var(--pink);
  box-shadow: 0 0 15px var(--pink);
}

.dot-lime {
  background: var(--lime);
  box-shadow: 0 0 15px var(--lime);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 10px;
}

.gallery-item {
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.gallery-item.active {
  border-color: var(--cyan);
  box-shadow: 0 0 18px rgba(38, 233, 255, 0.36);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.specs dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.specs dl div {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 10px;
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.035);
}

.specs dt {
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
}

.specs dd {
  margin: 0;
  color: #e9ebf4;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.38;
}

.compare-card {
  display: grid;
  gap: 10px;
}

.compare-card div {
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.compare-card div:last-child {
  border: 1px solid rgba(184, 255, 61, 0.34);
  box-shadow: inset 0 0 22px rgba(184, 255, 61, 0.06);
}

.compare-card span {
  display: block;
  margin-bottom: 5px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.compare-card p {
  margin: 0;
  color: #eaecf5;
  font-size: 14px;
  line-height: 1.45;
}

.reviews {
  display: grid;
  gap: 10px;
}

.reviews .section-heading {
  margin-bottom: 4px;
}

.reviews article {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.stars {
  color: var(--amber);
  font-size: 15px;
  letter-spacing: 0;
}

.reviews p {
  margin: 8px 0 10px;
  color: #e7e9f3;
  font-size: 14px;
  line-height: 1.45;
}

.reviews strong {
  color: var(--cyan);
  font-size: 13px;
}

.order-section {
  padding-bottom: 96px;
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 62, 200, 0.18), transparent 12rem),
    #101116;
}

.order-card {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.045));
}

.stock-line {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 12px 0;
  color: #f1f3fb;
  font-size: 14px;
  font-weight: 700;
}

.stock-line span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--danger);
  box-shadow: 0 0 16px var(--danger);
}

.stock-line p {
  margin: 0;
}

.order-form {
  display: grid;
  gap: 11px;
}

.order-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.order-form input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.34);
  color: #fff;
  padding: 0 14px;
}

.order-form input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.order-form .primary-cta {
  margin-top: 2px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
}

footer {
  padding: 20px 16px 86px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

footer a {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-weight: 900;
  text-decoration: none;
}

.sticky-cta {
  position: fixed;
  z-index: 5;
  right: max(12px, calc((100vw - 480px) / 2 + 12px));
  bottom: 12px;
  left: max(12px, calc((100vw - 480px) / 2 + 12px));
  display: grid;
  place-items: center;
  max-width: 456px;
  min-height: 56px;
  margin: 0 auto;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--lime), var(--cyan));
  color: #06070b;
  box-shadow: 0 14px 34px rgba(38, 233, 255, 0.26);
  font-weight: 1000;
  text-align: center;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.is-submitted .order-card {
  border-color: rgba(184, 255, 61, 0.54);
  box-shadow: 0 0 34px rgba(184, 255, 61, 0.12);
}

@keyframes neonFlow {
  to {
    background-position: 220% 0;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 360px) {
  .hero {
    padding-inline: 12px;
  }

  h1 {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-proof-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof-grid span {
    min-height: 36px;
  }

  h2 {
    font-size: 23px;
  }

  .timer-card {
    grid-template-columns: 1fr;
  }

  .timer span {
    width: 100%;
  }

  .specs dl div {
    grid-template-columns: 1fr;
  }
}