/* PureForm SEO landings */
:root {
  --bg: #07060a;
  --card: rgba(22, 14, 18, 0.92);
  --line: rgba(255, 255, 255, 0.09);
  --line2: rgba(255, 255, 255, 0.15);
  --text: #f6f2f3;
  --muted: #9a8b90;
  --accent: #ff3b4a;
  --accent2: #ff6b7a;
  --glow: rgba(255, 59, 74, 0.28);
  --ok: #34d399;
  --font: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  --wrap: min(920px, calc(100% - 36px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-size: 15.5px;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 45% at 50% -8%, rgba(255,59,74,.14), transparent 55%),
    linear-gradient(180deg, rgba(7,6,10,.5) 0%, transparent 14%);
}
a { color: var(--accent2); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { width: var(--wrap); margin: 0 auto; position: relative; z-index: 1; }
.muted { color: var(--muted); }
.tiny { font-size: 13px; }

.top {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 12px 0;
  backdrop-filter: blur(14px);
  background: rgba(7, 6, 10, 0.82);
  border-bottom: 1px solid rgba(255, 59, 74, 0.2);
}
.logo {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 800;
  letter-spacing: -0.03em; color: var(--text); text-decoration: none !important;
}
.logo em { font-style: normal; color: var(--accent); }
.logo-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 12px var(--glow);
}
.top-nav { display: flex; flex-wrap: wrap; gap: 8px 14px; align-items: center; }
.top-nav a { color: var(--muted); font-size: 13px; font-weight: 500; text-decoration: none; }
.top-nav a:hover { color: var(--text); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 11px 18px; border-radius: 999px;
  border: 1px solid var(--line2); background: rgba(255,255,255,.04);
  color: var(--text); font-weight: 600; font-size: 13.5px;
  text-decoration: none !important; transition: .15s var(--ease);
}
.btn:hover { background: rgba(255,255,255,.08); text-decoration: none; }
.btn-primary {
  border: none;
  background: linear-gradient(180deg, #ff5a66, #e11d2e);
  color: #fff;
  box-shadow: 0 8px 28px rgba(255, 59, 74, 0.28);
}
.btn-primary:hover { filter: brightness(1.06); }
.btn-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 8px; }

.hero { padding: 36px 0 12px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; color: var(--accent2);
  background: rgba(255,59,74,.12); border: 1px solid rgba(255,59,74,.25);
  padding: 6px 12px; border-radius: 999px; margin-bottom: 14px;
}
h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.7rem, 4.2vw, 2.35rem);
  letter-spacing: -0.03em; line-height: 1.15; margin: 0 0 12px;
}
.lead { color: var(--muted); font-size: 1.05rem; max-width: 54ch; margin: 0 0 8px; }
.lead b { color: var(--text); font-weight: 600; }
.note-18 {
  margin-top: 14px; font-size: 12.5px; color: var(--muted);
  border-left: 3px solid rgba(255,59,74,.45); padding: 8px 0 8px 12px;
}

.stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  margin: 22px 0 8px;
}
@media (max-width: 640px) { .stats { grid-template-columns: 1fr; } }
.stat {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 14px; padding: 14px 14px 12px;
}
.stat .n {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.35rem; letter-spacing: -0.02em; color: var(--text);
}
.stat .k { font-size: 12px; color: var(--muted); margin-top: 4px; line-height: 1.35; }
.stat-src { font-size: 11.5px; color: var(--muted); margin: 6px 0 0; }

.section { padding: 28px 0 8px; }
.section h2 {
  font-family: var(--font-display); font-weight: 750;
  font-size: 1.25rem; letter-spacing: -0.02em; margin: 0 0 10px;
}
.section p, .section li { color: var(--muted); }
.section b { color: var(--text); font-weight: 600; }
.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 16px; padding: 18px 18px 16px; margin: 12px 0;
}
.card h3 {
  margin: 0 0 8px; font-size: 1rem; font-weight: 650;
  font-family: var(--font-display); letter-spacing: -0.01em;
}
.steps { counter-reset: step; list-style: none; padding: 0; margin: 12px 0 0; }
.steps li {
  counter-increment: step; position: relative;
  padding: 12px 12px 12px 48px; margin: 0 0 8px;
  background: rgba(255,255,255,.03); border: 1px solid var(--line);
  border-radius: 12px; color: var(--muted);
}
.steps li::before {
  content: counter(step);
  position: absolute; left: 12px; top: 12px;
  width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 12px; font-weight: 700; color: #fff;
  background: linear-gradient(180deg, #ff5a66, #e11d2e);
}
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 640px) { .grid2 { grid-template-columns: 1fr; } }
.pill {
  display: inline-block; font-size: 12px; padding: 4px 10px;
  border-radius: 999px; border: 1px solid var(--line2);
  color: var(--muted); margin: 0 6px 6px 0;
}
.pill.on { border-color: rgba(255,59,74,.4); color: var(--accent2); background: rgba(255,59,74,.1); }

.faq details {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 12px; padding: 12px 14px; margin: 0 0 8px;
}
.faq summary {
  cursor: pointer; font-weight: 600; color: var(--text);
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq details[open] summary { margin-bottom: 8px; color: var(--accent2); }
.faq p { margin: 0; font-size: 14px; color: var(--muted); }

.related { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.related a {
  font-size: 13px; padding: 8px 12px; border-radius: 999px;
  border: 1px solid var(--line2); color: var(--muted);
  text-decoration: none; background: rgba(255,255,255,.03);
}
.related a:hover { color: var(--text); border-color: rgba(255,59,74,.35); }

.cta-band {
  margin: 28px 0 12px; padding: 22px 20px;
  border-radius: 18px;
  background:
    radial-gradient(ellipse 80% 80% at 10% 0%, rgba(255,59,74,.2), transparent 55%),
    var(--card);
  border: 1px solid rgba(255,59,74,.28);
}
.cta-band h2 { margin: 0 0 8px; }
.cta-band p { margin: 0 0 12px; color: var(--muted); }

footer.seo-foot {
  margin: 36px 0 28px; padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 12.5px; color: var(--muted);
}
footer.seo-foot a { color: var(--muted); }
