/* MP Site Code — snippet #7503836. Edited in wp-admin; do not edit this file. */
/* =====================================================================
   MENSTRUAL PORTAL — Homepage styles (mp-home)
   ===================================================================== */

.mp-home{
  /* ---- design tokens (scoped to this page) ---- */
  --berry:#8E2C4E; --berry-hover:#7A2542; --berry-deep:#5C1B33;
  --blush:#F8D5DF; --baby:#FBE1E8; --baby-soft:#FDF0F4;
  --lav:#E6DFF4; --lav-soft:#F4F0FB; --lav-mid:#C9BBE8;
  --sage-soft:#EDF5F0; --sage-line:#CDE0D6; --sage-ink:#3F5A4E;
  --peach:#FBE6DC;
  --ink:#231C20; --black:#17070D; --muted:#77686F;
  --line:#F0E2E7; --line-soft:#F6ECF0;
  --wash-pink:#FBF2F5; --wash-lav:#F7F4FC; --wash-blush:#FDF6F8;
  --a1:#F8D5DF; --a1i:#B03A5E;
  --a2:#E6DFF4; --a2i:#6A54A6;
  --a4:#FBE0CC; --a4i:#C1723C;
  --a5:#ECD1E2; --a5i:#9B4E86;
  --sh-sm:0 2px 10px rgba(94,29,53,.06);
  --sh-md:0 16px 44px rgba(94,29,53,.10);
  --sh-lg:0 34px 80px rgba(94,29,53,.16);
  --r-lg:26px; --maxw:1180px;

  line-height:1.65;
  color:var(--ink);
  overflow-x:clip;
  margin-block-start:0 !important; /* theme :where(.is-layout-flow) fix */
}
.mp-home > *{ margin-block-start:0 !important; }
.mp-home, .mp-home *, .mp-home *::before, .mp-home *::after{ box-sizing:border-box; }

.mp-home h1,.mp-home h2,.mp-home h3,.mp-home h4{ color:var(--black); line-height:1.1; letter-spacing:-.025em; font-weight:800; margin:0; }
.mp-home p{ margin:0; }
.mp-home a{ color:var(--berry); text-decoration:none; }
.mp-home img{ max-width:100%; }
.mp-home .wrap{ max-width:var(--maxw); margin:0 auto; padding:0 24px; }
.mp-home :focus-visible{ outline:3px solid var(--berry); outline-offset:3px; border-radius:6px; }

/* ---- eyebrow ---- */
.mp-home .eyebrow{ font-size:.72rem; font-weight:700; letter-spacing:.16em; text-transform:uppercase; color:var(--berry); display:inline-flex; align-items:center; gap:8px; margin-bottom:10px; }
.mp-home .eyebrow::before{ content:""; width:20px; height:2px; background:var(--berry); border-radius:2px; }

/* ---- buttons ---- */
.mp-home .btn{ display:inline-flex; align-items:center; justify-content:center; gap:9px; font-weight:700; font-size:.95rem; padding:15px 28px; border-radius:100px; border:1.5px solid transparent; cursor:pointer; transition:transform .18s ease,box-shadow .18s ease,background .18s ease,border-color .18s ease; }
.mp-home .btn-primary{ background:var(--berry); color:#fff; box-shadow:0 12px 26px rgba(142,44,78,.28); }
.mp-home .btn-primary:hover{ background:var(--berry-hover); transform:translateY(-2px); box-shadow:0 18px 34px rgba(142,44,78,.34); }
.mp-home .btn-light{ background:#fff; color:var(--berry-deep); }
.mp-home .btn-light:hover{ transform:translateY(-2px); box-shadow:var(--sh-md); }
.mp-home .btn-browse{ background:transparent; color:#fff; border-color:rgba(255,255,255,.5); }
.mp-home .btn-browse:hover{ background:rgba(255,255,255,.14); transform:translateY(-2px); }

.mp-home .obgyn{ display:inline-flex; align-items:center; gap:6px; font-size:.66rem; font-weight:800; letter-spacing:.02em; color:var(--sage-ink); background:var(--sage-soft); border:1px solid var(--sage-line); padding:5px 11px; border-radius:100px; }
.mp-home .obgyn svg{ width:11px; height:11px; }

/* =====================================================================
   HERO
===================================================================== */
.mp-home .hero{ position:relative; padding:76px 0 96px; overflow:hidden; }
.mp-home .hero::before{ content:""; position:absolute; width:640px; height:640px; border-radius:50%; background:radial-gradient(circle at 32% 32%,var(--baby) 0%,var(--baby-soft) 52%,transparent 72%); top:-200px; right:-180px; opacity:.9; z-index:0; pointer-events:none; }
.mp-home .hero::after{ content:""; position:absolute; width:460px; height:460px; border-radius:50%; background:radial-gradient(circle,var(--lav) 0%,transparent 68%); bottom:-190px; left:-160px; opacity:.65; z-index:0; pointer-events:none; }
.mp-home .hero-grid{ position:relative; z-index:2; display:grid; grid-template-columns:1.06fr .94fr; gap:56px; align-items:center; }
.mp-home .hero-grid > *{ min-width:0; }
.mp-home .hero h1{ font-size:clamp(2.5rem,5.2vw,3.85rem); margin:8px 0 18px; }
.mp-home .hero h1 .em{ color:var(--berry); }
.mp-home .hero p.lead{ color:var(--black); max-width:540px; margin-bottom:30px; }

/* ask line — single clickable pill */
.mp-home .ask-line{ position:relative; display:flex; align-items:center; gap:14px; background:#fff; border:1.5px solid var(--line); border-radius:100px; padding:12px 14px 12px 26px; box-shadow:0 16px 36px rgba(142,44,78,.22); width:100%; max-width:540px; color:var(--berry); transition:transform .18s ease,box-shadow .18s ease; }
.mp-home .ask-line::before{ content:""; position:absolute; inset:0; border-radius:100px; animation:mp-pulse 2.4s ease-out infinite; pointer-events:none; }
@keyframes mp-pulse{ 0%{ box-shadow:0 0 0 0 rgba(142,44,78,.35); } 70%{ box-shadow:0 0 0 16px rgba(142,44,78,0); } 100%{ box-shadow:0 0 0 0 rgba(142,44,78,0); } }
.mp-home .ask-line:hover{ transform:translateY(-2px); box-shadow:0 22px 44px rgba(142,44,78,.3); }
.mp-home .ask-line .t{ flex:1; min-width:0; line-height:1.3; }
.mp-home .ask-line .t b{ display:block; font-size:1.06rem; color:var(--berry); letter-spacing:-.01em; }
.mp-home .ask-line .go{ width:42px; height:42px; flex:0 0 auto; border-radius:50%; background:var(--berry); color:#fff; display:flex; align-items:center; justify-content:center; box-shadow:0 8px 18px rgba(142,44,78,.28); transition:transform .18s ease,background .18s ease; }
.mp-home .ask-line:hover .go{ background:var(--berry-hover); }
.mp-home .ask-line:hover .go{ transform:translateX(3px); }

.mp-home .hero-trust{ display:flex; gap:22px; flex-wrap:wrap; align-items:center; color:var(--muted); font-size:.85rem; font-weight:600; margin-top:24px; }
.mp-home .hero-trust span{ display:inline-flex; align-items:center; gap:8px; }
.mp-home .check{ width:18px; height:18px; border-radius:50%; background:var(--berry); display:inline-flex; align-items:center; justify-content:center; flex:0 0 auto; }
.mp-home .check svg{ width:10px; height:10px; }

/* email mockup */
.mp-home .phone-stage{ position:relative; display:flex; justify-content:center; }
.mp-home .email-window{ position:relative; width:min(380px,100%); background:#fff; border-radius:24px; box-shadow:var(--sh-lg); border:1px solid var(--line); overflow:hidden; z-index:2; }
.mp-home .email-topbar{ padding:17px 22px; display:flex; align-items:center; gap:10px; border-bottom:1px solid var(--line-soft); background:linear-gradient(120deg,var(--baby-soft),var(--wash-lav)); }
.mp-home .email-topbar .dots{ display:flex; gap:6px; }
.mp-home .email-topbar .dot{ width:9px; height:9px; border-radius:50%; }
.mp-home .email-topbar .dot.d1{ background:#F5A3B0; }
.mp-home .email-topbar .dot.d2{ background:#F6D08A; }
.mp-home .email-topbar .dot.d3{ background:#9BCBAE; }
.mp-home .email-topbar b{ font-size:.88rem; color:var(--black); margin-left:4px; }
.mp-home .email-topbar .priv{ margin-left:auto; font-size:.62rem; font-weight:700; color:var(--muted); display:inline-flex; align-items:center; gap:4px; }
.mp-home .email-body{ padding:18px 22px 22px; display:flex; flex-direction:column; gap:16px; }
.mp-home .email-msg{ border-bottom:1px solid var(--line-soft); padding-bottom:16px; }
.mp-home .email-msg:last-child{ border-bottom:none; padding-bottom:0; }
.mp-home .email-msg .row{ display:flex; align-items:flex-start; gap:10px; }
.mp-home .email-msg .av{ width:32px; height:32px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:.64rem; font-weight:800; color:var(--black); flex:0 0 auto; }
.mp-home .email-msg .av-you{ background:var(--baby); }
.mp-home .email-msg .av-dr{ background:var(--lav); overflow:hidden; }
.mp-home .email-msg .av-dr img{ width:100%; height:100%; object-fit:cover; display:block; border-radius:50%; }
.mp-home .email-msg .headline{ flex:1; min-width:0; }
.mp-home .email-msg .top-line{ display:flex; align-items:baseline; gap:6px; flex-wrap:wrap; }
.mp-home .email-msg .who{ font-size:.82rem; font-weight:700; color:var(--black); }
.mp-home .email-msg .to{ font-size:.7rem; color:var(--muted); font-weight:500; }
.mp-home .email-msg .time{ margin-left:auto; font-size:.66rem; color:var(--muted); white-space:nowrap; }
.mp-home .email-msg .obgyn{ font-size:.52rem; padding:2px 8px; margin-left:6px; }
.mp-home .email-msg p.msg-body{ margin-top:8px; font-size:.79rem; line-height:1.6; color:var(--ink); }

/* floating label — TUNE: bottom offset controls how far below the window it sits */
.mp-home .float-card{ position:absolute; z-index:3; background:#fff; border-radius:16px; box-shadow:var(--sh-md); border:1px solid var(--line-soft); padding:12px 15px; display:flex; align-items:center; gap:10px; font-size:.78rem; font-weight:700; color:var(--black); }
.mp-home .float-card small{ display:block; font-weight:600; color:var(--muted); font-size:.66rem; }
.mp-home .float-1{ bottom:-38px; right:-14px; }
.mp-home .fc-ic{ width:34px; height:34px; border-radius:10px; display:flex; align-items:center; justify-content:center; flex:0 0 auto; background:var(--baby); }

/* =====================================================================
   VALUE STRIP
===================================================================== */
.mp-home .value{ background:linear-gradient(135deg,var(--berry) 0%,var(--berry-deep) 130%); color:#fff; padding:30px 0; position:relative; overflow:hidden; }
.mp-home .value-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:14px; position:relative; z-index:1; }
.mp-home .vitem{ display:flex; gap:12px; align-items:center; padding:13px 14px; border-radius:16px; border:1px solid transparent; transition:background .25s ease,border-color .25s ease,transform .25s ease; }
.mp-home .vitem:hover{ background:rgba(255,255,255,.10); border-color:rgba(255,255,255,.22); transform:translateY(-2px); }
.mp-home .vitem .vic{ width:42px; height:42px; flex:0 0 auto; border-radius:12px; display:flex; align-items:center; justify-content:center; background:rgba(255,255,255,.13); }
.mp-home .vitem .vic svg{ width:20px; height:20px; }
.mp-home .vitem b{ font-size:1.12rem; color:#fff; display:block; line-height:1.15; letter-spacing:-.01em; }
.mp-home .vitem p{ font-size:.79rem; color:rgba(255,255,255,.76); font-weight:500; margin-top:2px; }

/* =====================================================================
   SECTION SHELL
===================================================================== */
.mp-home .section{ padding:96px 0; }
.mp-home .section.lavbg{ background:var(--wash-lav); }
.mp-home .section.babybg{ background:var(--wash-pink); }
.mp-home .section.blushbg{ background:var(--wash-blush); }
.mp-home .sec-head{ text-align:center; max-width:700px; margin:0 auto 56px; }
.mp-home .babybg .sec-head{ margin-bottom:14px; }
.mp-home .sec-head h2{ font-size:clamp(1.95rem,3.6vw,2.75rem); margin:2px 0 0; }
.mp-home .sec-head p{ color:var(--black); margin-top:16px; }

/* =====================================================================
   TOPICS
===================================================================== */
.mp-home #topics{ position:relative; overflow:hidden; }
.mp-home #topics .wrap{ position:relative; z-index:1; }
.mp-home .bubbles{ position:absolute; inset:0; z-index:0; pointer-events:none; }
.mp-home .bubble{ position:absolute; border-radius:50%; background:radial-gradient(circle at 34% 30%,rgba(255,255,255,.75),transparent 62%),var(--lav); opacity:.45; animation:mp-floaty 9s ease-in-out infinite; }
.mp-home .bubble.b1{ width:120px; height:120px; top:8%; left:4%; }
.mp-home .bubble.b2{ width:66px; height:66px; top:22%; right:8%; background:radial-gradient(circle at 34% 30%,rgba(255,255,255,.75),transparent 62%),var(--baby); animation-delay:1.5s; }
.mp-home .bubble.b3{ width:170px; height:170px; bottom:-4%; left:12%; opacity:.35; animation-delay:.8s; }
.mp-home .bubble.b4{ width:44px; height:44px; top:12%; left:44%; background:radial-gradient(circle at 34% 30%,rgba(255,255,255,.75),transparent 62%),var(--lav-mid); animation-delay:2.2s; }
.mp-home .bubble.b5{ width:90px; height:90px; bottom:10%; right:6%; animation-delay:1.1s; }
.mp-home .bubble.b6{ width:34px; height:34px; top:40%; left:24%; background:radial-gradient(circle at 34% 30%,rgba(255,255,255,.75),transparent 62%),var(--peach); animation-delay:.4s; }

.mp-home .topic-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.mp-home a.topic{ color:inherit; background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); overflow:hidden; transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease; display:flex; flex-direction:column; }
.mp-home a.topic:hover{ transform:translateY(-6px); box-shadow:var(--sh-md); border-color:transparent; }
.mp-home .gfx{ height:128px; display:flex; align-items:center; justify-content:center; position:relative; overflow:hidden; }
.mp-home .gfx::after{ content:""; position:absolute; left:12px; right:12px; bottom:-14px; height:28px; background:#fff; border-radius:50%; }
.mp-home .gfx svg{ width:60px; height:60px; position:relative; z-index:1; }
.mp-home .topic.area1 .gfx{ background:var(--a1); color:var(--a1i); }
.mp-home .topic.area2 .gfx{ background:var(--a2); color:var(--a2i); }
.mp-home .topic.area5 .gfx{ background:var(--a5); color:var(--a5i); }
.mp-home .topic.area4 .gfx{ background:var(--a4); color:var(--a4i); }
.mp-home .topic .body{ padding:20px 24px 26px; display:flex; flex-direction:column; flex:1; }
.mp-home .topic h3{ font-size:1.3rem; margin-bottom:8px; }
.mp-home .topic p{ font-size:.9rem; color:var(--muted); margin-bottom:18px; }
.mp-home .ask-link{ font-size:.82rem; font-weight:700; color:var(--berry); display:inline-flex; align-items:center; gap:6px; margin-top:auto; }
.mp-home .ask-link svg{ transition:transform .2s ease; }
.mp-home .topic:hover .ask-link svg{ transform:translateX(4px); }

/* icon animations */
.mp-home .anim-drop{ transform-box:view-box; transform-origin:40px 40px; animation:mp-drop 2.6s ease-in-out infinite; }
.mp-home .anim-ripple{ transform-box:view-box; transform-origin:40px 58px; animation:mp-ripple 2.6s ease-out infinite; }
.mp-home .anim-wave{ animation:mp-wave 2.4s linear infinite; }
.mp-home .anim-glow{ transform-box:view-box; transform-origin:40px 47px; animation:mp-glow 2.6s ease-in-out infinite; }
.mp-home .anim-beat{ transform-box:view-box; transform-origin:40px 42px; animation:mp-beat 1.9s ease-in-out infinite; }
@keyframes mp-drop{ 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-6px) scale(1.05)} }
@keyframes mp-ripple{ 0%{transform:scale(.55);opacity:.55} 100%{transform:scale(1.5);opacity:0} }
@keyframes mp-wave{ from{transform:translateX(0)} to{transform:translateX(-40px)} }
@keyframes mp-glow{ 0%,100%{transform:scale(1);opacity:.85} 50%{transform:scale(1.06);opacity:1} }
@keyframes mp-beat{ 0%,100%{transform:scale(1)} 14%{transform:scale(1.16)} 28%{transform:scale(1)} 42%{transform:scale(1.1)} 56%{transform:scale(1)} }
@keyframes mp-floaty{ 0%,100%{transform:translateY(0)} 50%{transform:translateY(-16px)} }

/* =====================================================================
   EMPOWERMENT / MISSION
===================================================================== */
.mp-home .empower{ padding:92px 0; background:linear-gradient(120deg,var(--baby-soft) 0%,var(--lav-soft) 100%); text-align:center; position:relative; overflow:hidden; }
.mp-home .empower .wrap{ position:relative; z-index:1; max-width:820px; }
.mp-home .empower h2{ font-size:clamp(2.05rem,4vw,3.1rem); margin:2px 0 16px; }
.mp-home .empower p{ max-width:640px; margin:0 auto; color:var(--black); }

/* =====================================================================
   TOOLS — v3 round cards (two colour rings: pink / lavender)
===================================================================== */
.mp-home .mp-tools4-grid{ display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:clamp(26px,5vw,60px); max-width:900px; margin:0 auto; }
.mp-home .mp-tools4-item{ display:flex; flex-direction:column; align-items:center; text-align:center; text-decoration:none; color:var(--ink); border:1px solid var(--line); border-radius:24px; padding:clamp(24px,4vw,34px) clamp(18px,3vw,28px) clamp(26px,4vw,34px); transition:border-color .2s ease,box-shadow .2s ease; }
.mp-home .mp-tools4-item:hover{ border-color:var(--berry); box-shadow:0 14px 36px rgba(142,44,78,.11); }
/* ring frame: border around each picture with a white gap inside */
.mp-home .mp-tools4-disc{ position:relative; width:min(250px,70vw); aspect-ratio:1; border-radius:50%; display:flex; align-items:center; justify-content:center; margin-bottom:24px; padding:7px; border:2.5px solid; transition:transform .25s ease; }
.mp-home .mp-tools4-item:hover .mp-tools4-disc{ transform:translateY(-6px); }
.mp-home .mp-tools4-item--calc .mp-tools4-disc{ border-color:#F3B8CB; }
.mp-home .mp-tools4-item--hyg .mp-tools4-disc{ border-color:var(--lav-mid); }
.mp-home .mp-tools4-disc img{ position:relative; width:100%; height:100%; object-fit:contain; display:block; filter:drop-shadow(0 14px 28px rgba(142,44,78,.2)); transition:transform .25s ease; }
.mp-home .mp-tools4-item:hover .mp-tools4-disc img{ transform:scale(1.03); }
/* accent satellite dots on the ring */
.mp-home .mp-tools4-dot{ position:absolute; border-radius:50%; box-shadow:0 0 0 3px #fff; }
.mp-home .mp-tools4-item--calc .mp-tools4-dot--b{ bottom:12%; left:6%; width:12px; height:12px; background:var(--lav-mid); }
.mp-home .mp-tools4-item--hyg .mp-tools4-dot--b{ bottom:12%; right:6%; width:12px; height:12px; background:var(--baby); }
/* badge floating on the disc */
.mp-home .mp-tools4-free{ position:absolute; bottom:4%; display:inline-flex; align-items:center; gap:6px; padding:5px 15px; background:#fff; border:1px solid var(--line); border-radius:999px; font-size:.74rem; font-weight:700; color:var(--berry-deep); box-shadow:0 4px 14px rgba(142,44,78,.14); white-space:nowrap; }
.mp-home .mp-tools4-free svg{ color:#8DA79B; flex:none; }
/* text */
.mp-home .mp-tools4-item h3{ margin:0 0 6px; font-size:1.35rem; line-height:1.4; }
.mp-home .mp-tools4-item h3 span{ color:var(--berry); }
.mp-home .mp-tools4-item p{ margin:0 0 18px; font-size:.9rem; color:var(--muted); line-height:1.7; max-width:34ch; }
/* CTA */
.mp-home .mp-tools4-cta svg{ transition:transform .2s ease; }
.mp-home .mp-tools4-item:hover .mp-tools4-cta svg{ transform:translateX(3px); }
.mp-home .mp-tools4-cta{ display:inline-flex; align-items:center; gap:9px; padding:12px 28px; background:var(--berry); border-radius:999px; color:#fff; font-size:.9rem; font-weight:700; box-shadow:0 6px 16px rgba(142,44,78,.26); transition:background .18s ease,box-shadow .18s ease,transform .15s ease; }
.mp-home .mp-tools4-item:hover .mp-tools4-cta{ background:var(--berry-hover); box-shadow:0 8px 22px rgba(142,44,78,.34); transform:translateY(-1px); }

/* =====================================================================
   ARTICLES — output of [mp_latest_posts] (MP Latest Posts plugin)
===================================================================== */
.mp-home .mp-lp-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.mp-home a.mp-lp-card{ color:inherit; display:flex; flex-direction:column; background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); overflow:hidden; transition:transform .22s ease,box-shadow .22s ease; }
.mp-home a.mp-lp-card:hover{ transform:translateY(-6px); box-shadow:var(--sh-md); }
.mp-home .mp-lp-thumb{ position:relative; display:block; }
.mp-home .mp-lp-thumb img{ width:100%; height:auto; display:block; }
/* fallback band when a post has no featured image */
.mp-home .mp-lp-thumb:not(:has(img)){ height:132px; }
.mp-home .mp-lp-c1 .mp-lp-thumb:not(:has(img)){ background:linear-gradient(140deg,var(--a1),var(--baby)); }
.mp-home .mp-lp-c2 .mp-lp-thumb:not(:has(img)){ background:linear-gradient(140deg,var(--a2),var(--lav-soft)); }
.mp-home .mp-lp-c3 .mp-lp-thumb:not(:has(img)){ background:linear-gradient(140deg,var(--a5),var(--baby-soft)); }
.mp-home .mp-lp-pill{ position:absolute; left:14px; bottom:14px; font-size:.62rem; font-weight:800; letter-spacing:.1em; text-transform:uppercase; padding:6px 13px; border-radius:100px; background:rgba(255,255,255,.92); color:var(--black); }
.mp-home .mp-lp-body{ display:flex; flex-direction:column; flex:1; padding:20px 22px 24px; }
.mp-home .mp-lp-title{ display:block; font-size:1.06rem; font-weight:800; color:var(--black); letter-spacing:-.025em; line-height:1.32; margin-bottom:8px; }
.mp-home .mp-lp-excerpt{ display:block; font-size:.86rem; color:var(--muted); margin-bottom:14px; }
.mp-home .mp-lp-thumb img{ aspect-ratio:16/9; object-fit:cover; }
.mp-home .mp-lp-badge{ margin-top:auto; align-self:flex-start; display:inline-flex; align-items:center; gap:6px; font-size:.66rem; font-weight:800; letter-spacing:.02em; color:var(--sage-ink); background:var(--sage-soft); border:1px solid var(--sage-line); padding:5px 11px; border-radius:100px; }
.mp-home .mp-lp-badge svg{ width:11px; height:11px; }

/* =====================================================================
   COMMUNITY
===================================================================== */
.mp-home .community{ padding:92px 0; background:linear-gradient(120deg,var(--wash-blush),var(--wash-lav)); }
.mp-home .comm-grid{ display:grid; grid-template-columns:.95fr 1.05fr; gap:60px; align-items:center; }
.mp-home .comm-visual{ position:relative; }
/* TUNE: aspect-ratio sets the frame's height — the blush outline follows it.
   The image fills the frame and crops evenly (object-position recenters if needed). */
.mp-home .comm-visual img{ width:100%; aspect-ratio:1/1; object-fit:contain; background:#fff; padding:0; display:block; border-radius:42% 58% 55% 45% / 46% 44% 56% 54%; box-shadow:var(--sh-md); }
.mp-home .comm-visual::before{ content:""; position:absolute; inset:-16px; border:2px solid var(--blush); border-radius:58% 42% 45% 55% / 54% 56% 44% 46%; pointer-events:none; }
.mp-home .community h2{ font-size:clamp(1.95rem,3.4vw,2.65rem); margin-bottom:14px; }
.mp-home .community p{ color:var(--black); margin-bottom:24px; max-width:480px; }

/* =====================================================================
   TEAM
===================================================================== */
.mp-home .team-more-wrap{ text-align:center; margin-top:38px; }
.mp-home .team-more{ font-weight:800; font-size:1rem; color:var(--berry); }
.mp-home .team-more::after{ content:"→"; display:inline-block; margin-left:7px; transition:transform .2s ease; }
.mp-home .team-more:hover::after{ transform:translateX(4px); }
.mp-home .team-more:hover{ color:var(--berry-hover); }

/* =====================================================================
   CTA BAND
===================================================================== */
.mp-home .cta-band{ background:linear-gradient(135deg,var(--berry) 0%,var(--berry-deep) 130%); border-radius:36px; padding:70px 40px; text-align:center; color:#fff; position:relative; overflow:hidden; }
.mp-home .cta-band::before{ content:""; position:absolute; width:420px; height:420px; border-radius:50%; border:2px solid rgba(251,225,232,.16); top:-190px; right:-110px; }
.mp-home .cta-band::after{ content:""; position:absolute; width:320px; height:320px; border-radius:50%; border:2px solid rgba(230,223,244,.14); bottom:-160px; left:-90px; }
.mp-home .cta-band h2{ color:#fff; font-size:clamp(1.95rem,3.6vw,2.75rem); margin-bottom:16px; position:relative; }
.mp-home .cta-band p{ color:rgba(255,255,255,.85); max-width:540px; margin:0 auto 32px; position:relative; font-size:1.06rem; }
.mp-home .cta-actions{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; position:relative; }

/* =====================================================================
   RESPONSIVE
===================================================================== */
@media(max-width:960px){
  .mp-home .hero{ padding:48px 0 70px; }
  .mp-home .hero-grid{ grid-template-columns:1fr; gap:60px; text-align:left; }
  .mp-home .hero::before{ width:420px; height:420px; top:-150px; right:-170px; }
  .mp-home .hero::after{ width:300px; height:300px; }
  .mp-home .phone-stage{ max-width:440px; margin:0 auto; width:100%; }
  .mp-home .value-grid{ grid-template-columns:repeat(2,1fr); }
  .mp-home .topic-grid,.mp-home .mp-lp-grid{ grid-template-columns:1fr; }
  .mp-home .comm-grid{ grid-template-columns:1fr; gap:0; text-align:center; }
  .mp-home .comm-grid > div:not(.comm-visual){ display:contents; }
  .mp-home .comm-grid .eyebrow{ order:0; justify-self:center; }
  .mp-home .comm-grid h2{ order:1; }
  .mp-home .comm-visual{ order:2; width:min(360px,86%); margin:34px auto 38px; }
  .mp-home .comm-grid p{ order:3; justify-self:center; }
  .mp-home .comm-grid .btn{ order:4; justify-self:center; }
}
@media(max-width:700px){
  .mp-home .topic-grid{ grid-template-columns:1fr 1fr; }
  .mp-home .mp-tools4-grid{ grid-template-columns:1fr; gap:44px; }
  .mp-home .mp-tools4-item h3{ font-size:1.5rem; }
  .mp-home .mp-tools4-disc{ width:min(210px,60vw); }
}
@media(max-width:600px){
  /* email mockup stays visible on mobile: full-width window, label below it */
  .mp-home .phone-stage{ flex-wrap:wrap; gap:12px; }
  .mp-home .email-window{ flex:0 0 100%; width:100%; max-width:380px; margin:0 auto; }
  .mp-home .float-card{ position:static; box-shadow:var(--sh-sm); order:2; }
}
@media(max-width:560px){
  .mp-home .wrap{ padding:0 18px; }
  .mp-home .section,.mp-home .empower,.mp-home .community{ padding:64px 0; }
  .mp-home .value-grid{ grid-template-columns:1fr; }
  .mp-home .cta-band{ padding:50px 22px; }
  .mp-home .hero h1{ font-size:2.2rem; }
  .mp-home .ask-line{ gap:11px; }
  .mp-home .ask-line .t b{ font-size:.9rem; }
  .mp-home .email-topbar{ padding:14px 16px; }
  .mp-home .email-topbar b{ font-size:.82rem; flex:1; min-width:0; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
  .mp-home .email-body{ padding:16px 16px 18px; }
}
@media(max-width:480px){
  .mp-home .topic-grid{ grid-template-columns:1fr; }
}
@media(prefers-reduced-motion:reduce){
  .mp-home *,.mp-home *::before,.mp-home *::after{ animation:none !important; transition:none !important; }
}