:root {
  --black: #080a0f;
  --graphite: #11141c;
  --concrete: #2a2d34;
  --acid: #b6ff00;
  --cyan: #00e5ff;
  --violet: #8b5cff;
  --white: #ffffff;
  --muted: #a7adba;
  --line: rgba(255, 255, 255, 0.12);
  --shadow-acid: 0 0 34px rgba(182, 255, 0, 0.34);
  --shadow-cyan: 0 0 34px rgba(0, 229, 255, 0.26);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(139, 92, 255, 0.2), transparent 30rem),
    radial-gradient(circle at 88% 6%, rgba(0, 229, 255, 0.16), transparent 26rem),
    linear-gradient(135deg, var(--black), #0b0d14 45%, #07080d);
  color: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  min-width: 320px;
  overflow-x: hidden;
  padding-bottom: 86px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(120deg, transparent 0 42%, rgba(182, 255, 0, 0.08) 42% 43%, transparent 43%),
    linear-gradient(300deg, transparent 0 58%, rgba(0, 229, 255, 0.08) 58% 59%, transparent 59%);
  pointer-events: none;
}

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

p {
  color: var(--muted);
  font-size: clamp(1rem, 0.96rem + 0.18vw, 1.12rem);
  margin: 0 0 1.35rem;
}

h1,
h2,
h3 {
  line-height: 0.95;
  margin: 0;
}

h1,
h2 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(3.4rem, 16vw, 7.6rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2.6rem, 10vw, 5.6rem);
  max-width: 12ch;
  margin-bottom: 1.2rem;
}

h3 {
  font-size: 1.15rem;
  letter-spacing: 0;
  margin-bottom: 0.75rem;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.22;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, black, transparent 84%);
}

.container {
  width: min(100% - 32px, 1180px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.72rem max(12px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 10, 15, 0.78);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.68rem;
  min-width: 0;
  max-width: 100%;
}

.brand__mark {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(182, 255, 0, 0.72);
  background: rgba(182, 255, 0, 0.09);
  box-shadow: var(--shadow-acid);
  color: var(--acid);
  font-size: 0.86rem;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  max-width: none;
  overflow-wrap: anywhere;
  white-space: normal;
  font-size: 0.92rem;
  line-height: 1.08;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
}

.header-actions {
  display: none;
  align-items: center;
  gap: 0.65rem;
}

.header-link {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  padding: 0.62rem 0.9rem;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.header-link:hover {
  border-color: var(--cyan);
  color: var(--white);
  transform: translateY(-1px);
}

.section {
  position: relative;
  padding: clamp(4rem, 10vw, 7.5rem) 0;
}

.section--first {
  padding-top: clamp(2.4rem, 7vw, 5.5rem);
}

.section--graphite {
  background:
    linear-gradient(135deg, rgba(17, 20, 28, 0.96), rgba(8, 10, 15, 0.94)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 18px);
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.section--parents {
  background:
    radial-gradient(circle at 85% 20%, rgba(139, 92, 255, 0.24), transparent 22rem),
    linear-gradient(135deg, rgba(17, 20, 28, 0.55), transparent);
}

.eyebrow {
  color: var(--acid);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin-bottom: 0.9rem;
  text-transform: uppercase;
}

.hero {
  min-height: calc(100svh - 74px);
  overflow: hidden;
}

.hero__grid,
.split,
.location {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__lead {
  max-width: 680px;
  color: #d9deea;
  font-size: clamp(1.08rem, 1rem + 0.55vw, 1.45rem);
}

.hero__badges {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  margin: 1.8rem 0;
}

.price-badge,
.bonus-badge {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(17, 20, 28, 0.82);
  padding: 1rem;
}

.price-badge {
  display: flex;
  align-items: end;
  gap: 0.7rem;
  width: fit-content;
  box-shadow: var(--shadow-cyan);
}

.price-badge span {
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.price-badge strong {
  color: var(--acid);
  font-size: clamp(2rem, 10vw, 3.6rem);
  line-height: 0.82;
}

.bonus-badge {
  max-width: 430px;
  border-left: 4px solid var(--acid);
  color: var(--white);
  font-weight: 800;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.8rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid transparent;
  font-weight: 900;
  line-height: 1.1;
  padding: 0.95rem 1.15rem;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn--primary {
  background: var(--acid);
  box-shadow: var(--shadow-acid);
  color: #0a0d10;
}

.btn--primary:hover,
.btn--primary:focus-visible {
  box-shadow: 0 0 44px rgba(182, 255, 0, 0.48);
  transform: translateY(-2px);
}

.btn--ghost {
  border-color: rgba(0, 229, 255, 0.45);
  background: rgba(0, 229, 255, 0.06);
  color: var(--white);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: var(--cyan);
  box-shadow: var(--shadow-cyan);
  transform: translateY(-2px);
}

.btn--text {
  justify-content: flex-start;
  border-color: var(--line);
  color: var(--muted);
  text-transform: none;
}

.meta-strip {
  display: grid;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero__visual,
.image-card {
  min-width: 0;
}

.visual-frame {
  position: relative;
  display: block;
  min-height: 340px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(145deg, rgba(0, 229, 255, 0.18), transparent 32%),
    linear-gradient(320deg, rgba(182, 255, 0, 0.18), transparent 28%),
    var(--graphite);
  margin: 0;
  box-shadow: 0 18px 80px rgba(0, 0, 0, 0.34);
  isolation: isolate;
}

.visual-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(8, 10, 15, 0.04), rgba(8, 10, 15, 0.38)),
    radial-gradient(circle at 70% 22%, rgba(0, 229, 255, 0.22), transparent 12rem);
  pointer-events: none;
}

.visual-frame::after {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

.visual-frame img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1.01);
}

.visual-frame--hero {
  min-height: min(68svh, 660px);
}

.visual-frame--product img {
  object-position: center;
}

.visual-frame--store img,
.visual-frame--parents img,
.visual-frame--rider img {
  object-position: center;
}

.section-head {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-head h2 {
  max-width: 13ch;
}

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.card {
  position: relative;
  overflow: hidden;
  min-height: 174px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent),
    rgba(17, 20, 28, 0.78);
  padding: 1.15rem;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.card::after {
  content: "";
  position: absolute;
  inset: auto -30% -30% auto;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.24), transparent 64%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.card:hover {
  border-color: rgba(182, 255, 0, 0.64);
  box-shadow: var(--shadow-acid);
  transform: translateY(-4px);
}

.card:hover::after {
  opacity: 1;
}

.card p {
  margin: 0;
}

.card__icon {
  display: inline-flex;
  color: var(--cyan);
  font-weight: 900;
  margin-bottom: 1.4rem;
}

.check-list {
  display: grid;
  gap: 0.65rem;
  list-style: none;
  margin: 1.25rem 0 1.6rem;
  padding: 0;
}

.check-list li {
  position: relative;
  color: #d9deea;
  padding-left: 1.65rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.7rem;
  height: 0.7rem;
  background: var(--acid);
  box-shadow: var(--shadow-acid);
  transform: translateY(-50%) rotate(45deg);
}

.process {
  display: grid;
  gap: 1.8rem;
}

.steps {
  display: grid;
  gap: 0.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.steps li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  border: 1px solid var(--line);
  background: rgba(17, 20, 28, 0.72);
  color: #e7ecf7;
  font-weight: 800;
  padding: 0.9rem;
}

.steps span {
  display: grid;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  place-items: center;
  background: var(--cyan);
  box-shadow: var(--shadow-cyan);
  color: #061014;
  font-weight: 900;
}

.section--coupon {
  background:
    linear-gradient(115deg, rgba(182, 255, 0, 0.18), transparent 38%),
    linear-gradient(290deg, rgba(139, 92, 255, 0.2), transparent 42%);
}

.coupon {
  border: 1px solid rgba(182, 255, 0, 0.38);
  background: rgba(8, 10, 15, 0.74);
  box-shadow: var(--shadow-acid);
  padding: clamp(1.2rem, 5vw, 3rem);
}

.coupon h2 {
  max-width: 14ch;
}

.coupon small,
.map-placeholder small {
  color: var(--muted);
}

.trust {
  max-width: 980px;
}

.trust h2 {
  max-width: 14ch;
}

.trust__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.trust__grid span {
  border: 1px solid rgba(0, 229, 255, 0.28);
  background: rgba(0, 229, 255, 0.06);
  color: #e7ecf7;
  font-weight: 800;
  padding: 0.7rem 0.85rem;
}

.contact-grid {
  display: grid;
  gap: 0.9rem;
  margin: 1.5rem 0;
}

.contact-grid div {
  border-left: 3px solid var(--acid);
  background: rgba(17, 20, 28, 0.72);
  padding: 0.9rem 1rem;
}

.contact-grid span,
.contact-grid strong {
  display: block;
}

.contact-grid span {
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 0.24rem;
}

.contact-grid strong {
  color: #f4f7ff;
}

.map-placeholder {
  position: relative;
  display: grid;
  min-height: 420px;
  align-content: end;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--graphite);
  box-shadow: var(--shadow-cyan);
  padding: 1rem;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.map-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 10, 15, 0.08), rgba(8, 10, 15, 0.72)),
    radial-gradient(circle at 38% 62%, rgba(182, 255, 0, 0.16), transparent 18rem);
  pointer-events: none;
}

.map-placeholder:hover,
.map-placeholder:focus-visible {
  border-color: rgba(182, 255, 0, 0.62);
  box-shadow: var(--shadow-acid);
  transform: translateY(-2px);
}

.map-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 54%;
  opacity: 0.92;
}

.map-placeholder span {
  position: relative;
  z-index: 2;
  color: var(--acid);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(5rem, 22vw, 10rem);
  line-height: 0.8;
  text-shadow: 0 0 28px rgba(8, 10, 15, 0.78);
}

.map-placeholder p,
.map-placeholder small {
  position: relative;
  z-index: 2;
}

.map-placeholder p {
  max-width: 760px;
  color: #f4f7ff;
  font-weight: 900;
  margin: 0.9rem 0 0.6rem;
}

.faq {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  border: 1px solid var(--line);
  background: rgba(8, 10, 15, 0.62);
  padding: 0.95rem 1rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--acid);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0.85rem 0 0;
}

.final-cta {
  min-height: 70svh;
  display: grid;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(0, 229, 255, 0.12), transparent 32%),
    linear-gradient(315deg, rgba(182, 255, 0, 0.14), transparent 32%);
}

.final-cta h2 {
  max-width: 13ch;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  padding: 1.4rem 0;
}

.footer__inner {
  display: grid;
  gap: 0.35rem;
}

.mobile-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 10, 15, 0.9);
  backdrop-filter: blur(16px);
  padding: 0.7rem 0.7rem calc(0.7rem + env(safe-area-inset-bottom));
}

.mobile-bar a {
  display: grid;
  min-height: 48px;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: clamp(0.78rem, 3.2vw, 0.95rem);
  font-weight: 900;
  text-align: center;
}

.mobile-bar a:first-child {
  background: var(--acid);
  box-shadow: var(--shadow-acid);
  color: #080a0f;
}

.glitch {
  position: relative;
  text-shadow: 3px 0 rgba(0, 229, 255, 0.34), -3px 0 rgba(139, 92, 255, 0.3);
}

.glitch::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: rgba(0, 229, 255, 0.35);
  transform: translate(3px, -2px);
  clip-path: inset(0 0 58% 0);
  pointer-events: none;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal--delay {
  transition-delay: 120ms;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

@media (min-width: 540px) {
  .hero__badges {
    grid-template-columns: auto 1fr;
    align-items: stretch;
  }

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

@media (min-width: 760px) {
  body {
    padding-bottom: 0;
  }

  .header-actions {
    display: flex;
  }

  .mobile-bar {
    display: none;
  }

  .footer__inner {
    display: flex;
    justify-content: space-between;
  }
}

@media (min-width: 900px) {
  .hero__grid,
  .split,
  .location {
    grid-template-columns: minmax(0, 1fr) minmax(310px, 0.8fr);
    align-items: center;
  }

  .split--reverse {
    grid-template-columns: minmax(310px, 0.8fr) minmax(0, 1fr);
  }

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

  .process {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }

  .process .btn {
    width: fit-content;
  }

  .steps {
    grid-column: 2;
    grid-row: 1 / span 2;
  }
}

@media (min-width: 1080px) {
  .hero__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.8fr);
  }

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

  .section-head {
    margin-bottom: 2.6rem;
  }
}
