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

:root {
  --primary: #FF6B9D;
  --primary-dark: #E84A82;
  --secondary: #9B7EDE;
  --bg: #FFF9FB;
  --bg-card: #FFFFFF;
  --text: #1A1A2E;
  --text-light: #6B7280;
  --text-muted: #9CA3AF;
  --border: #F3F4F6;
  --gradient-bg: linear-gradient(135deg, #FFE5EC 0%, #F8E1FF 50%, #E8F0FF 100%);
}

html { scroll-behavior: smooth; }

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

/* Navigation (matches landing page) */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(255, 249, 251, 0.85);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  padding: 14px 0;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
  text-decoration: none;
}
.nav-brand img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
}
.nav-cta {
  background: var(--text);
  color: white;
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Page header */
.page-header {
  background: var(--gradient-bg);
  padding: 80px 24px 60px;
  text-align: center;
}
.page-header h1 {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #FF6B9D 0%, #9B7EDE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-header p {
  color: var(--text-light);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto;
}
.page-header .updated {
  display: inline-block;
  margin-top: 16px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 100px;
  font-size: 13px;
  color: var(--text);
  font-weight: 600;
}

/* Content */
.content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}
.content h2 {
  font-size: 26px;
  font-weight: 800;
  margin: 40px 0 16px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.content h2:first-child { margin-top: 0; }
.content h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 24px 0 8px;
  color: var(--text);
}
.content p {
  margin-bottom: 16px;
  color: var(--text-light);
  font-size: 16px;
}
.content ul, .content ol {
  margin: 0 0 20px 24px;
  color: var(--text-light);
}
.content li {
  margin-bottom: 8px;
  font-size: 16px;
}
.content a {
  color: var(--primary-dark);
  font-weight: 700;
  text-decoration: none;
}
.content a:hover {
  text-decoration: underline;
}
.content strong {
  color: var(--text);
  font-weight: 700;
}
.content .callout {
  background: var(--bg-card);
  border-left: 4px solid var(--primary);
  padding: 20px 24px;
  border-radius: 12px;
  margin: 24px 0;
}
.content .callout p:last-child { margin-bottom: 0; }

/* Support specific */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.support-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  display: block;
}
.support-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -12px rgba(0,0,0,0.08);
  border-color: var(--primary);
}
.support-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background: rgba(255, 107, 157, 0.12);
  margin-bottom: 16px;
}
.support-card h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 6px;
}
.support-card p {
  color: var(--text-light);
  font-size: 14px;
  margin: 0;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--primary); }
.faq-item summary {
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  color: var(--primary);
  font-weight: 400;
  transition: transform 0.2s;
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p {
  margin-top: 14px;
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
}

/* Footer */
footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
  text-align: center;
  color: var(--text-light);
  font-size: 14px;
  border-top: 1px solid rgba(0,0,0,0.05);
}
footer a {
  color: var(--text-light);
  text-decoration: none;
  margin: 0 12px;
}
footer a:hover { color: var(--primary); }

@media (max-width: 768px) {
  .nav-cta { display: none; }
  .page-header { padding: 60px 24px 48px; }
  .content { padding: 40px 24px 60px; }
  .content h2 { font-size: 22px; }
}
