/* ===================== CSS VARIABLES ===================== */
:root, #mfg-wrapper {
  --purple: #5A3B8C;
  --purple-dark: #1a0f2e;
  --purple-mid: #3d2668;
  --purple-light: #7a56b8;
  --purple-tint: #f3eeff;
  --gold: #ff914d;
  --gold-dark: #D85A30;
  --gold-light: #ffb07a;
  --gold-pale: #fff4ec;
  --white: #ffffff;
  --off-white: #fafaf8;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --text: #111827;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'DM Mono', monospace;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --shadow: 0 4px 24px rgba(90,59,140,0.1);
  --shadow-lg: 0 16px 48px rgba(90,59,140,0.18);
  --shadow-gold: 0 8px 32px rgba(255,145,77,0.25);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

#mfg-wrapper {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

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

#mfg-wrapper a { text-decoration: none; color: inherit; }
#mfg-wrapper button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
#mfg-wrapper img { max-width: 100%; display: block; }
#mfg-wrapper input, #mfg-wrapper textarea, #mfg-wrapper select { font-family: var(--font-body); }

/* ===================== NAVIGATION ===================== */
.mfg-header-nav {
  background: rgba(26,15,46,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,145,77,0.15);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  position: relative;
  z-index: 10;
}
.mfg-header-nav .nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 78px;
}
.mfg-header-nav .nav-brand {
  display: flex; align-items: center; gap: 14px;
  cursor: pointer;
  flex: 0 0 auto;
}
.mfg-header-nav .nav-brand-logo {
  height: clamp(36px, 2.7vw, 46px);
  display: flex; align-items: center;
  flex: 0 0 auto;
}
.mfg-header-nav .nav-brand-logo img {
  height: 100%; width: auto; object-fit: contain;
}
.mfg-header-nav .nav-brand-wordmark {
  height: clamp(36px, 2.7vw, 46px);
  max-width: min(34vw, 460px);
  display: flex; align-items: center;
  flex: 0 1 auto;
  overflow: visible;
}
.mfg-header-nav .nav-brand-wordmark img {
  height: 138%;
  width: auto;
  max-width: none;
  object-fit: contain;
  opacity: 0.95;
}

@media (max-width: 768px) {
  .mfg-header-nav .nav-brand-wordmark { display: none; }
}
.mfg-header-nav .nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none;
}
.mfg-header-nav .nav-link {
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.65);
  padding: 6px 12px; border-radius: 8px;
  cursor: pointer; transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}
.mfg-header-nav .nav-link:hover { color: white; background: rgba(255,255,255,0.08); }
.mfg-header-nav .nav-link.active { color: var(--gold); background: rgba(255,145,77,0.1); }
.mfg-header-nav .nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white; font-weight: 600; font-size: 13px;
  padding: 8px 18px; border-radius: 8px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease; white-space: nowrap;
}
.mfg-header-nav .nav-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-gold); }
.mfg-header-nav .nav-mobile-toggle {
  display: none; flex-direction: column; gap: 5px; padding: 8px;
  color: white; cursor: pointer;
}
.mfg-header-nav .nav-mobile-toggle span {
  width: 22px; height: 2px; background: white; border-radius: 2px; transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  display: block;
}

/* ===================== PAGES ===================== */
#mfg-wrapper .page { min-height: 100vh; }

/* ===================== HERO - LANDING ===================== */
#mfg-wrapper .hero {
  background: var(--purple-dark);
  position: relative; overflow: hidden;
  padding: 100px 24px 80px;
}
#mfg-wrapper .hero-mesh {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 80% 20%, rgba(90,59,140,0.6) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(255,145,77,0.08) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 60% 90%, rgba(122,86,184,0.2) 0%, transparent 50%);
}
#mfg-wrapper .hero-grid-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,145,77,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,145,77,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}
#mfg-wrapper .hero-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: flex-start;
  position: relative; z-index: 1;
}
#mfg-wrapper .hero-brand-logo {
  width: clamp(120px, 14vw, 190px);
  margin-bottom: 36px;
}
#mfg-wrapper .hero-brand-logo img {
  width: 100%; height: auto; object-fit: contain;
}
#mfg-wrapper .hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,145,77,0.12); border: 1px solid rgba(255,145,77,0.25);
  padding: 6px 14px; border-radius: 100px; margin-bottom: 24px;
}
#mfg-wrapper .hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
#mfg-wrapper .hero-badge-text {
  font-size: 12px; font-weight: 600; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase;
}
#mfg-wrapper .hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800; line-height: 1.05;
  color: white; margin-bottom: 20px;
}
#mfg-wrapper .hero-headline .accent { color: var(--gold); display: block; }
#mfg-wrapper .hero-sub {
  font-size: 17px; color: rgba(255,255,255,0.65); line-height: 1.7;
  max-width: 540px; margin-bottom: 36px;
}
#mfg-wrapper .hero-trust {
  font-size: 13px; color: rgba(255,255,255,0.4);
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  margin-top: 20px;
}
#mfg-wrapper .hero-trust-sep { opacity: 0.3; }
#mfg-wrapper .hero-ctas {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px;
}
#mfg-wrapper .btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white; font-weight: 700; font-size: 15px;
  padding: 14px 24px; border-radius: var(--radius);
  transition: var(--transition); position: relative;
  display: flex; align-items: center; gap: 10px;
}
#mfg-wrapper .btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
#mfg-wrapper .btn-primary-tag {
  position: absolute; top: -10px; right: -10px;
  background: var(--purple-dark); border: 1.5px solid var(--gold);
  color: var(--gold); font-size: 10px; font-weight: 700;
  padding: 2px 8px; border-radius: 100px; white-space: nowrap;
  letter-spacing: 0.05em; text-transform: uppercase;
}
#mfg-wrapper .btn-secondary {
  background: rgba(255,255,255,0.07); border: 1.5px solid rgba(255,255,255,0.15);
  color: white; font-weight: 600; font-size: 15px;
  padding: 14px 24px; border-radius: var(--radius);
  transition: var(--transition);
  display: flex; align-items: center; gap: 8px;
}
#mfg-wrapper .btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.3); }

/* Hero Countdown Card */
#mfg-wrapper .hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 32px;
  backdrop-filter: blur(10px);
}
#mfg-wrapper .hero-card-label {
  font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 8px;
}
#mfg-wrapper .hero-card-title {
  font-family: var(--font-display); font-size: 18px; font-weight: 700; color: white;
  margin-bottom: 24px;
}
#mfg-wrapper .countdown {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 24px;
}
#mfg-wrapper .countdown-item {
  background: rgba(255,255,255,0.06); border-radius: var(--radius);
  padding: 14px 8px; text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
}
#mfg-wrapper .countdown-num {
  font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--gold);
  line-height: 1; display: block;
}
#mfg-wrapper .countdown-unit {
  font-size: 10px; color: rgba(255,255,255,0.4); text-transform: uppercase;
  letter-spacing: 0.1em; display: block; margin-top: 4px;
}
#mfg-wrapper .hero-pool {
  background: linear-gradient(135deg, rgba(255,145,77,0.12), rgba(255,145,77,0.05));
  border: 1px solid rgba(255,145,77,0.2); border-radius: var(--radius);
  padding: 16px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: space-between;
}
#mfg-wrapper .hero-pool-label { font-size: 12px; color: rgba(255,255,255,0.5); }
#mfg-wrapper .hero-pool-amount { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--gold); }
#mfg-wrapper .hero-pool-sub { font-size: 11px; color: rgba(255,255,255,0.35); }
#mfg-wrapper .hero-card-meta {
  font-size: 12px; color: rgba(255,255,255,0.4); text-align: center;
}
#mfg-wrapper .hero-card-meta strong { color: rgba(255,255,255,0.7); }
#mfg-wrapper .hero-card-meta-sep { display: inline-block; margin: 0 6px; opacity: 0.35; }
#mfg-wrapper .entries-bar { margin-top: 16px; }
#mfg-wrapper .entries-bar-label {
  display: flex; justify-content: space-between; font-size: 12px;
  color: rgba(255,255,255,0.4); margin-bottom: 6px;
}
#mfg-wrapper .entries-bar-track {
  height: 4px; background: rgba(255,255,255,0.08); border-radius: 100px; overflow: hidden;
}
#mfg-wrapper .entries-bar-fill {
  height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  border-radius: 100px; width: 60%; transition: width 1s ease;
}

/* ===================== STATS BAND ===================== */
#mfg-wrapper .stats-band {
  background: var(--purple-mid);
  padding: 40px 24px;
}
#mfg-wrapper .stats-band-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
}
#mfg-wrapper .stat-item {
  text-align: center; padding: 20px 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
#mfg-wrapper .stat-item:last-child { border-right: none; }
#mfg-wrapper .stat-num {
  font-family: var(--font-display); font-size: 36px; font-weight: 800;
  color: var(--gold); line-height: 1;
}
#mfg-wrapper .stat-label { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 6px; }

/* ===================== SECTION SHARED ===================== */
#mfg-wrapper .section { padding: 96px 24px; }
#mfg-wrapper .section-inner { max-width: 1280px; margin: 0 auto; }
#mfg-wrapper .section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
#mfg-wrapper .section-label::before {
  content: ''; width: 24px; height: 2px; background: var(--gold); display: block;
}
#mfg-wrapper .section-title {
  font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800; line-height: 1.1; color: var(--text); margin-bottom: 16px;
}
#mfg-wrapper .section-sub {
  font-size: 17px; color: var(--gray-600); line-height: 1.7; max-width: 580px;
}
#mfg-wrapper .section-dark { background: var(--purple-dark); }
#mfg-wrapper .section-dark .section-title { color: white; }
#mfg-wrapper .section-dark .section-sub { color: rgba(255,255,255,0.6); }
#mfg-wrapper .section-tint { background: var(--purple-tint); }
#mfg-wrapper .section-off { background: var(--off-white); }

/* ===================== HOW IT WORKS ===================== */
#mfg-wrapper .steps-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
  margin-top: 64px; position: relative;
}
#mfg-wrapper .steps-grid::before {
  content: ''; position: absolute; top: 36px; left: 8%; right: 8%;
  height: 2px; background: linear-gradient(90deg, var(--purple), var(--gold));
  z-index: 0;
}
#mfg-wrapper .step-item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 0 16px; position: relative; z-index: 1;
}
#mfg-wrapper .step-num {
  width: 72px; height: 72px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 24px;
  margin-bottom: 20px; position: relative;
}
#mfg-wrapper .step-num.default {
  background: white; border: 2px solid var(--gray-200); color: var(--gray-400);
  box-shadow: 0 0 0 6px white;
}
#mfg-wrapper .step-num.qualify { background: var(--purple-tint); border: 2px solid var(--purple-light); color: var(--purple); box-shadow: 0 0 0 6px white; }
#mfg-wrapper .step-num.carryover { background: #fff7ed; border: 2px dashed var(--gold); color: var(--gold); box-shadow: 0 0 0 6px white; }
#mfg-wrapper .step-num.review { background: var(--purple); border: 2px solid var(--purple-mid); color: white; box-shadow: 0 0 0 6px white; }
#mfg-wrapper .step-num.draw { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); border: none; color: white; box-shadow: 0 0 0 6px white; }
#mfg-wrapper .step-title {
  font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--text);
  margin-bottom: 10px;
}
#mfg-wrapper .step-desc { font-size: 13px; color: var(--gray-600); line-height: 1.6; }
#mfg-wrapper .step-carryover-note {
  display: inline-block; margin-top: 12px;
  background: #fff7ed; border: 1px solid rgba(255,145,77,0.3);
  color: var(--gold-dark); font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 100px;
}

/* ===================== WINNERS SECTION ===================== */
#mfg-wrapper .winners-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px;
}
#mfg-wrapper .winner-card {
  background: white; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--gray-200); transition: var(--transition);
  box-shadow: var(--shadow);
}
#mfg-wrapper .winner-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
#mfg-wrapper .winner-card-header {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple-mid));
  padding: 24px; display: flex; align-items: center; gap: 16px;
}
#mfg-wrapper .winner-avatar {
  width: 56px; height: 56px; border-radius: 12px;
  background: rgba(255,145,77,0.2); border: 2px solid rgba(255,145,77,0.4);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; color: var(--gold); font-size: 20px;
  overflow: hidden; flex-shrink: 0;
}
#mfg-wrapper .winner-meta { flex: 1; }
#mfg-wrapper .winner-name { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: white; }
#mfg-wrapper .winner-location { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; }
#mfg-wrapper .winner-badge {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white; font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
  padding: 4px 10px; border-radius: 100px; text-transform: uppercase; white-space: nowrap;
}
#mfg-wrapper .winner-card-body { padding: 20px 24px; }
#mfg-wrapper .winner-amount-row {
  display: flex; align-items: baseline; gap: 8px; margin-bottom: 12px;
}
#mfg-wrapper .winner-amount-label { font-size: 12px; color: var(--gray-400); }
#mfg-wrapper .winner-amount {
  font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--purple);
}
#mfg-wrapper .winner-quote { font-size: 14px; color: var(--gray-600); font-style: italic; line-height: 1.6; }
#mfg-wrapper .winner-quote::before { content: '"'; color: var(--gold); font-size: 20px; font-style: normal; }

/* ===================== PRICING TABLE ===================== */
#mfg-wrapper .pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px;
}
#mfg-wrapper .pricing-card {
  background: white; border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg);
  padding: 32px; transition: var(--transition); position: relative;
}
#mfg-wrapper .pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
#mfg-wrapper .pricing-card.featured {
  border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold), var(--shadow-gold);
  background: linear-gradient(160deg, #fff9f5 0%, white 60%);
}
#mfg-wrapper .pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white; font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  padding: 4px 16px; border-radius: 100px; text-transform: uppercase; white-space: nowrap;
}
#mfg-wrapper .pricing-plan-name {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gray-400); margin-bottom: 12px;
}
#mfg-wrapper .pricing-amount {
  font-family: var(--font-display); font-size: 40px; font-weight: 800; color: var(--text);
  line-height: 1; margin-bottom: 4px;
}
#mfg-wrapper .pricing-amount span { font-size: 18px; vertical-align: super; font-weight: 600; }
#mfg-wrapper .pricing-period { font-size: 13px; color: var(--gray-400); margin-bottom: 20px; }
#mfg-wrapper .pricing-desc { font-size: 14px; color: var(--gray-600); line-height: 1.6; margin-bottom: 24px; }
#mfg-wrapper .pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
#mfg-wrapper .pricing-feature {
  display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--gray-600);
}
#mfg-wrapper .pricing-feature-icon {
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
  display: flex; align-items: center; justify-content: center; font-size: 10px;
}
#mfg-wrapper .pricing-feature-icon.check { background: rgba(90,59,140,0.1); color: var(--purple); }
#mfg-wrapper .pricing-feature-icon.gold-check { background: rgba(255,145,77,0.1); color: var(--gold-dark); }
#mfg-wrapper .pricing-cta {
  display: block; text-align: center; padding: 13px;
  border-radius: var(--radius); font-weight: 700; font-size: 14px;
  transition: var(--transition); cursor: pointer; border: none;
}
#mfg-wrapper .pricing-cta.primary-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
}
#mfg-wrapper .pricing-cta.primary-btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-gold); }
#mfg-wrapper .pricing-cta.outline-btn {
  background: transparent; border: 1.5px solid var(--gray-200); color: var(--gray-600);
}
#mfg-wrapper .pricing-cta.outline-btn:hover { border-color: var(--purple); color: var(--purple); }
#mfg-wrapper .pricing-savings {
  text-align: center; font-size: 12px; color: var(--gold-dark); font-weight: 600;
  margin-top: 12px;
}

/* ===================== TRUST SECTION ===================== */
#mfg-wrapper .trust-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px;
}
#mfg-wrapper .trust-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 28px;
  transition: var(--transition);
}
#mfg-wrapper .trust-card:hover { border-color: rgba(255,145,77,0.3); background: rgba(255,145,77,0.04); }
#mfg-wrapper .trust-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(255,145,77,0.1); border: 1px solid rgba(255,145,77,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 16px;
}
#mfg-wrapper .trust-title {
  font-family: var(--font-display); font-weight: 700; font-size: 16px; color: white;
  margin-bottom: 8px;
}
#mfg-wrapper .trust-desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* ===================== RUBRIC TABLE ===================== */
#mfg-wrapper .rubric-table { width: 100%; border-collapse: collapse; margin-top: 32px; }
#mfg-wrapper .rubric-table th {
  background: var(--purple); color: white; font-family: var(--font-display); font-weight: 600;
  font-size: 13px; padding: 14px 16px; text-align: left;
}
#mfg-wrapper .rubric-table th:last-child { text-align: center; }
#mfg-wrapper .rubric-table td {
  padding: 14px 16px; font-size: 14px; border-bottom: 1px solid var(--gray-100);
  color: var(--gray-800); vertical-align: top;
}
#mfg-wrapper .rubric-table tr:hover td { background: var(--purple-tint); }
#mfg-wrapper .rubric-table td:last-child { text-align: center; }
#mfg-wrapper .rubric-pts {
  display: inline-block; background: var(--purple); color: white;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  padding: 4px 12px; border-radius: 8px;
}
#mfg-wrapper .rubric-pts.partial { background: var(--gold-dark); }
#mfg-wrapper .rubric-threshold {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  color: white; border-radius: var(--radius-lg); padding: 28px 32px;
  display: flex; align-items: center; gap: 24px; margin-top: 24px;
}
#mfg-wrapper .rubric-threshold-num {
  font-family: var(--font-display); font-size: 64px; font-weight: 800; color: var(--gold);
  line-height: 1; flex-shrink: 0;
}
#mfg-wrapper .rubric-threshold-text h3 { font-family: var(--font-display); font-size: 18px; color: white; margin-bottom: 6px; }
#mfg-wrapper .rubric-threshold-text p { font-size: 14px; color: rgba(255,255,255,0.6); }

/* ===================== EXPERT ASSESSMENT ===================== */
#mfg-wrapper .expert-card {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple-mid));
  border-radius: var(--radius-xl); padding: 40px 48px;
  display: flex; align-items: center; gap: 32px;
  position: relative; overflow: hidden;
}
#mfg-wrapper .expert-card::before {
  content: ''; position: absolute; right: -60px; top: -60px;
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(255,145,77,0.06); pointer-events: none;
}
#mfg-wrapper .expert-icon {
  width: 72px; height: 72px; border-radius: 18px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center; font-size: 30px;
}
#mfg-wrapper .expert-content { flex: 1; }
#mfg-wrapper .expert-badge {
  display: inline-block; background: rgba(255,145,77,0.15); border: 1px solid rgba(255,145,77,0.3);
  color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  padding: 4px 10px; border-radius: 100px; text-transform: uppercase; margin-bottom: 10px;
}
#mfg-wrapper .expert-title { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: white; margin-bottom: 8px; }
#mfg-wrapper .expert-desc { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }
#mfg-wrapper .expert-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white; font-weight: 700; font-size: 14px;
  padding: 12px 24px; border-radius: var(--radius);
  transition: var(--transition); white-space: nowrap; flex-shrink: 0;
  border: none; cursor: pointer;
}
#mfg-wrapper .expert-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }

/* ===================== FAQ TEASER ===================== */
#mfg-wrapper .faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
#mfg-wrapper .faq-item {
  background: white; border: 1px solid var(--gray-200); border-radius: var(--radius);
  overflow: hidden; transition: var(--transition);
}
#mfg-wrapper .faq-item:hover { border-color: var(--purple-light); }
#mfg-wrapper .faq-item.open { border-color: var(--purple); box-shadow: var(--shadow); }
#mfg-wrapper .faq-q {
  padding: 18px 20px; display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; font-weight: 600; font-size: 15px; color: var(--text);
  transition: var(--transition);
}
#mfg-wrapper .faq-q:hover { color: var(--purple); }
#mfg-wrapper .faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--purple-tint); color: var(--purple);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0; transition: var(--transition);
}
#mfg-wrapper .faq-item.open .faq-icon { background: var(--purple); color: white; transform: rotate(45deg); }
#mfg-wrapper .faq-a {
  display: none; padding: 0 20px 18px; font-size: 14px; color: var(--gray-600); line-height: 1.7;
  border-top: 1px solid var(--gray-100);
}
#mfg-wrapper .faq-a.open { display: block; padding-top: 16px; }

/* ===================== REFUND SECTION ===================== */
#mfg-wrapper .refund-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px;
}
#mfg-wrapper .refund-card {
  background: white; border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  padding: 24px; transition: var(--transition);
}
#mfg-wrapper .refund-card:hover { border-color: var(--purple-light); box-shadow: var(--shadow); }
#mfg-wrapper .refund-path { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--purple); margin-bottom: 8px; }
#mfg-wrapper .refund-title { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--text); margin-bottom: 10px; }
#mfg-wrapper .refund-desc { font-size: 13px; color: var(--gray-600); line-height: 1.65; }
#mfg-wrapper .refund-deadline {
  display: inline-block; background: var(--purple-tint); color: var(--purple);
  font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 100px; margin-top: 10px;
}

/* ===================== HOW IT WORKS PAGE ===================== */
#mfg-wrapper .timeline {
  position: relative; padding-left: 40px; margin-top: 32px;
}
#mfg-wrapper .timeline::before {
  content: ''; position: absolute; left: 11px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, var(--purple), var(--gold));
}
#mfg-wrapper .timeline-item { position: relative; margin-bottom: 32px; }
#mfg-wrapper .timeline-dot {
  position: absolute; left: -40px; top: 4px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--purple); border: 3px solid white;
  box-shadow: 0 0 0 2px var(--purple);
  display: flex; align-items: center; justify-content: center;
}
#mfg-wrapper .timeline-dot.gold { background: var(--gold); box-shadow: 0 0 0 2px var(--gold); }
#mfg-wrapper .timeline-date { font-size: 12px; font-weight: 700; color: var(--purple); letter-spacing: 0.05em; margin-bottom: 4px; font-family: var(--font-mono); }
#mfg-wrapper .timeline-title { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--text); margin-bottom: 6px; }
#mfg-wrapper .timeline-desc { font-size: 14px; color: var(--gray-600); line-height: 1.65; }

/* ===================== ELIGIBILITY PAGE ===================== */
#mfg-wrapper .eligibility-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 48px;
}
#mfg-wrapper .checklist { display: flex; flex-direction: column; gap: 12px; }
#mfg-wrapper .check-item {
  display: flex; align-items: flex-start; gap: 12px;
  background: white; border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 16px 20px; transition: var(--transition);
}
#mfg-wrapper .check-item:hover { border-color: var(--purple-light); box-shadow: var(--shadow); }
#mfg-wrapper .check-item.disqualify { border-color: #fee2e2; background: #fef2f2; }
#mfg-wrapper .check-icon-circle {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 14px;
}
#mfg-wrapper .check-icon-circle.pass { background: rgba(34,197,94,0.1); color: #16a34a; }
#mfg-wrapper .check-icon-circle.disq { background: #fee2e2; color: #dc2626; }
#mfg-wrapper .check-text-title { font-weight: 600; font-size: 14px; color: var(--text); margin-bottom: 2px; }
#mfg-wrapper .check-text-sub { font-size: 12px; color: var(--gray-400); }

/* ===================== APPLY PAGE ===================== */
#mfg-wrapper .apply-grid { display: grid; grid-template-columns: 1fr 380px; gap: 32px; margin-top: 48px; align-items: start; }
#mfg-wrapper .apply-form-card {
  background: white; border: 1px solid var(--gray-200); border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow);
}
#mfg-wrapper .apply-form-header {
  background: var(--purple-dark); padding: 24px 28px;
  display: flex; align-items: center; justify-content: space-between;
}
#mfg-wrapper .apply-form-header-title { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: white; }
#mfg-wrapper .apply-state-badge {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px;
}
#mfg-wrapper .apply-state-badge.guest { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); }
#mfg-wrapper .apply-state-badge.loggedin { background: rgba(34,197,94,0.15); color: #86efac; }
#mfg-wrapper .apply-state-badge.subscribed { background: rgba(255,145,77,0.2); color: var(--gold); }
#mfg-wrapper .apply-form-body { padding: 28px; }
#mfg-wrapper .form-group { margin-bottom: 20px; }
#mfg-wrapper .form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
#mfg-wrapper .form-sublabel { font-size: 12px; color: var(--gray-400); margin-bottom: 8px; display: block; }
#mfg-wrapper .form-input {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--gray-200); border-radius: var(--radius);
  font-size: 14px; color: var(--text); transition: var(--transition);
  background: var(--gray-50);
}
#mfg-wrapper .form-input:focus { outline: none; border-color: var(--purple); background: white; box-shadow: 0 0 0 3px rgba(90,59,140,0.08); }
#mfg-wrapper .form-textarea { resize: vertical; min-height: 100px; }
#mfg-wrapper .form-input.prefilled { border-color: rgba(90,59,140,0.3); background: var(--purple-tint); }
#mfg-wrapper .word-counter { font-size: 11px; color: var(--gray-400); text-align: right; margin-top: 4px; }
#mfg-wrapper .form-section-title { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.08em; margin: 24px 0 14px; padding-bottom: 8px; border-bottom: 1px solid var(--gray-200); }
#mfg-wrapper .score-display {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  border-radius: var(--radius-lg); padding: 20px 24px; margin-bottom: 24px;
}
#mfg-wrapper .score-display-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
#mfg-wrapper .score-display-label { font-size: 13px; color: rgba(255,255,255,0.6); }
#mfg-wrapper .score-display-num {
  font-family: var(--font-display); font-size: 32px; font-weight: 800;
}
#mfg-wrapper .score-display-num.good { color: #4ade80; }
#mfg-wrapper .score-display-num.partial { color: var(--gold); }
#mfg-wrapper .score-display-num.low { color: #f87171; }
#mfg-wrapper .score-bar-track { height: 6px; background: rgba(255,255,255,0.1); border-radius: 100px; overflow: hidden; }
#mfg-wrapper .score-bar-fill { height: 100%; border-radius: 100px; transition: width 1s ease; }
#mfg-wrapper .score-bar-fill.good { background: linear-gradient(90deg, #4ade80, #16a34a); }
#mfg-wrapper .score-bar-fill.partial { background: linear-gradient(90deg, var(--gold-light), var(--gold-dark)); }
#mfg-wrapper .score-bar-fill.low { background: linear-gradient(90deg, #fca5a5, #ef4444); }
#mfg-wrapper .score-breakdown { margin-top: 12px; display: flex; flex-direction: column; gap: 6px; }
#mfg-wrapper .score-row {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,0.55);
}
#mfg-wrapper .score-row-pts { color: rgba(255,255,255,0.8); font-weight: 600; font-family: var(--font-mono); }

/* Payment method selector */
#mfg-wrapper .payment-methods { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
#mfg-wrapper .payment-method-option {
  display: flex; align-items: center; gap: 12px;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius);
  padding: 12px 14px; cursor: pointer; transition: var(--transition);
}
#mfg-wrapper .payment-method-option:hover { border-color: var(--purple-light); }
#mfg-wrapper .payment-method-option.selected { border-color: var(--purple); background: var(--purple-tint); }
#mfg-wrapper .payment-method-option input { display: none; }
#mfg-wrapper .payment-method-icon { font-size: 18px; }
#mfg-wrapper .payment-method-name { font-weight: 600; font-size: 14px; flex: 1; }
#mfg-wrapper .payment-method-label { font-size: 11px; color: var(--gray-400); }

/* State selector (demo) */
#mfg-wrapper .state-selector {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px;
  background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 12px;
}
#mfg-wrapper .state-btn {
  font-size: 11px; font-weight: 600; padding: 5px 10px; border-radius: 8px;
  cursor: pointer; transition: var(--transition); color: var(--gray-600);
  border: 1px solid var(--gray-200); background: white;
}
#mfg-wrapper .state-btn.active { background: var(--purple); color: white; border-color: var(--purple); }
#mfg-wrapper .state-btn:hover:not(.active) { border-color: var(--purple-light); color: var(--purple); }

/* Sidebar apply */
#mfg-wrapper .apply-sidebar { display: flex; flex-direction: column; gap: 16px; }
#mfg-wrapper .sidebar-card { background: white; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 24px; }
#mfg-wrapper .sidebar-card-title { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--text); margin-bottom: 14px; }
#mfg-wrapper .sidebar-cycle-info { display: flex; flex-direction: column; gap: 10px; }
#mfg-wrapper .sidebar-row { display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
#mfg-wrapper .sidebar-row-label { color: var(--gray-400); }
#mfg-wrapper .sidebar-row-value { font-weight: 600; color: var(--text); }
#mfg-wrapper .sidebar-row-value.open { color: #16a34a; }
#mfg-wrapper .sidebar-row-value.closed { color: #dc2626; }

/* ===================== OFFICIAL RULES PAGE ===================== */
#mfg-wrapper .rules-content {
  max-width: 780px; margin: 0 auto;
  background: white; border: 1px solid var(--gray-200); border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow);
}
#mfg-wrapper .rules-header {
  background: var(--purple-dark); padding: 32px 40px;
}
#mfg-wrapper .rules-header h1 { font-family: var(--font-display); font-size: 24px; font-weight: 800; color: white; margin-bottom: 8px; }
#mfg-wrapper .rules-header p { font-size: 14px; color: rgba(255,255,255,0.5); }
#mfg-wrapper .rules-body { padding: 40px; }
#mfg-wrapper .rules-section { margin-bottom: 32px; }
#mfg-wrapper .rules-section-num {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--purple); margin-bottom: 6px; font-family: var(--font-mono);
}
#mfg-wrapper .rules-section h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--text);
  margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--gray-100);
}
#mfg-wrapper .rules-section p { font-size: 14px; color: var(--gray-600); line-height: 1.8; margin-bottom: 10px; }
#mfg-wrapper .rules-section ul { padding-left: 20px; }
#mfg-wrapper .rules-section li { font-size: 14px; color: var(--gray-600); line-height: 1.8; margin-bottom: 4px; }
#mfg-wrapper .rules-highlight {
  background: var(--purple-tint); border-left: 3px solid var(--purple);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 14px 18px;
  margin: 16px 0; font-size: 14px; color: var(--purple); font-weight: 500;
}

/* ===================== WINNERS PAGE ===================== */
#mfg-wrapper .current-winner-spotlight {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple-mid));
  border-radius: var(--radius-xl); padding: 48px;
  position: relative; overflow: hidden;
}
#mfg-wrapper .current-winner-spotlight::before {
  content: ''; position: absolute; right: -80px; top: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,145,77,0.06);
}
#mfg-wrapper .spotlight-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px; display: flex; align-items: center; gap: 8px;
}
#mfg-wrapper .spotlight-label::before { content: ''; width: 24px; height: 2px; background: var(--gold); }
#mfg-wrapper .spotlight-grid { display: grid; grid-template-columns: auto 1fr; gap: 32px; align-items: center; }
#mfg-wrapper .spotlight-avatar {
  width: 100px; height: 100px; border-radius: 20px; overflow: hidden;
  border: 3px solid rgba(255,145,77,0.4);
  background: rgba(255,145,77,0.15);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 36px; font-weight: 800; color: var(--gold);
}
#mfg-wrapper .spotlight-name { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: white; margin-bottom: 4px; }
#mfg-wrapper .spotlight-location { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
#mfg-wrapper .spotlight-amount-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 16px; }
#mfg-wrapper .spotlight-amount-label { font-size: 14px; color: rgba(255,255,255,0.5); }
#mfg-wrapper .spotlight-amount { font-family: var(--font-display); font-size: 40px; font-weight: 800; color: var(--gold); }
#mfg-wrapper .spotlight-quote {
  font-size: 15px; color: rgba(255,255,255,0.7); font-style: italic; line-height: 1.7;
  max-width: 500px;
}
#mfg-wrapper .spotlight-quote::before { content: '"'; color: var(--gold); font-size: 24px; font-style: normal; }

#mfg-wrapper .past-winners-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px;
}
#mfg-wrapper .past-winner-card {
  background: white; border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  padding: 20px; transition: var(--transition);
}
#mfg-wrapper .past-winner-card:hover { border-color: var(--purple-light); box-shadow: var(--shadow); transform: translateY(-2px); }
#mfg-wrapper .past-winner-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
#mfg-wrapper .past-winner-avatar {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--purple-tint); border: 1px solid rgba(90,59,140,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; color: var(--purple); font-size: 16px;
  overflow: hidden;
}
#mfg-wrapper .past-winner-name { font-weight: 700; font-size: 14px; color: var(--text); }
#mfg-wrapper .past-winner-location { font-size: 12px; color: var(--gray-400); }
#mfg-wrapper .past-winner-amount { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--purple); margin-bottom: 4px; }
#mfg-wrapper .past-winner-month { font-size: 11px; color: var(--gray-400); font-family: var(--font-mono); }

/* ===================== PANEL PAGE ===================== */
#mfg-wrapper .panel-apply-card {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple-mid));
  border-radius: var(--radius-xl); padding: 48px;
  display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center;
}
#mfg-wrapper .panel-apply-title { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: white; margin-bottom: 10px; }
#mfg-wrapper .panel-apply-desc { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.7; max-width: 480px; }
#mfg-wrapper .panel-rules {
  display: flex; flex-direction: column; gap: 10px; margin-top: 20px;
}
#mfg-wrapper .panel-rule { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.6); }
#mfg-wrapper .panel-rule-icon { color: var(--gold); font-size: 16px; }
#mfg-wrapper .panel-apply-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white; font-weight: 700; font-size: 15px;
  padding: 14px 28px; border-radius: var(--radius);
  border: none; cursor: pointer; transition: var(--transition); white-space: nowrap;
}
#mfg-wrapper .panel-apply-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }

#mfg-wrapper .current-panel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
#mfg-wrapper .panel-member-card {
  background: white; border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  padding: 24px; transition: var(--transition);
}
#mfg-wrapper .panel-member-card:hover { border-color: var(--purple-light); box-shadow: var(--shadow); }
#mfg-wrapper .panel-member-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; color: white; font-size: 20px;
  margin-bottom: 14px;
}
#mfg-wrapper .panel-member-name { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--text); margin-bottom: 4px; }
#mfg-wrapper .panel-member-bg { font-size: 12px; color: var(--gray-400); margin-bottom: 14px; }
#mfg-wrapper .panel-duty {
  background: var(--purple-tint); border-radius: 8px; padding: 10px 12px;
}
#mfg-wrapper .panel-duty-label { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--purple); margin-bottom: 4px; }
#mfg-wrapper .panel-duty-text { font-size: 13px; color: var(--gray-600); }

#mfg-wrapper .alumni-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 24px; }
#mfg-wrapper .alumni-card {
  background: white; border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  padding: 20px; text-align: center; transition: var(--transition);
}
#mfg-wrapper .alumni-card:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); }
#mfg-wrapper .alumni-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--purple-tint);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; color: var(--purple); font-size: 16px;
  margin: 0 auto 12px;
}
#mfg-wrapper .alumni-name { font-weight: 700; font-size: 14px; color: var(--text); margin-bottom: 2px; }
#mfg-wrapper .alumni-round { font-size: 11px; color: var(--gray-400); font-family: var(--font-mono); margin-bottom: 10px; }
#mfg-wrapper .alumni-badge {
  display: inline-block; background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white; font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 100px;
}

/* ===================== LIVE DRAW PAGE ===================== */
#mfg-wrapper .live-hero {
  background: var(--purple-dark); padding: 80px 24px; text-align: center;
  position: relative; overflow: hidden;
}
#mfg-wrapper .live-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(90,59,140,0.5), transparent);
}
#mfg-wrapper .live-status-indicator {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 16px; border-radius: 100px; margin-bottom: 24px;
}
#mfg-wrapper .live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #f87171;
  animation: pulse-dot 1.5s infinite;
}
#mfg-wrapper .live-dot.upcoming { background: var(--gold); }
#mfg-wrapper .live-status-text { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
#mfg-wrapper .live-title { font-family: var(--font-display); font-size: 48px; font-weight: 800; color: white; margin-bottom: 12px; position: relative; z-index: 1; }
#mfg-wrapper .live-sub { font-size: 16px; color: rgba(255,255,255,0.5); position: relative; z-index: 1; }
#mfg-wrapper .live-countdown-big {
  display: flex; justify-content: center; gap: 16px; margin: 40px 0; position: relative; z-index: 1;
}
#mfg-wrapper .live-cd-item {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 20px 24px; text-align: center; min-width: 90px;
}
#mfg-wrapper .live-cd-num { font-family: var(--font-display); font-size: 48px; font-weight: 800; color: var(--gold); line-height: 1; }
#mfg-wrapper .live-cd-label { font-size: 11px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 6px; }

#mfg-wrapper .prize-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
#mfg-wrapper .prize-card {
  background: white; border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  padding: 24px; text-align: center; transition: var(--transition);
}
#mfg-wrapper .prize-card.main-prize { border-color: var(--gold); box-shadow: var(--shadow-gold); }
#mfg-wrapper .prize-rank { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 8px; }
#mfg-wrapper .prize-rank.main { color: var(--gold-dark); }
#mfg-wrapper .prize-amount-display { font-family: var(--font-display); font-size: 36px; font-weight: 800; color: var(--text); margin-bottom: 4px; }
#mfg-wrapper .prize-amount-display.gold { color: var(--gold-dark); }
#mfg-wrapper .prize-pct { font-size: 12px; color: var(--gray-400); }

#mfg-wrapper .how-to-watch { margin-top: 48px; }
#mfg-wrapper .watch-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
#mfg-wrapper .watch-step {
  background: var(--purple-tint); border-radius: var(--radius-lg); padding: 24px; text-align: center;
}
#mfg-wrapper .watch-step-num {
  width: 40px; height: 40px; border-radius: 50%; background: var(--purple);
  color: white; font-family: var(--font-display); font-weight: 800; font-size: 18px;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
}
#mfg-wrapper .watch-step-title { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--text); margin-bottom: 6px; }
#mfg-wrapper .watch-step-desc { font-size: 13px; color: var(--gray-600); line-height: 1.6; }

/* ===================== MEMBERSHIP PAGE ===================== */
#mfg-wrapper .membership-hero {
  background: linear-gradient(160deg, var(--purple-dark) 0%, var(--purple-mid) 100%);
  padding: 80px 24px; text-align: center;
}
#mfg-wrapper .membership-hero-title { font-family: var(--font-display); font-size: 48px; font-weight: 800; color: white; margin-bottom: 16px; }
#mfg-wrapper .membership-hero-sub { font-size: 17px; color: rgba(255,255,255,0.6); max-width: 520px; margin: 0 auto 36px; line-height: 1.7; }
#mfg-wrapper .membership-hero-ctas { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ===================== PAGE FOOTER ===================== */
#mfg-wrapper .page-cta-footer {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple-mid));
  padding: 80px 24px; text-align: center;
}
#mfg-wrapper .page-cta-footer-title { font-family: var(--font-display); font-size: 36px; font-weight: 800; color: white; margin-bottom: 12px; }
#mfg-wrapper .page-cta-footer-sub { font-size: 16px; color: rgba(255,255,255,0.6); margin-bottom: 32px; }
#mfg-wrapper .page-cta-footer-ctas { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ===================== MOBILE NAV ===================== */
.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0; z-index: 999;
  background: var(--purple-dark); padding: 24px;
  flex-direction: column; gap: 8px; overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-nav-link {
  font-size: 16px; font-weight: 500; color: rgba(255,255,255,0.7);
  padding: 14px 16px; border-radius: var(--radius); cursor: pointer; transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, color 0.3s ease;
}
.mobile-nav-link:hover, .mobile-nav-link.active { color: white; background: rgba(255,255,255,0.08); }
.mobile-nav-link.active { color: var(--gold); }

/* ===================== UTILITIES ===================== */
#mfg-wrapper .tag {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 100px;
}
#mfg-wrapper .tag-purple { background: var(--purple-tint); color: var(--purple); }
#mfg-wrapper .tag-gold { background: rgba(255,145,77,0.1); color: var(--gold-dark); }
#mfg-wrapper .tag-green { background: rgba(34,197,94,0.1); color: #15803d; }
#mfg-wrapper .tag-red { background: #fee2e2; color: #dc2626; }

#mfg-wrapper .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 48px; }
#mfg-wrapper .three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
#mfg-wrapper .four-col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }

#mfg-wrapper .divider { height: 1px; background: var(--gray-100); margin: 40px 0; }
#mfg-wrapper .mt-8 { margin-top: 8px; } #mfg-wrapper .mt-16 { margin-top: 16px; } #mfg-wrapper .mt-24 { margin-top: 24px; } #mfg-wrapper .mt-32 { margin-top: 32px; }
#mfg-wrapper .text-center { text-align: center; }
#mfg-wrapper .text-small { font-size: 13px; color: var(--gray-400); }

/* Carry forward callout */
#mfg-wrapper .carry-forward-box {
  background: #fff7ed; border: 1.5px dashed rgba(255,145,77,0.4);
  border-radius: var(--radius-lg); padding: 20px 24px;
  display: flex; align-items: flex-start; gap: 14px; margin-top: 16px;
}
#mfg-wrapper .carry-forward-icon {
  width: 28px; height: 28px; border-radius: 999px; flex-shrink: 0; margin-top: 2px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,145,77,0.18); color: var(--gold-dark); font-size: 15px; font-weight: 700;
}
#mfg-wrapper .carry-forward-title { font-weight: 700; color: var(--gold-dark); font-size: 14px; margin-bottom: 4px; }
#mfg-wrapper .carry-forward-desc { font-size: 13px; color: var(--gray-600); line-height: 1.6; }

/* Animate in */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
#mfg-wrapper .fade-up { animation: fadeUp 0.5s ease forwards; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .mfg-header-nav .nav-inner { height: 72px; }
  .mfg-header-nav .nav-brand { gap: 12px; }
  .mfg-header-nav .nav-brand-logo { height: 36px; }
  .mfg-header-nav .nav-brand-wordmark { height: 36px; max-width: 320px; }
  .mfg-header-nav .nav-brand-wordmark img { height: 132%; }
  #mfg-wrapper .hero-inner { grid-template-columns: 1fr; }
  #mfg-wrapper .hero-card { max-width: 420px; }
  #mfg-wrapper .hero-brand-logo { width: clamp(112px, 20vw, 164px); margin-bottom: 30px; }
  #mfg-wrapper .steps-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  #mfg-wrapper .steps-grid::before { display: none; }
  #mfg-wrapper .winners-grid, #mfg-wrapper .pricing-grid, #mfg-wrapper .trust-grid { grid-template-columns: 1fr 1fr; }
  #mfg-wrapper .alumni-grid, #mfg-wrapper .past-winners-grid { grid-template-columns: 1fr 1fr; }
  #mfg-wrapper .apply-grid { grid-template-columns: 1fr; }
  #mfg-wrapper .stats-band-inner { grid-template-columns: 1fr 1fr; gap: 0; }
}
@media (max-width: 768px) {
  .mfg-header-nav .nav-brand { display: none; }
  .mfg-header-nav .nav-inner { padding: 0 12px; height: 52px; }
  .mfg-header-nav .nav-links { 
    display: flex; overflow-x: auto; -webkit-overflow-scrolling: touch;
    width: 100%; padding: 8px 0; gap: 4px;
    scrollbar-width: none; /* Hide scrollbar Firefox */
  }
  .mfg-header-nav .nav-links::-webkit-scrollbar { display: none; /* Hide scrollbar Chrome/Safari */ }
  .mfg-header-nav .nav-link { padding: 6px 12px; font-size: 12px; }
  .mfg-header-nav .nav-cta { display: none; } /* Show in mobile drawer instead */
  .mfg-header-nav .nav-mobile-toggle { display: none; }
  #mfg-wrapper .hero-inner { grid-template-columns: 1fr; }
  #mfg-wrapper .hero-brand-logo { width: clamp(92px, 28vw, 126px); margin-bottom: 24px; }
  #mfg-wrapper .winners-grid, #mfg-wrapper .pricing-grid, #mfg-wrapper .trust-grid, #mfg-wrapper .refund-grid,
  #mfg-wrapper .two-col, #mfg-wrapper .three-col, #mfg-wrapper .eligibility-grid, #mfg-wrapper .current-panel-grid,
  #mfg-wrapper .watch-steps, #mfg-wrapper .prize-cards, #mfg-wrapper .panel-apply-card { grid-template-columns: 1fr; }
  #mfg-wrapper .expert-card { flex-direction: column; align-items: flex-start; }
  #mfg-wrapper .spotlight-grid { grid-template-columns: 1fr; }
  #mfg-wrapper .current-winner-spotlight { padding: 28px; }
  #mfg-wrapper .four-col, #mfg-wrapper .alumni-grid, #mfg-wrapper .past-winners-grid { grid-template-columns: 1fr 1fr; }
  #mfg-wrapper .live-countdown-big { gap: 8px; }
  #mfg-wrapper .live-cd-num { font-size: 32px; }
  #mfg-wrapper .live-cd-item { padding: 14px 16px; min-width: 70px; }
  #mfg-wrapper .stats-band-inner { grid-template-columns: 1fr 1fr; }
}
