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

:root {
    --bg-dark: #0a0e27;
    --bg-darker: #050712;
    --purple-glow: #a78bfa;
    --lavender: #c4b5fd;
    --purple-soft: #8b5cf6;
    --text-primary: #f3f4f6;
    --text-secondary: #d1d5db;
    --text-muted: #9ca3af;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', 'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.hero-content {
    z-index: 2;
    max-width: 800px;
}

.logo-container {
    margin-bottom: 2rem;
}

.logo-breathing {
    width: 150px;
    height: 150px;
    animation: breathing 4s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(167, 139, 250, 0.3));
}

@keyframes breathing {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(167, 139, 250, 0.3));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 30px rgba(167, 139, 250, 0.5));
    }
}

.hero-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--lavender) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--lavender);
    margin-bottom: 1.5rem;
    letter-spacing: 0.01em;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-family: 'Nunito', sans-serif;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--purple-soft) 0%, var(--lavender) 100%);
    color: var(--bg-dark);
    box-shadow: 0 4px 20px rgba(167, 139, 250, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(167, 139, 250, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--lavender);
    border: 2px solid var(--lavender);
}

.btn-secondary:hover {
    background: rgba(196, 181, 253, 0.1);
    box-shadow: 0 4px 20px rgba(167, 139, 250, 0.2);
}

.hero-banner {
    margin-top: 4rem;
    width: 100%;
    max-width: 1000px;
}

.banner-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    opacity: 0.9;
}

/* Sections */
.section {
    padding: 6rem 0;
    position: relative;
}

.section:nth-child(even) {
    background: rgba(167, 139, 250, 0.02);
}

.section-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--lavender);
    letter-spacing: -0.02em;
}

.content-block {
    margin-bottom: 2.5rem;
}

.content-block p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.lead {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.emphasis {
    font-weight: 600;
    color: var(--lavender);
    font-size: 1.2rem;
}

/* Lists */
.feature-list,
.reality-list,
.reminder-list,
.community-list,
.symbol-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.feature-list li,
.reality-list li,
.reminder-list li,
.community-list li,
.symbol-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.feature-list li::before,
.reality-list li::before,
.reminder-list li::before,
.community-list li::before,
.symbol-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--lavender);
    font-weight: 600;
}

/* Highlight Box */
.highlight-box {
    background: rgba(167, 139, 250, 0.08);
    border-left: 4px solid var(--lavender);
    padding: 2rem;
    border-radius: 10px;
    margin: 2.5rem 0;
    box-shadow: 0 4px 20px rgba(167, 139, 250, 0.1);
}

.highlight-box p {
    margin-bottom: 1rem;
}

.highlight-box p:last-child {
    margin-bottom: 0;
}

/* Stat Highlight */
.stat-highlight {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--lavender);
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(167, 139, 250, 0.1);
    border-radius: 10px;
    text-align: center;
}

/* Grid Features */
.grid-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature-card {
    background: rgba(167, 139, 250, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(167, 139, 250, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(167, 139, 250, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(167, 139, 250, 0.2);
}

.feature-card h3 {
    font-size: 1.2rem;
    color: var(--lavender);
    font-weight: 600;
}

/* Symbol Section */
.symbol-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.symbol-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-symbol {
    width: 200px;
    height: 200px;
    filter: drop-shadow(0 0 25px rgba(167, 139, 250, 0.4));
}

.symbol-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.symbol-text p {
    margin-bottom: 1rem;
}

/* What Is/Isn't Grid */
.is-not-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 2rem 0;
}

.is-card,
.is-not-card {
    padding: 2rem;
    border-radius: 15px;
}

.is-card {
    background: rgba(167, 139, 250, 0.1);
    border: 2px solid var(--lavender);
}

.is-not-card {
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.is-card h3,
.is-not-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--lavender);
    font-weight: 600;
}

.is-card ul,
.is-not-card ul {
    list-style: none;
    padding-left: 0;
}

.is-card li,
.is-not-card li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.is-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--lavender);
    font-weight: 600;
}

.is-not-card li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--text-muted);
    font-weight: 600;
}

/* Closing Section */
.closing {
    padding: 8rem 0;
    text-align: center;
}

.closing-content {
    max-width: 700px;
    margin: 0 auto;
}

.closing-lead {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.closing-spacer {
    height: 3rem;
}

.closing-quote {
    font-size: 1.5rem;
    color: var(--lavender);
    font-style: italic;
    margin-bottom: 0.5rem;
}

.closing-cta {
    margin-top: 2rem;
}

.closing-choice {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.closing-choice.emphasis {
    font-size: 2.2rem;
    color: var(--lavender);
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(167, 139, 250, 0.1);
}

.footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        text-align: center;
    }

    .symbol-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .logo-symbol {
        width: 150px;
        height: 150px;
    }

    .is-not-grid {
        grid-template-columns: 1fr;
    }

    .grid-features {
        grid-template-columns: 1fr;
    }

    .closing-lead {
        font-size: 1.4rem;
    }

    .closing-quote {
        font-size: 1.2rem;
    }

    .closing-choice {
        font-size: 1.4rem;
    }

    .closing-choice.emphasis {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .lead {
        font-size: 1.2rem;
    }

    .content-block p {
        font-size: 1rem;
    }
}

/* Smooth Scroll Animation */
@media (prefers-reduced-motion: no-preference) {
    .section {
        animation: fadeInUp 0.8s ease-out;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Glow Effects */
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--lavender), transparent);
    margin: 1rem auto;
    opacity: 0.5;
}

