/* === VARIABLES === */
:root {
    --bg-dark:        #0a0f1e;
    --bg-mid:         #0d1835;
    --bg-elevated:    #112240;
    --accent-cyan:    #64ffda;
    --accent-blue:    #4c9eff;
    --accent-purple:  #bd93f9;
    --text-primary:   #e6f1ff;
    --text-secondary: #8892b0;
    --text-muted:     #4a5568;
    --border-subtle:  rgba(100, 255, 218, 0.1);
    --glow-cyan:      rgba(100, 255, 218, 0.2);
    --glow-blue:      rgba(76, 158, 255, 0.2);
    --font-mono:      'JetBrains Mono', monospace;
    --font-sans:      'Space Grotesk', sans-serif;
    --font-display:   'Syne', sans-serif;
}

/* === RESET === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    cursor: none;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
}

/* === PARTICLES BACKGROUND === */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--bg-dark);
}

/* === CUSTOM CURSOR === */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--accent-cyan);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, transform 0.15s;
    will-change: left, top;
}

.cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(100, 255, 218, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s, background-color 0.3s;
    will-change: left, top;
}

/* Touch devices: restore default cursor */
@media (hover: none) {
    *, *::before, *::after { cursor: auto; }
    .cursor-dot, .cursor-ring { display: none; }
}

/* === SCROLL REVEAL === */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.reveal-left  { transform: translateX(-40px); }
.reveal.reveal-right { transform: translateX(40px); }
.reveal.is-visible   { opacity: 1; transform: translate(0); }

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }

/* === NAVIGATION === */
.glass-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(16px) saturate(180%);
    background: rgba(10, 15, 30, 0.88);
    border-bottom: 1px solid var(--border-subtle);
    transition: border-color 0.3s;
}

.glass-nav.nav-scrolled {
    border-bottom-color: rgba(100, 255, 218, 0.25);
}

.logo {
    color: var(--accent-cyan);
    font-weight: 800;
    font-size: 1.5rem;
    font-family: var(--font-display);
    letter-spacing: 0.04em;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-family: var(--font-sans);
    font-weight: 500;
    transition: color 0.3s, border-color 0.3s;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
}

.nav-links a:hover {
    color: var(--accent-cyan);
    border-bottom-color: rgba(100, 255, 218, 0.4);
}

.btn-highlight {
    border: 1px solid var(--accent-cyan) !important;
    padding: 8px 18px;
    border-radius: 4px;
    color: var(--accent-cyan) !important;
    border-bottom: 1px solid var(--accent-cyan) !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--accent-cyan);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(10, 15, 30, 0.97);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: var(--accent-cyan);
}

/* === HERO SECTION === */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding-top: 80px;
    overflow: hidden;
}

/* Ambient blue glow top-right */
.hero::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 55%;
    height: 140%;
    background: linear-gradient(135deg, var(--glow-blue) 0%, transparent 60%);
    transform: skewX(-8deg);
    z-index: 0;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 380px;
    align-items: center;
    gap: 60px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 650px;
}

/* Founder Badge */
.founder-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(100, 255, 218, 0.05);
    border: 1px solid rgba(100, 255, 218, 0.25);
    color: var(--accent-cyan);
    font-family: var(--font-mono);
    font-size: 0.74rem;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--accent-cyan);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(1.6); }
}

/* === GRADIENT SHIMMER NAME === */
.glitch-name {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 6.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 14px;
    background: linear-gradient(
        120deg,
        #e6f1ff 0%,
        var(--accent-cyan) 30%,
        var(--accent-blue) 60%,
        var(--accent-purple) 85%,
        #e6f1ff 100%
    );
    background-size: 220% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer-name 5s linear infinite;
}

@keyframes shimmer-name {
    0%   { background-position: 0% center; }
    100% { background-position: 220% center; }
}

.subtitle {
    font-family: var(--font-sans);
    font-size: 1.35rem;
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.4;
}

.bio-text {
    max-width: 540px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    font-size: 0.95rem;
}

.bio-text strong {
    color: var(--text-primary);
}

/* CTA Buttons */
.cta-group {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s, box-shadow 0.3s;
    font-family: var(--font-mono);
    font-size: 0.88rem;
    letter-spacing: 0.04em;
}

.btn-primary:hover {
    background: rgba(100, 255, 218, 0.1);
    box-shadow: 0 0 20px var(--glow-cyan);
}

.btn-secondary {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    font-family: var(--font-sans);
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    color: var(--accent-cyan);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    padding-top: 28px;
    border-top: 1px solid var(--border-subtle);
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number-row {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--accent-cyan);
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent-cyan);
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Profile Hex Image */
.hero-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.profile-hex-wrapper {
    position: relative;
    width: 300px;
    height: 300px;
}

/* Cyan-purple gradient border */
.profile-hex-wrapper::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue), var(--accent-purple));
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    z-index: 0;
}

/* Diamond corner accent */
.profile-hex-wrapper::after {
    content: '';
    position: absolute;
    bottom: -18px;
    right: -18px;
    width: 65px;
    height: 65px;
    border: 2px solid rgba(100, 255, 218, 0.3);
    transform: rotate(45deg);
    border-radius: 4px;
    z-index: -1;
}

.profile-pic {
    width: 300px;
    height: 300px;
    object-fit: cover;
    object-position: top center;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    position: relative;
    z-index: 1;
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* === SECTIONS === */
.section {
    padding: 100px 10%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Cyan-purple kente stripe */
.about-kente-stripe {
    width: 100%;
    height: 4px;
    background: repeating-linear-gradient(
        90deg,
        var(--accent-cyan)    0px,
        var(--accent-cyan)    14px,
        transparent           14px,
        transparent           18px,
        var(--accent-blue)    18px,
        var(--accent-blue)    32px,
        transparent           32px,
        transparent           36px
    );
    margin-bottom: 40px;
    border-radius: 2px;
    opacity: 0.5;
}

/* Section Titles */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.section-title::before {
    content: attr(data-label);
    font-family: var(--font-mono);
    font-size: 0.76rem;
    color: var(--accent-cyan);
    letter-spacing: 0.14em;
    font-weight: 400;
}

.section-title::after {
    content: '';
    display: block;
    width: 58px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    border-radius: 2px;
}

/* === ABOUT SECTION === */
.about-container {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.about-text {
    flex: 2;
    min-width: 300px;
}

.about-text p {
    margin-bottom: 18px;
    color: var(--text-secondary);
    font-size: 0.97rem;
}

.about-text strong {
    color: var(--text-primary);
}

.about-stats {
    flex: 1;
    min-width: 280px;
    border: 1px solid var(--border-subtle);
    padding: 25px;
    border-radius: 8px;
    background: rgba(17, 34, 64, 0.6);
    backdrop-filter: blur(10px);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.about-stats:hover {
    border-color: rgba(100, 255, 218, 0.35);
    box-shadow: 0 0 25px var(--glow-cyan);
}

.about-stats h4 {
    color: var(--text-primary);
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 10px;
    font-family: var(--font-display);
    font-size: 1rem;
}

.skill-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.skill-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.icon-gold {
    color: var(--accent-cyan);
    width: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.skill-item strong {
    color: var(--accent-cyan);
}

/* === TIMELINE V2 — Alternating === */
.timeline-v2 {
    position: relative;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(100, 255, 218, 0.3) 8%,
        rgba(100, 255, 218, 0.3) 92%,
        transparent
    );
    transform: translateX(-50%);
}

.tl-item {
    display: flex;
    width: 100%;
    margin-bottom: 60px;
    position: relative;
    align-items: flex-start;
}

.tl-item.tl-left  { justify-content: flex-start; }
.tl-item.tl-right { justify-content: flex-end; }

.tl-card {
    width: 44%;
    background: rgba(17, 34, 64, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 24px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.tl-card:hover {
    border-color: rgba(100, 255, 218, 0.35);
    box-shadow: 0 0 28px var(--glow-cyan);
}

.tl-node {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 20px;
    width: 42px;
    height: 42px;
    background: var(--bg-dark);
    border: 2px solid var(--accent-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    font-size: 0.85rem;
    z-index: 2;
    transition: background 0.3s, box-shadow 0.3s;
}

.tl-item:hover .tl-node {
    background: rgba(100, 255, 218, 0.08);
    box-shadow: 0 0 16px var(--glow-cyan);
}

.tl-date {
    font-family: var(--font-mono);
    font-size: 0.76rem;
    color: var(--accent-cyan);
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.tl-role {
    color: var(--text-primary);
    font-size: 1.05rem;
    margin-bottom: 4px;
    font-family: var(--font-display);
    font-weight: 700;
}

.tl-company {
    font-size: 0.85rem;
    color: var(--accent-blue);
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
}

.tl-desc {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.65;
}

/* === BENTO GRID === */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

.bento-card {
    background: rgba(17, 34, 64, 0.55);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 1.5rem;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    border-color: rgba(100, 255, 218, 0.35);
    box-shadow: 0 0 30px var(--glow-cyan);
    transform: translateY(-5px);
}

.bento-card.featured-lg { grid-column: span 7; }
.bento-card.featured-md { grid-column: span 5; }
.bento-card.standard    { grid-column: span 4; }
.bento-card.flagship    { grid-column: span 12; padding: 0; }

.project-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 16px;
    border: 1px solid var(--border-subtle);
    background: var(--bg-dark);
}

.bento-card.featured-lg .project-img,
.bento-card.featured-md .project-img {
    height: 220px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.card-links a {
    color: var(--text-secondary);
    transition: color 0.3s;
    text-decoration: none;
    font-size: 1.3rem;
}

.card-links a:hover { color: var(--accent-cyan); }

.folder-icon {
    font-size: 22px;
    color: var(--accent-cyan);
}

.project-badge {
    font-family: var(--font-mono);
    font-size: 0.67rem;
    padding: 4px 10px;
    border-radius: 12px;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.badge-web3 {
    background: rgba(100, 255, 218, 0.08);
    color: var(--accent-cyan);
    border: 1px solid rgba(100, 255, 218, 0.25);
}

.badge-ai {
    background: rgba(189, 147, 249, 0.08);
    color: var(--accent-purple);
    border: 1px solid rgba(189, 147, 249, 0.25);
}

.bento-card h4 {
    color: var(--text-primary);
    margin-bottom: 10px;
    font-size: 1.12rem;
    font-family: var(--font-display);
}

.bento-card > p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.65;
    flex: 1;
}

.tech-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    padding-top: 16px;
    font-size: 0.73rem;
    font-family: var(--font-mono);
}

.tech-list li {
    padding: 3px 10px;
    border-radius: 12px;
}

.tag-gold {
    background: rgba(100, 255, 218, 0.06);
    color: var(--accent-cyan);
    border: 1px solid rgba(100, 255, 218, 0.18);
}

.tag-cyan {
    background: rgba(76, 158, 255, 0.06);
    color: var(--accent-blue);
    border: 1px solid rgba(76, 158, 255, 0.18);
}

/* Flagship card */
.flagship-content {
    display: flex;
    min-height: 260px;
}

.flagship-text {
    flex: 1;
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}

.flagship-badge {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--accent-cyan);
    background: rgba(100, 255, 218, 0.07);
    border: 1px solid rgba(100, 255, 218, 0.22);
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.1em;
    align-self: flex-start;
    text-transform: uppercase;
}

.flagship-text h4 {
    font-size: 1.7rem;
    margin-bottom: 0;
}

.flagship-text > p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.65;
    max-width: 480px;
}

.flagship-image {
    flex: 0 0 360px;
    position: relative;
    overflow: hidden;
}

.flagship-image .project-img {
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 0;
    border: none;
    object-fit: cover;
}

.flagship-image .card-links {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(10, 15, 30, 0.85);
    padding: 8px 12px;
    border-radius: 6px;
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-subtle);
}

/* === CONTACT === */
.text-center { text-align: center; }

.mono-text {
    color: var(--accent-cyan);
    font-size: 0.85rem;
    margin-bottom: 14px;
    font-family: var(--font-mono);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text-primary);
    margin-bottom: 16px;
}

.contact-desc {
    max-width: 560px;
    margin: 0 auto 50px;
    color: var(--text-secondary);
    font-size: 0.93rem;
}

.contact-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.contact-card {
    background: rgba(17, 34, 64, 0.6);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 10px;
    width: 220px;
    text-decoration: none;
    color: var(--text-secondary);
    border: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: rgba(100, 255, 218, 0.35);
    box-shadow: 0 10px 30px -10px var(--glow-cyan);
}

.contact-icon {
    font-size: 2.4rem;
    margin-bottom: 6px;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.contact-card:hover .fa-envelope    { color: #ea4335; }
.contact-card:hover .fa-linkedin-in { color: #0077b5; }
.contact-card:hover .fa-whatsapp    { color: #25d366; }

.contact-card span {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 700;
    font-family: var(--font-display);
}

.contact-card small {
    font-size: 0.78rem;
    color: var(--accent-cyan);
    font-family: var(--font-mono);
}

/* === FOOTER === */
.footer {
    text-align: center;
    padding: 40px;
    color: var(--text-muted);
    font-size: 0.82rem;
    font-family: var(--font-mono);
    border-top: 1px solid var(--border-subtle);
}

.footer-sub {
    margin-top: 6px;
    color: var(--accent-cyan);
    opacity: 0.4;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* === RESPONSIVE === */
@media (max-width: 1100px) {
    .bento-card.featured-lg { grid-column: span 12; }
    .bento-card.featured-md { grid-column: span 12; }
    .bento-card.standard    { grid-column: span 6; }
}

@media (max-width: 768px) {
    .glass-nav { padding: 16px 24px; }
    .nav-links  { display: none; }
    .hamburger  { display: flex; }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding-bottom: 40px;
    }

    .hero-content       { order: 2; }
    .hero-image-wrapper { order: 1; }

    .bio-text   { margin: 0 auto 30px; }
    .cta-group  { justify-content: center; }
    .hero-stats { justify-content: center; gap: 28px; }

    .profile-hex-wrapper,
    .profile-pic { width: 210px; height: 210px; }

    .timeline-line          { left: 22px; transform: none; }
    .tl-item.tl-left,
    .tl-item.tl-right       { justify-content: flex-end; }
    .tl-card                { width: calc(100% - 64px); }
    .tl-node                { left: 22px; transform: none; }

    .bento-card.featured-lg,
    .bento-card.featured-md,
    .bento-card.standard,
    .bento-card.flagship    { grid-column: span 12; }

    .flagship-content { flex-direction: column; }
    .flagship-image   { flex: none; height: 200px; }
    .flagship-image .project-img { border-radius: 0 0 10px 10px; }

    .section { padding: 70px 6%; }
}

@media (max-width: 480px) {
    .glitch-name { font-size: 2.4rem; }
    .stat-number { font-size: 2rem; }
    .stat-plus   { font-size: 1.4rem; }
    .contact-grid { flex-direction: column; align-items: center; }
    .contact-card { width: 100%; max-width: 300px; }
}
