@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* Variables */
:root {
    --bg: #101316;
    --card: #0f1619;
    --accent: #00e6ff;
    --muted: #9aa3a7;
    --white: #e9eef0;
    --glass: rgba(255,255,255,0.03);
}

/* Reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; scroll-behavior: smooth; }
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
    background: var(--bg);
    color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }

/* Focus styles */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}
.skip-link {
    position: absolute;
    top: -40px;
    left: 12px;
    background: var(--accent);
    color: #0a0d10;
    padding: 0.8rem 1.2rem;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: top 0.2s ease;
    z-index: 1100;
}
.skip-link:focus-visible { top: 12px; }

/* NAV */
.nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    padding: 2rem 5%;
    z-index: 1000;
    background: rgba(16, 19, 22, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.nav.scrolled {
    background: rgba(16, 19, 22, 0.95);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
    font-size: 2.6rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}
.logo:hover { color: var(--accent); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}
.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(8px, 8px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

.nav-links {
    list-style: none;
    display: flex;
    gap: 3rem;
    align-items: center;
}
.nav-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.6rem;
    position: relative;
    padding: 0.2rem 0;
    transition: color 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent); }
.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 3px;
    background: var(--accent);
    box-shadow: 0 0 18px var(--accent);
    transition: width 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Loading */
.loading-screen {
    position: fixed;
    inset: 0;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}
.loading-text {
    font-size: 4.2rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 3px;
    position: relative;
    min-height: 60px;
}
.loading-text::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 12%;
    width: 3px;
    height: 78%;
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent);
    animation: blink 0.7s infinite;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: relative;
}
.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 6rem;
    align-items: center;
    padding-top: 6rem;
}
.hero-left { color: var(--white); }
.eyebrow {
    color: var(--muted);
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
}
.hero-name {
    font-size: 7.6rem;
    line-height: 1;
    margin-bottom: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-shadow: 0 6px 34px rgba(0,0,0,0.6);
}
.hero-role {
    font-size: 3.2rem;
    font-weight: 600;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.typed-text { color: var(--accent); font-weight: 700; }
.caret {
    color: var(--accent);
    font-weight: 800;
    margin-left: 0.4rem;
    animation: blink-caret 1s steps(1) infinite;
    font-size: 3.2rem;
}
@keyframes blink-caret {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

.hero-desc {
    color: rgba(233,238,240,0.8);
    max-width: 70%;
    font-size: 1.8rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}
.hero-actions {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2.6rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    text-decoration: none;
    padding: 1.2rem 2.8rem;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1.6rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-neon {
    background: linear-gradient(90deg, rgba(0,230,255,0.2), rgba(0,230,255,0.1));
    color: var(--white);
    position: relative;
    border: 2px solid var(--accent);
    box-shadow: 0 8px 34px rgba(0,230,255,0.2), 0 0 40px rgba(0,230,255,0.1);
}
.btn-neon:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 60px rgba(0,230,255,0.3);
    background: linear-gradient(90deg, rgba(0,230,255,0.3), rgba(0,230,255,0.15));
}
.btn-outline {
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.2);
    background: transparent;
}
.btn-outline:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.4);
}

/* Social */
.hero-social {
    display: flex;
    gap: 1.2rem;
    margin-top: 0.6rem;
}
.social-icon {
    width: 4.6rem;
    height: 4.6rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0,230,255,0.3);
    color: var(--accent);
    background: transparent;
    transition: all 0.3s ease;
    box-shadow: 0 6px 28px rgba(0,230,255,0.1);
}
.social-icon:hover {
    transform: translateY(-6px);
    background: rgba(0,230,255,0.1);
    box-shadow: 0 18px 60px rgba(0,230,255,0.25);
    border-color: var(--accent);
}

/* Hexagon */
.hex {
    width: 550px;
    height: auto;
    aspect-ratio: 1/1;
    position: relative;
    margin-left: auto;
    clip-path: polygon(25% 6.7%,75% 6.7%,100% 50%,75% 93.3%,25% 93.3%,0% 50%);
    overflow: hidden;
    background: linear-gradient(180deg, rgba(0,230,255,0.08), rgba(0,230,255,0.02));
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-4%);
}
.hex::before {
    content: "";
    position: absolute;
    inset: -28px;
    background: radial-gradient(circle at 50% 40%, rgba(0,230,255,0.3), rgba(0,230,255,0.15) 20%, transparent 45%);
    filter: blur(34px);
    z-index: -1;
}
.hex img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: none;
    background: radial-gradient(circle at 50% 50%, rgba(0,230,255,0.12), rgba(0,230,255,0.02));
}

/* Scroll Button */
.scroll-btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 6rem;
    text-align: center;
}
.scroll-btn a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.scroll-text {
    color: var(--muted);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}
.scroll-line {
    width: 2px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0 auto;
}
.scroll-line::after {
    content: "";
    position: absolute;
    left: 0;
    top: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent);
    animation: scrollDown 1.5s linear infinite;
}
@keyframes scrollDown {
    0% { transform: translateY(-120%); }
    100% { transform: translateY(120%); }
}

/* adjust scroll button on smaller screens */
@media (max-width: 880px) {
  .scroll-btn { bottom: 4rem; }
}
@media (max-width: 640px) {
  .scroll-btn { display: none; }
}

/* Sections */
section { padding: 8rem 5%; }
.section-content {
    max-width: 1400px;
    margin: 0 auto;
}
.section-title {
    font-size: 4.2rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--white);
    font-weight: 800;
}
.section-title span { color: var(--accent); }

/* About */
.about-text {
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.06);
    padding: 3rem;
    border-radius: 12px;
    color: rgba(233,238,240,0.95);
    font-size: 1.8rem;
    line-height: 1.8;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Education */
.education { padding-top: 4rem; }
.edu-timeline {
    display: flex;
    flex-direction: column;
    gap: 2.8rem;
    position: relative;
}
.edu-item {
    position: relative;
    margin-left: 3rem;
    padding: 2.4rem 2.8rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    transition: all 0.3s ease;
}
/* remove timeline dots */
.edu-item::before { display: none; }
.edu-item.current {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px rgba(0,230,255,0.35), 0 12px 40px rgba(0,230,255,0.18);
}
.edu-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 50px rgba(0,0,0,0.5);
    border-color: rgba(0,230,255,0.3);
}
.edu-header {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: baseline;
    margin-bottom: 0.4rem;
}
.edu-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}
.edu-institute { font-size: 1.5rem; color: var(--accent); }
.edu-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem;
    font-size: 1.3rem;
    color: var(--muted);
    margin-bottom: 1rem;
}
.edu-desc {
    font-size: 1.5rem;
    color: rgba(233,238,240,0.9);
    line-height: 1.7;
}

/* Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}
.skill-category {
    background: linear-gradient(135deg, rgba(0,230,255,0.05), rgba(0,230,255,0.02));
    border: 1px solid rgba(0,230,255,0.15);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.skill-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.skill-category:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,230,255,0.2);
    border-color: var(--accent);
}
.skill-category:hover::before { opacity: 1; }
.skill-category h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--white);
    font-weight: 700;
}
.skill-category ul { list-style: none; }
.skill-category ul li {
    font-size: 1.6rem;
    color: rgba(233,238,240,0.85);
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
}
.skill-category ul li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 2rem;
    line-height: 1;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}
.project-item {
    background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.08);
    padding: 3rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.project-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.project-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0,230,255,0.15);
    border-color: rgba(0,230,255,0.3);
}
.project-item:hover::before { transform: scaleX(1); }
.project-item h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 700;
}
.project-item p {
    font-size: 1.6rem;
    color: rgba(233,238,240,0.8);
    margin-bottom: 1.6rem;
    line-height: 1.6;
}

/* Project preview */
.project-thumb {
    width: 100%;
    margin-bottom: 1.6rem;
    border-radius: 14px;
    overflow: hidden;
    background: radial-gradient(circle at top left, rgba(0,230,255,0.18), transparent 60%);
    border: 1px solid rgba(255,255,255,0.14);
}
.project-thumb img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
    background: linear-gradient(180deg, rgba(0,230,255,0.08), rgba(0,230,255,0.02));
}

.project-tags {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
}
.tag {
    padding: 0.5rem 1.4rem;
    background: rgba(0,230,255,0.1);
    border: 1px solid rgba(0,230,255,0.3);
    border-radius: 20px;
    font-size: 1.3rem;
    color: var(--accent);
    font-weight: 500;
}
.project-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Project CTA */
.project-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 2.2rem;
    border-radius: 999px;
    font-size: 1.4rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    border: 1px solid transparent;
}
.project-cta svg { flex-shrink: 0; }
.project-cta.primary {
    background: linear-gradient(90deg, rgba(0,230,255,0.18), rgba(0,230,255,0.08));
    color: var(--white);
    border-color: rgba(0,230,255,0.7);
    box-shadow: 0 8px 26px rgba(0,230,255,0.2);
}
.project-cta.primary:hover {
    transform: translateY(-2px) translateX(2px);
    box-shadow: 0 14px 40px rgba(0,230,255,0.3);
    background: linear-gradient(90deg, rgba(0,230,255,0.26), rgba(0,230,255,0.12));
}
.project-cta.secondary {
    background: rgba(255,255,255,0.02);
    color: var(--muted);
    border-color: rgba(255,255,255,0.16);
}
.project-cta.secondary:hover {
    background: rgba(255,255,255,0.05);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Certificates */
.certificates { padding-top: 4rem; }
.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}
.cert-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.08);
    padding: 2.4rem 2.8rem 2.1rem 2.8rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.cert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.cert-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,230,255,0.16);
    border-color: rgba(0,230,255,0.3);
}
.cert-card:hover::before { transform: scaleX(1); }

/* Certificate preview thumbnail */
.cert-thumb {
    width: 100%;
    margin-bottom: 1.6rem;
    border-radius: 12px;
    overflow: hidden;
    background: radial-gradient(circle at top left, rgba(0,230,255,0.18), transparent 60%);
    border: 1px solid rgba(255,255,255,0.16);
}
.cert-thumb img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}
.cert-card h3 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: var(--white);
}
.cert-issuer { font-size: 1.4rem; color: var(--muted); margin-bottom: 0.4rem; }
.cert-date { font-size: 1.3rem; color: rgba(233,238,240,0.8); margin-bottom: 1.2rem; }
.cert-desc {
    font-size: 1.5rem;
    color: rgba(233,238,240,0.85);
    line-height: 1.6;
}
.cert-btn {
    display: inline-block;
    margin-top: 1.6rem;
    border-radius: 999px;
    padding: 0.7rem 1.8rem;
    border: 1px solid rgba(0,230,255,0.55);
    background: rgba(0,230,255,0.08);
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    transition: all 0.25s ease;
    text-decoration: none;
}
.cert-btn:hover {
    background: rgba(0,230,255,0.18);
    box-shadow: 0 8px 30px rgba(0,230,255,0.28);
    transform: translateY(-2px);
}

/* Experience */
.experience { padding-top: 4rem; }
.exp-timeline {
    display: flex;
    flex-direction: column;
    gap: 2.8rem;
    position: relative;
}
.exp-item {
    position: relative;
    margin-left: 3rem;
    padding: 2.4rem 2.8rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    transition: all 0.3s ease;
}
/* remove timeline dots */
.exp-item::before { display: none; }
.exp-item.current {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px rgba(0,230,255,0.35), 0 12px 40px rgba(0,230,255,0.18);
}
.exp-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 50px rgba(0,0,0,0.5);
    border-color: rgba(0,230,255,0.3);
}
.exp-header {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: baseline;
    margin-bottom: 0.4rem;
}
.exp-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}
.exp-company { font-size: 1.5rem; color: var(--accent); }
.exp-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem;
    font-size: 1.3rem;
    color: var(--muted);
    margin-bottom: 1rem;
}
.exp-points {
    list-style: none;
    padding-left: 0;
}
.exp-points li {
    font-size: 1.5rem;
    color: rgba(233,238,240,0.9);
    margin-bottom: 0.6rem;
    position: relative;
    padding-left: 1.6rem;
}
.exp-points li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 1.4rem;
}

/* Footer */
.footer {
    padding: 3rem 5%;
    color: var(--muted);
    border-top: 1px solid rgba(255,255,255,0.05);
    background: rgba(15,22,25,0.5);
}
.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.footer-left p { font-size: 1.4rem; }
.footer-right {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    flex-wrap: wrap;
}
.social-link, .download-btn {
    color: var(--muted);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}
.social-link:hover,
.download-btn:hover { color: var(--accent); }
.social-link::after,
.download-btn::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}
.social-link:hover::after,
.download-btn:hover::after { width: 100%; }

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
    .reveal { opacity: 1; transform: none; }
}

/* Responsive tweaks */
@media (max-width: 1100px) {
    .hero-container {
        grid-template-columns: 1fr 380px;
        gap: 3.5rem;
    }
    .hero-name { font-size: 6.2rem; }
}
@media (max-width: 880px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 4rem;
        padding-top: 0;
    }
    .hero-right { order: 1; display: flex; justify-content: center; }
    .hero-left { order: 2; text-align: center; }
    .hero-desc { max-width: 100%; }
    .hex { width: 340px; margin: 0 auto; transform: translateY(-2%); }
    .hero-name { font-size: 5.2rem; }
    .hero-role { justify-content: center; }
    .hero-actions { justify-content: center; }
    .hero-social { justify-content: center; }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: rgba(15,22,25,0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 8rem 3rem;
        gap: 2rem;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        border-left: 1px solid rgba(0,230,255,0.2);
    }
    .nav-links.active { transform: translateX(0); }
    .nav-links a { font-size: 1.8rem; }
    .hamburger { display: flex; }
}
@media (max-width: 640px) {
    .skills-grid,
    .projects-grid,
    .cert-grid { grid-template-columns: 1fr; }
    .edu-timeline,
    .exp-timeline { gap: 2.4rem; }
    .edu-item,
    .exp-item {
        margin-left: 2.4rem;
        padding: 2rem 2.2rem;
    }
    .edu-item::before,
    .exp-item::before { left: -14px; }
    .hex { width: 280px; }
}
@media (max-width: 480px) {
    html { font-size: 55%; }
    .hero-name { font-size: 4.4rem; }
    .hero-role { font-size: 2.3rem; }
    .hex { width: 240px; transform: translateY(0); }
    .hero-desc { font-size: 1.6rem; }
    .section-title { font-size: 3.2rem; }
    .footer-content { flex-direction: column; text-align: center; }
    .footer-right { justify-content: center; }
}
@media (max-width: 360px) {
    .hero-name { font-size: 3.8rem; }
    .hero-role { font-size: 2.1rem; }
    .hero-container { gap: 3rem; }
    .btn { width: 100%; text-align: center; }
}
