:root {
  --navy: #0A1628;
  --navy2: #112240;
  --gold: #F0B429;
  --gold2: #FCD34D;
  --red: #DC143C;
  --blue: #1A56DB;
  --blue-light: #3B82F6;
  --green: #10B981;
  --orange: #F59E0B;
  --slate: #8892A4;
  --white: #F8FAFC;
  --card: #162032;
  --border: rgba(240,180,41,0.15);
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ──────────── NAVBAR ──────────── */
nav {
  position: fixed; top:0; left:0; right:0; z-index:100;
  background: rgba(10,22,40,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 900;
  color: var(--gold);
  cursor: pointer;
  text-decoration: none;
}
.nav-logo span { color: var(--white); font-size: 0.75rem; font-family: 'DM Sans', sans-serif; font-weight: 300; display: block; letter-spacing: 3px; text-transform: uppercase; }
.logo-icon { width: 36px; height: 36px; background: var(--gold); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }

.nav-links { display: flex; gap: 0.25rem; }
.nav-link {
  padding: 8px 16px; border-radius: 8px;
  font-size: 0.875rem; font-weight: 500;
  cursor: pointer; transition: all 0.2s;
  color: var(--slate); border: none; background: none;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-link.active { color: var(--gold); background: rgba(240,180,41,0.1); }

.nav-cta { background: var(--gold); color: var(--navy); padding: 8px 20px; border-radius: 8px; font-weight: 600; font-size: 0.875rem; cursor: pointer; border: none; transition: all 0.2s; font-family: 'DM Sans', sans-serif; }
.nav-cta:hover { background: var(--gold2); transform: translateY(-1px); }

/* ──────────── PAGES ──────────── */
.page { display: none; padding-top: 64px; animation: fadeIn 0.4s ease; }
.page.active { display: block; }
@keyframes fadeIn { from { opacity:0; transform: translateY(8px); } to { opacity:1; transform: translateY(0); } }

/* ──────────── HOME PAGE ──────────── */
.hero {
  min-height: 92vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 4rem 2rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(26,86,219,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(240,180,41,0.08) 0%, transparent 50%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(240,180,41,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(240,180,41,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { max-width: 1200px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(240,180,41,0.1); border: 1px solid rgba(240,180,41,0.3); border-radius: 100px; padding: 6px 16px; font-size: 0.8rem; font-weight: 500; color: var(--gold); margin-bottom: 1.5rem; letter-spacing: 1px; text-transform: uppercase; }
.hero-flag { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity: 0.4; } }

.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; line-height: 1.1; margin-bottom: 1.5rem; }
.hero-title em { font-style: normal; color: var(--gold); }
.hero-subtitle { font-size: 1.1rem; color: var(--slate); line-height: 1.8; margin-bottom: 2.5rem; font-weight: 300; max-width: 480px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary { background: var(--gold); color: var(--navy); padding: 14px 28px; border-radius: 10px; font-weight: 700; font-size: 0.95rem; cursor: pointer; border: none; transition: all 0.2s; font-family: 'DM Sans', sans-serif; }
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(240,180,41,0.3); }
.btn-outline { background: transparent; color: var(--white); padding: 14px 28px; border-radius: 10px; font-weight: 600; font-size: 0.95rem; cursor: pointer; border: 1px solid rgba(255,255,255,0.2); transition: all 0.2s; font-family: 'DM Sans', sans-serif; text-decoration: none; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 1.5rem; transition: transform 0.2s; }
.stat-card:hover { transform: translateY(-4px); }
.stat-card:first-child { grid-column: 1 / -1; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 900; color: var(--gold); }
.stat-label { font-size: 0.85rem; color: var(--slate); margin-top: 4px; }
.stat-bar { height: 4px; background: rgba(255,255,255,0.06); border-radius: 100px; margin-top: 1rem; overflow: hidden; }
.stat-fill { height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--gold), var(--blue-light)); animation: grow 1.5s ease forwards; }
@keyframes grow { from { width: 0; } }

/* ──────────── SECTIONS ──────────── */
section { padding: 5rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-tag { font-family: 'DM Mono', monospace; font-size: 0.75rem; color: var(--gold); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 1rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; line-height: 1.2; margin-bottom: 1rem; }
.section-sub { color: var(--slate); font-size: 1rem; line-height: 1.8; max-width: 600px; font-weight: 300; }
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem; }

/* ──────────── SEARCH ──────────── */
.search-section { background: var(--navy2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 3rem 2rem; }
.search-wrap { max-width: 900px; margin: 0 auto; }
.search-title { text-align: center; margin-bottom: 2rem; }
.search-title h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; margin-bottom: 0.5rem; }
.search-title p { color: var(--slate); font-size: 0.95rem; }
.search-bar { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.search-input { flex: 1; background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 14px 20px; font-size: 1rem; color: var(--white); font-family: 'DM Sans', sans-serif; outline: none; transition: border-color 0.2s; }
.search-input:focus { border-color: var(--gold); }
.search-input::placeholder { color: var(--slate); }
.search-btn { background: var(--gold); color: var(--navy); padding: 14px 28px; border-radius: 12px; font-weight: 700; font-size: 0.95rem; cursor: pointer; border: none; transition: all 0.2s; white-space: nowrap; }
.search-filters { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.filter-chip { background: var(--card); border: 1px solid var(--border); border-radius: 100px; padding: 6px 16px; font-size: 0.8rem; color: var(--slate); cursor: pointer; transition: all 0.2s; }
.filter-chip:hover, .filter-chip.active { background: rgba(240,180,41,0.1); border-color: var(--gold); color: var(--gold); }

/* ──────────── CANDIDATE CARDS ──────────── */
.candidates-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 1.5rem; }
.candidate-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 20px; overflow: hidden;
  cursor: pointer; transition: all 0.3s;
}
.candidate-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); border-color: rgba(240,180,41,0.4); }
.card-header { padding: 1.5rem 1.5rem 1rem; display: flex; gap: 1rem; align-items: flex-start; position: relative; }
.candidate-avatar { width: 64px; height: 64px; border-radius: 50%; font-size: 1.5rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-weight: 700; }
.candidate-info h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.candidate-info .role { font-size: 0.8rem; color: var(--slate); font-family: 'DM Mono', monospace; }
.candidate-info .party { font-size: 0.8rem; color: var(--gold); margin-top: 4px; font-weight: 500; }
.status-badge { position: absolute; top: 1.5rem; right: 1.5rem; padding: 4px 12px; border-radius: 100px; font-size: 0.7rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.status-active { background: rgba(16,185,129,0.15); color: var(--green); border: 1px solid rgba(16,185,129,0.3); }
.status-candidate { background: rgba(59,130,246,0.15); color: var(--blue-light); border: 1px solid rgba(59,130,246,0.3); }

.card-progress { padding: 1rem 1.5rem; border-top: 1px solid var(--border); }
.progress-label { display: flex; justify-content: space-between; font-size: 0.8rem; margin-bottom: 8px; }
.progress-label span:first-child { color: var(--slate); }
.progress-label span:last-child { color: var(--gold); font-weight: 600; }
.progress-track { height: 6px; background: rgba(255,255,255,0.06); border-radius: 100px; overflow: hidden; }
.progress-fill { height: 100%; border-radius: 100px; transition: width 0.5s; }
.fill-green { background: linear-gradient(90deg, var(--green), #34D399); }
.fill-gold { background: linear-gradient(90deg, var(--gold), var(--gold2)); }
.fill-red { background: linear-gradient(90deg, var(--red), #F87171); }
.fill-blue { background: linear-gradient(90deg, var(--blue), var(--blue-light)); }

.card-tags { padding: 1rem 1.5rem; display: flex; gap: 0.5rem; flex-wrap: wrap; }
.tag { background: rgba(255,255,255,0.06); border-radius: 6px; padding: 4px 10px; font-size: 0.75rem; color: var(--slate); }
.card-footer { padding: 1rem 1.5rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.card-actions { display: flex; gap: 0.5rem; }
.icon-btn { width: 34px; height: 34px; border-radius: 8px; border: 1px solid var(--border); background: transparent; color: var(--slate); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; transition: all 0.2s; }
.icon-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(240,180,41,0.1); }
.follow-btn { padding: 6px 16px; border-radius: 8px; background: rgba(240,180,41,0.1); border: 1px solid rgba(240,180,41,0.3); color: var(--gold); font-size: 0.8rem; font-weight: 600; cursor: pointer; transition: all 0.2s; font-family: 'DM Sans', sans-serif; }
.follow-btn:hover { background: var(--gold); color: var(--navy); }
.follow-btn.following { background: var(--gold); color: var(--navy); }
.watchers { font-size: 0.8rem; color: var(--slate); }

/* ──────────── PROFILE PAGE ──────────── */
.profile-hero { background: var(--navy2); border-bottom: 1px solid var(--border); padding: 3rem 2rem; }
.profile-container { max-width: 1200px; margin: 0 auto; }
.profile-top { display: grid; grid-template-columns: auto 1fr auto; gap: 2rem; align-items: start; }
.profile-avatar-lg { width: 100px; height: 100px; border-radius: 50%; font-size: 2.5rem; display: flex; align-items: center; justify-content: center; font-weight: 700; border: 3px solid var(--gold); }
.profile-name { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; margin-bottom: 6px; }
.profile-meta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.profile-badge { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; color: var(--slate); }
.profile-badge strong { color: var(--white); }
.dot { width: 4px; height: 4px; border-radius: 50%; background: var(--border); }
.profile-score { text-align: center; }
.score-circle { width: 80px; height: 80px; border-radius: 50%; border: 3px solid var(--gold); display: flex; flex-direction: column; align-items: center; justify-content: center; margin: 0 auto 8px; }
.score-num { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 900; color: var(--gold); line-height: 1; }
.score-label { font-size: 0.65rem; color: var(--slate); text-transform: uppercase; letter-spacing: 1px; }
.score-caption { font-size: 0.75rem; color: var(--slate); text-align: center; }

.profile-tabs { display: flex; gap: 0; border-bottom: 1px solid var(--border); margin-top: 2rem; overflow-x: auto; }
.tab-btn { padding: 12px 24px; background: none; border: none; color: var(--slate); font-size: 0.875rem; font-weight: 500; cursor: pointer; transition: all 0.2s; white-space: nowrap; border-bottom: 2px solid transparent; margin-bottom: -1px; font-family: 'DM Sans', sans-serif; }
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
.tab-btn:hover { color: var(--white); }

.tab-content { display: none; padding: 2.5rem 2rem; max-width: 1200px; margin: 0 auto; animation: fadeIn 0.3s ease; }
.tab-content.active { display: grid; }

/* Tab: Propuestas */
#tab-propuestas { grid-template-columns: 1fr; gap: 1.5rem; }
.proposal-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 1.5rem; }
.proposal-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; gap: 1rem; }
.proposal-title { font-size: 1rem; font-weight: 600; }
.proposal-category { font-size: 0.75rem; font-family: 'DM Mono', monospace; color: var(--gold); }
.proposal-phase { padding: 4px 12px; border-radius: 100px; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; }
.phase-done { background: rgba(16,185,129,0.15); color: var(--green); }
.phase-progress { background: rgba(245,158,11,0.15); color: var(--orange); }
.phase-pending { background: rgba(136,146,164,0.1); color: var(--slate); }
.proposal-desc { font-size: 0.9rem; color: var(--slate); line-height: 1.7; margin-bottom: 1.5rem; }
.proposal-progress { margin-bottom: 1rem; }
.proposal-meta-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.proposal-votes { display: flex; gap: 1rem; }
.vote-item { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; cursor: pointer; transition: color 0.2s; }
.vote-item:hover { color: var(--gold); }
.vote-icon { font-size: 1rem; }
.comments-link { font-size: 0.8rem; color: var(--blue-light); cursor: pointer; }
.comments-link:hover { text-decoration: underline; }
.timeline-dots { display: flex; gap: 4px; margin-top: 1rem; }
.tdot { width: 8px; height: 8px; border-radius: 50%; }
.tdot.done { background: var(--green); }
.tdot.active-dot { background: var(--orange); }
.tdot.pending { background: rgba(255,255,255,0.1); }

/* Tab: Historia */
#tab-historia { grid-template-columns: 1fr; }
.timeline { position: relative; padding-left: 2rem; }
.timeline::before { content:''; position: absolute; left: 8px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--gold), var(--blue)); }
.timeline-item { position: relative; margin-bottom: 2rem; }
.timeline-item::before { content: ''; width: 16px; height: 16px; border-radius: 50%; background: var(--gold); border: 3px solid var(--navy); position: absolute; left: -2rem; top: 4px; }
.tl-year { font-family: 'DM Mono', monospace; font-size: 0.8rem; color: var(--gold); margin-bottom: 4px; }
.tl-card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 1.25rem; }
.tl-title { font-weight: 600; margin-bottom: 4px; }
.tl-desc { font-size: 0.875rem; color: var(--slate); line-height: 1.6; }

/* Tab: Investigaciones */
#tab-investigaciones { grid-template-columns: 1fr; gap: 1rem; }
.inv-card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 1.25rem; display: flex; gap: 1rem; align-items: flex-start; }
.inv-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.inv-red { background: rgba(220,20,60,0.15); }
.inv-yellow { background: rgba(240,180,41,0.15); }
.inv-green { background: rgba(16,185,129,0.15); }
.inv-title { font-weight: 600; margin-bottom: 4px; font-size: 0.95rem; }
.inv-meta { font-size: 0.8rem; color: var(--slate); margin-bottom: 8px; }
.inv-status { display: inline-block; padding: 3px 10px; border-radius: 100px; font-size: 0.7rem; font-weight: 600; }

/* Tab: Seguimiento */
#tab-seguimiento { grid-template-columns: 1fr 380px; gap: 2rem; }
.encuesta-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 1.5rem; }
.encuesta-title { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.encuesta-sub { font-size: 0.85rem; color: var(--slate); margin-bottom: 1.5rem; }
.option-row { margin-bottom: 1rem; }
.option-label { display: flex; justify-content: space-between; font-size: 0.875rem; margin-bottom: 6px; }
.option-track { height: 36px; background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; position: relative; cursor: pointer; transition: border-color 0.2s; }
.option-track:hover { border-color: var(--gold); }
.option-fill { height: 100%; border-radius: 8px; transition: width 0.8s ease; display: flex; align-items: center; padding-left: 12px; font-size: 0.8rem; font-weight: 600; }

.sidebar-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 1.5rem; margin-bottom: 1rem; }
.sidebar-card h4 { font-size: 0.875rem; font-weight: 600; margin-bottom: 1rem; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; font-family: 'DM Mono', monospace; }
.participation-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; color: var(--gold); }
.participation-label { font-size: 0.8rem; color: var(--slate); margin-bottom: 1rem; }
.comment-box { width: 100%; background: var(--navy); border: 1px solid var(--border); border-radius: 10px; padding: 12px; font-family: 'DM Sans', sans-serif; font-size: 0.875rem; color: var(--white); resize: vertical; min-height: 80px; outline: none; transition: border-color 0.2s; }
.comment-box:focus { border-color: var(--gold); }
.btn-small { padding: 8px 16px; border-radius: 8px; background: var(--gold); color: var(--navy); font-weight: 600; font-size: 0.8rem; cursor: pointer; border: none; margin-top: 8px; font-family: 'DM Sans', sans-serif; }

/* ──────────── ALERT BANNER ──────────── */
.alert-bar { background: rgba(220,20,60,0.1); border-bottom: 1px solid rgba(220,20,60,0.2); padding: 10px 2rem; text-align: center; font-size: 0.85rem; color: #FCA5A5; }
.alert-bar strong { color: var(--red); }

/* ──────────── STATS SECTION ──────────── */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.kpi-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 2rem; text-align: center; transition: all 0.3s; }
.kpi-card:hover { border-color: rgba(240,180,41,0.4); transform: translateY(-4px); }
.kpi-num { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 900; color: var(--gold); }
.kpi-label { font-size: 0.85rem; color: var(--slate); margin-top: 4px; }

/* ──────────── HOW IT WORKS ──────────── */
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.how-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 2rem; position: relative; transition: all 0.3s; }
.how-card:hover { transform: translateY(-6px); border-color: rgba(240,180,41,0.4); }
.how-num { font-family: 'Playfair Display', serif; font-size: 4rem; font-weight: 900; color: rgba(240,180,41,0.1); position: absolute; top: 1rem; right: 1.5rem; line-height: 1; }
.how-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.5rem; }
.how-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; }
.how-card p { font-size: 0.9rem; color: var(--slate); line-height: 1.7; }

/* ──────────── FOOTER ──────────── */
footer { background: var(--navy2); border-top: 1px solid var(--border); padding: 3rem 2rem; text-align: center; }
footer p { color: var(--slate); font-size: 0.875rem; line-height: 1.6; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 900; color: var(--gold); margin-bottom: 0.5rem; }
.footer-links { display: flex; justify-content: center; gap: 2rem; margin: 1.5rem 0; flex-wrap: wrap; }
.footer-link { color: var(--slate); font-size: 0.875rem; cursor: pointer; transition: color 0.2s; }
.footer-link:hover { color: var(--gold); }

/* ──────────── NOTIFICATION TOAST ──────────── */
.toast { position: fixed; bottom: 2rem; right: 2rem; background: var(--card); border: 1px solid var(--gold); border-radius: 12px; padding: 1rem 1.5rem; z-index: 999; animation: slideIn 0.3s ease; max-width: 300px; }
.toast.hide { animation: slideOut 0.3s ease forwards; }
.toast-title { font-weight: 600; margin-bottom: 4px; font-size: 0.9rem; color: var(--gold); }
.toast-msg { font-size: 0.85rem; color: var(--slate); }
@keyframes slideIn { from { transform: translateX(120%); } to { transform: translateX(0); } }
@keyframes slideOut { from { transform: translateX(0); } to { transform: translateX(120%); } }

/* ──────────── RESPONSIVE ──────────── */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .profile-top { grid-template-columns: auto 1fr; }
  .profile-score { display: none; }
  #tab-seguimiento { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .candidates-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .profile-top { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
}
