﻿/* --- Core Styles (from Head) --- */
:root {
    --bg-color: #FAFAFA;
    --text-color: #111111;
    --secondary-text: #555555;
    --accent-color: #FF4433;
    /* Tomato red hint */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    --font-mono: 'Space Mono', monospace;
    --font-hand: 'Reenie Beanie', cursive;

    --spacing-unit: 1rem;
    --container-padding: 2rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-sans);
    font-size: 15px;
    /* Restored size */
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: var(--container-padding);
    width: 100%;
    position: relative;
    z-index: 10;
}

.brand-group {
    display: flex;
    gap: 2rem;
    max-width: 400px;
}

.logo {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
}

.brand-info {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--secondary-text);
    line-height: 1.4;
    margin-top: 0.2rem;
}

.time-display {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-color);
    text-align: right;
}

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 var(--container-padding);
    min-height: 85vh;
    /* Balanced height */
}

.image-container {
    position: relative;
    margin-bottom: 2rem;
    width: 240px;
    /* Balanced size */
    height: 240px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.handwritten-note {
    position: absolute;
    top: 20%;
    left: -120px;
    font-family: var(--font-hand);
    font-size: 1.5rem;
    transform: rotate(-15deg);
    color: var(--secondary-text);
    line-height: 1;
}

h1 {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
    overflow-wrap: break-word;
    word-break: break-word;
}

h1:first-child {
    margin-top: 0;
}

.hero-description {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--secondary-text);
    max-width: 450px;
    margin: 0 auto;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.floating-btn {
    background-color: #1a1a1a;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.floating-btn iconify-icon {
    font-size: 1.2rem;
}

/* Responsive */
@media (min-width: 2000px) {
    body {
        font-size: 18px;
    }

    .image-container {
        width: 400px;
        height: 400px;
    }

    h1 {
        font-size: 8rem;
    }
}

@media (max-width: 768px) {
    .brand-info {
        display: none;
    }

    .handwritten-note {
        left: -40px;
        top: 0;
        font-size: 1.2rem;
    }

    .image-container {
        width: 180px;
        height: 180px;
    }
}

/* --- Section Styles (from Bottom) --- */
.advantages {
    padding: var(--container-padding);
    background-color: #F8F8F8;
    display: flex;
    justify-content: center;
    padding-bottom: 4rem;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    /* Balanced gap */
    max-width: 1100px;
    width: 100%;
}

.card {
    background: #FFFFFF;
    border-radius: 1.5rem;
    /* Standard modern radius */
    padding: 2rem;
    /* Balanced Padding (Not too big, not too small) */
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.card p {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--secondary-text);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Layout Mapping - Restored Bento Structure */
.card-1 {
    grid-column: span 1;
    grid-row: span 2;
}

.card-2 {
    grid-column: span 2;
    grid-row: span 2;
}

.card-3 {
    grid-column: span 2;
}

.card-4 {
    grid-column: span 1;
}

.card-5 {
    grid-column: span 3;
}

/* Visuals - Balanced Size */
.visual {
    background: #FAFAFA;
    border-radius: 1rem;
    min-height: 140px;
    /* Balanced height */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.plant-visual {
    color: var(--accent-color);
    font-size: 3.5rem;
}

.connection-lines {
    position: absolute;
    width: 250px;
    height: 250px;
    border: 1px dashed #DDD;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hub-center {
    background: var(--accent-color);
    color: white;
    padding: 1.2rem;
    border-radius: 50%;
    font-weight: bold;
    z-index: 10;
}

.satellite {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    background: white;
    padding: 0.6rem;
    border-radius: 0.8rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    font-size: 1.1rem;
    min-width: 70px;
}

.satellite .label {
    font-size: 0.55rem;
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
}

.s1 {
    top: 18%;
    left: 22%;
}

.s2 {
    top: 18%;
    right: 22%;
}

.s3 {
    bottom: 18%;
    left: 22%;
}

.s4 {
    bottom: 18%;
    right: 22%;
}

/* Support Chat */
.support-visual {
    flex-direction: column;
    padding: 1.2rem;
    gap: 0.8rem;
}

.chat-row {
    display: flex;
    align-items: flex-end;
    gap: 0.6rem;
    width: 100%;
}

.chat-row .avatar {
    font-size: 1.2rem;
    background: white;
    padding: 0.4rem;
    border-radius: 50%;
    color: #CCC;
}

.chat-row.agent .avatar {
    color: var(--accent-color);
}

.chat-row .bubble {
    padding: 0.6rem 1rem;
    border-radius: 0.8rem;
    font-size: 0.8rem;
    max-width: 80%;
}

.chat-row.agent .bubble {
    background: #fee2e2;
    color: var(--accent-color);
    border-bottom-left-radius: 0;
}

.chat-row.user {
    justify-content: flex-end;
}

.chat-row.user .bubble {
    background: #EEE;
    border-bottom-right-radius: 0;
}

/* Purity */
.purity-visual .purity-circle {
    position: relative;
    width: 90px;
    height: 90px;
}

.purity-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: bold;
    font-size: 0.85rem;
    line-height: 1;
}

/* Graph */
.graph-visual {
    align-items: flex-end;
    padding-bottom: 0;
}

.bars-container {
    display: flex;
    gap: 0.8rem;
    height: 100%;
    width: 100%;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1.5rem;
}

.v-bar {
    width: 35px;
    background: #EEE;
    border-radius: 6px 6px 0 0;
    transition: height 1s ease;
}

.v-bar.active {
    background: linear-gradient(to top, var(--accent-color), #ff8a80);
}

/* Ecosystem Timeline Balanced */
.ecosystem {
    padding: 4rem 2rem;
    background: #FFF;
    display: flex;
    justify-content: center;
}

.timeline-container {
    max-width: 650px;
    width: 100%;
}

.timeline-container h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-family: var(--font-mono);
    color: #555;
    margin-bottom: 3rem;
    font-size: 0.95rem;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline .line {
    position: absolute;
    left: 11px;
    top: 10px;
    bottom: 40px;
    width: 2px;
    background: #EEE;
}

.step {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: #FFF;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.content {
    background: #FAFAFA;
    padding: 1.8rem;
    border-radius: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s;
}

.content:hover {
    transform: translateY(-3px);
    background: #FFF;
}

.step-label {
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--accent-color);
    display: block;
    margin-bottom: 0.5rem;
}

.content h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.content p {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

.farmer-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    background: #FFF;
    padding: 0.8rem;
    border-radius: 0.8rem;
    border: 1px solid #EEE;
}

.avatar-circle {
    width: 40px;
    height: 40px;
    background: #EEE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #555;
}

.farmer-info strong {
    font-size: 0.9rem;
}

.farmer-info span {
    font-size: 0.75rem;
    color: #888;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff3e0;
    color: #f57c00;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    margin-top: 1rem;
}

.marker.completed {
    color: #81C784;
}

.marker.active {
    color: #FFB74D;
}

.marker.pending {
    color: #E0E0E0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .card {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
}

/* --- Footer Styles --- */
.main-footer {
    background-color: #111111;
    color: #FAFAFA;
    padding: 4rem 2rem 2rem;
    margin-top: 2rem;
    border-radius: 2rem 2rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    max-width: 1100px;
    margin: 0 auto;
    gap: 3rem;
    margin-bottom: 3rem;
}

.logo.white {
    color: white;
    margin-bottom: 1rem;
}

.footer-desc {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: #888;
    max-width: 300px;
    line-height: 1.6;
}

.footer-col h4 {
    font-family: var(--font-serif);
    /* Serif headings */
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: white;
}

address {
    font-family: var(--font-sans);
    font-style: normal;
    font-size: 0.95rem;
    color: #BBB;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hover-link {
    color: white;
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.hover-link:hover {
    color: var(--accent-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.s-icon {
    width: 40px;
    height: 40px;
    background: #222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.s-icon:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.copyright {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: #555;
    margin-top: auto;
}

.desktop-hide {
    display: none;
}

/* Footer Responsive */
@media (max-width: 800px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .logo.white {
        justify-content: center;
    }

    .mobile-hide {
        display: none;
    }

    .desktop-hide {
        display: block;
        margin-top: 1rem;
    }
}




/* Editorial Section */

        .editorial-services {
            padding: 8rem 2rem;
            background-color: var(--bg-color);
            display: flex;
            justify-content: center;
        }

        .editorial-container {
            max-width: 1200px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 2.3fr;
            gap: 4rem;
        }

        .editorial-left {
            position: relative;
        }

        .sticky-wrapper {
            position: sticky;
            top: 120px;
        }

        .editorial-label {
            font-family: var(--font-mono);
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            color: var(--accent-color);
            display: block;
            margin-bottom: 2rem;
        }

        .editorial-desc {
            font-family: var(--font-sans);
            font-size: 1.2rem;
            line-height: 1.6;
            color: var(--text-color);
            max-width: 40ch;
        }

        .editorial-right {
            display: flex;
            flex-direction: column;
        }

        .service-row {
            display: flex;
            align-items: flex-start;
            gap: 3rem;
            padding: 4rem 0;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

        .service-row:last-child {
            padding-bottom: 0;
        }

        .row-number {
            font-family: var(--font-mono);
            font-size: 1rem;
            color: var(--secondary-text);
            padding-top: 0.5rem;
            font-weight: 500;
        }

        .row-content h3 {
            font-family: var(--font-serif);
            font-size: clamp(2rem, 4vw, 3.2rem);
            font-weight: 400;
            line-height: 1.1;
            letter-spacing: -0.02em;
            margin-bottom: 1.5rem;
            color: #111;
        }

        .row-content p {
            font-family: var(--font-sans);
            font-size: 1.05rem;
            color: #555;
            line-height: 1.6;
            max-width: 60ch;
        }

        @media (max-width: 900px) {
            .editorial-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .sticky-wrapper {
                position: static;
            }

            .editorial-services {
                padding: 4rem 1.5rem;
            }

            .service-row {
                flex-direction: column;
                gap: 1.5rem;
                padding: 3rem 0;
            }

            .row-number {
                padding-top: 0;
                font-size: 1.2rem;
                color: var(--accent-color);
            }
        }
    

/* Privacy Page */

        .legal-page { 
            padding: var(--container-padding); 
            max-width: 900px; 
            margin: 4rem auto; 
            flex: 1; 
            background: #FFF; 
            border-radius: 1.5rem; 
            box-shadow: 0 4px 20px rgba(0,0,0,0.02); 
            padding: 3rem 4rem; 
        }
        .legal-page h1 { font-family: var(--font-serif); font-size: 2.5rem; margin-bottom: 0.5rem; letter-spacing: -0.02em; }
        .legal-page .last-updated { font-family: var(--font-mono); font-size: 0.85rem; color: #888; margin-bottom: 3rem; display: block; border-bottom: 1px solid #EEE; padding-bottom: 1.5rem;}
        .legal-page h2 { font-family: var(--font-serif); font-size: 1.5rem; margin-top: 2.5rem; margin-bottom: 1rem; color: #111; letter-spacing: -0.01em; }
        .legal-page p, .legal-page li { font-family: var(--font-sans); font-size: 0.95rem; color: #444; margin-bottom: 1rem; line-height: 1.7; }
        .legal-page ul { margin-left: 1.5rem; margin-bottom: 1.5rem; }
        .legal-page a { color: var(--accent-color); text-decoration: none; border-bottom: 1px dotted var(--accent-color); }
        .legal-page a:hover { opacity: 0.8; }
        
        @media (max-width: 768px) {
            .legal-page { margin: 2rem 1rem; padding: 2rem; border-radius: 1rem; }
            .legal-page h1 { font-size: 2rem; }
        }
    
