:root {
    --bg-color: #030303;
    --text-color: #EAEAEA;
    --accent-color: #00FFFF;
    --accent-color-alt: #00ff9b;
    --line-color: rgba(255, 255, 255, 0.08);
    --grid-color: rgba(255, 255, 255, 0.03);
    --ff-heading: "Jockey One", "Orbitron", sans-serif;
    --ff-mono: "IBM Plex Mono", monospace;
    --grid-size: 50px;
}

/* --- Reseteo y Base --- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--ff-mono);
    -webkit-font-smoothing: antialiased;
    cursor: none;
    overflow-x: hidden;
    background-image: 
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: var(--grid-size) var(--grid-size);
    background-position: center center;
}
a { color: inherit; text-decoration: none; }

/* --- Cursor Personalizado by SheryJS --- */
/* Mejora el cursor personalizado */
.cursor {
    width: 20px; 
    height: 20px;
    border: 1px solid var(--accent-color);
    position: fixed; 
    top: 0; 
    left: 0;
    z-index: 10000; /* Asegúrate de que esté por encima de todo */
    pointer-events: none;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
    transform: rotate(45deg) scale(1);
}

.cursor::after {
    content: '';
    position: absolute;
    width: 4px; 
    height: 4px;
    background: var(--accent-color);
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Cursor cuando está sobre enlaces */
a:hover ~ .cursor {
    transform: rotate(45deg) scale(1.5);
}

/* --- Header Fijo --- */
header {
    display: none;
}
.logo { font-weight: bold; font-size: 20px; font-family: var(--ff-heading); }
nav { display: flex; gap: 32px; }

/* --- El Plano Principal (CSS GRID) --- */
#main-blueprint {
    display: grid;
    grid-template-columns: repeat(12, 1fr); /* Grid de 12 columnas */
    width: 100%;
    padding: 0 5vw;
}
.grid-cell {
    border: 1px solid var(--line-color);
    border-top: none; /* Evita doble borde */
    padding: 40px;
    opacity: 0; /* Estado inicial para la animación */
    will-change: transform, opacity;
}

/* --- Hero Section --- */
#entry-point {
    grid-column: 1 / -1;
    height: calc(100vh - 100px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#entry-point::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(
            45deg,
            var(--grid-color),
            var(--grid-color) 1px,
            transparent 1px,
            transparent 20px
        );
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

#entry-point h1 {
    font-family: var(--ff-heading);
    font-size: clamp(3rem, 12vw, 10rem);
    line-height: 1;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

#entry-point .subtitle {
    margin-top: 16px;
    font-size: 14px;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-color-alt));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Exhibit & Dossier Section --- */
.video-cell {
    grid-column: 1 / 8;
    position: relative;
}

.video-cell::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    border: 1px solid var(--accent-color);
    z-index: -1;
    opacity: 0.3;
    transform-origin: center;
    animation: framePulse 4s ease-in-out infinite;
}

@keyframes framePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.exhibit-frame {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    background: #111;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.1);
}

.exhibit-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--line-color);
}
.data-cell {
    grid-column: 8 / 13;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    padding: 40px;
    background: var(--grid-color);
}

.data-block {
    position: relative;
    padding: 20px;
    border: 1px solid var(--line-color);
    background: var(--bg-color);
}

.data-block::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 5px;
    height: 5px;
    background: var(--accent-color);
    transform: rotate(45deg);
}

.data-block h3 {
    font-family: var(--ff-mono);
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--accent-color);
    padding-bottom: 8px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--line-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.data-block h3::after {
    content: '';
    display: block;
    height: 1px;
    flex-grow: 1;
    background: linear-gradient(90deg, var(--line-color), transparent);
}

.data-block ul {
    list-style: none;
    position: relative;
}

.data-block li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.data-block li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    opacity: 0.5;
}

.data-block p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.8;
}

/* --- Architect Bio Section --- */
.bio-cell {
    grid-column: 1 / -1;
    display: grid; grid-template-columns: repeat(12, 1fr); gap: 40px;
    align-items: center;
}
.bio-image { grid-column: 1 / 6; width: 100%; }
.bio-image img { width: 100%; height: auto; filter: grayscale(1); }
.bio-text { grid-column: 6 / 13; }
.bio-text h2 {
    font-family: var(--ff-heading);
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 24px;
}
.bio-text p { font-size: 16px; line-height: 1.8; max-width: 40ch; }

/* --- Contact Section --- */
.contact-cell {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 40px;
}
.contact-cell h2 {
    font-family: var(--ff-heading);
    font-size: clamp(2rem, 6vw, 5rem);
    margin-bottom: 32px;
}
.contact-link {
    display: inline-block; font-size: 20px;
    margin-bottom: 40px; border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}
.contact-link:hover { border-color: var(--text-color); }
.social-links { display: flex; justify-content: center; gap: 24px; }
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

.social-links i {
    font-size: 24px;
    color: var(--accent-color);
    transition: color 0.3s ease;
}

.social-links a:hover i {
    color: var(--bg-color);
}

/* --- HUD INTERFACE --- */
#hud-interface {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    padding: 24px;
}

.hud-corner {
    position: absolute;
    font-family: var(--ff-mono);
    font-size: 12px;
    letter-spacing: 1px;
}

.hud-corner.top-left {
    top: 24px;
    left: 24px;
}

.hud-corner.top-right {
    top: 24px;
    right: 24px;
    text-align: right;
}

.hud-corner.bottom-left {
    bottom: 24px;
    left: 24px;
}

.hud-corner.bottom-right {
    bottom: 24px;
    right: 24px;
    text-align: right;
}

/* Navegación del HUD */
.hud-corner nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: all;
}

.hud-corner nav a {
    position: relative;
    padding: 4px 0;
    transition: all 0.3s ease;
    color: var(--text-color);
    opacity: 0.7;
}

.hud-corner nav a:hover {
    opacity: 1;
    color: var(--accent-color);
    transform: translateX(-5px);
}

.hud-corner nav a::before {
    content: '>';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hud-corner nav a:hover::before {
    opacity: 1;
}

/* Progress bar del scroll */
#scroll-progress {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

#scroll-progress:hover {
    opacity: 1;
}

#studio-vibe {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 40px;
    border: 1px solid var(--line-color);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
}

.studio-quote {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    border: 2px solid var(--accent-color);
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.studio-quote::before,
.studio-quote::after {
    content: '"';
    position: absolute;
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.3;
    font-family: serif;
}

.studio-quote::before {
    top: 10px;
    left: 20px;
}

.studio-quote::after {
    bottom: 10px;
    right: 20px;
}

.studio-quote h3 {
    font-family: var(--ff-heading);
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.studio-quote p {
    font-size: 1.3rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 15px;
    font-weight: 500;
}

.studio-quote span {
    font-size: 0.9rem;
    opacity: 0.7;
    font-style: normal;
    letter-spacing: 1px;
}

/* --- Lyric Art --- */
#lyric-art {
    padding: 80px 40px;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
}

.lyric-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.lyric-card {
    border: 2px solid var(--accent-color);
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.9);
    position: relative;
    transition: all 0.3s ease;
}

.lyric-card:hover {
    background: rgba(0, 255, 255, 0.05);
    transform: scale(1.05);
}

.lyric-card p {
    font-family: var(--ff-heading);
    font-size: 1.4rem;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.lyric-card span {
    font-size: 0.9rem;
    opacity: 0.7;
    font-style: italic;
}

/* --- Visualizers --- */
/* --- Production Signatures --- */
#sound-viz {
    grid-column: 1 / -1;
    padding: 80px 40px;
    text-align: center;
    background: rgba(0, 0, 0, 0.85);
}
#sound-viz h2 {
    font-family: var(--ff-heading);
    font-size: clamp(2rem, 6vw, 5rem);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-subtitle {
    margin-top: 15px;
    opacity: 0.8;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.viz-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.viz-item {
    border: 1px solid var(--line-color);
    background: rgba(0, 0, 0, 0.9);
    transition: all 0.4s ease;
    padding: 25px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.viz-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.viz-item:hover::before {
    left: 100%;
}

.viz-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.15);
}

.viz-container {
    height: 120px;
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 6px;
    margin-bottom: 25px;
    position: relative;
    flex-grow: 1;
}

/* Signature Badge */
.signature-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--bg-color);
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Audio Bars - Con efecto de "breathing" */
.audio-bar {
    width: 10px;
    height: var(--height);
    background: linear-gradient(to top, var(--accent-color), var(--accent-color-alt));
    border-radius: 2px;
    animation: barPulse 2s infinite ease-in-out;
    transition: all 0.3s ease;
}

.viz-item:hover .audio-bar {
    animation-duration: 0.8s;
    background: linear-gradient(to top, #FF3366, #00FFFF);
}

.audio-bar:nth-child(1) { --height: 60%; animation-delay: 0s; }
.audio-bar:nth-child(2) { --height: 30%; animation-delay: 0.1s; }
.audio-bar:nth-child(3) { --height: 80%; animation-delay: 0.2s; }
.audio-bar:nth-child(4) { --height: 40%; animation-delay: 0.3s; }
.audio-bar:nth-child(5) { --height: 70%; animation-delay: 0.4s; }
.audio-bar:nth-child(6) { --height: 50%; animation-delay: 0.5s; }
.audio-bar:nth-child(7) { --height: 90%; animation-delay: 0.6s; }

@keyframes barPulse {
    0%, 100% { transform: scaleY(1); opacity: 0.8; }
    50% { transform: scaleY(0.6); opacity: 1; }
}

/* Waveform - Más dinámico */
.waveform {
    align-items: center;
    gap: 15px;
}

.wave-line {
    width: 4px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 2px;
    animation: waveMove 2.5s infinite ease-in-out;
    transition: all 0.3s ease;
}

.viz-item:hover .wave-line {
    animation-duration: 1.5s;
    background: #FF3366;
}

.wave-line:nth-child(1) { animation-delay: 0s; height: 80px; }
.wave-line:nth-child(2) { animation-delay: 0.3s; height: 40px; }
.wave-line:nth-child(3) { animation-delay: 0.6s; height: 100px; }

@keyframes waveMove {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.2); }
}

/* Frequency Dots - Más energía */
.spectrum {
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.freq-dot {
    width: 25px;
    height: 25px;
    background: radial-gradient(circle, var(--accent-color), var(--accent-color-alt));
    border-radius: 50%;
    position: absolute;
    left: var(--left);
    animation: freqBounce 2s infinite ease-in-out;
    box-shadow: 0 0 15px var(--accent-color);
    transition: all 0.3s ease;
}

.viz-item:hover .freq-dot {
    animation-duration: 1s;
    box-shadow: 0 0 25px #FF3366;
}

.freq-dot:nth-child(1) { --left: 20%; animation-delay: 0s; }
.freq-dot:nth-child(2) { --left: 40%; animation-delay: 0.5s; }
.freq-dot:nth-child(3) { --left: 60%; animation-delay: 1s; }
.freq-dot:nth-child(4) { --left: 80%; animation-delay: 1.5s; }

@keyframes freqBounce {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.7; }
    50% { transform: translateY(-40px) scale(1.2); opacity: 1; }
}

.viz-info {
    margin-top: auto;
}

.viz-info h4 {
    font-family: var(--ff-heading);
    color: var(--accent-color);
    margin-bottom: 12px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.viz-item:hover .viz-info h4 {
    color: var(--accent-color-alt);
}

.viz-info p {
    opacity: 0.9;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
}

/* Legend */
.viz-legend {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--line-color);
    font-style: italic;
    opacity: 0.7;
}

/* Efecto de click (aunque no haga nada, da feedback) */
.viz-item:active {
    transform: translateY(-4px) scale(0.98);
}


/* Efecto de "energy pulse" al hacer hover */
@keyframes energyPulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 255, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(0, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 255, 0); }
}

.viz-item:hover {
    animation: energyPulse 1.5s infinite;
}



/* --- Behind the Code Section --- */
#dev-side {
    grid-column: 1 / -1;
    padding: 80px 40px;
    background: rgba(0, 0, 0, 0.95);
    border-top: 1px solid var(--line-color);
}

.dev-container {
    max-width: 800px;
    margin: 0 auto;
}

.code-terminal {
    border: 1px solid var(--accent-color);
    background: rgba(0, 0, 0, 0.9);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.1);
}

.terminal-header {
    background: rgba(0, 255, 255, 0.1);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid var(--line-color);
}

.terminal-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #FF5F57; }
.dot.yellow { background: #FFBD2E; }
.dot.green { background: #28CA42; }

.terminal-title {
    font-family: var(--ff-mono);
    font-size: 0.9rem;
    opacity: 0.8;
}

.terminal-body {
    padding: 30px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 1rem;
    line-height: 1.6;
}

.code-line {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.prompt {
    color: var(--accent-color);
    font-weight: bold;
}

.command {
    color: var(--text-color);
    font-weight: 500;
}

.link-command {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
}

.link-command:hover {
    color: var(--accent-color-alt);
    text-shadow: 0 0 10px rgba(255, 51, 102, 0.5);
}

.link-command::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color-alt);
    transition: width 0.3s ease;
}

.link-command:hover::after {
    width: 100%;
}

.output .text {
    color: #00FF00;
    opacity: 0.9;
}

.comment {
    color: #666;
    font-style: italic;
}

/* Efecto de typing animation */
.code-line {
    opacity: 0;
    animation: typeIn 0.5s ease forwards;
}

.code-line:nth-child(1) { animation-delay: 0.2s; }
.code-line:nth-child(2) { animation-delay: 0.6s; }
.code-line:nth-child(3) { animation-delay: 1.0s; }
.code-line:nth-child(4) { animation-delay: 1.4s; }
.code-line:nth-child(5) { animation-delay: 1.8s; }
.code-line:nth-child(6) { animation-delay: 2.2s; }
.code-line:nth-child(7) { animation-delay: 2.6s; }
.code-line:nth-child(8) { animation-delay: 3.0s; }

@keyframes typeIn {
    to {
        opacity: 1;
    }
}

/* Efecto de cursor parpadeante */
.terminal-body::after {
    content: '▋';
    color: var(--accent-color);
    animation: blink 1s infinite;
    margin-left: 5px;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}


/* ============================================= */
/* DEZZHUB BRANDING FOOTER  */
/* ============================================= */

/* Contenedor principal */
.dezzhub-branding {
position: relative;
padding-top: 30px;
padding-bottom: 10px;
display: inline-flex; 
align-items: center;
justify-content: flex-start;
font-family: 'Jockey One', sans-serif;
}

/* El logo (tu cara animada) */
.dezzhub-logo {
height: 35px;
width: auto;
opacity: 0.6;
cursor: pointer;

/* Transición más lenta y suave para el giro y la opacidad */
transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;

/* Estado inicial (sin rotación) */
transform: rotate(0deg); 
}

/* El texto que se despliega */
.dezzhub-text {
max-width: 0;
opacity: 0;
overflow: hidden;
white-space: nowrap;

/* Transición más suave para el despliegue del texto */
transition: max-width 0.7s ease, opacity 0.5s ease, margin-left 0.7s ease;

font-size: 0.85em;
color: #000;
opacity: 0.7;
margin-left: 0;
}

/* Clase para mostrar el texto en móviles */
.dezzhub-text.visible {
    max-width: 200px;
    opacity: 0.9;
    margin-left: 10px;
}

/* --- La Magia del Hover --- */

.dezzhub-branding:hover .dezzhub-logo {
transform: rotate(360deg);
opacity: 0.9;
}

.dezzhub-branding:hover .dezzhub-text {
/* ...el texto se expande */
max-width: 200px;
opacity: 0.9;
margin-left: 10px;
}

/* El enlace dentro del texto */
.dezzhub-text a {
color: inherit;
text-decoration: none;
font-weight: bold;
}

.dezzhub-text a:hover {
text-decoration: underline;
}

/* ============================================= */
/* PARA FOOTERS OSCUROS */
/* ============================================= */
.dark-footer .dezzhub-text {
color: #fff;
}



/* Responsive */
@media (max-width: 768px) {
    .viz-grid {
        grid-template-columns: 1fr; /* Una columna en móvil */
        gap: 20px;
    }
    
    .viz-container {
        height: 100px;
    }
    
    .viz-item {
        padding: 20px 15px;
    }

    .video-cell, .data-cell { grid-column: 1 / -1; }
    .data-cell { border-top: 1px solid var(--line-color); }
    .bio-cell, .bio-text { grid-column: 1 / -1; }
    .bio-image { 
        grid-column: 1 / -1; /* Opcional, pero bueno para asegurar */
        margin-bottom: 40px; 
        width: 100%; /* Usa width en lugar de min-width */
        max-width: 400px; /* Un máximo para que no se vea gigante */
        margin-left: auto; /* Centra el contenedor */
        margin-right: auto; /* Centra el contenedor */
    }

    #dev-side {
        padding: 60px 20px;
    }
    
    .terminal-body {
        padding: 20px;
        font-size: 0.9rem;
    }

    .dezzhub-branding {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .dezzhub-text {
        font-size: 0.8rem;
    }

    #hud-interface {
        padding: 16px;
    }
    
    .hud-corner.top-left,
    .hud-corner.top-right {
        top: 16px;
    }
    
    .hud-corner.bottom-left,
    .hud-corner.bottom-right {
        bottom: 16px;
    }
    
    .hud-corner {
        font-size: 10px;
    }
    
    .hud-corner nav a {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .viz-container {
        height: 80px;
    }
    
    .viz-item {
        padding: 15px 10px;
    }

    .bio-image { min-width: 300px;}
}