@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&display=swap');

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

:root {
  --bg: #0A0A0A;
  --bg2: #111111;
  --bg3: #181818;
  --gold: #FFD700;
  --gold-dim: #b89a00;
  --text: #F0F0F0;
  --muted: #888888;
  --border: rgba(255,215,0,0.15);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--gold); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .75; }

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .04em;
}

.nav-logo img { width: 36px; height: 36px; border-radius: 8px; object-fit: contain; margin-right: .6rem; }
.nav-logo span { color: var(--gold); }
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .02em;
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); opacity: 1; }

.hamburger { display: none; background: none; border: none; cursor: pointer; color: var(--text); font-size: 1.5rem; }

@media (max-width: 640px) {
  .hamburger { display: block; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--bg2);
    padding: 1rem 2rem 1.5rem;
    border-bottom: 1px solid var(--border);
    gap: 1rem;
  }
  .nav-links.open { display: flex; }
}

/* ── FOOTER ── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem 2rem;
  text-align: center;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}
.footer-logo img { width: 28px; height: 28px; border-radius: 6px; margin-right: .5rem; }

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  list-style: none;
}
.footer-links a { color: var(--muted); font-size: .9rem; transition: color .2s; }
.footer-links a:hover { color: var(--gold); opacity: 1; }

footer p { color: var(--muted); font-size: .8rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, opacity .15s;
  border: none;
}
.btn:hover { transform: translateY(-2px); opacity: 1; }

.btn-gold {
  background: var(--gold);
  color: #000;
  box-shadow: 0 4px 24px rgba(255,215,0,.3);
}
.btn-gold:hover { box-shadow: 0 8px 32px rgba(255,215,0,.45); }
a.btn-gold, a.btn-gold:link, a.btn-gold:visited { color: #000; }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover { background: rgba(255,215,0,.08); }

/* ── SECTIONS ── */
section { padding: 5rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }

.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(255,215,0,.1);
  border: 1px solid rgba(255,215,0,.25);
  padding: .3rem .9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-title .highlight { color: var(--gold); }

.section-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 2.5rem;
}

.text-center { text-align: center; }

/* ── HERO ── */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255,215,0,.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(255,215,0,.3);
  padding: .4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  background: rgba(255,215,0,.06);
}

.hero h1 {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero p {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: .75rem 1.5rem;
  color: var(--text);
  font-size: .9rem;
  transition: border-color .2s, transform .15s;
}
.store-btn:hover { border-color: var(--gold); transform: translateY(-2px); color: var(--text); opacity: 1; }
.store-btn svg { width: 28px; height: 28px; flex-shrink: 0; }
.store-btn-text { display: flex; flex-direction: column; text-align: left; line-height: 1.2; }
.store-btn-text small { font-size: .7rem; color: var(--muted); }
.store-btn-text strong { font-size: .95rem; font-weight: 600; }

/* ── SCREENSHOTS ── */
.screenshots-grid {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.screenshot-wrap {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 64px rgba(0,0,0,.6);
  transition: transform .3s;
  flex-shrink: 0;
}
.screenshot-wrap:hover { transform: translateY(-8px); }
.screenshot-wrap:nth-child(even) { transform: translateY(20px); }
.screenshot-wrap:nth-child(even):hover { transform: translateY(12px); }
.screenshot-wrap img { display: block; width: 180px; height: auto; }

@media (max-width: 768px) {
  .screenshot-wrap img { width: 130px; }
}

/* ── FEATURES ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  transition: border-color .25s, transform .25s;
}
.feature-card:hover { border-color: rgba(255,215,0,.5); transform: translateY(-4px); }

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255,215,0,.1);
  border: 1px solid rgba(255,215,0,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; }
.feature-card p { color: var(--muted); font-size: .95rem; }

/* ── HOW IT WORKS ── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; margin-top: 3rem; }

.step {
  text-align: center;
  padding: 1.5rem 1rem;
}
.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .4rem; }
.step p { color: var(--muted); font-size: .9rem; }

/* ── TIERS ── */
.tiers { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.5rem; }

.tier-pill {
  padding: .5rem 1.5rem;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 600;
  border: 1.5px solid;
}

/* ── CONTENT PAGES (Privacy, Terms, Support) ── */
.page-hero {
  padding: 5rem 2rem 3rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; margin-bottom: .75rem; }
.page-hero p { color: var(--muted); max-width: 540px; margin: 0 auto; }

.content-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}

.content-body h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  margin: 2.5rem 0 .75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.content-body h2:first-child { border-top: none; margin-top: 0; }

.content-body p { color: #ccc; margin-bottom: 1rem; line-height: 1.75; }
.content-body ul, .content-body ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.content-body li { color: #ccc; margin-bottom: .4rem; line-height: 1.7; }
.content-body strong { color: var(--text); }
.content-body a { color: var(--gold); }

.last-updated {
  display: inline-block;
  font-size: .8rem;
  color: var(--muted);
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: .3rem .85rem;
  border-radius: 50px;
  margin-bottom: 2rem;
}

/* ── SUPPORT FAQ ── */
.faq-list { margin-top: 1rem; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 1rem;
  overflow: hidden;
  background: var(--bg2);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color .2s;
}
.faq-q:hover { color: var(--gold); }
.faq-q .arrow { transition: transform .25s; font-size: .8rem; color: var(--muted); }
.faq-q.open .arrow { transform: rotate(180deg); color: var(--gold); }

.faq-a {
  display: none;
  padding: 0 1.5rem 1.25rem;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.7;
}
.faq-a.open { display: block; }

.contact-card {
  background: linear-gradient(135deg, rgba(255,215,0,.08), rgba(255,215,0,.03));
  border: 1px solid rgba(255,215,0,.25);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  margin-top: 3rem;
}
.contact-card h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: .5rem; }
.contact-card p { color: var(--muted); margin-bottom: 1.5rem; }

/* ── UTILS ── */
.gold { color: var(--gold); }
.divider { width: 60px; height: 3px; background: var(--gold); border-radius: 2px; margin: 1rem auto 0; }
