/* Whodo tanıtım sayfası — mobile/lib/core/theme/app_colors.dart ile aynı
   marka renkleri, sistem fontu (Google Fonts CDN bağımlılığı istemedik). */
:root {
  color-scheme: light dark;
  --primary: #e62955;
  --secondary: #c398ff;
  --tertiary: #ffbf3e;
  --quaternary: #31da83;
  --bg: #fcf8ff;
  --surface: #ffffff;
  --on-surface: #1a1a1a;
  --on-surface-muted: rgba(26, 26, 26, 0.65);
  --border: rgba(26, 26, 26, 0.1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #15121c;
    --surface: #1e1a28;
    --on-surface: #f2edff;
    --on-surface-muted: rgba(242, 237, 255, 0.65);
    --border: rgba(242, 237, 255, 0.12);
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--on-surface);
  line-height: 1.55;
}

.wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

header.site-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 28px 24px;
  max-width: 880px;
  margin: 0 auto;
}

header.site-header img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

header.site-header span {
  font-size: 1.25rem;
  font-weight: 700;
}

.hero {
  text-align: center;
  padding: 48px 0 64px;
}

.hero h1 {
  font-size: clamp(2.25rem, 6vw, 3.25rem);
  margin: 0 0 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero .tagline {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 0 20px;
}

.hero p.pitch {
  font-size: 1.15rem;
  color: var(--on-surface-muted);
  max-width: 620px;
  margin: 0 auto;
}

section.feature {
  padding: 56px 0;
  border-top: 1px solid var(--border);
}

section.feature .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--secondary);
  margin: 0 0 8px;
}

section.feature h2 {
  font-size: 1.75rem;
  margin: 0 0 16px;
  font-weight: 700;
}

section.feature p {
  color: var(--on-surface-muted);
  font-size: 1.02rem;
  max-width: 640px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.steps .step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
}

.steps .step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.steps .step h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.steps .step p {
  margin: 0;
  font-size: 0.92rem;
}

.pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.pill-row span {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 600;
}

.accent-quaternary {
  color: var(--quaternary);
}
.accent-secondary {
  color: var(--secondary);
}
.accent-tertiary {
  color: var(--tertiary);
}

footer.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0 48px;
  text-align: center;
  color: var(--on-surface-muted);
  font-size: 0.85rem;
}
