:root {
    --bg-color: #F7F9F5;
    --text-color: #2D3A31;
    --primary-green: #88B793;
    --secondary-green: #CDE6D3;
    --accent-color: #E6B89C;
    --white: #FFFFFF;
    --card-shadow: 0 4px 20px rgba(136, 183, 147, 0.15);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    position: relative;
    /* Clean base */
}

/* Organic Leaf/Nature Overlay Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-image:
        /* Top Left Leaf Cluster */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300' viewBox='0 0 100 100'%3E%3Cpath d='M0 0 Q20 50 50 50 T100 0' fill='none' stroke='%2388B793' stroke-width='0.5' stroke-opacity='0.2'/%3E%3Cpath d='M20 0 Q30 40 60 40' fill='none' stroke='%2388B793' stroke-width='0.5' stroke-opacity='0.2'/%3E%3Cpath d='M-10 20 Q30 60 80 20' fill='none' stroke='%2388B793' stroke-width='0.5' stroke-opacity='0.2'/%3E%3C/svg%3E"),
        /* Bottom Right Large Leaf */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 100 100'%3E%3Cpath d='M100 100 Q50 80 50 50 T100 0' fill='none' stroke='%2388B793' stroke-width='0.8' stroke-opacity='0.15'/%3E%3Cpath d='M100 80 Q60 70 60 50' fill='none' stroke='%2388B793' stroke-width='0.8' stroke-opacity='0.15'/%3E%3C/svg%3E"),
        /* Random scattered soft organic blobs */
        radial-gradient(circle at 15% 50%, rgba(136, 183, 147, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 85% 20%, rgba(205, 230, 211, 0.1) 0%, transparent 25%);
    background-position: top left, bottom right, 0 0, 0 0;
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
    pointer-events: none;
}

h1,
h2,
h3 {
    font-weight: 600;
    color: #1A2E22;
}

/* HEADER */
header {
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(247, 249, 245, 0.8);
    backdrop-filter: blur(8px);
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    font-family: 'Patrick Hand', cursive;
}

.links {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 400;
    transition: color 0.3s;
    font-size: 1.1rem;
}

.links a:hover {
    color: var(--primary-green);
}

.btn-nav {
    background: var(--primary-green);
    color: var(--bg-color) !important;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
}

/* Hero Section */
.hero {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem 2rem 2rem;
    position: relative;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Patrick Hand', cursive;
}

.subtitle {
    font-size: 1.4rem;
    max-width: 600px;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.1rem;
    color: #6C8A76;
    margin-bottom: 1.5rem;
    font-style: italic;
}

/* Intrigue Box - REMOVED DASHED BORDER */
.intrigue-box {
    margin-bottom: 1.5rem;
    background: white;
    /* Clean white background */
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(136, 183, 147, 0.1);
    /* Subtle shadow instead */
    /* border: 1px dashed var(--primary-green);  <-- REMOVED per user request */
}

.intrigue-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #556B5D;
}

.soft-circle {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--secondary-green) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: breathe 6s infinite ease-in-out;
    opacity: 0.4;
}

@keyframes breathe {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.5;
    }
}

/* Content Blocks */
.content-block {
    padding: 3rem 10%;
    text-align: center;
}

/* Feature Cards */
.feature-cards {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    align-items: stretch;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    flex: 1;
    min-width: 260px;
    max-width: 320px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(136, 183, 147, 0.1);
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(136, 183, 147, 0.2);
}

.icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.card h3 {
    color: var(--text-color);
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
    font-family: 'Patrick Hand', cursive;
}

.card p {
    flex-grow: 1;
    font-size: 0.95rem;
}

/* FAQ Section */
.highlight-bg {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    margin: 1.5rem 5%;
    box-shadow: var(--card-shadow);
    padding: 2.5rem 8%;
    backdrop-filter: blur(5px);
}

.faq-container {
    max-width: 700px;
    margin: 1.5rem auto 0 auto;
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid #EEE;
    margin-bottom: 0.5rem;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 0.8rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Outfit', sans-serif;
}

.faq-question:hover {
    color: var(--primary-green);
}

.faq-question::after {
    content: '+';
    font-size: 1.3rem;
    color: var(--primary-green);
}

.faq-question.active::after {
    content: '-';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding-bottom: 0.8rem;
    color: #556B5D;
    font-size: 1rem;
}

/* Email Section */
.email-section {
    padding-top: 2.5rem;
    padding-bottom: 3rem;
}

.email-signup-container {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    max-width: 450px;
    margin: 1rem auto;
}

.join-text {
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: #556B5D;
}

.signup-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.signup-form input {
    flex: 1;
    padding: 0.7rem 1rem;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    outline: none;
    transition: border-color 0.3s;
}

.signup-form input:focus {
    border-color: var(--primary-green);
}

.btn-primary {
    background-color: var(--primary-green);
    color: white;
    padding: 0.7rem 1.2rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary:hover {
    background-color: #76A380;
    transform: translateY(-2px);
}

.counter-text {
    font-size: 0.85rem;
    color: #6C8A76;
}

.btn-secondary {
    color: var(--text-color);
    text-decoration: underline;
    font-size: 0.95rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.btn-secondary:hover {
    opacity: 1;
    color: var(--primary-green);
}

.feedback-link {
    margin-top: 1rem;
}

.hidden {
    display: none;
}

footer {
    text-align: center;
    padding: 2rem;
    color: #8DA695;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .signup-form {
        flex-direction: column;
    }

    .feature-cards {
        flex-direction: column;
        align-items: center;
    }

    .links {
        display: none;
    }

    .card {
        width: 100%;
        max-width: 100%;
    }
}

/* Confetti Particles */
.confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    background-color: var(--primary-green);
    animation: fall linear forwards;
    z-index: 9999;
    top: -10vh;
}

@keyframes fall {
    to {
        transform: translateY(110vh) rotate(720deg);
    }
}