@font-face {
  font-family: "Teko";
  src: url("Teko-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Teko";
  src: url("Teko-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Teko";
  src: url("Teko-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

:root {
  --bg: #050608;
  --bg-soft: #0e1118;
  --card: #121826;
  --card-2: #171f31;
  --text: #f4f7ff;
  --muted: #b9c7e8;
  --line: #2e3e66;
  --honda-red: #e10600;
  --ktm-orange: #ff6a00;
  --kawasaki-green: #69be28;
  --suzuki-yellow: #ffe100;
  --yamaha-blue: #0033a0;
  --white: #ffffff;
  --red: #ff5d66;
  --shadow: 0 18px 34px rgba(0, 0, 0, 0.4);
  --focus: #7bc3ff;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Teko", sans-serif;
  font-size: 1.2rem;
  line-height: 1.3;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 0%, #0033a033 0%, transparent 24%),
    radial-gradient(circle at 95% 20%, #e1060022 0%, transparent 26%),
    radial-gradient(circle at 46% 100%, #69be2814 0%, transparent 30%),
    linear-gradient(180deg, var(--bg), var(--bg-soft));
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(to right, #ffffff0c 1px, transparent 1px),
    linear-gradient(to bottom, #ffffff0c 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: -1;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

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

.skip-link {
  position: absolute;
  left: 0.5rem;
  top: -50px;
  z-index: 1000;
  background: #ffffff;
  color: #050608;
  border-radius: 8px;
  padding: 0.45rem 0.7rem;
  border: 2px solid #000;
}

.skip-link:focus {
  top: 0.5rem;
}

main {
  width: min(1160px, 94vw);
  margin: 0 auto;
  padding-bottom: 2.2rem;
}

#features,
#how,
#faq,
#download {
  scroll-margin-top: 82px;
}

.site-header,
.hero,
.features,
.how,
.vibe-strip,
.final-cta,
.faq,
.decal-wall {
  animation: fadeUp 0.7s ease both;
}

.features {
  animation-delay: 0.06s;
}

.how {
  animation-delay: 0.12s;
}

.decal-wall {
  animation-delay: 0.18s;
}

.vibe-strip {
  animation-delay: 0.24s;
}

.final-cta {
  animation-delay: 0.3s;
}

.faq {
  animation-delay: 0.36s;
}

.site-header {
  width: min(1160px, 92vw);
  margin: 0.65rem auto 1rem;
  border: 1px solid #42598f;
  border-radius: 16px;
  background: #0a0e17e8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0.85rem;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0.5rem;
  z-index: 40;
}

.brand {
  width: clamp(96px, 14vw, 130px);
}

.brand img {
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  gap: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  font-size: 1.05rem;
}

.nav-links a {
  min-height: 44px;
  padding: 0.5rem 0.72rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.nav-links a:hover {
  color: #ffffff;
  background: linear-gradient(90deg, #0b46c4, #1d6bff);
}

.header-badges {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.btn {
  display: inline-block;
  border: 2px solid var(--white);
  border-radius: 999px;
  background: linear-gradient(90deg, #b80000, var(--honda-red));
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  min-height: 44px;
  padding: 0.55rem 1.35rem;
  box-shadow: 0 0 0 2px #1a2238, 0 0 18px #e1060055;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 0 0 2px #1a2238, 0 0 24px #ff6a007a;
}

.btn-small {
  font-size: 0.9rem;
  min-height: 44px;
  padding: 0.35rem 0.85rem;
  background: linear-gradient(90deg, #0033a0, #1556df);
  color: #ffffff;
  box-shadow: 0 0 0 2px #1a2238, 0 0 16px #2c7dff4d;
}

.section-frame {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(155deg, var(--card), var(--card-2));
  box-shadow: var(--shadow);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(0.95rem, 2.2vw, 1.55rem);
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 1rem;
  align-items: center;
}

.hero::after {
  content: "";
  position: absolute;
  right: -7%;
  top: -35%;
  width: 48%;
  height: 180%;
  background: linear-gradient(180deg, #0054d1 0%, var(--yamaha-blue) 100%);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.92;
  z-index: 0;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 0.35rem;
  color: var(--ktm-orange);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: clamp(0.95rem, 2.4vw, 1.25rem);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.05rem, 6.8vw, 4.45rem);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  text-shadow: 0 0 10px #0054d166;
}

.lead {
  margin: 0.5rem 0 0.75rem;
  color: var(--muted);
  font-size: clamp(1.02rem, 2.4vw, 1.45rem);
  max-width: 46ch;
}

.cta-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.store-link {
  width: min(180px, 45%);
  min-width: 140px;
  transition: transform 0.2s ease;
  border-radius: 10px;
  cursor: pointer;
}

.store-link--header {
  width: 128px;
  min-width: 0;
}

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

.stats {
  margin-top: 0.7rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.72rem;
}

.stats article {
  border: 1px solid #4260a1;
  border-radius: 10px;
  background: #0f1524;
  padding: 0.62rem;
  text-align: center;
}

.stats article:nth-child(1) {
  border-color: #e1060080;
}

.stats article:nth-child(2) {
  border-color: #69be2880;
}

.stats article:nth-child(3) {
  border-color: #0054d180;
}

.stat-value {
  margin: 0;
  font-size: clamp(1.3rem, 4vw, 2rem);
  color: var(--suzuki-yellow);
  text-shadow: 0 0 10px #ffe10058;
}

.stat-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.hero-visual {
  position: relative;
  min-height: 315px;
}

.mock-card {
  position: absolute;
  inset: 1.15rem 0.7rem 0.4rem;
  border: 2px solid var(--white);
  border-radius: 14px;
  background: linear-gradient(160deg, #111a2e, #17233e);
  box-shadow: 0 0 0 3px #1f2a47, 0 0 24px #0033a055;
  padding: 1rem;
}

.mock-card h2 {
  margin: 0;
  color: #fff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 1.1rem;
}

.mock-bike {
  margin: 0.15rem 0 0.4rem;
  color: #d9e5ff;
}

.mock-item {
  margin: 0.38rem 0;
  border-left: 4px solid;
  border-radius: 8px;
  padding: 0.48rem 0.65rem;
  background: #090e19;
}

.mock-item.due {
  border-color: var(--honda-red);
}

.mock-item.soon {
  border-color: var(--suzuki-yellow);
}

.mock-item.overdue {
  border-color: var(--ktm-orange);
}

.mock-foot {
  margin-top: 0.55rem;
  font-size: 0.84rem;
  color: var(--muted);
}

.sticker {
  position: absolute;
  width: clamp(88px, 16vw, 126px);
  border: 2px solid var(--white);
  border-radius: 12px;
  background: #0f1728;
  padding: 0.35rem;
  box-shadow: 0 0 0 3px #1f2a47;
  filter: saturate(1.2) contrast(1.05);
}

.sticker-a {
  top: -0.7rem;
  right: 0;
  transform: rotate(7deg);
}

.sticker-b {
  left: 0;
  bottom: 0;
  transform: rotate(-7deg);
}

.decal-wall {
  margin-top: 1rem;
  border: 1px solid #3c507f;
  border-radius: 16px;
  background: #080b13;
  padding: 0.6rem;
  position: relative;
  overflow: hidden;
}

.decal-wall::after {
  content: "";
  position: absolute;
  right: -30px;
  top: -26px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 2px solid #ffffff26;
  box-shadow:
    0 0 0 24px #ffffff10,
    0 0 0 48px #ffffff08;
  pointer-events: none;
}

.wall-label {
  margin: 0 0 0.35rem;
  color: #58a6ff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.decal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.decal-row span {
  border: 2px solid var(--white);
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  background: #10172a;
  font-size: 0.92rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 0 0 2px #1d2845;
}

.decal-row span:nth-child(5n + 1) {
  color: var(--honda-red);
}

.decal-row span:nth-child(5n + 2) {
  color: var(--ktm-orange);
}

.decal-row span:nth-child(5n + 3) {
  color: var(--kawasaki-green);
}

.decal-row span:nth-child(5n + 4) {
  color: var(--suzuki-yellow);
}

.decal-row span:nth-child(5n + 5) {
  color: #58a6ff;
}

.features {
  margin-top: 1rem;
}

.section-title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.5rem, 4.3vw, 2.6rem);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.02em;
  position: relative;
  display: inline-block;
  padding-bottom: 0.35rem;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--white) 0 10px,
    transparent 10px 18px
  );
  opacity: 0.8;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.62rem;
}

.feature-card {
  border: 2px solid var(--white);
  border-radius: 12px;
  background: #0f1524;
  padding: 0.7rem;
  box-shadow: 0 0 0 2px #1f2a47;
}

.feature-card h3 {
  margin: 0;
  font-size: clamp(1.05rem, 2.4vw, 1.45rem);
  color: #58a6ff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.feature-card:nth-child(1) {
  box-shadow: 0 0 0 2px #e1060052;
}

.feature-card:nth-child(1) h3 {
  color: var(--honda-red);
}

.feature-card:nth-child(2) {
  box-shadow: 0 0 0 2px #ff6a0052;
}

.feature-card:nth-child(2) h3 {
  color: var(--ktm-orange);
}

.feature-card:nth-child(3) {
  box-shadow: 0 0 0 2px #69be2852;
}

.feature-card:nth-child(3) h3 {
  color: var(--kawasaki-green);
}

.feature-card:nth-child(4) {
  box-shadow: 0 0 0 2px #ffe10052;
}

.feature-card:nth-child(4) h3 {
  color: var(--suzuki-yellow);
}

.feature-card p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.how {
  margin-top: 1rem;
  padding: 0.8rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.steps article {
  border: 2px solid var(--white);
  border-radius: 10px;
  padding: 0.56rem;
  background: #0f1729;
  box-shadow: 0 0 0 2px #1f2a47;
}

.step-number {
  margin: 0;
  color: var(--ktm-orange);
  letter-spacing: 0.05em;
}

.steps h3 {
  margin: 0;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.steps p {
  margin: 0.14rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.vibe-strip {
  margin-top: 1rem;
}

.vibe-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.vibe-card {
  border: 2px solid var(--white);
  border-radius: 14px;
  overflow: hidden;
  background: #0f1524;
  box-shadow: 0 0 0 2px #1f2a47;
}

.vibe-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.25s ease;
  filter: saturate(1.08) contrast(1.07);
}

.vibe-card:hover img {
  transform: scale(1.04);
}

.final-cta {
  margin-top: 1rem;
  text-align: center;
  padding: 1.2rem 0.8rem;
  background:
    linear-gradient(
      170deg,
      #190f10 0%,
      #2a160f 20%,
      #25250e 40%,
      #10240f 62%,
      #0e1732 100%
    ),
    url("2000s Extreme Sport Vibes/71166e6e41f571696cfdac133a5659dc.jpg");
  background-blend-mode: color-dodge;
  background-size: cover;
  background-position: center;
}

.final-cta h2 {
  margin: 0;
  font-size: clamp(1.58rem, 4.3vw, 2.7rem);
  text-transform: uppercase;
  line-height: 0.95;
  text-shadow: 0 0 12px #58a6ff55;
}

.final-cta p {
  margin: 0.25rem auto 0.68rem;
  color: #d8e6ff;
  max-width: 50ch;
}

.faq {
  margin-top: 1rem;
}

details {
  border: 1px solid #415989;
  border-radius: 10px;
  background: #0c1220;
  padding: 0.46rem 0.6rem;
  margin-bottom: 0.42rem;
}

summary:hover {
  color: var(--suzuki-yellow);
}

summary {
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 600;
  min-height: 44px;
  display: flex;
  align-items: center;
}

details p {
  color: var(--muted);
  margin: 0.2rem 0 0;
  font-size: 0.95rem;
}

.site-footer {
  border-top: 1px solid #2b3d67;
  margin-top: 1rem;
  padding: 0.9rem 1rem 1.2rem;
  text-align: center;
  color: var(--muted);
}

.site-footer img {
  width: 170px;
  margin: 0 auto 0.45rem;
  opacity: 0.92;
}

.site-footer p {
  margin: 0.16rem 0;
}

.mobile-dock {
  display: none;
}

.waitlist-modal[hidden] {
  display: none;
}

.waitlist-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.waitlist-modal__overlay {
  position: absolute;
  inset: 0;
  background: #000000a6;
}

.waitlist-modal__panel {
  position: relative;
  width: min(92vw, 420px);
  border: 1px solid #4f679f;
  border-radius: 16px;
  background: linear-gradient(180deg, #0f1524, #101a2e);
  box-shadow: 0 18px 38px #0000008f;
  padding: 0.9rem 0.9rem 1rem;
}

.waitlist-close {
  position: absolute;
  right: 0.5rem;
  top: 0.45rem;
  border: 1px solid #3c507f;
  border-radius: 999px;
  width: 32px;
  height: 32px;
  background: #0f1420;
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.waitlist-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ktm-orange);
  font-size: 0.95rem;
}

.waitlist-modal__panel h2 {
  margin: 0.1rem 0 0;
  font-size: 1.9rem;
  text-transform: uppercase;
}

.waitlist-copy {
  margin: 0.2rem 0 0.7rem;
  color: var(--muted);
}

.waitlist-form {
  display: grid;
  gap: 0.44rem;
}

.waitlist-form label {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.waitlist-form input {
  width: 100%;
  min-height: 44px;
  border: 1px solid #43598b;
  border-radius: 10px;
  background: #0a0f19;
  color: #ffffff;
  font: inherit;
  padding: 0.55rem 0.7rem;
}

.waitlist-form input::placeholder {
  color: #8fa8db;
}

.waitlist-form .btn {
  width: 100%;
  justify-self: stretch;
}

.waitlist-status {
  min-height: 1.2em;
  margin: 0;
  font-size: 0.95rem;
}

.waitlist-status[data-state="success"] {
  color: #7bd88f;
}

.waitlist-status[data-state="error"] {
  color: #ff9090;
}

.help-main {
  width: min(920px, 94vw);
  margin: 0 auto;
  padding-bottom: 2rem;
}

.help-panel {
  padding: clamp(0.9rem, 2vw, 1.4rem);
}

.help-title {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-transform: uppercase;
  line-height: 0.95;
}

.help-form {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.55rem;
}

.help-note {
  margin: 0.2rem 0 0.5rem;
  color: var(--muted);
  font-size: 1rem;
}

.help-grid {
  display: grid;
  gap: 0.55rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.help-form label {
  display: grid;
  gap: 0.22rem;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.help-form input,
.help-form select,
.help-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid #43598b;
  border-radius: 10px;
  background: #0a0f19;
  color: #ffffff;
  font: inherit;
  padding: 0.5rem 0.65rem;
}

.help-form textarea {
  min-height: 140px;
  resize: vertical;
}

.help-form input:focus-visible,
.help-form select:focus-visible,
.help-form textarea:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.help-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.help-status {
  min-height: 1.2em;
  margin: 0;
  font-size: 0.96rem;
}

.help-status[data-state="success"] {
  color: #7bd88f;
}

.help-status[data-state="error"] {
  color: #ff9090;
}

.help-direct {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.help-direct a {
  color: #7bc3ff;
  text-decoration: underline;
}

@media (max-width: 900px) {
  body {
    padding-bottom: calc(84px + env(safe-area-inset-bottom));
  }

  #features,
  #how,
  #faq,
  #download {
    scroll-margin-top: 20px;
  }

  .site-header {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .header-badges {
    display: none;
  }

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

  .hero::after {
    width: 145%;
    right: -45%;
    top: 66%;
    height: 58%;
    opacity: 0.3;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
  }

  .hero-visual {
    min-height: 260px;
  }

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

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

  .mobile-dock {
    position: fixed;
    left: 0.55rem;
    right: 0.55rem;
    bottom: calc(0.45rem + env(safe-area-inset-bottom));
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.32rem;
    padding: 0.38rem;
    border: 1px solid #4a6299;
    border-radius: 16px;
    background: #070b14f0;
    backdrop-filter: blur(8px);
    box-shadow: 0 12px 28px #00000080;
  }

  .dock-item {
    min-height: 52px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.16rem;
    color: #d7e5ff;
    font-size: 0.62rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .dock-item svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
  }

  .dock-logo {
    width: 22px;
    height: 22px;
    object-fit: contain;
    border-radius: 4px;
  }

  .dock-item:hover,
  .dock-item:focus-visible {
    color: #ffffff;
    background: #153577;
  }

  .dock-item--primary {
    color: #ffffff;
    background: linear-gradient(180deg, #f05f17, var(--ktm-orange));
  }
}

@media (max-width: 600px) {
  body {
    font-size: 1rem;
  }

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

  .store-link {
    width: min(160px, 48%);
    min-width: 128px;
  }

  .hero-visual {
    min-height: 230px;
  }

  .mock-card {
    inset: 0.9rem 0.35rem 0.4rem;
  }

  .sticker {
    width: 82px;
  }

  .decal-wall::after {
    display: none;
  }

  .decal-row {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.2rem;
    -webkit-overflow-scrolling: touch;
  }

  .decal-row span {
    flex: 0 0 auto;
  }

  .vibe-grid {
    display: flex;
    overflow-x: auto;
    gap: 0.5rem;
    padding-bottom: 0.25rem;
    -webkit-overflow-scrolling: touch;
  }

  .vibe-card {
    min-width: 68vw;
  }

  .waitlist-modal__panel {
    width: min(94vw, 410px);
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
