/* LoveWell Lead Magnet - Standalone Quiz Scoped Styles */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --lwlm-red:          #990303;
  --lwlm-red-dark:     #7d0202;
  --lwlm-red-light:    #faf0f0;
  --lwlm-grey:         #71706e;
  --lwlm-grey-light:   #e8e6e1;
  --lwlm-dark:         #111111;
  --lwlm-mid:          #444444;
  --lwlm-white:        #ffffff;
  --lwlm-bg:           #faf9f6;
  --lwlm-border:       #e8e4de;
  --lwlm-radius:       16px;
  --lwlm-radius-sm:    10px;
  --lwlm-shadow:       0 12px 32px rgba(113, 112, 110, 0.08);
  --lwlm-shadow-hover: 0 16px 40px rgba(153, 3, 3, 0.12);
  --lwlm-transition:   0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.lwlm-quiz-wrapper *,
.lwlm-quiz-wrapper *::before,
.lwlm-quiz-wrapper *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.lwlm-quiz-wrapper {
  font-family: 'Outfit', sans-serif;
  background: var(--lwlm-bg);
  color: var(--lwlm-dark);
  min-height: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
}

/* Shell & Container */
.lwlm-shell {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 24px;
}

/* Brand Display */
.lwlm-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.lwlm-brand-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lwlm-red);
}

.lwlm-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--lwlm-grey);
  text-transform: uppercase;
  font-weight: 600;
}

/* Modern Minimal Progress Indicator */
.lwlm-progress-wrap {
  margin-bottom: 44px;
  width: 100%;
}

.lwlm-progress-track {
  height: 4px;
  background: var(--lwlm-grey-light);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.lwlm-progress-fill {
  height: 100%;
  background: var(--lwlm-red);
  border-radius: 10px;
  transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  width: 0%;
}

.lwlm-progress-label {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
  font-size: 13px;
  color: var(--lwlm-grey);
  font-weight: 400;
}

/* Question & Audience Cards */
.lwlm-card {
  background: var(--lwlm-white);
  border: 1px solid var(--lwlm-border);
  border-radius: var(--lwlm-radius);
  padding: 40px 32px;
  box-shadow: var(--lwlm-shadow);
  animation: lwlm-fade-in 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes lwlm-fade-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.lwlm-q-counter {
  font-size: 12px;
  font-weight: 500;
  color: var(--lwlm-grey);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.lwlm-q-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 5vw, 28px);
  line-height: 1.45;
  color: var(--lwlm-dark);
  margin-bottom: 40px;
  font-weight: 400;
}

.lwlm-q-text em {
  font-style: italic;
  color: var(--lwlm-red);
}

/* Elegant Radio Buttons for Audience Selection */
.lwlm-audience-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.lwlm-audience-option {
  display: flex;
  align-items: center;
  padding: 20px 24px;
  background: var(--lwlm-white);
  border: 1.5px solid var(--lwlm-border);
  border-radius: var(--lwlm-radius-sm);
  cursor: pointer;
  transition: var(--lwlm-transition);
}

.lwlm-audience-option:hover {
  border-color: var(--lwlm-grey);
  background: #fbfbf9;
}

.lwlm-audience-option.selected {
  border-color: var(--lwlm-red);
  background: var(--lwlm-red-light);
  box-shadow: 0 4px 12px rgba(153, 3, 3, 0.06);
}

.lwlm-radio-input {
  display: none;
}

.lwlm-radio-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--lwlm-border);
  border-radius: 50%;
  margin-right: 16px;
  position: relative;
  transition: var(--lwlm-transition);
  flex-shrink: 0;
}

.lwlm-audience-option.selected .lwlm-radio-custom {
  border-color: var(--lwlm-red);
}

.lwlm-audience-option.selected .lwlm-radio-custom::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: var(--lwlm-red);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.lwlm-option-label {
  font-size: 16px;
  font-weight: 500;
  color: var(--lwlm-dark);
  line-height: 1.4;
}

/* Button UI */
.lwlm-btn-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lwlm-btn {
  width: 100%;
  padding: 18px 28px;
  border: none;
  border-radius: var(--lwlm-radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: var(--lwlm-transition);
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.lwlm-btn-primary {
  background: var(--lwlm-red);
  color: var(--lwlm-white);
}

.lwlm-btn-primary:hover {
  background: var(--lwlm-red-dark);
  transform: translateY(-2px);
  box-shadow: var(--lwlm-shadow-hover);
}

.lwlm-btn-primary:active {
  transform: translateY(0);
}

.lwlm-btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.lwlm-btn-secondary {
  background: var(--lwlm-white);
  color: var(--lwlm-dark);
  border: 1.5px solid var(--lwlm-border);
}

.lwlm-btn-secondary:hover {
  background: #fbfbf9;
  border-color: var(--lwlm-grey);
  transform: translateY(-2px);
}

.lwlm-btn-secondary:active {
  transform: translateY(0);
}

/* Results Section styling */
.lwlm-results {
  animation: lwlm-fade-in 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.lwlm-results-header {
  text-align: center;
  margin-bottom: 40px;
}

.lwlm-results-eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--lwlm-red);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.lwlm-results-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 6vw, 36px);
  line-height: 1.3;
  color: var(--lwlm-dark);
  margin-bottom: 20px;
  font-weight: 600;
}

.lwlm-results-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--lwlm-mid);
  font-weight: 400;
  max-width: 520px;
  margin: 0 auto;
}

/* Premium Score Bars */
.lwlm-scores-container {
  background: var(--lwlm-white);
  border: 1px solid var(--lwlm-border);
  border-radius: var(--lwlm-radius);
  padding: 32px;
  margin-bottom: 48px;
  box-shadow: var(--lwlm-shadow);
}

.lwlm-score-row {
  margin-bottom: 24px;
}

.lwlm-score-row:last-child {
  margin-bottom: 0;
}

.lwlm-score-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.lwlm-score-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--lwlm-dark);
}

.lwlm-score-pct {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: var(--lwlm-grey);
  font-weight: 600;
}

.lwlm-score-track {
  height: 6px;
  background: var(--lwlm-grey-light);
  border-radius: 99px;
  overflow: hidden;
}

.lwlm-score-fill {
  height: 100%;
  border-radius: 99px;
  background: var(--lwlm-grey-light);
  width: 0%;
  transition: width 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.lwlm-score-fill.lwlm-fill-primary {
  background: var(--lwlm-red);
}

.lwlm-score-fill.lwlm-fill-secondary {
  background: var(--lwlm-grey);
}

/* Narrative Card */
.lwlm-narrative-container {
  background: var(--lwlm-white);
  border: 1px solid var(--lwlm-border);
  border-radius: var(--lwlm-radius);
  padding: 40px 32px;
  margin-bottom: 48px;
  box-shadow: var(--lwlm-shadow);
}

.lwlm-narrative-paragraph {
  font-size: 16px;
  line-height: 1.8;
  color: var(--lwlm-mid);
  margin-bottom: 20px;
}

.lwlm-narrative-paragraph:last-child {
  margin-bottom: 0;
}

/* Lead Capture Container */
.lwlm-lead-container {
  background: var(--lwlm-white);
  border: 1px solid var(--lwlm-border);
  border-radius: var(--lwlm-radius);
  padding: 40px 32px;
  margin-bottom: 48px;
  box-shadow: var(--lwlm-shadow);
}

.lwlm-lead-headline {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--lwlm-dark);
  margin-bottom: 12px;
  font-weight: 600;
}

.lwlm-lead-sub {
  font-size: 15px;
  color: var(--lwlm-grey);
  line-height: 1.65;
  margin-bottom: 28px;
}

.lwlm-input-field {
  width: 100%;
  padding: 16px 20px;
  border: 1.5px solid var(--lwlm-border);
  border-radius: var(--lwlm-radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  color: var(--lwlm-dark);
  background: var(--lwlm-white);
  outline: none;
  transition: var(--lwlm-transition);
  margin-bottom: 16px;
  -webkit-appearance: none;
}

.lwlm-input-field:focus {
  border-color: var(--lwlm-red);
  box-shadow: 0 0 0 3px rgba(153, 3, 3, 0.08);
}

.lwlm-input-field::placeholder {
  color: #b0aba4;
}

.lwlm-form-msg {
  margin-top: 16px;
  font-size: 14px;
  text-align: center;
  font-weight: 500;
}

.lwlm-form-msg.success { color: #227a22; }
.lwlm-form-msg.error   { color: var(--lwlm-red); }

/* Conditional CTA Blocks */
.lwlm-cta-box {
  background: var(--lwlm-white);
  border: 1.5px solid var(--lwlm-border);
  border-radius: var(--lwlm-radius);
  padding: 40px 32px;
  box-shadow: var(--lwlm-shadow);
  margin-top: 48px;
}

.lwlm-cta-headline {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--lwlm-dark);
  margin-bottom: 16px;
  font-weight: 600;
}

.lwlm-cta-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--lwlm-mid);
  margin-bottom: 28px;
}

.lwlm-cta-divider {
  height: 1px;
  background: var(--lwlm-border);
  margin: 32px 0;
}

.lwlm-cta-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lwlm-cta-link-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lwlm-cta-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lwlm-grey);
}

.lwlm-cta-card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border: 1.5px solid var(--lwlm-border);
  border-radius: var(--lwlm-radius-sm);
  text-decoration: none;
  color: var(--lwlm-dark);
  background: var(--lwlm-white);
  transition: var(--lwlm-transition);
}

.lwlm-cta-card-link:hover {
  border-color: var(--lwlm-red);
  background: var(--lwlm-red-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(153, 3, 3, 0.05);
}

.lwlm-cta-card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--lwlm-dark);
}

.lwlm-cta-card-arrow {
  color: var(--lwlm-red);
  font-weight: 600;
  font-size: 16px;
}

/* Spinner */
.lwlm-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--lwlm-white);
  border-radius: 50%;
  animation: lwlm-spin 0.6s linear infinite;
  vertical-align: middle;
  margin-right: 10px;
}

@keyframes lwlm-spin {
  to { transform: rotate(360deg); }
}

/* Intro / Onboarding styling */
.lwlm-intro {
  text-align: center;
  animation: lwlm-fade-in 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.lwlm-intro-eyebrow {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lwlm-red);
  margin-bottom: 20px;
  font-weight: 600;
}

.lwlm-intro-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 6.5vw, 42px);
  line-height: 1.25;
  color: var(--lwlm-dark);
  margin-bottom: 24px;
}

.lwlm-intro-headline em {
  font-style: italic;
  color: var(--lwlm-red);
}

.lwlm-intro-desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--lwlm-mid);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.lwlm-intro-meta {
  font-size: 13px;
  color: var(--lwlm-grey);
  margin-top: 24px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .lwlm-shell { padding: 32px 16px; }
  .lwlm-card, .lwlm-scores-container, .lwlm-narrative-container, .lwlm-lead-container, .lwlm-cta-box {
    padding: 32px 20px;
  }
}

/* ============================================================
   Couples Pairing panel (v1.1.0)
   ============================================================ */
.lwlm-couple-host { }

.lwlm-couple-box {
  margin-top: 32px;
  padding: 28px;
  background: var(--lwlm-white);
  border: 1px solid var(--lwlm-border);
  border-radius: var(--lwlm-radius);
  box-shadow: var(--lwlm-shadow);
}

.lwlm-couple-code-wrap {
  text-align: center;
  margin: 20px 0 6px;
}
.lwlm-couple-code {
  display: inline-block;
  margin-top: 8px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 6px;
  color: var(--lwlm-red);
  background: var(--lwlm-red-light);
  border-radius: var(--lwlm-radius-sm);
  padding: 12px 22px;
}
.lwlm-couple-divider {
  text-align: center;
  color: var(--lwlm-grey);
  font-size: 13px;
  margin: 18px 0 14px;
}
.lwlm-couple-input-row {
  display: flex;
  gap: 10px;
}
.lwlm-couple-input-row .lwlm-input-field {
  flex: 1;
  text-align: center;
  letter-spacing: 3px;
  font-weight: 700;
}
.lwlm-couple-input-row .lwlm-btn {
  white-space: nowrap;
  width: auto;
}

.lwlm-couple-insight {
  margin-top: 24px;
  padding: 24px;
  background: var(--lwlm-bg);
  border: 1px solid var(--lwlm-border);
  border-left: 4px solid var(--lwlm-red);
  border-radius: var(--lwlm-radius-sm);
}
.lwlm-couple-locked .lwlm-locked-card {
  margin-top: 14px;
  padding: 20px;
  text-align: center;
  background: #fff;
  border: 1px dashed #e0b9b9;
  border-radius: 14px;
}
.lwlm-locked-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #7a1f1f;
  background: #fbeaea;
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 10px;
}
.lwlm-couple-locked .lwlm-locked-card .lwlm-btn {
  margin-top: 14px;
}
.lwlm-couple-insight-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.lwlm-couple-badge { font-size: 30px; line-height: 1; }
.lwlm-couple-headline {
  color: var(--lwlm-red);
  font-size: 22px;
  margin: 0;
}
.lwlm-couple-subhead {
  color: var(--lwlm-grey);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin: 3px 0 0;
}
.lwlm-couple-markers {
  margin: 6px 0 0;
  padding-left: 20px;
}
.lwlm-couple-markers .lwlm-couple-marker {
  margin: 7px 0;
  color: var(--lwlm-mid);
}
.lwlm-couple-growth {
  margin-top: 16px;
  background: var(--lwlm-red-light);
  border-radius: var(--lwlm-radius-sm);
  padding: 16px 18px;
}

/* ── Membership-first Next Steps (v1.1.2) ── */
.lwlm-cta-hero {
  background: var(--lwlm-red-light);
  border: 1px solid rgba(153, 3, 3, 0.18);
  border-radius: var(--lwlm-radius);
  padding: 32px;
  text-align: center;
  box-shadow: var(--lwlm-shadow);
}
.lwlm-cta-step {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--lwlm-red);
  margin-bottom: 10px;
}
.lwlm-cta-hero .lwlm-cta-headline { margin-top: 4px; }
.lwlm-cta-hero .lwlm-cta-desc { color: var(--lwlm-mid); margin: 12px auto 22px; max-width: 540px; }
.lwlm-cta-hero-btn {
  display: inline-block;
  font-size: 17px;
  padding: 16px 34px;
}
.lwlm-cta-founding {
  font-size: 13px;
  color: var(--lwlm-grey);
  margin-top: 16px;
  font-style: italic;
}
.lwlm-cta-share {
  text-align: center;
  margin-top: 20px;
}
.lwlm-cta-share-link {
  font-size: 14px;
  color: var(--lwlm-grey);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--lwlm-transition);
}
.lwlm-cta-share-link:hover { color: var(--lwlm-red); }

/* Membership upsell inside the pairing insight */
.lwlm-couple-upsell {
  margin-top: 28px;
  padding: 24px;
  background: var(--lwlm-red-light);
  border: 1px solid rgba(153, 3, 3, 0.18);
  border-radius: var(--lwlm-radius-sm);
  text-align: center;
}
.lwlm-couple-upsell .lwlm-narrative-paragraph { margin: 8px auto 18px; max-width: 520px; }

/* ── Connected Couple member area (v1.2.0) ── */
.lwlm-member-dash, .lwlm-member-report { max-width: 920px; margin: 0 auto; }
.lwlm-member-dash .lwlm-cta-headline { margin: 4px 0 24px; }
.lwlm-member-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.lwlm-member-tile {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px;
  background: var(--lwlm-white);
  border: 1px solid var(--lwlm-border);
  border-radius: var(--lwlm-radius);
  box-shadow: var(--lwlm-shadow);
  text-decoration: none;
  transition: transform var(--lwlm-transition), box-shadow var(--lwlm-transition), border-color var(--lwlm-transition);
}
.lwlm-member-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--lwlm-shadow-hover);
  border-color: rgba(153, 3, 3, 0.3);
}
.lwlm-member-tile-icon { font-size: 26px; line-height: 1; }
.lwlm-member-tile-title { font-weight: 700; color: var(--lwlm-dark); font-size: 17px; }
.lwlm-member-tile-desc { color: var(--lwlm-grey); font-size: 14px; line-height: 1.4; }

.lwlm-member-gate {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 28px;
  background: var(--lwlm-red-light);
  border: 1px solid rgba(153, 3, 3, 0.18);
  border-radius: var(--lwlm-radius);
}
.lwlm-member-gate p { color: var(--lwlm-mid); margin-bottom: 18px; }

.lwlm-member-scores { margin: 22px 0; display: flex; flex-direction: column; gap: 16px; }
.lwlm-member-score-head { display: flex; justify-content: space-between; margin-bottom: 6px; }
.lwlm-member-score-head .lwlm-score-label { font-weight: 600; color: var(--lwlm-dark); }
.lwlm-member-score-head .lwlm-score-pct { color: var(--lwlm-grey); }
.lwlm-score-bar { height: 8px; background: var(--lwlm-grey-light); border-radius: 999px; overflow: hidden; }
.lwlm-score-fill { height: 100%; background: var(--lwlm-grey); border-radius: 999px; }
.lwlm-score-fill.is-primary { background: var(--lwlm-red); }
.lwlm-member-pairing { margin-top: 20px; padding: 20px; background: var(--lwlm-bg); border-radius: var(--lwlm-radius-sm); }

/* Member couple block */
.lwlm-couple-partner-line { color: var(--lwlm-mid); margin-bottom: 8px; }
.lwlm-couple-partner-line .lwlm-couple-subhead { display: inline-block; margin-left: 8px; color: var(--lwlm-red); font-weight: 600; }

/* Partner invite (seat) block */
.lwlm-couple-invite { margin-top: 22px; padding-top: 20px; border-top: 1px dashed var(--lwlm-border); }
.lwlm-couple-invite .lwlm-cta-desc { margin-bottom: 12px; }
#lwlm-invite-link { font-size: 13px; color: var(--lwlm-mid); }

/* Email-to-partner share on the couple card */
.lwlm-couple-share { text-align: center; margin: 12px 0 4px; }
.lwlm-couple-email-btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--lwlm-red);
  background: var(--lwlm-white);
  border: 1.5px solid var(--lwlm-red);
  border-radius: 999px;
  padding: 9px 20px;
  text-decoration: none;
  transition: background var(--lwlm-transition), color var(--lwlm-transition);
}
.lwlm-couple-email-btn:hover { background: var(--lwlm-red); color: var(--lwlm-white); }

/* ── Membership landing / pricing page (v1.6.0) ── */
.lwlm-landing { max-width: 1000px; margin: 0 auto; }
.lwlm-center { text-align: center; }
.lwlm-landing-head { text-align: center; font-size: 40px; line-height: 1.1; margin: 6px 0 34px; color: var(--lwlm-red); }
.lwlm-landing-head .lwlm-ink { color: var(--lwlm-dark); }
.lwlm-landing-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 36px; max-width: 840px; margin: 0 auto 44px; }
.lwlm-feature { display: flex; gap: 12px; align-items: flex-start; font-size: 17px; color: var(--lwlm-mid); line-height: 1.4; }
.lwlm-check { flex: 0 0 22px; width: 22px; height: 22px; border-radius: 50%; background: #2e7d32; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; margin-top: 2px; }
.lwlm-price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.lwlm-price-card { border: 1px solid var(--lwlm-border); border-radius: var(--lwlm-radius); overflow: hidden; background: var(--lwlm-white); box-shadow: var(--lwlm-shadow); text-align: center; }
.lwlm-price-featured { transform: scale(1.04); box-shadow: var(--lwlm-shadow-hover); border-color: var(--lwlm-red); }
.lwlm-price-head { background: #111; color: #fff; font-weight: 700; font-size: 19px; padding: 16px; }
.lwlm-price-head-red { background: var(--lwlm-red); }
.lwlm-price-body { padding: 30px 22px; }
.lwlm-price-badge { display: inline-block; background: #fbe6c8; color: #8a5a00; font-weight: 700; font-size: 12px; letter-spacing: .04em; padding: 5px 12px; border-radius: 999px; margin-bottom: 14px; }
.lwlm-price-amount { font-size: 42px; font-weight: 800; color: var(--lwlm-dark); line-height: 1; }
.lwlm-price-amount span { font-size: 16px; color: var(--lwlm-grey); font-weight: 600; }
.lwlm-strike { text-decoration: line-through; color: var(--lwlm-grey); font-size: 22px; font-weight: 600; margin-right: 4px; }
.lwlm-price-note { color: var(--lwlm-grey); font-size: 14px; margin: 12px 0 24px; }
.lwlm-btn-outline { display: inline-block; background: var(--lwlm-white); color: var(--lwlm-red); border: 1.5px solid var(--lwlm-red); border-radius: 999px; padding: 12px 30px; font-weight: 700; text-decoration: none; transition: background var(--lwlm-transition), color var(--lwlm-transition); }
.lwlm-btn-outline:hover { background: var(--lwlm-red); color: #fff; }
.lwlm-price-featured .lwlm-btn-primary { width: 100%; }
.lwlm-landing-guarantee { text-align: center; color: var(--lwlm-grey); font-size: 14px; margin-top: 26px; }
@media (max-width: 860px) { .lwlm-price-grid { grid-template-columns: 1fr; } .lwlm-landing-features { grid-template-columns: 1fr; } .lwlm-price-featured { transform: none; } .lwlm-landing-head { font-size: 32px; } }

/* Back-to-dashboard link on member sub-pages */
.lwlm-back-wrap { margin: 0 0 18px; }
.lwlm-back-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--lwlm-red);
  text-decoration: none;
}
.lwlm-back-link:hover { text-decoration: underline; text-underline-offset: 3px; }

/* Member content pages: 10 minutes + workbook */
.lwlm-pair-banner { background: var(--lwlm-red-light); border: 1px solid rgba(153,3,3,.18); border-radius: var(--lwlm-radius-sm); padding: 16px 20px; margin: 16px 0 22px; }
.lwlm-pair-name { font-size: 20px; font-weight: 800; color: var(--lwlm-red); margin-top: 2px; }
.lwlm-pair-shift { color: var(--lwlm-mid); font-size: 15px; margin: 8px 0 0; line-height: 1.5; }
.lwlm-pair-solo { background: var(--lwlm-bg); border-color: var(--lwlm-border); }
.lwlm-tenmin { margin: 8px 0 18px; }
.lwlm-tenmin .lwlm-cta-label { margin-top: 16px; }
.lwlm-tenmin-note { color: var(--lwlm-grey); font-size: 14px; font-style: italic; margin-top: 20px; }
.lwlm-wb-access { margin: 20px 0 26px; }
.lwlm-wb-toc { border-top: 1px solid var(--lwlm-border); padding-top: 20px; }
.lwlm-wb-move { margin-bottom: 18px; }
.lwlm-wb-move-head { font-weight: 700; color: var(--lwlm-dark); font-size: 17px; margin-bottom: 6px; }
.lwlm-wb-list { margin: 0; padding-left: 20px; color: var(--lwlm-mid); }
.lwlm-wb-list li { margin: 4px 0; line-height: 1.5; }

/* Weekly couple check-in (flagship) */
.lwlm-checkin { background: var(--lwlm-white); border: 1px solid var(--lwlm-border); border-radius: var(--lwlm-radius); box-shadow: var(--lwlm-shadow); padding: 24px; margin: 0 0 24px; }
.lwlm-checkin-locked { background: var(--lwlm-red-light); border-color: rgba(153,3,3,.18); }
.lwlm-checkin .lwlm-cta-headline { margin: 4px 0 10px; }
.lwlm-ci-rating-row { display: flex; align-items: center; gap: 12px; margin: 14px 0 18px; }
.lwlm-ci-range { flex: 1; accent-color: var(--lwlm-red); }
.lwlm-ci-rating-out { font-size: 28px; font-weight: 800; color: var(--lwlm-red); }
.lwlm-ci-rating-max { color: var(--lwlm-grey); font-weight: 600; }
.lwlm-checkin .lwlm-input-field { width: 100%; margin: 8px 0 16px; }
.lwlm-checkin-hint { color: var(--lwlm-grey); font-size: 13px; font-style: italic; margin-top: 12px; }
.lwlm-checkin-mine { color: var(--lwlm-mid); margin-top: 12px; }
.lwlm-ci-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 16px 0; }
.lwlm-ci-col { background: var(--lwlm-bg); border-radius: var(--lwlm-radius-sm); padding: 16px; }
.lwlm-ci-who { font-size: 13px; color: var(--lwlm-grey); font-weight: 600; margin-bottom: 6px; }
.lwlm-ci-score { font-size: 30px; font-weight: 800; color: var(--lwlm-dark); line-height: 1; }
.lwlm-ci-score span { font-size: 15px; color: var(--lwlm-grey); font-weight: 600; }
.lwlm-ci-need { margin: 8px 0 0; font-size: 14px; color: var(--lwlm-mid); line-height: 1.5; }
.lwlm-ci-insight { background: var(--lwlm-red-light); border-radius: var(--lwlm-radius-sm); padding: 16px 18px; margin-top: 8px; }
.lwlm-ci-trend { margin-top: 18px; }
.lwlm-ci-bars { display: flex; align-items: flex-end; gap: 8px; height: 56px; margin-top: 8px; }
.lwlm-ci-bar { flex: 1; background: var(--lwlm-red); border-radius: 4px; min-height: 8px; }
@media (max-width: 640px) { .lwlm-ci-cols { grid-template-columns: 1fr; } }

/* Workbook Journey (guided progression) */
.lwlm-wb-progress { margin: 18px 0 20px; }
.lwlm-wb-progress-head { display: flex; justify-content: space-between; align-items: baseline; font-size: 14px; font-weight: 600; color: var(--lwlm-mid); margin-bottom: 8px; }
.lwlm-wb-progress-count { color: var(--lwlm-red); font-weight: 700; }
.lwlm-wb-progress-bar { height: 8px; background: var(--lwlm-border); border-radius: 999px; overflow: hidden; }
.lwlm-wb-progress-fill { height: 100%; background: var(--lwlm-red); border-radius: 999px; transition: width .4s ease; }
.lwlm-wb-step-card { background: var(--lwlm-white); border: 1px solid var(--lwlm-border); border-radius: var(--lwlm-radius); box-shadow: var(--lwlm-shadow); padding: 24px; margin: 0 0 22px; }
.lwlm-wb-complete { background: var(--lwlm-red-light); border-color: rgba(153,3,3,.18); }
.lwlm-wb-step-movement { font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--lwlm-red); margin-bottom: 4px; }
.lwlm-wb-step-title { font-size: 22px; font-weight: 800; color: var(--lwlm-dark); margin: 0 0 12px; line-height: 1.25; }
.lwlm-wb-book-pointer { display: flex; flex-direction: column; gap: 2px; background: var(--lwlm-bg); border-radius: var(--lwlm-radius-sm); padding: 12px 14px; margin: 14px 0 4px; }
.lwlm-wb-book-pointer span:last-child { font-weight: 600; color: var(--lwlm-mid); }
.lwlm-wb-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.lwlm-wb-map { background: var(--lwlm-white); border: 1px solid var(--lwlm-border); border-radius: var(--lwlm-radius); padding: 20px 22px; }
.lwlm-wb-map-item { display: flex; align-items: baseline; gap: 10px; padding: 7px 0; font-size: 15px; }
.lwlm-wb-map-mark { flex: 0 0 auto; width: 18px; text-align: center; font-size: 13px; }
.lwlm-wb-map-move { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; color: var(--lwlm-grey); margin-right: 4px; }
.lwlm-wb-done { color: var(--lwlm-mid); }
.lwlm-wb-done .lwlm-wb-map-mark { color: var(--lwlm-red); }
.lwlm-wb-current { color: var(--lwlm-dark); font-weight: 700; }
.lwlm-wb-current .lwlm-wb-map-mark { color: var(--lwlm-red); }
.lwlm-wb-upcoming { color: var(--lwlm-grey); }
.lwlm-wb-restart-line { margin-top: 14px; font-size: 13px; }
.lwlm-wb-restart-line a { color: var(--lwlm-grey); }

/* Workbook graduation handoff */
.lwlm-wb-handoff { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 6px 0 4px; }
.lwlm-wb-handoff-card { display: flex; flex-direction: column; gap: 6px; background: var(--lwlm-white); border: 1px solid var(--lwlm-border); border-radius: var(--lwlm-radius-sm); padding: 16px; text-decoration: none; transition: box-shadow .2s ease, transform .2s ease; }
.lwlm-wb-handoff-card:hover { box-shadow: var(--lwlm-shadow-hover); transform: translateY(-2px); }
.lwlm-wb-handoff-title { font-weight: 800; color: var(--lwlm-red); font-size: 15px; }
.lwlm-wb-handoff-desc { color: var(--lwlm-mid); font-size: 13px; line-height: 1.45; }
@media (max-width: 640px) { .lwlm-wb-handoff { grid-template-columns: 1fr; } }

/* Monthly Events hub */
.lwlm-event-card { background: var(--lwlm-white); border: 1px solid var(--lwlm-border); border-radius: var(--lwlm-radius); box-shadow: var(--lwlm-shadow); padding: 24px; margin: 18px 0 20px; }
.lwlm-event-empty { background: var(--lwlm-bg); box-shadow: none; }
.lwlm-event-title { font-size: 22px; font-weight: 800; color: var(--lwlm-dark); margin: 4px 0 6px; line-height: 1.25; }
.lwlm-event-when { font-size: 15px; font-weight: 700; color: var(--lwlm-red); margin-bottom: 10px; }
.lwlm-event-note { font-size: 13px; color: var(--lwlm-grey); font-style: italic; margin-top: 10px; }
.lwlm-event-recordings { background: var(--lwlm-white); border: 1px solid var(--lwlm-border); border-radius: var(--lwlm-radius); padding: 20px 22px; }
.lwlm-event-rec-list { list-style: none; margin: 8px 0 0; padding: 0; }
.lwlm-event-rec-list li { padding: 9px 0; border-bottom: 1px solid var(--lwlm-border); font-size: 15px; }
.lwlm-event-rec-list li:last-child { border-bottom: none; }
.lwlm-event-rec-list a { color: var(--lwlm-red); text-decoration: none; font-weight: 600; }
.lwlm-event-rec-list a:hover { text-decoration: underline; }

/* Attachment style energies (LoveWell Assessment bridge) */
.lwlm-pair-energies { margin: 6px 0 0; font-size: 14px; color: var(--lwlm-mid); }
.lwlm-gp-energies { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 6px 0 4px; }
.lwlm-gp-energy { background: var(--lwlm-bg); border-radius: var(--lwlm-radius-sm); padding: 14px 16px; }
.lwlm-gp-energy-head { font-weight: 800; color: var(--lwlm-dark); font-size: 14px; margin-bottom: 5px; }
.lwlm-gp-energy-edge { margin: 0; font-size: 14px; color: var(--lwlm-mid); line-height: 1.5; }
@media (max-width: 640px) { .lwlm-gp-energies { grid-template-columns: 1fr; } }

/* Stress Check */
.lwlm-stress-note { font-size: 14px; color: var(--lwlm-grey); font-style: italic; margin: 0 0 16px; }
.lwlm-stress-due { background: var(--lwlm-red-light); border: 1px solid rgba(153,3,3,.18); border-radius: var(--lwlm-radius); padding: 18px 20px; margin: 0 0 20px; }
.lwlm-stress-due .lwlm-btn { margin-top: 12px; }
.lwlm-stress-current { background: var(--lwlm-white); border: 1px solid var(--lwlm-border); border-radius: var(--lwlm-radius); box-shadow: var(--lwlm-shadow); padding: 22px 24px; margin: 0 0 20px; }
.lwlm-stress-snap { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.lwlm-stress-row-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 5px; }
.lwlm-stress-cat { font-weight: 600; color: var(--lwlm-mid); font-size: 14px; }
.lwlm-stress-val { font-weight: 800; color: var(--lwlm-dark); font-size: 15px; }
.lwlm-stress-val span { color: var(--lwlm-grey); font-weight: 600; font-size: 12px; }
.lwlm-stress-delta { font-size: 12px; font-weight: 700; margin-left: 8px; }
.lwlm-stress-delta.up { color: #a33; }
.lwlm-stress-delta.down { color: #227a22; }
.lwlm-stress-delta.flat { color: var(--lwlm-grey); font-weight: 600; }
.lwlm-stress-bar { height: 9px; background: var(--lwlm-border); border-radius: 999px; overflow: hidden; }
.lwlm-stress-fill { height: 100%; background: linear-gradient(90deg, #d9a441, var(--lwlm-red)); border-radius: 999px; }
.lwlm-stress-report { background: var(--lwlm-bg); border-radius: var(--lwlm-radius); padding: 20px 22px; margin: 0 0 20px; }
.lwlm-stress-report-head { font-size: 18px; font-weight: 800; color: var(--lwlm-red); margin: 4px 0 8px; }
.lwlm-stress-growth { background: var(--lwlm-white); border-radius: var(--lwlm-radius-sm); padding: 12px 16px; margin-top: 10px; }
.lwlm-stress-couple { background: var(--lwlm-white); border: 1px solid var(--lwlm-border); border-radius: var(--lwlm-radius); padding: 20px 22px; margin: 0 0 20px; }
.lwlm-stress-couple-top { font-size: 17px; font-weight: 800; color: var(--lwlm-dark); margin-top: 4px; }
.lwlm-stress-trend { background: var(--lwlm-white); border: 1px solid var(--lwlm-border); border-radius: var(--lwlm-radius); padding: 20px 22px; overflow-x: auto; }
.lwlm-stress-trend-table { width: 100%; border-collapse: collapse; font-size: 13px; margin-top: 8px; }
.lwlm-stress-trend-table th { text-align: center; color: var(--lwlm-grey); font-weight: 700; padding: 6px 4px; border-bottom: 1px solid var(--lwlm-border); }
.lwlm-stress-trend-table th:first-child, .lwlm-stress-trend-table td:first-child { text-align: left; white-space: nowrap; }
.lwlm-stress-cell { text-align: center; padding: 7px 4px; font-weight: 700; border-radius: 4px; }
.lwlm-stress-l1 { background: #f0f7f0; color: #227a22; }
.lwlm-stress-l2 { background: #fbf6ec; color: #9a7420; }
.lwlm-stress-l3 { background: #faf0ea; color: #b5551f; }
.lwlm-stress-l4 { background: var(--lwlm-red-light); color: var(--lwlm-red); }
.lwlm-stress-legend { font-size: 12px; color: var(--lwlm-grey); font-style: italic; margin-top: 10px; }
.lwlm-stress-retake-line { font-size: 13px; color: var(--lwlm-grey); margin-top: 16px; }
.lwlm-stress-roles { display: flex; flex-wrap: wrap; gap: 10px; margin: 8px 0 14px; }
.lwlm-stress-role { border: 1.5px solid var(--lwlm-border); border-radius: var(--lwlm-radius-sm); padding: 10px 16px; cursor: pointer; font-weight: 600; color: var(--lwlm-mid); }
.lwlm-stress-instruct { color: var(--lwlm-grey); font-size: 14px; margin: 0 0 18px; }
.lwlm-stress-q { padding: 14px 0; border-bottom: 1px solid var(--lwlm-border); }
.lwlm-stress-q-text { font-weight: 600; color: var(--lwlm-dark); margin-bottom: 8px; }
.lwlm-stress-q-missing { background: var(--lwlm-red-light); border-radius: var(--lwlm-radius-sm); padding: 10px 12px; }
.lwlm-stress-scale { display: flex; flex-wrap: wrap; gap: 14px; }
.lwlm-stress-scale label { display: inline-flex; align-items: center; gap: 5px; font-size: 14px; color: var(--lwlm-mid); cursor: pointer; }
#lwlm-stress-submit { margin-top: 18px; }

/* Stress Check — audience select, couple dynamic */
.lwlm-stress-select { width: 100%; max-width: 340px; padding: 10px 12px; border: 1.5px solid var(--lwlm-border); border-radius: var(--lwlm-radius-sm); font-size: 15px; color: var(--lwlm-dark); background: var(--lwlm-white); margin: 6px 0 18px; }
.lwlm-stress-couple-locked { background: var(--lwlm-red-light); border-color: rgba(153,3,3,.18); }
.lwlm-stress-couple-locked .lwlm-btn { margin-top: 10px; }
.lwlm-stress-couple-dyn { background: var(--lwlm-bg); border-radius: var(--lwlm-radius); padding: 18px 20px; margin-top: 16px; }
.lwlm-stress-markers { margin: 6px 0 4px; padding-left: 20px; }
.lwlm-stress-markers li { font-size: 14px; color: var(--lwlm-mid); line-height: 1.6; }

/* Stress Check — regulation "way back to calm" (individual) */
.lwlm-stress-regulation { background: #f0f7f0; border-left: 4px solid #227a22; border-radius: var(--lwlm-radius-sm); padding: 14px 18px; margin-top: 14px; }
.lwlm-reg-head { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 2px; }
.lwlm-reg-badge { display: inline-block; background: #227a22; color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .02em; padding: 3px 10px; border-radius: 999px; }
.lwlm-reg-why { font-style: italic; color: var(--lwlm-mid); margin: 4px 0 10px; }
.lwlm-reg-step { background: var(--lwlm-white); border-radius: var(--lwlm-radius-sm); padding: 10px 14px; margin-top: 8px; }
.lwlm-reg-step-label { display: block; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: #227a22; margin-bottom: 3px; }
.lwlm-reg-step p { margin: 0; }

/* Stress Check — couple "exit move" */
.lwlm-stress-exit { background: var(--lwlm-white); border-left: 4px solid var(--lwlm-red); border-radius: var(--lwlm-radius-sm); padding: 14px 18px; margin-top: 12px; }
.lwlm-exit-lead { font-size: 13px; font-weight: 700; color: var(--lwlm-dark); margin: 4px 0 6px; }

/* ── "Right Now" check-in + regulation journey ─────────────────────────── */
.lwlm-stress-divider { display: flex; align-items: center; text-align: center; gap: 14px; margin: 26px 0 22px; }
.lwlm-stress-divider::before, .lwlm-stress-divider::after { content: ""; flex: 1; height: 1px; background: var(--lwlm-border); }
.lwlm-stress-divider span { font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--lwlm-grey); }

.lwlm-regulate { background: var(--lwlm-white); border: 1px solid var(--lwlm-border); border-radius: var(--lwlm-radius); padding: 22px 24px; margin: 0 0 20px; }
.lwlm-reg-title { font-size: 20px; font-weight: 800; color: var(--lwlm-dark); margin: 4px 0 6px; }
.lwlm-reg-intro { color: var(--lwlm-mid); font-size: 15px; margin: 0 0 16px; }

.lwlm-reg-states { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
@media (max-width: 560px) { .lwlm-reg-states { grid-template-columns: repeat(2, 1fr); } }
.lwlm-reg-state { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 14px 8px; border: 1.5px solid var(--lwlm-border); border-radius: var(--lwlm-radius-sm); background: var(--lwlm-bg); cursor: pointer; transition: border-color .15s, transform .1s; }
.lwlm-reg-state:hover { border-color: var(--lwlm-red); transform: translateY(-1px); }
.lwlm-reg-state.is-active { border-color: var(--lwlm-red); box-shadow: 0 0 0 2px rgba(153,3,3,.12); }
.lwlm-reg-state-icon { font-size: 26px; line-height: 1; }
.lwlm-reg-state-label { font-size: 13px; font-weight: 700; color: var(--lwlm-dark); text-align: center; }
.lwlm-reg-level-1 { border-bottom: 3px solid #d98c8c; }
.lwlm-reg-level-2 { border-bottom: 3px solid #e0c072; }
.lwlm-reg-level-3 { border-bottom: 3px solid #7bb87b; }

.lwlm-reg-result { margin-top: 16px; background: #f0f7f0; border-left: 4px solid #227a22; border-radius: var(--lwlm-radius-sm); padding: 16px 18px; }
.lwlm-reg-result-state { display: inline-block; background: #227a22; color: #fff; font-size: 13px; font-weight: 700; padding: 3px 12px; border-radius: 999px; }
.lwlm-reg-result-body { font-style: italic; color: var(--lwlm-mid); margin: 8px 0 10px; }
.lwlm-reg-result-step { background: var(--lwlm-white); border-radius: var(--lwlm-radius-sm); padding: 10px 14px; }
.lwlm-reg-result-step p { margin: 0; }
.lwlm-reg-partner { margin-top: 12px; display: flex; flex-direction: column; gap: 4px; }
.lwlm-btn-soft { align-self: flex-start; background: var(--lwlm-white); color: var(--lwlm-red); border: 1.5px solid var(--lwlm-red); border-radius: 999px; padding: 8px 16px; font-weight: 700; font-size: 14px; cursor: pointer; }
.lwlm-btn-soft.is-sent { background: #f0f7f0; color: #227a22; border-color: #227a22; cursor: default; }
.lwlm-reg-partner-note { font-size: 12px; color: var(--lwlm-grey); }
.lwlm-reg-safety { font-size: 12px; color: var(--lwlm-grey); margin: 12px 0 0; line-height: 1.55; }

.lwlm-reg-journey { margin-top: 20px; background: var(--lwlm-bg); border-radius: var(--lwlm-radius); padding: 18px 20px; }
.lwlm-reg-journey-empty p { margin: 6px 0 0; color: var(--lwlm-grey); font-size: 14px; }
.lwlm-reg-ladder { display: flex; flex-direction: column; gap: 8px; margin: 8px 0 16px; }
.lwlm-reg-rung { display: grid; grid-template-columns: 92px 1fr 28px; align-items: center; gap: 10px; }
.lwlm-reg-rung-label { font-size: 13px; font-weight: 700; color: var(--lwlm-dark); }
.lwlm-reg-rung-bar { height: 12px; background: var(--lwlm-border); border-radius: 999px; overflow: hidden; }
.lwlm-reg-rung-fill { height: 100%; border-radius: 999px; }
.lwlm-reg-rung-3 .lwlm-reg-rung-fill { background: #7bb87b; }
.lwlm-reg-rung-2 .lwlm-reg-rung-fill { background: #e0c072; }
.lwlm-reg-rung-1 .lwlm-reg-rung-fill { background: #d98c8c; }
.lwlm-reg-rung-count { font-size: 13px; font-weight: 700; color: var(--lwlm-grey); text-align: right; }
.lwlm-reg-move-label, .lwlm-reg-move-scale { display: block; font-size: 12px; color: var(--lwlm-grey); }
.lwlm-reg-move-label { font-weight: 800; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 6px; }
.lwlm-reg-dots { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 4px; }
.lwlm-reg-dot { width: 30px; height: 30px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 15px; border: 2px solid transparent; }
.lwlm-reg-dot-1 { background: #faeaea; border-color: #d98c8c; }
.lwlm-reg-dot-2 { background: #fbf4e4; border-color: #e0c072; }
.lwlm-reg-dot-3 { background: #ecf6ec; border-color: #7bb87b; }
.lwlm-reg-trend-line { font-size: 14px; color: var(--lwlm-mid); margin: 12px 0 0; }

/* ── Facilitator connection ─────────────────────────────────────────────── */
.lwlm-fac-panel { background: var(--lwlm-white); border: 1px solid var(--lwlm-border); border-radius: var(--lwlm-radius); padding: 22px 24px; margin: 0 0 18px; }
.lwlm-fac-field { margin: 14px 0; }
.lwlm-fac-field-label { display: block; font-weight: 700; color: var(--lwlm-dark); margin-bottom: 8px; }
.lwlm-fac-checks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
@media (max-width: 560px) { .lwlm-fac-checks { grid-template-columns: 1fr; } }
.lwlm-fac-checks label, .lwlm-fac-radio { font-size: 14px; color: var(--lwlm-mid); display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
.lwlm-fac-radio { margin-right: 18px; }
#lwlm-fac-state { margin-top: 10px; padding: 8px 12px; border: 1.5px solid var(--lwlm-border); border-radius: var(--lwlm-radius-sm); max-width: 260px; }
.lwlm-fac-safety { background: var(--lwlm-bg); border-radius: var(--lwlm-radius-sm); padding: 14px 16px; margin: 16px 0; }
.lwlm-fac-safety-item { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; color: var(--lwlm-mid); margin: 8px 0; cursor: pointer; }
.lwlm-fac-safety-note { font-size: 12px; color: var(--lwlm-grey); margin: 8px 0 0; }
#lwlm-fac-find { margin-top: 8px; }

.lwlm-fac-intro-note { color: var(--lwlm-grey); font-size: 14px; margin: 4px 0 14px; }
.lwlm-fac-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.lwlm-fac-card { background: var(--lwlm-white); border: 1px solid var(--lwlm-border); border-radius: var(--lwlm-radius); padding: 18px; display: flex; flex-direction: column; }
.lwlm-fac-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.lwlm-fac-photo { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; background: var(--lwlm-bg); display: inline-flex; align-items: center; justify-content: center; font-size: 24px; }
.lwlm-fac-name { font-weight: 800; color: var(--lwlm-dark); }
.lwlm-fac-headline { font-size: 13px; color: var(--lwlm-grey); }
.lwlm-fac-why { background: #f0f7f0; color: #227a22; font-size: 12px; font-weight: 700; border-radius: 999px; padding: 4px 12px; align-self: flex-start; margin-bottom: 8px; }
.lwlm-fac-bio { font-size: 14px; color: var(--lwlm-mid); margin: 4px 0 10px; }
.lwlm-fac-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.lwlm-fac-tag { font-size: 12px; background: var(--lwlm-bg); color: var(--lwlm-mid); border-radius: 999px; padding: 3px 10px; }
.lwlm-fac-meta { font-size: 12px; color: var(--lwlm-grey); display: flex; flex-direction: column; gap: 2px; margin-bottom: 12px; }
.lwlm-fac-card .lwlm-btn { margin-top: auto; }

.lwlm-fac-consent, .lwlm-fac-confirm, .lwlm-fac-resources, .lwlm-fac-empty { background: var(--lwlm-white); border: 1px solid var(--lwlm-border); border-radius: var(--lwlm-radius); padding: 22px 24px; }
.lwlm-fac-resources { background: var(--lwlm-red-light); border-color: rgba(153,3,3,.18); }
.lwlm-fac-consent-list { margin: 8px 0 14px; padding-left: 20px; }
.lwlm-fac-consent-list li { font-size: 14px; color: var(--lwlm-mid); line-height: 1.6; margin: 4px 0; }
.lwlm-fac-consent-agree { display: flex; align-items: flex-start; gap: 8px; font-weight: 700; color: var(--lwlm-dark); margin: 6px 0 14px; cursor: pointer; }
.lwlm-fac-confirm-head { font-size: 20px; font-weight: 800; color: var(--lwlm-dark); margin: 4px 0 8px; }
.lwlm-fac-scope { font-size: 12px; color: var(--lwlm-grey); margin-top: 14px; }
.lwlm-fac-manage-line { font-size: 13px; color: var(--lwlm-grey); margin-top: 10px; }

/* Couple → Facilitator private rating widget */
.lwlm-fac-rate { background: var(--lwlm-bg); border-radius: var(--lwlm-radius-sm); padding: 16px 18px; margin: 16px 0; }
.lwlm-fac-rate-note { font-size: 13px; color: var(--lwlm-grey); margin: 4px 0 10px; }
.lwlm-fac-stars { display: inline-flex; gap: 4px; margin-bottom: 10px; }
.lwlm-fac-star { background: none; border: none; cursor: pointer; font-size: 30px; line-height: 1; color: var(--lwlm-border); padding: 0 2px; transition: color .1s; }
.lwlm-fac-star.on { color: #e0a621; }
.lwlm-fac-rate textarea { margin: 6px 0 10px; }
#lwlm-fac-rate-save { display: inline-block; }
#lwlm-fac-rate-msg { margin-left: 10px; font-size: 13px; }

/* Facilitator self-service area */
.lwlm-facarea-status { display: flex; flex-wrap: wrap; gap: 8px; margin: 6px 0 20px; }
.lwlm-facarea-pill { font-size: 12px; font-weight: 700; border-radius: 999px; padding: 4px 12px; background: var(--lwlm-bg); color: var(--lwlm-mid); border: 1px solid var(--lwlm-border); }
.lwlm-facarea-pill.on { background: #f0f7f0; color: #227a22; border-color: #cfe6cf; }
.lwlm-facarea-pill.mid { background: #fbf4e4; color: #9a7420; border-color: #ecd9a8; }
.lwlm-facarea-pill.off { background: var(--lwlm-bg); color: var(--lwlm-grey); }
.lwlm-facarea-section { background: var(--lwlm-white); border: 1px solid var(--lwlm-border); border-radius: var(--lwlm-radius); padding: 20px 22px; margin: 0 0 16px; }
.lwlm-facarea-empty { color: var(--lwlm-grey); font-size: 14px; }
.lwlm-facarea-req { border: 1px solid var(--lwlm-border); border-radius: var(--lwlm-radius-sm); padding: 14px 16px; margin-top: 10px; }
.lwlm-facarea-req-name { font-weight: 800; color: var(--lwlm-dark); }
.lwlm-facarea-req-intake { margin: 8px 0; padding-left: 18px; }
.lwlm-facarea-req-intake li { font-size: 14px; color: var(--lwlm-mid); line-height: 1.6; }
.lwlm-facarea-req-actions { display: flex; gap: 10px; margin-top: 6px; }
.lwlm-facarea-active { margin: 6px 0 0; padding-left: 18px; }
.lwlm-facarea-active li { font-size: 14px; color: var(--lwlm-mid); line-height: 1.7; }
.lwlm-facarea-inline { display: flex; gap: 20px; flex-wrap: wrap; }
.lwlm-facarea-availability { background: var(--lwlm-bg); border-radius: var(--lwlm-radius-sm); padding: 14px 18px; margin: 0 0 18px; }
.lwlm-facarea-switch { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; color: var(--lwlm-dark); cursor: pointer; }
.lwlm-facarea-avail-note { font-size: 13px; color: var(--lwlm-grey); margin: 6px 0 0; }

/* Facilitator Program sales page */
.lwlm-fp-tiers { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 8px 0 24px; }
@media (max-width: 620px) { .lwlm-fp-tiers { grid-template-columns: 1fr; } }
.lwlm-fp-tier { background: var(--lwlm-white); border: 1px solid var(--lwlm-border); border-radius: var(--lwlm-radius); padding: 22px 24px; }
.lwlm-fp-tier-featured { border: 2px solid var(--lwlm-red); box-shadow: 0 2px 10px rgba(153,3,3,.08); }
.lwlm-fp-tier-tag { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--lwlm-grey); background: var(--lwlm-bg); border-radius: 999px; padding: 3px 10px; margin-bottom: 8px; }
.lwlm-fp-tier-featured .lwlm-fp-tier-tag { color: var(--lwlm-red); background: var(--lwlm-red-light); }
.lwlm-fp-tier-name { font-size: 20px; font-weight: 800; color: var(--lwlm-dark); margin: 2px 0 2px; }
.lwlm-fp-tier-price { font-size: 14px; color: var(--lwlm-grey); font-weight: 700; margin: 0 0 12px; }
.lwlm-fp-list { margin: 0 0 12px; padding-left: 20px; }
.lwlm-fp-list li { font-size: 14.5px; color: var(--lwlm-mid); line-height: 1.6; margin: 5px 0; }
.lwlm-fp-note { font-size: 13px; color: var(--lwlm-grey); font-style: italic; margin: 0; }
.lwlm-fp-how { background: var(--lwlm-bg); border-radius: var(--lwlm-radius); padding: 20px 24px; margin: 0 0 22px; }
.lwlm-fp-steps { margin: 8px 0 0; padding-left: 22px; }
.lwlm-fp-steps li { font-size: 15px; color: var(--lwlm-mid); line-height: 1.7; margin: 6px 0; }
.lwlm-fp-cta { text-align: center; padding: 10px 0 6px; }
.lwlm-fp-cta-sub { font-size: 13px; color: var(--lwlm-grey); margin: 10px 0 0; }
.lwlm-fp-fine { font-size: 12px; color: var(--lwlm-grey); text-align: center; margin-top: 18px; }

/* "Right Now" partner heads-up banner (dashboard) */
.lwlm-reg-nudge { display: flex; align-items: flex-start; gap: 12px; background: #fff8ec; border: 1px solid #e8d3a0; border-radius: var(--lwlm-radius); padding: 14px 16px; margin: 0 0 16px; }
.lwlm-reg-nudge-icon { font-size: 22px; line-height: 1.2; }
.lwlm-reg-nudge-body { flex: 1; font-size: 14px; color: var(--lwlm-dark); line-height: 1.5; }
.lwlm-reg-nudge-when { color: var(--lwlm-grey); font-size: 12px; }
.lwlm-reg-nudge-x { background: none; border: none; font-size: 22px; line-height: 1; color: var(--lwlm-grey); cursor: pointer; padding: 0 2px; }

/* ── Content feedback (Personalization Phase 1) ─────────────────────────── */
.lwlm-fb{display:flex;align-items:center;flex-wrap:wrap;gap:10px;margin-top:22px;padding-top:16px;border-top:1px solid #e7e5e3;}
.lwlm-fb-label{font-size:14px;color:#71706E;}
.lwlm-fb-btn{background:#fff;color:#990303;border:1.5px solid #990303;border-radius:999px;padding:6px 16px;font-size:14px;font-weight:600;cursor:pointer;line-height:1.3;transition:background .15s,color .15s;}
.lwlm-fb-btn:hover{background:#990303;color:#fff;}
.lwlm-fb-done{font-size:14px;color:#71706E;font-style:italic;}

/* ── Love Style (52 Week Love Style Challenge) ──────────────────────────── */
.lwlm-ls-card{background:#faf9f8;border:1px solid #e7e5e3;border-left:4px solid #990303;border-radius:10px;padding:20px 22px;margin:0 0 26px;}
.lwlm-ls-card-empty{border-left-color:#c9c6c3;}
.lwlm-ls-eyebrow{font-size:12px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:#71706E;margin-bottom:6px;}
.lwlm-ls-headline{font-size:22px;font-weight:800;color:#990303;line-height:1.25;margin-bottom:4px;}
.lwlm-ls-icon{margin-right:8px;}
.lwlm-ls-short{font-style:italic;color:#71706E;margin:0 0 12px;font-size:15px;}
.lwlm-ls-sec,.lwlm-ls-mine{font-size:14px;color:#71706E;margin:10px 0 0;}
.lwlm-ls-mine{padding-top:10px;border-top:1px solid #e7e5e3;}
.lwlm-ls-form{margin-top:8px;}
.lwlm-ls-q{padding:16px 0;border-bottom:1px solid #eeecea;}
.lwlm-ls-q-text{font-size:15.5px;margin-bottom:10px;line-height:1.5;}
.lwlm-ls-opts{display:flex;flex-wrap:wrap;gap:8px;}
.lwlm-ls-opt{display:inline-flex;align-items:center;gap:6px;border:1.5px solid #e0dedb;border-radius:999px;padding:6px 14px;font-size:14px;cursor:pointer;transition:border-color .15s,background .15s;}
.lwlm-ls-opt:hover{border-color:#990303;}
.lwlm-ls-opt input{margin:0;accent-color:#990303;}
.lwlm-ls-opt:has(input:checked){border-color:#990303;background:#fdf4f4;font-weight:600;}
.lwlm-ls-bars{margin:6px 0 20px;}
.lwlm-ls-bar-row{display:flex;align-items:center;gap:10px;margin-bottom:8px;}
.lwlm-ls-bar-label{flex:0 0 120px;font-size:14px;color:#2b2b2a;}
.lwlm-ls-bar{flex:1;height:10px;background:#eeecea;border-radius:999px;overflow:hidden;}
.lwlm-ls-bar-fill{display:block;height:100%;background:#990303;border-radius:999px;}
.lwlm-ls-bar-pct{flex:0 0 42px;text-align:right;font-size:13px;color:#71706E;font-variant-numeric:tabular-nums;}
@media(max-width:600px){.lwlm-ls-bar-label{flex-basis:92px;font-size:13px;}}

/* ── 52 Week Love Style Challenge ───────────────────────────────────────── */
.lwlm-lsc-card,.lwlm-lsc-rate{background:#fff;border:1px solid #e7e5e3;border-left:4px solid #990303;border-radius:10px;padding:20px 22px;margin:0 0 22px;box-shadow:0 1px 3px rgba(0,0,0,.05);}
.lwlm-lsc-rate{background:#fdf4f4;}
.lwlm-lsc-week{font-size:12px;font-weight:700;letter-spacing:.07em;text-transform:uppercase;color:#71706E;margin-bottom:6px;}
.lwlm-lsc-title{font-size:20px;font-weight:800;color:#990303;line-height:1.28;margin-bottom:4px;}
.lwlm-lsc-for{font-size:14px;color:#71706E;margin:0 0 12px;}
.lwlm-lsc-why{font-style:italic;color:#71706E;font-size:14.5px;margin:0 0 16px;}
.lwlm-lsc-note{font-size:13px;color:#8a8987;margin:14px 0 0;padding-top:12px;border-top:1px solid #eeecea;}
.lwlm-lsc-done{background:#f2f8f2;border:1px solid #cfe3cf;color:#2f5d2f;border-radius:8px;padding:12px 14px;font-size:14.5px;}
.lwlm-lsc-hearts{display:flex;gap:6px;margin:4px 0 6px;}
.lwlm-lsc-heart{background:none;border:none;cursor:pointer;font-size:30px;line-height:1;color:#e0dedb;padding:0 2px;transition:color .12s,transform .12s;}
.lwlm-lsc-heart:hover{transform:scale(1.12);}
.lwlm-lsc-heart.on{color:#990303;}

/* ── Love Style partner nudge / invite ──────────────────────────────────── */
.lwlm-ls-invite-link{width:100%;font-size:13px;padding:9px 12px;border:1px solid #e0dedb;border-radius:8px;margin:4px 0 10px;color:#2b2b2a;background:#fff;font-family:ui-monospace,SFMono-Regular,Menlo,monospace;}
.lwlm-ls-invite-actions{display:flex;align-items:center;gap:14px;flex-wrap:wrap;}
.lwlm-ls-invite-mail{font-size:14px;color:#990303;}
.lwlm-ls-remind-msg{margin-top:10px;font-size:14px;color:#71706E;}
.lwlm-ls-nudge{display:flex;align-items:flex-start;gap:12px;background:#fdf4f4;border:1px solid #f0d9d9;border-left:4px solid #990303;border-radius:10px;padding:14px 16px;margin:0 0 20px;}
.lwlm-ls-nudge-icon{font-size:20px;line-height:1.3;flex:0 0 auto;}
.lwlm-ls-nudge-body{font-size:15px;color:#2b2b2a;line-height:1.5;}
.lwlm-ls-nudge-cta{display:inline-block;margin-top:6px;font-weight:700;color:#990303;text-decoration:none;}
.lwlm-ls-nudge-x{margin-left:auto;background:none;border:none;font-size:22px;line-height:1;color:#b7b3af;cursor:pointer;flex:0 0 auto;}
.lwlm-ls-nudge-x:hover{color:#71706E;}

/* Disabled buttons (e.g. throttled Love Style remind) */
.lwlm-btn:disabled,.lwlm-btn[disabled]{opacity:.45;cursor:not-allowed;filter:grayscale(35%);}
.lwlm-btn:disabled:hover,.lwlm-btn[disabled]:hover{background:#990303;}

/* ── Locked pairing report (real-but-blurred paywall) ───────────────────── */
.lwlm-locked{position:relative;margin-top:16px;border:1px solid #e7e5e3;border-radius:12px;overflow:hidden;}
.lwlm-locked-content{filter:blur(5px);opacity:.7;pointer-events:none;user-select:none;padding:18px 20px 22px;}
.lwlm-locked-overlay{position:absolute;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;gap:7px;padding:30px 22px;
  background:linear-gradient(to bottom,rgba(255,255,255,.45),rgba(255,255,255,.93));}
.lwlm-lock-badge{font-size:26px;line-height:1;}
.lwlm-lock-headline{margin:2px 0;font-size:19px;font-weight:800;color:#990303;}
.lwlm-lock-desc{margin:0 0 12px;font-size:14.5px;color:#2b2b2a;max-width:460px;line-height:1.5;}
.lwlm-lock-fine{margin:10px 0 0;font-size:12.5px;color:#71706E;}

/* ── "Everything inside" gallery (flows from the locked pairing report) ──── */
.lwlm-inside{margin-top:24px;}
.lwlm-inside-eyebrow{font-size:12px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:#71706E;text-align:center;margin:0 0 4px;}
.lwlm-inside-h{font-size:22px;font-weight:800;color:#990303;text-align:center;margin:0 0 6px;}
.lwlm-inside-sub{font-size:14.5px;color:#71706E;text-align:center;max-width:460px;margin:0 auto 16px;line-height:1.5;}
.lwlm-inside-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(190px,1fr));gap:12px;}
.lwlm-inside-card{background:#fff;border:1px solid #e7e5e3;border-radius:12px;padding:14px;}
.lwlm-inside-prev{background:#faf9f8;border:1px solid #e7e5e3;border-radius:8px;padding:10px;min-height:88px;}
.lwlm-inside-prev.calm{border-left:3px solid #6fa344;border-radius:0 8px 8px 0;}
.lwlm-inside-name{font-size:14px;font-weight:700;color:#2b2b2a;margin:10px 0 2px;}
.lwlm-inside-line{font-size:12.5px;color:#71706E;margin:0;line-height:1.45;}
.lwlm-inside-cta{text-align:center;margin-top:20px;}
.lwlm-inside-fine{font-size:12px;color:#71706E;margin:9px auto 0;max-width:440px;}
.lwlm-ip-label{font-size:9.5px;font-weight:700;letter-spacing:.05em;text-transform:uppercase;color:#71706E;margin:0 0 5px;}
.lwlm-ip-title{font-size:12.5px;font-weight:700;color:#990303;margin-bottom:5px;}
.lwlm-ip-row{display:flex;justify-content:space-between;font-size:11px;color:#2b2b2a;margin-bottom:1px;}
.lwlm-ip-bar{height:7px;border-radius:99px;background:#eeecea;margin:3px 0;overflow:hidden;}
.lwlm-ip-bar span{display:block;height:100%;border-radius:99px;}
.lwlm-ip-big{font-size:19px;font-weight:800;}
.lwlm-ip-dot{width:15px;height:15px;border-radius:50%;display:inline-block;border:1.5px solid;margin-right:3px;vertical-align:-2px;}
.lwlm-ip-note{font-size:11px;color:#71706E;margin:6px 0 0;line-height:1.4;}


/* ===== Daily Connect (daily reveal ritual + streak) ===== */
.lwlm-dc{max-width:640px;margin:0 auto;background:#fff;border:1px solid #e7e5e3;border-radius:12px;padding:18px 20px;box-shadow:0 1px 3px rgba(0,0,0,.05);}
.lwlm-dc-card{margin:0 0 18px;}
.lwlm-dc-head{display:flex;justify-content:space-between;align-items:flex-start;gap:10px;margin:0 0 10px;}
.lwlm-dc-streak{font-size:13px;color:#2e7d32;font-weight:600;margin-top:2px;}
.lwlm-dc-streak strong{font-size:15px;}
.lwlm-dc-q{font-size:18px;font-weight:800;color:#2b2b2a;line-height:1.3;margin:0 0 14px;}
.lwlm-dc-input{width:100%;box-sizing:border-box;border:1px solid #d9d6d2;border-radius:8px;padding:11px 12px;font-size:15px;font-family:inherit;line-height:1.5;color:#2b2b2a;resize:vertical;min-height:70px;}
.lwlm-dc-input:focus{outline:none;border-color:#990303;box-shadow:0 0 0 3px rgba(153,3,3,.08);}
.lwlm-dc-actions{margin-top:10px;display:flex;align-items:center;gap:12px;flex-wrap:wrap;}
.lwlm-dc-msg{font-size:13px;color:#2e7d32;}
.lwlm-dc-msg.err{color:#cb5b4e;}
.lwlm-dc-msg.ok{color:#2e7d32;}
.lwlm-dc-ans{background:#faf9f8;border:1px solid #e7e5e3;border-radius:8px;padding:11px 13px;margin:0 0 8px;font-size:15px;color:#2b2b2a;line-height:1.5;}
.lwlm-dc-ans.partner{background:#f7faf5;border-color:#dcebd4;}
.lwlm-dc-who{display:block;font-size:11px;font-weight:700;letter-spacing:.4px;text-transform:uppercase;color:#71706e;margin:0 0 4px;}
.lwlm-dc-ans.partner .lwlm-dc-who{color:#2e7d32;}
.lwlm-dc-wait{background:#fdf8f1;border:1px solid #ecd9bf;border-radius:8px;padding:11px 13px;font-size:14px;color:#3a3937;line-height:1.5;}
.lwlm-dc-wait .lwlm-btn{margin:8px 8px 0 0;}
.lwlm-dc-done{font-size:14px;color:#2e7d32;margin:10px 0 0;font-weight:600;}
.lwlm-dc-milestone{background:#e7f2e2;border:1px solid #cfe0c6;border-radius:8px;padding:10px 12px;margin:10px 0 0;font-size:14.5px;color:#2e7d32;font-weight:600;}
.lwlm-dc-lock{background:#f3f1ef;border:1px dashed #cfccc8;border-radius:8px;padding:11px 13px;font-size:14px;color:#7a7875;margin-top:8px;}
.lwlm-dc-nudge-banner{background:#fdf8f1;border:1px solid #ecd9bf;border-left:4px solid #c0851e;border-radius:8px;padding:10px 14px;margin:0 0 14px;font-size:14.5px;color:#3a3937;}
.lwlm-dc-history{margin-top:16px;border-top:1px solid #e7e5e3;padding-top:14px;}
.lwlm-dc-hist-item{margin:0 0 12px;}
.lwlm-dc-hist-q{font-size:13.5px;font-weight:700;color:#2b2b2a;margin:0 0 4px;}
.lwlm-dc-hist-a{font-size:13px;color:#4a4947;line-height:1.45;margin:0 0 2px;}
.lwlm-dc-hist-a span{color:#9c9a98;font-weight:600;}

/* Daily Connect — Sunday check-in edition (rating + insight) */
.lwlm-dc-scale{display:flex;flex-wrap:wrap;gap:6px;margin:0 0 12px;}
.lwlm-dc-dot{width:40px;height:40px;border:1px solid #d9d6d2;background:#fff;border-radius:8px;font-weight:700;color:#71706e;cursor:pointer;font-size:14px;}
.lwlm-dc-dot.on{background:#990303;color:#fff;border-color:#990303;}
.lwlm-dc-need{margin:2px 0 12px;}
.lwlm-dc-hint{font-size:12.5px;color:#9c9a98;margin:8px 0 0;}
.lwlm-dc-insight{background:#f7faf5;border:1px solid #dcebd4;border-radius:8px;padding:12px 14px;margin:10px 0 0;font-size:14.5px;color:#3a3937;line-height:1.55;}
.lwlm-dc-insight .lwlm-cta-label{display:block;color:#2e7d32;margin:0 0 4px;}

/* ===== Relationship Health trend ===== */
.lwlm-ht{max-width:640px;margin:0 auto;background:#fff;border:1px solid #e7e5e3;border-radius:12px;padding:16px 18px;box-shadow:0 1px 3px rgba(0,0,0,.05);}
.lwlm-ht-cardwrap{margin:0 0 18px;}
.lwlm-ht-head{display:flex;justify-content:space-between;align-items:baseline;gap:10px;margin:0 0 10px;}
.lwlm-ht-signal{font-weight:800;font-size:15px;}
.lwlm-ht-up .lwlm-ht-signal{color:#2e7d32;}
.lwlm-ht-down .lwlm-ht-signal{color:#c0851e;}
.lwlm-ht-steady .lwlm-ht-signal{color:#5f5e5c;}
.lwlm-ht-neutral .lwlm-ht-signal{color:#9c9a98;font-weight:600;font-size:13.5px;}
.lwlm-ht-chart{margin:0 0 6px;}
.lwlm-ht-legend{font-size:12px;color:#9c9a98;display:flex;gap:12px;flex-wrap:wrap;}
.lwlm-ht-legend .you{color:#990303;font-weight:600;}
.lwlm-ht-legend .partner{color:#2e7d32;font-weight:600;}
.lwlm-ht-legend .scale{color:#b3b1ae;}
.lwlm-ht-note{font-size:14px;color:#3a3937;line-height:1.5;margin:12px 0 0;}
.lwlm-ht-more{display:inline-block;margin-top:8px;font-size:13.5px;font-weight:700;color:#990303;text-decoration:none;}

/* ===== Our Story timeline ===== */
.lwlm-os{max-width:680px;margin:0 auto;}
.lwlm-os-title{font-size:23px;font-weight:800;color:#2b2b2a;margin:4px 0 16px;}
.lwlm-os-hero{display:flex;gap:12px;flex-wrap:wrap;margin:0 0 22px;}
.lwlm-os-stat{flex:1 1 120px;background:#faf9f8;border:1px solid #e7e5e3;border-radius:10px;padding:14px 12px;text-align:center;}
.lwlm-os-stat .n{display:block;font-size:26px;font-weight:800;color:#990303;line-height:1.1;}
.lwlm-os-stat .l{display:block;font-size:12.5px;color:#71706e;margin-top:3px;}
.lwlm-os-timeline{border-left:2px solid #eceae7;padding-left:18px;margin-left:6px;}
.lwlm-os-item{position:relative;margin:0 0 18px;background:#fff;border:1px solid #e7e5e3;border-radius:10px;padding:13px 15px;}
.lwlm-os-item::before{content:"";position:absolute;left:-25px;top:16px;width:10px;height:10px;border-radius:50%;background:#990303;border:2px solid #fff;}
.lwlm-os-item.checkin::before{background:#2e7d32;}
.lwlm-os-date{font-size:11.5px;font-weight:700;letter-spacing:.4px;text-transform:uppercase;color:#9c9a98;margin:0 0 4px;}
.lwlm-os-q{font-size:14.5px;font-weight:700;color:#2b2b2a;margin:0 0 7px;line-height:1.35;}
.lwlm-os-a{font-size:13.5px;color:#3a3937;line-height:1.5;margin:0 0 3px;}
.lwlm-os-a span{color:#9c9a98;font-weight:600;}
.lwlm-os-a.partner span{color:#2e7d32;}
.lwlm-os-foot{font-size:13.5px;color:#7a7875;margin-top:6px;}

/* ===== This Week's Focus (adaptive steer) ===== */
.lwlm-wf{max-width:640px;margin:0 auto 18px;background:#fff;border:1px solid #e7e5e3;border-left:5px solid #990303;border-radius:12px;padding:16px 20px;box-shadow:0 1px 3px rgba(0,0,0,.05);}
.lwlm-wf-up{border-left-color:#2e7d32;}
.lwlm-wf-down{border-left-color:#c0851e;}
.lwlm-wf-steady{border-left-color:#6fa344;}
.lwlm-wf-neutral{border-left-color:#9c9a98;}
.lwlm-wf-eyebrow{font-size:11px;font-weight:700;letter-spacing:.6px;text-transform:uppercase;color:#990303;margin:0 0 4px;}
.lwlm-wf-up .lwlm-wf-eyebrow{color:#2e7d32;}
.lwlm-wf-down .lwlm-wf-eyebrow{color:#c0851e;}
.lwlm-wf-headline{font-size:19px;font-weight:800;color:#2b2b2a;line-height:1.25;margin:0 0 6px;}
.lwlm-wf-why{font-size:14.5px;color:#3a3937;line-height:1.55;margin:0 0 14px;}

/* ===== Dashboard three-zone restructure ===== */
.lwlm-dash-header{margin:0 0 20px;}
.lwlm-dash-strip{display:flex;gap:10px;flex-wrap:wrap;margin:12px 0 0;}
.lwlm-dash-stat{flex:1 1 120px;display:flex;flex-direction:column;align-items:center;justify-content:center;
  background:#faf9f8;border:1px solid #e7e5e3;border-radius:10px;padding:12px 10px;text-decoration:none;text-align:center;}
.lwlm-dash-stat:hover{border-color:#d9d6d2;background:#f5f3f1;}
.lwlm-dash-stat .v{font-size:19px;font-weight:800;color:#990303;line-height:1.1;}
.lwlm-dash-stat .k{font-size:11.5px;color:#71706e;margin-top:3px;}
.lwlm-zone{margin:0 0 26px;}
.lwlm-zone-label{font-size:12px;font-weight:800;letter-spacing:.8px;text-transform:uppercase;color:#b3b1ae;
  margin:0 0 12px;padding-bottom:6px;border-bottom:1px solid #eceae7;}
.lwlm-zone-now > .lwlm-dc-card,.lwlm-zone-now > .lwlm-wf{margin-bottom:14px;}
.lwlm-tile-group{margin:0 0 18px;}
.lwlm-tile-group-label{font-size:13px;font-weight:700;color:#5f5e5c;margin:0 0 8px;}
.lwlm-tile-group-util{margin-top:6px;}
.lwlm-tile-group-util .lwlm-tile-group-label{color:#9c9a98;font-weight:600;}
.lwlm-tile-group-util .lwlm-member-tile{background:#faf9f8;}

/* ===== Solo "invite your partner" hero ===== */
.lwlm-invite-hero{background:#fff;border:1px solid #e3c9c9;border-left:5px solid #990303;border-radius:12px;padding:20px 22px;box-shadow:0 1px 3px rgba(0,0,0,.05);}
.lwlm-invite-hero-h{font-size:21px;font-weight:800;color:#2b2b2a;margin:4px 0 8px;line-height:1.25;}
.lwlm-invite-hero-p{font-size:15px;color:#3a3937;line-height:1.55;margin:0 0 16px;}
.lwlm-invite-hero .lwlm-btn{margin:0 0 14px;}
.lwlm-invite-hero-link{margin:0 0 12px;}
.lwlm-invite-hero-link .lwlm-cta-label{display:block;margin:0 0 5px;}
.lwlm-invite-hero-link input{width:100%;box-sizing:border-box;}
.lwlm-invite-hero-alt{font-size:13.5px;color:#71706e;margin:0;}
.lwlm-invite-hero-alt a{color:#990303;font-weight:600;text-decoration:none;}

.lwlm-lead-consent{font-size:12px;line-height:1.5;color:#77756f;margin:12px 0 0;text-align:center;}
.lwlm-lead-consent a{color:#990303;text-decoration:underline;}

.lwlm-quiz-footer{margin-top:24px;padding-top:14px;border-top:1px solid #ececec;text-align:center;font-size:12px;color:#8a8880;}
.lwlm-quiz-footer a.lwlm-quiz-footer-link{color:#990303;text-decoration:underline;}

/* ── Solo Daily Connect (freemium preview) ── */
.lwlm-solo{background:#fff;border:1px solid #eee7dc;border-radius:16px;padding:20px 24px;margin:22px 0;box-shadow:0 6px 22px rgba(0,0,0,.05);}
.lwlm-solo-progress{font-size:12px;font-weight:700;color:#a07a1e;background:#fbf4ea;border:1px solid #ffd9a8;border-radius:99px;display:inline-block;padding:4px 12px;margin:0 0 14px;}
.lwlm-solo-input{width:100%;box-sizing:border-box;}
.lwlm-solo-lock{background:#fbf4ea;border:1px solid #ffd9a8;border-radius:14px;padding:22px 20px;text-align:center;margin:6px 0 4px;}
.lwlm-solo-lock .lwlm-lock-badge{font-size:26px;}
.lwlm-solo-lock .lwlm-lock-headline{margin:8px 0 6px;font-size:20px;color:#2b2b2a;}
.lwlm-solo-lock .lwlm-lock-desc{margin:0 0 16px;font-size:15px;line-height:1.6;color:#5f5e5c;}
.lwlm-solo-fine{margin:10px 0 0;font-size:12px;color:#8a857d;}
.lwlm-dc-hist-a span{display:inline-block;font-weight:700;color:#990303;font-size:12px;margin-right:6px;}

/* 1.97.7 - the signed-out half of the member gate. Small print under the
   sign-in button, so "already a member" and "not a member yet" are visibly
   different offers rather than one button and a dead end. */
.lwlm-member-gate-alt{margin:10px 0 0;font-size:14px;line-height:1.6;color:var(--lwlm-grey);}
.lwlm-member-gate-alt a{color:var(--lwlm-red);font-weight:700;text-decoration:none;}
.lwlm-member-gate-alt a:hover{text-decoration:underline;}
