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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #fafafa;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6rem 8%;
    min-height: 90vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding-right: 4rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(44, 82, 130, 0.1);
    color: #2c5282;
    border-radius: 2rem;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 700;
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
}

/* Button Styles */
.cta-group {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #2c5282 0%, #2b6cb0 100%);
    color: white;
    text-decoration: none;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(44, 82, 130, 0.2);
}

.secondary-button {
    color: #2c5282;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* iPhone Mockup */
.phone-mockup {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    position: relative;
    animation: float 6s ease-in-out infinite;
    perspective: 1000px;
}

/* Add glow effect */
.phone-mockup::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 620px;
    background: radial-gradient(
        circle at center,
        rgba(44, 82, 130, 0.2) 0%,
        rgba(44, 82, 130, 0.1) 30%,
        transparent 70%
    );
    filter: blur(30px);
    z-index: 0;
    transition: all 0.4s ease;
    opacity: 0.7;
}

.phone-mockup:hover::before {
    transform: scale(1.1) translateY(-10px);
    opacity: 1;
    background: radial-gradient(
        circle at center,
        rgba(44, 82, 130, 0.25) 0%,
        rgba(44, 82, 130, 0.15) 30%,
        transparent 70%
    );
}

.phone-frame {
    width: 280px;
    height: 580px;
    background: #000000;
    border-radius: 45px;
    padding: 12px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform-style: preserve-3d;
    transition: transform 0.3s ease-out;
    will-change: transform;
    transform: perspective(1000px) rotateX(0) rotateY(0);
}

/* Add floating animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Add hover effect */
.phone-frame:hover {
    box-shadow: 
        30px 30px 60px -15px rgba(44, 82, 130, 0.3),
        0 0 20px rgba(44, 82, 130, 0.1);
}

.notch {
    width: 90px;
    height: 25px;
    background: #000000;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0 0 12px 12px;
    z-index: 2;
}

.screen {
    background: linear-gradient(165deg, #2B5876 0%, #4E4376 100%);
    height: 100%;
    border-radius: 35px;
    overflow: hidden;
    position: relative;
}

.screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.2) 100%
    );
}

.phone-frame::before,
.phone-frame::after {
    content: '';
    position: absolute;
    left: -2px;
    width: 3px;
    background: #424245;
    border-radius: 2px;
}

.phone-frame::before {
    top: 100px;
    height: 40px;
}

.phone-frame::after {
    top: 160px;
    height: 60px;
}

.power-button {
    position: absolute;
    right: -2px;
    top: 120px;
    width: 3px;
    height: 40px;
    background: #424245;
    border-radius: 2px;
}

/* Lock Screen */
.lock-screen {
    height: 100%;
    color: white;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.status-bar {
    padding: 12px 20px;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
}

.lock-screen-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.date {
    text-align: center;
    margin-top: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.day {
    display: block;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 4px;
}

.full-date {
    font-size: 18px;
}

/* Notification */
.quote-notification {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 14px;
    padding: 16px;
    margin: 20px 0;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.notification-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.app-icon {
    width: 22px;
    height: 22px;
    border-radius: 5px;
    margin-right: 8px;
}

.notification-title {
    display: flex;
    gap: 4px;
    align-items: center;
}

.app-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a202c;
}

.notification-time {
    font-size: 14px;
    color: #718096;
}

.notification-content .quote {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 6px;
    color: #2d3748;
}

.notification-content .reference {
    font-size: 13px;
    color: #2c5282;
    font-weight: 500;
}

.lock-screen-footer {
    display: flex;
    justify-content: space-between;
    padding: 20px 30px;
    margin-top: auto;
}

.flashlight-icon, .camera-icon {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

/* Features Section */
.features {
    padding: 8rem 8%;
    background: white;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.overline {
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c5282;
    letter-spacing: 0.1em;
}

.section-header h2 {
    font-size: 2.5rem;
    max-width: 600px;
    margin: 1rem auto;
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    opacity: 0;
    transform: translateY(20px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-content {
    text-align: left;
}

.feature-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
    font-weight: 600;
}

.feature-content p {
    color: #4a5568;
    line-height: 1.6;
}

.feature-mockup {
    background: rgba(248, 250, 252, 0.7);
    border-radius: 1rem;
    padding: 1rem;
    margin-top: auto;
    transform: translateZ(20px);
}

.app-screen {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.app-header {
    background: #2c5282;
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: 500;
}

/* Dark mode adjustments */
[data-theme="dark"] .features {
    background: #1a202c;
}

[data-theme="dark"] .feature-card {
    background: rgba(45, 55, 72, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .feature-content h3 {
    color: #f7fafc;
}

[data-theme="dark"] .feature-content p {
    color: #e2e8f0;
}

[data-theme="dark"] .feature-mockup {
    background: rgba(45, 55, 72, 0.7);
}

[data-theme="dark"] .app-screen {
    background: #1a202c;
}

/* Hover effects */
.feature-card:hover {
    transform: translateY(-5px) rotateX(5deg);
    background: rgba(255, 255, 255, 0.8);
}

[data-theme="dark"] .feature-card:hover {
    background: rgba(45, 55, 72, 0.8);
}

/* Time picker styles */
.settings-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #f7fafc;
    border-radius: 8px;
}

.time-picker {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2c5282;
}

/* Topic list styles */
.topic-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.topic-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    background: #f7fafc;
    border-radius: 8px;
}

.topic-item.selected {
    background: #ebf8ff;
    color: #2c5282;
}

.check {
    color: #2c5282;
}

/* Reflection styles */
.reflection-card {
    background: #f7fafc;
    border-radius: 8px;
    padding: 1rem;
}

.reflection-text {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    color: #4a5568;
}

.reflection-prompt {
    padding: 0.75rem;
    background: white;
    border: 1px dashed #e2e8f0;
    border-radius: 6px;
    color: #a0aec0;
    text-align: center;
    font-size: 0.9rem;
}

/* Signup Section */
.signup {
    padding: 6rem 8% 8rem;
    background: linear-gradient(135deg, #f7fafc 0%, #ebf4ff 100%);
    text-align: center;
    margin-bottom: 0;
}

.signup-content {
    max-width: 600px;
    margin: 0 auto;
}

.input-group {
    display: flex;
    gap: 0.5rem;
    max-width: 600px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.input-group input[type="email"],
.input-group select {
    flex: 1;
    min-width: 200px;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2em;
    padding-right: 2.5rem;
    cursor: pointer;
}

.input-group input[type="email"]:focus,
.input-group select:focus {
    outline: none;
    border-color: #2c5282;
    box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.1);
}

[data-theme="dark"] .input-group input[type="email"],
[data-theme="dark"] .input-group select {
    background: #2d3748;
    border-color: #4a5568;
    color: #f7fafc;
}

[data-theme="dark"] .input-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23f7fafc' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}

@media (max-width: 768px) {
    .input-group {
        flex-direction: column;
    }
    
    .input-group input[type="email"],
    .input-group select,
    .input-group .cta-button {
        width: 100%;
    }
}

/* Animations */
@keyframes slideDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Media Queries */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        padding: 4rem 5%;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .cta-group {
        justify-content: center;
    }

    h1 {
        font-size: 2.5rem;
    }

    .phone-mockup {
        padding: 2rem;
    }
    
    .phone-frame {
        width: 260px;
        height: 540px;
    }
    
    .phone-mockup::before {
        width: 280px;
        height: 560px;
    }
}

@media (max-width: 768px) {
    .input-group {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .phone-mockup {
        padding: 1rem;
    }
}

/* Add this at the end of styles.css */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #1a202c;
        color: #f7fafc;
    }

    .hero {
        background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    }

    h1 {
        background: linear-gradient(135deg, #63b3ed 0%, #90cdf4 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .subtitle {
        color: #e2e8f0;
    }

    .badge {
        background: rgba(99, 179, 237, 0.1);
        color: #63b3ed;
    }

    .secondary-button {
        color: #63b3ed;
    }

    .feature-card {
        background: #2d3748;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    }

    .feature-card p {
        color: #e2e8f0;
    }

    .feature-card h3 {
        color: #f7fafc;
    }

    .section-header h2 {
        background: linear-gradient(135deg, #63b3ed 0%, #90cdf4 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    input[type="email"] {
        background: #2d3748;
        border-color: #4a5568;
        color: #f7fafc;
    }

    input[type="email"]::placeholder {
        color: #a0aec0;
    }

    input[type="email"]:focus {
        border-color: #63b3ed;
    }

    .footer-links a {
        color: #e2e8f0;
    }

    /* Dark mode specific phone mockup adjustments */
    .phone-mockup::before {
        background: radial-gradient(
            circle at center,
            rgba(99, 179, 237, 0.2) 0%,
            rgba(99, 179, 237, 0.1) 30%,
            transparent 70%
        );
    }

    .phone-mockup:hover::before {
        background: radial-gradient(
            circle at center,
            rgba(99, 179, 237, 0.25) 0%,
            rgba(99, 179, 237, 0.15) 30%,
            transparent 70%
        );
    }

    .screen {
        background: linear-gradient(165deg, #2d3748 0%, #1a202c 100%);
    }

    .quote-notification {
        background: rgba(45, 55, 72, 0.98);
        box-shadow: 
            0 2px 10px rgba(0, 0, 0, 0.2),
            0 0 0 1px rgba(255, 255, 255, 0.05);
    }

    .app-name {
        color: #f7fafc;
    }

    .notification-time {
        color: #a0aec0;
    }

    .notification-content .quote {
        color: #e2e8f0;
    }

    .notification-content .reference {
        color: #63b3ed;
    }

    /* Dark mode hover states */
    .feature-card:hover {
        background: #364154;
    }

    .cta-button:hover {
        box-shadow: 0 10px 20px rgba(99, 179, 237, 0.2);
    }
} 

/* Add these styles for the theme toggle button */
.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1000;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
    color: #2c5282;
    transition: all 0.3s ease;
}

.theme-toggle .moon-icon {
    display: none;
}

/* Update the dark mode media query to use custom attribute */
:root {
    --bg-color: #fafafa;
    --text-color: #1a1a1a;
    /* Add all other light theme variables */
}

[data-theme="dark"] {
    --bg-color: #1a202c;
    --text-color: #f7fafc;
    /* Add all other dark theme variables */
}

/* Replace direct color values with CSS variables */
body {
    background-color: var(--bg-color);
    color: var(--text-color);
}

/* Update the theme toggle appearance in dark mode */
[data-theme="dark"] .theme-toggle {
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .theme-toggle svg {
    color: #63b3ed;
}

[data-theme="dark"] .sun-icon {
    display: none;
}

[data-theme="dark"] .moon-icon {
    display: block;
}

/* Convert all other dark mode styles to use the data-theme attribute */
[data-theme="dark"] .hero {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
}

/* Continue converting all other dark mode styles... */ 

/* Add this after the Base Styles section */
/* Background Effects */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.gradient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float-slow 20s ease-in-out infinite;
    will-change: transform;
}

/* Add more varied blob shapes */
.blob-1 {
    width: 600px;
    height: 500px;
    background: radial-gradient(circle at center, rgba(44, 82, 130, 0.15), rgba(44, 82, 130, 0.05));
    top: -10%;
    right: -10%;
    border-radius: 70% 30% 50% 50% / 50% 60% 40% 50%;
}

.blob-2 {
    width: 700px;
    height: 600px;
    background: radial-gradient(circle at center, rgba(99, 179, 237, 0.1), rgba(99, 179, 237, 0.02));
    bottom: -20%;
    left: -10%;
    animation-delay: -10s;
    border-radius: 50% 70% 30% 50% / 40% 50% 60% 50%;
}

/* Add a third blob for more depth */
.blob-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at center, rgba(66, 153, 225, 0.08), rgba(66, 153, 225, 0.01));
    top: 40%;
    right: 20%;
    animation-delay: -5s;
    border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
}

.dots-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#2c5282 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.05;
    animation: fade-in 1s ease-out;
}

/* Add subtle parallax effect */
@media (hover: hover) {
    .blob-1 { transform-origin: 100% 0%; }
    .blob-2 { transform-origin: 0% 100%; }
    .blob-3 { transform-origin: 100% 50%; }
}

/* Optimize for mobile */
@media (max-width: 768px) {
    .gradient-blob {
        filter: blur(60px);
    }
    
    .blob-1 {
        width: 300px;
        height: 250px;
    }
    
    .blob-2 {
        width: 350px;
        height: 300px;
    }
    
    .blob-3 {
        width: 200px;
        height: 200px;
    }
    
    .dots-pattern {
        background-size: 30px 30px;
    }
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .gradient-blob {
        animation: none;
        transition: none;
    }
    
    .dots-pattern {
        animation: none;
    }
}

/* Enhanced animations */
@keyframes float-slow {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(2%, 2%) rotate(5deg) scale(1.05);
    }
    50% {
        transform: translate(-1%, 4%) rotate(-5deg) scale(0.95);
    }
    75% {
        transform: translate(-3%, 1%) rotate(3deg) scale(1.02);
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 0.05;
    }
}

/* Dark mode adjustments */
[data-theme="dark"] .blob-1 {
    background: radial-gradient(circle at center, rgba(99, 179, 237, 0.15), rgba(99, 179, 237, 0.05));
}

[data-theme="dark"] .blob-2 {
    background: radial-gradient(circle at center, rgba(66, 153, 225, 0.1), rgba(66, 153, 225, 0.02));
}

[data-theme="dark"] .blob-3 {
    background: radial-gradient(circle at center, rgba(66, 153, 225, 0.08), rgba(66, 153, 225, 0.01));
}

[data-theme="dark"] .dots-pattern {
    background-image: radial-gradient(#63b3ed 1px, transparent 1px);
    opacity: 0.03;
}

/* Particle Animation */
.particle {
    position: absolute;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: moveParticle 10s linear infinite;
}

@keyframes moveParticle {
    0% {
        transform: translateY(0) translateX(0);
    }
    100% {
        transform: translateY(100vh) translateX(100vw);
    }
}

/* Add these new animations */
.gradient-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(44, 82, 130, 0.05),
        rgba(99, 179, 237, 0.05),
        rgba(66, 153, 225, 0.05),
        rgba(44, 82, 130, 0.05)
    );
    background-size: 400% 400%;
    animation: gradientMove 15s ease infinite;
}

.wave {
    position: absolute;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%232C5282' fill-opacity='0.05' d='M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: 1440px 100px;
    animation: waveMove 20s linear infinite;
    bottom: 0;
}

.wave-2 {
    animation: waveMove 15s linear infinite;
    opacity: 0.5;
    background-position-x: 200px;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes waveMove {
    0% {
        background-position-x: 0;
    }
    100% {
        background-position-x: 1440px;
    }
}

/* Dark mode adjustments */
[data-theme="dark"] .gradient-animation {
    background: linear-gradient(
        45deg,
        rgba(99, 179, 237, 0.05),
        rgba(66, 153, 225, 0.05),
        rgba(44, 82, 130, 0.05),
        rgba(99, 179, 237, 0.05)
    );
}

[data-theme="dark"] .wave {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%2363B3ED' fill-opacity='0.05' d='M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
} 

/* Thank you page styles */
.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.thanks-content {
    max-width: 600px;
    animation: slideDown 0.5s ease-out;
}

.thanks-content h1 {
    margin-bottom: 1rem;
}

.thanks-content p {
    margin-bottom: 2rem;
    color: var(--text-color);
}

.thanks-content .cta-button {
    display: inline-block;
} 

/* Add these new modern styles */

/* Glassmorphism Effect */
.feature-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    transform-style: preserve-3d;
    perspective: 1000px;
}

[data-theme="dark"] .feature-card {
    background: rgba(45, 55, 72, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Micro-interactions for buttons */
.cta-button {
    position: relative;
    overflow: hidden;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 40%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease-out;
}

.cta-button:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Modern Gradient Text */
h1, h2 {
    background: linear-gradient(120deg, #2c5282, #4299e1, #2c5282);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientText 5s ease infinite;
}

@keyframes gradientText {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Enhanced Background Animation */
.gradient-animation {
    background: linear-gradient(
        45deg,
        rgba(44, 82, 130, 0.05) 0%,
        rgba(99, 179, 237, 0.05) 25%,
        rgba(66, 153, 225, 0.05) 50%,
        rgba(44, 82, 130, 0.05) 75%,
        rgba(99, 179, 237, 0.05) 100%
    );
    background-size: 400% 400%;
    animation: gradientMove 15s ease infinite;
    filter: blur(50px);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 2rem;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(44, 82, 130, 0.5);
    border-radius: 5px;
}

/* Enhanced Input Fields */
input[type="email"] {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(44, 82, 130, 0.2);
    transition: all 0.3s ease;
}

input[type="email"]:focus {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.1);
    transform: translateY(-1px);
}

/* 3D Card Effect */
.feature-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.feature-card:hover {
    transform: translateY(-5px) rotateX(5deg);
}

.feature-mockup {
    transform: translateZ(20px);
}

/* Dark mode adjustments for new styles */
[data-theme="dark"] input[type="email"] {
    background: rgba(45, 55, 72, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] input[type="email"]:focus {
    background: rgba(45, 55, 72, 0.95);
    box-shadow: 0 0 0 3px rgba(99, 179, 237, 0.1);
}

[data-theme="dark"] ::-webkit-scrollbar-thumb {
    background: rgba(99, 179, 237, 0.5);
} 

/* Add responsive styles */
@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
} 

.shoutout {
    background: #ffeb3b;
    color: #1a202c;
    padding: 1rem;
    border-radius: 0.5rem;
    margin: 1rem 0;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: pulse 1.5s infinite;
}

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

/* Feature mockup styles */
.toggle-switch {
    background: #e2e8f0;
    border-radius: 16px;
    padding: 4px 8px;
    font-size: 12px;
    color: #718096;
}

.toggle-switch.active {
    background: #2c5282;
    color: white;
}

.topic-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.topic-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #f7fafc;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.topic-item:hover {
    background: #ebf8ff;
}

.topic-item.selected {
    background: #ebf8ff;
    color: #2c5282;
}

.check {
    color: #2c5282;
}

.verse-card {
    padding: 16px;
    background: #f7fafc;
    border-radius: 12px;
}

.verse-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.action-icon {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.action-icon:hover {
    transform: scale(1.2);
}

.verse-text {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
    color: #2d3748;
}

.context-button {
    width: 100%;
    padding: 8px;
    background: #2c5282;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.context-button:hover {
    background: #2b6cb0;
    transform: translateY(-1px);
}

/* Dark mode styles */
[data-theme="dark"] .topic-item {
    background: #2d3748;
}

[data-theme="dark"] .topic-item:hover {
    background: #4a5568;
}

[data-theme="dark"] .topic-item.selected {
    background: #2c5282;
    color: white;
}

[data-theme="dark"] .verse-card {
    background: #2d3748;
}

[data-theme="dark"] .verse-text {
    color: #e2e8f0;
}

[data-theme="dark"] .context-button {
    background: #4299e1;
}

[data-theme="dark"] .context-button:hover {
    background: #63b3ed;
} 

/* Creator Message Section */
.creator-message {
    padding: 6rem 8%;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.message-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.message-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(44, 82, 130, 0.1);
    color: #2c5282;
    border-radius: 2rem;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.creator-message h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.creator-message p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.message-signature {
    font-family: 'Palatino', serif;
    font-style: italic;
    font-size: 1.2rem;
    margin-top: 3rem;
    color: #2c5282;
}

/* Add subtle background elements */
.creator-message::before {
    content: '"';
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 15rem;
    color: rgba(44, 82, 130, 0.03);
    font-family: Georgia, serif;
    line-height: 0;
}

/* Dark mode styles */
[data-theme="dark"] .creator-message {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
}

[data-theme="dark"] .message-badge {
    background: rgba(99, 179, 237, 0.1);
    color: #63b3ed;
}

[data-theme="dark"] .creator-message h2 {
    background: linear-gradient(135deg, #63b3ed 0%, #90cdf4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

[data-theme="dark"] .creator-message p {
    color: #e2e8f0;
}

[data-theme="dark"] .message-signature {
    color: #63b3ed;
}

[data-theme="dark"] .creator-message::before {
    color: rgba(99, 179, 237, 0.03);
}

/* Responsive styles */
@media (max-width: 768px) {
    .creator-message {
        padding: 4rem 5%;
    }

    .creator-message h2 {
        font-size: 2rem;
    }

    .creator-message p {
        font-size: 1rem;
    }
} 

.privacy-policy {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.privacy-policy h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.privacy-policy section {
    margin-bottom: 2.5rem;
}

.privacy-policy h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5282;
}

.privacy-policy p {
    margin-bottom: 1rem;
}

.privacy-policy ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-policy li {
    margin-bottom: 0.5rem;
}

.navigation {
    margin-bottom: 2rem;
}

.back-link {
    color: #2c5282;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
}

.back-link:hover {
    text-decoration: underline;
}

[data-theme="dark"] .privacy-policy h2 {
    color: #90cdf4;
}

[data-theme="dark"] .back-link {
    color: #90cdf4;
}

@media (max-width: 768px) {
    .privacy-policy {
        margin: 2rem auto;
        padding: 0 1rem;
    }
    
    .privacy-policy h1 {
        font-size: 2rem;
    }
} 