/* momo fit — in-app visuals (SVG + gradients, no external images) */

.momo-hero-app {
  position: relative;
  overflow: hidden;
}
.momo-hero-deco {
  position: absolute;
  right: -6%;
  top: 8%;
  width: min(132px, 38vw);
  height: min(132px, 38vw);
  opacity: 0.34;
  pointer-events: none;
}
.momo-hero-deco svg {
  width: 100%;
  height: 100%;
  display: block;
}
.momo-hero-app .hero-badge,
.momo-hero-app h1,
.momo-hero-app .hero-sub {
  position: relative;
  z-index: 1;
}

.momo-flow-strip {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.25rem;
  padding: 1rem 0.75rem;
  margin-bottom: 1.35rem;
  background: linear-gradient(155deg, #ffffff 0%, #f2f6fd 55%, #eef4fc 100%);
  border-radius: 18px;
  border: 1px solid var(--border, #d8e0ef);
  box-shadow: 0 6px 26px rgba(26, 43, 74, 0.07);
}
.momo-flow-step {
  flex: 1;
  text-align: center;
  min-width: 0;
}
.momo-flow-orb {
  width: 46px;
  height: 46px;
  margin: 0 auto 0.45rem;
  border-radius: 15px;
  background: linear-gradient(150deg, #ffffff 0%, #e4ecf8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main, #1a2b4a);
  border: 1px solid var(--border, #d8e0ef);
  box-shadow: 0 2px 10px rgba(26, 43, 74, 0.06);
}
.momo-flow-orb svg {
  width: 1.35rem;
  height: 1.35rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.momo-flow-step strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--main, #1a2b4a);
  letter-spacing: 0.03em;
}
.momo-flow-step span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.64rem;
  font-weight: 600;
  color: var(--muted, #5a6b85);
  line-height: 1.4;
}
.momo-flow-dash {
  flex: 0 0 12px;
  height: 2px;
  margin-top: 22px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(46, 74, 122, 0.35), transparent);
}

/* Subpage hero band (check / wellness / history) */
.momo-app-top {
  margin: 0 0 1.2rem;
  padding: 1.1rem 1rem 1rem;
  border-radius: 20px;
  background: linear-gradient(148deg, #1a2b4a 0%, #2e4a7a 52%, #3d5a8f 100%);
  color: #fff;
  box-shadow: 0 10px 32px rgba(26, 43, 74, 0.2);
  position: relative;
  overflow: hidden;
}
.momo-app-top::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 70% at 100% 0%, rgba(255, 255, 255, 0.14), transparent 55%);
  pointer-events: none;
}
.momo-app-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  position: relative;
  z-index: 1;
}
.momo-app-top-text {
  flex: 1;
  min-width: 0;
  text-align: left;
}
.momo-app-top h1 {
  margin: 0 0 0.3rem;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
}
.momo-app-top .date-line {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}
.momo-app-top .sub {
  margin: 0.45rem 0 0;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}
.momo-app-top-note {
  margin: 0.65rem 0 0;
  font-size: 0.78rem;
  font-weight: 600;
}
.momo-app-top-note a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.45);
}
.momo-app-top-art {
  flex-shrink: 0;
  width: 76px;
  height: 76px;
  opacity: 0.92;
}
.momo-app-top-art svg {
  width: 100%;
  height: 100%;
  display: block;
}

.momo-ico {
  width: 1.3rem;
  height: 1.3rem;
  stroke: var(--accent, #2e4a7a);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.momo-success-ring {
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 0.85rem;
  color: var(--accent, #2e4a7a);
}
.momo-success-ring svg {
  width: 100%;
  height: 100%;
  display: block;
}
