*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: #fff5f8;
  color: #3d2c35;
  min-height: 100vh;
}

/* ══════════════════════════════════════════════
   LANDING
══════════════════════════════════════════════ */
.land-nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 2rem; background: #fff;
  border-bottom: 1px solid #f0c0d0; position: sticky; top: 0; z-index: 100;
}
.land-brand { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: #c0396b; font-weight: 700; }

.land-hero {
  display: flex; align-items: center; justify-content: center;
  gap: 3rem; padding: 5rem 2rem 4rem;
  background: linear-gradient(135deg, #fff5f8 0%, #fce4ff 60%, #ffe4ef 100%);
  flex-wrap: wrap;
}
.land-hero-text { max-width: 520px; }
.land-badge {
  display: inline-block; background: #fce4ff; color: #c0396b;
  border: 1px solid #f0c0d0; border-radius: 20px; padding: .3rem .9rem;
  font-size: .8rem; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; margin-bottom: 1.1rem;
}
.land-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: #3d2c35; line-height: 1.2; margin-bottom: 1rem;
}
.land-h1 em { color: #c0396b; font-style: italic; }
.land-sub { font-size: 1.05rem; color: #7a4f62; line-height: 1.7; margin-bottom: 1.75rem; }
.land-cta-row { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.land-price-hint { font-size: .85rem; color: #9b6b80; }
.hero-svg { width: 300px; height: 300px; filter: drop-shadow(0 8px 24px rgba(192,57,107,.15)); }

.land-stats {
  display: flex; justify-content: center; align-items: center;
  background: #c0396b; padding: 2rem 1rem; flex-wrap: wrap;
}
.stat-item { display: flex; flex-direction: column; align-items: center; padding: .5rem 2.5rem; }
.stat-num  { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: #fff; }
.stat-label { font-size: .8rem; color: #fce4ff; margin-top: .2rem; text-align: center; }
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,.3); }

.land-features { padding: 5rem 2rem; background: #fff; text-align: center; }
.land-section-title {
  font-family: 'Playfair Display', serif; font-size: 2rem;
  color: #3d2c35; margin-bottom: 2.5rem;
}
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.5rem; max-width: 900px; margin: 0 auto;
}
.feature-card {
  background: #fff5f8; border: 1.5px solid #f0c0d0; border-radius: 16px;
  padding: 1.75rem 1.25rem; transition: transform .2s, box-shadow .2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(192,57,107,.1); }
.feature-icon { font-size: 2rem; margin-bottom: .75rem; }
.feature-card h3 { font-size: 1rem; color: #c0396b; margin-bottom: .5rem; font-weight: 600; }
.feature-card p  { font-size: .875rem; color: #7a4f62; line-height: 1.6; }

.land-creator { padding: 5rem 2rem; background: #fff; }
.creator-card {
  max-width: 860px; margin: 0 auto; display: flex; gap: 2.5rem; align-items: center;
  background: linear-gradient(135deg, #fff5f8, #fce4ff);
  border: 1.5px solid #f0c0d0; border-radius: 24px; padding: 2.5rem; flex-wrap: wrap;
}
.creator-avatar {
  flex-shrink: 0; width: 140px; height: 140px; border-radius: 50%;
  overflow: hidden; border: 4px solid #c0396b; box-shadow: 0 4px 20px rgba(192,57,107,.2);
}
.creator-avatar svg { width: 100%; height: 100%; }
.creator-label { font-size: .8rem; color: #9b6b80; text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.creator-name { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: #c0396b; margin: .25rem 0 .75rem; }
.creator-bio  { font-size: .95rem; color: #7a4f62; line-height: 1.7; margin-bottom: 1rem; }
.creator-tags { display: flex; gap: .6rem; flex-wrap: wrap; }
.tag { background: #fff; border: 1.5px solid #f0c0d0; border-radius: 20px; padding: .3rem .85rem; font-size: .8rem; color: #c0396b; font-weight: 500; }

.land-auth-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #ffe4ef 0%, #fce4ff 100%);
  display: flex; justify-content: center;
}
.land-footer { background: #3d2c35; padding: 2rem; }
.footer-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: .5rem; text-align: center;
}
.footer-inner .land-brand { color: #f9a8c9; }
.footer-copy { font-size: .85rem; color: #c8a0b0; }
.footer-note { font-size: .8rem; color: #9b7080; }
.footer-note strong { color: #f9a8c9; }

/* ══════════════════════════════════════════════
   SHARED
══════════════════════════════════════════════ */
.screen { min-height: 100vh; }
.card {
  background: #fff; border-radius: 20px; padding: 2.5rem 2rem;
  width: 100%; max-width: 420px;
  box-shadow: 0 8px 32px rgba(180,80,120,0.12); text-align: center;
}
.logo { font-size: 3rem; margin-bottom: .5rem; }
h1 { font-size: 1.8rem; color: #c0396b; margin-bottom: .25rem; }
.tagline { color: #9b6b80; font-size: .95rem; margin-bottom: 1.5rem; }

#auth-tabs { display: flex; gap: .5rem; margin-bottom: 1.25rem; }
.tab {
  flex: 1; padding: .6rem; border: 2px solid #f0c0d0; border-radius: 10px;
  background: transparent; cursor: pointer; font-size: .95rem; color: #9b6b80; transition: all .2s;
}
.tab.active { background: #c0396b; border-color: #c0396b; color: #fff; font-weight: 600; }

form { display: flex; flex-direction: column; gap: .75rem; }
input[type="email"], input[type="password"], input[type="text"] {
  padding: .75rem 1rem; border: 1.5px solid #f0c0d0; border-radius: 10px;
  font-size: 1rem; outline: none; transition: border-color .2s; background: #fff;
}
input:focus { border-color: #c0396b; }

.btn-primary {
  padding: .8rem; background: #c0396b; color: #fff; border: none;
  border-radius: 10px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: background .2s;
}
.btn-primary:hover { background: #a02d58; }
.btn-sm  { padding: .45rem 1rem !important; font-size: .9rem !important; border-radius: 8px !important; }
.btn-lg  { padding: .9rem 2rem; font-size: 1.05rem; border-radius: 12px; }
.btn-outline {
  padding: .4rem .9rem; border: 1.5px solid #c0396b; border-radius: 8px;
  background: transparent; color: #c0396b; cursor: pointer; font-size: .85rem; transition: all .2s;
}
.btn-outline:hover { background: #c0396b; color: #fff; }
.btn-link { background: none; border: none; color: #9b6b80; font-size: .85rem; cursor: pointer; margin-top: .75rem; text-decoration: underline; }

.message { margin-top: 1rem; font-size: .9rem; min-height: 1.2rem; }
.message.error   { color: #c0392b; }
.message.success { color: #27ae60; }

/* ══════════════════════════════════════════════
   APP HEADER & NAV
══════════════════════════════════════════════ */
header {
  background: #fff; border-bottom: 1px solid #f0c0d0;
  padding: .75rem 1.5rem; position: sticky; top: 0; z-index: 50;
}
.header-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.app-brand { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: #c0396b; font-weight: 700; white-space: nowrap; }
.app-nav { display: flex; gap: .35rem; flex-wrap: wrap; }
.nav-btn {
  padding: .45rem .85rem; border: 1.5px solid #f0c0d0; border-radius: 20px;
  background: transparent; color: #7a4f62; cursor: pointer; font-size: .82rem;
  font-weight: 500; transition: all .2s; white-space: nowrap;
}
.nav-btn:hover  { border-color: #c0396b; color: #c0396b; }
.nav-btn.active { background: #c0396b; border-color: #c0396b; color: #fff; font-weight: 600; }
.header-right { display: flex; align-items: center; gap: .75rem; font-size: .85rem; color: #3d2c35; white-space: nowrap; }

/* ══════════════════════════════════════════════
   APP SECTIONS
══════════════════════════════════════════════ */
.app-section { max-width: 1000px; margin: 0 auto; padding: 2rem 1rem 3rem; }
.section-header { margin-bottom: 2rem; }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: #c0396b; margin-bottom: .4rem; }
.section-header p  { color: #7a4f62; font-size: .95rem; }
.section-subtitle  { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: #3d2c35; margin: 2rem 0 1rem; }

/* DASHBOARD */
.dash-hero {
  background: linear-gradient(135deg, #ffe4ef, #fce4ff);
  border-radius: 20px; padding: 2rem; margin-bottom: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.dash-hero-text h2 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: #c0396b; margin-bottom: .4rem; }
.dash-hero-text p  { color: #7a4f62; font-size: .95rem; max-width: 420px; }
.dash-quote {
  background: #fff; border-left: 4px solid #c0396b; border-radius: 0 12px 12px 0;
  padding: 1rem 1.25rem; font-size: .9rem; color: #7a4f62; font-style: italic;
  max-width: 300px; line-height: 1.6;
}
.dash-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 2rem; }
.dash-stat-card {
  background: #fff; border: 1.5px solid #f0c0d0; border-radius: 16px;
  padding: 1.25rem; display: flex; align-items: center; gap: 1rem;
  cursor: pointer; transition: all .2s;
}
.dash-stat-card:hover { border-color: #c0396b; transform: translateY(-2px); box-shadow: 0 4px 16px rgba(192,57,107,.1); }
.dsc-icon { font-size: 2rem; }
.dsc-val  { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: #c0396b; font-weight: 700; }
.dsc-label { font-size: .78rem; color: #9b6b80; }

/* YEAR PLAN */
.overall-progress-wrap { margin-bottom: 2rem; }
.overall-bar-bg { background: #f0c0d0; border-radius: 20px; height: 14px; overflow: hidden; margin-bottom: .4rem; }
.overall-bar    { height: 100%; background: linear-gradient(90deg, #e879a0, #c0396b); border-radius: 20px; transition: width .5s ease; }
#year-overall-label { font-size: .85rem; color: #9b6b80; }

.month-block { margin-bottom: 1rem; border: 1.5px solid #f0c0d0; border-radius: 16px; overflow: hidden; background: #fff; }
.month-header {
  padding: 1rem 1.25rem; cursor: pointer; transition: background .2s;
}
.month-header:hover { background: #fff5f8; }
.month-title-row { display: flex; align-items: center; gap: .75rem; margin-bottom: .5rem; }
.month-dot  { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.month-name { font-weight: 600; font-size: .95rem; flex: 1; }
.month-pct  { font-size: .85rem; color: #9b6b80; font-weight: 600; }
.month-mini-bar-bg { background: #f0c0d0; border-radius: 10px; height: 6px; overflow: hidden; }
.month-mini-bar    { height: 100%; border-radius: 10px; transition: width .4s ease; }
.month-steps { padding: 1rem; display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; border-top: 1px solid #f0c0d0; background: #fff5f8; }

/* STEP CARDS */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; }
.step-card {
  background: #fff; border: 2px solid #f0c0d0; border-radius: 14px;
  padding: 1.1rem; display: flex; gap: .85rem; cursor: pointer;
  transition: all .2s; user-select: none;
}
.step-card:hover { border-color: #c0396b; box-shadow: 0 4px 16px rgba(192,57,107,.12); transform: translateY(-2px); }
.step-card.done  { background: #fff5f8; border-color: #c0396b; }
.step-icon { font-size: 1.75rem; flex-shrink: 0; }
.step-body h3 { font-size: .9rem; color: #c0396b; margin-bottom: .25rem; font-weight: 600; }
.step-body p  { font-size: .8rem; color: #7a4f62; line-height: 1.5; }

/* JOURNAL */
.journal-compose {
  background: #fff; border: 1.5px solid #f0c0d0; border-radius: 16px;
  padding: 1.5rem; margin-bottom: 2rem;
}
.journal-compose-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 1rem; margin-bottom: 1rem; }
.journal-date { font-size: .85rem; color: #9b6b80; font-weight: 500; }
.mood-picker  { display: flex; flex-direction: column; align-items: flex-end; gap: .4rem; }
.mood-picker span { font-size: .8rem; color: #9b6b80; }
.mood-options { display: flex; gap: .4rem; }
.mood-btn {
  font-size: 1.4rem; background: none; border: 2px solid transparent;
  border-radius: 50%; width: 40px; height: 40px; cursor: pointer;
  transition: all .15s; display: flex; align-items: center; justify-content: center;
}
.mood-btn:hover   { border-color: #f0c0d0; background: #fff5f8; }
.mood-btn.selected { border-color: #c0396b; background: #ffe4ef; }

textarea {
  width: 100%; padding: .85rem 1rem; border: 1.5px solid #f0c0d0; border-radius: 10px;
  font-size: .95rem; font-family: inherit; resize: vertical; outline: none;
  transition: border-color .2s; line-height: 1.6; margin-bottom: .75rem;
}
textarea:focus { border-color: #c0396b; }

.journal-entries-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.journal-entries-header h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: #3d2c35; }
select {
  padding: .4rem .75rem; border: 1.5px solid #f0c0d0; border-radius: 8px;
  font-size: .85rem; color: #3d2c35; background: #fff; outline: none; cursor: pointer;
}

.journal-entry {
  background: #fff; border: 1.5px solid #f0c0d0; border-radius: 14px;
  padding: 1.25rem; margin-bottom: 1rem; transition: box-shadow .2s;
}
.journal-entry:hover { box-shadow: 0 4px 16px rgba(192,57,107,.08); }
.je-header { display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem; }
.je-mood   { font-size: 1.5rem; }
.je-date   { font-size: .82rem; color: #9b6b80; flex: 1; }
.je-delete { background: none; border: none; cursor: pointer; font-size: 1rem; opacity: .5; transition: opacity .2s; }
.je-delete:hover { opacity: 1; }
.je-text   { font-size: .9rem; color: #3d2c35; line-height: 1.7; white-space: pre-wrap; }
.journal-empty { text-align: center; padding: 3rem; color: #9b6b80; font-size: .95rem; }

/* RESOURCE CARDS */
.resource-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; margin-bottom: 2rem; }
.resource-card {
  background: #fff; border: 1.5px solid #f0c0d0; border-radius: 16px;
  padding: 1.5rem; transition: all .2s;
}
.resource-card:hover { border-color: #c0396b; transform: translateY(-3px); box-shadow: 0 6px 20px rgba(192,57,107,.1); }
.resource-card.urgent { border-color: #e879a0; background: #fff5f8; }
.rc-icon { font-size: 2rem; margin-bottom: .75rem; }
.resource-card h3 { font-size: 1rem; color: #c0396b; margin-bottom: .5rem; font-weight: 600; }
.resource-card p  { font-size: .875rem; color: #7a4f62; line-height: 1.6; margin-bottom: 1rem; }
.rc-link {
  display: inline-block; color: #c0396b; font-size: .875rem; font-weight: 600;
  text-decoration: none; border-bottom: 1.5px solid #f0c0d0; padding-bottom: 1px;
  transition: border-color .2s;
}
.rc-link:hover { border-color: #c0396b; }

.doctor-tip {
  background: linear-gradient(135deg, #ffe4ef, #fce4ff);
  border-radius: 14px; padding: 1.25rem 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start; font-size: .9rem; color: #7a4f62; line-height: 1.6;
}
.doctor-tip span { font-size: 1.5rem; flex-shrink: 0; }
.doctor-tip em { color: #c0396b; font-style: normal; font-weight: 600; }

/* CRISIS BANNER */
.crisis-banner {
  background: #c0396b; color: #fff; border-radius: 16px;
  padding: 1.25rem 1.5rem; display: flex; align-items: center; gap: 1.25rem;
  margin-bottom: 2rem; flex-wrap: wrap;
}
.crisis-icon { font-size: 2rem; flex-shrink: 0; }
.crisis-banner strong { font-size: 1rem; display: block; margin-bottom: .2rem; }
.crisis-banner p { font-size: .875rem; opacity: .9; }
.crisis-banner .btn-primary { background: #fff; color: #c0396b; white-space: nowrap; }
.crisis-banner .btn-primary:hover { background: #ffe4ef; }

/* LOCATION SEARCH */
.location-search { background: #fff; border: 1.5px solid #f0c0d0; border-radius: 16px; padding: 1.5rem; margin-bottom: 2rem; }
.location-search h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: #3d2c35; margin-bottom: 1rem; }
.location-input-row { display: flex; gap: .75rem; flex-wrap: wrap; }
.location-input-row input { flex: 1; min-width: 200px; }
.location-result-box { margin-top: 1rem; padding: 1rem; background: #fff5f8; border-radius: 10px; font-size: .9rem; color: #3d2c35; line-height: 1.6; }

/* ══════════════════════════════════════════════
   MOM CONNECT
══════════════════════════════════════════════ */
.connect-setup-card {
  background: #fff; border: 1.5px solid #f0c0d0; border-radius: 20px;
  padding: 2rem; margin-bottom: 2rem;
}
.connect-setup-card h3 {
  font-family: 'Playfair Display', serif; font-size: 1.4rem;
  color: #c0396b; margin-bottom: .4rem;
}
.connect-setup-card > p { font-size: .9rem; color: #7a4f62; margin-bottom: 1.5rem; }

.connect-form { display: flex; flex-direction: column; gap: 1.1rem; }
.connect-form-row { display: flex; flex-direction: column; gap: .35rem; }
.connect-form-row label { font-size: .85rem; font-weight: 600; color: #3d2c35; }
.optional { font-weight: 400; color: #9b6b80; }

.connect-tags-pick { display: flex; flex-wrap: wrap; gap: .5rem; }
.ctag {
  padding: .4rem .9rem; border: 1.5px solid #f0c0d0; border-radius: 20px;
  background: #fff; color: #7a4f62; font-size: .82rem; cursor: pointer;
  transition: all .15s; font-family: inherit;
}
.ctag:hover    { border-color: #c0396b; color: #c0396b; }
.ctag.selected { background: #c0396b; border-color: #c0396b; color: #fff; font-weight: 600; }

/* Search bar */
.mc-search-bar {
  background: #fff; border: 1.5px solid #f0c0d0; border-radius: 16px;
  padding: 1.25rem 1.5rem; margin-bottom: 1.5rem;
}
.mc-your-zip {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem;
  font-size: .9rem; color: #3d2c35;
}
.mc-your-zip strong { color: #c0396b; }
.mc-search-row { display: flex; gap: .75rem; flex-wrap: wrap; }
.mc-search-row input { flex: 1; min-width: 160px; }

/* Results */
.mc-results-count { font-size: .9rem; color: #7a4f62; margin-bottom: 1rem; }
.mc-results-count strong { color: #c0396b; }

.mc-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.mc-card {
  background: #fff; border: 1.5px solid #f0c0d0; border-radius: 18px;
  padding: 1.25rem; display: flex; gap: 1rem; align-items: flex-start;
  transition: all .2s;
}
.mc-card:hover { border-color: #c0396b; box-shadow: 0 6px 20px rgba(192,57,107,.1); transform: translateY(-2px); }

.mc-card-avatar {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #f9a8c9, #c0396b);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 700; color: #fff;
  font-family: 'Playfair Display', serif;
}
.mc-card-name  { font-weight: 700; font-size: 1rem; color: #3d2c35; margin-bottom: .2rem; }
.mc-card-meta  { font-size: .8rem; color: #9b6b80; margin-bottom: .4rem; }
.mc-card-bio   { font-size: .85rem; color: #7a4f62; line-height: 1.5; margin-bottom: .6rem; }
.mc-card-tags  { display: flex; flex-wrap: wrap; gap: .35rem; }
.mc-itag {
  background: #fff5f8; border: 1px solid #f0c0d0; border-radius: 12px;
  padding: .2rem .6rem; font-size: .75rem; color: #c0396b;
}

.mc-empty {
  text-align: center; padding: 3rem 1rem; color: #9b6b80;
}
.mc-empty-icon { font-size: 3rem; margin-bottom: 1rem; }
.mc-empty p    { font-size: .95rem; line-height: 1.7; }
.mc-empty strong { color: #c0396b; }

.mc-loading {
  display: flex; flex-direction: column; align-items: center;
  gap: 1rem; padding: 3rem; color: #9b6b80; font-size: .9rem;
}
.mc-spinner {
  width: 36px; height: 36px; border: 3px solid #f0c0d0;
  border-top-color: #c0396b; border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ══════════════════════════════════════════════
   PAYWALL
══════════════════════════════════════════════ */
#paywall-screen {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #ffe4ef 0%, #fce4ff 100%); min-height: 100vh;
}
.paywall-card { max-width: 440px; }
.price-box { margin: 1.25rem 0; display: flex; align-items: baseline; justify-content: center; gap: .35rem; }
.price        { font-size: 3rem; font-weight: 800; color: #c0396b; }
.price-period { font-size: 1.1rem; color: #9b6b80; }
.feature-list {
  list-style: none; text-align: left; margin: 0 auto 1.5rem; max-width: 280px;
  display: flex; flex-direction: column; gap: .6rem; font-size: .95rem; color: #3d2c35;
}

/* APP FOOTER */
.app-footer {
  text-align: center; padding: 1.5rem; font-size: .82rem; color: #9b6b80;
  border-top: 1px solid #f0c0d0; margin-top: 2rem;
}
.app-footer strong { color: #c0396b; }

@media (max-width: 600px) {
  .dash-cards { grid-template-columns: 1fr 1fr; }
  .dash-hero  { flex-direction: column; }
  .dash-quote { max-width: 100%; }
  .header-inner { gap: .5rem; }
  .app-nav { gap: .25rem; }
  .nav-btn { font-size: .75rem; padding: .35rem .6rem; }
}

.hidden { display: none !important; }

/* ══════════════════════════════════════════════
   DONATE MODAL
══════════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(61,44,53,.55);
  display: flex; align-items: center; justify-content: center;
  z-index: 200; padding: 1rem; backdrop-filter: blur(3px);
}
.modal-card {
  background: #fff; border-radius: 24px; padding: 2.25rem 2rem;
  max-width: 420px; width: 100%; position: relative; text-align: center;
  box-shadow: 0 16px 48px rgba(192,57,107,.2);
}
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; font-size: 1.1rem; cursor: pointer;
  color: #9b6b80; line-height: 1; padding: .25rem .4rem; border-radius: 6px;
  transition: background .15s;
}
.modal-close:hover { background: #fff5f8; }
.modal-icon { font-size: 2.5rem; margin-bottom: .5rem; }
.modal-card h2 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: #c0396b; margin-bottom: .4rem; }
.modal-sub { font-size: .9rem; color: #7a4f62; line-height: 1.6; margin-bottom: 1.5rem; }

.donate-amounts { display: flex; gap: .6rem; justify-content: center; margin-bottom: 1rem; flex-wrap: wrap; }
.donate-amt {
  padding: .55rem 1.1rem; border: 2px solid #f0c0d0; border-radius: 10px;
  background: #fff; color: #7a4f62; font-size: .95rem; font-weight: 600;
  cursor: pointer; transition: all .15s; font-family: inherit;
}
.donate-amt:hover    { border-color: #c0396b; color: #c0396b; }
.donate-amt.selected { background: #c0396b; border-color: #c0396b; color: #fff; }

.donate-custom-row {
  display: flex; align-items: center; border: 1.5px solid #f0c0d0;
  border-radius: 10px; overflow: hidden; transition: border-color .2s;
}
.donate-custom-row:focus-within { border-color: #c0396b; }
.donate-dollar { padding: .7rem .75rem; background: #fff5f8; color: #9b6b80; font-weight: 600; font-size: 1rem; }
.donate-custom-row input {
  flex: 1; border: none; padding: .7rem .75rem; font-size: 1rem;
  outline: none; font-family: inherit; color: #3d2c35;
}

.donate-note { font-size: .78rem; color: #9b6b80; margin-top: .75rem; }

/* ══════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════ */
.land-testimonials { padding: 5rem 2rem; background: linear-gradient(135deg, #fff5f8, #fce4ff); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem; max-width: 960px; margin: 0 auto;
}
.testimonial-card {
  background: #fff; border: 1.5px solid #f0c0d0; border-radius: 20px;
  padding: 1.75rem 1.5rem; transition: transform .2s, box-shadow .2s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(192,57,107,.1); }
.tcard-stars  { color: #c0396b; font-size: 1rem; margin-bottom: .75rem; letter-spacing: .1em; }
.tcard-text   { font-size: .9rem; color: #3d2c35; line-height: 1.75; font-style: italic; margin-bottom: 1rem; }
.tcard-author { font-size: .8rem; color: #9b6b80; font-weight: 600; }

/* ══════════════════════════════════════════════
   AFFIRMATION CARD
══════════════════════════════════════════════ */
.affirmation-card {
  background: linear-gradient(135deg, #c0396b, #e879a0);
  border-radius: 16px; padding: 1.25rem 1.5rem; margin-bottom: 1.5rem;
  color: #fff; position: relative; display: flex; flex-direction: column; gap: .4rem;
}
.affirmation-close {
  position: absolute; top: .75rem; right: .75rem;
  background: rgba(255,255,255,.2); border: none; color: #fff;
  border-radius: 50%; width: 28px; height: 28px; cursor: pointer;
  font-size: .85rem; display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.affirmation-close:hover { background: rgba(255,255,255,.35); }
.affirmation-label { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; opacity: .85; }
.affirmation-text  { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-style: italic; line-height: 1.5; padding-right: 2rem; }

/* ══════════════════════════════════════════════
   TODAY'S TASK CARD
══════════════════════════════════════════════ */
.today-task-wrap { margin-bottom: 1rem; }
.today-task-card { margin-bottom: 2rem; }
.ttc-inner {
  background: #fff; border: 2px solid #c0396b; border-radius: 18px;
  padding: 1.25rem 1.5rem; display: flex; align-items: center; gap: 1.25rem;
  cursor: pointer; transition: all .2s; box-shadow: 0 4px 16px rgba(192,57,107,.12);
}
.ttc-inner:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(192,57,107,.18); }
.ttc-inner.done  { background: #fff5f8; border-color: #9b6b80; }
.ttc-icon  { font-size: 2.5rem; flex-shrink: 0; }
.ttc-body  { flex: 1; }
.ttc-month { font-size: .75rem; color: #9b6b80; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; margin-bottom: .2rem; }
.ttc-title { font-size: 1.05rem; color: #c0396b; font-weight: 700; margin-bottom: .3rem; }
.ttc-desc  { font-size: .875rem; color: #7a4f62; line-height: 1.5; }
.ttc-tap   { font-size: .75rem; color: #9b6b80; white-space: nowrap; font-weight: 500; }

/* ══════════════════════════════════════════════
   MOOD CHART
══════════════════════════════════════════════ */
.mood-chart-wrap { background: #fff; border: 1.5px solid #f0c0d0; border-radius: 16px; padding: 1.25rem 1.5rem; margin-bottom: 2rem; }
.mood-chart {
  display: flex; align-items: flex-end; gap: 4px; height: 80px;
  margin-bottom: .75rem; overflow-x: auto; padding-bottom: 4px;
}
.mood-bar-wrap { display: flex; flex-direction: column; align-items: center; gap: 2px; min-width: 28px; }
.mood-bar      { width: 20px; border-radius: 4px 4px 0 0; transition: height .4s ease; min-height: 6px; }
.mood-bar-emoji { font-size: .75rem; line-height: 1; }
.mood-bar-day   { font-size: .6rem; color: #9b6b80; }
.mood-chart-legend { display: flex; flex-wrap: wrap; gap: .5rem; font-size: .75rem; color: #9b6b80; }

/* ══════════════════════════════════════════════
   JOURNAL PROMPTS & CRISIS
══════════════════════════════════════════════ */
.journal-prompt-wrap {
  background: linear-gradient(135deg, #fff5f8, #fce4ff);
  border: 1.5px solid #f0c0d0; border-radius: 12px;
  padding: 1rem 1.25rem; margin-bottom: 1rem;
}
.journal-prompt-label { font-size: .75rem; font-weight: 600; color: #c0396b; text-transform: uppercase; letter-spacing: .05em; display: block; margin-bottom: .35rem; }
.journal-prompt-text  { font-size: .95rem; color: #3d2c35; line-height: 1.6; margin-bottom: .5rem; font-style: italic; }

.journal-crisis-banner {
  background: #fff3cd; border: 1.5px solid #f0c040; border-radius: 12px;
  padding: 1rem 1.25rem; margin-bottom: 1rem;
  display: flex; align-items: flex-start; gap: 1rem; flex-wrap: wrap;
}
.journal-crisis-banner span { font-size: 1.5rem; flex-shrink: 0; }
.journal-crisis-banner strong { display: block; color: #856404; margin-bottom: .25rem; font-size: .95rem; }
.journal-crisis-banner p { font-size: .875rem; color: #856404; line-height: 1.5; }
.journal-crisis-banner .btn-primary { background: #c0396b; white-space: nowrap; }

/* ══════════════════════════════════════════════
   BREATHING EXERCISE
══════════════════════════════════════════════ */
.breathe-container {
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
  padding: 2rem 1rem; max-width: 480px; margin: 0 auto 2rem;
}
.breathe-ring-wrap { position: relative; }
.breathe-ring {
  width: 200px; height: 200px; border-radius: 50%;
  border: 6px solid #f0c0d0; background: #fff5f8;
  display: flex; align-items: center; justify-content: center;
  transition: transform 4s ease, background .5s, border-color .5s;
  box-shadow: 0 0 0 0 rgba(192,57,107,0);
}
.breathe-ring.breathe-inhale {
  transform: scale(1.25);
  background: #ffe4ef; border-color: #c0396b;
  box-shadow: 0 0 40px rgba(192,57,107,.2);
  transition: transform 4s ease, background .5s, border-color .5s;
}
.breathe-ring.breathe-hold {
  transform: scale(1.25);
  background: #fce4ff; border-color: #9b6b80;
  transition: transform 0.1s, background .5s, border-color .5s;
}
.breathe-ring.breathe-exhale {
  transform: scale(1);
  background: #fff5f8; border-color: #f0c0d0;
  transition: transform 8s ease, background .5s, border-color .5s;
}
.breathe-ring.breathe-done {
  background: linear-gradient(135deg, #ffe4ef, #fce4ff);
  border-color: #c0396b;
}
.breathe-inner { text-align: center; }
#breathe-label { display: block; font-family: 'Playfair Display', serif; font-size: 1.1rem; color: #c0396b; font-weight: 600; }
.breathe-count { display: block; font-size: 2.5rem; font-weight: 700; color: #3d2c35; line-height: 1.2; }
.breathe-controls { text-align: center; }
.breathe-tip { font-size: .85rem; color: #9b6b80; margin-top: .75rem; }
.breathe-rounds-label { font-size: .9rem; color: #c0396b; font-weight: 600; min-height: 1.4rem; }

.breathe-info-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem; max-width: 800px; margin: 0 auto;
}
.breathe-info-card {
  background: #fff; border: 1.5px solid #f0c0d0; border-radius: 16px; padding: 1.5rem;
}
.bi-icon { font-size: 2rem; margin-bottom: .75rem; }
.breathe-info-card h3 { font-size: 1rem; color: #c0396b; margin-bottom: .5rem; font-weight: 600; }
.breathe-info-card p  { font-size: .875rem; color: #7a4f62; line-height: 1.6; }

/* ══════════════════════════════════════════════
   EPDS SELF-CHECK
══════════════════════════════════════════════ */
.epds-intro-card {
  background: #fff; border: 1.5px solid #f0c0d0; border-radius: 20px;
  padding: 2.5rem 2rem; max-width: 560px; margin: 0 auto; text-align: center;
}
.epds-intro-icon { font-size: 3rem; margin-bottom: 1rem; }
.epds-intro-card h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #c0396b; margin-bottom: .75rem; }
.epds-intro-card p  { font-size: .95rem; color: #7a4f62; line-height: 1.7; margin-bottom: 1.5rem; }
.epds-disclaimer { font-size: .78rem; color: #9b6b80; margin-top: 1rem; }

.epds-progress-wrap { margin-bottom: 1.5rem; }
.epds-progress-bar-bg { background: #f0c0d0; border-radius: 20px; height: 8px; overflow: hidden; margin-bottom: .4rem; }
.epds-progress-bar    { height: 100%; background: linear-gradient(90deg, #e879a0, #c0396b); border-radius: 20px; transition: width .4s ease; }
#epds-progress-label  { font-size: .85rem; color: #9b6b80; }

.epds-question-card {
  background: #fff; border: 1.5px solid #f0c0d0; border-radius: 20px;
  padding: 2rem; max-width: 600px; margin: 0 auto;
}
.epds-q-text { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: #3d2c35; line-height: 1.5; margin-bottom: 1.5rem; }
.epds-options { display: flex; flex-direction: column; gap: .75rem; }
.epds-opt {
  display: flex; align-items: center; gap: 1rem;
  padding: .85rem 1.25rem; border: 1.5px solid #f0c0d0; border-radius: 12px;
  background: #fff; cursor: pointer; text-align: left; font-size: .95rem;
  color: #3d2c35; transition: all .15s; font-family: inherit;
}
.epds-opt:hover { border-color: #c0396b; background: #fff5f8; color: #c0396b; }
.epds-opt-letter {
  width: 28px; height: 28px; border-radius: 50%; background: #f0c0d0;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700; color: #c0396b; flex-shrink: 0;
}

.epds-result-card {
  background: #fff; border: 1.5px solid #f0c0d0; border-radius: 20px;
  padding: 2.5rem 2rem; max-width: 560px; margin: 0 auto; text-align: center;
}
.epds-result-icon  { font-size: 3rem; margin-bottom: .5rem; }
.epds-result-score { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; line-height: 1; }
.epds-result-level { font-size: 1.1rem; font-weight: 600; margin-bottom: 1rem; }
.epds-result-advice { font-size: .95rem; color: #7a4f62; line-height: 1.7; margin-bottom: 1.5rem; }
.epds-crisis-note {
  background: #fff3cd; border: 1.5px solid #f0c040; border-radius: 12px;
  padding: 1rem 1.25rem; margin-bottom: 1.5rem; font-size: .9rem; color: #856404; line-height: 1.6; text-align: left;
}
.epds-result-actions { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1rem; }

.epds-history-wrap { max-width: 600px; margin: 0 auto; }
.epds-history-list { display: flex; flex-direction: column; gap: .6rem; }
.epds-history-item {
  background: #fff; border: 1.5px solid #f0c0d0; border-radius: 12px;
  padding: .85rem 1.25rem; display: flex; align-items: center; gap: 1rem;
}
.ehi-date  { font-size: .85rem; color: #9b6b80; flex: 1; }
.ehi-score { font-weight: 700; color: #c0396b; font-size: 1rem; }
.ehi-level { font-size: .8rem; color: #7a4f62; }

/* ══════════════════════════════════════════════
   ONBOARDING MODAL
══════════════════════════════════════════════ */
.onboarding-card { max-width: 440px; }
.onboard-form { text-align: left; margin-top: 1.25rem; }
.onboard-label { display: block; font-size: .9rem; font-weight: 600; color: #3d2c35; margin-bottom: .5rem; }
.onboard-date-input {
  width: 100%; padding: .75rem 1rem; border: 1.5px solid #f0c0d0; border-radius: 10px;
  font-size: 1rem; outline: none; transition: border-color .2s; background: #fff; color: #3d2c35;
}
.onboard-date-input:focus { border-color: #c0396b; }
.onboard-hint { font-size: .8rem; color: #9b6b80; margin-top: .5rem; line-height: 1.5; }

/* ══════════════════════════════════════════════
   YEAR PLAN — CURRENT MONTH HIGHLIGHT
══════════════════════════════════════════════ */
.month-current { border-color: #c0396b !important; box-shadow: 0 0 0 2px rgba(192,57,107,.15); }
.month-current-badge {
  font-size: .72rem; background: #c0396b; color: #fff;
  border-radius: 20px; padding: .15rem .6rem; font-weight: 600; white-space: nowrap;
}

/* ══════════════════════════════════════════════
   MOBILE BOTTOM NAV
══════════════════════════════════════════════ */
.mobile-nav {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #fff; border-top: 1px solid #f0c0d0;
  z-index: 100; padding: .4rem 0 calc(.4rem + env(safe-area-inset-bottom));
  justify-content: space-around; align-items: center;
}
.mob-nav-btn {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  background: none; border: none; cursor: pointer; padding: .3rem .5rem;
  color: #9b6b80; transition: color .15s; min-width: 52px;
}
.mob-nav-btn.active { color: #c0396b; }
.mob-nav-icon  { font-size: 1.3rem; line-height: 1; }
.mob-nav-label { font-size: .6rem; font-weight: 600; text-transform: uppercase; letter-spacing: .03em; }

@media (max-width: 700px) {
  .mobile-nav { display: flex; }
  #app-screen  { padding-bottom: 70px; }
  .app-nav     { display: none; }
  .dash-cards  { grid-template-columns: 1fr 1fr; }
  .dash-hero   { flex-direction: column; }
  .dash-quote  { max-width: 100%; }
  .header-inner { gap: .5rem; }
  .header-right .btn-outline:not(:last-child) { display: none; }
  .ttc-tap { display: none; }
  .breathe-ring { width: 160px; height: 160px; }
}

/* ══════════════════════════════════════════════
   BIOMETRIC ASSESSMENT
══════════════════════════════════════════════ */
.bio-tabs { display: flex; gap: .5rem; margin-bottom: 1.5rem; }
.bio-tab {
  flex: 1; padding: .75rem 1rem; border: 2px solid #f0c0d0; border-radius: 12px;
  background: #fff; color: #7a4f62; font-size: .95rem; font-weight: 600;
  cursor: pointer; transition: all .2s; text-align: center; font-family: inherit;
}
.bio-tab:hover { border-color: #c0396b; color: #c0396b; }
.bio-tab.active { background: #c0396b; border-color: #c0396b; color: #fff; }

.bio-card {
  background: #fff; border: 1.5px solid #f0c0d0; border-radius: 20px;
  padding: 2rem; margin-bottom: 1.5rem;
}
.bio-card-header { display: flex; gap: 1.25rem; align-items: flex-start; margin-bottom: 1.5rem; }
.bio-card-icon { font-size: 2.5rem; flex-shrink: 0; }
.bio-card-header h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: #c0396b; margin-bottom: .4rem; }
.bio-card-header p { font-size: .9rem; color: #7a4f62; line-height: 1.6; }

.bio-how-it-works {
  background: #fff5f8; border-radius: 12px; padding: 1.25rem 1.5rem; margin-bottom: 1.5rem;
}
.bio-how-it-works h4 { font-size: .85rem; color: #c0396b; text-transform: uppercase; letter-spacing: .05em; margin-bottom: .75rem; }
.bio-how-it-works ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.bio-how-it-works li { font-size: .875rem; color: #7a4f62; line-height: 1.5; padding-left: 1.25rem; position: relative; }
.bio-how-it-works li::before { content: "→"; position: absolute; left: 0; color: #c0396b; font-weight: 600; }

.bio-visual-wrap { margin-bottom: 1.5rem; }
.bio-canvas {
  width: 100%; height: 120px; border: 1.5px solid #f0c0d0; border-radius: 12px;
  background: #fff5f8; display: block; margin-bottom: 1rem;
}
.bio-live-stats { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.bls-item { display: flex; flex-direction: column; align-items: center; gap: .2rem; min-width: 80px; }
.bls-val { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: #c0396b; font-weight: 700; }
.bls-label { font-size: .72rem; color: #9b6b80; text-transform: uppercase; letter-spacing: .04em; }

.bio-actions { display: flex; gap: .75rem; justify-content: center; margin-bottom: 1rem; }
.bio-permission-note { font-size: .75rem; color: #9b6b80; text-align: center; }

.bio-result { margin-bottom: 1.5rem; }
.bio-result-card {
  background: #fff; border: 1.5px solid #f0c0d0; border-radius: 20px;
  padding: 2rem; text-align: center;
}
.bio-result-icon { font-size: 3rem; margin-bottom: .5rem; }
.bio-result-score { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; }
.bio-result-level { font-size: 1.1rem; font-weight: 600; margin-bottom: 1rem; }
.bio-result-advice { font-size: .9rem; color: #7a4f62; line-height: 1.7; margin-bottom: 1.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }

.bio-result-scale { max-width: 400px; margin: 0 auto; }
.brs-bar { height: 8px; background: linear-gradient(90deg, #27ae60, #2980b9, #e67e22, #c0396b); border-radius: 4px; position: relative; margin-bottom: .5rem; }
.brs-marker { position: absolute; top: -4px; width: 16px; height: 16px; background: #3d2c35; border: 3px solid #fff; border-radius: 50%; box-shadow: 0 2px 6px rgba(0,0,0,.2); transform: translateX(-50%); }
.brs-labels { display: flex; justify-content: space-between; font-size: .65rem; color: #9b6b80; }

.bio-metrics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem; }
.bio-metric { display: flex; flex-direction: column; align-items: center; gap: .2rem; padding: 1rem; background: #fff5f8; border-radius: 12px; }
.bm-val { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #c0396b; font-weight: 700; }
.bm-label { font-size: .75rem; color: #3d2c35; font-weight: 600; }
.bm-range { font-size: .65rem; color: #9b6b80; }

/* Eye tracking */
.eye-video-wrap { position: relative; border-radius: 16px; overflow: hidden; margin-bottom: 1rem; max-width: 400px; margin-left: auto; margin-right: auto; }
.eye-video { width: 100%; display: block; border-radius: 16px; transform: scaleX(-1); }
.eye-overlay-canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; display: none; }
.eye-target { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.eye-target-dot { width: 20px; height: 20px; background: #c0396b; border-radius: 50%; animation: pulse-dot 2s ease-in-out infinite; box-shadow: 0 0 20px rgba(192,57,107,.4); }
.eye-target-label { font-size: .75rem; color: #fff; background: rgba(61,44,53,.7); padding: .2rem .6rem; border-radius: 8px; }
@keyframes pulse-dot { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.3); } }

.bio-disclaimer-card {
  background: #fff5f8; border: 1.5px solid #f0c0d0; border-radius: 16px;
  padding: 1.25rem 1.5rem; display: flex; gap: 1rem; align-items: flex-start;
  margin-top: 2rem;
}
.bio-disclaimer-card span { font-size: 1.5rem; flex-shrink: 0; }
.bio-disclaimer-card strong { display: block; color: #c0396b; margin-bottom: .3rem; font-size: .9rem; }
.bio-disclaimer-card p { font-size: .82rem; color: #7a4f62; line-height: 1.6; }

.bio-history-wrap { margin-top: 1.5rem; }
.bio-history-list { display: flex; flex-direction: column; gap: .6rem; }
.bio-history-item {
  background: #fff; border: 1.5px solid #f0c0d0; border-radius: 12px;
  padding: .85rem 1.25rem; display: flex; align-items: center; gap: 1rem;
}
.bhi-date  { font-size: .85rem; color: #9b6b80; flex: 1; }
.bhi-score { font-weight: 700; color: #c0396b; font-size: .9rem; }
.bhi-level { font-size: .8rem; color: #7a4f62; }

@media (max-width: 600px) {
  .bio-metrics-grid { grid-template-columns: 1fr; }
  .bio-card-header { flex-direction: column; }
}

/* ══════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════ */
.land-how-it-works { padding: 5rem 2rem; background: #fff; text-align: center; }
.hiw-grid {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; max-width: 900px; margin: 0 auto; flex-wrap: wrap;
}
.hiw-step {
  background: #fff5f8; border: 1.5px solid #f0c0d0; border-radius: 20px;
  padding: 2rem 1.5rem; flex: 1; min-width: 200px; max-width: 260px;
  transition: transform .2s, box-shadow .2s;
}
.hiw-step:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(192,57,107,.1); }
.hiw-num {
  width: 44px; height: 44px; border-radius: 50%; background: #c0396b;
  color: #fff; font-family: 'Playfair Display', serif; font-size: 1.3rem;
  font-weight: 700; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.hiw-step h3 { font-size: 1rem; color: #c0396b; margin-bottom: .5rem; font-weight: 600; }
.hiw-step p  { font-size: .85rem; color: #7a4f62; line-height: 1.6; }
.hiw-arrow { font-size: 1.5rem; color: #f0c0d0; font-weight: 700; }
@media (max-width: 700px) { .hiw-arrow { display: none; } }

/* ══════════════════════════════════════════════
   PRICING SECTION
══════════════════════════════════════════════ */
.land-pricing { padding: 5rem 2rem; background: linear-gradient(135deg, #ffe4ef, #fce4ff); text-align: center; }
.pricing-card {
  background: #fff; border: 2px solid #c0396b; border-radius: 24px;
  padding: 2.5rem 2rem; max-width: 480px; margin: 0 auto; position: relative;
  box-shadow: 0 12px 40px rgba(192,57,107,.15);
}
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: #c0396b; color: #fff; padding: .3rem 1.25rem; border-radius: 20px;
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
}
.pricing-amount { display: flex; align-items: baseline; justify-content: center; gap: .15rem; margin: 1.5rem 0 .5rem; }
.pricing-dollar { font-size: 1.5rem; color: #c0396b; font-weight: 700; }
.pricing-num    { font-family: 'Playfair Display', serif; font-size: 4rem; color: #c0396b; font-weight: 700; line-height: 1; }
.pricing-period { font-size: 1.1rem; color: #9b6b80; }
.pricing-tagline { font-size: .9rem; color: #7a4f62; margin-bottom: 1.5rem; }
.pricing-features {
  list-style: none; text-align: left; display: flex; flex-direction: column;
  gap: .6rem; margin-bottom: 2rem; font-size: .9rem; color: #3d2c35;
}
.pricing-buttons { display: flex; flex-direction: column; gap: .75rem; }
.pricing-note { font-size: .75rem; color: #9b6b80; margin-top: 1rem; }

/* ══════════════════════════════════════════════
   PAYPAL BUTTON & DIVIDER
══════════════════════════════════════════════ */
.btn-paypal {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .8rem 1.5rem; background: #0070ba; color: #fff; border: none;
  border-radius: 10px; font-size: 1rem; font-weight: 600; cursor: pointer;
  text-decoration: none; transition: background .2s; text-align: center;
}
.btn-paypal:hover { background: #005ea6; }
.btn-paypal.btn-lg { padding: .9rem 2rem; font-size: 1.05rem; border-radius: 12px; }
.paypal-icon { font-size: 1.2rem; }
.paypal-note { font-size: .75rem; color: #9b6b80; margin-top: .5rem; text-align: center; }

.paywall-divider {
  display: flex; align-items: center; gap: 1rem; margin: 1.25rem 0;
  color: #9b6b80; font-size: .8rem;
}
.paywall-divider::before, .paywall-divider::after {
  content: ""; flex: 1; height: 1px; background: #f0c0d0;
}

/* ══════════════════════════════════════════════
   FOOTER PAYMENT BADGES
══════════════════════════════════════════════ */
.footer-payment-badges { display: flex; gap: .75rem; margin-top: .5rem; }
.fpb {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px; padding: .25rem .6rem; font-size: .72rem; color: #c8a0b0;
}

/* ══════════════════════════════════════════════
   SMOOTH TRANSITIONS
══════════════════════════════════════════════ */
.app-section {
  animation: fadeIn .3s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.land-hero, .land-stats, .land-features, .land-how-it-works,
.land-pricing, .land-testimonials, .land-creator, .land-auth-section {
  animation: slideUp .6s ease;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Better stat cards grid on 4 items */
.dash-cards { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }

/* ══════════════════════════════════════════════
   PAYWALL IMPROVEMENTS
══════════════════════════════════════════════ */
.paywall-card { max-width: 480px; }
.paywall-method-title {
  font-family: 'Playfair Display', serif; font-size: 1rem;
  color: #3d2c35; margin: 1.5rem 0 1rem; text-align: center;
}
.paypal-pay-section {
  background: #f8f9fa; border: 1.5px solid #f0c0d0; border-radius: 14px;
  padding: 1.25rem; margin-top: .5rem; text-align: center;
}
.paypal-instructions {
  font-size: .85rem; color: #7a4f62; font-weight: 600; margin-bottom: .75rem;
}
.paypal-email-note {
  font-size: .72rem; color: #9b6b80; margin-top: .5rem;
}
.btn-confirm-paypal {
  width: 100%; padding: .75rem; background: #27ae60; color: #fff; border: none;
  border-radius: 10px; font-size: .95rem; font-weight: 600; cursor: pointer;
  transition: background .2s;
}
.btn-confirm-paypal:hover { background: #219a52; }

/* ══════════════════════════════════════════════
   CANCEL SUBSCRIPTION
══════════════════════════════════════════════ */
.app-footer-inner {
  display: flex; flex-direction: column; align-items: center; gap: .75rem;
}
.btn-cancel-sub {
  background: none; border: 1px solid #f0c0d0; border-radius: 8px;
  padding: .35rem .85rem; font-size: .75rem; color: #9b6b80;
  cursor: pointer; transition: all .2s;
}
.btn-cancel-sub:hover { border-color: #c0392b; color: #c0392b; }

.cancel-card { max-width: 440px; }
.cancel-options { display: flex; flex-direction: column; gap: .75rem; margin-top: 1.5rem; }
.btn-cancel-confirm {
  width: 100%; padding: .7rem; background: none; border: 1.5px solid #c0392b;
  border-radius: 10px; color: #c0392b; font-size: .9rem; font-weight: 600;
  cursor: pointer; transition: all .2s;
}
.btn-cancel-confirm:hover { background: #c0392b; color: #fff; }
.cancel-note { font-size: .75rem; color: #9b6b80; margin-top: 1rem; text-align: center; line-height: 1.5; }
