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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: #2f5024;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: #2f5024;
            padding: 20px 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            z-index: 1000;
            border-bottom: 1px solid rgba(250, 247, 242, 0.1);
        }

        .header-left,
        .header-right {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .header-nav-link {
            color: #faf7f2;
            text-decoration: none;
            font-size: 15px;
            font-weight: 400;
            letter-spacing: 0.02em;
            transition: opacity 0.3s ease;
        }

        .header-nav-link:hover {
            opacity: 0.7;
        }

        .header-logo {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 24px;
            font-weight: 300;
            color: #faf7f2;
            letter-spacing: 0.1em;
            text-decoration: none;
        }

        .header-cta {
            color: #faf7f2;
            text-decoration: none;
            font-size: 15px;
            font-weight: 400;
            letter-spacing: 0.02em;
            transition: opacity 0.3s ease;
        }

        .header-cta:hover {
            opacity: 0.7;
        }

        @media (max-width: 768px) {
            header {
                padding: 15px 20px;
                gap: 20px;
            }

            .header-left,
            .header-right {
                gap: 20px;
            }

            .header-nav-link,
            .header-cta {
                font-size: 13px;
            }

            .header-logo {
                font-size: 20px;
            }
        }

        .hero-section {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            padding: 80px;
        }

        .hero-logo {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 300px;
            font-weight: 300;
            color: #faf7f2;
            letter-spacing: -0.01em;
            text-align: center;
            margin: 0;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 120px;
            right: 15%;
            font-family: 'Reenie Beanie', cursive;
            font-size: 46px;
            color: #faf7f2;
            font-weight: 400;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            transition: opacity 0.3s ease;
            transform: rotate(-3deg);
            line-height: 1.1;
            text-align: center;
        }
        
        .scroll-indicator span {
            opacity: 0;
            animation: fadeInLetter 0.1s ease forwards;
        }
        
        @keyframes fadeInLetter {
            to {
                opacity: 0.85;
            }
        }
        
        @keyframes drawArrow {
            0% {
                stroke-dashoffset: 100;
            }
            100% {
                stroke-dashoffset: 0;
            }
        }
        
        .scroll-indicator.hidden {
            opacity: 0;
        }
        
        .scroll-arrow {
            position: absolute;
            bottom: 28px;
            right: calc(15% + 205px);
            transform: rotate(-3deg);
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }
        
        .scroll-arrow.hidden {
            opacity: 0;
        }
        
        @keyframes drawArrowCurve {
            to {
                stroke-dashoffset: 0;
            }
        }
        
        @keyframes fadeInArrowHead {
            to {
                opacity: 1;
            }
        }

        @media (max-width: 768px) {
            .hero-logo {
                font-size: 90px;
            }
            
            .scroll-indicator {
                font-size: 32px;
                bottom: 100px;
                right: 10%;
            }
            
            .scroll-arrow {
                bottom: 20px;
                right: calc(10% + 150px);
            }
        }

        .problem-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 40px;
        }

        .content-wrapper {
            display: flex;
            flex-direction: column;
            gap: 40px;
            align-items: start;
            margin-bottom: 80px;
            margin-left: 100px;
            max-width: 900px;
        }

        .left-column h2 {
            font-size: 42px;
            color: #faf7f2;
            margin-bottom: 40px;
            font-weight: 600;
            white-space: nowrap;
        }

        .speech-bubbles {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-top: 0;
        }

        .bubble {
            background: white;
            padding: 20px 28px;
            border-radius: 25px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
            position: relative;
            font-size: 18px;
            color: #333;
            max-width: 100%;
            opacity: 0;
            transform: scale(0.5) translateY(20px) rotate(-8deg);
            background-image: 
                repeating-linear-gradient(
                    45deg,
                    transparent,
                    transparent 2px,
                    rgba(0,0,0,0.01) 2px,
                    rgba(0,0,0,0.01) 4px
                );
        }
        
        .bubble.animate {
            animation: popIn 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
        }
        
        @keyframes popIn {
            0% {
                opacity: 0;
                transform: scale(0.5) translateY(20px) rotate(-8deg);
            }
            60% {
                transform: scale(1.05) translateY(-2px) rotate(2deg);
            }
            100% {
                opacity: 1;
                transform: scale(1) translateY(0) rotate(0deg);
            }
        }
        
        .bubble:nth-child(1) {
            align-self: flex-start;
        }
        
        .bubble:nth-child(1).animate {
            animation-delay: 0s;
        }
        
        .bubble:nth-child(2) {
            align-self: flex-start;
        }
        
        .bubble:nth-child(2).animate {
            animation-delay: 1s;
        }
        
        .bubble:nth-child(3) {
            align-self: flex-start;
        }
        
        .bubble:nth-child(3).animate {
            animation-delay: 2s;
        }

        .bubble::after {
            content: '';
            position: absolute;
            width: 0;
            height: 0;
            border: 12px solid transparent;
            bottom: -8px;
        }

        .bubble:nth-child(odd)::after {
            left: 30px;
            border-top-color: white;
            border-left-color: white;
        }

        .bubble:nth-child(even)::after {
            right: 30px;
            border-top-color: white;
            border-right-color: white;
        }

        .right-column {
            display: flex;
            align-items: flex-start;
            justify-content: flex-start;
            margin-top: 80px;
            margin-bottom: 80px;
        }

        .right-column h2 {
            font-size: 42px;
            color: #faf7f2;
            font-weight: 600;
            line-height: 1.3;
            white-space: nowrap;
            max-width: 900px;
            width: 100%;
            text-align: right;
            padding: 0;
        }

        .tagline {
            text-align: center;
            font-size: 42px;
            color: #faf7f2;
            font-weight: 600;
            line-height: 1.4;
            max-width: 900px;
            margin: 0 auto;
            padding-top: 80px;
            padding-bottom: 100px;
            border-top: 1px solid #e0e0e0;
            border-bottom: 1px solid #e0e0e0;
        }

        .science-section {
            margin-top: 80px;
            background: white;
            padding: 160px 40px;
            margin-left: -40px;
            margin-right: -40px;
        }

        .intro-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto 100px;
            padding: 0 40px;
        }

        .intro-copy {
            /* Text content on the left */
        }

        .intro-image-wrapper {
            position: relative;
        }

        .intro-image-placeholder {
            background: #f5f5f7;
            aspect-ratio: 3/4;
            border-radius: 8px;
            display: block;
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        .section-title {
            font-size: 48px;
            color: #1d1d1f;
            font-weight: 600;
            margin-bottom: 36px;
            letter-spacing: -0.02em;
            text-align: left;
        }

        .intro-text {
            font-size: 17px;
            color: #1d1d1f;
            line-height: 1.47059;
            margin-bottom: 24px;
            font-weight: 400;
            letter-spacing: -0.022em;
            text-align: left;
        }

        .italic-emphasis {
            font-size: 48px;
            font-style: normal;
            font-weight: 600;
            color: #1d1d1f;
            margin-top: 150px;
            margin-bottom: 150px;
            letter-spacing: -0.02em;
            text-align: center;
            max-width: 920px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.2;
        }

        @media (max-width: 768px) {
            .intro-content {
                grid-template-columns: 1fr;
                gap: 40px;
                margin-bottom: 60px;
            }

            .section-title {
                font-size: 32px;
            }

            .italic-emphasis {
                font-size: 32px;
            }

            .science-cards {
                grid-template-columns: 1fr;
                max-width: 100%;
            }
        }

        .science-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: auto auto;
            gap: 30px;
            margin-top: 40px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 40px;
        }

        .card {
            background: white;
            padding: 18px;
            border-radius: 8px;
            border: 2px solid #2f5024;
            box-shadow: 0 1px 3px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
            min-height: 320px;
            display: flex;
            flex-direction: column;
            width: 100%;
        }

        .card:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            background: #2f5024;
        }

        .card:hover .card-icon,
        .card:hover h3,
        .card:hover .card-description {
            color: white;
        }

        .card:hover .reference-toggle {
            border-color: white;
            color: white;
        }

        .card-icon {
            margin-top: 20px;
            margin-bottom: 30px;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .card-icon img {
            width: 48px;
            height: 48px;
            object-fit: contain;
            transition: all 0.3s ease;
            filter: brightness(0) saturate(100%) invert(24%) sepia(18%) saturate(1688%) hue-rotate(72deg) brightness(95%) contrast(92%);
        }

        .card:hover .card-icon img {
            filter: brightness(0) saturate(100%) invert(100%);
        }

        .card h3 {
            font-size: 21px;
            color: #2f5024;
            margin-bottom: 18px;
            font-weight: 600;
            letter-spacing: 0.011em;
            transition: color 0.3s ease;
            text-align: center;
        }

        .card-description {
            font-size: 14px;
            color: #6e6e73;
            line-height: 1.42859;
            margin-bottom: 14px;
            font-weight: 400;
            letter-spacing: -0.016em;
            transition: color 0.3s ease;
            text-align: center;
        }

        .reference-toggle {
            background: transparent;
            border: 1px solid #d2d2d7;
            padding: 8px 16px;
            border-radius: 4px;
            font-size: 12px;
            color: #1d1d1f;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 400;
            letter-spacing: -0.01em;
            display: block;
            margin: 20px auto 30px auto;
        }

        .reference-toggle:hover {
            border-color: #1d1d1f;
            color: #1d1d1f;
        }

        .reference-toggle.active {
            background: #2f5024;
            border-color: #2f5024;
            color: white;
        }

        .card:hover .reference-toggle.active {
            background: white;
            border-color: white;
            color: #2f5024;
        }

        .reference-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            margin-top: 0;
        }

        .reference-content.show {
            max-height: 300px;
            margin-top: 20px;
        }

        .reference-content p {
            font-size: 12px;
            color: #6e6e73;
            line-height: 1.5;
            margin-bottom: 20px;
            font-weight: 400;
            letter-spacing: -0.01em;
            transition: color 0.3s ease;
        }

        .card:hover .reference-content p {
            color: white;
        }

        .reference-content strong {
            color: #1d1d1f;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .card:hover .reference-content strong {
            color: white;
        }

        .citation {
            font-size: 12px !important;
            color: #86868b !important;
            font-style: italic;
            margin-top: 10px;
            line-height: 1.6;
            transition: color 0.3s ease;
        }

        .card:hover .citation {
            color: white !important;
        }

        .show-more-cards {
            display: none;
            margin: 30px auto 0;
            background: transparent;
            border: 1px solid #d2d2d7;
            padding: 12px 24px;
            border-radius: 20px;
            font-size: 14px;
            color: #1d1d1f;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 400;
        }

        .show-more-cards:hover {
            border-color: #1d1d1f;
            background: #1d1d1f;
            color: white;
        }

        .show-more-cards.hidden {
            display: none;
        }

        .prebiotic-section {
            background: white;
            padding: 100px 80px;
            margin-left: -40px;
            margin-right: -40px;
            margin-top: 0;
        }

        .prebiotic-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .prebiotic-copy h2 {
            font-size: 40px;
            color: #1d1d1f;
            font-weight: 600;
            margin-bottom: 24px;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        .prebiotic-copy p {
            font-size: 17px;
            color: #1d1d1f;
            line-height: 1.7;
            margin-bottom: 24px;
            font-weight: 400;
            letter-spacing: -0.022em;
        }

        .animation-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .animation-container {
            width: 100%;
            max-width: 450px;
            aspect-ratio: 1;
            background: #f5f5f7;
            border-radius: 8px;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: flex-end;
            gap: 80px;
            padding-bottom: 100px;
            overflow: hidden;
        }

        .bacteria-group {
            display: flex;
            flex-direction: column-reverse;
            gap: 8px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .bacteria-circle {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            transition: all 1.2s ease;
            opacity: 1;
            transform: scale(1);
        }

        .bacteria-circle.hidden {
            opacity: 0;
            transform: scale(0);
        }

        .good-bacteria .bacteria-circle {
            background: #2f5024;
            box-shadow: 0 2px 8px rgba(47, 80, 36, 0.3);
        }

        .bad-bacteria .bacteria-circle {
            background: #c41e3a;
            box-shadow: 0 2px 8px rgba(196, 30, 58, 0.3);
        }

        .prebiotic-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .prebiotic-dot {
            position: absolute;
            width: 8px;
            height: 8px;
            background: #7c4dff;
            border-radius: 50%;
            opacity: 0;
            box-shadow: 0 0 10px rgba(124, 77, 255, 0.6);
        }

        .legend {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 20px;
            background: white;
            padding: 12px 20px;
            border-radius: 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .legend-circle {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .legend-circle.good {
            background: #2f5024;
        }

        .legend-circle.bad {
            background: #c41e3a;
        }

        .legend-circle.prebiotic {
            background: #7c4dff;
        }

        .legend-item span {
            font-size: 11px;
            color: #6e6e73;
            white-space: nowrap;
        }

        .replay-btn {
            margin-top: 24px;
            background: transparent;
            border: 1px solid #d2d2d7;
            padding: 10px 24px;
            border-radius: 20px;
            font-size: 14px;
            color: #1d1d1f;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 400;
        }

        .replay-btn:hover {
            border-color: #1d1d1f;
            background: #1d1d1f;
            color: white;
        }

        .how-it-works-section {
            background: white;
            padding: 0;
            margin-left: -40px;
            margin-right: -40px;
        }

        .sticky-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 100vh;
        }

        .sticky-content {
            position: sticky;
            top: 0;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            padding: 100px 80px;
        }

        .step-images {
            position: relative;
            width: 100%;
            max-width: 600px;
            aspect-ratio: 3/4;
        }

        .step-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.6s ease;
        }

        .step-image.active {
            opacity: 1;
        }

        .image-placeholder {
            width: 100%;
            height: 100%;
            background: #f5f5f7;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #86868b;
            font-size: 14px;
            object-fit: contain;
        }

        .scroll-content {
            padding: 100px 80px;
            padding-bottom: 5vh;
        }

        .step {
            min-height: 90vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 40px 0;
        }

        .step h3 {
            font-size: 48px;
            color: #1d1d1f;
            font-weight: 600;
            margin-bottom: 20px;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        .step p {
            font-size: 17px;
            color: #1d1d1f;
            line-height: 1.47059;
            font-weight: 400;
            letter-spacing: -0.022em;
            margin-bottom: 24px;
        }

        .cta-section {
            background: white;
            padding: 80px 40px 100px;
            margin-left: -40px;
            margin-right: -40px;
            text-align: center;
        }

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

        .cta-content h2 {
            font-size: 48px;
            color: #1d1d1f;
            font-weight: 600;
            margin-bottom: 40px;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        .cta-content > p {
            font-size: 18px;
            color: #6e6e73;
            line-height: 1.47059;
            font-weight: 400;
            letter-spacing: -0.022em;
            margin-bottom: 40px;
        }

        .waitlist-form {
            margin-bottom: 20px;
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            align-items: flex-start;
            max-width: 600px;
            margin: 0 auto;
        }

        .form-group {
            display: flex;
            gap: 12px;
            max-width: 600px;
            margin: 0 auto;
        }

        .form-group input {
            flex: 1;
            padding: 16px 20px;
            font-size: 17px;
            border: 1px solid #d2d2d7;
            border-radius: 8px;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: #1d1d1f;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus {
            outline: none;
            border-color: #1d1d1f;
        }

        .form-group input::placeholder {
            color: #86868b;
        }

        .cta-button {
            padding: 16px 32px;
            background: transparent;
            color: #1d1d1f;
            border: 2px solid #1d1d1f;
            border-radius: 8px;
            font-size: 17px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            white-space: nowrap;
        }

        .cta-button:hover {
            background: #1d1d1f;
            color: white;
        }

        .cta-button-secondary {
            padding: 16px 32px;
            background: #1d1d1f;
            color: white;
            border: 2px solid #1d1d1f;
            border-radius: 8px;
            font-size: 17px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            white-space: nowrap;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .cta-button-secondary:hover {
            background: white;
            color: #1d1d1f;
        }

        .price-strikethrough {
            text-decoration: line-through;
            opacity: 0.6;
            margin-left: 4px;
        }

        .button-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            text-align: center;
        }

        .button-subtext {
            font-size: 14px;
            color: #86868b;
            margin: 0;
            font-weight: 400;
            text-align: center;
        }

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

        .button-text-desktop {
            display: inline;
        }

        .button-group {
            display: flex;
            gap: 16px;
            align-items: center;
            flex-wrap: wrap;
        }

        .button-divider {
            color: #faf7f2;
            font-size: 14px;
            opacity: 0.6;
            font-weight: 400;
        }

        .form-subtext {
            font-size: 14px;
            color: #86868b;
            margin-top: 12px;
        }

        .success-message {
            display: none;
            background: #f0fdf4;
            border: 1px solid #86efac;
            padding: 20px;
            border-radius: 8px;
            margin-top: 20px;
        }

        .success-message.show {
            display: block;
        }

        .success-message p {
            color: #15803d;
            font-size: 17px;
            font-weight: 500;
            margin: 0;
        }

        .faq-section {
            background: white;
            padding: 100px 40px;
            margin-left: -40px;
            margin-right: -40px;
        }

        .faq-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-content h2 {
            font-size: 48px;
            color: #1d1d1f;
            font-weight: 600;
            margin-bottom: 40px;
            letter-spacing: -0.02em;
        }

        .faq-items {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .faq-item {
            border-bottom: 1px solid #d2d2d7;
        }

        .faq-item:first-child {
            border-top: 1px solid #d2d2d7;
        }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            padding: 24px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            text-align: left;
            font-size: 21px;
            color: #1d1d1f;
            font-weight: 500;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            transition: opacity 0.3s ease;
        }

        .faq-question:hover {
            opacity: 0.7;
        }

        .faq-icon {
            font-size: 28px;
            font-weight: 300;
            transition: transform 0.3s ease;
            flex-shrink: 0;
            margin-left: 20px;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            padding: 0;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding-bottom: 24px;
        }

        .faq-answer p {
            font-size: 17px;
            color: #6e6e73;
            line-height: 1.7;
            font-weight: 400;
            letter-spacing: -0.022em;
            margin: 0 0 20px 0;
        }
        
        .faq-answer p:last-child {
            margin-bottom: 0;
        }

        .product-section {
            background: white;
            padding: 150px 80px;
            margin-left: -40px;
            margin-right: -40px;
            margin-top: 0;
        }

        .product-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 120px;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .product-image-wrapper {
            position: relative;
        }

        .product-image-placeholder {
            background: #f5f5f7;
            aspect-ratio: 3/4;
            border-radius: 8px;
            display: block;
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        .annotation {
            position: absolute;
            display: flex;
            align-items: center;
        }

        .annotation-left {
            left: -60px;
            top: 30%;
            flex-direction: row;
        }

        .annotation-right {
            right: -60px;
            top: 60%;
            flex-direction: row-reverse;
        }

        .annotation-line {
            width: 50px;
            height: 1px;
            background: #1d1d1f;
        }

        .annotation-text {
            max-width: 200px;
        }

        .annotation-left .annotation-text {
            text-align: right;
            margin-right: 10px;
        }

        .annotation-right .annotation-text {
            text-align: left;
            margin-left: 10px;
        }

        .annotation-text strong {
            display: block;
            font-size: 19px;
            font-weight: 600;
            color: #1d1d1f;
            margin-bottom: 4px;
            letter-spacing: 0.011em;
        }

        .annotation-text p {
            font-size: 12px;
            color: #6e6e73;
            line-height: 1.5;
            font-weight: 400;
            letter-spacing: -0.01em;
        }

        .product-copy h2 {
            font-size: 40px;
            color: #1d1d1f;
            font-weight: 600;
            margin-bottom: 36px;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        .product-copy p {
            font-size: 17px;
            color: #1d1d1f;
            line-height: 1.7;
            margin-bottom: 24px;
            font-weight: 400;
            letter-spacing: -0.022em;
        }

        .product-copy p:last-child {
            margin-bottom: 0;
        }

        @media (max-width: 768px) {
            .content-wrapper {
                grid-template-columns: 1fr;
                gap: 60px;
                margin-bottom: 120px;
                margin-left: 0;
                max-width: 100%;
            }

            .bubble {
                font-size: 16px;
            }

            .speech-bubbles {
                gap: 16px;
                margin-top: 60px;
            }

            .right-column {
                margin-top: 60px;
            }

            .right-column h2 {
                font-size: 32px;
                text-align: center;
                white-space: normal;
                max-width: 300px;
                margin: 0 auto;
            }

            .tagline {
                font-size: 32px;
                padding-top: 100px;
                padding-bottom: 100px;
                padding-left: 20px;
                padding-right: 20px;
            }
            
            .tagline br {
                display: block;
                content: "";
                margin-top: 60px;
            }

            .problem-section {
                padding: 80px 20px;
            }

            .card-hidden-mobile {
                display: none;
            }

            .show-more-cards {
                display: block;
            }

            .show-more-cards.hidden {
                display: none !important;
            }

            .legend {
                gap: 6px;
                padding: 8px 10px;
                bottom: 15px;
                left: 10px;
                right: 10px;
                transform: none;
                flex-direction: column;
                align-items: flex-start;
            }

            .legend-item {
                gap: 6px;
            }

            .legend-item span {
                font-size: 10px;
            }

            .science-cards {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                grid-auto-rows: 1fr;
                padding: 0 20px;
                gap: 20px;
            }

            .card {
                height: 100%;
                min-width: 0;
            }

            .legend-circle {
                width: 8px;
                height: 8px;
                flex-shrink: 0;
            }

            .product-content {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .annotation {
                position: static;
                margin: 20px 0;
            }

            .annotation-left,
            .annotation-right {
                flex-direction: row;
            }

            .annotation-text {
                text-align: left !important;
            }

            .annotation-left .annotation-text {
                margin-right: 0;
                margin-left: 10px;
            }

            .product-copy h2 {
                font-size: 32px;
            }

            .prebiotic-content {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .prebiotic-copy h2 {
                font-size: 32px;
            }

            .animation-container {
                max-width: 100%;
                aspect-ratio: 1 / 1.5;
                padding-bottom: 100px;
                gap: 40px;
            }

            .bacteria-circle {
                width: 35px;
                height: 35px;
            }

            .bacteria-group {
                gap: 6px;
            }

            .sticky-container {
                grid-template-columns: 1fr;
                display: flex;
                flex-direction: column;
            }

            .sticky-content {
                display: contents;
            }

            .step-image[data-step="1"] {
                order: 1;
            }

            .step[data-step="1"] {
                order: 2;
            }

            .step-image[data-step="2"] {
                order: 3;
            }

            .step[data-step="2"] {
                order: 4;
            }

            .step-image[data-step="3"] {
                order: 5;
            }

            .step[data-step="3"] {
                order: 6;
            }

            .step-images {
                display: contents;
            }

            .step-image {
                opacity: 1 !important;
                position: static;
                width: 100%;
                height: auto;
                margin-bottom: 20px;
            }

            .how-it-works-section {
                margin-top: 60px;
                margin-bottom: 60px;
                margin-left: 20px;
                margin-right: 20px;
                border-radius: 8px;
            }

            .scroll-content {
                display: contents;
            }

            .step {
                min-height: auto;
                padding: 30px 0;
                margin: 0 20px;
            }

            .step h3 {
                font-size: 32px;
            }

            .step p {
                font-size: 17px;
            }

            .cta-content h2 {
                font-size: 32px;
            }

            .cta-content > p {
                font-size: 17px;
            }

            .form-group {
                flex-direction: column;
                padding: 0 20px;
            }

            .cta-section {
                padding: 80px 20px;
                margin-top: 60px;
                margin-bottom: 60px;
                margin-left: 20px;
                margin-right: 20px;
                border-radius: 8px;
            }

            .faq-section {
                padding: 80px 20px;
                margin-top: 60px;
                margin-left: 20px;
                margin-right: 20px;
                border-radius: 8px;
            }

            .faq-content h2 {
                font-size: 32px;
            }

            .faq-question {
                font-size: 17px;
                padding: 20px 0;
            }

            .faq-icon {
                font-size: 24px;
            }

            .annotation-line {
                display: none;
            }

            .annotation-left,
            .annotation-right {
                position: static;
                margin: 20px 0;
                justify-content: center;
            }

            .annotation-text {
                text-align: center !important;
                max-width: 100%;
            }

            .annotation-left .annotation-text,
            .annotation-right .annotation-text {
                margin: 0;
            }
        }

        /* Popup Modal Styles */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(4px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .popup-overlay.show {
            opacity: 1;
            visibility: visible;
        }

        .popup-modal {
            background: white;
            border-radius: 16px;
            max-width: 500px;
            width: 90%;
            padding: 48px 40px;
            position: relative;
            transform: scale(0.9);
            transition: transform 0.3s ease;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .popup-overlay.show .popup-modal {
            transform: scale(1);
        }

        .popup-close {
            position: absolute;
            top: 16px;
            right: 16px;
            background: none;
            border: none;
            font-size: 32px;
            color: #86868b;
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.2s ease;
            line-height: 1;
        }

        .popup-close:hover {
            background: #f5f5f7;
            color: #1d1d1f;
        }

        .popup-content h3 {
            font-size: 32px;
            color: #1d1d1f;
            font-weight: 600;
            margin-bottom: 12px;
            letter-spacing: -0.02em;
            text-align: center;
        }

        .popup-content > p {
            font-size: 17px;
            color: #6e6e73;
            line-height: 1.47059;
            margin-bottom: 32px;
            letter-spacing: -0.022em;
            text-align: center;
        }

        .popup-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .popup-form input {
            padding: 16px 20px;
            font-size: 17px;
            border: 1px solid #d2d2d7;
            border-radius: 8px;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: #1d1d1f;
            transition: border-color 0.3s ease;
        }

        .popup-form input:focus {
            outline: none;
            border-color: #1d1d1f;
        }

        .popup-form input::placeholder {
            color: #86868b;
        }

        .popup-button {
            padding: 16px 32px;
            background: #1d1d1f;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 17px;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.3s ease;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        .popup-button:hover {
            background: #424245;
        }

        .popup-success {
            display: none;
            background: #f0fdf4;
            border: 1px solid #86efac;
            padding: 20px;
            border-radius: 8px;
            margin-top: 20px;
        }

        .popup-success.show {
            display: block;
        }

        .popup-success p {
            color: #15803d;
            font-size: 17px;
            font-weight: 500;
            margin: 0;
        }

        /* Cookie Consent Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #1d1d1f;
            color: #faf7f2;
            padding: 24px;
            display: none;
            z-index: 10000;
            box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
        }

        .cookie-banner.show {
            display: block;
        }

        .cookie-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }

        .cookie-text {
            flex: 1;
            font-size: 15px;
            line-height: 1.6;
        }

        .cookie-text a {
            color: #faf7f2;
            text-decoration: underline;
        }

        .cookie-buttons {
            display: flex;
            gap: 12px;
        }

        .cookie-btn {
            padding: 12px 24px;
            border-radius: 6px;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            border: none;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            transition: all 0.3s ease;
        }

        .cookie-accept {
            background: #faf7f2;
            color: #1d1d1f;
        }

        .cookie-accept:hover {
            background: #e5e2dd;
        }

        .cookie-reject {
            background: transparent;
            color: #faf7f2;
            border: 1px solid #faf7f2;
        }

        .cookie-reject:hover {
            background: rgba(250, 247, 242, 0.1);
        }

        @media (max-width: 768px) {
            .cookie-content {
                flex-direction: column;
                align-items: flex-start;
            }

            .cookie-buttons {
                width: 100%;
                flex-direction: column;
            }

            .cookie-btn {
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            .popup-modal {
                padding: 40px 24px;
            }

            .popup-content h3 {
                font-size: 24px;
            }

            .popup-content > p {
                font-size: 15px;
            }

            .button-group {
                flex-direction: column;
                width: 100%;
            }

            .cta-buttons {
                flex-direction: column;
                width: 100%;
            }

            .cta-button,
            .cta-button-secondary {
                width: 100%;
                max-width: 100%;
            }

            .button-wrapper {
                width: 100%;
            }

            .button-text-desktop {
                display: none;
            }

            .button-text-mobile {
                display: inline;
            }

            .button-divider {
                display: none;
            }

            .form-group {
                flex-direction: column;
            }

            .form-group input {
                width: 100%;
            }
        }

        /* ── FOOTER ── */
        #footer {
            background: #2F5024;
            padding: 5rem 8% 2.5rem;
        }
        .footer-inner { 
            max-width: 1200px; 
            margin: 0 auto; 
        }
        .footer-top {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: end;
            margin-bottom: 3rem;
        }
        .footer-heading {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            font-size: 2.8rem;
            font-weight: 600;
            color: #FAF7F2;
            line-height: 1.15;
            margin: 0 0 1.2rem;
            letter-spacing: -0.02em;
        }
        .footer-heading em { 
            font-style: italic; 
        }
        .footer-email {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            font-size: 17px;
            font-weight: 300;
            color: rgba(250,247,242,0.75);
            text-decoration: none;
            letter-spacing: 0.03em;
            transition: color 0.2s;
        }
        .footer-email:hover { 
            color: #FAF7F2; 
        }
        .footer-privacy-link {
            color: rgba(250,247,242,0.75);
            text-decoration: underline;
            transition: color 0.2s;
        }
        .footer-privacy-link:hover {
            color: #FAF7F2;
        }
        .footer-right {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 1.5rem;
        }
        .footer-wordmark {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3rem;
            font-weight: 300;
            color: #FAF7F2;
            letter-spacing: 0.08em;
        }
        .footer-social {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            align-items: flex-end;
        }
        .footer-social-link {
            color: rgba(250,247,242,0.6);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: color 0.25s ease;
        }
        .footer-social-link span {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.15em;
        }
        .footer-social-insta:hover { 
            color: #E1306C; 
        }
        .footer-social-tiktok:hover { 
            color: #ffffff; 
        }
        .footer-divider {
            width: 100%;
            height: 1px;
            background: rgba(250,247,242,0.15);
            margin-bottom: 1.8rem;
        }
        .footer-copy {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            font-size: 0.85rem;
            font-weight: 300;
            color: rgba(250,247,242,0.4);
            text-align: center;
            margin: 0;
            letter-spacing: 0.05em;
        }
        @media (max-width: 800px) {
            .footer-top { 
                grid-template-columns: 1fr; 
                gap: 2.5rem; 
            }
            .footer-right { 
                align-items: flex-start; 
            }
            .footer-heading { 
                font-size: 2rem; 
            }
        }
