:root {
  --bg: #ffffff;
  --bg-soft: #f9fafb;
  --border-soft: #e5e7eb;
  --text-main: #0f172a;
  --text-muted: #6b7280;

  --accent: #fb7185;
  --accent-soft: #fce7f3;
  --accent-strong: #ec4899;

  --star: #fbbf24;
  --badge: #0ea5e9;

  --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Reset */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Links */
a {
  color: var(--text-main);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(15, 23, 42, 0.28);
}
a:hover {
  text-decoration-color: rgba(236, 72, 153, 0.65);
}

/* Layout */
.page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 16px 64px;
}

/* Header */
header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.brand { display: flex; flex-direction: column; gap: 6px; }

.brand-name {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* Flashy dot */
.brand-name::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #fff 0%, rgba(255,255,255,0.7) 20%, var(--accent) 40%, var(--accent-strong) 75%);
  box-shadow:
    0 0 0 3px rgba(236, 72, 153, 0.12),
    0 0 12px rgba(236, 72, 153, 0.35);
}

.brand-tagline {
  font-size: 14px;
  color: var(--text-muted);
}

.trust-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.trust-tag {
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ===== Header tabs ===== */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: var(--bg-soft);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  color: var(--text-main);
  line-height: 1;
}

.tab:hover {
  border-color: rgba(236, 72, 153, 0.45);
  background: rgba(236, 72, 153, 0.06);
}

.tab.is-active,
.tab[aria-current="page"] {
  border-color: rgba(236, 72, 153, 0.55);
  background: var(--accent-soft);
  color: var(--text-main);
}

/* Hero */
.hero {
  background: var(--bg-soft);
  border-radius: 24px;
  border: 1px solid var(--border-soft);
  padding: 20px 18px 22px;
  margin-bottom: 28px;
}

@media (min-width: 768px) {
  .hero {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 24px;
    padding: 28px;
  }
}

.hero-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 8px;
}

.hero-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0 0 16px;
}

.hero-list {
  margin: 0;
  padding-left: 18px;
  font-size: 14px;
  color: var(--text-muted);
}
.hero-list li + li { margin-top: 4px; }

.hero-highlight {
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 600;
}

/* Hero actions */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
}

@media (max-width: 560px) {
  .hero-actions {
    flex-direction: column;
    gap: 16px;
  }
  .hero-actions a {
    width: 100%;
    justify-content: center;
  }
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(236, 72, 153, 0.35);
  background: #fff;
  font-weight: 650;
  font-size: 14px;
  text-decoration: none;
}

.chevron { font-weight: 900; }

/* Hero aside */
.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Rating pill */
.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fefce8;
  border: 1px solid #facc15;
  font-size: 12px;
}
.rating-pill .star { color: var(--star); }

.hero-note {
  font-size: 12px;
  color: var(--text-muted);
}

/* Sections */
.section-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
}
.section-subtitle {
  margin: 0 0 14px;
  font-size: 14px;
  color: var(--text-muted);
}

/* Cards */
.card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 16px 16px 18px;
  margin-bottom: 24px;
}

/* Simple checklist */
.checklist {
  margin: 0;
  padding-left: 18px;
  color: var(--text-muted);
  font-size: 14px;
}
.checklist li + li { margin-top: 6px; }

/* Grid */
.grid {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}
@media (min-width: 860px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}
@media (min-width: 1100px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Table of contents */
.toc-grid {
  display: grid;
  gap: 10px;
}
@media (min-width: 860px) {
  .toc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.toc-item {
  display: inline-flex;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--border-soft);
  background: var(--bg-soft);
  text-decoration: none;
  font-weight: 650;
  font-size: 13px;
}
.toc-item:hover {
  border-color: rgba(236, 72, 153, 0.45);
  background: rgba(236, 72, 153, 0.06);
  text-decoration: none;
}

/* FAQ */
.faq h3 {
  margin: 14px 0 6px;
  font-size: 14px;
}
.faq p {
  margin: 0 0 8px;
  color: var(--text-muted);
  font-size: 13px;
}

/* Disclaimer */
.disclaimer {
  margin-top: 22px;
  padding: 14px 14px;
  border-radius: 18px;
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  color: var(--text-muted);
  font-size: 12px;
}
.disclaimer p { margin: 6px 0; }

/* Footer */
.site-footer {
  margin-top: 36px;
  padding-top: 16px;
  border-top: 1px solid var(--border-soft);
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.site-footer a {
  color: var(--text-main);
  text-decoration-color: rgba(15, 23, 42, 0.25);
}
.site-footer a:hover {
  text-decoration-color: rgba(236, 72, 153, 0.65);
}

.footer-links { display: inline; }
