:root {
  --bg: #030915;
  --bg-soft: #07142b;
  --panel: rgba(10, 20, 39, 0.72);
  --panel-border: rgba(97, 145, 255, 0.28);
  --text: #eff6ff;
  --muted: #9cb0d6;
  --accent: #4ec9ff;
  --accent-2: #9b6bff;
  --live: #20d68f;
  --soon: #f5b860;
  --progress: #7fc6ff;
  --shadow: 0 24px 55px rgba(0, 0, 0, 0.35);
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(120, 164, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 164, 255, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at 50% 30%, black, transparent 82%);
  pointer-events: none;
  z-index: -3;
}

.bg-orb {
  position: fixed;
  width: 55vw;
  height: 55vw;
  filter: blur(70px);
  opacity: 0.26;
  border-radius: 999px;
  pointer-events: none;
  z-index: -2;
}

.orb-a {
  top: -18vw;
  left: -12vw;
  background: radial-gradient(circle, #2f8dff 0%, #000 72%);
  animation: drift 14s ease-in-out infinite alternate;
}

.orb-b {
  bottom: -24vw;
  right: -14vw;
  background: radial-gradient(circle, #7f56ff 0%, #000 74%);
  animation: drift 16s ease-in-out infinite alternate-reverse;
}

@keyframes drift {
  from {
    transform: translateY(0px) translateX(0px);
  }

  to {
    transform: translateY(30px) translateX(-20px);
  }
}

.wrap {
  width: min(var(--max), calc(100% - 2.4rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: linear-gradient(to bottom, rgba(2, 9, 21, 0.94), rgba(2, 9, 21, 0.58));
  border-bottom: 1px solid rgba(122, 161, 255, 0.18);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  height: 42px;
  width: auto;
  border-radius: 10px;
}

.site-nav {
  display: flex;
  gap: 0.95rem;
  align-items: center;
}

.site-nav a {
  color: #dbe8ff;
  text-decoration: none;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.site-nav a:hover {
  border-color: rgba(132, 173, 255, 0.36);
  background: rgba(92, 130, 205, 0.13);
}

.hero {
  padding: 5.2rem 0 2.4rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.1rem;
  align-items: center;
}

.hero-copy h1,
.section-head h2,
.contact-panel h2 {
  font-family: "Sora", sans-serif;
  letter-spacing: -0.02em;
}

.kicker {
  margin: 0 0 0.7rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.hero-copy h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.12;
}

.hero-copy p {
  color: #d7e3ff;
  max-width: 64ch;
  margin: 0;
}

.hero-cta {
  margin-top: 1.3rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  padding: 0.68rem 1.05rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #021227;
  background: linear-gradient(120deg, #79e4ff 0%, #8ec4ff 52%, #c08aff 100%);
  box-shadow: 0 8px 26px rgba(95, 163, 255, 0.34);
}

.btn-ghost {
  color: #dceaff;
  border: 1px solid rgba(138, 178, 255, 0.38);
  background: rgba(31, 55, 95, 0.28);
}

.hero-facts {
  margin: 1.25rem 0 0;
  padding-left: 1.05rem;
  color: var(--muted);
  display: grid;
  gap: 0.22rem;
}

.hero-art {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(115, 159, 255, 0.25);
  box-shadow: var(--shadow);
  background: linear-gradient(155deg, rgba(13, 31, 65, 0.8), rgba(9, 12, 32, 0.9));
}

.hero-art img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-logo-art {
  display: grid;
  place-items: center;
  min-height: 420px;
  padding: 2.2rem;
}

.hero-logo-art img {
  max-width: 100%;
  width: 100%;
  object-fit: contain;
}

.section {
  padding: 2.6rem 0;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

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

.card-grid-featured {
  grid-template-columns: 1fr;
}

.app-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.24);
}

.app-card.featured {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
}

.app-shot {
  background: linear-gradient(160deg, rgba(32, 52, 95, 0.55), rgba(11, 18, 35, 0.96));
  min-height: 280px;
}

.app-shot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.app-body {
  padding: 1rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.app-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
}

.app-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  border: 1px solid rgba(165, 191, 255, 0.38);
  object-fit: cover;
}

.status {
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.31rem 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.status-live {
  color: #032817;
  background: color-mix(in srgb, var(--live) 70%, #fff 30%);
}

.status-soon {
  color: #362003;
  background: color-mix(in srgb, var(--soon) 80%, #fff 20%);
}

.status-progress {
  color: #031d3d;
  background: color-mix(in srgb, var(--progress) 75%, #fff 25%);
}

.app-card h3 {
  margin: 0;
  font-size: 1.4rem;
  font-family: "Sora", sans-serif;
}

.app-card p {
  margin: 0;
  color: #d7e3ff;
}

.app-points {
  margin: 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.35rem;
  color: #c8dbff;
  font-size: 0.95rem;
}

.chip-row {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.chip {
  font-size: 0.71rem;
  padding: 0.28rem 0.48rem;
  border-radius: 999px;
  border: 1px solid rgba(125, 163, 245, 0.32);
  color: #afcbff;
  background: rgba(35, 57, 95, 0.35);
}

.link-row {
  margin-top: auto;
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.link-row a {
  text-decoration: none;
  color: #cde4ff;
  background: rgba(35, 67, 115, 0.38);
  border: 1px solid rgba(136, 176, 255, 0.34);
  border-radius: 999px;
  font-weight: 600;
  padding: 0.45rem 0.8rem;
}

.link-row a:hover {
  background: rgba(59, 99, 168, 0.44);
}

.contact-panel {
  border: 1px solid rgba(126, 161, 244, 0.33);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 12% -5%, rgba(95, 205, 255, 0.3), transparent 40%),
    linear-gradient(160deg, rgba(8, 22, 45, 0.78), rgba(11, 12, 30, 0.92));
  padding: 1.45rem;
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  margin: 0 0 0.55rem;
}

.contact-panel p {
  margin: 0;
  color: #d8e7ff;
}

.site-footer {
  border-top: 1px solid rgba(124, 158, 242, 0.24);
  margin-top: 2.6rem;
}

.footer-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #98acd2;
  font-size: 0.92rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .app-card.featured {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 780px) {
  .site-nav {
    display: none;
  }

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

  .hero {
    padding-top: 3.7rem;
  }

  .hero-copy h1 {
    font-size: 1.8rem;
  }

  .app-shot {
    min-height: 220px;
  }

  .footer-wrap {
    min-height: 96px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}

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