@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --coral: #FF6B6B;
  --coral-light: #FFE0E0;
  --violet: #7C5CFC;
  --violet-light: #EDE8FF;
  --mint: #4ECDC4;
  --mint-light: #DDFAF7;
  --bg: #F8F6FF;
  --bg-secondary: #F0EDFA;
  --text: #2D2642;
  --text-secondary: #7A7490;
  --text-tertiary: #ADA8BF;
  --white: #FFFFFF;
  --border: #EEEAF5;
}

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

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

h1, h2, h3 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
}

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

a:hover {
  text-decoration: underline;
}

/* Layout */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Nav */
.nav {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  color: var(--coral);
  text-decoration: none;
}

.nav-logo:hover {
  text-decoration: none;
}

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

.nav-links a {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--coral);
}

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

.hero-emoji {
  font-size: 64px;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 48px;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero h1 span {
  color: var(--coral);
}

.hero p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 40px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, opacity 0.15s;
}

.btn:hover {
  transform: scale(0.98);
  text-decoration: none;
}

.btn-primary {
  background: var(--coral);
  color: white;
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.25);
}

.btn-secondary {
  background: var(--bg-secondary);
  color: var(--text);
}

/* Features */
.features {
  padding: 60px 0;
}

.features h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--white);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.feature-card .icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Page content (privacy, support) */
.page-header {
  text-align: center;
  padding: 60px 0 40px;
}

.page-header h1 {
  font-size: 36px;
  margin-bottom: 8px;
}

.page-header p {
  color: var(--text-secondary);
  font-size: 14px;
}

.content {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  margin-bottom: 60px;
}

.content h2 {
  font-size: 22px;
  margin: 32px 0 12px;
  color: var(--text);
}

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

.content p, .content li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}

.content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.content li {
  margin-bottom: 6px;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.faq-item p {
  margin-bottom: 0;
}

/* Contact card */
.contact-card {
  background: var(--bg-secondary);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  margin-top: 32px;
}

.contact-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-card a {
  font-size: 18px;
  font-weight: 600;
}

/* Footer */
.footer {
  text-align: center;
  padding: 40px 0;
  color: var(--text-tertiary);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 13px;
}

/* Badge */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.badge-coral {
  background: var(--coral-light);
  color: var(--coral);
}

.badge-violet {
  background: var(--violet-light);
  color: var(--violet);
}

/* Responsive */
@media (max-width: 640px) {
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 16px; }
  .content { padding: 24px; }
  .feature-grid { grid-template-columns: 1fr; }
  .nav-links { gap: 16px; }
}
