/* --- Variables --- */
:root {
    --brand-dark: #131313;
    --brand-surface: #1c1b1b;
    --brand-pink: #ffb1c4;
    --brand-pink-glow: rgba(255, 177, 196, 0.4);
    --brand-cyan: #00f1fe;
    --brand-cyan-glow: rgba(0, 241, 254, 0.4);
    --text-main: #e5e2e1;
    --text-muted: rgba(229, 226, 225, 0.6);
    --border-color: rgba(172, 135, 143, 0.2);
    
    --font-sans: 'Plus Jakarta Sans', sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
}

/* --- Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--brand-dark);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.text-pink { color: var(--brand-pink); }
.text-gradient {
    background: linear-gradient(90deg, var(--brand-pink), #ff4a8d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(19, 19, 19, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.navbar-inner {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
}

.nav-links a:hover {
    color: var(--brand-pink);
}

.nav-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--brand-pink), var(--brand-cyan));
}

@media (max-width: 768px) {
    .nav-links { display: none; }
}

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

.bg-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    filter: blur(120px);
    border-radius: 50%;
    opacity: 0.15;
    z-index: 1;
}

.bg-glow-pink { top: 20%; left: -100px; background: var(--brand-pink); }
.bg-glow-cyan { bottom: 20%; right: -100px; background: var(--brand-cyan); }

.hero-inner {
    position: relative;
    z-index: 10;
    text-align: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-family: var(--font-display);
    font-size: 10px;
    letter-spacing: 2px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.8);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--brand-pink);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--brand-pink);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 8vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* --- Buttons --- */
.btn {
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    border: none;
    font-family: var(--font-sans);
}

.btn-pink {
    background: var(--brand-pink);
    color: #000;
    box-shadow: 0 0 20px rgba(255, 177, 196, 0.2);
}

.btn-pink:hover {
    transform: translateY(-2px) scale(1.05);
}

.btn-outline-cyan {
    background: transparent;
    border: 2px solid var(--brand-cyan);
    color: var(--brand-cyan);
    box-shadow: 0 0 20px rgba(0, 241, 254, 0.1);
}

.btn-outline-cyan:hover {
    background: rgba(0, 241, 254, 0.1);
}

/* --- Sections Shared --- */
.section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 64px;
}

.section-badge {
    color: var(--brand-pink);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    margin-top: 8px;
}

/* --- Grid System --- */
.grid {
    display: grid;
    gap: 32px;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

/* --- Glass Cards --- */
.glass-card {
    background: rgba(28, 27, 27, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: 0.5s cubic-bezier(0.2, 0, 0, 1);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 177, 196, 0.5);
}

.icon-box {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-pink);
    margin-bottom: 24px;
}

.icon-cyan { color: var(--brand-cyan); }

.service-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.points li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 8px;
}

.points li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--brand-pink);
    border-radius: 50%;
}

/* --- Portfolio --- */
.portfolio-item {
    cursor: pointer;
}

.portfolio-img-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    background: #222;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
}

.portfolio-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.7s;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(19, 19, 19, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.portfolio-overlay i {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 16px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.portfolio-item:hover img { transform: scale(1.1); }
.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-item h3 { font-size: 24px; margin-bottom: 8px; }
.portfolio-item p { font-size: 14px; color: var(--text-muted); }

/* --- Profile Section --- */
.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.profile-sticky {
    position: sticky;
    top: 100px;
}

.profile-img-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: #000;
}

.profile-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) brightness(0.9);
    transition: 0.7s;
}

.profile-img-card:hover img { filter: grayscale(0) brightness(1); }

.profile-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 32px;
    background: linear-gradient(to top, var(--brand-dark), transparent);
}

.profile-name { font-family: var(--font-display); font-size: 32px; font-weight: 700; text-transform: uppercase; }
.profile-role { color: var(--brand-pink); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; }

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.stat-item { padding: 24px; text-align: center; }
.stat-num { font-size: 32px; font-weight: 700; font-family: var(--font-display); }
.stat-label { font-size: 10px; color: rgba(255, 255, 255, 0.4); text-transform: uppercase; letter-spacing: 2px; }

.story-title { font-size: 48px; font-weight: 700; font-family: var(--font-display); line-height: 1.1; margin-bottom: 48px; }

.story-steps { display: flex; flex-direction: column; gap: 48px; }
.story-step { display: flex; gap: 24px; }
.step-num { color: var(--brand-pink); font-family: var(--font-display); font-weight: 700; font-size: 18px; }
.story-step h4 { font-size: 20px; margin-bottom: 12px; }
.story-step p { font-size: 14px; color: rgba(255, 255, 255, 0.7); }

@media (max-width: 992px) {
    .profile-grid { grid-template-columns: 1fr; }
    .profile-sticky { position: static; }
}

/* --- Timeline --- */
.timeline {
    position: relative;
    padding-left: 48px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.timeline-item {
    position: relative;
    margin-bottom: 32px;
}

.timeline-dot {
    position: absolute;
    left: -48px;
    top: 8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--brand-dark);
    border: 2px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
}

.timeline-year {
    color: var(--brand-pink);
    font-weight: 700;
    font-family: var(--font-display);
    margin-bottom: 8px;
}

.timeline-item.active .timeline-dot {
    border-color: var(--brand-pink);
    box-shadow: 0 0 10px var(--brand-pink);
}

.timeline-item.active .timeline-card {
    border-color: rgba(255, 177, 196, 0.5);
    box-shadow: 0 0 20px rgba(255, 177, 196, 0.1);
    transform: scale(1.02);
}

.timeline-card h4 { margin-bottom: 8px; }
.timeline-card p { font-size: 14px; color: var(--text-muted); }

/* --- Contact Section --- */
.contact-section {
    background: linear-gradient(to top, var(--brand-dark), rgba(28, 27, 27, 0.4));
}

.section-badge-cyan {
    color: var(--brand-cyan);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-card-wrapper {
    margin-top: 48px;
    display: flex;
    justify-content: center;
}

.contact-card {
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px;
}

.qr-placeholder {
    width: 200px;
    height: 200px;
    background: #fff;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 32px;
}

.qr-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.btn-line {
    background: #06C755;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    border-radius: 100px;
}

.btn-line:hover { transform: scale(1.05); }

/* --- Footer --- */
.footer {
    padding: 80px 0 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 32px;
    letter-spacing: 2px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
}

.footer-links a:hover { color: var(--brand-pink); }

.copyright {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 2px;
}

/* --- Animations --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s cubic-bezier(0.2, 0, 0, 1);
}

.animate-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-in {
    animation: fadeIn 1.2s cubic-bezier(0.2, 0, 0, 1) forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
