:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f4f7f6;
    --accent-vibrant: #7000ff; /* Electric Purple */
    --accent-highlight: #dfff11; /* Acid Lime */
    --text-main: #1a1a1a;
    --text-muted: #555555;
    --header-font: 'Space Grotesk', sans-serif;
    --body-font: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: var(--body-font);
    line-height: 1.6;
}

/* Fixed Navigation */
nav {
    position: fixed;
    top: 0; width: 100%;
    background: var(--bg-primary);
    border-bottom: 3px solid var(--accent-vibrant);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    z-index: 1000;
}

.logo {
    font-family: var(--header-font);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--accent-vibrant);
    text-transform: uppercase;
    letter-spacing: -1px;
}

nav ul { display: flex; list-style: none; gap: 2rem; }
nav ul li a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: 0.3s;
}
nav ul li a:hover { color: var(--accent-vibrant); }

/* Layout Components */
main { margin-top: 80px; }

.hero {
    padding: 8rem 10% 4rem 10%;
    background: var(--bg-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-family: var(--header-font);
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.9;
    letter-spacing: -3px;
    margin-bottom: 2rem;
    color: var(--accent-vibrant);
}

.highlight-box {
    background: var(--accent-highlight);
    padding: 0.5rem 1rem;
    display: inline-block;
    font-weight: 800;
    transform: rotate(-1deg);
    margin-bottom: 2rem;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 3px solid var(--text-main);
}

.content-block {
    padding: 4rem 10%;
    border-bottom: 1px solid #eee;
}

.content-block:nth-child(odd) { border-right: 3px solid var(--text-main); }

.content-block h2, .content-block h3 {
    font-family: var(--header-font);
    text-transform: uppercase;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-vibrant);
}

.content-block p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Images positioned differently - circular and floating */
.image-wrapper {
    position: relative;
    height: 400px;
    background: var(--accent-vibrant);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.image-wrapper img {
    width: 80%;
    height: 80%;
    object-fit: cover;
    border-radius: 50%; /* Different image positioning/shape */
    border: 5px solid var(--accent-highlight);
}

/* Contact Specific */
.contact-form {
    max-width: 600px;
    margin: 4rem auto;
    padding: 2rem;
}

.input-field {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 3px solid var(--text-main);
    font-family: var(--header-font);
    font-weight: 600;
}

.submit-btn {
    background: var(--accent-vibrant);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-family: var(--header-font);
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s;
}

.submit-btn:hover {
    transform: translate(5px, -5px);
    box-shadow: -5px 5px 0 var(--accent-highlight);
}

@media (max-width: 900px) {
    .content-grid { grid-template-columns: 1fr; }
    .content-block:nth-child(odd) { border-right: none; }
}