/* General Body Styles */
body {
    font-family: 'Garamond', serif;
    margin: 0;
    padding: 0;
    background-color: #FFFFFF; /* Pure white for lighter background */
    color: #333333; /* Dark grey for text */
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    counter-reset: step-counter; /* Initialize counter on body */
    /* Enhanced gradient with accent green variations and subtle pink */
    background: 
        radial-gradient(circle at 75% 15%, rgba(255, 130, 160, 0.08) 0%, transparent 45%),
        radial-gradient(ellipse 120% 80% at 25% 85%, rgba(163, 177, 138, 0.20) 0%, transparent 65%),
        linear-gradient(135deg, rgba(255, 180, 120, 0.06) 0%, transparent 30%),
        radial-gradient(circle at 90% 70%, rgba(163, 177, 138, 0.14) 0%, transparent 40%),
        linear-gradient(45deg, transparent 0%, rgba(160, 140, 220, 0.10) 20%, transparent 60%),
        radial-gradient(ellipse 150% 100% at 95% 90%, rgba(255, 200, 100, 0.11) 0%, transparent 55%),
        radial-gradient(circle at 10% 50%, rgba(163, 177, 138, 0.12) 0%, transparent 50%),
        linear-gradient(90deg, transparent 0%, rgba(163, 177, 138, 0.06) 50%, transparent 100%),
        radial-gradient(ellipse 80% 120% at 60% 30%, rgba(200, 160, 140, 0.07) 0%, transparent 60%),
        linear-gradient(180deg, #ffffff 0%, #fcfcfc 40%, #f9fafa 100%);
    background-attachment: fixed;
    position: relative;
    overflow-x: hidden;
}

/* Glassmorphism overlay with grain texture */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.25) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.20) 0%, transparent 45%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.15) 0%, transparent 35%),
        radial-gradient(circle at 60% 70%, rgba(255, 255, 255, 0.18) 0%, transparent 50%),
        /* Dense grain pattern layers */
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 1px,
            rgba(255, 255, 255, 0.08) 1px,
            rgba(255, 255, 255, 0.08) 2px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 1px,
            rgba(0, 0, 0, 0.06) 1px,
            rgba(0, 0, 0, 0.06) 2px
        ),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 0.5px,
            rgba(255, 255, 255, 0.04) 0.5px,
            rgba(255, 255, 255, 0.04) 1px
        ),
        repeating-linear-gradient(
            135deg,
            transparent,
            transparent 0.5px,
            rgba(0, 0, 0, 0.03) 0.5px,
            rgba(0, 0, 0, 0.03) 1px
        ),
        /* Fine noise texture */
        repeating-conic-gradient(
            from 0deg at 50% 50%,
            rgba(255, 255, 255, 0.05) 0deg,
            transparent 2deg,
            rgba(0, 0, 0, 0.03) 4deg,
            transparent 6deg
        );
    backdrop-filter: blur(8px) saturate(1.2) contrast(1.1);
    -webkit-backdrop-filter: blur(8px) saturate(1.2) contrast(1.1);
    pointer-events: none;
    z-index: 1;
    opacity: 0.95;
    /* Multiple grain texture sizes */
    background-size: 
        100px 100px, 150px 150px, 120px 120px, 180px 180px,
        2px 2px, 2px 2px, 1px 1px, 1px 1px, 8px 8px;
    background-position: 
        0 0, 50px 50px, 100px 100px, 25px 75px,
        0 0, 0 0, 2px 2px, 2px 2px, 0 0;
    animation: grain 4s steps(20) infinite;
}

/* Enhanced grain animation */
@keyframes grain {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    5% { transform: translate(-12%, -20%) scale(1.03) rotate(1deg); }
    10% { transform: translate(-8%, -15%) scale(1.02) rotate(-0.5deg); }
    15% { transform: translate(15%, 5%) scale(0.97) rotate(0.8deg); }
    20% { transform: translate(-20%, 8%) scale(0.98) rotate(-1deg); }
    25% { transform: translate(10%, -25%) scale(1.01) rotate(0.5deg); }
    30% { transform: translate(12%, -30%) scale(1.01) rotate(-0.8deg); }
    35% { transform: translate(-15%, 20%) scale(1.02) rotate(1.2deg); }
    40% { transform: translate(-8%, 35%) scale(0.99) rotate(-0.3deg); }
    45% { transform: translate(20%, 10%) scale(1.01) rotate(0.7deg); }
    50% { transform: translate(-25%, 15%) scale(1.03) rotate(-1deg); }
    55% { transform: translate(8%, -18%) scale(0.98) rotate(0.9deg); }
    60% { transform: translate(20%, -5%) scale(0.97) rotate(-0.6deg); }
    65% { transform: translate(-10%, 30%) scale(1.02) rotate(0.4deg); }
    70% { transform: translate(-5%, 25%) scale(1.01) rotate(-0.8deg); }
    75% { transform: translate(18%, -12%) scale(0.99) rotate(1.1deg); }
    80% { transform: translate(8%, -18%) scale(1.02) rotate(-0.5deg); }
    85% { transform: translate(-22%, 8%) scale(0.98) rotate(0.6deg); }
    90% { transform: translate(-15%, 10%) scale(0.98) rotate(-0.9deg); }
    95% { transform: translate(5%, -8%) scale(1.01) rotate(0.3deg); }
}

/* Single, subtle animated blob */
body::before {
    content: '';
    position: fixed;
    width: 800px;
    height: 800px;
    background: radial-gradient(ellipse 120% 80%, rgba(255, 160, 190, 0.08) 0%, rgba(163, 177, 138, 0.12) 30%, rgba(180, 160, 220, 0.06) 60%, transparent 80%);
    top: -300px;
    right: -200px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.8;
    pointer-events: none;
    animation: subtleFloat 40s infinite ease-in-out;
    z-index: -1;
}

/* Remove the second blob */
body::after {
    display: none;
}

/* Subtle floating animation */
@keyframes subtleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-30px, 20px) scale(1.05);
    }
}

/* Remove the third blob */
main::before {
    display: none;
}

/* Add a subtle mesh gradient overlay */
main {
    padding-top: 60px; /* Adjust this value based on header height */
    position: relative;
    z-index: 2; /* Ensure content is above gradient blobs and glassmorphism */
}

/* Add additional floating elements for more depth */
.content-section::before {
    display: none;
}

.content-section {
    padding: 2rem 2rem; /* Reduced from 5rem 2rem */
    max-width: 960px; /* Wider content */
    margin: 0 auto;
    text-align: center;
    position: relative; /* For the pseudo-element positioning */
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

a {
    color: #a3b18a; /* Accent color */
    text-decoration: none;
}

a:hover {
    color: #8f9d77; /* Darker accent on hover */
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header & Navigation - Floating, Centered, Rounded */
header {
    position: fixed; /* Floating */
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto; /* Adjusts to content */
    max-width: 90%; /* Max width to prevent becoming too wide */
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 0.5rem 2rem; /* Reduced padding to make narrower */
    border-radius: 50px; /* Rounded corners for pill shape */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06); /* Clean, subtle shadow */
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.05); /* Very light border */
}

nav {
    /* max-width: 1200px; No longer needed as header controls width */
    margin: 0 auto;
    display: flex;
    justify-content: center; /* Center nav items */
    align-items: center;
    gap: 2rem; /* Increased gap between logo and ul */
}

nav .logo {
    font-size: 1.6rem; /* Increased size */
    font-weight: bold;
    color: #333333; /* Dark logo text */
    margin-right: 1.5rem; /* Increased space after logo */
}

nav .logo a {
    color: #a3b18a; /* Thematic green for logo link */
    text-decoration: none;
    transition: color 0.3s ease;
}

nav .logo a:hover {
    color: #8ca076; /* Darker green on hover */
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 3rem; /* Increased gap between nav items */
}

nav ul li {
    margin-left: 0; /* Removed margin-left, using gap now */
}

nav ul li a {
    color: #555555; /* Darker grey for nav links */
    font-weight: 600;
    font-size: 1.2rem; /* Increased font size */
}

nav ul li a:hover {
    color: #a3b18a;
    text-decoration: none;
}

/* Hero Section */
#hero {
    color: #333333; /* Dark text */
    padding: 6rem 2rem 2rem; /* Adjusted padding */
    text-align: center;
    min-height: auto; /* Remove min-height or adjust as hero is simpler now */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-content {
    max-width: 800px; /* Wider hero content */
}

#hero h1 {
    font-size: 3.5rem; /* Slightly adjusted */
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.15;
    color: #333333; /* Dark grey color */
}

#hero .subtitle {
    font-size: 1.5rem;
    color: #555555; /* Darker subtitle text */
    font-weight: 300;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: #a3b18a; /* Simple solid color */
    color: #FFFFFF; /* White text for better contrast */
    padding: 1rem 2.5rem;
    margin-top: 1.5rem;
    border-radius: 30px; /* Increased for more rounded buttons */
    font-size: 1.15rem;
    font-weight: 400; /* Reduced from 600 to make text less heavy */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s ease; /* Changed from background-color to all */
    display: inline-flex; /* To align icon and text */
    align-items: center;
    gap: 0.5em; /* Space between icon and text */
    border: none; /* Assuming no border is desired for gradient buttons */
    box-shadow: 0 4px 15px rgba(163, 177, 138, 0.15); /* Subtle shadow */
}

.cta-button:hover {
    background: #8f9d77; /* Slightly darker on hover */
    color: #FFFFFF; /* Explicitly keep text color white */
    text-decoration: none;
    transform: translateY(-2px); /* Subtle lift on hover */
    box-shadow: 0 6px 20px rgba(163, 177, 138, 0.2); /* Enhanced shadow on hover */
}

.waitlist-button {
    background: #ffffff; /* Clean white */
    color: #333333; /* Dark text on light button */
    transition: all 0.3s ease; /* Added transition */
    border: 1px solid rgba(163, 177, 138, 0.2); /* Subtle border */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Very subtle shadow */
}

.waitlist-button:hover {
    background: #f8f8f8; /* Subtle gray on hover */
    color: #333333; /* Keep dark text */
    transform: translateY(-2px); /* Subtle lift on hover */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08); /* Enhanced shadow on hover */
    border-color: rgba(163, 177, 138, 0.3);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(163, 177, 138, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 130, 160, 0.06) 0%, transparent 50%),
        rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    justify-content: center;
    align-items: center;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(12px);
    }
}

.modal-content {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(163, 177, 138, 0.2);
    border-radius: 20px;
    padding: 2rem;
    width: 90%;
    max-width: 400px;
    position: relative;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(163, 177, 138, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    animation: modalSlideIn 0.3s ease-out;
    /* Subtle grain texture overlay */
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 1px,
            rgba(255, 255, 255, 0.04) 1px,
            rgba(255, 255, 255, 0.04) 2px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 1px,
            rgba(0, 0, 0, 0.02) 1px,
            rgba(0, 0, 0, 0.02) 2px
        );
    background-size: 2px 2px, 2px 2px;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(163, 177, 138, 0.15);
    padding-bottom: 1rem;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333333;
    font-family: 'Garamond', serif;
}

.close {
    color: #999999;
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    padding: 0.2rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close:hover {
    color: #333333;
    background: rgba(163, 177, 138, 0.1);
    transform: scale(1.1);
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #555555;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

.form-group input {
    padding: 0.8rem 1rem;
    border: 1.5px solid rgba(163, 177, 138, 0.3);
    border-radius: 10px;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.form-group input:focus {
    outline: none;
    border-color: #a3b18a;
    box-shadow: 0 0 0 3px rgba(163, 177, 138, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.form-group input:hover {
    border-color: rgba(163, 177, 138, 0.5);
    background: rgba(255, 255, 255, 0.9);
}

.form-actions {
    margin-top: 0.5rem;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #a3b18a 0%, #8f9d77 100%);
    color: white;
    border: none;
    padding: 0.9rem 1.5rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(163, 177, 138, 0.3);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-button:hover:not(:disabled) {
    background: linear-gradient(135deg, #8f9d77 0%, #7a8569 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(163, 177, 138, 0.4);
}

.submit-button:disabled {
    opacity: 0.8;
    cursor: not-allowed;
    transform: none;
}

.loading-spinner {
    display: inline-block;
    animation: spin 1s linear infinite;
}

.loading-spinner svg {
    width: 16px;
    height: 16px;
}

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

.form-message {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 0.5rem;
    padding: 0.5rem;
    border-radius: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.form-message.success {
    color: #2d5a2d;
    background: rgba(163, 177, 138, 0.15);
    border: 1px solid rgba(163, 177, 138, 0.3);
    opacity: 1;
    transform: translateY(0);
}

.form-message.error {
    color: #a33;
    background: rgba(255, 170, 170, 0.15);
    border: 1px solid rgba(255, 170, 170, 0.3);
    opacity: 1;
    transform: translateY(0);
}

/* Responsive design for modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 1rem;
        padding: 1.5rem;
        max-width: none;
        width: calc(100% - 2rem);
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .form-group input {
        padding: 0.7rem 0.8rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .submit-button {
        padding: 0.8rem 1.2rem;
        font-size: 1rem;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .modal-content {
        margin: 0.5rem;
        padding: 1.2rem;
        width: calc(100% - 1rem);
        border-radius: 8px;
        border-radius: 16px;
    }
    
    .modal-header {
        margin-bottom: 1rem;
        padding-bottom: 0.8rem;
    }
    
    .modal-header h2 {
        font-size: 1.2rem;
    }
    
    .close {
        font-size: 1.5rem;
        width: 28px;
        height: 28px;
    }
}

/* Container for CTA buttons to manage layout if needed */
.cta-buttons-container {
    display: flex;
    justify-content: center;
    gap: 1rem; /* Space between buttons */
    margin-bottom: 2.5rem; /* Existing margin from .subtitle */
}

/* Default desktop text visibility */
.cta-text-desktop {
    display: inline;
}

.cta-text-mobile {
    display: none;
}

/* Button icons to override global img height: auto */
.cta-button img {
    height: 1.5em !important;
    width: auto;
}

/* Integrations Preview (Hero) */
.integrations-preview {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem; /* Spacing between items */
    flex-wrap: wrap;
}

.integrations-preview p {
    font-size: 0.9rem;
    color: #666666;
    margin: 0 0.5rem 0 0;
}

.integrations-preview img {
    height: 40px;
    width: auto; /* Maintain aspect ratio based on new height */
}

.integrations-preview span {
    background-color: #ECECEC; /* Light grey background for pills */
    color: #444444; /* Darker text for pills */
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid #D8D8D8; /* Lighter border for pills */
}

/* Wavy animation for logos */
@keyframes wave {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-8px);
    }
}

.wavy {
    animation: wave 1.3s infinite;
    position: relative; /* Needed for translateY to work as expected with surrounding elements */
}

/* Add delay for the second and third logos */
.integrations-preview img.wavy:nth-child(1) {
    animation-delay: 0s;
}

.integrations-preview img.wavy:nth-child(2) {
    animation-delay: 0.2s;
}

.integrations-preview img.wavy:nth-child(3) {
    animation-delay: 0.4s;
}

.integrations-preview img.wavy:nth-child(4) {
    animation-delay: 0.6s;
}

.integrations-preview img.wavy:nth-child(5) {
    animation-delay: 0.8s;
}

.integrations-preview img.wavy:nth-child(6) {
    animation-delay: 1.0s;
}

/* Content Sections */
.content-section h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem; /* Reduced from 3rem */
    font-weight: 600;
    text-align: center;
    color: #333333; /* Dark grey color */
    position: relative;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #a3b18a 50%, transparent 100%);
    border-radius: 2px;
}

.content-section p {
    font-size: 1.5rem;
    color: #444444; /* Darker paragraph text */
    margin-bottom: 1.5rem;
    text-align: left;
    max-width: 700px; /* Constrain paragraph width for readability */
    margin-left: auto;
    margin-right: auto;
}

.content-section.alt-bg {
    /* background-color: #F4F4F4; */ /* Removed background color */
}

/* Features Grid */
.features-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); */ /* Original */
    grid-template-columns: repeat(3, 1fr); /* Changed to 3 columns */
    gap: 2.5rem; /* Increased gap */
    margin-top: 3rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: left;
    border: 1px solid rgba(220, 220, 220, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 1px,
            rgba(255, 255, 255, 0.06) 1px,
            rgba(255, 255, 255, 0.06) 2px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 1px,
            rgba(0, 0, 0, 0.04) 1px,
            rgba(0, 0, 0, 0.04) 2px
        );
    background-size: 2px 2px, 2px 2px;
    opacity: 0.7;
    pointer-events: none;
    animation: cardGrain 8s steps(10) infinite;
}

.feature-item:hover::before {
    display: none;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04), 0 4px 15px rgba(163, 177, 138, 0.08); /* Subtle shadow */
    border-color: rgba(163, 177, 138, 0.15);
}

.feature-item h3,
.feature-item p {
    position: relative;
    z-index: 1;
}

.feature-item h3 {
    font-size: 1.5rem;
    color: #a3b18a; /* Accent color for feature titles */
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-item p {
    font-size: 1.2rem; /* Increased from 1rem for better readability */
    color: #555555; /* Darker grey for feature text */
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

/* How it Works - Steps */
.steps {
    list-style: none;
    padding: 0;
    margin-top: 3rem;
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.steps li {
    font-size: 1.5rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid #E0E0E0; /* Light border for steps */
    display: flex;
    align-items: center;
}

.steps li:before {
    content: counter(step-counter);
    counter-increment: step-counter;
    margin-right: 1.5rem;
    font-size: 1.8rem;
    font-weight: 600;
    color: #a3b18a; /* Accent color */
    min-width: 30px; /* For alignment */
    text-align: right;
}

.steps li:last-child {
    border-bottom: none;
}

.steps li strong {
    color: #333333; /* Dark text for step keyword */
    margin-right: 0.5em;
    font-weight: 600;
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem 0;
    background-color: transparent; /* Clean transparent background */
    border-top: 1px solid #F0F0F0; /* Very light border */
    font-size: 0.9rem;
    color: #777777; /* Medium grey footer text */
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-links {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #a3b18a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #8ca076;
    text-decoration: underline;
}

.footer-links span {
    color: #777777;
}

/* Mobile Navigation Styles */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-top: none;
    z-index: 1000;
    padding: 0 20px;
    align-items: center;
    justify-content: space-between;
}

.mobile-nav-logo .mobile-logo {
    height: 65px;
    width: auto;
}

.hamburger-menu {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 25px;
    height: 2px;
    background: #333333;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 70px;
    right: 20px;
    width: 200px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu-content {
    padding: 1rem 0;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-list li {
    margin: 0;
}

.mobile-menu-list a {
    display: block;
    padding: 0.8rem 1.2rem;
    font-size: 1rem;
    font-weight: 500;
    color: #333333;
    text-decoration: none;
    font-family: 'Garamond', serif;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0 0.5rem;
}

.mobile-menu-list a:hover {
    color: #a3b18a;
    background: rgba(163, 177, 138, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    header {
        display: none;
    }
    
    .mobile-nav {
        display: flex;
    }
    
    .mobile-menu-overlay {
        display: block;
    }
    
    main {
        padding-top: 70px;
    }
    
    #photos-to-insights {
        display: none;
    }
    
    #photos-to-insights + .quote-section {
        display: none;
    }
    #hero {
        padding: 6rem 1rem 2rem;
    }
    #hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    #hero .subtitle {
        font-size: 1.1rem;
        margin: 1.5rem auto;
        text-align: center;
        padding-left: 0;
    }
    .integrations-preview {
        gap: 0.5rem;
        margin: 1rem 0;
    }
    .integrations-preview img {
        height: 30px;
    }
    .cta-buttons-container {
        gap: 0.5rem;
        justify-content: center;
        flex-wrap: wrap;
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        margin: 0.05rem 0;
    }
    
    .cta-text-desktop {
        display: none;
    }
    
    .cta-text-mobile {
        display: inline;
    }
    
    .cta-button {
        pointer-events: none;
        cursor: default;
        opacity: 0.7;
    }
    
    .waitlist-button {
        pointer-events: auto;
        cursor: pointer;
        opacity: 1;
    }
    .content-section {
        padding: 0 1rem;
    }
    .content-section h2 {
        font-size: 2rem;
        line-height: 1.3;
        margin-top: 0 !important;
    }
    .insights-container {
        flex-direction: column;
        gap: 0rem;
        padding: 0;
        margin: 0;
    }
    
    .unified-insights {
        margin-top: -3rem !important;
    }
    
    .arrow-container {
        margin-top: -2rem !important;
        margin-bottom: -1rem !important;
        height: 30px !important;
    }
    
    .arrow-svg {
        height: 15px !important;
    }
    .screenshots-stack {
        min-width: unset;
        flex-shrink: 0;
        position: relative;
        margin: 0 0 -2rem 0 !important;
        padding: 0 !important;
    }
    .screenshot {
        max-width: 150px;
    }
    /* Bring photos closer together on mobile for both sections */
    .screenshots-stack {
        width: 300px !important;
        height: 400px !important;
    }
    #photos-to-insights .screenshots-stack {
        height: 250px !important;
    }
    #notes-to-insights .screenshot-1 {
        top: 140px !important;
        left: 60px !important;
    }
    #notes-to-insights .screenshot-2 {
        top: 0px !important;
        left: 100px !important;
    }
    #notes-to-insights .screenshot-3 {
        top: 80px !important;
        left: 200px !important;
    }
    #notes-to-insights .screenshot-4 {
        top: 220px !important;
        left: 140px !important;
    }
    #notes-to-insights .screenshot-5 {
        top: 30px !important;
        left: 0px !important;
    }
    #photos-to-insights .screenshot-1 {
        width: 280px !important;
        top: 180px !important;
        left: 60px !important;
        position: absolute !important;
    }
    #photos-to-insights .screenshot-2 {
        width: 150px !important;
        top: 30px !important;
        left: 30px !important;
        position: absolute !important;
    }
    #photos-to-insights .screenshot-3 {
        width: 150px !important;
        top: 50px !important;
        left: 200px !important;
        position: absolute !important;
    }
    #photos-to-insights .screenshot-4 {
        width: 150px !important;
        top: 0px !important;
        left: 140px !important;
        position: absolute !important;
    }
    /* Make insights text smaller on mobile - readable but compact */
    .unified-insights .insights-text-box {
        width: 280px !important;
        padding: 0.5rem 1rem 1rem 1rem !important;
        font-size: 0.6rem !important;
        line-height: 1.3 !important;
        margin: 0 !important;
    }
    .unified-insights {
        margin: 0 !important;
        padding: 0 !important;
    }
    /* Turn arrow to face down on mobile */
    .arrow-svg {
        transform: rotate(90deg) !important;
    }
    .unified-insights .insights-text-box h3 {
        font-size: 0.6rem !important;
        margin: 0 0 0.3rem 0 !important;
    }
    .unified-insights .insights-text-box p {
        font-size: 0.6rem !important;
        margin: 0 0 0.3rem 0 !important;
    }
    .unified-insights .insights-text-box .insights-content {
        font-size: 0.6rem !important;
    }
    .unified-insights .insights-text-box ol {
        font-size: 0.6rem !important;
        margin: 0 0 0.3rem 0 !important;
        padding-left: 0.6rem !important;
    }
    .unified-insights .insights-text-box li {
        font-size: 0.6rem !important;
        margin-bottom: 0.2rem !important;
    }
    .arrow-container {
        min-width: 0 !important;
        flex-shrink: 0;
        display: flex;
        margin: 0 !important;
        padding: 0 !important;
        align-items: center;
        justify-content: center;
    }
    .arrow-svg {
        width: 40px;
        height: 20px;
    }
    .unified-insights {
        min-width: 300px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }
    .insights-text-box {
        padding: 1.5rem;
    }
    .insights-text-box h3 {
        font-size: 1.3rem;
    }
    .quote-section {
        padding: 2rem 1rem;
    }
    .quote-text {
        font-size: 1.3rem;
    }
    .tweets-graphs-container {
        padding: 1rem;
    }
    .tweet-analysis-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .tweet-image, .analysis-image {
        max-width: 100%;
        height: auto;
    }
    .questions-container {
        padding: 1rem;
    }
    .query-types-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .idea-categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .share-interface {
        padding: 1rem;
    }
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    .footer-links span:nth-child(even) {
        display: none; /* Hide bullet points on mobile */
    }
}

@media (max-width: 480px) {
    header {
        padding: 0.5rem 0.8rem;
    }
    nav {
        gap: 0.5rem;
    }
    nav .logo {
        font-size: 1rem;
    }
    nav ul {
        gap: 0.7rem;
    }
    nav ul li a {
        font-size: 0.8rem;
        padding: 0.3rem 0.5rem;
    }
    main {
        padding-top: 20px;
    }
    #hero {
        padding: 5rem 0.8rem 1.5rem;
    }
    #hero h1 {
        font-size: 2rem;
        line-height: 1.1;
    }
    #hero .subtitle {
        font-size: 1rem;
    }
    .integrations-preview img {
        height: 25px;
    }
    .content-section {
        padding: 0 0.8rem;
    }
    .content-section h2 {
        font-size: 1.7rem;
        margin-top: 0 !important;
    }
    .screenshots-stack {
        min-width: 200px;
    }
    .screenshot {
        max-width: 120px;
    }
    /* Even tighter spacing on very small screens */
    .screenshots-stack {
        width: 250px !important;
        height: 350px !important;
    }
    #photos-to-insights .screenshots-stack {
        height: 200px !important;
    }
    #notes-to-insights .screenshot-1 {
        top: 120px !important;
        left: 50px !important;
    }
    #notes-to-insights .screenshot-2 {
        top: 0px !important;
        left: 80px !important;
    }
    #notes-to-insights .screenshot-3 {
        top: 70px !important;
        left: 160px !important;
    }
    #notes-to-insights .screenshot-4 {
        top: 190px !important;
        left: 120px !important;
    }
    #notes-to-insights .screenshot-5 {
        top: 25px !important;
        left: 0px !important;
    }
    #photos-to-insights .screenshot-1 {
        width: 220px !important;
        top: 150px !important;
        left: 50px !important;
        position: absolute !important;
    }
    #photos-to-insights .screenshot-2 {
        width: 120px !important;
        top: 25px !important;
        left: 25px !important;
        position: absolute !important;
    }
    #photos-to-insights .screenshot-3 {
        width: 120px !important;
        top: 45px !important;
        left: 160px !important;
        position: absolute !important;
    }
    #photos-to-insights .screenshot-4 {
        width: 120px !important;
        top: 0px !important;
        left: 120px !important;
        position: absolute !important;
    }
    /* Smaller insights text on very small screens */
    .unified-insights .insights-text-box {
        width: 240px !important;
        padding: 0.3rem 0.8rem 0.8rem 0.8rem !important;
        font-size: 0.55rem !important;
        line-height: 1.3 !important;
        margin-top: -3rem !important;
    }
    .unified-insights .insights-text-box h3 {
        font-size: 0.55rem !important;
        margin: 0 0 0.25rem 0 !important;
    }
    .unified-insights .insights-text-box p {
        font-size: 0.55rem !important;
        margin: 0 0 0.25rem 0 !important;
    }
    .unified-insights .insights-text-box .insights-content {
        font-size: 0.55rem !important;
    }
    .unified-insights .insights-text-box ol {
        font-size: 0.55rem !important;
        margin: 0 0 0.25rem 0 !important;
        padding-left: 0.5rem !important;
    }
    .unified-insights .insights-text-box li {
        font-size: 0.55rem !important;
        margin-bottom: 0.15rem !important;
    }
    .arrow-container {
        min-width: 50px;
        height: 20px !important;
    }
    .arrow-svg {
        width: 30px;
        height: 10px !important;
    }
    .unified-insights {
        min-width: 280px;
    }
    .insights-text-box {
        padding: 1rem;
    }
    .insights-text-box h3 {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    .insights-content p {
        font-size: 0.9rem;
    }
    .quote-text {
        font-size: 1.1rem;
    }
    .author-name {
        font-size: 0.9rem;
    }
    .author-title {
        font-size: 0.8rem;
    }
    .idea-categories {
        grid-template-columns: 1fr;
    }
    .idea-category {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .final-cta-subtitle {
        font-size: 1rem !important;
    }
    
    .source-understanding p {
        font-size: 1rem;
    }
}

.hero-highlight {
    font-size: 1em; /* Or adjust as needed */
    border-top: 1.5px solid rgba(163, 177, 138, 0.6); /* Green borders */
    border-bottom: 1.5px solid rgba(163, 177, 138, 0.6); /* Green borders */
    padding: 0.1em 0.3em; /* Adjust padding as needed */
    display: inline-block; /* Allows for padding and borders */
    font-style: italic;
    font-weight: 500;
    background: 
        /* 3 equally spaced notebook lines */
        linear-gradient(
            0deg,
            transparent 0%,
            transparent 24%,
            rgba(163, 177, 138, 0.5) 24%,
            rgba(163, 177, 138, 0.5) 26%,
            transparent 26%,
            transparent 49%,
            rgba(163, 177, 138, 0.5) 49%,
            rgba(163, 177, 138, 0.5) 51%,
            transparent 51%,
            transparent 74%,
            rgba(163, 177, 138, 0.5) 74%,
            rgba(163, 177, 138, 0.5) 76%,
            transparent 76%,
            transparent 100%
        ),
        /* Original background gradient */
        linear-gradient(to right, rgba(163, 177, 138, 0.15) 0%, rgba(143, 188, 143, 0.12) 100%);
    border-radius: 4px;
}

/* Card grain animation */
@keyframes cardGrain {
    0%, 100% { transform: translate(0, 0); }
    20% { transform: translate(-1px, 1px); }
    40% { transform: translate(1px, -1px); }
    60% { transform: translate(-1px, -1px); }
    80% { transform: translate(1px, 1px); }
}

/* Notes to Insights Section */
#notes-to-insights {
    padding: 2rem 2rem; /* Reduced from 6rem 2rem */
}

.insights-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
}

/* Screenshots Stack (Left Side) */
.screenshots-stack {
    position: relative;
    width: 450px;
    height: 550px;
    flex-shrink: 0;
}

.screenshot {
    position: absolute;
    width: 200px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot:hover {
    transform: translateY(-10px) scale(1.05) !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    z-index: 10 !important;
}

/* Extremely chaotic positioning - cards scattered in all directions */
.screenshot-1 {
    top: 180px;
    left: 80px;
    z-index: 3;
    transform: rotate(0deg);
}

.screenshot-2 {
    top: 0px;
    left: 150px;
    z-index: 2;
    transform: rotate(0deg);
}

.screenshot-3 {
    top: 100px;
    left: 300px;
    z-index: 4;
    transform: rotate(5deg);
}

.screenshot-4 {
    top: 280px;
    left: 200px;
    z-index: 5;
    transform: rotate(-5deg);
}

.screenshot-5 {
    top: 40px;
    left: 0px;
    z-index: 1;
    transform: rotate(-10deg);
}

/* Specific styling for photos-to-insights section */
#photos-to-insights .screenshot-1 {
    width: 400px;
    top: 250px;
    left: 80px;
    z-index: 3;
}

#photos-to-insights .screenshot-2 {
    width: 200px;
    top: 40px;
    left: 50px;
    z-index: 2;
}

#photos-to-insights .screenshot-3 {
    width: 200px;
    top: 60px;
    left: 300px;
    z-index: 4;
}

#photos-to-insights .screenshot-4 {
    width: 200px;
    top: 0px;
    left: 200px;
    z-index: 1;
}

#photos-to-insights .insights-image {
    width: 600px; /* image.png - larger than default */
}

/* Remove filter from hover state for photos-to-insights insights image */
#photos-to-insights .insights-image:hover {
    transform: scale(1.08) translateY(-8px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2), 0 8px 32px rgba(163, 177, 138, 0.15);
    filter: none; /* Remove brightness and contrast filter */
}

/* Arrow Container (Center) */
.arrow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.arrow-svg {
    width: 60px;
    height: 40px;
    opacity: 0.8;
}

/* Unified Insights (Right Side) */
.unified-insights {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Insights Image Styling */
.insights-image {
    width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.insights-image:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2), 0 8px 24px rgba(163, 177, 138, 0.15);
}

/* Insights Text Box Styling - Apple Notes Style with Borders */
.insights-text-box {
    width: 350px;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #333;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}


/* Timestamp component */
.insights-timestamp {
    font-size: 0.75rem;
    color: #888;
    font-weight: 400;
    margin-bottom: 0.5rem;
    display: block;
}

/* Share component */
.insights-share {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

/* Meta container for timestamp and share */
.insights-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.share-icon {
    width: 24px;
    height: 24px;
    padding: 4px;
    border-radius: 6px;
    background: rgba(248, 248, 248, 0.8);
    border: 1px solid rgba(220, 220, 220, 0.3);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-icon:hover {
    background: rgba(163, 177, 138, 0.1);
    border-color: rgba(163, 177, 138, 0.3);
    transform: translateY(-1px);
}

.share-icon svg {
    width: 16px;
    height: 16px;
    fill: #666;
}

.share-icon:hover svg {
    fill: #a3b18a;
}

.insights-text-box h3 {
    margin: 0 0 0.8rem 0;
    font-weight: 600;
    font-style: normal;
    font-size: 0.9rem;
    color: #333;
    text-align: left;
}

.insights-text-box .insights-content {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #333;
}

.insights-text-box p {
    margin: 0 0 0.8rem 0;
    font-size: 0.9rem !important;
    color: #333;
}

.insights-text-box ol {
    margin: 0 0 0.8rem 0;
    padding-left: 1.2rem;
    font-size: 0.9rem !important;
    color: #333;
}

.insights-text-box li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem !important;
    color: #333;
}

.insights-text-box p:last-child {
    margin-bottom: 0;
}
/* Quote Section */
.quote-section {
    padding: 1rem 2rem; /* Keep existing minimal padding */
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quote-container {
    max-width: 700px;
    text-align: center;
}

.quote-text {
    font-size: 1.5rem;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: #666666;
    margin: 0 0 2rem 0;
    line-height: 1.4;
    font-weight: 400;
}

.quote-text em {
    font-style: italic;
    font-weight: 500;
}

.quote-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f0f0f0;
}

.author-info {
    text-align: left;
}

.author-name {
    font-size: 1.8rem;
    font-weight: 600;
    font-style: italic;
    color: #2c2c2c;
    margin: 0;
}

.author-title {
    font-size: 1rem;
    font-weight: 400;
    color: #666666;
    margin: 0;
    font-style: normal;
}

/* Responsive adjustments for quote section */
@media (max-width: 768px) {
    .quote-text {
        font-size: 1.3rem;
    }
    
    .author-image {
        width: 50px;
        height: 50px;
    }
    
    .author-name {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .quote-text {
        font-size: 1.1rem;
    }
    
    .author-image {
        width: 40px;
        height: 40px;
    }
    
    .author-name {
        font-size: 0.8rem;
    }
}

/* Journey Component - Modern Horizontal Flow */
.journey-container {
    margin-top: 1rem; /* Reduced from 4rem */
    padding: 2rem 0; /* Reduced from 3rem 0 */
    background: linear-gradient(135deg, rgba(163, 177, 138, 0.05) 0%, rgba(143, 157, 119, 0.1) 100%);
    border-radius: 24px;
    position: relative;
    overflow: visible; /* Changed from hidden to visible to show the arrow */
}

/* Alternative approach - position relative to features grid */
#features .features-grid {
    position: relative;
}

#features .features-grid::after {
    content: '';
    position: absolute;
    bottom: -40px;           /* Reduced from -30px to prevent cropping */
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 200px solid transparent;    /* Increased from 40px for wider triangle */
    border-right: 200px solid transparent;   /* Increased from 40px for wider triangle */
    border-bottom: 25px solid rgba(163, 177, 138, 0.3);  /* Made transparent */
    filter: drop-shadow(0 2px 8px rgba(163, 177, 138, 0.3));
    z-index: 10;
}

.journey-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    gap: 2rem;
}

.journey-step {
    flex: 1;
    max-width: 280px;
    text-align: center;
    padding: 2rem 1.5rem;
    background: transparent;
    border: none;
    border-radius: 16px;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Add arrows between journey steps */
.journey-steps::before,
.journey-steps::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid #a3b18a;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    z-index: 10;
}

.journey-steps::before {
    left: calc(33.33% - 10px);
}

.journey-steps::after {
    left: calc(66.66% - 10px);
}

.step-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #a3b18a 0%, #8f9d77 100%);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 16px rgba(163, 177, 138, 0.3);
    transition: all 0.3s ease;
}

.step-content h4 {
    color: #2c3e2d;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 0.8rem 0;
    transition: color 0.3s ease;
}

.step-content p {
    color: #5a6b5d;
    font-size: 1rem;
    text-align: center;
    line-height: 1.5;
    margin: 0;
    transition: color 0.3s ease;
}

/* Responsive adjustment for journey arrows */
@media (max-width: 768px) {
    .journey-steps::before,
    .journey-steps::after {
        display: none;
    }
}

/* Share Gold Nuggets Section */
#share-nuggets {
    padding: 2rem 2rem; /* Reduced from 4rem 2rem */
    margin: 1rem auto; /* Reduced from 2rem auto */
}

#share-nuggets .share-subtitle {
    font-size: 1.5rem;
    color: #555555;
    margin-bottom: 2rem; /* Reduced from 3rem */
    text-align: center;
    font-weight: 400;
}

.share-interface {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}

.share-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    transform: translateX(-100px);
}

.insight-preview {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(163, 177, 138, 0.3);
    border-radius: 16px;
    padding: 2rem;
    width: 220px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-bottom: -60px;
}

.preview-lines {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
}

.preview-line {
    height: 12px;
    background: linear-gradient(90deg, 
        rgba(163, 177, 138, 0.4) 0%, 
        rgba(163, 177, 138, 0.2) 50%, 
        rgba(163, 177, 138, 0.1) 100%);
    border-radius: 6px;
}

.preview-line.long {
    width: 100%;
}

.preview-line.medium {
    width: 75%;
}

.preview-line.short {
    width: 50%;
}

.share-button {
    background: linear-gradient(135deg, #a3b18a 0%, #8f9d77 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(163, 177, 138, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.share-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.5s ease;
}

.insight-bubble {
    position: absolute;
    right: -230px;
    top: 50%;
    transform: translateY(-50%);
    background: #007AFF;
    border: none;
    border-radius: 20px;
    padding: 1rem 1.2rem;
    font-size: 1rem;
    color: white;
    font-style: normal;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-weight: 400;
    text-align: left;
    max-width: 200px;
    line-height: 1.4;
    box-shadow: 0 2px 8px rgba(0, 122, 255, 0.3);
}

.insight-bubble::before {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid #007AFF;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .share-interface {
        flex-direction: column;
        gap: 2rem;
    }
    
    .share-center {
        transform: none;
    }
    
    .insight-preview {
        width: 180px;
        height: 120px;
        padding: 1.5rem;
        margin-bottom: -12px;
    }
    
    .insight-bubble {
        position: static;
        transform: none;
        margin-top: 1rem;
        max-width: 280px;
        align-self: flex-start;
        margin-left: 2rem;
    }
    
    .insight-bubble::before {
        display: none;
    }
    
    .insight-bubble::after {
        display: none !important;
    }
    
    #share-nuggets .share-subtitle {
        font-size: 1.1rem;
    }
    
    .final-cta-subtitle {
        font-size: 1.1rem !important;
    }
    
    .idea-bank-container {
        display: none;
    }
}


/* Final CTA Section */
.final-cta-subtitle {
    font-size: 1.5rem;
    color: #555555;
    margin-bottom: 2rem; /* Reduced from 3rem */
    text-align: center !important; /* Added !important to override .content-section p */
    font-weight: 400;
}

/* Hue Helps You Ask the Right Questions Section */
#right-questions {
    padding: 3rem 2rem;
}

.questions-container {
    max-width: 1000px;
    margin: 0 auto;
}

.source-understanding {
    text-align: center;
    margin-bottom: 3rem;
}

.source-understanding p {
    font-size: 1.5rem;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
}

.source-icons-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    vertical-align: middle;
    margin: 0 0.5rem;
}

.source-icons-inline .source-icon {
    width: 28px;
    height: 28px;
    padding: 4px;
    border-radius: 8px;
    background: rgba(248, 248, 248, 0.6);
    border: 1px solid rgba(220, 220, 220, 0.3);
    opacity: 0.85;
    transition: all 0.2s ease;
    vertical-align: middle;
}

.source-icons-inline .source-icon:hover {
    opacity: 1;
    transform: scale(1.1);
    background: rgba(163, 177, 138, 0.1);
    border-color: rgba(163, 177, 138, 0.3);
}

.query-types-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.source-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    padding: 12px;
    border-radius: 16px;
    background: rgba(248, 248, 248, 0.8);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.source-icon:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: rgba(163, 177, 138, 0.3);
}

.source-icon.active {
    background: linear-gradient(135deg, rgba(163, 177, 138, 0.1) 0%, rgba(143, 157, 119, 0.15) 100%);
    border-color: #a3b18a;
    box-shadow: 0 4px 16px rgba(163, 177, 138, 0.2);
}

.query-types {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.query-type h4 {
    font-size: 1rem;
    color: #a3b18a;
    margin-bottom: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.query-card {
    background: rgba(248, 248, 248, 0.95);
    border: 1px solid rgba(220, 220, 220, 0.6);
    border-radius: 25px;
    padding: 1rem 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.query-card:last-child {
    margin-bottom: 0;
}

.query-card p {
    margin: 0;
    font-size: 1.1rem;
    color: #2c2c2c;
    font-weight: 500;
    line-height: 1.4;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

.query-card:hover {
    background: rgba(245, 245, 245, 1);
    border-color: rgba(163, 177, 138, 0.8);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* Responsive design for questions section */
@media (max-width: 768px) {
    .query-types-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .source-understanding p {
        font-size: 1.1rem;
    }
    
    .source-icons-inline .source-icon {
        width: 24px;
        height: 24px;
        padding: 3px;
    }
    
    .source-icons-inline {
        gap: 0.2rem;
        margin: 0 0.3rem;
    }
    
    .query-card {
        padding: 0.7rem 1rem;
        margin-bottom: 1.2rem;
    }
    
    .query-card p {
        font-size: 0.7rem;
    }
}

/* Idea Bank (now part of right-questions section) */
.idea-bank-container {
    max-width: 1000px;
    margin: 3rem auto 0;
    text-align: center;
    border: 3px solid rgba(163, 177, 138, 0.3);
    border-radius: 24px;
    padding: 2rem 1rem;
    position: relative;
}

.idea-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 1rem;
    z-index: 1;
}

.idea-category {
    background: rgba(248, 248, 248, 0.9);
    border: 1px solid rgba(163, 177, 138, 0.2);
    border-radius: 30px;
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
}

/* Staggering effects for more organic layout */
.idea-category.stagger-1 {
    transform: rotate(-2deg) translateY(-3px);
}

.idea-category.stagger-2 {
    transform: rotate(1deg) translateY(2px);
}

.idea-category.stagger-3 {
    transform: rotate(-1.5deg) translateY(-4px);
}

.idea-category.stagger-4 {
    transform: rotate(2.5deg) translateY(3px);
}

.idea-category.stagger-5 {
    transform: rotate(-3deg) translateY(-2px);
}

.idea-category.stagger-6 {
    transform: rotate(1.5deg) translateY(4px);
}

.idea-category.stagger-7 {
    transform: rotate(-2.5deg) translateY(-1px);
}

.idea-category.stagger-8 {
    transform: rotate(2deg) translateY(2px);
}

.idea-category:hover {
    background: rgba(163, 177, 138, 0.1);
    border-color: rgba(163, 177, 138, 0.4);
    transform: translateY(-2px) rotate(0deg) !important;
    box-shadow: 0 4px 16px rgba(163, 177, 138, 0.15);
    z-index: 10;
}

.category-icon {
    font-size: 1.3rem;
    display: inline-block;
}

.category-text {
    font-size: 1rem;
    color: #444444;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

.idea-category:hover .category-text {
    color: #2c3e2d;
}

/* Responsive design for idea bank */
@media (max-width: 768px) {
    .idea-categories {
        gap: 0.8rem;
    }
    
    .idea-category {
        padding: 0.6rem 1.2rem;
    }
    
    .category-icon {
        font-size: 1.1rem;
    }
    
    .category-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .idea-category {
        padding: 0.5rem 1rem;
    }
    
    .category-icon {
        font-size: 1rem;
    }
    
    .category-text {
        font-size: 0.85rem;
    }
}

/* Tweets and Graphs Section */
#tweets-and-graphs {
    padding: 3rem 2rem;
}

.tweets-graphs-container {
    max-width: 1200px;
    margin: 0 auto;
}

.tweet-analysis-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.tweet-section,
.analysis-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tweet-image,
.analysis-image {
    max-width: 60%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.tweet-image:hover,
.analysis-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

/* Responsive design for tweets and graphs section */
@media (max-width: 768px) {
    .tweet-analysis-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tweet-image,
    .analysis-image {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .tweet-image,
    .analysis-image {
        max-width: 100%;
    }
}

