/* ============================================
   SnapTik Pro — Global Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700&display=swap');

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

:root {
  --bg:           #0a0a0a;
  --bg2:          #111111;
  --bg3:          #1a1a1a;
  --border:       rgba(255,255,255,0.08);
  --border2:      rgba(255,255,255,0.14);
  --text:         #f0f0f0;
  --muted:        #888;
  --muted2:       #555;
  --accent:       #fe2c55;
  --accent2:      #25f4ee;
  --accent-glow:  rgba(254,44,85,0.15);
  --radius:       12px;
  --radius-sm:    8px;
  --font:         'Outfit', sans-serif;
  --font-display: 'Bebas Neue', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── NAVIGATION ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}
.logo {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 2px;
}
.logo .accent { color: var(--accent); }
.logo .pro-tag {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-left: 6px;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
}
.nav-links a:hover  { color: var(--text); background: rgba(255,255,255,0.06); }
.nav-links a.active { color: var(--text); }
.nav-links .nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  transition: opacity .2s !important;
}
.nav-links .nav-cta:hover { opacity: .88; background: var(--accent) !important; }
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border2);
  cursor: pointer;
  color: var(--text);
  font-size: 18px;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
}

/* ── LAYOUT HELPERS ── */
.container { max-width: 1100px; margin: 0 auto; }
section { padding: 72px 24px; }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.05;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity .2s, transform .15s;
}
.btn:hover  { opacity: .88; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary   { background: var(--accent); color: #fff; }
.btn-secondary { background: transparent; border: 1px solid var(--border2); color: var(--text); }
.btn-secondary:hover { background: var(--bg3); }

/* ── FOOTER ── */
footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 52px 24px 28px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo { font-size: 22px; margin-bottom: 10px; }
.footer-desc { font-size: 13px; color: var(--muted); line-height: 1.7; max-width: 260px; }
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 13.5px; color: #666; transition: color .2s; }
.footer-col ul a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 12.5px; color: var(--muted2); line-height: 1.6; }
.footer-copy a { color: var(--muted); }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--muted);
  letter-spacing: 0.5px;
}
.badge.red { color: #f87171; border-color: rgba(248,113,113,0.2); background: rgba(248,113,113,0.05); }

/* ── LEGAL PAGES ── */
.legal-hero {
  padding: 64px 24px 48px;
  border-bottom: 1px solid var(--border);
  background: radial-gradient(ellipse 70% 50% at 50% -10%, rgba(254,44,85,0.08) 0%, transparent 70%);
}
.legal-hero .section-label { margin-bottom: 8px; }
.legal-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 64px);
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.legal-hero .effective-date {
  display: inline-block;
  font-size: 12px;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 100px;
  padding: 5px 14px;
  color: var(--muted);
  margin-top: 12px;
}
.legal-body {
  max-width: 780px;
  padding: 52px 24px 72px;
  margin: 0 auto;
}
.legal-body h2 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin: 36px 0 12px;
  padding-top: 4px;
  border-top: 1px solid var(--border);
}
.legal-body h2:first-child { margin-top: 0; border-top: none; }
.legal-body p { font-size: 14.5px; color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
.legal-body ul, .legal-body ol {
  padding-left: 20px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.8;
}
.legal-body li { margin-bottom: 6px; }
.legal-body strong { color: var(--text); font-weight: 600; }
.legal-body a { color: var(--accent); text-decoration: underline; }
.legal-body .callout {
  background: rgba(254,44,85,0.06);
  border: 1px solid rgba(254,44,85,0.18);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 14px;
  color: var(--muted);
  margin: 20px 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 62px;
    left: 0; right: 0;
    background: rgba(10,10,10,0.97);
    padding: 16px;
    border-bottom: 1px solid var(--border);
    gap: 2px;
    backdrop-filter: blur(18px);
  }
  .nav-links.open { display: flex; }
  .menu-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  section { padding: 52px 20px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
