:root {
    --glass-white: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --green-glow: rgba(122, 155, 122, 0.4);
    --green-accent: #20B2AA;
    --green-bright: #40E0D0;
    --text-primary: #e8e8e8;
    --text-secondary: #b0b0b0;
    --text-muted: #808080;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: 
        linear-gradient(180deg, rgba(10, 15, 10, 0.85) 0%, rgba(10, 15, 10, 0.75) 50%, rgba(10, 15, 10, 0.85) 100%),
        url('assets/forest.png') center / cover fixed;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Ambient particles */
.ambient-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--green-bright);
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 6px var(--green-bright);
    animation: float 20s infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 25%; animation-delay: 4s; }
.particle:nth-child(3) { left: 50%; animation-delay: 8s; }
.particle:nth-child(4) { left: 72%; animation-delay: 12s; }
.particle:nth-child(5) { left: 90%; animation-delay: 16s; }

@keyframes float {
    0%   { transform: translateY(100vh); opacity: 0; }
    5%   { opacity: 0.8; }
    50%  { opacity: 0.6; }
    95%  { opacity: 0.8; }
    100% { transform: translateY(-10vh); opacity: 0; }
}

/* Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 0;
    background: 
    linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.4)),
    url('assets/forest.png') top / cover no-repeat;
    position: relative;
       }

.hero-content {
    max-width: 900px;
       }

h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--teal);
    margin-bottom: 1rem;
    letter-spacing: 2px;
        }

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--mist);
    margin-bottom: 2rem;
    font-style: italic;
}
        
.hero-body {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 2rem;
    text-align: left;
 
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.logo-mark-img {
    height: 120px;
    width: auto;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    margin-bottom: 1rem;
}

.tagline {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Sections */
.section {
    padding: 2.5rem 0;
}

.section-alt {
    background: rgba(255, 255, 255, 0.02);
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    text-align: center;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Buttons */
.btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    /* Signature Eldelorne gradient button */
    background: linear-gradient(135deg, #40E0D0, #c9a961);
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(64, 224, 208, 0.3);
}

.btn:hover:not(:disabled) {
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, #40E0D0, #c9a961);
    color: #1a1a1a;
    box-shadow: 0 4px 20px var(--green-glow);
}

.btn-primary:hover:not(:disabled) {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-full {
    width: 100%;
}
/* Square button wrapper — keep original intact */
.square-wrap {
    overflow: auto;
    display: flex;
    flex-direction: column
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    background: var(--teal);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    font-family: SQ Market, Helvetica, Arial, sans-serif;
    margin: 1.5rem auto;
    max-width: 320px;
}

.btn-back {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: transparent;
    border: 1.5px solid var(--teal);
    color: var(--teal);
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: all 0.3s;
    margin-top: 1.5rem;
}
 .btn-back:hover {
    background: var(--teal-glow);
}
        
/* Process Flow */
.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.process-step {
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    backdrop-filter: blur(10px);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--green-accent);
    color: #0a0f0a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: 0 auto 1rem;
}

.process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.process-arrow {
    font-size: 2rem;
    color: var(--green-accent);
    opacity: 0.5;
}

/* Pricing */
.tier-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.tier-card {
    background: var(--glass-white);
    border: 2px solid var(--green-accent);
    border-radius: 16px;
    padding: 2.5rem;
    width: 100%;
    max-width: 400px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 40px var(--green-glow);
}

/* Mobile: Stack vertically */
@media (max-width: 767px) {
    .tier-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .tier-card {
        margin-right: 0 !important;
        margin-bottom: 1.5rem;
    }
}

.tier-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 1.5rem;
}

.tier-header h3 {
    font-size: 1.5rem;
    color: var(--green-bright);
    margin-bottom: 1rem;
}

.tier-price {
    font-size: 3rem;
    font-weight: 600;
}

.tier-price span {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-muted);
}

.tier-feature {
    padding: 0.7rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tier-feature:last-child {
    border-bottom: none;
}

.tier-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--green-accent);
    font-style: italic;
    margin-top: 1rem;
}

/* Waitlist Form */
.section-waitlist {
    background: linear-gradient(180deg, transparent 0%, rgba(122, 155, 122, 0.03) 100%);
}

.waitlist-container {
    max-width: 600px;
    margin: 0 auto;
}

.waitlist-intro {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
}

.waitlist-form {
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.9rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: var(--green-accent);
    background: rgba(0, 0, 0, 0.4);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.checkbox-label span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* Success Message - CRITICAL FIX */
.success-message {
    display: none;
    text-align: center;
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 3rem 2rem;
    backdrop-filter: blur(10px);
}

#successMessage[style*="display: block"] {
    display: block !important;
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.success-message h3 {
    font-size: 1.8rem;
    color: var(--green-bright);
    margin-bottom: 1rem;
}

.success-message p {
    color: var(--text-secondary);
}

/* Footer */
footer {
    padding: 3rem 0 6rem 0;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.footer-logo {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-text {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.footer-legal {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}
.footer-logo-img { 
    display: block; 
    margin: 0 auto 0.5rem; 
}

/* Crisis Box */
.crisis-box {
    background: rgba(155, 34, 38, 0.1);
    border: 2px solid rgba(155, 34, 38, 0.3);
    border-radius: 12px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

/* Payment Button Container */
.payment-button-container {
    background: rgba(0, 0, 0, 0.3);
    border: 1px dashed var(--green-accent);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
}

/* Links */
a {
    color: var(--green-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--green-bright);
}

/* Desktop tweaks */
@media (min-width: 600px) {
    .container {
        padding: 0 2rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .waitlist-form {
        padding: 2.5rem;
    }
}

@media (min-width: 768px) {
    .process-arrow {
        display: block;
    }
}

@media (max-width: 767px) {
    .process-arrow {
        display: none;
    }
}
