/* ═══════════════════════════════════════════════════
   RODOLFO HERNÁNDEZ BAZ — STYLES
   Color scheme: Dark #0A0A0A + Gold #D4AF37 + Silver #C0C0C0
   ═══════════════════════════════════════════════════ */

/* ── Reset & Base ─────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #D4AF37;
    --gold-light: #E6C25A;
    --gold-dark: #B8962E;
    --bg-primary: #0A0A0A;
    --bg-secondary: rgba(14, 14, 14, 0.5);
    --bg-card: rgba(20, 20, 20, 0.55);
    --bg-card-hover: rgba(28, 28, 28, 0.6);
    --text-primary: #FFFFFF;
    --text-secondary: #E0E0E0;
    --text-muted: #999999;
    --border-subtle: rgba(212, 175, 55, 0.15);
    --border-card: rgba(212, 175, 55, 0.2);
    --silver: #C0C0C0;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Montserrat', 'Inter', system-ui, sans-serif;
    --font-mono: 'Fira Code', 'Consolas', monospace;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    z-index: 1;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }

/* ── Utilities ────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.section {
    padding: 5rem 0;
}
.section-alt {
    background-color: var(--bg-secondary);
}

.circuit-bg {
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.1);
    margin-bottom: 1rem;
    color: var(--gold);
}
.section-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
}
@media (min-width: 640px) { .section-title { font-size: 2.25rem; } }
.section-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    max-width: 200px;
    margin: 1rem auto 0;
}

/* Card */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 12px;
    transition: all 0.3s ease;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
}

/* Badge */
.badge {
    display: inline-block;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 4px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Divider */
.divider {
    border: none;
    border-top: 1px solid var(--border-subtle);
    margin: 1rem 0;
}

/* ── Navbar ───────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}
.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
}
.nav-logo-dim {
    color: var(--silver);
    font-weight: 300;
    font-size: 0.875rem;
}
.nav-menu {
    display: none;
    gap: 1.5rem;
}
@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
        align-items: center;
    }
}
.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}
.nav-link:hover {
    color: var(--gold);
}

/* Mobile toggle */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}
@media (min-width: 1024px) {
    .nav-toggle { display: none; }
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
    border-radius: 1px;
}
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile menu overlay */
.nav-mobile {
    display: none;
    position: fixed;
    inset: 0;
    top: 64px;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 999;
}
.nav-mobile.open {
    display: flex;
}
.nav-mobile a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.25rem;
    transition: color 0.2s;
}
.nav-mobile a:hover {
    color: var(--gold);
}

/* ── Hero ─────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-circuit-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.4;
}

/* Matrix gold cascade canvas — global */
#matrixCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.25;
    pointer-events: none;
}
.hero-circuit-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.06;
}
.hero-radial {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 20%, #0A0A0A 70%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Profile circle */
.hero-profile {
    margin-bottom: 2rem;
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}
.hero-profile-ring {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    padding: 4px;
    animation: pulse-gold 3s infinite;
}
@media (min-width: 640px) {
    .hero-profile-ring { width: 280px; height: 280px; }
}
.hero-profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

/* Hero title */
.hero-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    line-height: 1.1;
}
@media (min-width: 640px) { .hero-title { font-size: 3.5rem; } }
@media (min-width: 768px) { .hero-title { font-size: 4rem; } }
.hero-title-gold {
    background: linear-gradient(135deg, #D4AF37, #E6C25A, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-title-white {
    color: var(--text-primary);
    -webkit-text-fill-color: var(--text-primary);
}

/* Typewriter */
.hero-typewriter-wrap {
    height: 2rem;
    margin-bottom: 2.5rem;
}
.hero-typewriter {
    display: inline;
    font-family: var(--font-mono);
    color: var(--text-muted);
    font-size: 0.875rem;
}
@media (min-width: 640px) { .hero-typewriter { font-size: 1rem; } }
.hero-cursor {
    display: inline-block;
    width: 2px;
    height: 1.2em;
    background: var(--gold);
    margin-left: 2px;
    vertical-align: middle;
    animation: blink 1s step-end infinite;
}

/* Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 640px) {
    .hero-stats { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
}
.stat {
    text-align: center;
}
.stat-value {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(90deg, #D4AF37, #E6C25A, #D4AF37, #B8962E, #D4AF37);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}
@media (min-width: 640px) { .stat-value { font-size: 2.25rem; } }
.stat-label {
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-top: 4px;
}
@media (min-width: 640px) { .stat-label { font-size: 0.875rem; } }

/* Buttons */
.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}
@media (min-width: 640px) {
    .hero-actions { flex-direction: row; }
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}
.btn-primary {
    background: var(--gold);
    color: var(--bg-primary);
}
.btn-primary:hover {
    background: var(--gold-light);
}
.btn-outline {
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold);
    background: transparent;
}
.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: float 6s ease-in-out infinite;
}
.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}
.scroll-dot {
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: bounce 2s infinite;
}

/* ── About ────────────────────────────────────── */
.about-grid {
    display: grid;
    gap: 1.5rem;
}
@media (min-width: 1024px) {
    .about-grid { grid-template-columns: 2fr 1fr; }
}
.about-main {
    padding: 2rem;
}
@media (min-width: 640px) { .about-main { padding: 2.5rem; } }
.about-main p {
    color: var(--text-secondary);
    line-height: 1.7;
}
.terminal-prompt {
    font-family: var(--font-mono);
    color: rgba(212, 175, 55, 0.6);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}
.about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.info-card {
    padding: 1.5rem;
}
.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}
.info-item:last-child { margin-bottom: 0; }
.info-item span {
    color: var(--text-secondary);
    font-size: 0.875rem;
}
.social-card {
    padding: 1.5rem;
}
.social-label {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}
.social-links {
    display: flex;
    gap: 0.75rem;
}
.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.2s ease;
}
.social-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
}

/* ── Skills ───────────────────────────────────── */
.skills-grid {
    display: grid;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .skills-grid { grid-template-columns: 1fr 1fr; }
}
.skills-grid .card {
    padding: 2rem;
}
@media (min-width: 640px) { .skills-grid .card { padding: 2.5rem; } }
.skill-item {
    margin-bottom: 1.25rem;
}
.skill-item:last-child { margin-bottom: 0; }
.skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.skill-name {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}
.skill-pct {
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 600;
}
.progress-track {
    height: 8px;
    background: var(--bg-primary);
    border-radius: 4px;
    overflow: hidden;
}
.progress-fill {
    height: 100%;
    border-radius: 4px;
    width: 0;
    background: linear-gradient(90deg, #D4AF37, #E6C25A);
    transition: width 1.5s ease-out;
}

/* ── Certifications ───────────────────────────── */
.cert-grid {
    display: grid;
    gap: 1rem;
}
@media (min-width: 640px) {
    .cert-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .cert-grid { grid-template-columns: repeat(3, 1fr); }
}
.cert-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
}
.cert-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cert-name {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 4px;
}

/* ── Education ────────────────────────────────── */
.edu-grid {
    display: grid;
    gap: 1.5rem;
}
@media (min-width: 640px) {
    .edu-grid { grid-template-columns: repeat(3, 1fr); }
}
.edu-card {
    padding: 1.5rem;
    text-align: center;
}
.edu-icon {
    display: inline-flex;
    margin-bottom: 1rem;
}
.edu-card h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.edu-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ── Distinciones ─────────────────────────────── */
.tabs {
    max-width: 900px;
    margin: 0 auto;
}
.tab-list {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}
.tab-btn {
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid var(--border-card);
    background: var(--bg-card);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}
.tab-btn:hover {
    color: var(--gold);
    border-color: rgba(212, 175, 55, 0.4);
}
.tab-btn.active {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}
.dist-grid {
    display: grid;
    gap: 1rem;
}
@media (min-width: 640px) {
    .dist-grid { grid-template-columns: repeat(2, 1fr); }
}
.dist-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 1.25rem;
}
.dist-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.dist-card h4 {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 4px;
}
.dist-org {
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 4px;
}
.dist-detail {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 4px;
}
.dist-place {
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* ── Conferencias ─────────────────────────────── */
.conf-subtitle {
    text-align: center;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}
.conf-count {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(90deg, #D4AF37, #E6C25A, #D4AF37, #B8962E, #D4AF37);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}
.section-desc {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}
.conf-grid {
    display: grid;
    gap: 1rem;
}
@media (min-width: 640px) {
    .conf-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .conf-grid { grid-template-columns: repeat(4, 1fr); }
}
.conf-card {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
}
.conf-accent-bar {
    width: 100%;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.4), rgba(212, 175, 55, 0.1));
    margin-bottom: 1rem;
}
.conf-card h4 {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}
.conf-org {
    color: var(--gold);
    font-size: 0.75rem;
    margin-bottom: 4px;
}
.conf-topic {
    color: var(--text-secondary);
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
    flex: 1;
}
.conf-place {
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* Conferencia image */
.conf-img-wrap {
    width: 100%;
    margin-bottom: 0.75rem;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(212, 175, 55, 0.05);
    min-height: 0;
}
.conf-img-wrap:empty {
    display: none;
}
.conf-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    max-height: 180px;
}

/* ── Publicaciones ────────────────────────────── */
.pub-grid {
    display: grid;
    gap: 2.5rem;
}
@media (min-width: 1024px) {
    .pub-grid { grid-template-columns: 1fr 1fr; }
}
.pub-subtitle {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
}
.pub-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.pub-card {
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}
.pub-img-wrap {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(212, 175, 55, 0.05);
}
.pub-img-wrap:empty {
    display: none;
}
.pub-img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}
@media (min-width: 640px) {
    .pub-img-wrap {
        width: 80px;
        height: 80px;
    }
}
.pub-card h4 {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.875rem;
}
.pub-card p {
    color: var(--text-secondary);
    font-size: 0.75rem;
    margin-top: 4px;
}
.ext-icon {
    flex-shrink: 0;
    opacity: 0.5;
    margin-top: 2px;
}
.inv-card {
    padding: 1.25rem;
}
.inv-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}
.inv-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.inv-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-decoration: none;
    transition: all 0.2s ease;
}
.inv-link:hover {
    background: rgba(212, 175, 55, 0.2);
}

/* ── Contacto ─────────────────────────────────── */
.contact-card-wrap {
    max-width: 700px;
    margin: 0 auto;
}
.contact-card {
    padding: 2rem;
}
@media (min-width: 640px) { .contact-card { padding: 2.5rem; } }
.contact-heading {
    color: var(--gold);
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}
.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.contact-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-label {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.contact-value {
    color: var(--text-primary);
    font-weight: 500;
}
.contact-social {
    margin-top: 1.5rem;
}
.contact-social-label {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.75rem;
}

/* ── Footer ───────────────────────────────────── */
.footer {
    padding: 2rem 0;
    border-top: 1px solid var(--border-subtle);
    background: rgba(10, 10, 10, 0.6);
}
.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}
@media (min-width: 640px) {
    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
    }
}
.footer-copy {
    color: var(--text-muted);
    font-size: 0.75rem;
}
.footer-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* ── Animations ───────────────────────────────── */
@keyframes pulse-gold {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    50% { box-shadow: 0 0 20px 5px rgba(212, 175, 55, 0.15); }
}
@keyframes blink {
    50% { opacity: 0; }
}
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-6px); }
    60% { transform: translateY(-3px); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Fade-in on scroll */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
