* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #0a0a0a;
    --dark: #111111;
    --card: #141414;
    --gold: #FFD700;
    --gold2: #FFA500;
    --white: #FFFFFF;
    --gray: #a0a0a0;
    --gold-gradient: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --border: rgba(255, 215, 0, 0.15);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Sora', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ── Cursor ── */
.cursor {
    width: 10px; height: 10px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s;
    transform: translate(-50%, -50%);
}
.cursor-follower {
    width: 38px; height: 38px;
    border: 1px solid rgba(255, 215, 0, 0.35);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.15s;
    transform: translate(-50%, -50%);
}

/* ── Canvas bg ── */
#bg-canvas {
    position: fixed; inset: 0;
    width: 100%; height: 100%;
    z-index: -1;
}

.container { max-width: 1400px; margin: 0 auto; padding: 0 4rem; }

/* ── Navbar ── */
.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 1.4rem 0;
    z-index: 1000;
    transition: transform 0.3s;
}
.nav-container {
    max-width: 1400px; margin: 0 auto; padding: 0 4rem;
    display: flex; justify-content: space-between; align-items: center;
}
.logo { display: flex; align-items: center; gap: .6rem; font-weight: 800; font-size: 1.2rem; }
.logo-image {
    height: 42px; width: auto; object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(255,215,0,.35));
    transition: transform .3s, filter .3s;
}
.logo:hover .logo-image { transform: scale(1.06) rotate(5deg); filter: drop-shadow(0 0 18px rgba(255,215,0,.7)); }
.logo-text { color: var(--white); letter-spacing: 1px; }

.nav-menu { display: flex; list-style: none; gap: 2.5rem; align-items: center; }
.nav-menu a {
    color: var(--gray); text-decoration: none; font-weight: 500; font-size: .95rem;
    transition: color .3s; position: relative;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--white); }
.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-gradient);
    display: block;
}
.nav-menu a::after {
    content: ''; position: absolute; bottom: -5px; left: 0;
    width: 0; height: 2px; background: var(--gold-gradient); transition: width .3s;
}
.nav-menu a:hover::after { width: 100%; }
.nav-btn {
    background: var(--gold-gradient); color: var(--black) !important;
    padding: .65rem 1.7rem; border-radius: 50px; font-weight: 700;
}
.nav-btn::after { display: none !important; }
.nav-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,215,0,.4); }

.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.menu-toggle span { width: 25px; height: 2px; background: var(--white); transition: .3s; }

/* ── Hero ── */
.hero {
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 8rem 4rem 4rem;
    background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(255,215,0,.06) 0%, transparent 70%), var(--black);
    position: relative;
    overflow: hidden;
}
.hero-container {
    max-width: 1400px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center;
}

.hero-label {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .45rem 1.2rem;
    background: rgba(255,215,0,.08);
    border: 1px solid rgba(255,215,0,.3);
    border-radius: 50px; font-size: .82rem; font-weight: 600;
    color: var(--gold); margin-bottom: 1.8rem;
    animation: fadeInUp .8s ease;
}
.dot {
    width: 7px; height: 7px;
    background: var(--gold); border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

.hero-logo-wrapper { margin-bottom: 1.6rem; animation: fadeInUp .8s ease .1s both; }
.hero-logo {
    height: 72px; width: auto; object-fit: contain;
    filter: drop-shadow(0 0 22px rgba(255,215,0,.5));
    animation: float 3s ease-in-out infinite, goldPulse 2.5s ease-in-out infinite;
}
@keyframes goldPulse {
    0%,100%{ filter: drop-shadow(0 0 22px rgba(255,215,0,.5)); }
    50%{ filter: drop-shadow(0 0 40px rgba(255,215,0,.85)); }
}

.hero-title {
    font-size: clamp(2.8rem, 5vw, 5.2rem);
    font-weight: 800; line-height: 1.1;
    margin-bottom: 1.4rem;
    animation: fadeInUp .8s ease .2s both;
}
.gradient-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle {
    font-size: 1.2rem; color: var(--gray); line-height: 1.8;
    margin-bottom: 2.8rem; max-width: 560px;
    animation: fadeInUp .8s ease .4s both;
}
.hero-cta { display: flex; gap: 1.4rem; margin-bottom: 3.5rem; animation: fadeInUp .8s ease .6s both; }

.btn-primary, .btn-secondary {
    padding: 1.1rem 2.4rem; border-radius: 50px;
    text-decoration: none; font-weight: 700; font-size: 1rem;
    transition: all .3s; display: inline-flex; align-items: center; gap: .5rem;
}
.btn-primary { background: var(--gold-gradient); color: var(--black); box-shadow: 0 8px 28px rgba(255,215,0,.3); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 38px rgba(255,215,0,.5); }
.btn-primary.large { padding: 1.4rem 3rem; font-size: 1.1rem; }
.btn-icon { display: flex; align-items: center; justify-content: center; transition: transform .3s; }
.btn-primary:hover .btn-icon { transform: translateX(5px); }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.2); }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

.hero-stats { display: flex; gap: 3.5rem; animation: fadeInUp .8s ease .8s both; }
.stat h3 {
    font-size: 2.8rem; font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: .2rem;
}
.stat p { color: var(--gray); font-size: .9rem; }

/* Skin visual — SEM canvas atrás */
.hero-visual {
    position: relative;
    height: 580px;
    display: flex; align-items: center; justify-content: center;
    animation: fadeInRight 1s ease .5s both;
}
.hero-skin {
    max-height: 560px; width: auto; object-fit: contain;
    filter: drop-shadow(0 30px 70px rgba(255,215,0,.35));
    animation: float 4s ease-in-out infinite;
    position: relative; z-index: 2;
}

/* glow circle behind skin */
.hero-visual::before {
    content: '';
    position: absolute;
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(255,215,0,.12) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%; left: 50%; transform: translate(-50%,-50%);
    z-index: 1;
    animation: breathe 4s ease-in-out infinite;
}
@keyframes breathe {
    0%,100%{ transform: translate(-50%,-50%) scale(1); opacity:.7; }
    50%{ transform: translate(-50%,-50%) scale(1.15); opacity:1; }
}

.scroll-indicator {
    position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: .8rem;
    color: var(--gray); font-size: .8rem;
    animation: fadeIn 1s ease 1.5s both;
}
.scroll-arrow-svg {
    animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim { 0%,100%{opacity:.3;transform:translateY(-5px)} 50%{opacity:1;transform:translateY(5px)} }

/* ── Sections commons ── */
.about, .services, .developers { padding: 8rem 0; position: relative; }

.section-canvas {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    z-index: 0; opacity: .25; pointer-events: none;
}
.section-watermark {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    z-index: 0; opacity: .03;
    pointer-events: none; width: 50%; max-width: 600px;
}
.section-watermark img { width: 100%; height: auto; filter: grayscale(1) brightness(2); }
.section-watermark.dark img { filter: grayscale(1) brightness(.3); }
.container { position: relative; z-index: 1; }

.section-header { margin-bottom: 4.5rem; }
.section-header.centered { text-align: center; }
.section-label {
    display: inline-block; padding: .45rem 1.4rem;
    background: rgba(255,215,0,.08); border: 1px solid rgba(255,215,0,.3);
    border-radius: 50px; font-size: .82rem; font-weight: 700;
    color: var(--gold); margin-bottom: 1.4rem;
    text-transform: uppercase; letter-spacing: 1px;
}
.section-title {
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 800; line-height: 1.2; max-width: 800px;
}
.section-header.centered .section-title { margin: 0 auto; }

/* ── About ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.lead-text { font-size: 1.4rem; font-weight: 600; line-height: 1.6; margin-bottom: 1.8rem; }
.about-content p { color: var(--gray); font-size: 1.05rem; line-height: 1.8; margin-bottom: 2.5rem; }
.about-features { display: flex; flex-direction: column; gap: 1.8rem; }
.feature { display: flex; gap: 1.4rem; align-items: flex-start; }
.feature-icon {
    width: 56px; height: 56px;
    background: rgba(255,215,0,.08);
    border: 1px solid rgba(255,215,0,.25);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: all .3s;
}
.feature:hover .feature-icon {
    background: rgba(255,215,0,.15);
    border-color: rgba(255,215,0,.5);
    box-shadow: 0 0 20px rgba(255,215,0,.2);
}
.feature-icon svg { display: block; }
.feature h4 { font-size: 1.1rem; margin-bottom: .3rem; }
.feature p { color: var(--gray); font-size: .95rem; margin: 0; }

.about-image { position: relative; }
.image-wrapper {
    position: relative;
    height: 480px;
    border-radius: 28px;
    overflow: hidden;
    background: transparent;
    border: 2px solid rgba(255, 215, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}
.image-glow {
    position: absolute;
    inset: 20%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.6; }
}

/* ── Services ── */
.services { background: linear-gradient(180deg, transparent, rgba(255,215,0,.03), transparent); }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.8rem; }
.service-card {
    background: var(--card);
    border: 1px solid rgba(255,215,0,.08);
    border-radius: 22px; padding: 2.8rem 2.2rem;
    transition: all .3s; position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--gold-gradient);
    transform: scaleX(0); transition: transform .3s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    border-color: rgba(255,215,0,.35);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255,215,0,.12);
}
.service-number { font-size: .85rem; font-weight: 700; color: var(--gold); margin-bottom: 1.4rem; }
.service-icon {
    width: 64px; height: 64px;
    background: rgba(255,215,0,.08);
    border: 1px solid rgba(255,215,0,.25);
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.6rem;
    transition: all .3s;
}
.service-card:hover .service-icon {
    background: rgba(255,215,0,.15);
    border-color: rgba(255,215,0,.5);
    transform: scale(1.08);
    box-shadow: 0 0 24px rgba(255,215,0,.2);
}
.service-icon svg { display: block; }
.service-card h3 { font-size: 1.6rem; font-weight: 700; margin-bottom: .9rem; }
.service-card > p { color: var(--gray); line-height: 1.7; margin-bottom: 1.8rem; }
.service-list { list-style: none; }
.service-list li { color: var(--gray); padding: .45rem 0 .45rem 1.4rem; position: relative; }
.service-list li::before { content: '→'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* ── Developers ── */
.developers { background: var(--dark); }
.section-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 1rem auto 0;
}
.developers-grid {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.developer-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
}
.developer-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255,215,0,0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}
.developer-card:hover::before { opacity: 1; }
.developer-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,215,0,0.4);
    box-shadow: 0 24px 60px rgba(255,215,0,0.15);
}
.developer-avatar {
    width: 140px;
    height: 140px;
    margin: 0 auto 2rem;
    position: relative;
}
.avatar-glow {
    position: absolute;
    inset: -10px;
    background: var(--gold-gradient);
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(20px);
    transition: opacity 0.4s;
}
.developer-card:hover .avatar-glow {
    opacity: 0.3;
}
.avatar-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,215,0,0.1), rgba(255,165,0,0.1));
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: border-color 0.4s, transform 0.4s;
}
.developer-card:hover .avatar-placeholder {
    border-color: var(--gold);
    transform: scale(1.05);
}
.developer-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border);
    position: relative;
    z-index: 2;
    transition: border-color 0.4s, transform 0.4s;
    filter: drop-shadow(0 4px 20px rgba(255,215,0,0.3));
}
.developer-card:hover .developer-photo {
    border-color: var(--gold);
    transform: scale(1.05);
    filter: drop-shadow(0 8px 30px rgba(255,215,0,0.5));
}
.discord-status-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    background: var(--card);
    border: 3px solid var(--card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: transform 0.3s;
}
.developer-card:hover .discord-status-badge {
    transform: scale(1.1);
}
.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #747f8d;
    transition: background 0.3s;
}
.discord-status-badge[data-status="online"] .status-dot {
    background: #23a559;
    box-shadow: 0 0 10px rgba(35, 165, 89, 0.6);
    animation: pulse-online 2s ease-in-out infinite;
}
.discord-status-badge[data-status="idle"] .status-dot {
    background: #f0b232;
    box-shadow: 0 0 10px rgba(240, 178, 50, 0.6);
    animation: pulse-idle 2s ease-in-out infinite;
}
.discord-status-badge[data-status="dnd"] .status-dot {
    background: #f23f43;
    box-shadow: 0 0 10px rgba(242, 63, 67, 0.6);
    animation: pulse-dnd 2s ease-in-out infinite;
}
@keyframes pulse-online {
    0%, 100% { box-shadow: 0 0 10px rgba(35, 165, 89, 0.6); }
    50% { box-shadow: 0 0 20px rgba(35, 165, 89, 0.8), 0 0 30px rgba(35, 165, 89, 0.4); }
}
@keyframes pulse-idle {
    0%, 100% { box-shadow: 0 0 10px rgba(240, 178, 50, 0.6); }
    50% { box-shadow: 0 0 20px rgba(240, 178, 50, 0.8), 0 0 30px rgba(240, 178, 50, 0.4); }
}
@keyframes pulse-dnd {
    0%, 100% { box-shadow: 0 0 10px rgba(242, 63, 67, 0.6); }
    50% { box-shadow: 0 0 20px rgba(242, 63, 67, 0.8), 0 0 30px rgba(242, 63, 67, 0.4); }
}
.discord-activity {
    margin-bottom: 1.5rem;
    padding: 0.8rem 1rem;
    background: rgba(255,215,0,0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s;
}
.discord-activity:hover {
    background: rgba(255,215,0,0.08);
    border-color: rgba(255,215,0,0.3);
}
.activity-status {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--gray);
    font-size: 0.85rem;
}
.activity-status svg {
    color: #5865F2;
    flex-shrink: 0;
}
.activity-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.activity-playing {
    color: var(--gold);
    font-weight: 600;
}
.developer-info {
    text-align: center;
}
.developer-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.developer-role {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--gold);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.developer-bio {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}
.developer-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    margin-bottom: 2rem;
}
.skill-tag {
    background: rgba(255,215,0,0.08);
    border: 1px solid var(--border);
    color: var(--gold);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.skill-tag:hover {
    background: rgba(255,215,0,0.15);
    border-color: var(--gold);
    transform: translateY(-2px);
}
.developer-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}
.developer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,215,0,0.08);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.3s;
}
.developer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255,215,0,0.4);
}

/* ── CTA ── */
.cta-section {
    padding: 10rem 0; text-align: center;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255,215,0,.12) 0%, transparent 70%);
    position: relative; overflow: hidden;
}
.cta-section .section-canvas { opacity: .4; }
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { font-size: clamp(2.4rem,4vw,4rem); font-weight: 800; margin-bottom: 1.4rem; }
.cta-content p { font-size: 1.2rem; color: var(--gray); margin-bottom: 2.8rem; max-width: 680px; margin-left: auto; margin-right: auto; }

/* ── Footer ── */
.footer { background: #080808; border-top: 1px solid rgba(255,215,0,.1); padding: 5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.footer-brand p { color: var(--gray); margin: 1.4rem 0; line-height: 1.7; font-size: .95rem; }
.social-links { display: flex; gap: 1rem; }
.social-links a {
    width: 38px; height: 38px;
    background: rgba(255,215,0,.06); border: 1px solid rgba(255,215,0,.2);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gray); transition: all .3s;
}
.social-links a:hover { background: var(--gold-gradient); color: var(--black); transform: translateY(-3px); border-color: transparent; }
.footer-links h4, .footer-contact h4 { font-size: .95rem; font-weight: 700; margin-bottom: 1.4rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: .75rem; }
.footer-links a { color: var(--gray); text-decoration: none; font-size: .95rem; transition: color .3s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact p { color: var(--gray); margin-bottom: .75rem; font-size: .95rem; }
.footer-bottom { text-align: center; padding-top: 2.5rem; border-top: 1px solid rgba(255,215,0,.08); color: var(--gray); font-size: .88rem; }

/* ── Animations ── */
@keyframes fadeInUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInRight { from{opacity:0;transform:translateX(30px)} to{opacity:1;transform:translateX(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-22px)} }

/* ── Responsive ── */
@media (max-width: 1200px) {
    .container, .nav-container { padding: 0 2rem; }
    .hero { padding: 8rem 2rem 4rem; }
    .services-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 968px) {
    .hero-container { grid-template-columns: 1fr; gap: 3rem; }
    .hero-visual { height: 420px; }
    .about-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .developers-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
    
    /* Mobile Menu */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-bottom: 1px solid var(--border);
        z-index: 999;
    }
    .nav-menu.active {
        transform: translateX(0);
    }
    .menu-toggle { display: flex; }
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    body.menu-open {
        overflow: hidden;
    }
}
@media (max-width: 640px) {
    .hero-cta { flex-direction: column; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
    .hero-stats { gap: 2rem; }
    .stat h3 { font-size: 2rem; }
    .hero-skin { max-height: 350px; }
    .logo-image { height: 32px; }
    .hero-visual::before { width: 280px; height: 280px; }
}
