:root {
    /* Updated Palette based on user image */
    --bg-color: #ffffff;
    --bg-secondary: #fdf5ff;
    /* Very faint pinkish purple for sections */
    --text-color: #1a1a2e;
    --text-muted: #666666;

    /* The core gradient from the image (Purple -> Pink) */
    --primary-gradient: linear-gradient(135deg, #a920fa 0%, #f01a75 100%);

    /* Softer accent gradient for subtle glows */
    --secondary-gradient: linear-gradient(135deg, #e0c3fc 0%, #ffcced 100%);

    --glow-color: rgba(240, 26, 117, 0.15);

    --card-bg: #ffffff;
    --border-color: rgba(169, 32, 250, 0.1);

    --font-main: 'Outfit', sans-serif;
    --nav-height: 80px;
    --shadow-soft: 0 10px 40px rgba(169, 32, 250, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    /* Fallback */
    color: var(--text-color);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
    scroll-behavior: smooth;
    position: relative;
    /* Ensure body stacks over video appropriately */
}

/* Background Video Styling */
#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -10;
    opacity: 0.9;
    /* Slight dim for better text readability */
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 800;
    line-height: 1.1;
    color: #2d0f41;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    height: var(--nav-height);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: transparent;
    gap: 15px;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    height: 45px;
    width: auto;
    mix-blend-mode: multiply;
    display: block;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #a920fa;
    letter-spacing: -0.5px;
}

.logo-color {
    color: #a920fa;
    font-weight: 700;
}

.logo {
    display: none;
}

.btn-primary-small {
    background: #fdf5ff;
    /* very light pink/purple from image */
    color: #a920fa;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-small:hover {
    background: #a920fa;
    color: white;
}

.nav-social-links {
    display: flex;
    gap: 10px;
    margin-left: auto;
    margin-right: 15px;
}

.nav-social-links a {
    color: #a920fa;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #fdf5ff;
}

.nav-social-links a:hover {
    background: #a920fa;
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .nav-social-links {
        display: none;
    }

    .navbar {
        padding: 0 20px;
    }

    .logo {
        font-size: 1.3rem;
    }
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
    /* Transparent over the video */
    background: transparent;
}

/* Background Abstract Shapes */
.hero::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(240, 26, 117, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: -20%;
    left: -10%;
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(169, 32, 250, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -10%;
    right: -10%;
    z-index: -1;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 6rem);
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto 3rem;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

/* Buttons */
.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.btn-primary {
    background: linear-gradient(135deg, #c026d3 0%, #db2777 100%);
    /* Adjusted to match reference brighter pink/purple */
    color: white;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(192, 38, 211, 0.3);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
    white-space: nowrap;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(192, 38, 211, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.3);
    /* very subtle semi-transparent */
    backdrop-filter: blur(5px);
    color: #9d174d;
    /* Darker pink/purple text */
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid rgba(192, 38, 211, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: none;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    border-color: #c026d3;
}

.btn-primary:active,
.btn-secondary:active,
.btn-primary-small:active {
    transform: scale(0.95);
}

/* Visual / Avatar */
.hero-visual {
    margin-top: 4rem;
    position: relative;
    display: none;
    /* Hiding the old floating logo since we have a video background now */
}

/* Marquee */
.marquee-section {
    width: 100%;
    padding: 20px 0;
    background: transparent;
    overflow: hidden;
    white-space: nowrap;
    margin-bottom: 2rem;
}

.marquee-content {
    display: inline-block;
    animation: scroll 22s linear infinite;
    font-size: 1.8rem;
    font-weight: 400;
    color: #a920fa;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Narrative Journey Section */
.journey {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.journey-flow-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
}

.journey-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    transition: transform 0.5s ease, border-color 0.5s ease;
    max-width: 800px;
    margin: 0 auto 40px;
}

.journey-step:hover {
    transform: translateY(-5px);
    border-color: rgba(169, 32, 250, 0.3);
}

.journey-content {
    flex: 1;
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    opacity: 0.15;
    margin-bottom: 0px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.journey-content h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.journey-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.journey-visual {
    display: none;
}

.abstract-graphic {
    filter: drop-shadow(0 0 30px rgba(169, 32, 250, 0.4));
    animation: float 8s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.abstract-graphic .graphic-img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    mix-blend-mode: screen !important;
    transition: transform 0.5s ease;
    border-radius: 50%;
}

.abstract-graphic:hover .graphic-img {
    transform: scale(1.1);
}

.journey-connector {
    height: 100px;
    width: 2px;
    background: rgba(255, 255, 255, 0.05);
    margin: 0 auto;
    position: relative;
}

.line-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--primary-gradient);
    filter: blur(8px);
    opacity: 0.3;
}

/* Footer */
.footer {
    padding: 60px 20px 30px;
    background: transparent;
    text-align: center;
    margin-top: 50px;
    color: white;
    /* Ensure text is readable on dark */
}

.footer-center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 10px;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    transition: transform 0.3s ease;
}

.footer-logo-container:hover {
    transform: translateY(-2px);
}

.social-links {
    margin: 15px 0;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(169, 32, 250, 0.3);
}

.social-links a:hover {
    transform: translateY(-5px);
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 10px 20px rgba(240, 26, 117, 0.3);
    border-color: transparent;
}

.footer-logo-img {
    height: 36px;
    width: auto;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin: 0 10px;
    display: inline-block;
    padding: 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f01a75;
}

.footer-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    padding-bottom: 10px;
}

/* Pillars of Wisdom Section */
.pillars {
    padding: 150px 5%;
    max-width: 1300px;
    margin: 0 auto;
}

.pillar-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    margin-bottom: 80px;
}

.pillar-row.reverse {
    flex-direction: column;
}

.pillar-text {
    flex: 1.4;
    max-width: 800px;
    margin: 0 auto;
}

.pillar-text h3 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 30px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.pillar-text p {
    font-size: 1.4rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
}

/* Features CTA Centering */
.features-cta {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pillar-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}

.language-tags {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
}

.language-tags a {
    background: rgba(255, 255, 255, 0.08);
    padding: 10px 22px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.language-tags a:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(169, 32, 250, 0.3);
    color: white;
}

/* Mobile Responsiveness */
/* Mobile Responsiveness */
@media (max-width: 900px) {
    .sticky-container {
        flex-direction: column;
        /* Changed from column-reverse to keep text first for better flow on mobile */
    }

    .visual-side {
        position: relative;
        top: 0;
        height: 300px;
        /* Reduced height on mobile */
        width: 100%;
        margin-bottom: 30px;
    }

    .navbar {
        padding: 0 15px;
        gap: 8px;
    }

    .nav-logo, .footer-logo {
        height: 32px;
        mix-blend-mode: multiply !important;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .btn-primary-small {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .journey-step {
        flex-direction: column !important;
        gap: 30px;
        padding: 40px 25px;
        text-align: center;
    }

    .abstract-graphic {
        width: 140px;
        height: 140px;
    }

    .graphic-img {
        width: 75%;
        height: 75%;
    }

    .pillar-row, .pillar-row.reverse {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 80px;
        text-align: center;
    }

    .pillar-text h3 {
        font-size: 2rem;
    }

    .pillar-text p {
        font-size: 1.15rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2.2rem, 12vw, 3.5rem);
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 15px;
        padding: 0 20px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 16px 32px;
        /* Slightly taller for better touch */
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .btn-primary-small {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .nav-logo {
        height: 38px;
    }

    .feature-card {
        padding: 25px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 60px rgba(169, 32, 250, 0.2);
    transform: translateY(20px);
    transition: all 0.3s ease;
    border: 1px solid rgba(169, 32, 250, 0.1);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

@media (max-width: 500px) {
    .modal-content {
        padding: 25px 20px;
        border-radius: 15px;
    }

    .modal-title {
        font-size: 1.6rem;
    }

    .manifesto-section h4 {
        font-size: 1.1rem;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #a920fa;
}

.modal-title {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #2d0f41;
}

.modal-subtitle {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2d0f41;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-main);
    transition: all 0.3s ease;
    background: #fdfafd;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #a920fa;
    box-shadow: 0 0 0 3px rgba(169, 32, 250, 0.1);
    background: #fff;
}

.form-message {
    margin-top: 15px;
    font-size: 0.95rem;
    text-align: center;
}

.form-message.success {
    color: #1a1a2e;
    /* Darker for readability on rich content */
}

.success-content {
    animation: fadeIn 0.5s ease-out;
    padding: 10px 0;
}

.success-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.success-title {
    font-size: 1.4rem;
    color: #a920fa;
    margin-bottom: 10px;
    font-weight: 700;
}

.success-text {
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 25px;
}

.share-container {
    background: rgba(169, 32, 250, 0.03);
    border: 1px dashed rgba(169, 32, 250, 0.2);
    padding: 20px;
    border-radius: 15px;
    margin-top: 20px;
}

.share-prompt {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.share-btn {
    background: transparent;
    border: 1px solid rgba(169, 32, 250, 0.3);
    color: #a920fa;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-main);
}

.share-btn:hover {
    background: rgba(169, 32, 250, 0.05);
    border-color: #a920fa;
    transform: translateY(-1px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message.error {
    color: #ef4444;
}

/* Manifesto Specific Styles */
.manifesto-modal {
    max-width: 700px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.manifesto-scroll {
    overflow-y: auto;
    padding-right: 15px;
}

.manifesto-scroll::-webkit-scrollbar {
    width: 6px;
}

.manifesto-scroll::-webkit-scrollbar-thumb {
    background: rgba(169, 32, 250, 0.2);
    border-radius: 10px;
}

.manifesto-subtitle {
    margin-top: -5px;
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 600;
}

.manifesto-section {
    margin-top: 30px;
    text-align: left;
}

.manifesto-section h4 {
    font-size: 1.2rem;
    color: #a920fa;
    margin-bottom: 10px;
}

.manifesto-section ul {
    list-style: none;
    margin-top: 10px;
}

.manifesto-section ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.manifesto-section ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #f01a75;
    font-weight: bold;
}

.text-content p {
    color: var(--text-muted);
    line-height: 1.6;
}

.text-content strong {
    color: var(--text-color);
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}