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

:root {
  --bg: #0F0E17;
  --bg2: #1A1A2E;
  --bg3: #252540;
  --primary: #6C63FF;
  --primary-glow: rgba(108, 99, 255, 0.25);
  --accent: #FF6B6B;
  --text: #FFFFFE;
  --text-muted: #A7A9BE;
  --border: #3A3A5C;
  --radius: 16px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ── */
header {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--text);
}

.wordmark span { color: var(--primary); }

nav a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
}

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

/* ── Hero ── */
.hero {
  padding: 100px 0 80px;
  text-align: center;
}

.hero-eyebrow {
  display: inline-block;
  background: var(--primary-glow);
  border: 1px solid var(--primary);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 32px;
}

.hero h1 {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 24px;
}

.hero h1 .tilt { color: var(--primary); }
.hero h1 .labs { color: var(--text); }

.hero-tagline {
  font-size: clamp(18px, 3vw, 22px);
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}

/* ── App Section ── */
.app-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.app-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 48px;
  align-items: center;
}

.app-icon {
  width: 140px;
  height: 140px;
  border-radius: 32px;
  box-shadow: 0 24px 64px rgba(108, 99, 255, 0.35);
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.app-name {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.app-name .bang { color: var(--accent); }

.app-desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
}

.store-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--text);
  color: var(--bg);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 14px;
  transition: opacity 0.15s, transform 0.15s;
}

.store-btn:hover { opacity: 0.9; transform: translateY(-2px); text-decoration: none; }

.store-btn svg { width: 20px; height: 20px; flex-shrink: 0; }

.store-btn-inner { display: flex; flex-direction: column; }
.store-btn-sub { font-size: 10px; font-weight: 500; opacity: 0.65; line-height: 1; }
.store-btn-main { font-size: 16px; font-weight: 800; line-height: 1.2; }

.store-btn-coming {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 14px;
  border: 1px solid var(--border);
}

/* ── Features ── */
.features {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.feature-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s;
}

.feature-card:hover { border-color: var(--primary); }

.feature-emoji { font-size: 32px; margin-bottom: 16px; display: block; }
.feature-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.feature-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.15s;
}

.footer-links a:hover { color: var(--text); text-decoration: none; }

/* ── Privacy Policy ── */
.prose {
  max-width: 720px;
  margin: 64px auto;
  padding: 0 24px 80px;
}

.prose h1 {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.prose .meta {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.prose h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 40px 0 12px;
  color: var(--text);
}

.prose p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.prose ul {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}

.prose ul li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
}

.prose ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--primary);
}

.prose a { color: var(--primary); }

.highlight-box {
  background: var(--bg2);
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
}

.highlight-box p {
  margin: 0;
  color: var(--text);
  font-weight: 500;
  font-size: 15px;
}

/* ── Responsive ── */
@media (max-width: 700px) {
  .app-card {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    gap: 28px;
    text-align: center;
  }
  .app-icon { width: 110px; height: 110px; border-radius: 26px; margin: 0 auto; }
  .app-desc { margin: 0 auto 32px; }
  .store-buttons { justify-content: center; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .hero { padding: 64px 0 56px; }
  .header-inner { flex-direction: column; gap: 12px; text-align: center; }
}

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