
        :root {
            --white: #ffffff;
            --cream: #fefcf7;
            --warm-gray: #f8f6f2;
            --soft-beige: #f4f2ed;
            --sage: #e8ebe4;
            --mist: #f0f2f0;

            --charcoal: #2c2c2c;
            --dark-gray: #505050;
            --medium-gray: #737373;
            --light-gray: #a3a3a3;

            --gold: #d4a574;
            --warm-gold: #c19653;
            --sage-green: #7a9471;
            --dusty-rose: #c8a2a2;
            --soft-blue: #8eb3b8;

            --border: #e8e5e0;
            --shadow: rgba(44, 44, 44, 0.08);
            --shadow-soft: rgba(44, 44, 44, 0.04);
            --glow: rgba(212, 165, 116, 0.15);

            --gradient-primary: linear-gradient(135deg, var(--cream) 0%, var(--warm-gray) 50%, var(--sage) 100%);
            --gradient-accent: linear-gradient(135deg, var(--gold) 0%, var(--warm-gold) 100%);
            --gradient-card: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%);
        }

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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--gradient-primary);
            color: var(--charcoal);
            line-height: 1.7;
            overflow-x: hidden;
            font-weight: 400;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 32px;
        }

        /* Enhanced floating elements */
        .floating-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            opacity: 0.6;
        }

        .floating-element {
            position: absolute;
            animation: gentleFloat 35s infinite ease-in-out;
            font-size: clamp(1rem, 2vw, 1.5rem);
        }

        .element-1 { top: 15%; left: 8%; color: var(--dusty-rose); animation-delay: 0s; }
        .element-2 { top: 35%; right: 12%; color: var(--sage-green); animation-delay: -12s; }
        .element-3 { top: 65%; left: 15%; color: var(--gold); animation-delay: -24s; }
        .element-4 { top: 85%; right: 25%; color: var(--soft-blue); animation-delay: -8s; }
        .element-5 { top: 25%; left: 70%; color: var(--dusty-rose); animation-delay: -16s; }

        @keyframes gentleFloat {
            0%, 100% { transform: translateY(0) rotate(0deg) scale(1); opacity: 0.3; }
            25% { transform: translateY(-25px) rotate(8deg) scale(1.1); opacity: 0.6; }
            50% { transform: translateY(-15px) rotate(-5deg) scale(0.95); opacity: 0.4; }
            75% { transform: translateY(-20px) rotate(10deg) scale(1.05); opacity: 0.5; }
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            font-weight: 600;
            color: var(--gold);
            text-decoration: none;
            transition: all 0.3s ease;
            letter-spacing: -0.02em;
        }

        .logo:hover {
            color: var(--warm-gold);
            transform: scale(1.02);
        }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            color: var(--dark-gray);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
            padding: 12px 0;
            letter-spacing: 0.01em;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-accent);
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-links a:hover {
            color: var(--charcoal);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            padding: 160px 0 120px;
            text-align: center;
            background: var(--gradient-primary);
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            animation: heroFadeIn 1.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .hero-greeting {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.4rem;
            color: var(--sage-green);
            margin-bottom: 24px;
            font-style: italic;
            opacity: 0;
            animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
        }

        .hero h1 {
            font-family: 'Noto Sans Devanagari', sans-serif;
            font-size: clamp(3rem, 8vw, 5rem);
            font-weight: 600;
            color: var(--gold);
            margin-bottom: 32px;
            text-shadow: 0 4px 12px rgba(212, 165, 116, 0.15);
            opacity: 0;
            animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
            letter-spacing: -0.02em;
        }

        .hero-subtitle {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            color: var(--dark-gray);
            font-style: italic;
            margin-bottom: 32px;
            opacity: 0;
            animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.9s forwards;
            line-height: 1.6;
        }

        .hero-description {
            font-size: 1.2rem;
            color: var(--medium-gray);
            line-height: 1.8;
            opacity: 0;
            animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 1.2s forwards;
            font-weight: 400;
        }

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

        @keyframes heroFadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Verse Section */
        .verse-section {
            padding: 120px 0;
            background: var(--mist);
        }

        .verse-container {
            max-width: 1100px;
            margin: 0 auto;
            text-align: center;
        }

        .verse-title {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            color: var(--gold);
            margin-bottom: 60px;
            position: relative;
            letter-spacing: -0.02em;
        }

        .verses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
            gap: 32px;
            margin-bottom: 80px;
        }

        .verse-card {
            background: var(--gradient-card);
            padding: 48px 40px;
            border-radius: 24px;
            border: 1px solid var(--border);
            box-shadow: 0 8px 32px var(--shadow);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
        }

        .verse-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px var(--glow);
        }

        .sanskrit-text {
            font-family: 'Noto Sans Devanagari', sans-serif;
            font-size: 1.6rem;
            color: var(--gold);
            font-weight: 500;
            margin-bottom: 16px;
            line-height: 1.6;
        }

        .translation {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.1rem;
            color: var(--medium-gray);
            font-style: italic;
            line-height: 1.6;
        }

        .verse-meaning {
            background: var(--gradient-card);
            padding: 60px 50px;
            border-radius: 24px;
            text-align: left;
            margin-top: 60px;
            box-shadow: 0 12px 48px var(--shadow);
        }

        .verse-meaning h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            color: var(--dusty-rose);
            text-align: center;
            margin-bottom: 40px;
            letter-spacing: -0.02em;
        }

        .meaning-list {
            list-style: none;
            padding: 0;
        }

        .meaning-list li {
            margin-bottom: 24px;
            padding-left: 40px;
            position: relative;
            font-size: 1.15rem;
            line-height: 1.8;
            color: var(--charcoal);
        }

        .meaning-list li::before {
            content: '○';
            position: absolute;
            left: 0;
            top: 0;
            color: var(--sage-green);
            font-size: 1.2rem;
            animation: gentlePulse 6s ease-in-out infinite;
        }

        @keyframes gentlePulse {
            0%, 100% { transform: scale(1); opacity: 0.7; }
            50% { transform: scale(1.15); opacity: 1; }
        }

        /* About Section */
        .about {
            padding: 140px 0;
            background: var(--gradient-primary);
        }

        .about-header {
            text-align: center;
            margin-bottom: 100px;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            color: var(--gold);
            margin-bottom: 32px;
            letter-spacing: -0.02em;
        }

        .section-subtitle {
            font-size: 1.3rem;
            color: var(--medium-gray);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 60px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .about-text {
            font-size: 1.2rem;
            line-height: 1.8;
            color: var(--charcoal);
            text-align: center;
            font-weight: 400;
        }

        .purpose-section, .commitment-section, .why-section {
            background: var(--gradient-card);
            padding: 60px 55px;
            border-radius: 32px;
            margin: 50px 0;
            box-shadow: 0 16px 64px var(--shadow);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid var(--border);
        }

        .purpose-section:hover, .commitment-section:hover, .why-section:hover {
            transform: translateY(-6px);
            box-shadow: 0 24px 80px var(--glow);
        }

        .purpose-section h3, .commitment-section h3, .why-section h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: var(--sage-green);
            text-align: center;
            margin-bottom: 32px;
            letter-spacing: -0.02em;
        }

        .purpose-list {
            list-style: none;
            padding: 0;
        }

        .purpose-list li {
            margin-bottom: 20px;
            padding-left: 32px;
            position: relative;
            font-size: 1.15rem;
            line-height: 1.8;
        }

        .purpose-list li::before {
            content: '●';
            color: var(--sage-green);
            position: absolute;
            left: 0;
            font-size: 1.2rem;
            top: 0;
        }

        .highlight {
            background: linear-gradient(120deg, var(--gold) 0%, transparent 100%);
            background-size: 100% 35%;
            background-repeat: no-repeat;
            background-position: 0 80%;
            padding: 2px 0;
            font-weight: 600;
            color: var(--charcoal);
        }

        /* Founder Section */
        .founder {
            padding: 140px 0;
            background: var(--warm-gray);
        }

        .founder-content {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        .founder-quote {
            font-size: 1.5rem;
            font-style: italic;
            line-height: 1.9;
            color: var(--charcoal);
            margin-bottom: 48px;
            padding: 60px;
            background: var(--gradient-card);
            border-radius: 32px;
            border-left: 6px solid var(--gold);
            position: relative;
            box-shadow: 0 16px 64px var(--shadow);
            font-family: 'Cormorant Garamond', serif;
        }

        .founder-quote::before {
            content: '"';
            font-size: 6rem;
            color: var(--gold);
            opacity: 0.25;
            position: absolute;
            top: 15px;
            left: 30px;
            font-family: 'Playfair Display', serif;
        }

        .founder-signature {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            color: var(--dusty-rose);
            font-weight: 500;
            font-style: italic;
        }

        /* Enhanced Waitlist Section */
        .waitlist {
            padding: 120px 0;
            background: linear-gradient(135deg, var(--sage) 0%, var(--mist) 100%);
            position: relative;
            overflow: hidden;
        }

        .waitlist::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(212, 165, 116, 0.05) 0%, transparent 70%);
            animation: gentleRotate 60s linear infinite;
            pointer-events: none;
        }

        @keyframes gentleRotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .waitlist-container {
            max-width: 680px;
            margin: 0 auto;
            background: var(--white);
            padding: 80px 60px;
            border-radius: 40px;
            box-shadow: 0 32px 120px var(--shadow);
            border: 1px solid var(--border);
            position: relative;
            z-index: 1;
        }

        .waitlist h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3.2rem;
            color: var(--gold);
            margin-bottom: 24px;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        .waitlist-subtitle {
            font-size: 1.15rem;
            color: var(--medium-gray);
            margin-bottom: 48px;
            line-height: 1.7;
            font-weight: 400;
        }

        .waitlist-benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 24px;
            margin-bottom: 48px;
            padding: 32px 0;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .benefit-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.95rem;
            color: var(--dark-gray);
        }

        .benefit-icon {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--gradient-accent);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.7rem;
            flex-shrink: 0;
        }

        .waitlist-form {
            display: flex;
            gap: 16px;
            margin-bottom: 32px;
            position: relative;
        }

        .waitlist-input {
            flex: 1;
            padding: 20px 24px;
            font-size: 1.05rem;
            border: 2px solid var(--border);
            border-radius: 16px;
            background: var(--cream);
            color: var(--charcoal);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-family: 'Inter', sans-serif;
            outline: none;
        }

        .waitlist-input:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 4px var(--glow);
            background: var(--white);
        }

        .waitlist-input::placeholder {
            color: var(--light-gray);
            transition: opacity 0.3s ease;
        }

        .waitlist-input:focus::placeholder {
            opacity: 0.7;
        }

        .waitlist-button {
            padding: 20px 32px;
            font-size: 1.05rem;
            font-weight: 600;
            border: none;
            border-radius: 16px;
            background: var(--gradient-accent);
            color: var(--white);
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            white-space: nowrap;
            font-family: 'Inter', sans-serif;
            box-shadow: 0 4px 16px rgba(212, 165, 116, 0.25);
            position: relative;
            overflow: hidden;
        }

        .waitlist-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s ease;
        }

        .waitlist-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(212, 165, 116, 0.35);
        }

        .waitlist-button:hover::before {
            left: 100%;
        }

        .waitlist-button:active {
            transform: translateY(0);
        }

        .waitlist-message {
            margin-top: 24px;
            font-size: 1rem;
            font-weight: 500;
            min-height: 24px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .success-message {
            color: #7a9471;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .error-message {
            color: var(--dusty-rose);
        }

        .loading-message {
            color: var(--medium-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .spinner {
            width: 16px;
            height: 16px;
            border: 2px solid var(--border);
            border-top: 2px solid var(--medium-gray);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Footer */
        footer {
            background: var(--gradient-primary);
            padding: 100px 0 50px;
            border-top: 1px solid var(--border);
        }

        .footer-content {
            text-align: center;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 60px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .footer-link {
            color: var(--dark-gray);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 20px 32px;
            background: var(--gradient-card);
            border-radius: 16px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid var(--border);
            font-weight: 500;
        }

        .footer-link:hover {
            color: var(--charcoal);
            background: var(--white);
            transform: translateY(-4px);
            box-shadow: 0 12px 40px var(--shadow);
        }

        .footer-copyright {
            color: var(--light-gray);
            font-size: 1rem;
            border-top: 1px solid var(--border);
            padding-top: 40px;
            font-style: italic;
            line-height: 1.6;
        }

        /* Scroll animations */
        .scroll-fade {
            opacity: 0;
            transform: translateY(50px);
            transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .scroll-fade.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .container { padding: 0 20px; }
            .hero { padding: 140px 0 100px; }
            .hero h1 { font-size: 3.5rem; }
            .verses-grid { grid-template-columns: 1fr; }
            .nav-links { display: none; }
            .footer-links { flex-direction: column; align-items: center; gap: 30px; }
            .waitlist-form { flex-direction: column; }
            .waitlist-container { padding: 60px 32px; margin: 0 16px; }
            .waitlist-benefits { grid-template-columns: 1fr; }
            .section-title { font-size: 3rem; }
            .verse-title { font-size: 2.8rem; }
        }

        @media (max-width: 480px) {
            .waitlist-container { padding: 48px 24px; }
            .waitlist h2 { font-size: 2.4rem; }
        }


:root {
            --soft-white: #fefefe;
            --warm-cream: #fdf9f3;
            --gentle-peach: #faf0e8;
            --soft-lavender: #f3f0f7;
            --pale-rose: #f9f3f5;
            --sage-green: #e8f0e6;
            --misty-blue: #e6f1f5;
            --warm-beige: #f4f1ec;
            --text-primary: #4a4a4a;
            --text-secondary: #6b6b6b;
            --text-light: #8e8e8e;
            --accent-gold: #c6a878;
            --accent-rose: #d4a5a5;
            --accent-sage: #9db09a;
            --border-soft: #e8e4df;
            --shadow-gentle: rgba(139, 125, 107, 0.08);
            --glow-soft: rgba(198, 168, 120, 0.15);
        }

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

        body {
            font-family: 'Open Sans', sans-serif;
            background: linear-gradient(135deg, var(--warm-cream) 0%, var(--gentle-peach) 50%, var(--soft-lavender) 100%);
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 25px;
        }

        /* Soft animated background */
        .floating-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .floating-petal {
            position: absolute;
            opacity: 0.6;
            animation: gentleFloat 25s infinite ease-in-out;
        }

        .petal-1 {
            top: 10%;
            left: 10%;
            font-size: 1.2rem;
            color: var(--accent-rose);
            animation-delay: 0s;
        }

        .petal-2 {
            top: 30%;
            right: 15%;
            font-size: 1rem;
            color: var(--accent-sage);
            animation-delay: -8s;
        }

        .petal-3 {
            top: 60%;
            left: 20%;
            font-size: 0.9rem;
            color: var(--accent-gold);
            animation-delay: -15s;
        }

        .petal-4 {
            top: 80%;
            right: 30%;
            font-size: 1.1rem;
            color: var(--accent-rose);
            animation-delay: -20s;
        }

        @keyframes gentleFloat {
            0%, 100% {
                transform: translateY(0) rotate(0deg) scale(1);
                opacity: 0.3;
            }
            25% {
                transform: translateY(-20px) rotate(5deg) scale(1.05);
                opacity: 0.6;
            }
            50% {
                transform: translateY(-10px) rotate(-3deg) scale(0.98);
                opacity: 0.4;
            }
            75% {
                transform: translateY(-15px) rotate(7deg) scale(1.02);
                opacity: 0.5;
            }
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(254, 254, 254, 0.92);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid var(--border-soft);
            z-index: 1000;
            transition: all 0.4s ease;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 0;
        }

        .logo {
            font-family: 'Dancing Script', cursive;
            font-size: 2rem;
            font-weight: 600;
            color: var(--accent-gold);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .logo:hover {
            color: var(--accent-rose);
            transform: scale(1.05);
        }

        .nav-links {
            display: flex;
            gap: 35px;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding: 8px 0;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--accent-gold), var(--accent-rose));
            transition: width 0.4s ease;
        }

        .nav-links a:hover {
            color: var(--text-primary);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            padding: 140px 0 100px;
            text-align: center;
            background: linear-gradient(135deg, var(--warm-cream) 0%, var(--pale-rose) 100%);
            position: relative;
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            animation: softFadeIn 1.2s ease-out;
        }

        .hero-greeting {
            font-family: 'Dancing Script', cursive;
            font-size: 1.6rem;
            color: var(--accent-sage);
            margin-bottom: 20px;
            opacity: 0;
            animation: softFadeIn 1.5s ease-out 0.3s forwards;
        }

        .hero h1 {
            font-family: 'Noto Sans Devanagari', sans-serif;
            font-size: 4rem;
            font-weight: 600;
            color: var(--accent-gold);
            margin-bottom: 25px;
            text-shadow: 2px 2px 4px rgba(198, 168, 120, 0.1);
            opacity: 0;
            animation: softFadeIn 1.5s ease-out 0.6s forwards;
        }

        .hero-subtitle {
            font-family: 'Libre Baskerville', serif;
            font-size: 1.3rem;
            color: var(--text-secondary);
            font-style: italic;
            margin-bottom: 30px;
            opacity: 0;
            animation: softFadeIn 1.5s ease-out 0.9s forwards;
        }

        .hero-description {
            font-size: 1.1rem;
            color: var(--text-light);
            line-height: 1.8;
            opacity: 0;
            animation: softFadeIn 1.5s ease-out 1.2s forwards;
        }

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

        /* Verse Section */
        .verse-section {
            padding: 100px 0;
            background: var(--sage-green);
        }

        .verse-container {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        .verse-title {
            font-family: 'Dancing Script', cursive;
            font-size: 2.8rem;
            color: var(--accent-gold);
            margin-bottom: 50px;
            position: relative;
        }

        .verse-title::after {
            content: '✨';
            position: absolute;
            top: -10px;
            right: -30px;
            animation: gentleTwinkle 3s ease-in-out infinite;
        }

        @keyframes gentleTwinkle {
            0%, 100% { opacity: 0.4; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.2); }
        }

        .verses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .verse-card {
            background: rgba(255, 255, 255, 0.7);
            padding: 35px;
            border-radius: 25px;
            border: 1px solid var(--border-soft);
            box-shadow: 0 8px 32px var(--shadow-gentle);
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
        }

        .verse-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 45px var(--glow-soft);
        }

        .sanskrit-text {
            font-family: 'Noto Sans Devanagari', sans-serif;
            font-size: 1.4rem;
            color: var(--accent-gold);
            font-weight: 500;
            margin-bottom: 12px;
            line-height: 1.6;
        }

        .translation {
            font-family: 'Libre Baskerville', serif;
            font-size: 1rem;
            color: var(--text-secondary);
            font-style: italic;
        }

        .verse-meaning {
            background: rgba(255, 255, 255, 0.8);
            padding: 40px;
            border-radius: 25px;
            text-align: left;
            margin-top: 40px;
        }

        .verse-meaning h3 {
            font-family: 'Dancing Script', cursive;
            font-size: 2.2rem;
            color: var(--accent-rose);
            text-align: center;
            margin-bottom: 30px;
        }

        .meaning-list {
            list-style: none;
            padding: 0;
        }

        .meaning-list li {
            margin-bottom: 20px;
            padding-left: 35px;
            position: relative;
            font-size: 1.05rem;
            line-height: 1.7;
            color: var(--text-primary);
        }

        .meaning-list li::before {
            content: '🌸';
            position: absolute;
            left: 0;
            top: 0;
            animation: gentlePulse 4s ease-in-out infinite;
        }

        @keyframes gentlePulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        /* About Section */
        .about {
            padding: 120px 0;
            background: linear-gradient(135deg, var(--misty-blue) 0%, var(--warm-beige) 100%);
        }

        .about-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-title {
            font-family: 'Dancing Script', cursive;
            font-size: 3.2rem;
            color: var(--accent-gold);
            margin-bottom: 25px;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 50px;
            max-width: 900px;
            margin: 0 auto;
        }

        .about-text {
            font-size: 1.15rem;
            line-height: 1.8;
            color: var(--text-primary);
            text-align: center;
        }

        .purpose-section, .commitment-section, .why-section {
            background: rgba(255, 255, 255, 0.8);
            padding: 50px 45px;
            border-radius: 30px;
            margin: 40px 0;
            box-shadow: 0 12px 40px var(--shadow-gentle);
            transition: all 0.4s ease;
        }

        .purpose-section:hover, .commitment-section:hover, .why-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px var(--glow-soft);
        }

        .purpose-section h3, .commitment-section h3, .why-section h3 {
            font-family: 'Dancing Script', cursive;
            font-size: 2.4rem;
            color: var(--accent-sage);
            text-align: center;
            margin-bottom: 25px;
            position: relative;
        }

        .purpose-section h3::before {
            content: '✨';
            margin-right: 15px;
        }

        .commitment-section h3::before {
            content: '🌼';
            margin-right: 15px;
        }

        .why-section h3::before {
            content: '🌿';
            margin-right: 15px;
        }

        .purpose-list, .commitment-text {
            list-style: none;
            padding: 0;
        }

        .purpose-list li {
            margin-bottom: 18px;
            padding-left: 30px;
            position: relative;
            font-size: 1.1rem;
            line-height: 1.7;
        }

        .purpose-list li::before {
            content: '•';
            color: var(--accent-sage);
            position: absolute;
            left: 0;
            font-size: 1.5rem;
            top: -5px;
        }

        .highlight {
            background: linear-gradient(120deg, var(--accent-gold) 0%, transparent 100%);
            background-size: 100% 40%;
            background-repeat: no-repeat;
            background-position: 0 75%;
            padding: 2px 0;
            font-weight: 600;
        }

        /* Founder Section */
        .founder {
            padding: 120px 0;
            background: var(--warm-cream);
        }

        .founder-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .founder-quote {
            font-size: 1.4rem;
            font-style: italic;
            line-height: 1.9;
            color: var(--text-primary);
            margin-bottom: 40px;
            padding: 50px;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 30px;
            border-left: 5px solid var(--accent-gold);
            position: relative;
            box-shadow: 0 12px 40px var(--shadow-gentle);
        }

        .founder-quote::before {
            content: '"';
            font-size: 5rem;
            color: var(--accent-gold);
            opacity: 0.3;
            position: absolute;
            top: 10px;
            left: 25px;
            font-family: 'Dancing Script', cursive;
        }

        .founder-signature {
            font-family: 'Dancing Script', cursive;
            font-size: 1.6rem;
            color: var(--accent-rose);
            font-weight: 600;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--gentle-peach) 0%, var(--soft-lavender) 100%);
            padding: 80px 0 40px;
            border-top: 1px solid var(--border-soft);
        }

        .footer-content {
            text-align: center;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 50px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .footer-link {
            color: var(--text-secondary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 18px 30px;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 50px;
            transition: all 0.4s ease;
            border: 2px solid transparent;
        }

        .footer-link:hover {
            color: var(--text-primary);
            border-color: var(--accent-gold);
            background: rgba(255, 255, 255, 0.9);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px var(--shadow-gentle);
        }

        .footer-copyright {
            color: var(--text-light);
            font-size: 1rem;
            border-top: 1px solid var(--border-soft);
            padding-top: 30px;
            font-style: italic;
        }

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

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

            .nav-links {
                display: none;
            }

            .footer-links {
                flex-direction: column;
                align-items: center;
                gap: 25px;
            }

            .container {
                padding: 0 15px;
            }
        }

        /* Scroll animations */
        .scroll-fade {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease;
        }

        .scroll-fade.visible {
            opacity: 1;
            transform: translateY(0);
        }