:root {
    --orange: #FF6B35;
    --orange-deep: #E85D2A;
    --pink: #E91E8C;
    --pink-light: #FF69B4;
    --gold: #FFD700;
    --teal: #00D4AA;
    --bg: #FFF8F0;
    --bg-warm: #FFF3E8;
    --dark: #0a0a0a;

    --white: #ffffff;
    --text-dim: #888;
    --display: 'Syne', sans-serif;
    --body: 'Plus Jakarta Sans', sans-serif;
    --mono: 'Space Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--body);
    background: var(--bg);
    color: var(--dark);
    overflow-x: hidden;
}

/* ===== TOP BAR ===== */
.top-bar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.55rem 1.5rem;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: white;
    font-family: var(--mono);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.live-dot {
    width: 7px; height: 7px;
    background: #ff0000;
    border-radius: 50%;
    animation: livePulse 1.2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(255, 0, 0, 0.5);
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

.top-bar-center { font-variant-numeric: tabular-nums; }
.top-bar-right a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar-right a:hover { color: var(--orange); }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 5rem 2rem 0;
}

.hero::before {
    content: '';
    position: absolute;
    inset: -60%;
    background:
        radial-gradient(ellipse at 25% 45%, rgba(255, 107, 53, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 30%, rgba(233, 30, 140, 0.14) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 85%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(0, 212, 170, 0.06) 0%, transparent 40%);
    animation: gradientShift 12s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes gradientShift {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(-2%, 1%) scale(1.02) rotate(0.5deg); }
    66% { transform: translate(1%, -1.5%) scale(0.99) rotate(-0.3deg); }
    100% { transform: translate(2%, -1%) scale(1.01) rotate(0.2deg); }
}

/* Grain overlay */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

.hero > * { position: relative; z-index: 2; }

/* Sidebar data panel */
.hero-sidebar {
    position: absolute;
    right: 0; top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.8rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    z-index: 3;
    border-left: 3px solid var(--orange);
}

.sidebar-item { text-align: center; color: white; }

.sidebar-value {
    font-family: var(--display);
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1;
}

.sidebar-label {
    font-family: var(--mono);
    font-size: 0.5rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-top: 0.25rem;
}

.sidebar-arrow {
    color: var(--orange);
    font-size: 0.85rem;
    text-align: center;
    opacity: 0.5;
}

/* Name entrance */
.hero-name {
    text-align: center;
    animation: nameEntrance 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    opacity: 0;
}

@keyframes nameEntrance {
    0% { opacity: 0; transform: translateY(50px); }
    65% { transform: translateY(-6px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-name-first {
    font-family: var(--display);
    font-size: clamp(4rem, 13vw, 11rem);
    font-weight: 800;
    line-height: 0.88;
    letter-spacing: -0.03em;
}

.hero-name-last {
    font-family: var(--display);
    font-size: clamp(2.2rem, 7vw, 6rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.01em;
}

/* Lower third */
.lower-third {
    margin-top: 2rem;
    animation: nameEntrance 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
    opacity: 0;
}

.lower-third-box {
    background: linear-gradient(135deg, var(--orange), var(--pink));
    color: white;
    padding: 0.75rem 2.5rem;
    font-family: var(--display);
    font-size: clamp(0.8rem, 1.4vw, 1.1rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transform: skewX(-3deg);
    box-shadow: 0 4px 25px rgba(255, 107, 53, 0.3);
}

.lower-third-box span {
    display: inline-block;
    transform: skewX(3deg);
}

/* Bio tagline */
.hero-bio {
    margin-top: 1.8rem;
    max-width: 600px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(26, 26, 26, 0.6);
    animation: nameEntrance 1s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
    opacity: 0;
}

/* Hero contact links */
.hero-contact {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: nameEntrance 1s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
    opacity: 0;
}

.hero-contact a {
    font-family: var(--mono);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(26, 26, 26, 0.5);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    border: 1px solid rgba(26, 26, 26, 0.12);
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-contact a:hover {
    color: var(--orange);
    border-color: var(--orange);
    background: rgba(255, 107, 53, 0.05);
    transform: translateY(-1px);
}

.hero-contact .cv-btn {
    background: linear-gradient(135deg, var(--orange), var(--pink));
    color: white;
    border: none;
    padding: 0.45rem 1rem;
    font-weight: 700;
}

.hero-contact .cv-btn:hover {
    color: white;
    border: none;
    filter: brightness(1.1);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Chyron */
.chyron {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(90deg, var(--orange), var(--pink), var(--orange));
    background-size: 200% 100%;
    animation: chyronGradient 4s ease infinite;
    overflow: hidden;
    padding: 0.65rem 0;
    z-index: 3;
}

@keyframes chyronGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.chyron-track {
    display: flex;
    white-space: nowrap;
    animation: tickerScroll 25s linear infinite;
}

.chyron-text {
    font-family: var(--display);
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding-right: 3rem;
    flex-shrink: 0;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-25%); }
}

/* ===== REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.4s; }
.reveal-d6 { transition-delay: 0.48s; }

/* ===== SECTIONS ===== */
section { padding: 6rem 4vw; }

.section-title {
    font-family: var(--display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 3rem;
    display: inline-block;
}

.section-title.gradient-text {
    background: linear-gradient(135deg, var(--orange), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title-line {
    display: block;
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--pink));
    margin-top: 0.5rem;
    border-radius: 2px;
}

/* ===== QUÉ PUEDO HACER ===== */
.what-section { background: var(--white); }

.what-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.what-card {
    background: var(--bg);
    border-radius: 14px;
    padding: 1.8rem 1.4rem;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.what-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    border-radius: 14px 14px 0 0;
    transition: height 0.3s ease;
}

.what-card:nth-child(1)::before { background: var(--orange); }
.what-card:nth-child(2)::before { background: var(--pink); }
.what-card:nth-child(3)::before { background: var(--teal); }
.what-card:nth-child(4)::before { background: var(--gold); }
.what-card:nth-child(5)::before { background: var(--orange-deep); }
.what-card:nth-child(6)::before { background: var(--pink-light); }

.what-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.07);
}

.what-card:hover::before { height: 5px; }

.what-icon {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    display: block;
}

.what-text {
    font-family: var(--display);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
}

/* ===== EXPERIENCE ===== */
.exp-section { background: var(--bg); }

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(220px, auto);
    gap: 1.1rem;
}

.exp-card {
    border-radius: 18px;
    padding: 2rem 1.8rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.exp-card:hover {
    transform: scale(1.015);
    filter: brightness(1.06);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.exp-card--pdp {
    grid-column: span 7;
    grid-row: span 2;
    background: linear-gradient(155deg, #FF6B35 0%, #FF8A5C 60%, #FFa070 100%);
}

.exp-card--synara {
    grid-column: span 5;
    background: linear-gradient(155deg, #FFB800, #FFD700);
    color: var(--dark);
}

.exp-card--hc {
    grid-column: span 5;
    background: linear-gradient(155deg, #E91E8C, #FF69B4);
}

.exp-card--furp {
    grid-column: span 4;
    background: linear-gradient(155deg, #00D4AA, #00E8BE);
}

.exp-card--riseup {
    grid-column: span 8;
    background: linear-gradient(155deg, var(--orange), var(--pink));
}

.exp-card-logo {
    font-family: var(--display);
    font-size: clamp(2.2rem, 3.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1;
    opacity: 0.2;
    position: absolute;
    top: 1.2rem; right: 1.5rem;
}

.exp-card-top { position: relative; z-index: 1; }

.exp-card-date {
    font-family: var(--mono);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    opacity: 0.6;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
}

.exp-card-name {
    font-family: var(--display);
    font-size: clamp(1.2rem, 2vw, 1.7rem);
    font-weight: 800;
    margin-bottom: 0.2rem;
}

.exp-card-role {
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.75;
}

.exp-card-bottom { position: relative; z-index: 1; }

.exp-card-desc {
    font-size: 0.8rem;
    font-weight: 300;
    opacity: 0.65;
    line-height: 1.5;
}

.exp-card-expand {
    font-family: var(--display);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 0.8rem;
    opacity: 0.5;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: opacity 0.3s ease;
}

.exp-card:hover .exp-card-expand { opacity: 1; }

/* Expanded details */
.exp-card-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1), margin-top 0.3s ease, padding 0.3s ease;
    margin-top: 0;
}

.exp-card.expanded .exp-card-details,
.exp-card:hover .exp-card-details {
    max-height: 600px;
    margin-top: 1rem;
}

.exp-detail-section {
    margin-bottom: 0.9rem;
}

.exp-detail-title {
    font-family: var(--display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 0.3rem;
    opacity: 0.9;
}

.exp-detail-text {
    font-size: 0.75rem;
    font-weight: 300;
    line-height: 1.55;
    opacity: 0.75;
}

.exp-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.6rem;
}

.exp-detail-tag {
    font-size: 0.65rem;
    font-weight: 500;
    padding: 0.3rem 0.65rem;
    background: rgba(255,255,255,0.2);
    border-radius: 100px;
    backdrop-filter: blur(4px);
}

.exp-card--synara .exp-detail-tag {
    background: rgba(0,0,0,0.1);
}

/* ===== SKILLS TICKER ===== */
.skills-ticker {
    background: linear-gradient(135deg, var(--orange), var(--pink));
    padding: 1.8rem 0;
    overflow: hidden;
}

.ticker-row {
    display: flex;
    white-space: nowrap;
    margin: 0.4rem 0;
}

.ticker-row:nth-child(1) { animation: tickerLeft 42s linear infinite; }
.ticker-row:nth-child(2) { animation: tickerRight 48s linear infinite; }

@keyframes tickerLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.33%); }
}
@keyframes tickerRight {
    0% { transform: translateX(-33.33%); }
    100% { transform: translateX(0); }
}

.ticker-item {
    font-family: var(--display);
    font-size: 1.15rem;
    font-weight: 800;
    color: white;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0 1.8rem;
    flex-shrink: 0;
}

.ticker-dot { color: rgba(255,255,255,0.3); padding: 0 0.3rem; }

/* ===== HABILIDADES ===== */
.archivos-section {
    background: var(--bg-warm);
    padding: 6rem 4vw;
    position: relative;
    overflow: hidden;
}

.files-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.7rem;
    position: relative;
}

.file-item {
    background: var(--white);
    padding: 1.1rem 1.3rem;
    font-family: var(--mono);
    font-size: 0.78rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
}

.file-item:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.08);
}

.file-icon {
    color: var(--orange);
    font-size: 0.55rem;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.file-item:hover .file-icon { opacity: 1; }

.file-name { color: var(--dark); }
.file-ext { color: var(--orange); opacity: 0.6; }

/* ===== FORMACIÓN (Timeline) ===== */
.formacion-section { background: var(--white); }

.timeline {
    position: relative;
    padding-left: 0;
}

.timeline-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1.5rem;
    position: relative;
    padding-bottom: 2rem;
}

.timeline-row:last-child { padding-bottom: 0; }

/* Vertical line */
.timeline-row::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--orange), var(--pink));
    opacity: 0.2;
}

.timeline-row:last-child::before {
    bottom: 50%;
}

/* Year column */
.timeline-year {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0.15rem;
    position: relative;
    z-index: 1;
}

.timeline-year-badge {
    font-family: var(--mono);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--dark);
    background: var(--white);
    padding: 0.3rem 0.55rem;
    border: 1.5px solid rgba(255, 107, 53, 0.25);
    border-radius: 6px;
    white-space: nowrap;
}

.timeline-year-badge.timeline-year--active {
    background: linear-gradient(135deg, var(--orange), var(--pink));
    color: white;
    border-color: transparent;
}

/* Items row */
.timeline-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.timeline-item {
    background: var(--bg);
    padding: 0.85rem 1.1rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    flex: 1 1 200px;
    max-width: 320px;
}

.timeline-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    border-color: rgba(255, 107, 53, 0.15);
}

.timeline-item-name {
    font-family: var(--display);
    font-weight: 700;
    font-size: 0.88rem;
    line-height: 1.3;
    color: var(--dark);
}

.timeline-item-place {
    font-size: 0.75rem;
    color: var(--text-dim);
    font-weight: 300;
    margin-top: 0.15rem;
}

.timeline-item-place:empty { display: none; }

/* ===== CONTACT / BREAKING NEWS ===== */
.contact-section {
    background: var(--bg);
    padding-bottom: 0;
}

.breaking-news {
    background: linear-gradient(135deg, #ee0000, var(--orange));
    padding: 2.5rem 4vw;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.breaking-news::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.08) 50%, transparent 100%);
    animation: breakingFlash 3.5s ease-in-out infinite;
}

@keyframes breakingFlash {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.breaking-label {
    font-family: var(--display);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.3em;
    color: white;
    background: rgba(0,0,0,0.3);
    display: inline-block;
    padding: 0.35rem 1.2rem;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
}

.breaking-text {
    font-family: var(--display);
    font-size: clamp(1.3rem, 3.2vw, 2.2rem);
    font-weight: 800;
    color: white;
    position: relative;
    z-index: 1;
}

.contact-body {
    padding: 3.5rem 4vw;
    display: flex;
    justify-content: center;
    gap: 5rem;
    flex-wrap: wrap;
}

.contact-item { text-align: center; }

.contact-label {
    font-family: var(--mono);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 0.5rem;
}

.contact-value {
    font-family: var(--body);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--dark);
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.contact-value::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--orange), var(--pink));
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-value:hover::after { width: 100%; }

.contact-copy {
    display: inline-block;
    margin-top: 0.5rem;
    font-family: var(--mono);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: none;
    border: 1px solid #ddd;
    padding: 0.25rem 0.7rem;
    border-radius: 100px;
    cursor: pointer;
    color: #999;
    transition: all 0.3s ease;
}

.contact-copy:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.contact-copy.copied {
    border-color: var(--teal);
    color: var(--teal);
    background: rgba(0, 212, 170, 0.05);
}

/* ===== FOOTER ===== */
footer {
    background: rgba(10, 10, 10, 0.93);
    color: white;
    padding: 0.9rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--mono);
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.1em;
}

footer .on-air {
    display: flex;
    align-items: center;
    gap: 6px;
}

footer .on-air-dot {
    width: 5px; height: 5px;
    background: #ff0000;
    border-radius: 50%;
    animation: livePulse 1.2s ease-in-out infinite;
}

.footer-linkedin {
    color: #ffffff;
    text-decoration: none;
    font-family: var(--mono);
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

.footer-linkedin:hover { color: var(--orange); }

/* ===== NAV DOTS ===== */
.nav-dots {
    position: fixed;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.nav-dots.visible {
    opacity: 1;
    pointer-events: auto;
}

.nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.15);
    border: 1.5px solid rgba(10, 10, 10, 0.25);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.nav-dot:hover {
    background: rgba(255, 107, 53, 0.4);
    border-color: var(--orange);
    transform: scale(1.3);
}

.nav-dot.active {
    background: var(--orange);
    border-color: var(--orange);
    box-shadow: 0 0 8px rgba(255, 107, 53, 0.4);
}

.nav-dot-label {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--mono);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dark);
    background: var(--white);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nav-dot:hover .nav-dot-label { opacity: 1; }


/* ===== MOBILE SIDEBAR PILLS ===== */
.hero-mobile-data {
    display: none;
    font-family: var(--mono);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(26, 26, 26, 0.45);
    margin-top: 1rem;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    animation: nameEntrance 1s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards;
    opacity: 0;
}

.hero-mobile-data .pill-sep {
    color: rgba(26, 26, 26, 0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .what-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-grid { grid-template-columns: 1fr; }
    .exp-card--pdp, .exp-card--hc, .exp-card--furp,
    .exp-card--synara, .exp-card--riseup {
        grid-column: span 1;
        grid-row: span 1;
    }
    .hero-sidebar { display: none; }
    .hero-mobile-data { display: flex; }
    .nav-dots { display: none; }
    section { padding: 4rem 1.5rem; }
    .files-grid { grid-template-columns: 1fr; }
    .contact-body { gap: 2.5rem; }
}

@media (max-width: 600px) {
    .what-grid { grid-template-columns: 1fr; }
    .files-grid { grid-template-columns: 1fr; }
    .hero-name-first { font-size: 3.2rem; }
    .hero-name-last { font-size: 2rem; }
    .hero-contact { gap: 0.7rem; }
    .timeline-row {
        grid-template-columns: 60px 1fr;
        gap: 1rem;
    }
    .timeline-row::before { left: 30px; }
    .timeline-year-badge { font-size: 0.55rem; padding: 0.25rem 0.4rem; }
    .timeline-item { max-width: 100%; }
    footer {
        flex-direction: column;
        gap: 0.4rem;
        text-align: center;
    }
}
