/* =============================================
   MORITA ACTION — COMPLETE STYLES
   ============================================= */

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
    --bg-primary: #0E1A2A;
    --bg-secondary: #172435;
    --bg-surface: #1D2B3E;
    --bg-surface-alt: #1A2738;
    --bg-input: #162233;
    --gold: #B58A3B;
    --gold-light: #D6B66A;
    --gold-pale: #C9A44A;
    --gold-glow: rgba(181, 138, 59, 0.25);
    --gold-subtle: rgba(181, 138, 59, 0.08);
    --text-primary: #F0EFEC;
    --text-body: #D5D8DD;
    --text-muted: #9EA6B3;
    --text-dim: #6B7383;
    --border-gold: rgba(181, 138, 59, 0.18);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-card: rgba(255, 255, 255, 0.05);
    --error: #E74C3C;
    --success: #27AE60;
    --font-heading: 'Cormorant Garamond', 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 5rem;
    --space-4xl: 8rem;
    --space-section: 10rem;
    --container-max: 1200px;
    --container-narrow: 750px;
    --header-height: 72px;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 0 40px rgba(181, 138, 59, 0.15);
    --shadow-gold-hover: 0 0 60px rgba(181, 138, 59, 0.25);
    --transition-fast: 200ms ease;
    --transition-base: 300ms ease;
    --z-header: 100;
    --z-mobile-menu: 200;
}

/* =============================================
   RESET
   ============================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); font-size: clamp(1rem, 0.95rem + 0.2vw, 1.1rem); line-height: 1.7; color: var(--text-body); background-color: var(--bg-primary); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }

/* =============================================
   UTILITIES
   ============================================= */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; top: -100%; left: var(--space-md); background: var(--gold); color: var(--bg-primary); padding: var(--space-sm) var(--space-md); border-radius: var(--radius-sm); z-index: 300; font-weight: 600; transition: top var(--transition-fast); }
.skip-link:focus { top: var(--space-md); }
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 var(--space-xl); position: relative; z-index: 1; }
.section-heading { font-family: var(--font-heading); font-size: clamp(2.25rem, 1.8rem + 2vw, 3.5rem); font-weight: 600; color: var(--text-primary); margin-bottom: var(--space-md); line-height: 1.15; letter-spacing: -0.01em; }
.section-heading--gold { color: var(--text-primary); }
.section-subheading { color: var(--text-muted); font-size: clamp(1.05rem, 1rem + 0.15vw, 1.15rem); max-width: var(--container-narrow); margin-bottom: var(--space-3xl); font-weight: 300; }

/* =============================================
   SECTION DIVIDER
   ============================================= */
.section-divider { display: flex; align-items: center; justify-content: center; gap: var(--space-lg); padding: 0 var(--space-xl); max-width: var(--container-max); margin: 0 auto; }
.section-divider__line { display: block; height: 1px; width: 80px; background: var(--border-gold); }
.section-divider__diamond { display: block; width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }

/* =============================================
   BUTTONS
   ============================================= */
.btn { display: inline-flex; align-items: center; gap: var(--space-sm); font-family: var(--font-body); font-weight: 600; border-radius: 14px; transition: all var(--transition-base); white-space: nowrap; cursor: pointer; border: 2px solid transparent; font-size: 0.95rem; text-decoration: none; }
.btn:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 2px; }
.btn--gold { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-pale) 100%); color: #0E1A2A; box-shadow: 0 4px 16px rgba(181, 138, 59, 0.2); border-color: transparent; }
.btn--gold:hover { box-shadow: var(--shadow-gold-hover); transform: translateY(-2px); filter: brightness(1.1); }
.btn--outline-gold { background: transparent; color: var(--gold-light); border-color: var(--border-gold); }
.btn--outline-gold:hover { background: var(--gold-subtle); border-color: var(--gold); color: var(--gold-light); }
.btn--text-gold { background: transparent; color: var(--gold-light); border: none; padding: var(--space-sm) 0; font-weight: 500; font-size: 0.9rem; }
.btn--text-gold:hover { color: var(--gold-light); gap: var(--space-md); }
.btn--lg { padding: var(--space-md) var(--space-2xl); font-size: 1.05rem; }
.btn--sm { padding: var(--space-sm) var(--space-lg); font-size: 0.875rem; }
.btn--full { width: 100%; justify-content: center; }

/* =============================================
   BADGES
   ============================================= */
.badge { display: inline-block; padding: 2px 10px; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; border-radius: 4px; }
.badge--official { background: rgba(181, 138, 59, 0.15); color: var(--gold-light); }
.badge--media { background: rgba(158, 166, 179, 0.15); color: var(--text-muted); }
.badge--member { background: rgba(214, 182, 106, 0.12); color: var(--gold-pale); }

/* =============================================
   HEADER
   ============================================= */
.header { position: fixed; top: 0; left: 0; width: 100%; z-index: var(--z-header); transition: all var(--transition-base); height: var(--header-height); }
.header--scrolled { background: rgba(14, 26, 42, 0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border-gold); box-shadow: 0 4px 30px rgba(0,0,0,0.4); }
.header__container { display: flex; align-items: center; justify-content: space-between; max-width: var(--container-max); margin: 0 auto; padding: 0 var(--space-xl); height: 100%; }
.header__logo { display: flex; align-items: center; gap: var(--space-sm); flex-shrink: 0; z-index: 10; }
.header__logo-icon { color: var(--gold); font-size: 1.2rem; }
.header__logo-text { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--text-primary); letter-spacing: -0.01em; }
.header__logo-dot { color: var(--gold); }
.nav { display: flex; align-items: center; }
.nav__list { display: flex; align-items: center; gap: var(--space-xs); }
.nav__link { padding: var(--space-sm) var(--space-md); color: var(--text-muted); font-weight: 500; font-size: 0.9rem; border-radius: var(--radius-sm); transition: all var(--transition-fast); }
.nav__link:hover, .nav__link--active { color: var(--text-primary); }
.nav__link--active { color: var(--gold-light); }
.header__actions { display: flex; align-items: center; gap: var(--space-md); }

/* =============================================
   MOBILE TOGGLE
   ============================================= */
.mobile-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 36px; height: 36px; padding: 6px; z-index: 10; }
.mobile-toggle__bar { display: block; width: 100%; height: 2px; background: var(--text-primary); border-radius: 2px; transition: all var(--transition-base); }
.mobile-toggle--active .mobile-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle--active .mobile-toggle__bar:nth-child(2) { opacity: 0; }
.mobile-toggle--active .mobile-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   MOBILE MENU
   ============================================= */
.mobile-menu { display: none; position: fixed; inset: 0; z-index: var(--z-mobile-menu); pointer-events: none; }
.mobile-menu--open { pointer-events: auto; }
.mobile-menu__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(8px); opacity: 0; transition: opacity var(--transition-base); }
.mobile-menu--open .mobile-menu__overlay { opacity: 1; }
.mobile-menu__drawer { position: absolute; top: 0; right: 0; width: min(320px, 85vw); height: 100%; background: var(--bg-primary); border-left: 1px solid var(--border-gold); padding: calc(var(--header-height) + var(--space-xl)) var(--space-xl) var(--space-xl); transform: translateX(100%); transition: transform var(--transition-base); overflow-y: auto; }
.mobile-menu--open .mobile-menu__drawer { transform: translateX(0); }
.mobile-menu__list { display: flex; flex-direction: column; gap: var(--space-xs); }
.mobile-menu__link { display: block; padding: var(--space-md); color: var(--text-muted); font-size: 1.1rem; font-weight: 500; border-radius: var(--radius-sm); transition: all var(--transition-fast); }
.mobile-menu__link:hover, .mobile-menu__link--active { background: rgba(181,138,59,0.08); color: var(--gold-light); }
.mobile-menu__cta { margin-top: var(--space-xl); padding-top: var(--space-xl); border-top: 1px solid var(--border-gold); display: flex; flex-direction: column; gap: var(--space-md); }

/* =============================================
   HERO
   ============================================= */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; background: var(--bg-primary); overflow: hidden; padding-top: var(--header-height); }
.hero__bg-word { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: var(--font-heading); font-size: clamp(8rem, 12vw, 18rem); font-weight: 700; color: rgba(255,255,255,0.015); white-space: nowrap; pointer-events: none; }
.hero__particles { position: absolute; inset: 0; pointer-events: none; }
.hero__container { display: grid; grid-template-columns: 1fr 380px; gap: var(--space-3xl); max-width: var(--container-max); margin: 0 auto; padding: var(--space-3xl) var(--space-xl); align-items: center; position: relative; z-index: 1; }
.hero__eyebrow { display: inline-block; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold-light); margin-bottom: var(--space-lg); }
.hero__heading { font-family: var(--font-heading); font-size: clamp(2.75rem, 2rem + 3.5vw, 4.5rem); font-weight: 600; color: var(--text-primary); line-height: 1.05; margin-bottom: var(--space-md); letter-spacing: -0.02em; }
.hero__subheading { font-size: clamp(1.1rem, 1rem + 0.4vw, 1.35rem); color: var(--text-body); font-weight: 400; margin-bottom: var(--space-md); line-height: 1.5; }
.hero__text { color: var(--text-muted); margin-bottom: var(--space-2xl); font-size: 1rem; font-weight: 300; }
.hero__cards { display: flex; flex-direction: column; gap: var(--space-md); }
.hero-action-card { display: flex; align-items: center; gap: var(--space-lg); background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-surface-alt) 100%); border: 1px solid var(--border-card); border-radius: var(--radius-lg); padding: var(--space-lg) var(--space-xl); transition: all var(--transition-base); cursor: pointer; text-decoration: none; color: inherit; width: 100%; text-align: left; }
.hero-action-card:hover { transform: translateX(6px); border-color: var(--border-gold); box-shadow: var(--shadow-gold); }
.hero-action-card__icon { font-size: 1.5rem; color: var(--gold); flex-shrink: 0; width: 40px; text-align: center; }
.hero-action-card__content { flex: 1; min-width: 0; }
.hero-action-card__title { display: block; font-weight: 600; color: var(--text-primary); font-size: 1.05rem; margin-bottom: 2px; }
.hero-action-card__desc { display: block; color: var(--text-muted); font-size: 0.85rem; font-weight: 300; }
.hero-action-card__arrow { color: var(--gold); font-size: 0.9rem; flex-shrink: 0; transition: transform var(--transition-fast); }
.hero-action-card:hover .hero-action-card__arrow { transform: translateX(4px); }
.hero__dashboard { background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-surface-alt) 100%); border: 1px solid var(--border-gold); border-radius: var(--radius-xl); padding: var(--space-2xl); }
.hero__dashboard-heading { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: var(--space-xl); padding-bottom: var(--space-md); border-bottom: 1px solid var(--border-gold); }
.hero__stat { margin-bottom: var(--space-xl); }
.hero__stat:last-child { margin-bottom: 0; }
.hero__stat-number { display: block; font-family: var(--font-heading); font-size: 3.5rem; font-weight: 700; color: var(--gold-light); line-height: 1; margin-bottom: var(--space-xs); }
.hero__stat-label { display: block; font-size: 0.85rem; color: var(--text-muted); font-weight: 400; }
.hero__stat-indicator { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: var(--space-sm); margin-bottom: var(--space-xs); }
.hero__stat-indicator--active { background: #4CAF50; box-shadow: 0 0 12px rgba(76,175,80,0.5); animation: pulse-indicator 2s ease-in-out infinite; }
@keyframes pulse-indicator { 0%, 100% { box-shadow: 0 0 12px rgba(76,175,80,0.5); } 50% { box-shadow: 0 0 24px rgba(76,175,80,0.8); } }

/* =============================================
   FACTS
   ============================================= */
.facts { position: relative; padding: var(--space-section) 0; background: var(--bg-primary); }
.facts__bg-word { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: var(--font-heading); font-size: clamp(6rem, 10vw, 15rem); font-weight: 700; color: rgba(255,255,255,0.012); white-space: nowrap; pointer-events: none; }
.facts__timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-xl); }
.fact-card { background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-surface-alt) 100%); border: 1px solid var(--border-card); border-radius: var(--radius-lg); padding: var(--space-xl); transition: all var(--transition-base); display: flex; flex-direction: column; }
.fact-card:hover { transform: translateY(-6px); border-color: var(--border-gold); box-shadow: var(--shadow-gold); }
.fact-card__date { display: block; font-family: var(--font-heading); font-size: 1.25rem; font-weight: 600; color: var(--gold-light); margin-bottom: var(--space-sm); }
.fact-card .badge { align-self: flex-start; margin-bottom: var(--space-md); }
.fact-card__heading { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600; color: var(--text-primary); margin-bottom: var(--space-sm); }
.fact-card__text { color: var(--text-muted); font-size: 0.875rem; flex: 1; margin-bottom: var(--space-md); }

/* =============================================
   PETITION SECTION
   ============================================= */
.petition-section { position: relative; padding: var(--space-section) 0; background: var(--bg-primary); }
.petition-section__bg-word { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: var(--font-heading); font-size: clamp(6rem, 10vw, 15rem); font-weight: 700; color: rgba(255,255,255,0.012); white-space: nowrap; pointer-events: none; }

/* =============================================
   PETITION WIDGET
   ============================================= */
.petition-widget { max-width: 720px; margin: 0 auto; }
.pw-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border-gold); }
.pw-header-icon { width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; background: rgba(181,138,59,0.1); border-radius: 12px; font-size: 1.4rem; color: var(--gold-light); flex-shrink: 0; }
.pw-title { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 600; color: var(--text-primary); margin: 0 0 4px 0; line-height: 1.2; }
.pw-date { font-size: 0.85rem; color: var(--text-muted); margin: 0; }
.pw-intro { margin-bottom: 1.5rem; padding: 1.25rem; background: rgba(181,138,59,0.04); border-left: 3px solid var(--gold); border-radius: 0 var(--radius-md) var(--radius-md) 0; }
.pw-intro p { margin: 0; font-size: 0.95rem; line-height: 1.6; }
.pw-questions { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.pw-question { display: flex; gap: 1rem; padding: 1.25rem; background: var(--bg-surface); border: 1px solid var(--border-card); border-radius: var(--radius-md); }
.pw-question-num { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: rgba(181,138,59,0.15); color: var(--gold-light); font-weight: 700; font-size: 0.9rem; border-radius: 50%; flex-shrink: 0; }
.pw-question-text { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600; color: var(--text-primary); margin: 0 0 6px 0; line-height: 1.3; }
.pw-question-ctx { font-size: 0.88rem; color: var(--text-muted); margin: 0; line-height: 1.5; }
.pw-demands { margin-bottom: 1.5rem; padding: 1.25rem; background: var(--bg-surface); border: 1px solid var(--border-card); border-radius: var(--radius-md); }
.pw-demands-heading { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; color: var(--text-primary); margin: 0 0 0.75rem 0; }
.pw-demands ul { list-style: none; padding: 0; margin: 0; }
.pw-demands li { position: relative; padding-left: 1.25rem; font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0.5rem; line-height: 1.5; }
.pw-demands li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }

/* Petition Form */
.pw-form { background: var(--bg-surface); border: 1px solid var(--border-gold); border-radius: var(--radius-lg); padding: 1.75rem; margin-bottom: 1.5rem; }
.pw-form-heading { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 600; color: var(--text-primary); margin: 0 0 0.5rem 0; }
.pw-form-sub { font-size: 0.9rem; color: var(--text-muted); margin: 0 0 1.5rem 0; }
.pw-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.pw-field { margin-bottom: 1.25rem; }
.pw-field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.4rem; }
.pw-field input { width: 100%; padding: 0.7rem 0.9rem; background: var(--bg-input); border: 1px solid var(--border-gold); border-radius: 8px; color: var(--text-primary); font-family: inherit; font-size: 0.95rem; transition: border-color 0.2s ease, box-shadow 0.2s ease; outline: none; }
.pw-field input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(181,138,59,0.1); }
.pw-field input.input-error { border-color: var(--error); }
.pw-field input::placeholder { color: rgba(158,166,179,0.4); }
.pw-error { font-size: 0.8rem; color: var(--error); margin: 0.3rem 0 0 0; min-height: 1.2rem; }
.pw-terms { margin-bottom: 1.5rem; }
.pw-checkbox { display: flex; align-items: flex-start; gap: 0.6rem; cursor: pointer; font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }
.pw-checkbox input { position: absolute; opacity: 0; width: 0; height: 0; }
.pw-checkbox-mark { width: 20px; height: 20px; min-width: 20px; border: 2px solid var(--border-gold); border-radius: 4px; margin-top: 2px; transition: all 0.2s ease; display: flex; align-items: center; justify-content: center; background: var(--bg-input); }
.pw-checkbox input:checked + .pw-checkbox-mark { background: var(--gold); border-color: var(--gold); }
.pw-checkbox input:checked + .pw-checkbox-mark::after { content: ''; display: block; width: 5px; height: 10px; border: solid #0E1A2A; border-width: 0 2px 2px 0; transform: rotate(45deg); margin-top: -2px; }
.pw-checkbox-text { flex: 1; }
.pw-btn-submit { width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.9rem 2rem; font-family: inherit; font-weight: 600; font-size: 1rem; border-radius: 12px; cursor: pointer; transition: all 0.25s ease; border: 2px solid transparent; background: linear-gradient(135deg, var(--gold) 0%, #C9A44A 100%); color: #0E1A2A; box-shadow: 0 4px 16px rgba(181,138,59,0.2); }
.pw-btn-submit:hover:not(:disabled) { box-shadow: 0 0 30px rgba(181,138,59,0.35); transform: translateY(-1px); filter: brightness(1.08); }
.pw-btn-submit:disabled { opacity: 0.4; cursor: not-allowed; filter: grayscale(0.5); }
.pw-privacy { display: flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; color: var(--text-muted); margin: 1rem 0 0 0; text-align: center; justify-content: center; }
.pw-privacy i { color: var(--gold); }

/* Petition Success */
.pw-success { text-align: center; padding: 2rem; background: var(--bg-surface); border: 1px solid var(--border-gold); border-radius: var(--radius-lg); margin-bottom: 1.5rem; }
.pw-success-icon { font-size: 3rem; color: var(--success); margin-bottom: 1rem; }
.pw-success-heading { font-family: var(--font-heading); font-size: 1.75rem; font-weight: 600; color: var(--text-primary); margin: 0 0 0.5rem 0; }
.pw-success-text { font-size: 1rem; color: var(--text-body); margin: 0 0 1.5rem 0; }
.pw-success-details { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 1.5rem; }
.pw-success-detail { padding: 1rem; background: var(--bg-surface-alt); border-radius: 8px; }
.pw-success-label { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); margin-bottom: 0.25rem; }
.pw-success-value { display: block; font-weight: 600; color: var(--text-primary); font-size: 0.95rem; }

/* Share Buttons */
.pw-share-buttons { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border-gold); }
.pw-share-heading { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1rem; }
.pw-share-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem; }
.pw-share-btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem; padding: 0.65rem 0.5rem; font-family: inherit; font-weight: 600; font-size: 0.8rem; border-radius: 10px; cursor: pointer; transition: all 0.2s ease; border: 1px solid var(--border-gold); color: var(--text-body); background: var(--bg-surface-alt); }
.pw-share-btn:hover { transform: translateY(-2px); }
.pw-share-facebook:hover { background: #1877F2; border-color: #1877F2; color: #fff; }
.pw-share-twitter:hover { background: #000; border-color: #fff; color: #fff; }
.pw-share-instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); border-color: transparent; color: #fff; }
.pw-share-tiktok:hover { background: #000; border-color: #fff; color: #fff; }

/* Count Bar */
.pw-count-bar { text-align: center; padding: 1.5rem; background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-surface-alt) 100%); border: 1px solid var(--border-gold); border-radius: var(--radius-lg); }
.pw-count-number { font-family: var(--font-heading); font-size: 3rem; font-weight: 700; color: var(--gold-light); line-height: 1; }
.pw-count-label { font-size: 0.9rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 0.25rem; }
.pw-count-provinces { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.4rem; }

/* =============================================
   HELP
   ============================================= */
.help { position: relative; padding: var(--space-section) 0; background: var(--bg-primary); }
.help__bg-word { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: var(--font-heading); font-size: clamp(6rem, 10vw, 15rem); font-weight: 700; color: rgba(255,255,255,0.012); white-space: nowrap; pointer-events: none; }
.help__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.help-card { background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-surface-alt) 100%); border: 1px solid var(--border-card); border-radius: var(--radius-lg); padding: var(--space-2xl); text-align: center; transition: all var(--transition-base); cursor: pointer; text-decoration: none; color: inherit; display: flex; flex-direction: column; align-items: center; gap: var(--space-sm); }
.help-card:hover { transform: translateY(-6px); border-color: var(--border-gold); box-shadow: var(--shadow-gold); }
.help-card__icon { font-size: 2rem; color: var(--gold); margin-bottom: var(--space-sm); }
.help-card__heading { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; color: var(--text-primary); }
.help-card__text { color: var(--text-muted); font-size: 0.875rem; }

/* =============================================
   FINAL CTA
   ============================================= */
.final-cta { position: relative; padding: var(--space-section) 0; background: var(--bg-primary); text-align: center; }
.final-cta__bg-word { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: var(--font-heading); font-size: clamp(6rem, 12vw, 18rem); font-weight: 700; color: rgba(255,255,255,0.015); white-space: nowrap; pointer-events: none; }
.final-cta__heading { font-family: var(--font-heading); font-size: clamp(2rem, 1.6rem + 2vw, 3.25rem); font-weight: 600; color: var(--text-primary); margin-bottom: var(--space-lg); line-height: 1.2; }
.final-cta__text { color: var(--text-muted); max-width: 600px; margin: 0 auto var(--space-2xl); font-size: 1.05rem; font-weight: 300; }
.final-cta__buttons { display: flex; justify-content: center; gap: var(--space-lg); flex-wrap: wrap; }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--bg-secondary); border-top: 1px solid var(--border-gold); padding: var(--space-3xl) 0 0; }
.footer__container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--space-xl); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-2xl); padding-bottom: var(--space-2xl); border-bottom: 1px solid var(--border-subtle); }
.footer__logo { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--text-primary); display: flex; align-items: center; gap: var(--space-sm); margin-bottom: var(--space-md); }
.footer__logo i { color: var(--gold); }
.footer__text { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }
.footer__heading { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; color: var(--text-primary); margin-bottom: var(--space-md); }
.footer__links { display: flex; flex-direction: column; gap: var(--space-sm); }
.footer__links a { font-size: 0.9rem; color: var(--text-muted); transition: color var(--transition-fast); }
.footer__links a:hover { color: var(--gold-light); }
.footer__links--info li { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }
.footer__info-label { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-dim); margin-bottom: 1px; }
.footer__status-badge { display: inline-block; font-size: 0.6rem; padding: 1px 6px; border-radius: 3px; background: rgba(231,76,60,0.15); color: #E74C3C; text-transform: uppercase; letter-spacing: 0.04em; font-weight: 600; vertical-align: middle; margin-left: 4px; }
.footer__email { font-size: 0.9rem; color: var(--gold-light); display: block; margin-bottom: var(--space-md); word-break: break-all; }
.footer__social { display: flex; gap: var(--space-sm); }
.footer__social-btn { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid var(--border-gold); color: var(--text-muted); transition: all var(--transition-fast); }
.footer__social-btn:hover { background: var(--gold-subtle); color: var(--gold-light); border-color: var(--gold); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding: var(--space-lg) 0; flex-wrap: wrap; gap: var(--space-md); }
.footer__copyright { font-size: 0.8rem; color: var(--text-dim); }
.footer__legal { display: flex; gap: var(--space-lg); }
.footer__legal a { font-size: 0.8rem; color: var(--text-dim); transition: color var(--transition-fast); }
.footer__legal a:hover { color: var(--gold-light); }
.footer__credit { text-align: center; padding-top: var(--space-md); padding-bottom: var(--space-md); font-size: 0.75rem; color: var(--text-dim); border-top: 1px solid var(--border-subtle); margin-top: var(--space-md); }
.footer__credit a { color: var(--text-muted); transition: color var(--transition-fast); text-decoration: underline; text-underline-offset: 3px; }
.footer__credit a:hover { color: var(--gold-light); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .hero__container { grid-template-columns: 1fr; gap: var(--space-2xl); }
    .hero__dashboard { max-width: 500px; margin: 0 auto; }
    .facts__timeline { grid-template-columns: repeat(2, 1fr); }
    .help__grid { grid-template-columns: repeat(2, 1fr); }
    .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav { display: none; }
    .header__actions .btn { display: none; }
    .mobile-toggle { display: flex; }
    .mobile-menu { display: block; }
    .hero { min-height: auto; padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-2xl); }
    .hero__container { padding: var(--space-xl) var(--space-md); }
    .hero__heading { font-size: clamp(2rem, 1.6rem + 3vw, 2.75rem); }
    .hero__dashboard { max-width: 100%; }
    .facts__timeline { grid-template-columns: 1fr; }
    .help__grid { grid-template-columns: 1fr; }
    .pw-field-row { grid-template-columns: 1fr; }
    .pw-success-details { grid-template-columns: 1fr; }
    .pw-share-grid { grid-template-columns: repeat(2, 1fr); }
    .footer__grid { grid-template-columns: 1fr; gap: var(--space-xl); }
    .footer__bottom { flex-direction: column; text-align: center; }
    .final-cta__buttons { flex-direction: column; align-items: center; }
    .final-cta__buttons .btn { width: 100%; max-width: 350px; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
@media print {
    .header, .mobile-menu, .mobile-toggle, .hero__particles, .section-divider, .btn, .hero__bg-word, .facts__bg-word, .petition-section__bg-word, .help__bg-word, .final-cta__bg-word { display: none !important; }
    body { background: #fff; color: #000; font-size: 12pt; }
    .hero, .facts, .petition-section, .help, .final-cta { padding: 2rem 0; background: #fff; }
}