:root {
  --bg: #04100f;
  --bg-2: #071816;
  --panel: rgba(7, 22, 22, 0.82);
  --panel-solid: #0a1c1a;
  --text: #f1fff9;
  --muted: #a9c5bc;
  --cyan: #13f4e5;
  --pink: #ff2bd6;
  --green: #8cff4c;
  --amber: #ffc857;
  --line: rgba(19, 244, 229, 0.24);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 43, 214, 0.14), transparent 28rem),
    radial-gradient(circle at 92% 8%, rgba(19, 244, 229, 0.16), transparent 26rem),
    linear-gradient(180deg, #03100f 0%, #061715 48%, #020807 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 75%);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(150px, 1fr);
  align-items: center;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 64px);
  background: linear-gradient(180deg, rgba(3, 12, 12, 0.94), rgba(3, 12, 12, 0.52));
  border-bottom: 1px solid rgba(19, 244, 229, 0.18);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.header-cta {
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand-mark {
  width: 14px;
  height: 28px;
  background: linear-gradient(180deg, var(--pink), var(--cyan), var(--green));
  box-shadow: 0 0 20px rgba(19, 244, 229, 0.8);
  transform: skew(-14deg);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

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

.header-cta {
  justify-self: end;
  padding: 10px 16px;
  color: #001918;
  font-weight: 800;
  background: var(--green);
  box-shadow: 0 0 24px rgba(140, 255, 76, 0.32);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/cyber-jungle-scooters.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(2, 8, 10, 0.94) 0%, rgba(2, 8, 10, 0.74) 36%, rgba(2, 8, 10, 0.2) 66%, rgba(2, 8, 10, 0.62) 100%),
    linear-gradient(180deg, rgba(2, 8, 10, 0.15) 0%, rgba(2, 8, 10, 0.86) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(34px, 8vw, 92px) clamp(18px, 7vw, 96px);
  padding-top: 120px;
}

.kicker,
.section-label,
.tag {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(42px, 8vw, 86px);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 38px rgba(19, 244, 229, 0.25);
}

.hero-copy {
  max-width: 660px;
  margin: 24px 0 0;
  color: #d7f4ec;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  color: #04100f;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  box-shadow: 0 0 34px rgba(19, 244, 229, 0.34);
}

.button.ghost {
  color: var(--text);
  background: rgba(4, 16, 15, 0.54);
  border-color: var(--line);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 700px;
  margin: 34px 0 0;
  background: rgba(19, 244, 229, 0.18);
  border: 1px solid rgba(19, 244, 229, 0.2);
}

.hero-stats div {
  padding: 18px;
  background: rgba(4, 16, 15, 0.78);
}

.hero-stats dt {
  color: var(--cyan);
  font-size: 22px;
  font-weight: 900;
}

.hero-stats dd {
  margin: 5px 0 0;
  color: var(--muted);
}

.section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 104px) 0;
}

.intro,
.areas,
.trust,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.section h2 {
  margin: 0;
  font-size: clamp(30px, 4.5vw, 56px);
  line-height: 1;
  text-transform: uppercase;
}

.section p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.bike-card,
.trust-card,
.lead-form,
.steps article,
details {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(9, 27, 25, 0.92), rgba(4, 12, 12, 0.9));
  box-shadow: var(--shadow);
}

.bike-card {
  display: grid;
  min-height: 100%;
}

.bike-card.compact {
  grid-column: span 2;
  grid-template-columns: 0.8fr 1.2fr;
}

.photo-slot {
  min-height: 270px;
  display: grid;
  place-items: end start;
  padding: 18px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(19, 244, 229, 0.24), transparent 38%),
    linear-gradient(315deg, rgba(255, 43, 214, 0.26), transparent 42%),
    #071816;
}

.photo-slot::after {
  content: "PHOTO";
  padding: 8px 10px;
  color: rgba(241, 255, 249, 0.7);
  border: 1px dashed rgba(241, 255, 249, 0.32);
  font-size: 12px;
  font-weight: 900;
}

.photo-slot.pcx {
  background-image:
    linear-gradient(135deg, rgba(19, 244, 229, 0.26), transparent 34%),
    linear-gradient(315deg, rgba(255, 43, 214, 0.24), transparent 45%),
    linear-gradient(120deg, #092826, #050b0c);
}

.photo-slot.nmax {
  background-image:
    linear-gradient(135deg, rgba(255, 200, 87, 0.2), transparent 34%),
    linear-gradient(315deg, rgba(19, 244, 229, 0.23), transparent 45%),
    linear-gradient(120deg, #101922, #06110f);
}

.photo-slot.urban {
  min-height: 220px;
  background-image:
    linear-gradient(135deg, rgba(140, 255, 76, 0.2), transparent 34%),
    linear-gradient(315deg, rgba(255, 43, 214, 0.18), transparent 45%),
    linear-gradient(120deg, #0a211b, #080d12);
}

.bike-card-body {
  padding: 26px;
}

.bike-card h3,
.steps h3,
.trust-card h2 {
  margin: 0;
  font-size: 25px;
  text-transform: uppercase;
}

.bike-card ul,
.trust-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.5;
}

.price {
  display: inline-flex;
  padding: 10px 12px;
  color: #04100f;
  font-weight: 900;
  background: var(--amber);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.steps article {
  min-height: 260px;
  padding: 24px;
}

.steps span {
  display: block;
  margin-bottom: 54px;
  color: var(--pink);
  font-size: 42px;
  font-weight: 900;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-list span {
  padding: 12px 14px;
  color: var(--text);
  border: 1px solid rgba(140, 255, 76, 0.28);
  background: rgba(140, 255, 76, 0.08);
}

.trust-card {
  min-height: 310px;
  padding: 30px;
}

.trust-card.neon {
  border-color: rgba(255, 43, 214, 0.32);
  background:
    linear-gradient(135deg, rgba(255, 43, 214, 0.16), transparent 44%),
    linear-gradient(180deg, rgba(9, 27, 25, 0.92), rgba(4, 12, 12, 0.9));
}

.faq {
  max-width: 900px;
}

details {
  margin-top: 12px;
  padding: 20px 22px;
}

summary {
  color: var(--text);
  font-weight: 900;
  cursor: pointer;
}

.contact {
  align-items: stretch;
}

.contact-panel {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  padding: 22px;
  border-left: 4px solid var(--pink);
  background: rgba(255, 43, 214, 0.08);
}

.contact-panel a {
  color: var(--cyan);
  font-weight: 800;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: #dffaf4;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--text);
  border: 1px solid rgba(19, 244, 229, 0.28);
  border-radius: 0;
  outline: none;
  background: rgba(2, 8, 8, 0.72);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(19, 244, 229, 0.16);
}

.form-button {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.wa-fallback {
  display: none;
  color: var(--cyan);
  font-weight: 900;
  text-align: center;
}

.wa-fallback.is-visible {
  display: block;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 64px);
  color: var(--muted);
  border-top: 1px solid rgba(19, 244, 229, 0.18);
  background: #020807;
}

.footer p {
  margin: 0;
}

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

  .nav {
    display: none;
  }

  .hero-content {
    margin-left: 18px;
  }

  .hero-stats,
  .intro,
  .areas,
  .trust,
  .contact,
  .bike-grid,
  .bike-card.compact,
  .steps {
    grid-template-columns: 1fr;
  }

  .bike-card.compact {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 14px;
  }

  .brand span:last-child {
    max-width: 136px;
    font-size: 13px;
  }

  .header-cta {
    padding: 9px 10px;
    font-size: 13px;
  }

  .hero {
    min-height: 96vh;
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(2, 8, 10, 0.94), rgba(2, 8, 10, 0.72)),
      linear-gradient(180deg, rgba(2, 8, 10, 0.08), rgba(2, 8, 10, 0.92));
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-stats div,
  .bike-card-body,
  .steps article,
  .trust-card,
  details {
    padding: 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}
