:root {
  --bg: #0e0e13;
  --bg2: #14141b;
  --card: #1a1a22;
  --border: rgba(255,255,255,0.08);
  --gold: #f1b32d;
  --gold-2: #e0951f;
  --text: #f2f2f5;
  --muted: #a0a0ad;
  --up: #4ec77a;
  --down: #eb5c52;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* Nav */
header.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(14,14,19,0.85); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--text); }
.brand img { width: 32px; height: 32px; border-radius: 8px; }
.nav-links a { color: var(--muted); margin-left: 22px; font-size: 15px; }
.nav-links a:hover { color: var(--text); text-decoration: none; }

/* Hero */
.hero { position: relative; overflow: hidden; padding: 90px 0 60px; text-align: center; }
.hero::before {
  content: ""; position: absolute; inset: -40% 0 auto 0; height: 620px;
  background: radial-gradient(circle at 50% 0%, rgba(241,179,45,0.22), transparent 60%);
  pointer-events: none;
}
.hero .icon-lg {
  width: 116px; height: 116px; border-radius: 26px; margin: 0 auto 26px;
  box-shadow: 0 20px 60px rgba(241,179,45,0.28); display: block;
}
.hero h1 { font-size: clamp(32px, 6vw, 52px); font-weight: 800; letter-spacing: -0.5px; }
.hero h1 .accent { color: var(--gold); }
.hero p.sub { color: var(--muted); font-size: clamp(16px, 2.5vw, 20px); max-width: 620px; margin: 18px auto 30px; }
.cta { display: inline-flex; align-items: center; gap: 10px; background: var(--gold); color: #12100a;
  font-weight: 700; padding: 14px 26px; border-radius: 14px; font-size: 16px; }
.cta:hover { background: var(--gold-2); text-decoration: none; }
.cta.secondary { background: transparent; color: var(--text); border: 1px solid var(--border); }
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.disclaimer-badge { display:inline-block; margin-top:22px; font-size:13px; color:var(--muted); }

/* Screenshots */
.shots { display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; margin: 60px 0 10px; }
.phone {
  width: 240px; border-radius: 34px; padding: 10px; background: #000;
  border: 1px solid var(--border); box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.phone img { width: 100%; border-radius: 26px; display: block; }
.phone .cap { text-align: center; color: var(--muted); font-size: 14px; margin-top: 12px; padding-bottom: 4px; }

/* Sections */
section { padding: 70px 0; }
section h2 { font-size: clamp(26px, 4vw, 36px); font-weight: 800; text-align: center; margin-bottom: 14px; }
section .lead { color: var(--muted); text-align: center; max-width: 620px; margin: 0 auto 46px; }
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.feature {
  background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 26px;
}
.feature .emoji { font-size: 30px; }
.feature h3 { margin: 14px 0 8px; font-size: 19px; }
.feature p { color: var(--muted); font-size: 15px; }

/* Content pages */
.page { padding: 60px 0 90px; }
.page h1 { font-size: 34px; margin-bottom: 6px; }
.page .updated { color: var(--muted); margin-bottom: 34px; }
.page h2 { font-size: 22px; margin: 34px 0 12px; }
.page p, .page li { color: #d7d7de; margin-bottom: 12px; }
.page ul { padding-left: 22px; }
.prose { max-width: 760px; }

/* Footer */
footer { border-top: 1px solid var(--border); padding: 40px 0; color: var(--muted); font-size: 14px; }
.foot-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.foot-links a { color: var(--muted); margin-left: 20px; }
