/* Pine Trees & Incense site styles */

:root {
  --bg: #FDFCFF;
  --purple: #7B5FE0;
  --purple-dark: #5E45C4;
  --mint: #7FD9B6;
  --sky: #7FC4EA;
  --lavender: #C6B4F0;
  --heading: #1B1B1F;
  --body: #5B5B66;
  --card: #FFFFFF;
  --border: #ECE8F7;
  --live: #3FBE7C;
  --warn: #E0A33F;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: #FDFCFF;
  font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  color: var(--body);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.bg-blobs {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .55;
  background-image:
    radial-gradient(circle at 10% 8%, #C6B4F0 0%, transparent 28%),
    radial-gradient(circle at 90% 6%, #7FD9B6 0%, transparent 26%),
    radial-gradient(circle at 88% 65%, #7FC4EA 0%, transparent 30%),
    radial-gradient(circle at 4% 75%, #C6B4F0 0%, transparent 26%);
}

a { color: var(--purple); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { color: var(--heading); font-weight: 700; margin: 0 0 .5em; line-height: 1.25; }
img { max-width: 100%; height: auto; display: block; }
main { flex: 1; }

.wrap {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}

/* Top nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(253, 252, 255, .88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 62px;
  position: relative;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--heading);
  font-size: 16px;
}
.brand:hover { text-decoration: none; }
.brand img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; }
.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  display: block;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--heading);
  font-size: 14px;
  font-weight: 600;
}
.nav-links a:hover { background: #F3EFFD; text-decoration: none; }
.nav-links a.active { background: var(--purple); color: #fff; }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  color: var(--heading);
}
.nav-toggle svg { width: 20px; height: 20px; }

@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-links {
    display: none;
    position: absolute;
    top: 62px;
    left: -20px;
    right: -20px;
    flex-direction: column;
    background: #FDFCFF;
    border-bottom: 1px solid var(--border);
    padding: 10px 16px 16px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 14px; }
}

/* Hero */
.hero {
  text-align: center;
  padding: 46px 0 10px;
}
.ring-wrap {
  width: 160px;
  height: 160px;
  margin: 0 auto 22px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
  opacity: .75;
}
.ring.r1 { width: 160px; height: 160px; border-color: var(--lavender); animation: spin 18s linear infinite; border-style: dashed; }
.ring.r2 { width: 132px; height: 132px; border-color: var(--mint); }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .ring.r1 { animation: none; } }
.hero-avatar {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--card);
  background: var(--card);
  box-shadow: 0 6px 20px rgba(80, 60, 140, .18);
  position: relative;
  z-index: 2;
  color: transparent;
  font-size: 0;
}
.hero h1 { font-size: 30px; margin-bottom: 8px; }
.hero p { font-size: 15px; max-width: 560px; margin: 0 auto; }
.hero .pill-row { justify-content: center; margin-top: 20px; }

/* Page header for inner pages */
.page-head {
  text-align: center;
  padding: 44px 0 8px;
}
.page-head h1 { font-size: 30px; }
.page-head p { max-width: 620px; margin: 0 auto; font-size: 15px; }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 10px;
}

/* Section */
.section { margin-top: 44px; }
.section-title {
  font-size: 20px;
  padding-bottom: 10px;
  margin-bottom: 18px;
  border-bottom: 2px solid var(--border);
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 10px;
  margin-bottom: 18px;
}
.section-head h2 { font-size: 20px; margin: 0; }
.section-head a { font-size: 14px; font-weight: 600; white-space: nowrap; }
.label-center {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 14px;
}

/* Find Me Elsewhere cards */
.elsewhere-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
}
@media (max-width: 640px) { .elsewhere-grid { grid-template-columns: repeat(2, 1fr); } }
.elsewhere-card {
  border-radius: 14px;
  padding: 16px;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  min-height: 84px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 8px 20px rgba(80, 60, 140, .10);
  transition: transform .15s ease, box-shadow .15s ease;
  background: linear-gradient(150deg, #7FD9B6, #7FC4EA);
}
.elsewhere-card small { font-weight: 500; font-size: 12px; opacity: .95; }
.elsewhere-card:hover { transform: translateY(-3px); text-decoration: none; box-shadow: 0 12px 26px rgba(80, 60, 140, .16); }
.elsewhere-card:nth-child(4n+2) { background: linear-gradient(150deg, #C6B4F0, #7B5FE0); }
.elsewhere-card:nth-child(4n+3) { background: linear-gradient(150deg, #7FC4EA, #C6B4F0); }
.elsewhere-card:nth-child(4n+4) { background: linear-gradient(150deg, #7B5FE0, #7FD9B6); }

/* Gradient section card with white boxes inside */
.grad-card {
  border-radius: 20px;
  padding: 24px;
  background: linear-gradient(150deg, rgba(198, 180, 240, .45), rgba(127, 196, 234, .35));
  border: 1px solid rgba(255, 255, 255, .6);
}
.grad-card.mint { background: linear-gradient(150deg, rgba(127, 217, 182, .45), rgba(127, 196, 234, .35)); }
.grad-card.sky { background: linear-gradient(150deg, rgba(127, 196, 234, .45), rgba(198, 180, 240, .35)); }
.grad-card.purple { background: linear-gradient(150deg, rgba(123, 95, 224, .28), rgba(127, 217, 182, .35)); }
.grad-card > h2, .grad-card > h3 { color: var(--heading); font-size: 18px; }
.grad-card > p { margin-top: 0; }

.white-box {
  background: var(--card);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 4px 14px rgba(80, 60, 140, .06);
}
.white-box p:last-child { margin-bottom: 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (min-width: 1500px) { .grid-3 { grid-template-columns: repeat(6, 1fr); } }
@media (max-width: 860px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }
@media (min-width: 1400px) { .faq-grid { grid-template-columns: repeat(4, 1fr); } }

/* Latest posts */
.post-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 18px rgba(80, 60, 140, .06);
  transition: transform .15s ease;
  color: var(--body);
}
.post-card:hover { transform: translateY(-3px); text-decoration: none; }
.post-card .thumb {
  aspect-ratio: 16 / 9;
  background: linear-gradient(150deg, #C6B4F0, #7FC4EA);
  overflow: hidden;
}
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-card .body { padding: 14px 18px 18px; }
.post-card h3 { font-size: 16px; margin: 6px 0; }
.post-card p { margin: 0; font-size: 13px; }
.meta { font-size: 12px; color: #8A8A96; }

/* Pills */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  background: var(--card);
  color: var(--purple);
  border: 1px solid var(--border);
}
a.pill:hover { background: var(--purple); color: #fff; text-decoration: none; border-color: var(--purple); }
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  background: #F3EFFD;
  color: var(--purple);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  background: var(--purple);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 8px 18px rgba(123, 95, 224, .25);
}
.btn:hover { background: var(--purple-dark); text-decoration: none; }
.btn.ghost { background: var(--card); color: var(--purple); border: 1px solid var(--border); box-shadow: none; }
.btn.ghost:hover { background: #F3EFFD; }
.btn-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 18px; }

/* CC archive */
.cc-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 26px 0 6px;
}
.filter-btn {
  font-family: inherit;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--heading);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.filter-btn:hover { background: #F3EFFD; }
.filter-btn.active { background: var(--purple); color: #fff; border-color: var(--purple); }
.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  font-size: 13px;
  margin-top: 12px;
}
.dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; margin-right: 6px; vertical-align: middle; }
.dot.ok { background: var(--live); }
.dot.warn { background: var(--warn); }

.cc-cat { margin-top: 38px; }
.cc-cat[hidden] { display: none; }
.cc-sub { font-size: 14px; font-weight: 700; color: var(--purple); text-transform: uppercase; letter-spacing: .6px; margin: 22px 0 10px; }
.cc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}
.cc-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 4px 14px rgba(80, 60, 140, .05);
}
.cc-item h3 { font-size: 15px; margin: 0; }
.cc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 10px;
}
.status {
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}
.status.ok { background: #E4F7EC; color: #237F50; }
.status.warn { background: #FCF1DE; color: #8F6216; }
.cc-item .dl { font-size: 13px; font-weight: 700; }
.cc-item.featured {
  grid-column: 1 / -1;
  background: linear-gradient(150deg, rgba(198, 180, 240, .45), rgba(127, 217, 182, .4));
  border-color: transparent;
}

/* FAQ accordions (CSS only) */
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 760px) { .faq-grid { grid-template-columns: 1fr; } }
details.acc {
  background: var(--card);
  border-radius: 12px;
  margin-top: 10px;
  box-shadow: 0 3px 10px rgba(80, 60, 140, .06);
}
details.acc summary {
  cursor: pointer;
  list-style: none;
  padding: 13px 44px 13px 16px;
  font-weight: 600;
  color: var(--heading);
  font-size: 14px;
  position: relative;
}
details.acc summary::-webkit-details-marker { display: none; }
details.acc summary::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--purple);
  font-weight: 500;
}
details.acc[open] summary::after { content: "\2212"; }
details.acc .acc-body { padding: 0 16px 14px; font-size: 14px; }
details.acc .acc-body p { margin: 0 0 8px; }
details.acc .acc-body p:last-child { margin: 0; }

/* Essentials */
.spec-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.spec-list li {
  background: var(--card);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
}
.spec-list li b { color: var(--heading); font-weight: 600; }
.spec-list li span { text-align: right; }
.chip-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 10px; }
.chip {
  background: var(--card);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading);
  display: flex;
  flex-direction: column;
}
.chip small { color: var(--body); font-weight: 400; font-size: 12px; }
a.chip:hover { text-decoration: none; box-shadow: 0 0 0 2px #C6B4F0; }

/* Pineveil */
.char-card {
  background: var(--card);
  border-radius: 14px;
  padding: 18px;
}
.char-card h3 { font-size: 16px; margin-bottom: 2px; }
.char-card .role { font-size: 12px; font-weight: 700; color: var(--purple); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; display: block; }
.char-card p { margin: 0; font-size: 14px; }
.chapter-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.chapter-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: var(--card);
  border-radius: 12px;
  padding: 12px 16px;
  color: var(--heading);
  font-weight: 600;
  font-size: 14px;
}
.chapter-list a:hover { text-decoration: none; box-shadow: 0 0 0 2px #C6B4F0; }
.chapter-list a span { color: var(--purple); font-size: 13px; white-space: nowrap; }

.about-imgs { display: grid; gap: 20px; justify-items: center; }
.about-imgs img { border-radius: 16px; box-shadow: 0 8px 22px rgba(80, 60, 140, .10); max-width: 640px; width: 100%; }

.center { text-align: center; }
.muted { color: #8A8A96; font-size: 13px; }

/* Footer */
.footer {
  margin-top: 60px;
  border-top: 1px solid var(--border);
  padding: 26px 0 34px;
  font-size: 13px;
  text-align: center;
}
.footer .pill-row { justify-content: center; margin-bottom: 14px; }
.footer p { margin: 4px 0; }

/* Home banner */
.hero { padding-top: 28px; }
.hero-banner {
  width: 100%;
  max-width: 1400px;
  height: auto;
  margin: 0 auto 22px;
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(80, 60, 140, .16);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ===== Blog-style panels (CC, Essentials, About) ===== */
.bp-intro { text-align: center; margin: 0 auto 26px; }
.page-head + .bp-grid, .page-head + .bp-links { margin-top: 18px; }
.bp-intro p { max-width: 640px; margin: 0 auto; font-size: 15px; }

.bp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-bottom: 22px; }
@media (max-width: 760px) { .bp-grid { grid-template-columns: 1fr; } }

.bp-section {
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 26px rgba(80, 60, 140, .14);
  margin-bottom: 22px;
}
.bp-grid .bp-section { margin-bottom: 0; }
.bp-s1 { background: linear-gradient(150deg, #C6B4F0, #7FC4EA); }
.bp-s2 { background: linear-gradient(150deg, #7FD9B6, #7FC4EA); }
.bp-s3 { background: linear-gradient(150deg, #7FC4EA, #C6B4F0); }
.bp-s4 { background: linear-gradient(150deg, #7B5FE0, #7FD9B6); }
.bp-s5 { background: linear-gradient(120deg, #C6B4F0, #7B5FE0, #7FD9B6); }
.bp-s6 { background: linear-gradient(150deg, #7FD9B6, #7B5FE0); }
.bp-s7 { background: linear-gradient(140deg, #4FBE7C, #7FC4EA); }
.bp-s8 { background: linear-gradient(140deg, #7B5FE0, #C6B4F0); }
.bp-cas { background: linear-gradient(135deg, #7FE3AC 0%, #7EA9F5 100%); }
.bp-build { background: linear-gradient(135deg, #6FE8C0 0%, #5FC9E8 100%); }
.bp-mods { background: linear-gradient(135deg, #8EE6A8 0%, #B48AF0 100%); }
.bp-full { background: linear-gradient(135deg, #7FE3AC 0%, #6FD8B0 100%); }

.bp-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .18);
  margin-bottom: 14px;
}
.bp-box {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 12px;
}
.bp-box:last-child { margin-bottom: 0; }
.bp-box p { font-size: 14px; line-height: 1.65; margin: 0 0 10px; }
.bp-box p:last-child { margin-bottom: 0; }
.bp-box-title {
  font-size: 14px;
  font-weight: 800;
  color: #1B1B1F;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #ECE8F7;
}

/* CC list */
.bp-links { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 18px; }
.bp-link-pill {
  display: flex; align-items: center; gap: 8px;
  color: #2b2b33; background: #f7f6fc;
  border: 1px solid #e4e1f5; border-radius: 999px;
  padding: 8px 16px; font-size: 14px; font-weight: 700;
}
.bp-link-pill:hover { background: #ece9fb; text-decoration: none; }
.bp-link-pill.main { background: #d8f5df; border-color: #b6e8c2; color: #1f6a34; }
.bp-link-pill.main:hover { background: #c7f0d4; }
.bp-link-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; min-width: 24px; border-radius: 50%;
  background: #6c5ce7; color: #fff; font-size: 10px; font-weight: 800;
}
.bp-link-pill.main .bp-link-icon { background: #1f8a44; }
.bp-link-note { font-size: 11px; font-weight: 600; opacity: .8; }

.bp-key {
  display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; align-items: center;
  background: #f7f6fc; border-radius: 999px; padding: 10px 22px;
  margin: 0 auto 26px; width: fit-content; max-width: 100%; font-size: 13px; color: #3a3a44;
}
.bp-key-item { display: flex; align-items: center; gap: 7px; }
.bp-key-dot { width: 10px; height: 10px; border-radius: 50%; }
.bp-key-dot.green { background: #1f8a44; }
.bp-key-dot.red { background: #b3261e; }

.bp-flow { column-count: 2; column-gap: 22px; }
@media (max-width: 900px) { .bp-flow { column-count: 1; } }
.bp-flow .bp-box { break-inside: avoid; -webkit-column-break-inside: avoid; display: inline-block; width: 100%; margin-bottom: 14px; }

.bp-item {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: #f7f6fc; border-radius: 10px; padding: 9px 12px; margin-bottom: 8px;
}
.bp-item:last-child { margin-bottom: 0; }
.bp-item-left { min-width: 0; flex: 1 1 auto; }
.bp-item-title { font-weight: 700; font-size: 14px; color: #1B1B1F; }
.bp-item-meta { font-size: 12px; color: #6b6b76; }
.bp-item-right { display: flex; align-items: center; gap: 8px; flex: 0 0 auto; }
.bp-status { font-size: 11px; font-weight: 700; padding: 4px 9px; border-radius: 999px; white-space: nowrap; }
.bp-status.working { background: #d8f5df; color: #1f7a3e; }
.bp-status.needs { background: #fbdada; color: #a3221b; }
.bp-btn-sm {
  display: inline-block; background: #6c5ce7; color: #fff; font-weight: 700;
  font-size: 12px; padding: 5px 12px; border-radius: 999px; white-space: nowrap;
}
.bp-btn-sm:hover { background: #5a4bd6; text-decoration: none; }
@media (max-width: 480px) {
  .bp-item { flex-wrap: wrap; }
  .bp-item-right { width: 100%; justify-content: space-between; }
}

/* Essentials */
.bp-pill-list { display: flex; flex-direction: column; gap: 6px; }
.bp-pill { font-size: 14px; background: rgba(198, 180, 240, .18); border-radius: 8px; padding: 7px 12px; }
.bp-pill b { color: #7B5FE0; }
.bp-settings { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 10px; }
.bp-setting {
  background: #FFFFFF; border-radius: 10px; padding: 10px 14px;
  display: flex; justify-content: space-between; align-items: center; gap: 8px;
}
.bp-setting-name { font-size: 13px; font-weight: 700; color: #1B1B1F; }
.bp-setting-value { font-size: 11px; font-weight: 800; color: #fff; background: #7B5FE0; padding: 3px 10px; border-radius: 999px; white-space: nowrap; }
.bp-setting-value.off { background: #8a8a93; }
.bp-creator-list { display: flex; flex-wrap: wrap; gap: 8px; }
.bp-creator { font-size: 13px; font-weight: 700; color: #7B5FE0; background: rgba(198, 180, 240, .18); border-radius: 999px; padding: 7px 14px; }
.bp-creator:hover { background: rgba(198, 180, 240, .38); text-decoration: none; }
.bp-tools { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 12px; }
.bp-tool { background: #FFFFFF; border-radius: 14px; padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.bp-tool-top { display: flex; align-items: center; gap: 12px; }
.bp-tool-icon { width: 40px; height: 40px; border-radius: 10px; flex: none; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 13px; }
.bp-tool-name { font-size: 15px; font-weight: 800; color: #1B1B1F; margin: 0; }
.bp-tool-visit { align-self: flex-start; font-size: 12px; font-weight: 700; padding: 6px 13px; border-radius: 999px; background: #7B5FE0; color: #fff; }
.bp-tool-visit:hover { background: #5E45C4; text-decoration: none; }

/* About */
.bp-hero { text-align: center; padding: 40px 0 30px; }
.bp-hero h1 { font-size: 30px; margin-bottom: 8px; }
.bp-hero p { max-width: 560px; margin: 0 auto; font-size: 15px; }
.bp-facts { display: flex; flex-direction: column; gap: 8px; }
.bp-fact { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; line-height: 1.55; }
.bp-fact-dot { flex: none; width: 8px; height: 8px; border-radius: 50%; margin-top: 7px; background: linear-gradient(135deg, #C6B4F0, #7FC4EA); }
.bp-favs { display: flex; flex-direction: column; }
.bp-fav-row { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px dashed #ECE8F7; }
.bp-fav-row:last-child { border-bottom: none; }
.bp-fav-key { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .3px; color: #7B5FE0; }
.bp-fav-val { font-size: 14px; text-align: right; }
.bp-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.bp-tag { font-size: 13px; font-weight: 700; color: #1B1B1F; background: rgba(198, 180, 240, .25); border-radius: 999px; padding: 6px 14px; }
.bp-tag:nth-child(3n+2) { background: rgba(127, 217, 182, .3); }
.bp-tag:nth-child(3n+3) { background: rgba(127, 196, 234, .3); }
.bp-currently { display: flex; align-items: center; gap: 12px; }
.bp-currently-dot { flex: none; width: 12px; height: 12px; border-radius: 50%; background: #7B5FE0; box-shadow: 0 0 0 4px rgba(123, 95, 224, .18); }
.bp-tou-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 14px; }
@media (max-width: 640px) { .bp-tou-grid { grid-template-columns: 1fr; } }
.bp-tou-heading { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.bp-tou-heading.do { color: #1f8a4c; }
.bp-tou-heading.dont { color: #7B5FE0; }
.bp-tou-list { display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: #3a3a44; }
.bp-tou-note strong { color: #1B1B1F; }
.bp-legal { text-align: center; }
.bp-legal-icon {
  width: 54px; height: 54px; margin: 0 auto 14px; border-radius: 14px;
  background: linear-gradient(135deg, #4FBE7C, #7FC4EA);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 800; color: #fff; box-shadow: 0 6px 16px rgba(0, 0, 0, .12);
}
.bp-legal p { max-width: 760px; margin-left: auto; margin-right: auto; }
.bp-legal .copy { font-size: 12px; color: #8a8a96; }
