:root {
  --bg: #07090d;
  --surface: rgba(255,255,255,.06);
  --surface-strong: rgba(255,255,255,.1);
  --line: rgba(255,255,255,.12);
  --text: #f7f8fb;
  --muted: rgba(247,248,251,.68);
  --orange: #ff7a45;
  --blue: #56b5ff;
  --green: #53d18d;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(255,122,69,.2), transparent 32%),
    radial-gradient(circle at 78% 8%, rgba(86,181,255,.18), transparent 28%),
    var(--bg);
  color: var(--text);
  font-family: 'Manrope', sans-serif;
}

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

.nav {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  height: 88px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: .02em;
}
.brand span { color: var(--orange); }
.nav-links { display: flex; gap: 28px; color: var(--muted); font-size: .92rem; }
.nav-links a:hover, footer a:hover { color: var(--text); }

main { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.hero {
  position: relative;
  min-height: min(620px, calc(100vh - 88px));
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 48px 0 72px;
}
.hero-lines {
  position: absolute;
  inset: auto -8% 0;
  width: 116%;
  opacity: .9;
  pointer-events: none;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
}
h1 {
  max-width: 760px;
  margin: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 8vw, 5.7rem);
  line-height: .92;
  letter-spacing: -.03em;
  text-transform: uppercase;
}
.hero-copy {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.8;
}
.hero-cta {
  width: fit-content;
  margin-top: 34px;
  padding: 14px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
  transition: transform .2s ease, background .2s ease;
}
.hero-cta:hover { transform: translateY(-2px); background: rgba(255,255,255,.14); }

.apps-panels {
  display: flex;
  gap: 14px;
  min-height: 430px;
  padding-bottom: 88px;
}
.app-panel {
  flex: 1;
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  transition: flex .55s cubic-bezier(.22,1,.36,1), transform .25s ease;
}
.app-panel:hover {
  flex: 1.65;
  transform: translateY(-4px);
}
.app-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,9,13,.12) 18%, rgba(7,9,13,.84) 100%);
  z-index: 1;
}
.app-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) brightness(.72);
  transition: transform .55s cubic-bezier(.22,1,.36,1), filter .3s ease;
}
.app-panel:hover img {
  transform: scale(1.04);
  filter: saturate(1) brightness(.86);
}
.panel-line {
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  z-index: 2;
  opacity: .85;
}
.run .panel-line { background: var(--orange); box-shadow: 0 0 18px var(--orange); }
.trail .panel-line { background: var(--blue); box-shadow: 0 0 18px var(--blue); }
.bike .panel-line { background: var(--green); box-shadow: 0 0 18px var(--green); }
.panel-copy {
  position: absolute;
  inset: auto 26px 24px;
  z-index: 2;
}
.panel-copy p {
  margin: 0 0 8px;
  color: rgba(255,255,255,.78);
  font-size: .76rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.panel-copy h2 {
  margin: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1;
}
.panel-copy strong {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.72);
  font-size: .92rem;
  font-weight: 500;
}
.panel-copy em {
  display: inline-block;
  margin-top: 18px;
  color: #fff;
  font-size: .92rem;
  font-style: normal;
  border-bottom: 1px solid currentColor;
  opacity: .82;
}

.ecosystem {
  max-width: 850px;
  padding: 0 0 90px;
}
.ecosystem p {
  margin: 0 0 14px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
}
.ecosystem h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.35;
  font-weight: 500;
}

footer {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 34px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: .9rem;
}
footer div { display: flex; gap: 18px; }

.legal-page {
  background:
    linear-gradient(180deg, rgba(7,9,13,0) 0%, rgba(7,9,13,.92) 520px),
    radial-gradient(circle at top left, rgba(255,122,69,.2), transparent 32%),
    radial-gradient(circle at 78% 8%, rgba(86,181,255,.18), transparent 28%),
    var(--bg);
}
.legal-main {
  max-width: 920px;
}
.legal-hero {
  padding: 70px 0 42px;
}
.legal-hero h1 {
  max-width: 860px;
}
.legal-updated {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: .95rem;
}
.legal-document {
  margin: 0 0 88px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 80px rgba(0,0,0,.22);
}
.legal-document section + section {
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}
.legal-document h2 {
  margin: 0 0 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  line-height: 1;
  text-transform: uppercase;
}
.legal-document p {
  margin: 0;
  color: rgba(247,248,251,.78);
  line-height: 1.82;
}
.legal-document p + p,
.legal-document ul + p {
  margin-top: 14px;
}
.legal-document ul {
  margin: 14px 0 0;
  padding-left: 20px;
  color: rgba(247,248,251,.78);
  line-height: 1.78;
}
.legal-document li + li {
  margin-top: 8px;
}
.legal-document a,
.legal-contact {
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.42);
}
.legal-contact {
  font-weight: 700;
}

@media (max-width: 820px) {
  .nav, main, footer { width: min(100% - 32px, 1180px); }
  .nav { height: 76px; }
  .nav-links { display: none; }
  .hero { min-height: auto; padding: 34px 0 44px; }
  h1 { font-size: clamp(2.7rem, 12vw, 3.5rem); }
  .hero-copy { margin-top: 22px; line-height: 1.7; }
  .hero-cta { margin-top: 28px; }
  .apps-panels {
    flex-direction: column;
    min-height: 0;
    gap: 12px;
    padding-bottom: 58px;
  }
  .app-panel,
  .app-panel:hover {
    min-height: 228px;
    flex: none;
  }
  .panel-copy { inset: auto 22px 20px; }
  .panel-copy h2 { font-size: 2.15rem; }
  .ecosystem { padding-bottom: 72px; }
  .ecosystem h2 { font-size: 1.65rem; line-height: 1.4; }
  footer { flex-direction: column; }
  footer div { flex-wrap: wrap; }
  .legal-hero { padding: 42px 0 32px; }
  .legal-document {
    margin-bottom: 58px;
    padding: 24px 20px;
    border-radius: 20px;
  }
  .legal-document section + section {
    margin-top: 28px;
    padding-top: 28px;
  }
}

.coming-soon-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
}
.coming-soon {
  width: min(520px, calc(100% - 32px));
  text-align: center;
  padding: 42px 28px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--surface);
  backdrop-filter: blur(18px);
}
.coming-soon img {
  width: 92px;
  height: 92px;
  border-radius: 24px;
}
.coming-soon p {
  margin: 22px 0 8px;
  color: var(--muted);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .78rem;
}
.coming-soon h1 {
  margin: 0;
  max-width: none;
  font-size: clamp(2.8rem, 8vw, 4.2rem);
}
.coming-soon span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}
.coming-soon a {
  display: inline-block;
  margin-top: 28px;
  border-bottom: 1px solid currentColor;
}
