@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700;800;900&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { background: #121216; }
body {
  color: #e6e6e6;
  font-family: 'Figtree', 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
}
a { color: #F598F2; text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: 760px; margin: 0 auto; padding: 0 22px; }

/* nav */
.b-nav {
  border-bottom: 1px solid #2c2c34; position: sticky; top: 0; z-index: 10;
  background: rgba(18,18,22,.85); backdrop-filter: blur(10px);
}
.b-nav .wrap { display: flex; align-items: center; justify-content: space-between; padding: 16px 22px; }
.b-brand { display: flex; align-items: center; gap: 10px; font-weight: 700; color: #fff; font-size: 16px; }
.b-brand img { width: 26px; height: 26px; border-radius: 6px; }
.b-cta {
  background: #F598F2; color: #000 !important; font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: .04em; padding: 10px 18px; border-radius: 999px;
}
.b-cta:hover { text-decoration: none; opacity: .92; }

/* article */
article { padding: 56px 0 40px; }
.eyebrow { color: #F598F2; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; }
h1 { color: #fff; font-size: clamp(30px, 5vw, 46px); line-height: 1.1; font-weight: 800; letter-spacing: -0.02em; margin: 16px 0 14px; }
.post-meta { color: #8a8a8a; font-size: 14px; margin-bottom: 34px; }
article h2 { color: #fff; font-size: clamp(23px, 3.4vw, 30px); font-weight: 700; letter-spacing: -0.01em; margin: 44px 0 14px; }
article h3 { color: #fff; font-size: 19px; font-weight: 600; margin: 28px 0 10px; }
article p { font-size: 17px; color: #cfcfcf; margin: 0 0 18px; font-weight: 300; }
article strong { color: #fff; font-weight: 600; }
article ul, article ol { margin: 0 0 20px; padding-left: 22px; }
article li { font-size: 17px; color: #cfcfcf; margin-bottom: 9px; font-weight: 300; }
article li::marker { color: #F598F2; }
.lead { font-size: 20px !important; color: #e6e6e6 !important; }

/* cta box */
.cta-box {
  border: 1px solid #2c2c34; background: #1c1c22; border-radius: 16px;
  padding: 28px 26px; margin: 36px 0;
}
.cta-box h3 { margin-top: 0; font-size: 21px; }
.cta-box p { font-size: 16px; margin-bottom: 18px; }
.cta-box a.btn {
  display: inline-block; background: #F598F2; color: #000 !important; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em; font-size: 14px;
  padding: 14px 26px; border-radius: 999px;
}
.cta-box a.btn:hover { text-decoration: none; opacity: .92; }

blockquote {
  border-left: 3px solid #F598F2; padding: 4px 0 4px 20px; margin: 24px 0;
  color: #fff; font-size: 19px; font-style: italic;
}

/* faq */
.faq h3 { font-size: 18px; margin-top: 24px; }
.faq p { font-size: 16px; }

/* footer */
.b-foot { border-top: 1px solid #2c2c34; padding: 34px 0 48px; margin-top: 40px; }
.b-foot .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: #7a7a7a; }
.b-foot a { color: #9a9a9a; }

/* blog index cards */
.blog-hero { padding: 64px 0 8px; }
.post-list { padding: 20px 0 40px; display: grid; gap: 18px; }
.post-card {
  display: block; border: 1px solid #2c2c34; background: #1c1c22; border-radius: 14px;
  padding: 24px 26px; transition: border-color .3s, transform .3s;
}
.post-card:hover { border-color: #F598F2; transform: translateY(-3px); text-decoration: none; }
.post-card h2 { color: #fff; font-size: 22px; font-weight: 700; margin: 6px 0 8px; }
.post-card p { color: #a8a8a8; font-size: 15px; font-weight: 300; margin: 0; }
.post-card .eyebrow { font-size: 12px; }
