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

:root {
  --orange: #ff6b35;
  --pink: #f72585;
  --mid: #ee4266;
  --bg: #0d0d0d;
  --bg-card: #161618;
  --bg-card-hover: #1e1e22;
  --border: rgba(255,255,255,0.08);
  --text: #e8e8ec;
  --text-muted: #9a9aa6;
  --text-dim: #6a6a76;
  --radius: 16px;
  --radius-sm: 10px;
  --grad: linear-gradient(135deg, var(--orange) 0%, var(--mid) 50%, var(--pink) 100%);
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--pink); }

img { max-width: 100%; display: block; }

/* ---- NAV ---- */
nav.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,13,13,0.78);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 700;
  font-size: 17px;
}
.nav-brand img { width: 32px; height: 32px; border-radius: 7px; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--grad);
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}
.nav-cta:hover { color: #fff !important; opacity: 0.9; }

/* ---- HERO ---- */
.hero {
  padding: 140px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(247,37,133,0.16) 0%, rgba(255,107,53,0.08) 30%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner { position: relative; z-index: 1; max-width: 880px; margin: 0 auto; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 8px rgba(74,222,128,0.6); }
.hero h1 {
  font-size: clamp(40px, 6.5vw, 76px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}
.hero h1 .grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 36px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; align-items: center; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.15s, opacity 0.2s, background 0.2s;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--grad);
  color: #fff !important;
  box-shadow: 0 10px 30px rgba(247,37,133,0.25);
}
.btn-primary:hover { transform: translateY(-1px); opacity: 0.95; color: #fff !important; }
.btn-secondary {
  background: rgba(255,255,255,0.04);
  border-color: var(--border);
  color: var(--text) !important;
}
.btn-secondary:hover { background: rgba(255,255,255,0.08); }
.hero-meta {
  margin-top: 22px;
  font-size: 13px;
  color: var(--text-dim);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 6px; }

/* ---- HERO SCREENSHOT ---- */
.hero-shot {
  margin: 60px auto 0;
  max-width: 1100px;
  position: relative;
  padding: 0 24px;
}
.hero-shot::after {
  content: '';
  position: absolute;
  left: 10%; right: 10%;
  bottom: -40px;
  height: 80px;
  background: radial-gradient(ellipse, rgba(247,37,133,0.25), transparent 70%);
  filter: blur(20px);
  z-index: -1;
}
.hero-shot img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

/* ---- SECTIONS ---- */
section { padding: 100px 24px; position: relative; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.1;
}
.section-head p { color: var(--text-muted); font-size: 17px; }

/* ---- FEATURES ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}
.feature:hover { background: var(--bg-card-hover); transform: translateY(-2px); border-color: rgba(247,37,133,0.3); }
.feature .icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #fff;
}
.feature h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
.feature p { font-size: 14.5px; color: var(--text-muted); }

/* ---- SCREENSHOTS GALLERY ---- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 28px;
}
.gallery figure {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
}
.gallery figure:hover { transform: translateY(-3px); border-color: rgba(247,37,133,0.3); }
.gallery img { width: 100%; height: auto; display: block; }
.gallery figcaption { padding: 18px 22px 22px; font-size: 14.5px; color: var(--text-muted); }
.gallery figcaption strong { color: var(--text); display: block; font-weight: 600; margin-bottom: 4px; font-size: 15px; }

@media (max-width: 560px) {
  .gallery { grid-template-columns: 1fr; }
}

/* ---- PRIVACY CALLOUT ---- */
.privacy-callout {
  background: linear-gradient(135deg, rgba(255,107,53,0.08) 0%, rgba(247,37,133,0.08) 100%);
  border: 1px solid rgba(247,37,133,0.18);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.privacy-callout h2 { font-size: 30px; margin-bottom: 14px; }
.privacy-callout p { color: var(--text-muted); margin-bottom: 8px; font-size: 16px; }

/* ---- CTA SECTION ---- */
.cta-section {
  text-align: center;
  padding: 100px 24px;
}
.cta-section h2 { font-size: clamp(30px, 4vw, 46px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 18px; }
.cta-section p { color: var(--text-muted); margin-bottom: 32px; font-size: 18px; }

/* ---- APP STORE BADGE ---- */
.appstore-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #000;
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff !important;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 600;
  transition: transform 0.15s, border-color 0.2s;
}
.appstore-badge:hover { transform: translateY(-1px); border-color: rgba(255,255,255,0.4); color: #fff !important; }
.appstore-badge svg { width: 28px; height: 28px; }
.appstore-badge .sub { font-size: 11px; color: rgba(255,255,255,0.7); display: block; font-weight: 400; line-height: 1; margin-bottom: 2px; }
.appstore-badge .main { font-size: 17px; line-height: 1.1; }

/* ---- FOOTER ---- */
footer.site-footer {
  border-top: 1px solid var(--border);
  padding: 60px 24px 40px;
  background: #08080a;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand img { width: 40px; height: 40px; border-radius: 9px; }
.footer-brand strong { font-size: 17px; }
.footer-brand p { color: var(--text-muted); font-size: 14px; max-width: 280px; }
.footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-dim); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--text-muted); font-size: 14px; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  max-width: 1100px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  color: var(--text-dim);
}

@media (max-width: 720px) {
  nav.site-nav .nav-links a:not(.nav-cta) { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  section { padding: 70px 24px; }
  .hero { padding: 110px 24px 60px; }
  .privacy-callout { padding: 32px 24px; }
}

/* ---- LEGAL PAGES ---- */
.legal-page { padding: 140px 24px 80px; }
.legal-inner { max-width: 760px; margin: 0 auto; }
.legal-inner h1 { font-size: 40px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.02em; }
.legal-inner .lang-toggle { margin: 18px 0 36px; display: inline-flex; gap: 4px; background: var(--bg-card); padding: 4px; border-radius: 999px; border: 1px solid var(--border); }
.legal-inner .lang-toggle button {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: inherit;
}
.legal-inner .lang-toggle button.active { background: var(--grad); color: #fff; }
.legal-inner h2 { font-size: 22px; font-weight: 700; margin: 36px 0 12px; letter-spacing: -0.01em; }
.legal-inner h3 { font-size: 17px; font-weight: 600; margin: 24px 0 8px; }
.legal-inner p, .legal-inner ul { color: var(--text-muted); margin-bottom: 14px; font-size: 15px; }
.legal-inner ul { padding-left: 22px; }
.legal-inner li { margin-bottom: 6px; }
.legal-inner strong { color: var(--text); font-weight: 600; }
.legal-inner .updated { color: var(--text-dim); font-size: 13px; margin-top: 32px; }
.legal-lang { display: none; }
.legal-lang.active { display: block; }

/* ---- SUPPORT ---- */
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-card .row { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.contact-card .label { color: var(--text-dim); font-size: 14px; }
.contact-card .value { color: var(--text); font-weight: 500; }
.faq-item {
  border-top: 1px solid var(--border);
  padding: 22px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-item h3 { font-size: 16px; margin-bottom: 8px; color: var(--text); font-weight: 600; }
.faq-item p { color: var(--text-muted); font-size: 15px; margin-bottom: 0; }
