:root {
  --bg: #0C0023;
  --surface: #1A0A2E;
  --pink: #FF2D87;
  --cyan: #00F5FF;
  --violet: #BF5FFF;
  --muted: #8B7FA8;
  --text: #F0E8FF;
  --border: rgba(191, 95, 255, 0.2);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(191, 95, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(191, 95, 255, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ── Header ── */

header {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

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

.wordmark {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--pink), var(--violet), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

nav {
  display: flex;
  gap: 24px;
}

nav a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}

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

/* ── Hero ── */

.hero {
  padding: 80px 0 56px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--text) 40%, var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 440px;
  margin: 0 auto;
}

/* ── Apps ── */

.apps {
  padding: 0 0 80px;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 20px;
}

.app-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  transition: border-color 0.2s;
}

.app-card:hover {
  border-color: rgba(191, 95, 255, 0.45);
}

.app-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  flex-shrink: 0;
}

.app-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 3px;
}

.app-tagline {
  font-size: 13px;
  color: var(--violet);
  font-weight: 500;
  margin-bottom: 10px;
}

.app-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.app-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  color: white;
  text-decoration: none;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.app-store-badge svg {
  width: 14px;
  height: 14px;
  fill: white;
}

.coming-soon {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ── Footer ── */

footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

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

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

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

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

.footer-copy {
  font-size: 12px;
  color: var(--muted);
  opacity: 0.55;
}

/* ── Inner pages ── */

.page-header {
  padding: 48px 0 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 16px;
  transition: color 0.15s;
}

.back-link:hover {
  color: var(--text);
}

.page-header h1 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--text) 40%, var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-header .effective-date {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
}

/* ── Prose ── */

.prose {
  padding-bottom: 80px;
}

.prose h2 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 40px 0 10px;
}

.prose h2:first-child {
  margin-top: 0;
}

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

.prose p:last-child {
  margin-bottom: 0;
}

.prose a {
  color: var(--violet);
  text-decoration: none;
}

.prose a:hover {
  text-decoration: underline;
}

/* ── Support ── */

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 48px;
}

.contact-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.contact-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 3px;
}

.contact-email {
  font-size: 15px;
  font-weight: 600;
  color: var(--violet);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.contact-email:hover {
  text-decoration: underline;
}

.response-note {
  font-size: 12px;
  color: var(--muted);
  opacity: 0.7;
  margin-top: 2px;
}

.faq-section h2 {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 20px;
}

.faq-item {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.faq-a {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.faq-a a {
  color: var(--violet);
  text-decoration: none;
}

.faq-a a:hover {
  text-decoration: underline;
}

/* ── Responsive ── */

@media (max-width: 520px) {
  .app-card {
    flex-direction: column;
    gap: 16px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
