
:root {
    --accent: #0056D2;
    --dark: #0f172a;
    --slate-900: #0f172a;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --light: #f8fafc;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--slate-900);
    background: var(--white);
    line-height: 1.5;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 2rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--slate-100);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 900;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.logo-box {
    background: var(--accent);
    color: white;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.8rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 3rem;
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 0.2em;
    color: var(--slate-500);
}

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

/* Buttons */
.btn-primary-sm {
    background: var(--dark);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    letter-spacing: 0.1em;
}

.btn-primary-sm:hover { background: var(--accent); }

.btn-dark {
    background: var(--dark);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.btn-dark:hover { background: var(--accent); transform: translateY(-2px); }

.btn-text {
    font-weight: 700;
    color: var(--slate-500);
}

.btn-text:hover { color: var(--accent); }

.btn-primary {
    background: var(--accent);
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 12px;
    font-weight: 700;
}

.btn-outline {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 12px;
    font-weight: 700;
}

/* Sections */
.section { padding: 8rem 0; }
.bg-light { background: var(--light); }
.text-center { text-align: center; }

.label {
    display: block;
    color: var(--accent);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: 0.65rem;
    margin-bottom: 1rem;
}

.h2 {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 3rem;
}

.accent { color: var(--accent); }
.img-gray { filter: grayscale(1); transition: var(--transition); }
.img-gray:hover { filter: grayscale(0); }

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 5rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    z-index: -1;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.blob-1 { top: 10%; right: 10%; width: 500px; height: 500px; background: var(--accent); }
.blob-2 { bottom: 10%; left: 10%; width: 400px; height: 400px; background: #38bdf8; }

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 0.85;
    font-weight: 900;
    letter-spacing: -0.05em;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--slate-500);
    max-width: 500px;
    font-weight: 300;
    margin-bottom: 3rem;
}

.highlight {
    color: var(--slate-900);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(0,86,210,0.3);
    text-underline-offset: 8px;
}

.hero-btns { display: flex; align-items: center; gap: 2rem; }

.hero-image-card {
    aspect-ratio: 4/5;
    background: var(--light);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--slate-100);
    box-shadow: 0 40px 100px rgba(0,0,0,0.05);
}

.hero-image-card img {width: 100%;/* height: 100%; */object-cover: cover;}

.hero-floating-text {
    position: absolute;
    bottom: 10%;
    left: 5%;
    font-size: 8vw;
    font-weight: 900;
    color: var(--slate-100);
    opacity: 0.3;
    pointer-events: none;
    z-index: -1;
    white-space: nowrap;
}

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 6rem; }
.about-sticky { position: sticky; top: 8rem; }
.stat-title { font-size: 3rem; font-weight: 900; color: var(--accent); letter-spacing: -2px; }
.stat-sub { text-transform: uppercase; font-size: 0.7rem; letter-spacing: 0.2em; color: var(--slate-400); font-weight: 600; margin-bottom: 2rem; }
.about-img-frame { aspect-ratio: 1; border-radius: 24px; overflow: hidden; border: 1px solid var(--slate-100); }
.about-img-frame img { width: 100%; height: 100%; object-fit: cover; }

.section-lead { font-size: 2.5rem; font-weight: 300; line-height: 1.2; margin-bottom: 3rem; }
.about-text-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; color: var(--slate-500); font-size: 1.1rem; font-weight: 300; }

/* Timeline */
.timeline { display: flex; flex-direction: column; gap: 6rem; }
.timeline-item { display: grid; grid-template-columns: 1fr 3fr; gap: 4rem; }
.timeline-meta { position: sticky; top: 8rem; align-self: start; }
.period-badge { background: #eff6ff; color: var(--accent); padding: 0.25rem 0.75rem; border-radius: 4px; font-size: 0.65rem; font-weight: 900; text-transform: uppercase; }
.location-text { font-size: 0.7rem; color: var(--slate-400); text-transform: uppercase; margin-top: 0.5rem; font-weight: 700; }

.timeline-content { border-left: 1px solid var(--slate-200); padding-left: 3rem; position: relative; }
.timeline-dot { position: absolute; left: -5px; top: 10px; width: 10px; height: 10px; background: var(--accent); border-radius: 50%; border: 4px solid var(--white); }
.timeline-role { font-size: 2rem; font-weight: 900; margin-bottom: 0.5rem; }
.timeline-company { font-size: 1.25rem; color: var(--slate-400); font-weight: 500; margin-bottom: 2rem; }
.highlights-list { display: flex; flex-direction: column; gap: 1.5rem; }
.highlight-item { display: flex; gap: 1rem; color: var(--slate-500); font-size: 1.1rem; font-weight: 300; }
.highlight-plus { color: #93c5fd; font-weight: 900; font-size: 1.25rem; line-height: 1; }

/* Consulting */
.consulting-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; }
.services-list { display: flex; flex-direction: column; gap: 2rem; }
.service-card { padding: 2.5rem; border: 1px solid var(--slate-100); border-radius: 20px; transition: var(--transition); }
.service-card:hover { border-color: var(--accent); box-shadow: 0 20px 40px rgba(0,86,210,0.05); }
.service-card h4 { font-size: 1.5rem; font-weight: 900; margin-bottom: 1rem; }
.service-card p { color: var(--slate-500); font-size: 1.1rem; font-weight: 300; }

/* Skills */
.skills-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8rem; }
.skills-stack { display: flex; flex-direction: column; gap: 3rem; }
.skill-group-title { font-size: 0.7rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.2em; color: var(--slate-400); border-bottom: 1px solid var(--slate-100); padding-bottom: 0.5rem; margin-bottom: 1.5rem; }
.skill-tags { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.skill-tag { border: 1px solid var(--slate-200); padding: 0.75rem 1.5rem; border-radius: 12px; font-size: 0.85rem; font-weight: 700; transition: var(--transition); }
.skill-tag:hover { border-color: var(--accent); color: var(--accent); }

.education-stack { display: flex; flex-direction: column; gap: 2rem; margin-bottom: 4rem; }
.edu-item { padding: 2rem; border: 1px solid var(--slate-100); border-radius: 16px; }
.edu-degree { font-size: 1.5rem; font-weight: 900; margin-bottom: 0.5rem; }
.edu-inst { color: var(--slate-500); font-size: 1.1rem; font-weight: 300; margin-bottom: 1rem; }

.quote-card { background: var(--slate-900); color: white; padding: 2.5rem; border-radius: 24px; position: relative; }
.quote { font-style: italic; font-size: 1.5rem; font-weight: 300; margin-bottom: 1.5rem; opacity: 0.9; }
.quote-bar { width: 40px; height: 4px; background: var(--accent); border-radius: 2px; margin-bottom: 1rem; }
.quote-author { font-size: 0.65rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.3em; color: #38bdf8; }

/* Adventure */
.adventure-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; }
.adventure-summary { font-size: 1.25rem; font-weight: 300; font-style: italic; border-left: 4px solid var(--accent); padding-left: 1.5rem; margin-bottom: 2rem; color: var(--slate-500); }
.adventure-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.adventure-tag { background: var(--white); border: 1px solid var(--slate-200); padding: 0.75rem 1.25rem; border-radius: 8px; display: flex; gap: 0.5rem; font-size: 0.8rem; font-weight: 700; }
.adventure-photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.photo-card { position: relative; aspect-ratio: 3/4; border-radius: 16px; overflow: hidden; border: 4px solid white; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: var(--transition); }
.photo-card:hover { transform: scale(1.05); z-index: 2; }
.photo-card img { width: 100%; height: 100%; object-fit: cover; }
.photo-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,23,42,0.8), transparent); opacity: 0; transition: var(--transition); display: flex; align-items: flex-end; padding: 1rem; }
.photo-card:hover .photo-overlay { opacity: 1; }
.photo-label { color: white; font-size: 0.65rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.1em; }

/* Footer */
.cta-section { background: #000814; color: white; padding: 8rem 0; }
.h1-light { font-size: 4rem; font-weight: 900; letter-spacing: -2px; margin-bottom: 2rem; }
.p-light { font-size: 1.25rem; opacity: 0.6; margin-bottom: 3rem; font-weight: 300; }
.cta-btns { display: flex; justify-content: center; gap: 1.5rem; }

.footer { padding: 6rem 0 3rem; border-top: 1px solid var(--slate-100); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.footer-links-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.footer-links-grid ul { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.footer-links-grid a { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.footer-links-grid a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--slate-100); padding-top: 2rem; display: flex; justify-content: space-between; font-size: 0.65rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.2em; color: var(--slate-400); }
.ready-tag { color: rgba(0,86,210,0.5); }
.lowercase { text-transform: lowercase !important; }

/* Responsive */
@media (max-width: 1024px) {
    .hero-container, .about-grid, .timeline-item, .consulting-grid, .skills-grid, .adventure-grid {
        grid-template-columns: 1fr;
    }
    .about-text-cols { grid-template-columns: 1fr; }
    .hero-image-wrapper { order: -1; max-width: 400px; margin: 0 auto; }
    .nav-links { display: none; }
    .h2 { font-size: 2.5rem; }
}
