.c-reminder-trigger{
  position:relative;
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:5px;
  min-height:34px;
  padding:5px 9px 5px 6px;
  border:1px solid rgba(171,199,232,.92);
  border-radius:12px;
  background:
    radial-gradient(circle at 24% 18%,rgba(255,255,255,.95),transparent 26%),
    linear-gradient(180deg,rgba(255,255,255,.95) 0%,rgba(236,247,255,.92) 100%);
  color:#254061;
  font-size:10px;
  font-weight:900;
  letter-spacing:.02em;
  cursor:pointer;
  box-shadow:0 10px 18px rgba(47,97,201,.09),inset 0 1px 0 rgba(255,255,255,.92);
  transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease,background .18s ease;
}
.c-reminder-trigger:hover,
.c-reminder-trigger:focus-visible{
  transform:translateY(-1px);
  border-color:#8cb7ec;
  box-shadow:0 14px 24px rgba(47,97,201,.14),0 0 0 3px rgba(47,97,201,.10),inset 0 1px 0 rgba(255,255,255,.96);
  outline:none;
}
.c-reminder-trigger::before{
  content:"";
  width:21px;
  height:21px;
  border-radius:999px;
  background:
    radial-gradient(circle at 50% 50%,#ffffff 0 24%,transparent 25%),
    linear-gradient(90deg,transparent 47%,rgba(32,38,79,.18) 47% 53%,transparent 53%),
    linear-gradient(0deg,transparent 47%,rgba(32,38,79,.14) 47% 53%,transparent 53%),
    repeating-conic-gradient(from -90deg,rgba(32,38,79,.22) 0 2deg,transparent 2deg 28deg),
    linear-gradient(135deg,#edf8ff,#dff4ff);
  border:1px solid rgba(134,180,215,.78);
  box-shadow:0 0 0 4px rgba(47,97,201,.07),inset 0 1px 0 rgba(255,255,255,.92);
}
.c-reminder-trigger::after{
  content:"";
  position:absolute;
  left:10px;
  top:50%;
  width:15px;
  height:3px;
  border-radius:999px;
  background:linear-gradient(90deg,#2f61c9 0 48%,#25b96f 48% 100%);
  transform:translateY(-50%) rotate(-28deg);
  transform-origin:center;
  box-shadow:0 1px 4px rgba(32,48,92,.18);
  animation:cReminderNeedle 5.8s ease-in-out infinite;
}
.c-reminder-modal[hidden]{display:none}
.c-reminder-modal{
  position:fixed;
  inset:0;
  z-index:9999;
  display:grid;
  place-items:center;
  padding:22px;
  background:rgba(18,29,54,.34);
  backdrop-filter:blur(7px);
}
.c-reminder-card{
  position:relative;
  overflow:hidden;
  width:min(520px,calc(100vw - 32px));
  border:1px solid rgba(190,211,238,.96);
  border-radius:26px;
  background:
    radial-gradient(circle at 12% 0%,rgba(255,255,255,.98),transparent 27%),
    radial-gradient(circle at 94% 6%,rgba(64,174,224,.18),transparent 35%),
    radial-gradient(circle at 8% 96%,rgba(240,161,59,.12),transparent 32%),
    linear-gradient(180deg,#ffffff 0%,#f3f8ff 100%);
  box-shadow:0 26px 70px rgba(27,43,86,.26),inset 0 1px 0 rgba(255,255,255,.92);
  animation:cReminderIn .22s cubic-bezier(.2,.72,.2,1) both;
}
.c-reminder-card::before{
  content:"";
  position:absolute;
  left:18px;
  right:18px;
  top:0;
  height:4px;
  border-radius:999px;
  background:linear-gradient(90deg,#2f61c9,#1f9bd0,#25b96f,#f0a13b);
}
.c-reminder-body{
  position:relative;
  padding:22px 22px 18px;
}
.c-reminder-head{
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  gap:13px;
  align-items:start;
  padding-right:22px;
}
.c-reminder-coach{
  position:relative;
  width:54px;
  height:54px;
  border-radius:20px;
  display:grid;
  place-items:center;
  background:
    radial-gradient(circle at 30% 22%,rgba(255,255,255,.88),transparent 28%),
    linear-gradient(135deg,#2f61c9 0%,#1f9bd0 56%,#25b96f 100%);
  box-shadow:0 14px 28px rgba(47,97,201,.20),0 0 0 7px rgba(47,97,201,.08);
  animation:cReminderCoachBreathe 5.8s ease-in-out infinite;
}
.c-reminder-coach::before{
  content:"";
  position:absolute;
  inset:-8px;
  border-radius:25px;
  border:1px solid rgba(47,97,201,.16);
  opacity:.78;
  animation:cReminderCoachAura 4.8s ease-in-out infinite;
}
.c-reminder-face{
  position:relative;
  width:29px;
  height:24px;
  border-radius:12px 12px 11px 11px;
  background:linear-gradient(180deg,#ffffff 0%,#eaf7ff 100%);
  box-shadow:inset 0 -2px 0 rgba(47,97,201,.10);
}
.c-reminder-face::before{
  content:"";
  position:absolute;
  left:7px;
  top:8px;
  width:4px;
  height:4px;
  border-radius:999px;
  background:#244d92;
  box-shadow:11px 0 0 #244d92;
}
.c-reminder-face::after{
  content:"";
  position:absolute;
  left:8px;
  top:15px;
  width:13px;
  height:6px;
  border-bottom:2px solid #25b96f;
  border-radius:0 0 999px 999px;
}
.c-reminder-face span{
  position:absolute;
  left:11px;
  top:-7px;
  width:7px;
  height:7px;
  border-radius:999px;
  background:#f0a13b;
  box-shadow:0 0 0 4px rgba(240,161,59,.16);
  animation:cReminderSignal 2.4s ease-in-out infinite;
}
.c-reminder-copy{min-width:0}
.c-reminder-kicker{
  display:inline-flex;
  align-items:center;
  gap:7px;
  margin:0 0 9px;
  color:#244d92;
  font-size:10px;
  font-weight:950;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.c-reminder-kicker::before{
  content:"";
  width:9px;
  height:9px;
  border-radius:999px;
  background:#25b96f;
  box-shadow:0 0 0 4px rgba(37,185,111,.12);
}
.c-reminder-title{
  margin:0;
  color:#20264f;
  font-size:25px;
  line-height:1.06;
  letter-spacing:0;
}
.c-reminder-lead{
  margin:10px 0 14px;
  color:#56698f;
  font-size:13.5px;
  font-weight:720;
  line-height:1.45;
}
.c-reminder-points{
  display:grid;
  gap:8px;
  margin:0;
  padding:0;
  list-style:none;
}
.c-reminder-points li{
  position:relative;
  min-height:40px;
  padding:9px 10px 9px 38px;
  border:1px solid rgba(211,225,244,.92);
  border-radius:16px;
  background:rgba(255,255,255,.76);
  color:#314262;
  font-size:12.5px;
  font-weight:760;
  line-height:1.32;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.84);
}
.c-reminder-points li::before{
  content:"";
  position:absolute;
  left:12px;
  top:12px;
  width:15px;
  height:15px;
  border-radius:999px;
  background:var(--c-dot,#2f61c9);
  box-shadow:0 0 0 5px color-mix(in srgb,var(--c-dot,#2f61c9) 14%,transparent);
}
.c-reminder-points li:nth-child(2){--c-dot:#f0a13b}
.c-reminder-points li:nth-child(3){--c-dot:#25b96f}
.c-reminder-actions{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  margin-top:15px;
}
.c-reminder-action{
  min-height:36px;
  padding:8px 12px;
  border-radius:13px;
  border:1px solid #cad9f0;
  background:#fff;
  color:#244d92;
  font-size:12px;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 9px 16px rgba(47,97,201,.08);
}
.c-reminder-action.primary{
  background:linear-gradient(180deg,#3f8bea 0%,#2f61c9 100%);
  border-color:#2f61c9;
  color:#fff;
  padding-inline:15px;
  box-shadow:0 12px 22px rgba(47,97,201,.18);
}
.c-reminder-action.compass-link{
  min-height:auto;
  padding:5px 2px;
  border:none;
  border-radius:0;
  background:transparent;
  color:#60709a;
  font-size:11.5px;
  font-weight:850;
  text-decoration:underline;
  text-underline-offset:3px;
  box-shadow:none;
}
.c-reminder-close{
  position:absolute;
  z-index:5;
  top:13px;
  right:13px;
  width:32px;
  height:32px;
  border-radius:12px;
  border:1px solid rgba(200,215,235,.9);
  background:rgba(255,255,255,.78);
  color:#4c5f82;
  font-size:18px;
  font-weight:900;
  line-height:1;
  cursor:pointer;
  pointer-events:auto;
}
@keyframes cReminderIn{
  0%{opacity:0;transform:translateY(8px) scale(.985)}
  100%{opacity:1;transform:translateY(0) scale(1)}
}
@keyframes cReminderCoachBreathe{
  0%,100%{transform:translateY(0) scale(1)}
  50%{transform:translateY(-2px) scale(1.015)}
}
@keyframes cReminderCoachAura{
  0%,100%{transform:scale(.96);opacity:.46}
  50%{transform:scale(1.04);opacity:.82}
}
@keyframes cReminderSignal{
  0%,100%{transform:translateY(0);box-shadow:0 0 0 4px rgba(240,161,59,.14)}
  50%{transform:translateY(-2px);box-shadow:0 0 0 7px rgba(240,161,59,.06)}
}
@keyframes cReminderNeedle{
  0%,100%{transform:translateY(-50%) rotate(-28deg)}
  34%{transform:translateY(-50%) rotate(-14deg)}
  68%{transform:translateY(-50%) rotate(-35deg)}
}
@media(max-width:760px){
  .c-reminder-trigger{
    min-height:34px;
    padding-right:8px;
  }
  .topbar-side .c-reminder-trigger{
    flex:0 0 auto;
  }
  .c-reminder-body{padding:20px 16px 16px}
  .c-reminder-head{grid-template-columns:1fr;padding-right:26px}
  .c-reminder-coach{width:46px;height:46px}
  .c-reminder-title{font-size:22px}
  .c-reminder-actions{justify-content:stretch;flex-direction:column-reverse;align-items:stretch}
  .c-reminder-action{width:100%}
  .c-reminder-action.compass-link{width:auto;align-self:center}
}
@media(prefers-reduced-motion:reduce){
  .c-reminder-card,
  .c-reminder-coach,
  .c-reminder-coach::before,
  .c-reminder-face span{
    animation:none!important;
  }
  .c-reminder-trigger::after{animation:none!important}
}
