:root {
  --bg: #140a08;
  --bg2: #1e0f0a;
  --card: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.10);
  --text: #f5efe c;
  --text: #f5efec;
  --muted: rgba(245, 239, 236, 0.62);
  --ember1: #ff9500;
  --ember2: #ff3b30;
  --leaf: #34d399;
  --radius: 22px;
  font-size: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Rounded", "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.glow {
  position: fixed;
  width: 900px; height: 900px;
  border-radius: 50%;
  filter: blur(180px);
  opacity: 0.16;
  pointer-events: none;
  z-index: 0;
}
.glow.ember { background: var(--ember1); top: -300px; right: -200px; }
.glow.leaf  { background: var(--leaf); bottom: -400px; left: -300px; }

main, header, footer { position: relative; z-index: 1; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* nav */
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0;
}
nav .brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text); }
nav .brand img { width: 40px; height: 40px; border-radius: 10px; }
nav .brand span { font-weight: 800; font-size: 1.15rem; letter-spacing: -0.02em; }
nav .links a {
  color: var(--muted); text-decoration: none; margin-left: 22px; font-weight: 600; font-size: 0.95rem;
}
nav .links a:hover, nav .links a.active { color: var(--text); }

/* hero */
.hero { text-align: center; padding: 72px 0 48px; }
.hero img.appicon {
  width: 120px; height: 120px; border-radius: 28px;
  box-shadow: 0 24px 60px rgba(255, 149, 0, 0.25);
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900; letter-spacing: -0.03em; line-height: 1.1;
}
.hero h1 .grad {
  background: linear-gradient(90deg, var(--ember1), var(--ember2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.sub {
  color: var(--muted); font-size: 1.2rem; max-width: 560px; margin: 18px auto 0;
}
.cta { margin-top: 34px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 14px 28px; border-radius: 999px;
  font-weight: 800; text-decoration: none; font-size: 1rem;
}
.btn.primary {
  background: linear-gradient(90deg, var(--ember1), var(--ember2));
  color: #fff; box-shadow: 0 10px 30px rgba(255, 90, 40, 0.35);
}
.btn.ghost { border: 1.5px solid var(--border); color: var(--text); background: var(--card); }
.badge-soon {
  display: inline-block; margin-top: 14px; color: var(--muted); font-size: 0.9rem; font-weight: 600;
}

/* stats band */
.stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px; margin: 56px 0;
}
.stat {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px; text-align: center;
}
.stat b { display: block; font-size: 1.9rem; font-weight: 900; letter-spacing: -0.02em; }
.stat span { color: var(--muted); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }

/* sections */
section { padding: 56px 0; }
section h2 {
  font-size: clamp(1.7rem, 4vw, 2.4rem); font-weight: 900; letter-spacing: -0.02em;
  text-align: center; margin-bottom: 12px;
}
section p.lead { color: var(--muted); text-align: center; max-width: 620px; margin: 0 auto 44px; font-size: 1.05rem; }

/* features */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; }
.feature {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px;
}
.feature .ico {
  width: 46px; height: 46px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(255,149,0,0.25), rgba(255,59,48,0.25));
}
.feature h3 { font-size: 1.08rem; font-weight: 800; margin-bottom: 6px; }
.feature p { color: var(--muted); font-size: 0.94rem; }

/* screenshots */
.shots {
  display: grid; grid-auto-flow: column; grid-auto-columns: 240px;
  gap: 18px; overflow-x: auto; padding: 8px 4px 20px;
  scroll-snap-type: x mandatory;
}
.shots img {
  width: 100%; border-radius: 18px; scroll-snap-align: start;
  border: 1px solid var(--border);
}

/* pro */
.pro-box {
  background: linear-gradient(135deg, rgba(255,149,0,0.12), rgba(255,59,48,0.10));
  border: 1px solid rgba(255,149,0,0.25); border-radius: var(--radius);
  padding: 40px; text-align: center;
}
.pro-box h2 { margin-bottom: 10px; }
.pro-box ul { list-style: none; margin: 20px 0 0; color: var(--muted); }
.pro-box li { margin: 6px 0; }

/* support & legal pages */
.page { padding: 48px 0 80px; max-width: 760px; margin: 0 auto; }
.page h1 { font-size: 2.2rem; font-weight: 900; letter-spacing: -0.02em; margin-bottom: 8px; }
.page p.updated { color: var(--muted); font-size: 0.9rem; margin-bottom: 36px; }
.page h2 { font-size: 1.3rem; font-weight: 800; margin: 34px 0 10px; text-align: left; }
.page p, .page li { color: var(--muted); }
.page ul { padding-left: 22px; margin: 10px 0; }
.page a { color: var(--ember1); }
.faq details {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px;
  padding: 18px 22px; margin-bottom: 12px;
}
.faq summary { font-weight: 700; cursor: pointer; color: var(--text); }
.faq details p { margin-top: 10px; }
.contact-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; margin-top: 36px; text-align: center;
}
.contact-card b { font-size: 1.1rem; }

footer {
  border-top: 1px solid var(--border); margin-top: 60px;
  padding: 36px 0; color: var(--muted); font-size: 0.9rem;
}
footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
footer a { color: var(--muted); text-decoration: none; margin-right: 18px; }
footer a:hover { color: var(--text); }

@media (max-width: 640px) {
  nav .links a { margin-left: 14px; font-size: 0.85rem; }
  .hero { padding: 48px 0 32px; }
}
