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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  color: #1A1A2E;
  line-height: 1.6;
  background: #FFFFFF;
}

.container {
  max-width: 680px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.nav {
  padding: 16px 24px;
  border-bottom: 1px solid #E5E7EB;
}

.nav a {
  color: #1A1A2E;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

h2 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 12px;
}

p, li {
  font-size: 15px;
  color: #374151;
  margin-bottom: 12px;
}

ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

li {
  margin-bottom: 6px;
}

.updated {
  color: #6B7280;
  font-size: 14px;
  margin-bottom: 32px;
}

a {
  color: #E91E63;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.hero {
  text-align: center;
  padding: 80px 24px 60px;
}

.hero-mark {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 12px;
}

.hero .tagline {
  font-size: 18px;
  color: #6B7280;
  margin-bottom: 40px;
}

.features {
  max-width: 520px;
  margin: 0 auto;
  text-align: left;
}

.feature {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #FCE4EC;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.feature h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}

.feature p {
  font-size: 14px;
  color: #6B7280;
  margin-bottom: 0;
}

.cta {
  text-align: center;
  margin-top: 48px;
}

.cta a {
  display: inline-block;
  background: #E91E63;
  color: #FFFFFF;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
}

.cta a:hover {
  opacity: 0.9;
  text-decoration: none;
}

.footer {
  text-align: center;
  padding: 32px 24px;
  border-top: 1px solid #E5E7EB;
  margin-top: 60px;
}

.footer p {
  font-size: 13px;
  color: #9CA3AF;
}

.footer a {
  color: #6B7280;
  margin: 0 8px;
}

strong { color: #1A1A2E; }
