:root {
    --bg-color: #F7F7F7;
    --text-main: #0A0A0A;
    --text-muted: #666666;
    --accent: #111111;
    --border: rgba(0, 0, 0, 0.08);
    --nav-height: 80px;
}

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

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Vertical scroll by default in browser */
    overflow-y: auto;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, .syncopate {
    font-family: 'Syncopate', sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
}

h2 {
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-transform: none;
    font-family: 'Manrope', sans-serif;
}

p {
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    line-height: 1.6;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 1.5rem;
}

ul, ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 300;
}

li {
    margin-bottom: 0.5rem;
}

b, strong {
    color: var(--text-main);
    font-weight: 600;
}

a, button {
    text-decoration: none;
    color: var(--text-main);
    background: none;
    border: none;
    outline: none;
}

/* Navigation - matching existing */
nav {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: var(--nav-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4vw;
    z-index: 100;
    background: transparent;
    color: var(--text-main);
}

nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150%;
    background: linear-gradient(to bottom, rgba(247, 247, 247, 0.95) 0%, rgba(247, 247, 247, 0.6) 60%, rgba(247, 247, 247, 0) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    z-index: -1;
    pointer-events: none;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 2vw;
}

.nav-logo {
    height: 36px;
    width: auto;
}

.logo {
    font-family: 'Syncopate', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.5vw;
    margin: 0;
    padding: 0;
}
.nav-link {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: inherit;
    transition: opacity 0.3s ease;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
}
.nav-link:hover {
    opacity: 0.6;
}
.nav-link-cta {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--bg-color);
    background: var(--text-main);
    padding: 0.6rem 1.6rem;
    border: 1px solid var(--text-main);
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}
.nav-link-cta:hover {
    background: transparent;
    color: var(--text-main);
}

/* Hamburger (Mobile Menu) */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}
.hamburger span {
    width: 30px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

/* Page Content Wrapper */
.page-wrapper {
    padding-top: calc(var(--nav-height) + 8vh);
    padding-bottom: 8vh;
    min-height: calc(100vh - 100px); /* rough footer estimate */
    display: flex;
    justify-content: center;
}

.content-block {
    width: 80%;
    max-width: 1200px;
    background: #fff;
    padding: 4rem;
    border: 1px solid var(--border);
    border-radius: 4px;
}

/* Footer - matching existing */
.site-footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 4vw;
    background: var(--text-main);
    color: #fff;
    gap: 2rem;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    max-width: 500px;
}
.footer-logo {
    height: 40px;
    width: auto;
}
.footer-slogan {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
    font-weight: 300;
    margin: 0;
}
.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-linkedin {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}
.footer-linkedin:hover {
    color: #fff;
}
.footer-legal {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.footer-link {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 300;
}
.footer-link:hover {
    color: #fff;
}
.footer-copy p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    margin: 0;
}

/* Mobile responsive */
@media (max-width: 1024px) {
    html,
    body {
        overflow-x: hidden !important;
        width: 100%;
    }

    .content-block {
        width: 95%;
        padding: 1.5rem;
    }

    h1 {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
        word-break: break-word;
    }

    h2 {
        font-size: clamp(1.2rem, 4vw, 1.8rem);
        margin-top: 2rem;
    }

    h3 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
    }

    nav {
        background: transparent;
        color: var(--text-main);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding: 0 5vw;
        height: 70px;
    }

    .nav-left {
        overflow: hidden;
    }

    .nav-logo {
        height: 35px;
    }

    .logo {
        font-size: 1rem;
    }

    .hamburger { display: flex; z-index: 102; }
    .hamburger span { background: var(--text-main); }
    .hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

    .nav-menu {
        position: fixed;
        top: 0; left: 0;
        width: 100vw; height: 100vh;
        background: var(--bg-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 100;
        padding-top: var(--nav-height);
        visibility: hidden;
    }
    .nav-menu.active {
        transform: translateX(0);
        visibility: visible;
    }

    .nav-link {
        font-size: 1.3rem;
    }

    .nav-link-cta {
        font-size: 1.1rem;
        padding: 0.8rem 2rem;
    }

    .page-wrapper {
        padding-top: calc(70px + 4vh);
        padding-bottom: 4vh;
    }
    
    .site-footer { 
        flex-direction: column;
        text-align: center;
        padding: 2rem 6vw;
        gap: 1.5rem;
    }
    .footer-brand {
        flex-direction: column;
        align-items: center;
        max-width: 100%;
    }
    .footer-slogan {
        text-align: center;
        font-size: 0.8rem;
    }
    .footer-legal {
        flex-direction: column;
        gap: 0.8rem;
    }
    .footer-link {
        font-size: 0.75rem;
    }
    .footer-copy p {
        font-size: 0.7rem;
    }
}

@media (max-width: 374px) {
    .content-block {
        padding: 1.2rem;
    }

    h1 {
        font-size: 1.3rem !important;
    }

    nav {
        height: 60px;
    }

    .nav-logo {
        height: 30px;
    }

    .logo {
        font-size: 0.85rem;
    }
}
