:root {
  --bg: #07111a;
  --bg-soft: rgba(255, 255, 255, 0.05);
  --card: rgba(10, 19, 31, 0.72);
  --card-border: rgba(255, 255, 255, 0.1);
  --text: #e9eef6;
  --muted: #9fb0c4;
  --accent: #68d1ff;
  --accent-2: #9d7cff;
  --accent-3: #5df3c1;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(93, 243, 193, 0.08), transparent 25%),
    radial-gradient(circle at top right, rgba(104, 209, 255, 0.10), transparent 26%),
    linear-gradient(180deg, #07111a 0%, #091523 42%, #08111b 100%);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
  position: relative;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.00));
}

.section-last {
  padding-top: 36px;
  padding-bottom: 96px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 17, 26, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-logo {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 6px 14px rgba(104, 209, 255, 0.2));
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.25s ease;
}

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

.hero {
  padding-top: 72px;
  padding-bottom: 44px;
}

.hero-grid,
.partnership-grid,
.about-grid,
.section-head,
.contact-card,
.footer-wrap {
  display: grid;
  gap: 28px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  min-height: calc(100vh - 180px);
}

.eyebrow,
.micro-label,
.app-kicker {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h1, h2, h3 {
  margin: 0;
  letter-spacing: -0.04em;
}

h1 {
  margin-top: 16px;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  line-height: 0.98;
  max-width: 11ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.04;
}

.hero-text,
.section-head p,
.about-grid p,
.partnership-grid p,
.contact-card p,
.app-description,
.hero-card p,
.partnership-note {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.02rem;
}

.hero-text {
  max-width: 60ch;
  margin: 22px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #07111a;
  box-shadow: 0 10px 30px rgba(104, 209, 255, 0.2);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
}

.btn-full { width: 100%; }

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.hero-points li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.hero-points li::before,
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  box-shadow: 0 0 16px rgba(104, 209, 255, 0.55);
}

.glass {
  background: rgba(10, 19, 31, 0.86);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 28px;
}

.hero-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.hero-card-top img {
  width: 72px;
  height: 72px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}

.hero-stats div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
}

.hero-stats span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-stats strong {
  font-size: 1rem;
}

.section-head {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  align-items: end;
  margin-bottom: 32px;
}

.apps-grid {
  display: grid;
  gap: 24px;
}

.app-card {
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(0, 330px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.app-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.app-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 14px 32px rgba(0,0,0,0.28);
  background: rgba(255,255,255,0.06);
}

.app-title {
  margin-top: 6px;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.app-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.store-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
}

.store-link:hover {
  border-color: rgba(104, 209, 255, 0.5);
}

.screens-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.screen-frame {
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.screen-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 24px;
}
.partnership-grid,
.about-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: start;
}

.partnership-card,
.contact-card {
  padding: 28px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 22px;
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.6;
}

.contact-card {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
}

.contact-mail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 16px;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(104, 209, 255, 0.18), rgba(157, 124, 255, 0.18));
  border: 1px solid rgba(104, 209, 255, 0.22);
}

.site-footer {
  padding: 0 0 30px;
}

.footer-wrap {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  color: var(--muted);
  font-size: 0.92rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(48px);
  opacity: 0.14;
  pointer-events: none;
  z-index: -1;
}

.bg-orb-1 {
  width: 260px;
  height: 260px;
  background: rgba(93, 243, 193, 0.5);
  top: 10%;
  left: -80px;
}

.bg-orb-2 {
  width: 320px;
  height: 320px;
  background: rgba(157, 124, 255, 0.42);
  bottom: 10%;
  right: -100px;
}

.reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  .reveal-delay {
    transition-delay: 0.08s;
  }

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

.loading-state {
  color: var(--muted);
  padding: 18px 4px 0;
}

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

  .hero-grid,
  .partnership-grid,
  .about-grid,
  .section-head,
  .app-card,
  .contact-card,
  .footer-wrap {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-grid {
    min-height: auto;
  }

  h1 {
    max-width: 12ch;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 72px 0;
  }

  .site-header {
    position: static;
  }

  .nav-wrap {
    min-height: 70px;
  }

  .brand span {
    font-size: 0.98rem;
  }

  .hero-card,
  .partnership-card,
  .contact-card,
  .app-card {
    padding: 18px;
    border-radius: 22px;
  }

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

  .app-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
  }

  .screens-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
    gap: 8px;
    padding-bottom: 0;
  }

  .screen-frame,
  .screen-frame img {
    border-radius: 16px;
  }

  .contact-mail,
  .btn,
  .store-link {
    width: 100%;
  }

  .app-links,
  .hero-actions {
    flex-direction: column;
  }

  .footer-wrap {
    gap: 8px;
  }
}
