/* ===== Ovea — Women's Health ===== */
:root {
  --plum: #6d2e5b;
  --plum-deep: #4a1f3e;
  --rose: #e8909c;
  --blush: #fbeef0;
  --blush-2: #f6e3e7;
  --cream: #fffaf7;
  --sage: #7fa292;
  --sage-soft: #e6efe9;
  --ink: #2c2230;
  --muted: #6b5f6a;
  --line: #ecdfe3;
  --white: #ffffff;
  --shadow: 0 12px 40px rgba(74, 31, 62, 0.10);
  --shadow-sm: 0 4px 18px rgba(74, 31, 62, 0.08);
  --radius: 18px;
  --radius-lg: 28px;
  --max: 1140px;
  --font: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 250, 247, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--serif); }
.brand .mark {
  width: 34px; height: 34px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--rose), var(--plum));
  box-shadow: inset 0 0 0 4px rgba(255,255,255,0.55);
}
.brand .name { font-size: 24px; font-weight: 600; letter-spacing: 0.5px; color: var(--plum-deep); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--muted); transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--plum); }
.nav-cta {
  background: var(--plum); color: var(--white) !important;
  padding: 10px 20px; border-radius: 999px; font-weight: 600 !important;
  transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.nav-toggle { display: none; background: none; border: 0; font-size: 26px; color: var(--plum); cursor: pointer; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 999px; font-weight: 600; font-size: 15px;
  cursor: pointer; border: 0; transition: transform .2s, box-shadow .2s, background .2s;
}
.btn-primary { background: var(--plum); color: var(--white); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost { background: var(--white); color: var(--plum); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--rose); color: var(--plum-deep); }

/* ===== Hero ===== */
.hero { position: relative; overflow: hidden; padding: 80px 0 90px; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 85% 10%, var(--blush-2) 0%, transparent 60%),
    radial-gradient(50% 50% at 5% 90%, var(--sage-soft) 0%, transparent 55%);
  z-index: -1;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--plum); background: var(--blush); padding: 7px 15px; border-radius: 999px; margin-bottom: 22px;
}
.hero h1 {
  font-family: var(--serif); font-weight: 600; font-size: clamp(38px, 5.4vw, 62px);
  line-height: 1.05; letter-spacing: -1px; color: var(--plum-deep); margin-bottom: 22px;
}
.hero h1 em { font-style: italic; color: var(--rose); }
.hero p.lead { font-size: 19px; color: var(--muted); max-width: 520px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 38px; margin-top: 46px; }
.hero-stats .stat strong { font-family: var(--serif); font-size: 30px; color: var(--plum); display: block; }
.hero-stats .stat span { font-size: 13px; color: var(--muted); }

.hero-visual {
  position: relative; aspect-ratio: 1/1.05; border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--blush) 0%, var(--blush-2) 55%, var(--sage-soft) 100%);
  box-shadow: var(--shadow); overflow: hidden;
}
.hero-visual .orb {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,.7), rgba(232,144,156,.55));
}
.hero-visual .orb.a { width: 220px; height: 220px; top: 12%; left: 14%; }
.hero-visual .orb.b { width: 130px; height: 130px; bottom: 16%; right: 18%; background: radial-gradient(circle at 35% 30%, rgba(255,255,255,.7), rgba(127,162,146,.55)); }
.hero-card {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  background: rgba(255,255,255,0.9); backdrop-filter: blur(6px);
  padding: 22px 26px; border-radius: var(--radius); box-shadow: var(--shadow-sm);
  width: 80%; text-align: center;
}
.hero-card .ring {
  width: 92px; height: 92px; margin: 0 auto 14px; border-radius: 50%;
  background: conic-gradient(var(--plum) 0% 62%, var(--blush-2) 62% 100%);
  display: grid; place-items: center;
}
.hero-card .ring i { width: 64px; height: 64px; border-radius: 50%; background: var(--white); display: grid; place-items: center; font-style: normal; font-weight: 700; color: var(--plum); font-family: var(--serif); }
.hero-card h4 { font-size: 15px; color: var(--ink); }
.hero-card p { font-size: 13px; color: var(--muted); }

/* ===== Section bits ===== */
.section { padding: 86px 0; }
.section.tinted { background: var(--blush); }
.section.sage { background: var(--sage-soft); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 54px; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(28px, 3.6vw, 42px); color: var(--plum-deep); line-height: 1.1; letter-spacing: -0.5px; }
.section-head p { color: var(--muted); font-size: 17px; margin-top: 14px; }

/* ===== Pillars / cards ===== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; transition: transform .25s, box-shadow .25s; box-shadow: var(--shadow-sm);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card .ico {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  font-size: 26px; margin-bottom: 18px; background: var(--blush);
}
.card.sage-ico .ico { background: var(--sage-soft); }
.card h3 { font-family: var(--serif); font-weight: 600; font-size: 21px; color: var(--plum-deep); margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15px; }
.card a.more { display: inline-block; margin-top: 16px; color: var(--plum); font-weight: 600; font-size: 14px; }
.card a.more:hover { color: var(--rose); }

/* ===== Topic / article tiles ===== */
.tile {
  border-radius: var(--radius); overflow: hidden; background: var(--white);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s; display: flex; flex-direction: column;
}
.tile:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.tile .thumb { aspect-ratio: 16/10; background: linear-gradient(135deg, var(--blush), var(--blush-2)); position: relative; }
.tile .thumb.g1 { background: linear-gradient(135deg, #f7d9e0, #e8909c); }
.tile .thumb.g2 { background: linear-gradient(135deg, var(--sage-soft), var(--sage)); }
.tile .thumb.g3 { background: linear-gradient(135deg, #efe0f0, var(--plum)); }
.tile .thumb.g4 { background: linear-gradient(135deg, #fde7d6, #f0b27a); }
.tile .thumb.g5 { background: linear-gradient(135deg, #d9ecf7, #7fa9c2); }
.tile .thumb.g6 { background: linear-gradient(135deg, #f7d9e8, #c27fb0); }
.tile .thumb span { position: absolute; left: 16px; bottom: 16px; font-size: 40px; }
.tile .body { padding: 22px 22px 26px; flex: 1; display: flex; flex-direction: column; }
.tile .tag { font-size: 12px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; color: var(--rose); margin-bottom: 8px; }
.tile h3 { font-family: var(--serif); font-weight: 600; font-size: 20px; color: var(--plum-deep); margin-bottom: 8px; line-height: 1.2; }
.tile p { color: var(--muted); font-size: 14px; flex: 1; }
.tile .meta { margin-top: 16px; font-size: 13px; color: var(--muted); display: flex; justify-content: space-between; }

/* ===== Quote / banner ===== */
.banner {
  background: linear-gradient(135deg, var(--plum), var(--plum-deep));
  color: var(--white); border-radius: var(--radius-lg); padding: 60px;
  text-align: center; position: relative; overflow: hidden;
}
.banner::after { content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%; background: rgba(232,144,156,.25); top: -120px; right: -80px; }
.banner h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 16px; position: relative; }
.banner p { color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto 28px; position: relative; }
.banner .btn-primary { background: var(--white); color: var(--plum); position: relative; }

/* ===== Tracker ===== */
.tracker-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: start; }
.panel { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); }
.panel h3 { font-family: var(--serif); font-weight: 600; font-size: 22px; color: var(--plum-deep); margin-bottom: 6px; }
.panel .hint { color: var(--muted); font-size: 14px; margin-bottom: 22px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field input, .field select {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: var(--font); font-size: 15px; color: var(--ink); background: var(--cream);
  transition: border-color .2s;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--rose); }

.cycle-ring-wrap { display: grid; place-items: center; padding: 10px 0 24px; }
#cycleRing { max-width: 280px; }
.legend { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 6px; }
.legend span { font-size: 13px; color: var(--muted); display: inline-flex; align-items: center; gap: 7px; }
.legend i { width: 12px; height: 12px; border-radius: 3px; display: inline-block; }
.result-rows { margin-top: 8px; }
.result-row { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px dashed var(--line); }
.result-row:last-child { border-bottom: 0; }
.result-row .k { color: var(--muted); font-size: 14px; }
.result-row .v { font-weight: 700; color: var(--plum); font-family: var(--serif); }
.disclaimer { font-size: 12.5px; color: var(--muted); background: var(--blush); border-radius: 12px; padding: 14px 16px; margin-top: 20px; }

/* ===== Page hero (subpages) ===== */
.page-hero { padding: 64px 0 40px; text-align: center; background: linear-gradient(180deg, var(--blush) 0%, transparent 100%); }
.page-hero h1 { font-family: var(--serif); font-weight: 600; font-size: clamp(34px, 4.6vw, 52px); color: var(--plum-deep); letter-spacing: -0.5px; }
.page-hero p { color: var(--muted); font-size: 18px; max-width: 600px; margin: 16px auto 0; }

/* ===== FAQ ===== */
.faq { max-width: 760px; margin: 0 auto; }
.faq details { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 4px 22px; margin-bottom: 14px; box-shadow: var(--shadow-sm); }
.faq summary { cursor: pointer; padding: 18px 0; font-weight: 600; color: var(--plum-deep); font-size: 16px; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 24px; color: var(--rose); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 20px; color: var(--muted); font-size: 15px; }

/* ===== About values ===== */
.value-row { display: flex; gap: 18px; align-items: flex-start; padding: 22px 0; border-bottom: 1px solid var(--line); }
.value-row:last-child { border-bottom: 0; }
.value-row .num { font-family: var(--serif); font-size: 30px; color: var(--rose); font-weight: 600; min-width: 54px; }
.value-row h3 { font-family: var(--serif); font-size: 20px; color: var(--plum-deep); margin-bottom: 4px; }
.value-row p { color: var(--muted); font-size: 15px; }

/* ===== Newsletter ===== */
.news-form { display: flex; gap: 12px; max-width: 480px; margin: 26px auto 0; }
.news-form input { flex: 1; padding: 14px 18px; border-radius: 999px; border: 1.5px solid var(--line); font-size: 15px; font-family: var(--font); }
.news-form input:focus { outline: none; border-color: var(--rose); }
#newsMsg { text-align: center; margin-top: 14px; font-size: 14px; color: var(--sage); font-weight: 600; min-height: 20px; }

/* ===== Footer ===== */
.site-footer { background: var(--plum-deep); color: rgba(255,255,255,.8); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.site-footer .brand .name { color: var(--white); }
.site-footer p.about { font-size: 14px; margin-top: 16px; max-width: 280px; color: rgba(255,255,255,.7); }
.footer-col h4 { color: var(--white); font-size: 14px; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; padding: 6px 0; color: rgba(255,255,255,.72); transition: color .2s; }
.footer-col a:hover { color: var(--rose); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); margin-top: 44px; padding-top: 24px; display: flex; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,.6); flex-wrap: wrap; gap: 10px; }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-grid, .tracker-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links {
    position: absolute; top: 72px; left: 0; right: 0; flex-direction: column;
    background: var(--cream); padding: 18px 24px; gap: 18px; border-bottom: 1px solid var(--line);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
}
@media (max-width: 560px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .hero-stats { gap: 22px; }
  .banner, .panel { padding: 32px 22px; }
  .news-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Nonprofit components — Forum, Events, Support, Donate, Team
   ============================================================ */

/* Trust badges row */
.trust-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 30px; }
.trust-badge {
  display: inline-flex; align-items: center; gap: 9px; background: var(--white);
  border: 1px solid var(--line); padding: 11px 18px; border-radius: 999px;
  font-size: 14px; font-weight: 600; color: var(--plum-deep); box-shadow: var(--shadow-sm);
}
.trust-badge .e { font-size: 18px; }

/* Notice / safety banner */
.notice {
  display: flex; gap: 14px; align-items: flex-start; background: var(--sage-soft);
  border: 1px solid #cfe0d6; border-radius: 14px; padding: 16px 20px; margin: 0 auto 30px;
  max-width: 820px; font-size: 14.5px; color: #355044;
}
.notice .e { font-size: 22px; line-height: 1; }
.notice strong { color: var(--plum-deep); }
.notice.crisis { background: #fdeaec; border-color: #f3c9cf; color: #7a2330; }
.notice.crisis strong { color: #7a2330; }

/* Category chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 36px; }
.chip {
  border: 1.5px solid var(--line); background: var(--white); color: var(--muted);
  padding: 9px 17px; border-radius: 999px; font-size: 14px; font-weight: 600;
  cursor: pointer; transition: all .2s; font-family: var(--font);
}
.chip:hover { border-color: var(--rose); color: var(--plum); }
.chip.active { background: var(--plum); color: var(--white); border-color: var(--plum); }

/* Forum layout */
.forum-grid { display: grid; grid-template-columns: 1fr 340px; gap: 36px; align-items: start; }
@media (max-width: 900px){ .forum-grid { grid-template-columns: 1fr; } }

.thread {
  background: var(--white); border: 1px solid var(--line); border-radius: 16px;
  padding: 22px 24px; margin-bottom: 16px; box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.thread:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.thread-top { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
.cat-tag {
  font-size: 11.5px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase;
  padding: 4px 11px; border-radius: 999px; background: var(--blush); color: var(--plum);
}
.cat-tag.mental { background: #efe0f0; color: #7a3b86; }
.cat-tag.menstrual { background: #fbe0e6; color: #b8456a; }
.cat-tag.pregnancy { background: #fdeada; color: #b9783a; }
.cat-tag.relationships { background: #f7dde7; color: #b5468f; }
.cat-tag.hygiene { background: #e2f0e9; color: #43785f; }
.cat-tag.general { background: #e2ecf5; color: #3f6c93; }
.thread .anon { font-size: 13px; color: var(--muted); display: inline-flex; align-items: center; gap: 6px; }
.thread .anon .av { width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(135deg,var(--rose),var(--plum)); display: inline-block; }
.thread h3 { font-family: var(--serif); font-weight: 600; font-size: 18px; color: var(--plum-deep); margin-bottom: 7px; }
.thread p.excerpt { color: var(--muted); font-size: 14.5px; }
.thread-foot { display: flex; gap: 18px; margin-top: 14px; font-size: 13px; color: var(--muted); }
.thread-foot .badge-approved { color: var(--sage); font-weight: 600; display: inline-flex; gap: 5px; align-items: center; }
.thread.pending { border-style: dashed; border-color: var(--rose); background: #fffaf9; }
.thread .pending-flag { color: var(--rose); font-weight: 700; font-size: 12px; letter-spacing: .4px; }

/* Sidebar */
.aside-card { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 24px; box-shadow: var(--shadow-sm); margin-bottom: 20px; }
.aside-card h4 { font-family: var(--serif); font-size: 18px; color: var(--plum-deep); margin-bottom: 12px; }
.aside-card ul { list-style: none; }
.aside-card li { padding: 8px 0; font-size: 14px; color: var(--muted); border-bottom: 1px dashed var(--line); display: flex; gap: 9px; }
.aside-card li:last-child { border-bottom: 0; }
.aside-card li .e { color: var(--sage); }

/* Forms (post / feedback) */
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); max-width: 720px; margin: 0 auto; }
.form-card h3 { font-family: var(--serif); font-size: 22px; color: var(--plum-deep); margin-bottom: 6px; }
.form-card .hint { color: var(--muted); font-size: 14px; margin-bottom: 22px; }
.field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: var(--font); font-size: 15px; color: var(--ink); background: var(--cream);
  resize: vertical; min-height: 120px; transition: border-color .2s;
}
.field textarea:focus { outline: none; border-color: var(--rose); }
.checkbox-row { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--muted); margin-bottom: 18px; }
.checkbox-row input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--plum); }
.form-msg { margin-top: 16px; font-size: 14px; font-weight: 600; min-height: 20px; }
.form-msg.ok { color: var(--sage); }
.form-msg.err { color: #c0394b; }

/* Events */
.event { display: grid; grid-template-columns: 92px 1fr auto; gap: 22px; align-items: center; background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 22px 24px; margin-bottom: 16px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.event:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.event .date { text-align: center; background: var(--blush); border-radius: 12px; padding: 12px 6px; }
.event .date .d { font-family: var(--serif); font-size: 26px; font-weight: 600; color: var(--plum); line-height: 1; }
.event .date .m { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); }
.event .info h3 { font-family: var(--serif); font-size: 19px; color: var(--plum-deep); margin-bottom: 5px; }
.event .info p { font-size: 14px; color: var(--muted); }
.event .info .host { font-size: 13px; color: var(--plum); font-weight: 600; margin-top: 6px; }
@media (max-width: 700px){ .event { grid-template-columns: 72px 1fr; } .event .btn { grid-column: 1 / -1; justify-self: start; } }

/* Support resources */
.support-card { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 26px; box-shadow: var(--shadow-sm); border-left: 4px solid var(--rose); }
.support-card.urgent { border-left-color: #d6485b; }
.support-card h3 { font-family: var(--serif); font-size: 19px; color: var(--plum-deep); margin-bottom: 6px; }
.support-card p { color: var(--muted); font-size: 14.5px; margin-bottom: 12px; }
.support-card .line { font-size: 16px; font-weight: 700; color: var(--plum); }
.support-card .line a { color: var(--plum); }
.support-card .avail { font-size: 12.5px; color: var(--sage); font-weight: 600; margin-top: 4px; }

/* Donation tiers */
.tiers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 760px){ .tiers { grid-template-columns: 1fr 1fr; } }
.tier { background: var(--white); border: 2px solid var(--line); border-radius: 16px; padding: 24px 18px; text-align: center; cursor: pointer; transition: all .2s; }
.tier:hover, .tier.active { border-color: var(--plum); transform: translateY(-4px); box-shadow: var(--shadow); }
.tier .amt { font-family: var(--serif); font-size: 30px; font-weight: 600; color: var(--plum); }
.tier .impact { font-size: 13px; color: var(--muted); margin-top: 6px; }
.donate-box { max-width: 620px; margin: 0 auto; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 860px){ .team-grid { grid-template-columns: 1fr 1fr; } }
.member { text-align: center; }
.member .photo { width: 110px; height: 110px; border-radius: 50%; margin: 0 auto 14px; background: linear-gradient(135deg, var(--blush-2), var(--sage-soft)); display: grid; place-items: center; font-family: var(--serif); font-weight: 600; font-size: 30px; color: var(--plum); letter-spacing: 1px; box-shadow: var(--shadow-sm); }
.member h3 { font-family: var(--serif); font-size: 18px; color: var(--plum-deep); }
.member .role { font-size: 13px; color: var(--rose); font-weight: 600; margin-bottom: 6px; }
.member p { font-size: 13.5px; color: var(--muted); }

/* Generic prose */
.prose { max-width: 720px; margin: 0 auto; }
.prose p { color: var(--muted); font-size: 16.5px; margin-bottom: 18px; }
.prose h2 { font-family: var(--serif); color: var(--plum-deep); font-size: 26px; margin: 32px 0 12px; }

/* ============================================================
   Simplification layer — calmer, more readable, less "designed"
   ============================================================ */

/* Calm, simple hero (replaces gradient-mesh hero on home) */
.hero-simple {
  background: var(--blush);
  border-bottom: 1px solid var(--line);
  padding: 64px 0 56px;
  text-align: center;
}
.hero-simple h1 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(32px, 4.6vw, 48px); line-height: 1.12;
  color: var(--plum-deep); max-width: 760px; margin: 0 auto 18px;
}
.hero-simple p {
  font-size: 19px; color: var(--muted); max-width: 600px; margin: 0 auto 28px;
}
.hero-simple .hero-actions { justify-content: center; }

/* Big search-style prompt */
.find-bar {
  display: flex; gap: 10px; max-width: 560px; margin: 4px auto 0;
  background: var(--white); border: 1.5px solid var(--line); border-radius: 999px;
  padding: 7px 7px 7px 22px; box-shadow: var(--shadow-sm); align-items: center;
}
.find-bar input { flex: 1; border: 0; background: none; font-size: 16px; font-family: var(--font); color: var(--ink); }
.find-bar input:focus { outline: none; }

/* "What do you need" — plain, large tappable links */
.needs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 760px){ .needs { grid-template-columns: 1fr; } }
.need {
  display: flex; align-items: center; gap: 16px; background: var(--white);
  border: 1px solid var(--line); border-radius: 14px; padding: 20px 22px;
  transition: border-color .2s, transform .2s;
}
.need:hover { border-color: var(--rose); transform: translateY(-2px); }
.need .e { font-size: 30px; line-height: 1; }
.need b { display: block; font-size: 17px; color: var(--plum-deep); font-family: var(--serif); font-weight: 600; }
.need span { font-size: 14px; color: var(--muted); }

/* Plain-language answers (accordion, bigger & friendlier) */
.answers { max-width: 760px; margin: 0 auto; }
.answers .a-item {
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  margin-bottom: 12px; overflow: hidden;
}
.answers summary {
  cursor: pointer; padding: 20px 22px; font-size: 18px; font-weight: 600;
  color: var(--plum-deep); list-style: none; display: flex; justify-content: space-between;
  align-items: center; gap: 14px;
}
.answers summary::-webkit-details-marker { display: none; }
.answers summary::after { content: "+"; font-size: 26px; color: var(--rose); font-weight: 400; }
.answers details[open] summary::after { content: "–"; }
.answers .a-body { padding: 0 22px 22px; }
.answers .a-body p { color: var(--ink); font-size: 16px; line-height: 1.7; margin-bottom: 12px; }
.answers .a-body a.read { color: var(--plum); font-weight: 600; font-size: 15px; }

/* Simple reassurance strip */
.simple-promise { display: flex; flex-wrap: wrap; gap: 28px; justify-content: center; padding: 6px 0; }
.simple-promise .p { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--ink); font-weight: 500; }
.simple-promise .e { font-size: 20px; }

/* tighten section spacing for a less busy feel */
.section.compact { padding: 56px 0; }

/* Plain health-info list */
.res-group { font-family: var(--serif); font-weight: 600; font-size: 18px; color: var(--plum-deep); margin: 26px 0 10px; }
.res-group:first-child { margin-top: 0; }
.res-link {
  display: block; background: var(--white); border: 1px solid var(--line);
  border-radius: 12px; padding: 16px 18px; margin-bottom: 10px; transition: border-color .2s, transform .15s;
}
.res-link:hover { border-color: var(--rose); transform: translateX(3px); }
.res-link b { display: block; font-size: 16.5px; color: var(--ink); margin-bottom: 2px; }
.res-link span { font-size: 14.5px; color: var(--muted); }

/* ============================================================
   Community feed — Reddit-style layout for Ovea
   ============================================================ */
.app-shell {
  display: grid; grid-template-columns: 240px minmax(0,1fr) 300px;
  gap: 24px; width: 100%; max-width: none; margin: 0; padding: 20px 24px 40px;
  align-items: stretch;
  min-height: calc(100vh - 73px);
}
.app-shell .feed { width: 100%; }
@media (max-width: 1040px){ .app-shell { grid-template-columns: 220px minmax(0,1fr); } .right-rail { display: none; } }
@media (max-width: 760px){ .app-shell { grid-template-columns: 1fr; padding: 16px; } .left-rail { display: none; } }

.rail-sticky { position: sticky; top: 88px; }

/* Left rail — communities */
.rail-card { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 16px; margin-bottom: 16px; box-shadow: var(--shadow-sm); }
.rail-card h4 { font-size: 12px; letter-spacing: .8px; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; padding: 0 6px; }
.c-item { display: flex; align-items: center; gap: 10px; width: 100%; text-align: left; background: none; border: 0; padding: 9px 10px; border-radius: 9px; cursor: pointer; font-family: var(--font); font-size: 14.5px; color: var(--ink); transition: background .15s; }
.c-item:hover { background: var(--blush); }
.c-item.active { background: var(--blush); color: var(--plum); font-weight: 600; }
.c-dot { width: 22px; height: 22px; border-radius: 50%; flex: 0 0 auto; background: linear-gradient(135deg, var(--rose), var(--plum)); }
.c-item .c-meta { display: block; }
.c-item .c-name { display: block; line-height: 1.2; }
.c-item .c-count { font-size: 11.5px; color: var(--muted); font-weight: 400; }

/* Feed header / sort */
.feed-head { display: flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 8px; margin-bottom: 16px; box-shadow: var(--shadow-sm); flex-wrap: wrap; }
.feed-title { font-family: var(--serif); font-size: 18px; color: var(--plum-deep); padding: 0 10px; margin-right: auto; }
.sort-tab { background: none; border: 0; padding: 8px 14px; border-radius: 999px; cursor: pointer; font-family: var(--font); font-size: 14px; font-weight: 600; color: var(--muted); }
.sort-tab:hover { background: var(--blush); color: var(--plum); }
.sort-tab.active { background: var(--plum); color: var(--white); }

/* Composer prompt */
.composer { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 12px 14px; margin-bottom: 16px; box-shadow: var(--shadow-sm); }
.composer .prompt { display: flex; align-items: center; gap: 12px; }
.composer .avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--rose), var(--plum)); flex: 0 0 auto; }
.composer .prompt input { flex: 1; border: 1.5px solid var(--line); background: var(--cream); border-radius: 999px; padding: 11px 16px; font-family: var(--font); font-size: 14.5px; cursor: pointer; }
.composer-form { margin-top: 12px; display: none; }
.composer-form.open { display: block; }
.composer-form .row { display: flex; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
.composer-form select, .composer-form input.title, .composer-form textarea {
  width: 100%; border: 1.5px solid var(--line); border-radius: 10px; padding: 11px 13px;
  font-family: var(--font); font-size: 14.5px; background: var(--cream); color: var(--ink);
}
.composer-form select { max-width: 240px; }
.composer-form textarea { min-height: 90px; resize: vertical; }
.composer-form :focus { outline: none; border-color: var(--rose); }
.composer-actions { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.composer-actions .note { font-size: 12.5px; color: var(--muted); }

/* Post card */
.post { display: grid; grid-template-columns: 44px 1fr; background: var(--white); border: 1px solid var(--line); border-radius: 14px; margin-bottom: 14px; box-shadow: var(--shadow-sm); overflow: hidden; transition: border-color .15s; }
.post:hover { border-color: #e3d2d8; }
.post.mine { border-left: 3px solid var(--rose); }
.vote-col { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 12px 0; background: #fdf7f8; }
.vote-btn { background: none; border: 0; cursor: pointer; font-size: 17px; line-height: 1; color: var(--muted); padding: 3px; border-radius: 6px; transition: color .15s, background .15s; }
.vote-btn:hover { background: var(--blush); }
.vote-btn.up.on { color: var(--rose); }
.vote-btn.down.on { color: #5b7fa8; }
.score { font-size: 13px; font-weight: 700; color: var(--ink); }
.post-main { padding: 12px 16px 12px 4px; min-width: 0; }
.post-meta { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--muted); margin-bottom: 6px; flex-wrap: wrap; }
.post-meta .pill { font-weight: 700; color: var(--plum); cursor: pointer; }
.post-meta .pill:hover { text-decoration: underline; }
.post-meta .pending { color: var(--rose); font-weight: 700; }
.post-title { font-family: var(--serif); font-weight: 600; font-size: 18px; color: var(--plum-deep); line-height: 1.25; margin-bottom: 6px; cursor: pointer; }
.post-title:hover { color: var(--plum); }
.post-body { font-size: 14.5px; color: var(--ink); line-height: 1.6; white-space: pre-wrap; word-wrap: break-word; }
.post-actions { display: flex; gap: 6px; margin-top: 12px; }
.p-action { display: inline-flex; align-items: center; gap: 6px; background: none; border: 0; cursor: pointer; font-family: var(--font); font-size: 13px; font-weight: 600; color: var(--muted); padding: 6px 10px; border-radius: 8px; }
.p-action:hover { background: var(--blush); color: var(--plum); }

/* Comments */
.comments { margin-top: 12px; border-top: 1px solid var(--line); padding-top: 12px; display: none; }
.comments.open { display: block; }
.c-compose { display: flex; gap: 8px; margin-bottom: 14px; }
.c-compose textarea { flex: 1; border: 1.5px solid var(--line); border-radius: 10px; padding: 9px 12px; font-family: var(--font); font-size: 14px; background: var(--cream); min-height: 38px; resize: vertical; }
.c-compose textarea:focus { outline: none; border-color: var(--rose); }
.comment { padding: 9px 0 9px 12px; border-left: 2px solid var(--line); margin-bottom: 8px; }
.comment .c-by { font-size: 12.5px; color: var(--muted); margin-bottom: 3px; }
.comment .c-by b { color: var(--plum); font-weight: 600; }
.comment .c-text { font-size: 14px; color: var(--ink); line-height: 1.55; white-space: pre-wrap; }
.comment.mine { border-left-color: var(--rose); }

/* Right rail */
.right-rail .rail-card h3 { font-family: var(--serif); font-size: 17px; color: var(--plum-deep); margin-bottom: 8px; }
.right-rail .rail-card p { font-size: 13.5px; color: var(--muted); line-height: 1.55; margin-bottom: 8px; }
.rule { display: flex; gap: 10px; padding: 8px 0; border-bottom: 1px dashed var(--line); font-size: 13.5px; color: var(--ink); }
.rule:last-child { border-bottom: 0; }
.rule b { color: var(--plum-deep); }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 7px; }
.tag-cloud .t { font-size: 12.5px; background: var(--blush); color: var(--plum); padding: 5px 11px; border-radius: 999px; cursor: pointer; }
.tag-cloud .t:hover { background: var(--blush-2); }

/* Header search + create */
.nav-search { flex: 1; max-width: 380px; margin: 0 22px; position: relative; }
.nav-search input { width: 100%; border: 1.5px solid var(--line); background: var(--white); border-radius: 999px; padding: 9px 16px; font-family: var(--font); font-size: 14px; }
.nav-search input:focus { outline: none; border-color: var(--rose); }
@media (max-width: 760px){ .nav-search { display: none; } }
.feed-empty { background: var(--white); border: 1px dashed var(--line); border-radius: 14px; padding: 40px 20px; text-align: center; color: var(--muted); }

/* small helper */
.safe-banner { background: var(--sage-soft); border: 1px solid #cfe0d6; border-radius: 12px; padding: 12px 16px; font-size: 13.5px; color: #355044; margin-bottom: 16px; }
.safe-banner b { color: var(--plum-deep); }

/* ============================================================
   Auth, account chip, modal, moderation, flags
   ============================================================ */
/* Account area in header */
.account-area { display: flex; align-items: center; gap: 12px; }
.account-chip { display: inline-flex; align-items: center; gap: 8px; background: var(--white); border: 1.5px solid var(--line); border-radius: 999px; padding: 5px 6px 5px 12px; font-size: 14px; font-weight: 600; color: var(--plum-deep); cursor: pointer; }
.account-chip .av { width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg, var(--rose), var(--plum)); color: #fff; display: grid; place-items: center; font-size: 12px; }
.account-menu { position: absolute; right: 0; top: 110%; background: var(--white); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); padding: 8px; min-width: 190px; display: none; z-index: 60; }
.account-menu.open { display: block; }
.account-menu a, .account-menu button { display: block; width: 100%; text-align: left; background: none; border: 0; padding: 10px 12px; border-radius: 8px; font-family: var(--font); font-size: 14px; color: var(--ink); cursor: pointer; }
.account-menu a:hover, .account-menu button:hover { background: var(--blush); color: var(--plum); }
.account-menu .who { font-size: 12px; color: var(--muted); padding: 6px 12px 10px; border-bottom: 1px solid var(--line); margin-bottom: 6px; word-break: break-all; }
.acct-wrap { position: relative; }

/* Sign-in modal */
.modal-overlay { position: fixed; inset: 0; background: rgba(44,34,48,.5); backdrop-filter: blur(3px); display: none; align-items: center; justify-content: center; z-index: 100; padding: 20px; }
.modal-overlay.open { display: flex; }
.auth-box { background: var(--white); border-radius: 22px; padding: 36px 32px; max-width: 400px; width: 100%; box-shadow: var(--shadow); text-align: center; position: relative; }
.auth-box .close { position: absolute; top: 16px; right: 18px; background: none; border: 0; font-size: 24px; color: var(--muted); cursor: pointer; line-height: 1; }
.auth-box .mark-lg { width: 48px; height: 48px; border-radius: 50%; margin: 0 auto 14px; background: radial-gradient(circle at 30% 30%, var(--rose), var(--plum)); }
.auth-box h2 { font-family: var(--serif); font-size: 24px; color: var(--plum-deep); margin-bottom: 6px; }
.auth-box p.sub { color: var(--muted); font-size: 14.5px; margin-bottom: 22px; }
.auth-btn { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 13px; border-radius: 12px; border: 1.5px solid var(--line); background: var(--white); font-family: var(--font); font-size: 15px; font-weight: 600; color: var(--ink); cursor: pointer; margin-bottom: 12px; transition: border-color .15s, background .15s; }
.auth-btn:hover { border-color: var(--rose); background: var(--cream); }
.auth-btn .g { width: 18px; height: 18px; }
.auth-divider { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 12.5px; margin: 14px 0; }
.auth-divider::before, .auth-divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.auth-email { display: flex; flex-direction: column; gap: 10px; }
.auth-email input { padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 12px; font-family: var(--font); font-size: 15px; background: var(--cream); }
.auth-email input:focus { outline: none; border-color: var(--rose); }
.auth-msg { font-size: 13.5px; margin-top: 10px; min-height: 18px; }
.auth-msg.ok { color: var(--sage); font-weight: 600; }
.auth-msg.err { color: #c0394b; font-weight: 600; }
.auth-fine { font-size: 11.5px; color: var(--muted); margin-top: 16px; line-height: 1.5; }

/* config / state banners */
.config-banner { background: #fff4e0; border: 1px solid #f0d9a8; color: #7a5a1e; border-radius: 12px; padding: 14px 18px; margin-bottom: 16px; font-size: 13.5px; }
.config-banner b { color: #5c4310; }
.config-banner code { background: rgba(0,0,0,.06); padding: 1px 6px; border-radius: 5px; font-size: 12.5px; }

/* flagged markers (visible to author/admin only) */
.post .flag-note, .comment .flag-note { font-size: 12px; font-weight: 700; color: #c0394b; background: #fdecee; border-radius: 6px; padding: 2px 8px; display: inline-block; }

/* Moderation page */
.mod-wrap { max-width: 900px; margin: 0 auto; padding: 24px; }
.mod-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
.mod-tabs { display: flex; gap: 8px; }
.mod-item { background: var(--white); border: 1px solid var(--line); border-left: 4px solid #d6485b; border-radius: 12px; padding: 18px 20px; margin-bottom: 14px; box-shadow: var(--shadow-sm); }
.mod-item .m-meta { font-size: 12.5px; color: var(--muted); margin-bottom: 6px; display: flex; gap: 10px; flex-wrap: wrap; }
.mod-item .m-reason { color: #c0394b; font-weight: 700; }
.mod-item h3 { font-family: var(--serif); font-size: 18px; color: var(--plum-deep); margin-bottom: 4px; }
.mod-item .m-body { font-size: 14.5px; color: var(--ink); white-space: pre-wrap; margin-bottom: 14px; }
.mod-item .m-actions { display: flex; gap: 10px; }
.btn-approve { background: var(--sage); color: #fff; }
.btn-delete { background: #d6485b; color: #fff; }
.mod-gate { max-width: 460px; margin: 80px auto; text-align: center; }
.mod-empty { text-align: center; color: var(--muted); padding: 40px; background: var(--white); border: 1px dashed var(--line); border-radius: 14px; }

/* ============================================================
   Health Info — expandable topics, infographics, sources
   ============================================================ */
.res-item { background: var(--white); border: 1px solid var(--line); border-radius: 12px; margin-bottom: 10px; overflow: hidden; }
.res-item > summary { list-style: none; cursor: pointer; padding: 16px 18px; display: flex; flex-direction: column; gap: 2px; }
.res-item > summary::-webkit-details-marker { display: none; }
.res-item > summary b { font-size: 16.5px; color: var(--ink); }
.res-item > summary span { font-size: 14px; color: var(--muted); }
.res-item[open] > summary { border-bottom: 1px solid var(--line); background: var(--blush); }
.res-item[open] > summary b { color: var(--plum-deep); }
.res-content { padding: 18px; }
.res-content p { font-size: 15px; color: var(--ink); line-height: 1.65; margin-bottom: 12px; }
.res-content p:last-child { margin-bottom: 0; }

/* Trusted sources */
.sources { margin-top: 16px; padding-top: 14px; border-top: 1px dashed var(--line); }
.sources h5 { font-size: 12px; letter-spacing: .6px; text-transform: uppercase; color: var(--sage); margin-bottom: 8px; }
.sources a { display: inline-block; font-size: 13.5px; color: var(--plum); font-weight: 600; margin: 0 14px 6px 0; }
.sources a:hover { color: var(--rose); }
.sources a::after { content: " ›"; }

/* Infographic: simple card */
.ig { background: var(--cream); border: 1px solid var(--line); border-radius: 12px; padding: 16px; margin: 4px 0 14px; }
.ig-title { font-size: 12.5px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--plum); margin-bottom: 12px; }

/* Infographic: cycle bar */
.cyclebar { display: flex; height: 30px; border-radius: 8px; overflow: hidden; font-size: 11px; font-weight: 700; color: #fff; }
.cyclebar div { display: flex; align-items: center; justify-content: center; text-align: center; padding: 0 4px; }
.cb-period { background: var(--rose); }
.cb-follicular { background: #c9a4c4; }
.cb-ovulation { background: var(--sage); }
.cb-luteal { background: #b88aa8; }
.cyclebar-key { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 10px; font-size: 12.5px; color: var(--muted); }
.cyclebar-key i { display: inline-block; width: 11px; height: 11px; border-radius: 3px; margin-right: 5px; vertical-align: middle; }

/* Infographic: comparison table */
.ig-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.ig-table th, .ig-table td { text-align: left; padding: 9px 10px; border-bottom: 1px solid var(--line); }
.ig-table th { color: var(--plum-deep); font-size: 12.5px; }
.ig-table td:first-child { font-weight: 600; color: var(--ink); }
.ig-table tr:last-child td { border-bottom: 0; }

/* Infographic: checklist */
.ig-check { list-style: none; }
.ig-check li { display: flex; gap: 10px; padding: 6px 0; font-size: 14px; color: var(--ink); }
.ig-check li::before { content: "✓"; color: var(--sage); font-weight: 700; flex: 0 0 auto; }
.ig-check.warn li::before { content: "!"; color: #c0394b; background: #fdecee; width: 18px; height: 18px; border-radius: 50%; display: grid; place-items: center; font-size: 12px; }

/* Crisis mini-card inside content */
.ig-crisis { background: #fdeaec; border: 1px solid #f3c9cf; border-radius: 12px; padding: 14px 16px; margin: 4px 0 14px; }
.ig-crisis b { color: #7a2330; }
.ig-crisis .line { font-size: 15px; font-weight: 700; color: #7a2330; margin-top: 4px; }

/* Infographic: numbered steps */
.ig-steps { counter-reset: s; list-style: none; }
.ig-steps li { counter-increment: s; display: flex; gap: 12px; padding: 7px 0; font-size: 14px; color: var(--ink); align-items: flex-start; }
.ig-steps li::before { content: counter(s); flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%; background: var(--plum); color: #fff; font-size: 12px; font-weight: 700; display: grid; place-items: center; }

/* Cycle phase breakdown */
.phase { border-left: 4px solid var(--line); padding: 2px 0 2px 14px; margin-bottom: 14px; }
.phase.p1 { border-left-color: var(--rose); }
.phase.p2 { border-left-color: #c9a4c4; }
.phase.p3 { border-left-color: var(--sage); }
.phase.p4 { border-left-color: #b88aa8; }
.phase b { display: block; color: var(--plum-deep); font-size: 15.5px; }
.phase .when { font-size: 12px; color: var(--sage); font-weight: 700; text-transform: uppercase; letter-spacing: .4px; }
.phase p { margin: 5px 0 0 !important; font-size: 14.5px; color: var(--ink); line-height: 1.6; }

/* Welcome / rules popup */
.welcome-box { max-width: 440px; text-align: left; }
.welcome-box .mark-lg, .welcome-box h2, .welcome-box .sub { text-align: center; }
.welcome-box h2, .welcome-box .sub { margin-left: auto; margin-right: auto; }
.welcome-rules { background: var(--blush); border-radius: 14px; padding: 16px 18px; margin: 18px 0 20px; }
.welcome-rules .rule { padding: 8px 0; border-bottom: 1px dashed var(--line); font-size: 14px; color: var(--ink); }
.welcome-rules .rule:last-child { border-bottom: 0; }
.welcome-rules .rule b { color: var(--plum-deep); }

/* Small floating "community rules" button */
.rules-fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 40;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--line);
  color: var(--plum); font-family: var(--serif); font-size: 20px; font-weight: 700;
  cursor: pointer; box-shadow: var(--shadow-sm); display: grid; place-items: center;
  transition: border-color .2s, transform .2s;
}
.rules-fab:hover { border-color: var(--rose); transform: translateY(-2px); }
