/* SaiWisdoma Daily Growth Pro - All classes prefixed swdgp- to avoid theme conflicts */
.swdgp-wrap {
  --swdgp-navy-deepest: #0a1428;
  --swdgp-navy-deep: #0f1d3a;
  --swdgp-navy: #14274e;
  --swdgp-navy-light: #1e3a64;
  --swdgp-gold: #d4af37;
  --swdgp-gold-bright: #e8c659;
  --swdgp-gold-soft: #b8941f;
  --swdgp-gold-glow: rgba(212, 175, 55, 0.4);
  --swdgp-cream: #f5f0e1;
  --swdgp-cream-soft: #faf6ec;
  --swdgp-whisper: rgba(245, 240, 225, 0.7);
  --swdgp-whisper-dim: rgba(245, 240, 225, 0.5);

  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--swdgp-cream);
  background: var(--swdgp-navy-deepest);
  background-image:
    radial-gradient(ellipse at top left, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(30, 58, 100, 0.4) 0%, transparent 50%),
    linear-gradient(180deg, var(--swdgp-navy-deepest) 0%, var(--swdgp-navy-deep) 50%, var(--swdgp-navy-deepest) 100%);
  position: relative;
  margin: -20px -20px;
  padding: 20px;
  min-height: 100vh;
  overflow-x: hidden;
}

.swdgp-wrap *,
.swdgp-wrap *::before,
.swdgp-wrap *::after {
  box-sizing: border-box;
}

.swdgp-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(212, 175, 55, 0.3), transparent),
    radial-gradient(1px 1px at 60% 70%, rgba(245, 240, 225, 0.2), transparent),
    radial-gradient(1px 1px at 80% 20%, rgba(212, 175, 55, 0.25), transparent),
    radial-gradient(1px 1px at 30% 80%, rgba(245, 240, 225, 0.15), transparent),
    radial-gradient(2px 2px at 90% 50%, rgba(212, 175, 55, 0.2), transparent);
  background-size: 800px 800px, 600px 600px, 700px 700px, 500px 500px, 900px 900px;
  pointer-events: none;
  opacity: 0.5;
  z-index: 0;
}

.swdgp-container {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* HEADER */
.swdgp-header { padding: 40px 0 20px; text-align: center; }
.swdgp-brand-mark {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 18px;
  color: var(--swdgp-gold);
  letter-spacing: 4px; text-transform: uppercase;
  margin-bottom: 8px;
  opacity: 0; animation: swdgp-fadeUp 0.8s ease forwards;
}
.swdgp-date-ribbon {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 24px; border: 1px solid var(--swdgp-gold);
  border-radius: 100px; background: rgba(212, 175, 55, 0.08);
  font-size: 14px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--swdgp-gold-bright); margin-top: 16px;
  opacity: 0; animation: swdgp-fadeUp 0.8s ease 0.1s forwards;
}
.swdgp-date-ribbon::before, .swdgp-date-ribbon::after { content: '✦'; font-size: 11px; }
.swdgp-welcome-back {
  margin-top: 16px; font-family: 'Cormorant Garamond', serif;
  font-size: 18px; color: var(--swdgp-cream); font-style: italic;
  opacity: 0; animation: swdgp-fadeUp 0.8s ease 0.2s forwards;
}
.swdgp-welcome-back strong { color: var(--swdgp-gold-bright); font-style: normal; }

/* HERO */
.swdgp-hero { text-align: center; padding: 30px 0 40px; }
.swdgp-hero h1 {
  font-family: 'Playfair Display', serif; font-weight: 800;
  font-size: clamp(48px, 8vw, 84px); line-height: 1.05;
  color: var(--swdgp-cream); margin: 0 0 16px;
  opacity: 0; animation: swdgp-fadeUp 1s ease 0.2s forwards;
  letter-spacing: -1px;
}
.swdgp-hero h1 .accent {
  font-style: italic; color: var(--swdgp-gold);
  font-weight: 600; position: relative; display: inline-block;
}
.swdgp-hero h1 .accent::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--swdgp-gold), transparent);
}
.swdgp-hero-subtitle {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 22px; color: var(--swdgp-whisper);
  max-width: 560px; margin: 0 auto;
  opacity: 0; animation: swdgp-fadeUp 1s ease 0.4s forwards;
}

/* STATS */
.swdgp-stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin: 40px 0;
  opacity: 0; animation: swdgp-fadeUp 1s ease 0.5s forwards;
}
.swdgp-stat-card {
  background: linear-gradient(135deg, rgba(20, 39, 78, 0.8), rgba(15, 29, 58, 0.9));
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 16px; padding: 24px 16px; text-align: center;
  position: relative; overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}
.swdgp-stat-card:hover { transform: translateY(-4px); border-color: var(--swdgp-gold); }
.swdgp-stat-icon { font-size: 28px; margin-bottom: 8px; }
.swdgp-stat-value {
  font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700;
  color: var(--swdgp-gold-bright); line-height: 1; margin-bottom: 4px;
}
.swdgp-stat-label {
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--swdgp-whisper); font-weight: 500;
}
.streak-flame { display: inline-block; animation: swdgp-flicker 2s ease-in-out infinite; }
@keyframes swdgp-flicker {
  0%, 100% { transform: scale(1) rotate(-2deg); filter: drop-shadow(0 0 8px var(--swdgp-gold-glow)); }
  50% { transform: scale(1.08) rotate(2deg); filter: drop-shadow(0 0 16px var(--swdgp-gold-glow)); }
}

/* JOURNEY */
.swdgp-journey {
  margin: 40px 0 50px;
  background: linear-gradient(135deg, rgba(20, 39, 78, 0.6), rgba(10, 20, 40, 0.8));
  border-radius: 20px; padding: 28px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  opacity: 0; animation: swdgp-fadeUp 1s ease 0.6s forwards;
}
.swdgp-journey-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px; flex-wrap: wrap; gap: 12px;
}
.swdgp-journey-title { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--swdgp-cream); font-weight: 600; }
.swdgp-journey-level { font-size: 14px; letter-spacing: 2px; text-transform: uppercase; color: var(--swdgp-gold); font-weight: 600; }
.swdgp-journey-bar {
  height: 10px; background: rgba(0, 0, 0, 0.4);
  border-radius: 100px; overflow: hidden; position: relative;
  border: 1px solid rgba(212, 175, 55, 0.15);
}
.swdgp-journey-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--swdgp-gold-soft), var(--swdgp-gold-bright), var(--swdgp-gold));
  border-radius: 100px; position: relative;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 12px var(--swdgp-gold-glow);
}
.swdgp-journey-fill::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: swdgp-shimmer 2.5s linear infinite;
}
@keyframes swdgp-shimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
.swdgp-journey-meta {
  display: flex; justify-content: space-between;
  margin-top: 12px; font-size: 14px; color: var(--swdgp-whisper);
}
.swdgp-journey-meta strong { color: var(--swdgp-gold-bright); }

/* CARDS */
.swdgp-card {
  background: linear-gradient(160deg, rgba(20, 39, 78, 0.85), rgba(10, 20, 40, 0.95));
  border-radius: 24px; padding: 36px 32px; margin-bottom: 28px;
  position: relative; border: 1px solid rgba(212, 175, 55, 0.25);
  opacity: 0; transform: translateY(20px);
  animation: swdgp-fadeUp 1s ease forwards 0.7s;
  overflow: hidden;
}
.swdgp-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--swdgp-gold), transparent);
}
.swdgp-card-header {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 24px; padding-bottom: 18px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}
.swdgp-card-num {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 42px; font-weight: 600; color: var(--swdgp-gold);
  line-height: 1; min-width: 50px;
}
.swdgp-card-tag {
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--swdgp-gold-bright); margin-bottom: 4px; font-weight: 600;
}
.swdgp-card-title {
  font-family: 'Playfair Display', serif; font-size: 28px;
  color: var(--swdgp-cream); font-weight: 600; line-height: 1.2; margin: 0;
}
.swdgp-card-body { font-size: 17px; line-height: 1.75; color: var(--swdgp-cream-soft); }
.swdgp-card-body p { margin: 0 0 14px; }

/* NUGGET */
.swdgp-nugget {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.04));
  border-left: 3px solid var(--swdgp-gold);
  padding: 24px 28px; border-radius: 8px; margin: 20px 0;
  position: relative;
}
.swdgp-nugget::before {
  content: '"'; font-family: 'Playfair Display', serif;
  font-size: 80px; color: var(--swdgp-gold);
  position: absolute; top: -10px; left: 12px;
  opacity: 0.25; line-height: 1;
}
.swdgp-nugget-text {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 22px; line-height: 1.5; color: var(--swdgp-cream);
  position: relative; z-index: 1;
}
.swdgp-nugget-author {
  margin-top: 12px; font-size: 14px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--swdgp-gold); font-weight: 500;
}

/* MINDSET */
.swdgp-mindset-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; }
.swdgp-mindset-shift { padding: 20px; border-radius: 12px; font-size: 17px; line-height: 1.55; }
.swdgp-mindset-shift.from {
  background: rgba(180, 70, 70, 0.1);
  border: 1px solid rgba(180, 70, 70, 0.3);
  color: var(--swdgp-whisper);
  text-decoration: line-through;
  text-decoration-color: rgba(180, 70, 70, 0.5);
}
.swdgp-mindset-shift.to {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--swdgp-cream); font-weight: 500;
}
.swdgp-mindset-label {
  display: block; font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 8px;
  font-weight: 600; text-decoration: none;
}
.swdgp-mindset-shift.from .swdgp-mindset-label { color: rgba(220, 120, 120, 0.8); }
.swdgp-mindset-shift.to .swdgp-mindset-label { color: var(--swdgp-gold-bright); }

/* ACTION */
.swdgp-action-card {
  background: linear-gradient(135deg, var(--swdgp-navy-light), var(--swdgp-navy));
  border: 2px solid var(--swdgp-gold);
}
.swdgp-action-step {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 0; border-bottom: 1px dashed rgba(212, 175, 55, 0.2);
  cursor: pointer; transition: padding-left 0.3s ease;
}
.swdgp-action-step:last-child { border-bottom: none; }
.swdgp-action-step:hover { padding-left: 8px; }
.swdgp-action-checkbox {
  width: 28px; height: 28px; border: 2px solid var(--swdgp-gold);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
  transition: all 0.3s ease; background: transparent;
}
.swdgp-action-step.done .swdgp-action-checkbox {
  background: var(--swdgp-gold); transform: rotate(360deg);
}
.swdgp-action-step.done .swdgp-action-checkbox::after {
  content: '✓'; color: var(--swdgp-navy-deepest);
  font-weight: 700; font-size: 18px;
}
.swdgp-action-step.done .swdgp-action-text {
  text-decoration: line-through; color: var(--swdgp-whisper-dim);
}
.swdgp-action-text { font-size: 17px; line-height: 1.55; color: var(--swdgp-cream); transition: color 0.3s ease; }

/* REFLECTION */
.swdgp-reflection-question {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 26px; line-height: 1.4; color: var(--swdgp-cream);
  text-align: center; margin: 16px 0 24px; padding: 0 12px;
}
.swdgp-reflection-textarea {
  width: 100%; min-height: 140px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px; padding: 18px 20px;
  font-family: 'DM Sans', sans-serif; font-size: 17px; line-height: 1.6;
  color: var(--swdgp-cream); resize: vertical;
  transition: border-color 0.3s ease;
}
.swdgp-reflection-textarea:focus {
  outline: none; border-color: var(--swdgp-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}
.swdgp-reflection-textarea::placeholder { color: var(--swdgp-whisper-dim); font-style: italic; }
.swdgp-save-reflection {
  margin-top: 16px; padding: 12px 28px;
  background: transparent; border: 1px solid var(--swdgp-gold);
  color: var(--swdgp-gold);
  font-family: 'DM Sans', sans-serif; font-size: 15px;
  letter-spacing: 2px; text-transform: uppercase;
  border-radius: 100px; cursor: pointer;
  transition: all 0.3s ease; font-weight: 600;
}
.swdgp-save-reflection:hover { background: var(--swdgp-gold); color: var(--swdgp-navy-deepest); }

/* CHALLENGE */
.swdgp-challenge-banner {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
  border: 1px solid var(--swdgp-gold);
  border-radius: 16px; padding: 24px;
  text-align: center; margin-top: 16px;
  position: relative; overflow: hidden;
}
.swdgp-challenge-banner::before {
  content: '⚔'; position: absolute; font-size: 200px;
  color: var(--swdgp-gold); opacity: 0.05;
  top: -50px; right: -30px;
}
.swdgp-challenge-text {
  font-family: 'Playfair Display', serif; font-size: 22px;
  font-weight: 600; color: var(--swdgp-cream);
  margin-bottom: 8px; position: relative;
}
.swdgp-challenge-reward {
  font-size: 14px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--swdgp-gold-bright); font-weight: 600; position: relative;
}
.swdgp-challenge-btn {
  margin-top: 16px; padding: 14px 36px;
  background: var(--swdgp-gold); border: none;
  color: var(--swdgp-navy-deepest);
  font-family: 'DM Sans', sans-serif; font-size: 15px;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  border-radius: 100px; cursor: pointer;
  transition: all 0.3s ease; position: relative;
  box-shadow: 0 4px 20px var(--swdgp-gold-glow);
}
.swdgp-challenge-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 24px var(--swdgp-gold-glow); }
.swdgp-challenge-btn.accepted {
  background: rgba(212, 175, 55, 0.2);
  color: var(--swdgp-gold-bright);
  border: 1px solid var(--swdgp-gold);
}

/* BADGES */
.swdgp-badges-section { margin: 40px 0 60px; text-align: center; }
.swdgp-badges-title { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--swdgp-cream); margin: 0 0 8px; }
.swdgp-badges-subtitle { font-size: 15px; color: var(--swdgp-whisper); margin-bottom: 32px; font-style: italic; }
.swdgp-badges-row { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.swdgp-badge {
  width: 80px; height: 80px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; position: relative;
  transition: all 0.4s ease; cursor: pointer;
  background: rgba(20, 39, 78, 0.6);
  border: 1px dashed rgba(212, 175, 55, 0.3);
  filter: grayscale(0.8); opacity: 0.5;
}
.swdgp-badge.earned {
  background: linear-gradient(135deg, var(--swdgp-gold), var(--swdgp-gold-soft));
  box-shadow: 0 4px 20px var(--swdgp-gold-glow);
  animation: swdgp-pulse-badge 3s ease-in-out infinite;
  filter: none; opacity: 1; border: none;
}
.swdgp-badge:hover { transform: scale(1.1) rotate(5deg); }
.swdgp-badge-name {
  position: absolute; bottom: -28px; left: 50%;
  transform: translateX(-50%);
  font-size: 11px; letter-spacing: 1px;
  text-transform: uppercase; color: var(--swdgp-whisper);
  white-space: nowrap;
}
@keyframes swdgp-pulse-badge {
  0%, 100% { box-shadow: 0 4px 20px var(--swdgp-gold-glow); }
  50% { box-shadow: 0 4px 32px var(--swdgp-gold-glow); }
}

/* TOMORROW PREVIEW (BLURRED) */
.swdgp-tomorrow-preview {
  background: linear-gradient(135deg, rgba(20, 39, 78, 0.5), rgba(10, 20, 40, 0.7));
  border: 1px dashed rgba(212, 175, 55, 0.3);
  border-radius: 20px; padding: 28px; text-align: center;
  margin: 30px 0;
}
.swdgp-preview-label {
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--swdgp-gold); margin-bottom: 16px; font-weight: 600;
}
.swdgp-preview-blur {
  filter: blur(4px); pointer-events: none;
  font-style: italic;
  -webkit-user-select: none; user-select: none;
}
.swdgp-preview-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; color: var(--swdgp-cream);
}

/* CHATBOT */
.swdgp-chatbot-section {
  background: linear-gradient(135deg, var(--swdgp-navy), var(--swdgp-navy-deep));
  border: 2px solid var(--swdgp-gold); border-radius: 28px;
  padding: 40px 32px; margin: 50px 0 40px;
  text-align: center; position: relative; overflow: hidden;
}
.swdgp-chatbot-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.08), transparent 50%);
}
.swdgp-chatbot-icon {
  font-size: 56px; margin-bottom: 16px;
  display: inline-block;
  animation: swdgp-float 3s ease-in-out infinite;
}
@keyframes swdgp-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.swdgp-chatbot-title {
  font-family: 'Playfair Display', serif; font-size: 32px;
  font-weight: 700; color: var(--swdgp-cream);
  margin: 0 0 12px; position: relative;
}
.swdgp-chatbot-title .accent { font-style: italic; color: var(--swdgp-gold); }
.swdgp-chatbot-subtitle {
  font-size: 17px; color: var(--swdgp-whisper);
  max-width: 480px; margin: 0 auto 28px;
  line-height: 1.6; position: relative;
}
.swdgp-chatbot-prompts {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px; margin-bottom: 28px; position: relative;
}
.swdgp-prompt-chip {
  padding: 10px 20px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--swdgp-cream); border-radius: 100px;
  font-size: 14px; cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'DM Sans', sans-serif;
}
.swdgp-prompt-chip:hover {
  background: var(--swdgp-gold); color: var(--swdgp-navy-deepest);
  border-color: var(--swdgp-gold); transform: translateY(-2px);
}
.swdgp-chatbot-shortcode-area {
  background: rgba(0, 0, 0, 0.3);
  border: 1px dashed rgba(212, 175, 55, 0.4);
  border-radius: 16px; padding: 24px;
  margin-top: 24px; position: relative; z-index: 1;
  text-align: left;
}
.shortcode-label {
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--swdgp-gold-bright); margin-bottom: 12px;
  font-weight: 600; text-align: center;
}
.shortcode-info {
  font-size: 15px; color: var(--swdgp-whisper);
  font-style: italic; line-height: 1.5; text-align: center;
}
.shortcode-info code {
  background: rgba(212, 175, 55, 0.15);
  color: var(--swdgp-gold-bright);
  padding: 2px 8px; border-radius: 4px;
  font-family: monospace; font-size: 14px;
}

/* SHARE SECTION */
.swdgp-share-section {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
  border: 1px solid var(--swdgp-gold); border-radius: 24px;
  padding: 36px 32px; margin: 40px 0; text-align: center;
}
.swdgp-share-title { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--swdgp-gold-bright); margin: 0 0 8px; }
.swdgp-share-subtitle { font-size: 16px; color: var(--swdgp-whisper); margin-bottom: 24px; font-style: italic; }
.swdgp-share-card-wrap { max-width: 380px; margin: 0 auto 24px; border-radius: 16px; overflow: hidden; }
.swdgp-share-card-wrap svg { width: 100%; height: auto; display: block; }
.swdgp-share-buttons { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.swdgp-share-btn {
  padding: 12px 22px; background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--swdgp-gold); color: var(--swdgp-cream);
  border-radius: 100px; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 14px;
  font-weight: 600; transition: all 0.3s ease;
}
.swdgp-share-btn:hover {
  background: var(--swdgp-gold); color: var(--swdgp-navy-deepest);
  transform: translateY(-2px);
}

/* LOGIN CTA */
.swdgp-login-cta {
  background: linear-gradient(135deg, var(--swdgp-navy-light), var(--swdgp-navy));
  border: 2px solid var(--swdgp-gold); border-radius: 24px;
  padding: 40px 32px; margin: 30px 0; text-align: center;
  position: relative; overflow: hidden;
}
.swdgp-login-icon { font-size: 48px; margin-bottom: 12px; animation: swdgp-float 3s ease-in-out infinite; }
.swdgp-login-title { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--swdgp-cream); margin: 0 0 12px; }
.swdgp-login-subtitle { font-size: 17px; color: var(--swdgp-whisper); max-width: 480px; margin: 0 auto 24px; line-height: 1.6; }
.swdgp-login-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.swdgp-login-btn {
  padding: 14px 32px; border-radius: 100px;
  text-decoration: none; font-weight: 700;
  letter-spacing: 1px; font-size: 14px;
  text-transform: uppercase; transition: all 0.3s ease;
  font-family: 'DM Sans', sans-serif;
}
.swdgp-login-btn.primary { background: var(--swdgp-gold); color: var(--swdgp-navy-deepest); }
.swdgp-login-btn.primary:hover { transform: translateY(-2px); box-shadow: 0 6px 24px var(--swdgp-gold-glow); }
.swdgp-login-btn.secondary { background: transparent; color: var(--swdgp-gold); border: 1px solid var(--swdgp-gold); }
.swdgp-login-btn.secondary:hover { background: var(--swdgp-gold); color: var(--swdgp-navy-deepest); }

/* TOMORROW TEASER */
.swdgp-tomorrow-teaser {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.02));
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px; padding: 28px; text-align: center;
  margin: 30px 0;
}
.swdgp-teaser-label {
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--swdgp-gold); margin-bottom: 8px; font-weight: 600;
}
.swdgp-teaser-text {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 22px; color: var(--swdgp-cream); line-height: 1.4;
}
.swdgp-countdown {
  display: inline-flex; gap: 12px; margin-top: 16px;
  padding: 12px 24px; background: rgba(0, 0, 0, 0.3);
  border-radius: 100px; border: 1px solid rgba(212, 175, 55, 0.3);
}
.swdgp-countdown-unit { font-family: 'Playfair Display', serif; color: var(--swdgp-gold-bright); font-weight: 600; }
.swdgp-countdown-unit span { font-size: 24px; margin-right: 4px; }

/* FOOTER */
.swdgp-footer {
  text-align: center; padding: 40px 0;
  font-size: 14px; color: var(--swdgp-whisper-dim); letter-spacing: 1px;
}
.swdgp-footer a { color: var(--swdgp-gold); text-decoration: none; }
.swdgp-footer a:hover { color: var(--swdgp-gold-bright); }

/* MODAL */
.swdgp-modal {
  position: fixed; inset: 0;
  background: rgba(10, 20, 40, 0.85);
  display: none; align-items: center; justify-content: center;
  z-index: 9999; padding: 20px;
}
.swdgp-modal.active { display: flex; animation: swdgp-fadeIn 0.3s ease; }
.swdgp-modal-inner {
  background: linear-gradient(135deg, var(--swdgp-navy), var(--swdgp-navy-deep));
  border: 1px solid var(--swdgp-gold);
  border-radius: 24px; padding: 40px 32px;
  max-width: 480px; width: 100%;
  text-align: center; position: relative;
  animation: swdgp-modalUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.swdgp-modal-close {
  position: absolute; top: 12px; right: 16px;
  background: none; border: none;
  color: var(--swdgp-whisper);
  font-size: 28px; cursor: pointer;
  line-height: 1;
}
.swdgp-modal-close:hover { color: var(--swdgp-gold); }
.swdgp-modal-icon { font-size: 56px; margin-bottom: 16px; }
.swdgp-modal-title {
  font-family: 'Playfair Display', serif; font-size: 26px;
  color: var(--swdgp-cream); margin: 0 0 12px;
}
.swdgp-modal-text { font-size: 17px; color: var(--swdgp-whisper); margin-bottom: 20px; line-height: 1.6; }
.swdgp-modal-input {
  width: 100%; padding: 14px 20px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 100px; color: var(--swdgp-cream);
  font-family: 'DM Sans', sans-serif; font-size: 16px;
  margin-bottom: 16px; text-align: center;
}
.swdgp-modal-input:focus { outline: none; border-color: var(--swdgp-gold); }
.swdgp-modal-btn {
  width: 100%; padding: 14px 28px;
  background: var(--swdgp-gold); border: none;
  color: var(--swdgp-navy-deepest);
  font-family: 'DM Sans', sans-serif; font-size: 15px;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  border-radius: 100px; cursor: pointer;
  transition: all 0.3s ease;
}
.swdgp-modal-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 24px var(--swdgp-gold-glow); }
.swdgp-modal-skip {
  margin-top: 14px; font-size: 14px;
  color: var(--swdgp-whisper-dim); cursor: pointer;
  text-decoration: underline;
}
.swdgp-modal-skip:hover { color: var(--swdgp-cream); }

/* TOAST */
.swdgp-toast {
  position: fixed; bottom: 30px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: linear-gradient(135deg, var(--swdgp-gold), var(--swdgp-gold-soft));
  color: var(--swdgp-navy-deepest);
  padding: 16px 28px; border-radius: 100px;
  font-weight: 600; font-size: 16px; letter-spacing: 1px;
  box-shadow: 0 8px 32px var(--swdgp-gold-glow);
  z-index: 10000; opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.swdgp-toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* SPARKLES */
.swdgp-spark {
  position: fixed; width: 8px; height: 8px;
  background: var(--swdgp-gold); border-radius: 50%;
  opacity: 0; pointer-events: none; z-index: 9998;
}
@keyframes swdgp-sparkle {
  0% { transform: translate(0, 0) scale(0); opacity: 1; }
  100% { transform: translate(var(--dx), var(--dy)) scale(1.5); opacity: 0; }
}

/* Animations */
@keyframes swdgp-fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes swdgp-fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes swdgp-modalUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

/* RESPONSIVE */
@media (max-width: 640px) {
  .swdgp-container { padding: 0 16px; }
  .swdgp-stats-grid { grid-template-columns: 1fr; gap: 12px; }
  .swdgp-mindset-grid { grid-template-columns: 1fr; }
  .swdgp-card { padding: 28px 22px; }
  .swdgp-card-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .swdgp-card-num { font-size: 36px; }
  .swdgp-card-title { font-size: 24px; }
  .swdgp-nugget-text { font-size: 19px; }
  .swdgp-reflection-question { font-size: 22px; }
  .swdgp-chatbot-section { padding: 32px 22px; }
  .swdgp-chatbot-title { font-size: 26px; }
  .swdgp-badge { width: 64px; height: 64px; font-size: 28px; }
  .swdgp-hero { padding: 20px 0 30px; }
}
