:root {
  --bg: #07070f;
  --panel: #12121f;
  --panel2: #16162a;
  --text: #eef0ff;
  --muted: #8b8ba8;
  --accent: #a29bfe;
  --pink: #fd79a8;
  --cyan: #00cec9;
  --border: rgba(162, 155, 254, 0.25);
  --font: "DM Sans", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --radius: 16px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
}
a { color: var(--accent); text-decoration: none; }
a:hover { color: #c4b5fd; }
code {
  font-family: var(--mono);
  font-size: 0.85em;
  background: rgba(255, 255, 255, 0.06);
  padding: 2px 6px;
  border-radius: 6px;
}

.bg-glow {
  pointer-events: none;
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 15% -10%, rgba(108, 92, 231, 0.28), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(253, 121, 168, 0.12), transparent 50%),
    radial-gradient(ellipse 50% 30% at 50% 100%, rgba(0, 206, 201, 0.08), transparent 50%);
  z-index: 0;
}
body > *:not(.bg-glow) { position: relative; z-index: 1; }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 5vw;
  background: rgba(7, 7, 15, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 800;
  font-size: 1.15rem;
}
.logo-mark { border-radius: 9px; }
.logo-text span {
  background: linear-gradient(135deg, var(--accent), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.logo-short {
  font-style: normal;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--cyan);
  border: 1px solid rgba(0, 206, 201, 0.4);
  padding: 3px 8px;
  border-radius: 999px;
}
.nav-links { display: flex; gap: 8px 14px; align-items: center; flex-wrap: wrap; }
.nav-links > a:not(.btn-sm) { color: var(--muted); font-size: 0.92rem; font-weight: 500; }
.nav-links > a:not(.btn-sm):hover { color: var(--text); }
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 10px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 1.1rem;
}
.muted-link { opacity: 0.75; }

.btn, .btn-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--border);
  padding: 8px 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  transition: filter 0.15s, transform 0.15s;
}
.btn:hover, .btn-sm:hover { filter: brightness(1.08); }
.btn.primary, .btn-sm.primary {
  background: linear-gradient(135deg, #6c5ce7, #fd79a8);
  border: none;
  color: #fff;
}
.btn.lg { padding: 14px 22px; font-size: 1rem; }

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  padding: 72px 5vw 48px;
  align-items: center;
  min-height: 72vh;
}
.eyebrow {
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--accent), var(--pink), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lede {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 36rem;
  margin-bottom: 26px;
}
.lede strong { color: var(--text); font-weight: 600; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.hero-bullets {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: var(--muted);
  font-size: 0.88rem;
}
.hero-bullets li::before {
  content: "✓ ";
  color: var(--cyan);
  font-weight: 700;
}
.fine { color: var(--muted); font-size: 0.8rem; }

.hero-visual { position: relative; height: 400px; }
.orb {
  position: absolute;
  inset: 8% 12%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #a29bfe99, #fd79a844, transparent 70%);
  filter: blur(10px);
  animation: float 7s ease-in-out infinite;
}
.hero-logo-wrap {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(108, 92, 231, 0.45));
  animation: float 5s ease-in-out infinite reverse;
}
.card {
  position: absolute;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(18, 18, 32, 0.92);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  font-weight: 600;
  font-size: 0.92rem;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
}
.card-ico { font-size: 1.1rem; }
.stack-1 { top: 10%; left: 4%; animation: float 6s ease-in-out infinite; }
.stack-2 { top: 28%; right: 2%; animation: float 7s ease-in-out 0.4s infinite; }
.stack-3 { bottom: 28%; left: 8%; animation: float 6.5s ease-in-out 0.8s infinite; }
.stack-4 { bottom: 12%; right: 10%; animation: float 5.5s ease-in-out 0.2s infinite; }
.stack-5 { top: 52%; left: 48%; animation: float 8s ease-in-out 1s infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Stats */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0 5vw 20px;
  padding: 20px;
  background: rgba(18, 18, 32, 0.7);
  border: 1px solid var(--border);
  border-radius: 20px;
  backdrop-filter: blur(8px);
}
.stats-bar div { text-align: center; padding: 8px; }
.stats-bar b {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stats-bar span { color: var(--muted); font-size: 0.85rem; }

/* Sections */
.section { padding: 80px 5vw; }
.section-head { margin-bottom: 32px; max-width: 40rem; }
.section h2 {
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.section-sub { color: var(--muted); max-width: 36rem; }
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feat {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition: border-color 0.15s, transform 0.15s;
}
.feat:hover {
  border-color: rgba(162, 155, 254, 0.45);
  transform: translateY(-2px);
}
.feat-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(162, 155, 254, 0.12);
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 12px;
}
.feat h3 { margin-bottom: 8px; font-size: 1.05rem; }
.feat p { color: var(--muted); font-size: 0.95rem; }

/* How */
.how { background: linear-gradient(180deg, transparent, rgba(0, 206, 201, 0.04)); }
.steps {
  list-style: none;
  display: grid;
  gap: 16px;
  max-width: 720px;
}
.steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.step-n {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  background: linear-gradient(135deg, #6c5ce7, #fd79a8);
  color: #fff;
}
.steps h3 { margin-bottom: 4px; }
.steps p { color: var(--muted); font-size: 0.95rem; }

/* Pricing */
.pricing { background: linear-gradient(180deg, transparent, rgba(108, 92, 231, 0.08)); }
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.price-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s, transform 0.15s;
}
.price-card.popular {
  border-color: rgba(162, 155, 254, 0.55);
  box-shadow: 0 30px 80px rgba(108, 92, 231, 0.28);
  transform: translateY(-6px);
}
.price-card.selected {
  border-color: var(--cyan);
  outline: 1px solid rgba(0, 206, 201, 0.35);
}
.price-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--cyan);
  border: 1px solid rgba(0, 206, 201, 0.4);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
  width: fit-content;
}
.price-amount { font-size: 2.5rem; font-weight: 800; margin-bottom: 6px; letter-spacing: -0.02em; }
.price-amount span { font-size: 1rem; color: var(--muted); font-weight: 500; }
.price-tagline { color: var(--muted); font-size: 0.9rem; margin-bottom: 14px; min-height: 2.4em; }
.price-card ul { list-style: none; margin-bottom: 18px; flex: 1; }
.price-card li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 0.9rem;
}
.price-card li::before { content: "→ "; color: var(--accent); }
.price-card .plan-pick { width: 100%; margin-top: auto; }

.account-box {
  max-width: 540px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.account-box-head {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}
.account-box-head img { border-radius: 10px; }
.account-box h3 { margin-bottom: 2px; }
.selected-plan-line { color: var(--muted); font-size: 0.9rem; }
.selected-plan-line strong { color: var(--cyan); }
.account-box input {
  width: 100%;
  height: 44px;
  margin-bottom: 8px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  padding: 0 14px;
  font-family: inherit;
  font-size: 0.95rem;
}
.account-box input:focus {
  outline: none;
  border-color: var(--accent);
}
.account-box .row { display: flex; gap: 8px; flex-wrap: wrap; }
.account-box .row input { flex: 1; min-width: 120px; }
.or { text-align: center; color: var(--muted); font-size: 0.85rem; margin: 14px 0; }
.msg { margin-top: 12px; font-size: 0.9rem; color: var(--cyan); min-height: 1.2em; }
.msg.err { color: var(--pink); }

/* Download */
.dl-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 320px));
  gap: 14px;
  margin-bottom: 14px;
}
.dl-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--text);
  transition: border-color 0.15s, transform 0.15s;
}
.dl-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  color: var(--text);
}
.dl-card.primary {
  background: linear-gradient(145deg, rgba(108, 92, 231, 0.25), rgba(18, 18, 32, 0.95));
  border-color: rgba(162, 155, 254, 0.4);
}
.dl-kicker {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
}
.dl-card .muted { color: var(--muted); font-size: 0.88rem; }

/* FAQ */
.faq-list { max-width: 720px; display: grid; gap: 10px; }
.faq-list details {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 18px;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 650;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list details[open] summary { margin-bottom: 8px; color: var(--accent); }
.faq-list p { color: var(--muted); font-size: 0.95rem; }

.status-pre {
  background: #0c0c18;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 0.85rem;
  overflow: auto;
  max-width: 720px;
}

/* Gallery — real in-app photos */
.gallery-section { padding-top: 20px; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.gallery-grid figure {
  margin: 0;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery-grid .gallery-hero {
  grid-column: 1 / -1;
}
.gallery-grid img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #0c0c18;
}
.gallery-grid figcaption {
  padding: 10px 14px 14px;
  font-size: 0.9rem;
  color: var(--muted);
}
.gallery-grid figure.missing {
  display: none;
}
@media (max-width: 960px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* Footer */
.footer {
  padding: 40px 5vw 56px;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 20px;
}
.footer-brand {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer-brand img { border-radius: 10px; }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); font-size: 0.9rem; }
.footer-links a:hover { color: var(--text); }
.footer-copy { color: var(--muted); font-size: 0.85rem; }

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; padding-top: 40px; min-height: auto; }
  .hero-visual { height: 320px; order: -1; }
  .grid-3, .price-grid, .stats-bar { grid-template-columns: 1fr; }
  .price-card.popular { transform: none; }
  .dl-cards { grid-template-columns: 1fr; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 5vw 18px;
    background: rgba(7, 7, 15, 0.96);
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
}
