/* ── Reset & Variables ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg:          #fff0f5;
    --surface:     #ffffff;
    --dark:        #1a0a0f;
    --mid:         #7a3a50;
    --light:       #c48a9a;
    --accent:      #ff2d6b;        
    --accent2:     #ff6fa3;        
    --accent3:     #5ecfff;        
    --candy-yellow:#ffd166;
    --contact-bg:  #1a0510;
    --radius:      16px;
    --transition:  0.35s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 15%, rgba(255,45,107,0.07) 0%, transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(94,207,255,0.07) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255,111,163,0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

#loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: linear-gradient(135deg, #1a0510 0%, #2d0a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.loader-split {
    position: absolute;
    left: 0; right: 0;
    height: 50%;
    background: linear-gradient(135deg, #1a0510, #2d0a1a);
    transition: transform 0.9s cubic-bezier(.76,0,.24,1);
    z-index: 1;
}
.loader-split.top    { top: 0; transform: translateY(0); }
.loader-split.bottom { bottom: 0; transform: translateY(0); }

#loader.exit .loader-split.top    { transform: translateY(-100%); }
#loader.exit .loader-split.bottom { transform: translateY(100%); }
#loader.exit .loader-inner        { opacity: 0; transform: scale(0.9); }
#loader.gone { display: none; }

.loader-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.loader-logo {
    font-size: 52px;
    font-weight: 900;
    letter-spacing: -3px;
    color: white;
    animation: logoPulse 1.6s ease-in-out infinite alternate;
    text-shadow: 0 0 40px rgba(255,45,107,0.8), 0 0 80px rgba(255,111,163,0.4);
}
.loader-logo span { color: var(--accent); }

.loader-bar-wrap {
    width: 180px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 99px;
    overflow: hidden;
}
.loader-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent3));
    border-radius: 99px;
    animation: barFill 2s cubic-bezier(.4,0,.2,1) forwards;
    box-shadow: 0 0 12px rgba(255,45,107,0.8);
}
.loader-text {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

@keyframes barFill  { 0%{width:0%} 60%{width:75%} 100%{width:100%} }
@keyframes logoPulse { from{opacity:.7} to{opacity:1} }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent), var(--accent2));
    border-radius: 99px;
}

#progress-bar {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent3));
    z-index: 9999;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(255,45,107,0.7);
}

header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,240,245,0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,45,107,0.12);
    padding: 0 40px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: box-shadow var(--transition);
}
header.scrolled { box-shadow: 0 4px 30px rgba(255,45,107,0.1); }

.logo {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -1.5px;
    color: var(--dark);
    text-decoration: none;
}
.logo span {
    color: var(--accent);
    text-shadow: 0 0 20px rgba(255,45,107,0.5);
}

nav { display: flex; gap: 32px; }
nav a {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mid);
    text-decoration: none;
    position: relative;
    transition: color var(--transition);
}
nav a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    border-radius: 2px;
    transition: width var(--transition);
}
nav a:hover { color: var(--accent); }
nav a:hover::after,
nav a.active::after { width: 100%; }
nav a.active { color: var(--accent); }

#home {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px 80px 40px;
    overflow: hidden;
}
#home .bg {
    position: absolute; inset: 0;
    background:
        linear-gradient(135deg, #1a0510 0%, #2d0a1a 40%, #0d0520 70%, #0a0a1a 100%);
    transform: scale(1.04);
    transition: transform 8s ease-out;
}
#home.loaded .bg { transform: scale(1); }

#home .bg::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 70% 40%, rgba(255,45,107,0.28) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 70%, rgba(94,207,255,0.15) 0%, transparent 45%),
        radial-gradient(ellipse at 85% 85%, rgba(255,111,163,0.12) 0%, transparent 35%),
        radial-gradient(ellipse at 10% 15%, rgba(200,0,80,0.2) 0%, transparent 40%);
    animation: blobShift 12s ease-in-out infinite alternate;
}
#home .bg::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
        repeating-linear-gradient(
            45deg,
            rgba(255,255,255,0.015) 0px,
            rgba(255,255,255,0.015) 1px,
            transparent 1px,
            transparent 40px
        );
}

#home .overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        110deg,
        rgba(26,5,16,0.55) 0%,
        rgba(10,2,10,0.25) 55%,
        rgba(0,0,0,0.1) 100%
    );
}

@keyframes blobShift {
    0%   { opacity: 1; transform: scale(1) translate(0, 0); }
    33%  { opacity: 0.85; transform: scale(1.05) translate(-1%, 1%); }
    66%  { opacity: 0.95; transform: scale(0.97) translate(1%, -1%); }
    100% { opacity: 1; transform: scale(1.03) translate(-0.5%, 0.5%); }
}

#home::after {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 75% 30%, rgba(255,45,107,0.15) 0%, transparent 35%),
        radial-gradient(circle at 20% 70%, rgba(94,207,255,0.1) 0%, transparent 30%);
    pointer-events: none;
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    gap: 60px;
    padding-left: 20px;
}

.hero-content { color: white; flex: 1; max-width: 580px; }

.hero-photo-wrap {
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-photo-ring {
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    border: 2.5px solid var(--accent);
    opacity: 0.7;
    animation: ringPulse 3.2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255,45,107,0.5), inset 0 0 20px rgba(255,45,107,0.1);
}
.hero-photo-ring2 {
    position: absolute;
    inset: -30px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,111,163,0.4);
    animation: ringPulse 3.2s ease-in-out 1s infinite;
}
.hero-photo-wrap::after {
    content: '';
    position: absolute;
    inset: -50px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,45,107,0.22) 0%, transparent 70%);
    pointer-events: none;
}

.hero-photo {
    width: 340px;
    height: 340px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 5px solid rgba(255,45,107,0.4);
    box-shadow:
        0 0 0 2px rgba(255,111,163,0.6),
        0 24px 70px rgba(0,0,0,0.7),
        0 0 80px rgba(255,45,107,0.3);
    opacity: 0;
    transform: scale(0.85) translateX(20px);
    animation: photoReveal 1s 0.5s cubic-bezier(.34,1.56,.64,1) forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,45,107,0.15);
    border: 1px solid rgba(255,45,107,0.35);
    border-radius: 99px;
    padding: 6px 16px;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    margin-bottom: 22px;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.7s 0.1s ease forwards;
}
.hero-badge .dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent);
    animation: pulse 2s infinite;
}

.hero-content h1 {
    font-size: clamp(36px, 4.8vw, 64px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2.5px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.7s 0.22s ease forwards;
}
.hero-content h1 em {
    font-style: normal;
    color: var(--accent2);
    text-shadow: 0 0 30px rgba(255,111,163,0.6);
}

.hero-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.72);
    margin-top: 18px;
    line-height: 1.8;
    min-height: 3.6em;
}

.hero-sub::after {
    content: '|';
    display: inline-block;
    color: var(--accent2);
    margin-left: 2px;
    animation: cursorBlink 0.75s step-end infinite;
    font-weight: 300;
}
.hero-sub.typing-done::after { display: none; }

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

.hero-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 34px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 32px;
    background: linear-gradient(135deg, var(--accent), #c4006b);
    color: white;
    border: none;
    border-radius: 99px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 6px 24px rgba(255,45,107,0.55), 0 0 0 0 rgba(255,45,107,0);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(255,45,107,0.7);
}
.btn-primary:active { transform: translateY(0); }

.hero-social a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 13px;
    transition: color var(--transition);
}
.hero-social a:hover { color: var(--accent2); }

.divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,45,107,0.2), rgba(94,207,255,0.2), transparent);
    border: none; margin: 0;
}

section { padding: 90px 0; }

.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
    background: rgba(255,45,107,0.08);
    padding: 4px 12px;
    border-radius: 99px;
    border: 1px solid rgba(255,45,107,0.2);
}

.section-title {
    font-size: clamp(26px, 3.2vw, 40px);
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1.1;
    color: var(--dark);
}
.section-desc {
    font-size: 15px;
    color: var(--mid);
    max-width: 520px;
    margin-top: 10px;
    line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 52px; }
.section-header .section-desc { margin: 10px auto 0; }

#gallery {
    background: var(--bg);
    position: relative;
}
#gallery::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 10% 50%, rgba(255,45,107,0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 50%, rgba(94,207,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.gallery-grid {
    width: 72%; margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
    position: relative;
    z-index: 1;
}

.gallery-card {
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(255,45,107,0.08), 0 1px 4px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,45,107,0.08);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    cursor: pointer;
}
.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(255,45,107,0.2), 0 8px 20px rgba(0,0,0,0.08);
    border-color: rgba(255,45,107,0.3);
}
.gallery-card .img-wrap {
    overflow: hidden;
    position: relative;
    aspect-ratio: 3 / 2;
}
.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.6s ease;
}
.gallery-card:hover img { transform: scale(1.06); }
.gallery-card .img-wrap::after {
    content: '🔍';
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    background: rgba(255,45,107,0.35);
    opacity: 0;
    transition: opacity var(--transition);
}
.gallery-card:hover .img-wrap::after { opacity: 1; }
.gallery-card h3 {
    font-size: 13px; font-weight: 700;
    padding: 10px 14px 12px;
    color: var(--dark);
}

#lightbox {
    position: fixed; inset: 0;
    background: rgba(26,5,16,0.92);
    display: flex; align-items: center; justify-content: center;
    z-index: 9998;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(8px);
}
#lightbox.open { opacity: 1; pointer-events: all; }
#lightbox img {
    max-width: 90vw; max-height: 85vh;
    border-radius: var(--radius);
    transform: scale(0.92);
    transition: transform 0.35s ease;
    box-shadow: 0 0 80px rgba(255,45,107,0.3);
    border: 2px solid rgba(255,45,107,0.2);
}
#lightbox.open img { transform: scale(1); }
#lightbox-close {
    position: absolute; top: 24px; right: 32px;
    color: white; font-size: 32px; cursor: pointer;
    line-height: 1; background: rgba(255,45,107,0.2);
    border: 1px solid rgba(255,45,107,0.3);
    border-radius: 50%; width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    opacity: 0.8; transition: opacity 0.2s, background 0.2s;
}
#lightbox-close:hover { opacity: 1; background: rgba(255,45,107,0.4); }

#blog {
    background: linear-gradient(180deg, #ffe0ec 0%, #fff0f5 100%);
    position: relative;
}

.blog-grid {
    width: 80%; margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}

.blog-card {
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(255,45,107,0.07);
    border: 1px solid rgba(255,45,107,0.08);
    display: flex; flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(255,45,107,0.18);
    border-color: rgba(255,45,107,0.25);
}
.blog-card .img-wrap { overflow: hidden; }
.blog-card img { width: 100%; display: block; transition: transform 0.5s ease; }
.blog-card:hover img { transform: scale(1.05); }
.blog-card .card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-card h3 {
    font-size: 15px; font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px; line-height: 1.3;
}
.blog-card p { font-size: 13px; color: var(--mid); line-height: 1.65; flex: 1; }
.blog-card a.read-more {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 16px; font-size: 13px; font-weight: 600;
    color: var(--accent); text-decoration: none;
    transition: gap var(--transition), color var(--transition);
}
.blog-card a.read-more:hover { gap: 10px; color: #c4006b; }

#contact {
    background: linear-gradient(135deg, var(--contact-bg) 0%, #2a0520 100%);
    color: white;
    position: relative;
    overflow: visible;
}
#contact::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255,45,107,0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(94,207,255,0.07) 0%, transparent 40%);
    pointer-events: none;
}

.contact-inner {
    width: 80%; margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px; align-items: start;
    position: relative; z-index: 1;
}
#contact .section-title { color: white; }
#contact .section-desc  { color: rgba(255,255,255,0.5); }

.contact-form { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
.contact-form input,
.contact-form textarea {
    width: 100%; padding: 13px 17px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,45,107,0.2);
    border-radius: var(--radius);
    color: white; font-size: 14px;
    outline: none;
    transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
    resize: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.28); }
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent);
    background: rgba(255,45,107,0.06);
    box-shadow: 0 0 0 3px rgba(255,45,107,0.1);
}
.contact-form textarea { height: 120px; }
.contact-form button {
    padding: 14px;
    background: linear-gradient(135deg, var(--accent), #c4006b);
    color: white; border: none; border-radius: 99px;
    font-size: 15px; font-weight: 600; cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
    box-shadow: 0 6px 24px rgba(255,45,107,0.5);
}
.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(255,45,107,0.7);
}
.contact-form button:active { transform: translateY(0); }
.contact-form button:disabled { opacity: 0.6; cursor: default; transform: none; }
#form-feedback { font-size: 13px; height: 18px; margin-top: -4px; }
#form-feedback.success { color: var(--accent2); }
#form-feedback.error   { color: #ff6b6b; }

.connect-side h2 { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.connect-side p  { color: rgba(255,255,255,0.45); font-size: 14px; line-height: 1.7; }

.identity-card {
    margin-top: 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,45,107,0.18);
    border-radius: var(--radius);
    overflow: hidden;
}
.identity-row {
    display: flex;
    padding: 11px 18px;
    gap: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 13px;
    align-items: center;
}
.identity-row:last-child { border-bottom: none; }
.identity-label {
    color: rgba(255,255,255,0.38);
    min-width: 110px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}
.identity-value {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}
.social-links { display: flex; gap: 12px; margin-top: 28px; }
.social-links a {
    display: flex; align-items: center; justify-content: center;
    width: 46px; height: 46px;
    border: 1px solid rgba(255,45,107,0.25);
    border-radius: 12px;
    transition: border-color var(--transition), background var(--transition), transform var(--transition);
    background: rgba(255,45,107,0.05);
}
.social-links a:hover {
    border-color: var(--accent);
    background: rgba(255,45,107,0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255,45,107,0.25);
}

footer {
    background: var(--bg);
    border-top: 2px solid rgba(255,45,107,0.1);
    padding: 24px 40px;
    display: flex; align-items: center; justify-content: space-between;
}
.footer-left { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--light); }
.footer-left strong { font-size: 16px; font-weight: 900; color: var(--accent); }

.reveal {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

#back-top {
    position: fixed; bottom: 32px; right: 32px;
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #c4006b);
    color: white;
    border: none; font-size: 20px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(255,45,107,0.5);
    opacity: 0; pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 999;
}
#back-top.show { opacity: 1; pointer-events: all; transform: translateY(0); }
#back-top:hover { box-shadow: 0 8px 30px rgba(255,45,107,0.7); transform: translateY(-2px); }

@keyframes fadeUp      { to { opacity:1; transform:translateY(0); } }
@keyframes pulse       { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.7)} }
@keyframes ringPulse   { 0%,100%{opacity:.7;transform:scale(1)} 50%{opacity:.2;transform:scale(1.06)} }
@keyframes photoReveal { to { opacity:1; transform:scale(1) translateX(0); } }
@keyframes tetoFloat {
    0%,100% { transform: translateY(0px); }
    50%     { transform: translateY(-10px); }
}
@keyframes tetoBounceIn {
    0%   { opacity:0; transform: translateY(30px) scale(0.8); }
    70%  { transform: translateY(-6px) scale(1.04); }
    100% { opacity:1; transform: translateY(0) scale(1); }
}

.loader-teto {
    width: 110px;
    height: 110px;
    object-fit: contain;
    image-rendering: pixelated;
    margin-bottom: -8px;
}

.contact-teto {
    position: absolute;
    bottom: 0;
    right: 80px;
    width: 140px;
    object-fit: contain;
    image-rendering: pixelated;
    pointer-events: none;
    opacity: 0;
    animation: tetoBounceIn 0.8s ease forwards;
}

html,
body {
    cursor: url("assets/cursors/teto-normal.cur"), auto;
}

a,
button,
.btn-primary,
.gallery-card,
.blog-card,
#lightbox-close,
#back-top,
.hero-social a,
.social-links a {
    cursor: url("assets/cursors/teto-pointer.cur"), pointer;
}

input,
textarea {
    cursor: url("assets/cursors/teto-text.cur"), text;
}

button:disabled {
    cursor: not-allowed;
}

::selection {
    background: rgba(255, 45, 107, 0.35);
    color: #fff;
}

header {
    height: 72px;
    padding: 0 44px;
    background: rgba(255, 240, 246, 0.78);
    box-shadow: 0 10px 38px rgba(74, 9, 36, 0.08);
}

.logo {
    font-size: 26px;
    text-shadow: 0 0 26px rgba(255, 45, 107, 0.12);
}

nav a {
    padding: 9px 12px;
    border-radius: 999px;
}

nav a:hover,
nav a.active {
    background: rgba(255, 45, 107, 0.075);
}

#home {
    min-height: calc(100vh - 72px);
    padding: 72px 72px 86px;
}

#home .bg {
    background:
        radial-gradient(circle at 78% 30%, rgba(255, 45, 107, 0.34) 0%, transparent 30%),
        radial-gradient(circle at 20% 82%, rgba(94, 207, 255, 0.16) 0%, transparent 34%),
        radial-gradient(circle at 55% 15%, rgba(255, 209, 102, 0.08) 0%, transparent 24%),
        linear-gradient(135deg, #1a0310 0%, #36081c 36%, #13051f 72%, #070712 100%);
}

#home::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
        radial-gradient(circle, rgba(255,255,255,0.18) 1px, transparent 1.7px);
    background-size: 72px 72px, 72px 72px, 110px 110px;
    mask-image: radial-gradient(circle at 58% 45%, black 0%, transparent 72%);
    opacity: 0.45;
    animation: gridDrift 18s linear infinite;
}

#home .bg::before {
    filter: blur(1px);
    animation: blobShift 10s ease-in-out infinite alternate;
}

#home .bg::after {
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255,255,255,0.20) 0 1px, transparent 2px),
        radial-gradient(circle at 35% 65%, rgba(255,111,163,0.35) 0 1px, transparent 2px),
        radial-gradient(circle at 72% 18%, rgba(94,207,255,0.28) 0 1px, transparent 2px),
        radial-gradient(circle at 88% 74%, rgba(255,209,102,0.22) 0 1px, transparent 2px);
    background-size: 150px 150px, 220px 220px, 180px 180px, 240px 240px;
    animation: sparkleFloat 16s linear infinite;
}

#home .overlay {
    background:
        radial-gradient(circle at 80% 52%, rgba(255, 45, 107, 0.24), transparent 34%),
        linear-gradient(105deg, rgba(18, 1, 11, 0.44) 0%, rgba(20, 3, 18, 0.14) 52%, rgba(0,0,0,0.16) 100%);
}

.hero-inner {
    max-width: 1240px;
    gap: 76px;
}

.hero-inner::before,
.hero-inner::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    z-index: -1;
}

.hero-inner::before {
    width: 210px;
    height: 210px;
    left: -60px;
    top: -44px;
    background: radial-gradient(circle, rgba(255, 111, 163, 0.22), transparent 68%);
    animation: floatSlow 7s ease-in-out infinite;
}

.hero-inner::after {
    width: 170px;
    height: 170px;
    right: 30px;
    bottom: -70px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 35px rgba(94, 207, 255, 0.12), 0 0 35px rgba(255, 45, 107, 0.10);
    animation: floatSlow 8s ease-in-out infinite reverse;
}

.hero-content {
    position: relative;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.105), rgba(255,255,255,0.025));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 28px 80px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.12);
}

.hero-content::before {
    content: 'PORTFOLIO 2026';
    position: absolute;
    right: 28px;
    top: 24px;
    font-size: 10px;
    letter-spacing: 0.28em;
    color: rgba(255, 255, 255, 0.25);
}

.hero-content h1 em {
    background: linear-gradient(90deg, #ff6fa3, #ffd1e3, #ff2d6b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
    filter: drop-shadow(0 0 24px rgba(255, 45, 107, 0.36));
}

.hero-sub {
    max-width: 560px;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
    opacity: 0;
    transform: translateY(18px);
    animation: fadeUp 0.7s 0.46s ease forwards;
}

.hero-tags span {
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.065);
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.75s 0.76s ease forwards;
}

.hero-stats div {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.hero-stats strong {
    display: block;
    font-size: 17px;
    line-height: 1.1;
    color: #fff;
}

.hero-stats span {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.52);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-photo-wrap {
    width: 430px;
    height: 430px;
}

.hero-photo-wrap::before {
    content: '';
    position: absolute;
    inset: 34px;
    border-radius: 42% 58% 54% 46% / 45% 40% 60% 55%;
    background: linear-gradient(135deg, rgba(255, 45, 107, 0.18), rgba(94, 207, 255, 0.10));
    border: 1px solid rgba(255, 255, 255, 0.08);
    animation: morphBlob 7s ease-in-out infinite;
}

.hero-photo-ring {
    inset: 34px;
    border-width: 3px;
}

.hero-photo-ring2 {
    inset: 16px;
}

.hero-photo {
    width: 322px;
    height: 322px;
    z-index: 2;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-photo-wrap:hover .hero-photo {
    transform: scale(1.035) rotate(-1deg);
    box-shadow:
        0 0 0 2px rgba(255,111,163,0.8),
        0 28px 78px rgba(0,0,0,0.72),
        0 0 95px rgba(255,45,107,0.48);
}

.orbit-chip {
    position: absolute;
    z-index: 3;
    padding: 8px 13px;
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    background: rgba(26, 5, 16, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 10px 28px rgba(0,0,0,0.22), 0 0 28px rgba(255,45,107,0.20);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: chipFloat 4s ease-in-out infinite;
}

.chip-html { top: 68px; left: 30px; color: #ffd1e3; }
.chip-css  { right: 18px; top: 160px; color: #bdefff; animation-delay: 0.55s; }
.chip-js   { left: 54px; bottom: 86px; color: #ffe8a3; animation-delay: 1.1s; }

.photo-caption {
    position: absolute;
    bottom: 38px;
    right: 36px;
    z-index: 3;
    padding: 10px 16px;
    border-radius: 16px;
    background: rgba(255, 240, 245, 0.92);
    color: #651833;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 14px 36px rgba(0,0,0,0.26);
    border: 1px solid rgba(255,45,107,0.20);
}

.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    transform: translateX(-120%);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    transition: transform 0.7s ease;
}

.btn-primary:hover::before {
    transform: translateX(120%);
}

.scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255,255,255,0.40);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.scroll-cue span {
    width: 18px;
    height: 28px;
    border: 1px solid rgba(255,255,255,0.30);
    border-radius: 999px;
    position: relative;
}

.scroll-cue span::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent2);
    transform: translateX(-50%);
    animation: scrollDot 1.4s ease-in-out infinite;
}

.gallery-card,
.blog-card,
.identity-card,
.contact-form input,
.contact-form textarea {
    box-shadow: 0 12px 34px rgba(255,45,107,0.08), 0 2px 10px rgba(0,0,0,0.035);
}

.cursor-glow {
    position: fixed;
    left: 0;
    top: 0;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    background: radial-gradient(circle, rgba(255,45,107,0.16), rgba(94,207,255,0.07) 40%, transparent 70%);
    mix-blend-mode: screen;
    opacity: 0.72;
    will-change: transform;
}

@keyframes gridDrift {
    from { background-position: 0 0, 0 0, 0 0; }
    to   { background-position: 72px 72px, 72px 72px, 110px 110px; }
}

@keyframes sparkleFloat {
    from { background-position: 0 0, 0 0, 0 0, 0 0; }
    to   { background-position: 150px 80px, -160px 180px, 140px -120px, -210px -160px; }
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-18px) rotate(5deg); }
}

@keyframes morphBlob {
    0%, 100% { border-radius: 42% 58% 54% 46% / 45% 40% 60% 55%; transform: rotate(0deg) scale(1); }
    50%      { border-radius: 58% 42% 43% 57% / 52% 58% 42% 48%; transform: rotate(7deg) scale(1.04); }
}

@keyframes chipFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

@keyframes scrollDot {
    0%   { opacity: 0; transform: translate(-50%, 0); }
    35%  { opacity: 1; }
    100% { opacity: 0; transform: translate(-50%, 11px); }
}

.hero-photo-wrap {
    width: 460px;
    height: 460px;
    padding: 34px;
    border-radius: 42px;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.15), rgba(255,255,255,0.035));
    border: 1px solid rgba(255,255,255,0.16);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow:
        0 34px 95px rgba(0,0,0,0.36),
        inset 0 1px 0 rgba(255,255,255,0.22),
        0 0 70px rgba(255,45,107,0.18);
    isolation: isolate;
    overflow: visible;
    transition: transform 0.55s ease, box-shadow 0.55s ease, border-color 0.55s ease;
}

.hero-photo-wrap:hover {
    transform: translateY(-8px);
    border-color: rgba(255,111,163,0.34);
    box-shadow:
        0 42px 115px rgba(0,0,0,0.42),
        inset 0 1px 0 rgba(255,255,255,0.28),
        0 0 95px rgba(255,45,107,0.26);
}

.hero-photo-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(125deg, rgba(255,255,255,0.20), transparent 34%, rgba(255,45,107,0.08) 68%, rgba(94,207,255,0.08)),
        radial-gradient(circle at 26% 18%, rgba(255,255,255,0.15), transparent 30%);
    pointer-events: none;
    z-index: 0;
}

.hero-photo-wrap::after {
    content: '';
    position: absolute;
    inset: 22px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 50% 46%, rgba(255,45,107,0.26), transparent 46%),
        radial-gradient(circle at 72% 24%, rgba(94,207,255,0.13), transparent 30%),
        linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.08);
    pointer-events: none;
    z-index: 0;
}

.hero-photo-ring,
.hero-photo-ring2 {
    z-index: 1;
}

.hero-photo {
    position: relative;
}

.profile-glass-note {
    display: none;
}

@media (max-width: 980px) {
    header {
        padding: 0 22px;
    }

    nav {
        gap: 8px;
    }

    nav a {
        font-size: 11px;
        padding: 8px 9px;
    }

    #home {
        padding: 58px 22px 90px;
    }

    .hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 44px;
    }

    .hero-content {
        width: 100%;
        padding: 28px 22px;
    }

    .hero-content::before {
        display: none;
    }

    .hero-tags,
    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-photo-wrap {
        width: min(380px, 92vw);
        height: min(380px, 92vw);
    }

    .hero-photo {
        width: min(292px, 72vw);
        height: min(292px, 72vw);
    }

    .orbit-chip,
    .photo-caption {
        display: none;
    }

    .gallery-grid,
    .blog-grid,
    .contact-inner {
        width: 88%;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    header {
        height: auto;
        padding: 16px 18px;
        flex-direction: column;
        gap: 12px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .cursor-glow {
        display: none;
    }
}

#home {
    padding: 92px 56px 100px;
}

.hero-inner {
    position: relative;
    max-width: 1180px;
    gap: 56px;
    padding: 42px 52px;
    border-radius: 44px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.16), rgba(255,255,255,0.045) 48%, rgba(255,45,107,0.06));
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow:
        0 36px 110px rgba(0,0,0,0.38),
        inset 0 1px 0 rgba(255,255,255,0.24),
        0 0 75px rgba(255,45,107,0.16);
    overflow: hidden;
    isolation: isolate;
}

.hero-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(circle at 16% 18%, rgba(255,255,255,0.18), transparent 32%),
        radial-gradient(circle at 78% 52%, rgba(255,45,107,0.18), transparent 34%),
        radial-gradient(circle at 88% 16%, rgba(94,207,255,0.10), transparent 26%),
        linear-gradient(120deg, rgba(255,255,255,0.14), transparent 32%, rgba(255,111,163,0.06) 72%, transparent);
    pointer-events: none;
    z-index: 0;
    animation: none;
}

.hero-inner::after {
    content: '';
    position: absolute;
    top: 40px;
    bottom: 40px;
    left: 58%;
    width: 1px;
    border-radius: 999px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.18), rgba(255,45,107,0.22), transparent);
    box-shadow: 0 0 26px rgba(255,111,163,0.28);
    pointer-events: none;
    z-index: 1;
    animation: none;
}

.hero-content,
.hero-photo-wrap {
    position: relative;
    z-index: 2;
}

.hero-content {
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
}

.hero-content::before {
    right: 0;
    top: -10px;
}

.hero-tags span,
.hero-stats div {
    background: rgba(255,255,255,0.075);
    border-color: rgba(255,255,255,0.14);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.hero-photo-wrap {
    width: 430px;
    height: 430px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    overflow: visible;
    transition: transform 0.55s ease;
}

.hero-photo-wrap:hover {
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow: none;
}

.hero-photo-wrap::before {
    content: '';
    position: absolute;
    inset: 24px;
    border-radius: 42% 58% 54% 46% / 45% 40% 60% 55%;
    background:
        radial-gradient(circle at 50% 45%, rgba(255,45,107,0.32), transparent 52%),
        linear-gradient(135deg, rgba(255,255,255,0.11), rgba(94,207,255,0.08));
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 0 80px rgba(255,45,107,0.20);
    pointer-events: none;
    z-index: 0;
    animation: morphBlob 7s ease-in-out infinite;
}

.hero-photo-wrap::after {
    content: '';
    position: absolute;
    inset: 64px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.10), transparent 62%);
    pointer-events: none;
    z-index: 1;
}

.hero-photo-ring {
    inset: 48px;
    z-index: 2;
}

.hero-photo-ring2 {
    inset: 30px;
    z-index: 2;
}

.hero-photo {
    position: relative;
    z-index: 3;
    width: 315px;
    height: 315px;
}

.orbit-chip,
.photo-caption {
    z-index: 4;
}

.chip-html { top: 78px; left: 26px; }
.chip-css  { right: 22px; top: 160px; }
.chip-js   { left: 58px; bottom: 92px; }
.photo-caption { right: 42px; bottom: 48px; }

@media (max-width: 980px) {
    #home {
        padding: 68px 22px 92px;
    }

    .hero-inner {
        width: min(100%, 720px);
        padding: 34px 24px;
        border-radius: 34px;
        gap: 36px;
    }

    .hero-inner::after {
        display: none;
    }

    .hero-content::before {
        display: none;
    }

    .hero-photo-wrap {
        width: min(360px, 86vw);
        height: min(360px, 86vw);
    }

    .hero-photo {
        width: min(280px, 68vw);
        height: min(280px, 68vw);
    }

    .hero-photo-ring { inset: 42px; }
    .hero-photo-ring2 { inset: 25px; }
}

@media (max-width: 560px) {
    .hero-inner {
        padding: 28px 18px;
        border-radius: 28px;
    }
}

html {
    scroll-padding-top: 74px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    border-bottom: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition:
        background 0.35s ease,
        backdrop-filter 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

header.scrolled {
    background: rgba(26, 5, 16, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 45, 107, 0.18);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.logo {
    color: white;
}

nav a {
    color: rgba(255, 255, 255, 0.72);
}

nav a:hover,
nav a.active {
    color: var(--accent2);
}

#home {
    padding-top: 144px;
}

@media (max-width: 980px) {
    #home {
        padding-top: 128px;
    }
}

@media (max-width: 560px) {
    header {
        padding: 0 20px;
    }

    nav {
        gap: 18px;
    }

    nav a {
        font-size: 11px;
    }

    #home {
        padding-top: 118px;
    }
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    padding: 0 44px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px) saturate(135%);
    -webkit-backdrop-filter: blur(16px) saturate(135%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    box-shadow: none;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px) saturate(145%);
    -webkit-backdrop-filter: blur(18px) saturate(145%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 10px 32px rgba(26, 5, 16, 0.16);
}

.logo {
    color: #fff;
    text-shadow: 0 0 22px rgba(255, 255, 255, 0.14);
}

nav a {
    color: rgba(255, 255, 255, 0.74);
    background: transparent;
}

nav a:hover,
nav a.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.11);
}

nav a::after {
    background: linear-gradient(90deg, var(--accent), var(--accent2));
}

#home {
    min-height: calc(100vh + 96px);
    padding-top: 148px;
    padding-bottom: 150px;
}

.scroll-cue {
    bottom: 44px;
}

@media (max-width: 980px) {
    header {
        padding: 0 22px;
    }

    #home {
        min-height: calc(100vh + 86px);
        padding-top: 132px;
        padding-bottom: 136px;
    }
}

@media (max-width: 560px) {
    header {
        height: auto;
        padding: 16px 18px;
        background: rgba(255, 255, 255, 0.09);
    }

    #home {
        min-height: calc(100vh + 110px);
        padding-top: 150px;
        padding-bottom: 135px;
    }
}

header {
    transition:
        background var(--transition),
        border-color var(--transition),
        box-shadow var(--transition),
        backdrop-filter var(--transition);
}

header.on-home {
    background: rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    box-shadow: none;
}

header.on-home .logo {
    color: #fff;
    text-shadow: 0 0 22px rgba(255, 255, 255, 0.14);
}

header.on-home nav a {
    color: rgba(255, 255, 255, 0.74);
    background: transparent;
}

header.on-home nav a:hover,
header.on-home nav a.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.11);
}

header:not(.on-home) {
    background: rgba(255, 240, 246, 0.82);
    backdrop-filter: blur(18px) saturate(145%);
    -webkit-backdrop-filter: blur(18px) saturate(145%);
    border-bottom: 1px solid rgba(255, 45, 107, 0.14);
    box-shadow: 0 10px 34px rgba(255, 45, 107, 0.10);
}

header:not(.on-home) .logo {
    color: var(--dark);
    text-shadow: none;
}

header:not(.on-home) nav a {
    color: var(--mid);
    background: transparent;
}

header:not(.on-home) nav a:hover,
header:not(.on-home) nav a.active {
    color: var(--accent);
    background: rgba(255, 45, 107, 0.08);
}

header:not(.on-home) nav a::after {
    background: linear-gradient(90deg, var(--accent), var(--accent2));
}

.hero-badge,
.hero-content h1,
.hero-sub,
.hero-tags,
.hero-actions,
.hero-stats {
    opacity: 0;
    transform: translateY(26px);
    filter: blur(8px);
    animation: none;
}

.hero-photo {
    opacity: 0;
    transform: scale(0.88) translateY(22px);
    animation: none;
}

.btn-primary,
.hero-social {
    opacity: 0;
    transform: scale(0.88) translateY(16px);
}

#home.loaded .hero-badge {
    animation: homeFadeUp 0.7s ease forwards;
    animation-delay: 0.1s;
}

#home.loaded .hero-content h1 {
    animation: homeFadeUp 0.75s ease forwards;
    animation-delay: 0.25s;
}

#home.loaded .hero-sub {
    animation: homeFadeUp 0.75s ease forwards;
    animation-delay: 0.45s;
}

#home.loaded .hero-tags {
    animation: homeFadeUp 0.75s ease forwards;
    animation-delay: 0.65s;
}

#home.loaded .hero-actions {
    animation: homeFadeUp 0.75s ease forwards;
    animation-delay: 0.85s;
}

#home.loaded .hero-stats {
    animation: homeFadeUp 0.75s ease forwards;
    animation-delay: 1.05s;
}

#home.loaded .hero-photo {
    animation: homePhotoPop 0.95s cubic-bezier(.34,1.56,.64,1) forwards;
    animation-delay: 0.55s;
}

#home.loaded .btn-primary {
    animation: homeButtonPop 0.65s cubic-bezier(.34,1.56,.64,1) forwards;
    animation-delay: 1.05s;
}

#home.loaded .hero-social {
    animation: homeButtonPop 0.65s cubic-bezier(.34,1.56,.64,1) forwards;
    animation-delay: 1.18s;
}

@keyframes homeFadeUp {
    from {
        opacity: 0;
        transform: translateY(26px);
        filter: blur(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes homePhotoPop {
    0% {
        opacity: 0;
        transform: scale(0.88) translateY(22px);
        filter: blur(10px);
    }
    70% {
        opacity: 1;
        transform: scale(1.04) translateY(-4px);
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0);
    }
}

@keyframes homeButtonPop {
    0% {
        opacity: 0;
        transform: scale(0.88) translateY(16px);
    }
    70% {
        opacity: 1;
        transform: scale(1.06) translateY(-3px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}
