@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

:root {
    --bg-main: #020c1b;
    --bg-secondary: #0a192f;
    --text-main: #ccd6f6;
    --text-muted: #8892b0;
    --primary: #64ffda; /* Techy teal, gives a professional flair */
    --gold: #d4af37; /* Trustworthy gold highlight for accounting */
    --card-bg: rgba(17, 34, 64, 0.7);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(2, 12, 27, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 2rem;
    background: radial-gradient(circle at top right, rgba(10, 25, 47, 1) 0%, rgba(2, 12, 27, 1) 100%);
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.subtitle {
    color: var(--primary);
    font-family: 'Courier New', monospace;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

h1 {
    font-size: clamp(40px, 6vw, 70px);
    line-height: 1.2;
    color: #e6f1ff;
    margin-bottom: 20px;
}

.highlight {
    color: var(--gold);
}

.description {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 50px;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    color: var(--primary);
    background: transparent;
    border: 1px solid var(--primary);
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn:hover {
    background: rgba(100, 255, 218, 0.1);
    transform: translateY(-3px);
}

/* Sections */
.section {
    padding: 120px 2rem;
}

.bg-light {
    background-color: var(--bg-secondary);
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    color: #e6f1ff;
}

.section-title::after {
    content: "";
    display: block;
    height: 1px;
    width: 200px;
    background: rgba(100, 255, 218, 0.2);
    margin-left: 20px;
}

/* Glassmorphism Cards */
.glass {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 2.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.glass:hover {
    transform: translateY(-7px);
    box-shadow: 0 10px 30px -15px rgba(2, 12, 27, 0.8);
    border-color: rgba(100, 255, 218, 0.2);
}

.about-card p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

/* Grid & Layouts */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 768px) {
    .split-layout {
        grid-template-columns: 1fr;
    }
    .nav-links {
        display: none;
    }
    .section-title::after {
        width: 100px;
    }
}

.icon {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.card h3 {
    color: #e6f1ff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.card p {
    color: var(--text-muted);
}

.trait-card ul {
    list-style: none;
    margin-top: 1rem;
}

.trait-card li {
    margin-bottom: 1.2rem;
    position: relative;
    padding-left: 25px;
    color: var(--text-muted);
}

.trait-card li::before {
    content: "▹";
    position: absolute;
    left: 0;
    color: var(--primary);
}

.trait-card.strength h3 {
    color: var(--primary);
}

.trait-card.weakness h3 {
    color: var(--gold);
}

.tags {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.tag {
    padding: 8px 18px;
    background: rgba(100, 255, 218, 0.1);
    color: var(--primary);
    border-radius: 30px;
    font-size: 0.95rem;
    border: 1px solid rgba(100, 255, 218, 0.2);
}

footer {
    padding: 30px 20px;
    text-align: center;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--text-muted);
    background-color: var(--bg-main);
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    animation: fadeIn 1.2s ease-out forwards;
}

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

/* Editable Fields */
.editable {
    display: inline-block;
    min-width: 80px;
    padding: 0.2rem 0.6rem;
    background: rgba(100, 255, 218, 0.05);
    border: 1px dashed var(--primary);
    border-radius: 6px;
    color: var(--primary);
    outline: none;
    transition: all 0.3s ease;
    cursor: text;
    margin: 0 4px;
}

.editable:focus {
    background: rgba(100, 255, 218, 0.15);
    border: 1px solid var(--primary);
    box-shadow: 0 0 10px rgba(100, 255, 218, 0.3);
}

h1 .editable {
    color: var(--gold);
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

h1 .editable:focus {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
}
