:root {
  --bg: #070914;
  --bg-soft: #101426;
  --card: rgba(255, 255, 255, 0.08);
  --card-border: rgba(255, 255, 255, 0.16);
  --text: #f7f7ff;
  --muted: #b8bed7;
  --cyan: #33e7ff;
  --purple: #8b5cf6;
  --pink: #ff4fd8;
  --orange: #ff9f43;
  --green: #44ffb5;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(139, 92, 246, 0.3), transparent 36rem),
    radial-gradient(circle at top right, rgba(51, 231, 255, 0.22), transparent 34rem),
    linear-gradient(180deg, #070914 0%, #0a0f22 48%, #070914 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.glow {
  position: fixed;
  width: 22rem;
  height: 22rem;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.3;
  z-index: -1;
}

.glow-one {
  background: var(--purple);
  left: -7rem;
  top: 9rem;
}

.glow-two {
  background: var(--cyan);
  right: -8rem;
  top: 22rem;
}

.navbar {
  width: min(1120px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--card-border);
  background: rgba(7, 9, 20, 0.68);
  backdrop-filter: blur(18px);
  border-radius: 24px;
  position: sticky;
  top: 14px;
  z-index: 10;
}

.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.08rem;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cyan), var(--purple), var(--pink));
  color: white;
  box-shadow: 0 0 28px rgba(51, 231, 255, 0.35);
}

nav {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

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

main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: 82vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 96px 0 72px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  font-weight: 800;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  font-size: clamp(3rem, 8vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
  margin-bottom: 26px;
  text-shadow: 0 0 38px rgba(139, 92, 246, 0.25);
}

.hero-text {
  max-width: 720px;
  margin: 0 auto 32px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.7;
}

.hero-actions,
.store-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn,
.store-buttons a,
.store-buttons span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid var(--card-border);
  transition: 0.25s ease;
}

.primary {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: #fff;
  box-shadow: 0 0 28px rgba(51, 231, 255, 0.25);
}

.secondary {
  background: rgba(255, 255, 255, 0.08);
}

.btn:hover,
.store-buttons a:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 34px rgba(139, 92, 246, 0.34);
}

.section {
  padding: 88px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 32px;
}

.section-heading h2,
.split h2,
.contact h2 {
  font-size: clamp(2.1rem, 5vw, 4.5rem);
  letter-spacing: -0.06em;
  line-height: 1;
  margin-bottom: 16px;
}

.section-heading p,
.muted,
.contact p,
.info-card p {
  color: var(--muted);
  line-height: 1.7;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.app-card,
.info-card,
.timeline-item {
  border: 1px solid var(--card-border);
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.045));
  border-radius: 32px;
  padding: 24px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(18px);
  position: relative;
  overflow: hidden;
}

.app-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at top, rgba(255,255,255,.2), transparent 40%);
  opacity: 0;
  transition: 0.25s ease;
}

.app-card:hover::before {
  opacity: 1;
}

.app-card:hover {
  transform: translateY(-6px);
}

.app-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  font-size: 2rem;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 22px;
}

.ai .app-icon {
  box-shadow: 0 0 38px rgba(139, 92, 246, 0.38);
}

.fuel .app-icon {
  box-shadow: 0 0 38px rgba(255, 159, 67, 0.32);
}

.soon .app-icon {
  box-shadow: 0 0 38px rgba(68, 255, 181, 0.28);
}

.status {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  margin-bottom: 16px;
  border: 1px solid var(--card-border);
}

.live {
  color: var(--cyan);
}

.update {
  color: var(--orange);
}

.soon-badge {
  color: var(--green);
}

.app-card h3,
.info-card h2,
.timeline-item h3 {
  font-size: 1.7rem;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.app-card p {
  color: var(--muted);
  line-height: 1.65;
}

.store-buttons {
  justify-content: flex-start;
  margin-top: 24px;
}

.store-buttons a,
.store-buttons span {
  min-height: 42px;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.08);
}

.disabled span {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: start;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  min-height: auto;
}

.timeline-item span {
  color: var(--cyan);
  font-weight: 900;
  margin-bottom: 12px;
}

.timeline-item p {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.info-card {
  min-height: 240px;
}

.contact {
  text-align: center;
  border: 1px solid var(--card-border);
  border-radius: 40px;
  padding: 72px 24px;
  margin-bottom: 80px;
  background: radial-gradient(circle at top, rgba(139, 92, 246, 0.26), rgba(255,255,255,0.055));
}

.contact p {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.legal-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 28px;
  color: var(--muted);
}

.legal-links a:hover {
  color: var(--text);
}

footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0 50px;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 880px) {
  nav {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .app-grid,
  .split,
  .cards-row {
    grid-template-columns: 1fr;
  }

  .app-card {
    min-height: 300px;
  }
}
