/* crushlore — standalone stylesheet for static SEO pages (petal & ink) */
:root {
  --bg: #fff6f4;
  --surface: #ffffff;
  --text: #2e1f28;
  --soft: #7e6470;
  --rose: #de3d6d;
  --rose-deep: #b22456;
  --line: rgba(222, 61, 109, 0.16);
  --gold: #c9a35b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(900px 600px at 78% -8%, rgba(222, 61, 109, 0.09), transparent 60%),
    radial-gradient(700px 520px at -6% 42%, rgba(201, 163, 91, 0.07), transparent 55%),
    var(--bg);
  color: var(--text);
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 3px solid transparent;
  border-image: repeating-linear-gradient(
      45deg,
      var(--rose) 0 9px,
      transparent 9px 18px,
      #3d4e81 18px 27px,
      transparent 27px 36px
    )
    1;
}

.wordmark {
  font-family: 'Fraunces', georgia, serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--text);
  text-decoration: none;
}

.wordmark b {
  color: var(--rose);
}

h1 {
  font-family: 'Fraunces', georgia, serif;
  font-weight: 420;
  font-size: clamp(2.1rem, 6vw, 3.2rem);
  line-height: 1.08;
  margin: 1.6em 0 0.5em;
}

h2 {
  font-family: 'Fraunces', georgia, serif;
  font-weight: 480;
  font-size: 1.5rem;
  margin: 1.8em 0 0.5em;
}

p {
  color: var(--soft);
}

.intro {
  font-size: 1.12rem;
  color: var(--soft);
}

.cta-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  margin: 2.4em 0;
  text-align: center;
  box-shadow: 0 2px 6px rgba(222, 61, 109, 0.05), 0 18px 44px rgba(222, 61, 109, 0.08);
}

.cta-box p {
  margin-top: 0;
}

.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 1.05rem;
  color: #fff;
  background: var(--rose);
  border-radius: 999px;
  padding: 14px 34px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(222, 61, 109, 0.3);
  transition: transform 0.18s ease, background 0.18s ease;
}

.btn:hover {
  background: var(--rose-deep);
  transform: translateY(-2px);
}

.trust {
  font-family: 'Spline Sans Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--soft);
  margin-top: 14px;
}

.trust b {
  color: var(--gold);
  font-weight: 400;
}

.faq h3 {
  font-family: 'Fraunces', georgia, serif;
  font-weight: 520;
  font-size: 1.15rem;
  margin: 1.4em 0 0.3em;
  color: var(--text);
}

ol li,
ul li {
  color: var(--soft);
  margin: 6px 0;
}

ol li::marker {
  color: var(--rose);
  font-weight: 600;
}

.related {
  border-top: 1px solid var(--line);
  margin-top: 3em;
  padding-top: 1.4em;
}

.related a {
  color: var(--soft);
  text-decoration: none;
  font-size: 0.9rem;
  margin-right: 18px;
  line-height: 2;
  display: inline-block;
}

.related a:hover {
  color: var(--rose-deep);
}

.foot {
  margin-top: 2.5em;
  font-size: 0.82rem;
  color: rgba(46, 31, 40, 0.4);
}
