/* Minification failed. Returning unminified contents.
(51,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(52,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(53,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(54,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(55,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(56,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(57,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(62,22): run-time error CSS1039: Token not allowed after unary operator: '-bg-main'
(63,17): run-time error CSS1039: Token not allowed after unary operator: '-text-primary'
(69,21): run-time error CSS1039: Token not allowed after unary operator: '-max-width'
(83,22): run-time error CSS1039: Token not allowed after unary operator: '-bg-alt'
(88,35): run-time error CSS1039: Token not allowed after unary operator: '-border'
(110,17): run-time error CSS1039: Token not allowed after unary operator: '-text-secondary'
(114,17): run-time error CSS1039: Token not allowed after unary operator: '-text-secondary'
(120,21): run-time error CSS1039: Token not allowed after unary operator: '-accent'
(142,17): run-time error CSS1039: Token not allowed after unary operator: '-text-secondary'
(184,28): run-time error CSS1039: Token not allowed after unary operator: '-border'
(194,21): run-time error CSS1039: Token not allowed after unary operator: '-text-secondary'
(199,17): run-time error CSS1039: Token not allowed after unary operator: '-accent'
(210,32): run-time error CSS1039: Token not allowed after unary operator: '-border'
(213,17): run-time error CSS1039: Token not allowed after unary operator: '-text-secondary'
 */
/*body {
    padding-top: 50px;
    padding-bottom: 20px;
}*/

/* Set padding to keep content from hitting the edges */
/*.body-content {
    padding-left: 15px;
    padding-right: 15px;
}*/

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
/*.dl-horizontal dt {
    white-space: normal;
}*/

/* Set width on the form input elements since they're 100% wide by default */
/*input,
select,
textarea {
    max-width: 280px;
}

.alignleft {
    text-align: left;
    float: left;
    margin-right: 15px;
}

p {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
    margin: 0 0 10px;
}*/

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* DARK MODE TOKENS */
:root {
    --bg-main: #0b0f14;
    --bg-alt: #111827;
    --text-primary: #e5e7eb;
    --text-secondary: #9ca3af;
    --accent: #3b82f6;
    --border: #1f2933;
    --max-width: 1100px;
}

body {
    font-family: "Inter", system-ui, sans-serif;
    background: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
}

/* LAYOUT */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

    .container.narrow {
        max-width: 760px;
    }

.section {
    padding: 5rem 0;
}

.section-alt {
    background: var(--bg-alt);
}

/* HEADER */
.site-header {
    border-bottom: 1px solid var(--border);
    background: rgba(11,15,20,0.85);
    backdrop-filter: blur(6px);
    position: sticky;
    top: 0;
    z-index: 20;
}

.header-content {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    font-size: 1.25rem;
    font-weight: 600;
}

.tagline {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.nav a {
    color: var(--text-secondary);
    text-decoration: none;
    margin-left: 1.5rem;
}

    .nav a:hover {
        color: var(--accent);
    }

/* HERO */
.hero {
    padding: 6rem 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.hero-text p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 520px;
}

/* PORTRAIT */
.hero-portrait {
    position: relative;
    width: 100%;
    max-width: 380px;
    margin-left: auto;
}

    .hero-portrait img {
        width: 100%;
        display: block;
        border-radius: 24px;
        filter: grayscale(10%) contrast(1.05);
        mask-image: radial-gradient(circle at center, black 60%, transparent 100%);
        -webkit-mask-image: radial-gradient(circle at center, black 60%, transparent 100%);
    }

.portrait-glow {
    position: absolute;
    inset: -15%;
    background: radial-gradient(circle at center, rgba(59,130,246,0.18), transparent 60%);
    z-index: -1;
}

/* CONTENT */
.section h3 {
    font-size: 1.7rem;
    margin-bottom: 1.25rem;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.card {
    background: #0f1623;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 2rem;
}

    .card h4 {
        margin-bottom: 0.75rem;
    }

    .card p {
        color: var(--text-secondary);
    }

/* CONTACT */
.email-link {
    color: var(--accent);
    font-weight: 500;
    text-decoration: none;
}

    .email-link:hover {
        text-decoration: underline;
    }

/* FOOTER */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 2rem 0;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* RESPONSIVE */
@media (max-width: 860px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-portrait {
        margin: 3rem auto 0;
    }
}

