﻿:root {
  --bg: #0b0f1a;
  --bg-soft: #0f1628;
  --card: #121a2f;
  --text: #f8fafc;
  --muted: #94a3b8;
  --accent: #38bdf8;
  --accent-2: #6366f1;
  --border: rgba(148,163,184,0.2);
  --glass: rgba(255,255,255,0.06);
  --shadow: 0 30px 80px rgba(15, 23, 42, 0.45);
  --radius: 22px;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Sora", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(56,189,248,0.12), transparent 45%),
    radial-gradient(circle at 85% 20%, rgba(99,102,241,0.18), transparent 40%),
    radial-gradient(circle at 30% 70%, rgba(56,189,248,0.08), transparent 45%);
  pointer-events: none;
  z-index: -1;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(11,15,26,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 72px;
}
.logo { display: inline-flex; align-items: center; gap: 0; font-weight: 700; }
.logo-mark {
  width: auto;
  height: 100px;
  border-radius: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  box-shadow: none;
  overflow: hidden;
}
.logo-mark img {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}
.nav { margin-left: auto; }
.nav-list { list-style: none; display: flex; gap: 18px; margin: 0; padding: 0; }
.nav-list a { color: var(--muted); font-weight: 600; }
.nav-list a:hover { color: var(--text); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn.small { padding: 10px 16px; }
.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0b0f1a;
  box-shadow: 0 10px 30px rgba(56,189,248,0.3);
}
.btn.ghost {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255,255,255,0.03);
}
.btn.link {
  border: 0;
  color: var(--accent);
  background: transparent;
  padding: 12px 6px;
}
.btn.store {
  background: #0f172a;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
  min-width: 160px;
}
.btn:hover { transform: translateY(-2px); }

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  margin: 6px 0;
}

.site-main { overflow: hidden; }
.hero {
  position: relative;
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(56,189,248,0.25), transparent 55%),
              radial-gradient(circle at top right, rgba(99,102,241,0.22), transparent 50%);
  pointer-events: none;
}
.hero-orbit {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 1px dashed rgba(56,189,248,0.25);
  top: -120px;
  right: -180px;
  opacity: 0.6;
}
.hero-grid {
  position: relative;
  display: grid;
  gap: 48px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}
.hero-visual {
  position: relative;
}
.hero-copy h1 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  margin: 12px 0;
  letter-spacing: -0.6px;
}
.hero-copy p { color: var(--muted); font-size: 18px; }
.pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(56,189,248,0.1);
  border: 1px solid rgba(56,189,248,0.3);
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
}
.hero-actions { display: flex; gap: 12px; margin-top: 18px; flex-wrap: wrap; }
.hero-metrics { display: flex; gap: 28px; margin-top: 24px; flex-wrap: wrap; }
.metric { font-size: 22px; font-weight: 700; }
.metric-label { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }
.hero-note { margin-top: 16px; color: var(--muted); font-size: 14px; }

.hero-visual .glass-card {
  position: relative;
  background: var(--glass);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  backdrop-filter: blur(16px);
}
.hero-shot {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 35px 90px rgba(5, 12, 28, 0.55);
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(135deg, rgba(56,189,248,0.08), rgba(99,102,241,0.08));
  width: 125%;
  max-width: 840px;
}
.hero-shot.secondary {
  position: absolute;
  right: -22%;
  bottom: -16%;
  width: 86%;
  z-index: 2;
  box-shadow: 0 30px 70px rgba(5, 12, 28, 0.45);
}
.hero-shot img {
  width: 100%;
  height: auto;
  display: block;
}
.glass-header { display: flex; gap: 6px; margin-bottom: 12px; }
.glass-header .dot { width: 10px; height: 10px; border-radius: 999px; background: rgba(255,255,255,0.3); }
.glass-body { display: grid; grid-template-columns: 1.3fr .7fr; gap: 18px; }
.preview { background: #fff; border-radius: 18px; padding: 12px; }
.preview-top { display: flex; justify-content: space-between; align-items: center; }
.preview-top .brand { width: 64px; height: 20px; background: #0f172a; border-radius: 10px; }
.preview-top .chip { width: 40px; height: 20px; background: #e2e8f0; border-radius: 10px; }
.preview-hero { height: 120px; margin: 14px 0; background: linear-gradient(135deg, #38bdf8, #6366f1); border-radius: 14px; }
.preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.preview-card { height: 70px; border-radius: 12px; background: #f1f5f9; }
.preview-bar { height: 12px; border-radius: 999px; background: #e2e8f0; margin-top: 12px; }
.phone { display: flex; align-items: center; justify-content: center; }
.phone-screen { width: 160px; height: 280px; border-radius: 24px; background: #0f172a; padding: 14px; display: grid; gap: 10px; }
.notif { background: #38bdf8; color: #0b0f1a; font-weight: 700; padding: 8px; border-radius: 12px; font-size: 11px; }
.phone-row { height: 32px; border-radius: 8px; background: rgba(255,255,255,0.08); }
.phone-row.wide { height: 46px; }
.hero-badge {
  position: absolute;
  bottom: -18px;
  left: 24px;
  background: rgba(15,23,42,0.95);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 14px;
  font-size: 12px;
  display: grid;
  gap: 2px;
}
.hero-badge strong { color: var(--accent); font-weight: 700; }

.section { padding: 80px 0; }
.section.alt { background: var(--bg-soft); }
.section.dark { background: #060a14; }
.section-head { max-width: 720px; margin-bottom: 40px; }
.section-head h2 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  margin: 0 0 12px;
  letter-spacing: -0.4px;
}
.section-head p { color: var(--muted); margin: 0; }
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  color: var(--accent);
  margin-bottom: 10px;
  font-weight: 600;
}

.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.card {
  background: var(--card);
  border-radius: 18px;
  padding: 22px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(15,23,42,0.2);
}
.card h3 { margin-top: 0; }
.card p { color: var(--muted); }

.split { display: grid; gap: 40px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); align-items: center; }
.checklist { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 10px; }
.checklist li { position: relative; padding-left: 26px; color: var(--muted); }
.checklist li::before {
  content: '';
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 4px;
  position: absolute;
  left: 0;
  top: 4px;
}

.stack { display: grid; gap: 12px; }
.stack-card {
  height: 160px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(56,189,248,0.25), rgba(99,102,241,0.25));
  border: 1px solid var(--border);
}
.stack-card.mini { height: 90px; opacity: 0.7; }
.phone-frame {
  width: min(320px, 90%);
  justify-self: center;
  border-radius: 26px;
  padding: 12px;
  background: #0b1222;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 25px 60px rgba(5, 12, 28, 0.5);
}
.phone-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

.steps { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.step {
  background: var(--card);
  border-radius: 18px;
  padding: 22px;
  border: 1px solid var(--border);
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(56,189,248,0.12);
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 14px;
}

.logos { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 14px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

.download-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.download-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(15,23,42,0.85);
  transition: transform .2s ease, border .2s ease;
}
.download-card:hover { transform: translateY(-3px); border-color: rgba(56,189,248,0.35); }
.download-card h3 { margin: 0 0 6px; }
.download-card p { margin: 0; color: var(--muted); }
.download-cta {
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0b0f1a;
  font-size: 12px;
  font-weight: 700;
}
.download-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(56,189,248,0.12);
  border: 1px solid rgba(56,189,248,0.3);
  position: relative;
}
.download-icon::after {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}
.download-icon.windows { background: rgba(99,102,241,0.15); border-color: rgba(99,102,241,0.35); }
.download-note { margin-top: 20px; color: var(--muted); }

.version-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.version-card {
  background: var(--card);
  border-radius: 20px;
  padding: 22px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(15,23,42,0.2);
  display: grid;
  gap: 14px;
}
.version-header { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.version-card h3 { margin: 0; }
.version-card p { margin: 0; color: var(--muted); }
.version-pill {
  font-size: 12px;
  font-weight: 700;
  color: #0b0f1a;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  padding: 6px 10px;
  border-radius: 999px;
}

.partner-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; margin-top: 20px; }
.mini-card {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(15,23,42,0.7);
}
.mini-card h4 { margin: 0 0 8px; font-size: 15px; }
.mini-card p { margin: 0; color: var(--muted); font-size: 14px; }

.lead-form { display: grid; gap: 12px; }
.lead-form input { padding: 12px 14px; border-radius: 12px; border: 1px solid var(--border); background: #0f172a; color: #fff; }
.lead-form button { border: 0; }

.site-footer { border-top: 1px solid var(--border); padding: 40px 0 24px; background: #070b16; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.footer-grid h4 { margin: 0 0 12px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; color: var(--muted); }
.footer-bottom { margin-top: 30px; color: var(--muted); font-size: 12px; text-align: center; }

.pre-reveal {
  opacity: 0;
  transform: translateY(14px);
}
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .6s ease, transform .6s ease;
}

@media (max-width: 960px) {
  .nav { display: none; }
  .nav.open {
    display: block;
    position: absolute;
    top: 72px;
    right: 24px;
    background: rgba(11,15,26,0.98);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px;
    z-index: 20;
  }
  .nav.open .nav-list { flex-direction: column; gap: 12px; }
  .menu-toggle { display: block; margin-left: auto; }
  .header-inner .btn.small { display: none; }
  .glass-body { grid-template-columns: 1fr; }
  .hero-orbit { display: none; }
  .hero-shot.secondary {
    position: static;
    width: 100%;
    margin-top: 16px;
  }
}
@media (max-width: 640px) {
  .hero { padding: 90px 0 60px; }
  .hero-metrics { flex-direction: column; gap: 12px; }
  .logo-mark { height: 100px; }
  .hero-visual { display: none; }
  .download-card { grid-template-columns: 1fr; text-align: left; }
  .download-cta { justify-self: start; }
}



