:root {

    --bg: #09090b;
    --bg-secondary: #111114;

    --card: rgba(255, 255, 255, 0.04);
    --card-border: rgba(255, 255, 255, 0.08);

    --text: #f4f4f5;
    --text-secondary: #a1a1aa;

    --accent: #8b5cf6;
    --accent-hover: #7c3aed;

    --shadow:
        0 10px 40px rgba(0, 0, 0, 0.35);

    --radius: 28px;
}

html {
    scroll-behavior: smooth;
}

body {

    background:
        radial-gradient(
            circle at top left,
            rgba(139, 92, 246, 0.12),
            transparent 30%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(59, 130, 246, 0.08),
            transparent 35%
        ),
        var(--bg);

    color: var(--text);

    font-family:
        Inter,
        system-ui,
        sans-serif;

    overflow-x: hidden;
}

/* HEADER */

.site-header {

    position: sticky;
    top: 0;
    z-index: 1000;

    backdrop-filter: blur(18px);

    background:
        rgba(9, 9, 11, 0.7);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {

    height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {

    color: var(--text);

    text-decoration: none;

    font-size: 24px;
    font-weight: 800;

    letter-spacing: -1px;
}

.logo:hover {
    color: white;
}

.header-nav {

    display: flex;
    align-items: center;
    gap: 28px;
}

.header-nav a {

    color: var(--text-secondary);

    text-decoration: none;

    transition: .2s ease;
}

.header-nav a:hover {
    color: white;
}

/* HERO */

.hero-section {

    position: relative;

    padding:
        160px 0
        120px;
}

.hero-layout {

    display: grid;

    grid-template-columns:
        1fr 420px;

    gap: 80px;

    align-items: center;
}

.hero-label {

    display: inline-flex;

    align-items: center;

    padding:
        10px 18px;

    margin-bottom: 32px;

    border-radius: 999px;

    background:
        rgba(139, 92, 246, 0.12);

    border:
        1px solid rgba(139, 92, 246, 0.25);

    color: #c4b5fd;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.hero-title {

    font-size: 88px;
    font-weight: 900;

    line-height: .95;

    letter-spacing: -5px;

    margin-bottom: 24px;
}

.hero-subtitle {

    font-size: 28px;
    font-weight: 700;

    color: #d4d4d8;

    margin-bottom: 32px;
}

.hero-text {

    font-size: 22px;

    line-height: 1.8;

    color: var(--text);

    max-width: 760px;

    margin-bottom: 24px;
}

.hero-text-secondary {

    font-size: 18px;

    line-height: 1.9;

    color: var(--text-secondary);

    max-width: 760px;

    margin-bottom: 42px;
}

.hero-buttons {

    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

/* BUTTONS */

.btn {

    border-radius: 16px !important;

    padding:
        14px 24px !important;

    font-weight: 600 !important;

    transition: .2s ease !important;
}

.btn-dark {

    background: var(--accent) !important;
    border: none !important;
}

.btn-dark:hover {

    background:
        var(--accent-hover) !important;

    transform: translateY(-2px);
}

.btn-outline-dark {

    border:
        1px solid rgba(255,255,255,.12) !important;

    background:
        rgba(255,255,255,.03) !important;

    color: white !important;
}

.btn-outline-dark:hover {

    background:
        rgba(255,255,255,.06) !important;

    transform: translateY(-2px);
}

/* TERMINAL CARD */

.terminal-card {

    border-radius: var(--radius);

    overflow: hidden;

    background:
        rgba(255,255,255,.03);

    border:
        1px solid var(--card-border);

    box-shadow: var(--shadow);
}

.terminal-header {

    height: 54px;

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 0 22px;

    border-bottom:
        1px solid rgba(255,255,255,.05);

    background:
        rgba(255,255,255,.02);
}

.terminal-header span {

    width: 12px;
    height: 12px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.18);
}

.terminal-body {

    padding: 28px;

    font-family:
        Consolas,
        monospace;
}

.terminal-line {

    color: #d4d4d8;

    margin-bottom: 16px;

    font-size: 15px;
}

/* SECTIONS */

.experience-section,
.timeline-section {

    padding:
        120px 0;
}

.section-header {

    margin-bottom: 56px;
}

.section-label {

    color: #71717a;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 14px;
}

.section-title {

    font-size: 54px;
    font-weight: 900;

    letter-spacing: -2px;
}

/* EXPERIENCE */

.experience-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 28px;
}

.experience-card {

    padding: 38px;

    border-radius: var(--radius);

    background: var(--card);

    border:
        1px solid var(--card-border);

    transition: .2s ease;

    box-shadow: var(--shadow);
}

.experience-card:hover {

    transform:
        translateY(-6px);

    border-color:
        rgba(139, 92, 246, .25);
}

.experience-number {

    color: var(--accent);

    font-size: 14px;
    font-weight: 700;

    margin-bottom: 22px;
}

.experience-card h3 {

    font-size: 28px;
    font-weight: 800;

    margin-bottom: 18px;
}

.experience-card p {

    color: var(--text-secondary);

    line-height: 1.9;
}

/* TIMELINE */

.timeline {

    display: flex;
    flex-direction: column;
    gap: 32px;
}

.timeline-item {

    display: grid;

    grid-template-columns:
        180px 1fr;

    gap: 32px;

    padding: 36px;

    border-radius: var(--radius);

    background: var(--card);

    border:
        1px solid var(--card-border);

    box-shadow: var(--shadow);
}

.timeline-date {

    color: var(--accent);

    font-weight: 700;

    font-size: 15px;
}

.timeline-content h3 {

    font-size: 30px;
    font-weight: 800;

    margin-bottom: 10px;
}

.timeline-company {

    color: #d4d4d8;

    margin-bottom: 18px;

    font-weight: 600;
}

.timeline-content p {

    color: var(--text-secondary);

    line-height: 1.9;
}

/* FOOTER */

.site-footer {

    margin-top: 120px;

    border-top:
        1px solid rgba(255,255,255,.05);

    background:
        rgba(255,255,255,.015);
}

.footer-inner {

    min-height: 90px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 24px;

    color: var(--text-secondary);
}

.footer-links a {

    color: var(--text-secondary);

    text-decoration: none;
}

.footer-links a:hover {
    color: white;
}

/* SCROLLBAR */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #09090b;
}

::-webkit-scrollbar-thumb {

    background:
        rgba(255,255,255,.12);

    border-radius: 999px;
}

/* MOBILE */

@media (max-width: 1100px) {

    .hero-layout {

        grid-template-columns: 1fr;
    }

    .hero-right {

        max-width: 520px;
    }

}

@media (max-width: 768px) {

    .hero-section {

        padding:
            120px 0
            80px;
    }

    .hero-title {

        font-size: 56px;

        letter-spacing: -3px;
    }

    .hero-subtitle {

        font-size: 22px;
    }

    .hero-text {

        font-size: 18px;
    }

    .hero-text-secondary {

        font-size: 16px;
    }

    .section-title {

        font-size: 38px;
    }

    .experience-grid {

        grid-template-columns: 1fr;
    }

    .timeline-item {

        grid-template-columns: 1fr;
    }

    .header-nav {

        gap: 16px;

        font-size: 14px;
    }

    .footer-inner {

        flex-direction: column;

        justify-content: center;
    }

}

.header-nav .dropdown-menu {
    background: #18181b;
    border: 1px solid #27272a;
}

.header-nav .dropdown-item {
    color: #e4e4e7;
}

.header-nav .dropdown-item:hover {
    background: #27272a;
    color: #fff;
}
