* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    --titleFont: "Montserrat", "Helvetica Neue", Arial, sans-serif;
    --textFont: "Actor", Arial, sans-serif;
    --logoFont: var(--titleFont);
    --darkBackground: #000;
    --darkColor: #fff;
    --darkTeamGradientStart: #1a1a1a;
    --darkTeamGradientStop: #2d2d2d;
    --themeColor: orangered;
    

    --background: var(--darkBackground);
    --color: var(--darkColor);

    --teamGradientStart: var(--darkTeamGradientStart);
    --teamGradientStop: var(--darkTeamGradientStop);
}

body {
    font-family: var(--textFont);
    background: var(--background);
    color: var(--color);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: var(--color);
    font-weight: 900;
    .lightPage & {
        color: var(--themeColor);
    }
}

h2 {
    font-size: 4vw;
    letter-spacing: -0.03em;
    font-family: var(--titleFont);
    font-weight:900;
    padding: 3vw 0;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
}

pre {
    color: var(--themeColor);
    text-transform: uppercase;
    font-family: var(--textFont);
}
pre + h2 {
    padding-top:0;
}
/* Still Point Philosophy (Elegance: Golden Ratio Flow) */
.still-point {
    min-height: 100vh;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;

    /* Deep Ambient Background: Darker blend of Systemic and Outdoor */
    background-color: #050505;
    background-image:
        /* Main Spiral Illusion: Deep, dark concentric rings */
        radial-gradient(circle at 10% 90%, rgba(26, 61, 61, 0.2) 10%, transparent 100%), /* Organic Teal Tint */
        radial-gradient(circle at 90% 10%, rgba(30, 30, 30, 0.3) 10%, transparent 100%), /* Systemic DarkGrey */
        /* Faint central light source */
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 10%); 
}

/* Fog elements repurposed to create a continuous, slow-moving flow effect */
.fog-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 1; 
    z-index: 1; 
}

.fog { 
    position: absolute;
    width: 150vw; 
    height: 150vh; 
    /* Swirling light that shifts color slightly */
    background: radial-gradient(ellipse at center, rgba(140, 190, 170, 0.02) 0%, transparent 60%); 
    animation: slow-swirl 200s linear infinite; /* Very slow movement for elegance */
}

.fog:nth-child(2) {
    animation-delay: -100s;
    animation-duration: 250s;
    /* Different center for complexity */
    background: radial-gradient(ellipse at 70% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
}

@keyframes slow-swirl {
    0% { transform: translate(-10%, -10%) rotate(0deg) scale(1); }
    100% { transform: translate(-10%, -10%) rotate(360deg) scale(1); }
}

.philosophy-content {
    position: relative;
    z-index: 3; /* Ensure content is on top of all swirling elements */
    text-align: center;
    padding: 3rem 4rem;
    
    /* The Clear Node: Ultra-minimalist and floating */
    /* background: rgba(0, 0, 0, 0.5); Very dark, transparent center */
    border: 1px solid rgba(255, 255, 255, 0.05); Faintest possible frame
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5); Subtle inner shadow to create depth
    backdrop-filter: blur(8px); 
    border-radius: 5px;
}

p {
    font-size: 1.4vw;
    line-height: 1.4;
    font-weight: 100;
    color: #fff;
    padding-bottom: 2rem;
}

.philosophy-text {
    strong {
        color: #4a7a60;
    }
}

/* Topographic Section */
.topographic {
    position: relative;
    padding: 10rem 4rem; /* More prominent padding */
    background: linear-gradient(to bottom, rgba(26, 61, 61, 0.7) 0%, rgba(45, 74, 58, 0.7) 100%),
    url("mapping.webp");
    background-size: cover;
}

.topo-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-image: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 50px,
        #fff 50px,
        #fff 51px
    ),
    repeating-linear-gradient(
        90deg,
        transparent,
        transparent 50px,
        #fff 50px,
        #fff 51px
    );
}

.topo-content {
    position: relative;
    z-index: 1;
    max-width: 80vw;
    margin: 0 auto;
    text-align: center;
}



.cta-button {
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 1);
    background: transparent;
    color: var(--color);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.7rem;
    opacity: 0.5;
}

.cta-button:hover {
    border-color: var(--color);
    opacity: 1;
}

 
/* Footer */
footer {
    background: #000;
    padding: 4rem 2rem;
    text-align: center;
    border-top: 1px solid #222;
}


/* Footer changes - match button style for continuity */
footer .cta-button {
    display: block;
    margin: 2rem auto 0 auto;
}

.footer-text {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.6;
}

@media (max-width: 968px) {
    .cta-button {
        font-size: 1.2vw;
        padding: 1vw 2vw;
        margin-top: 2vw;
    }

    h2 {
        font-size: 7vw;
    }

    p {
        font-size: 3vw;
        padding-bottom: 2rem;
    }

}



