:root {
    --green: #8EB634;
    --dark: #505051;
    --white: #FDFCFC;
}

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

/* Base */
body {
    font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
    background-color: var(--white);
    color: var(--dark);
    overflow-x: hidden;
}

/* Glass Waves */
.glass-waves {
    position: absolute;
    width: 520px;   
    height: 520px;  
    pointer-events: none;
    z-index: 0;
}

.glass-waves svg {
    position: absolute;
    width: 100%;
    height: 100%;
    fill: rgba(142, 182, 52, 0.26); /* richer green */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50%;
}

.glass-waves svg:nth-child(2) {
    fill: rgba(142, 182, 52, 0.18); /* layered depth */
    transform: translate(55px, 55px);
}

/* Placement */
.top-right {
    top: -120px;
    right: -120px;
}

.bottom-left {
    bottom: -120px;
    left: -120px;
}

/* Wrapper */
.page-wrapper {
    min-height: 100vh;
    position: relative;
    z-index: 1;
    padding: 3.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Hero */
.hero {
    text-align: center;
    margin-top: 4rem;
}

.logo {
    width: 140px;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 2.6rem;
    font-weight: 600;
    letter-spacing: 1.2px;
}

.tagline {
    margin-top: 0.4rem;
    font-size: 1.1rem;
    color: var(--green);
    letter-spacing: 0.8px;
}

/* Content */
.content {
    max-width: 900px;
    margin: 4rem auto;
    text-align: center;
}

.intro h2 {
    font-size: 1.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.intro p {
    max-width: 620px;
    margin: 0 auto;
    font-size: 1rem;
    color: #6b6b6b;
}

/* About */
.about {
    background: rgba(255, 255, 255, 0); /* more transparent */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    padding: 3rem 2rem;
    margin: 0 auto 1.5rem auto;
    max-width: 1100px;

    text-align: center;

    border-radius: 28px; /* curved edges */
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);

    border: 1px solid rgba(255, 255, 255, 0.35);
}

.about h3 {
    font-weight: 500;
    letter-spacing: 0.6px;
}


.about p {
    max-width: 740px;
    margin: 0 auto;
    font-size: 0.95rem;
    color: rgba(80, 80, 81, 0.85);
}

/* Responsive */
@media (max-width: 768px) {
    .glass-waves {
        width: 300px;
        height: 300px;
    }

    .hero h1 {
        font-size: 2.1rem;
    }
}
