:root {
    --bg-color: #ffffff;
    --hero-bg: #4480F7;
    /* Roamy-like Blue */
    --text-primary: #1d1d1f;
    --text-secondary: #86868b;
    --heading-color: #111827;
    --accent-blue: #4480F7;
    --accent-orange: #FF6B00;
    --card-bg: #ffffff;
    --border-color: #e5e7eb;
    --font-main: 'Rethink Sans', sans-serif;
    --container-width: 1100px;
    --transition: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.8rem;
    color: var(--heading-color);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.6;
}

strong {
    color: var(--text-primary);
    font-weight: 600;
}

.text-blue {
    color: var(--accent-blue);
}

.text-orange {
    color: var(--accent-orange);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    gap: 8px;
}

.btn-primary {
    background-color: #000;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-white {
    background-color: #fff;
    color: #000000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    color: var(--accent-blue);
}

.btn:hover {
    transform: scale(1.02);
}

/* Layout Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}

.mb-large {
    margin-bottom: 80px;
}

.text-center {
    text-align: center;
}

/* Navbar */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 24px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    margin-left: 32px;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: #fff;
}

/* Hero Section */
/* Hero Section */
.hero {
    background: linear-gradient(180deg, #4480F7 0%, #4480F7 60%, #ffffff 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
    position: relative;
    overflow: hidden;
    padding-top: 140px;
    padding-bottom: 0px;
    text-align: center;
}

/* Grid lines overlay for Hero */


.hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 10;
}

.hero-text {
    max-width: 1000px;
    margin: 0 auto;
    z-index: 20;
    margin-bottom: 40px;
    /* Space between text and mascot */
}

.hero-text h1 {
    margin-bottom: 24px;
    color: #fff;
    font-size: 3.2rem;
    /* Larger title */
    line-height: 1.1;
}

.hero-text p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.35rem;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    /* Center buttons */
}

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 600px;
    /* Allocate space for the mascot */
    display: flex;
    justify-content: center;
    align-items: flex-start;
    pointer-events: none;
}

/* Mascot Image Styling */
.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
    /* Fade out the bottom to blend with white */
    -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 85%);
    mask-image: linear-gradient(to bottom, black 40%, transparent 85%);
    transform: scale(1.2);
    margin-top: -20px;
}

/* Floating Elements (Mocking the UI cards) */
.float-card {
    background: #fff;
    padding: 16px 24px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #000;
    animation: float 6s ease-in-out infinite;
}

.float-icon {
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Meet Partnerin Section */
.meet-section {
    padding-top: 120px;
    padding-bottom: 60px;
}

.big-faded-text {
    font-size: 5rem;
    font-weight: 800;
    color: #E5E7EB;
    line-height: 1;
    margin-bottom: 60px;
}

/* Zig Zag Feature Sections */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.feature-row.reverse {
    direction: rtl;
    /* Simple swap for text/image */
}

.feature-row.reverse>* {
    direction: ltr;
}

.feature-visual {
    position: relative;
    height: 400px;
    background: #F9FAFB;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Illustrations placeholders */
.illustration-mock {
    width: 80%;
    height: 80%;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    position: relative;
}

.illustration-mock::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f0f0;
}

/* Minimalist Workflow Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 80px auto 0;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 17px;
    /* Center of the dots */
    top: 50px;
    bottom: 0;
    width: 2px;
    background: #e5e5e5;
    z-index: 0;
}

/* The dynamic progress line */
.timeline-progress {
    position: absolute;
    left: 17px;
    top: 50px;
    width: 2px;
    background: linear-gradient(to bottom, #FF6B00, #FF6B00);
    height: 0;
    z-index: 1;
    transition: height 0.3s ease-out;
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 80px;
}

.timeline-content {
    opacity: 0.2;
    transition: opacity 0.5s ease;
}

.timeline-item.active .timeline-content {
    opacity: 1;
}

.timeline-marker {
    position: absolute;
    left: -40px;
    /* Adjust based on padding */
    top: 0;
    width: 12px;
    height: 12px;
    background: #000;
    border-radius: 50%;
    z-index: 2;
    transition: background 0.3s ease, transform 0.3s ease;
}

.timeline-item.active .timeline-marker {
    background: #FF6B00;
    transform: scale(1.3);
}

.timeline-day {
    display: inline-block;
    border: 1px solid #000;
    border-radius: 6px;
    padding: 2px 8px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 16px;
    background: #fff;
}

.timeline-content h3 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 16px;
    font-weight: 700;
}

.timeline-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 500px;
}

@media (max-width: 768px) {
    .timeline {
        padding-left: 30px;
    }

    .timeline-marker {
        left: -24px;
    }

    .timeline::before {
        left: 6px;
    }

    .timeline-progress {
        left: 6px;
    }
}

/* Footer */
.footer {
    background-color: #000;
    color: #fff;
    padding: 80px 0 60px;
    width: 100%;
    margin-top: 120px;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
    border-radius: 50px 50px 0 0;
    /* Ensure no parent constraints affect width if possible */
    box-sizing: border-box;
    max-width: none;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-mascot {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.footer-mascot img {
    width: 100%;
    max-width: 400px;
    height: auto;
    pointer-events: none;
    border-radius: 20px;
}

.footer-text {
    flex: 1;
    min-width: 300px;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-text h2 {
    color: #fff;
    margin-bottom: 16px;
}

.footer-text p {
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    color: rgba(255, 255, 255, 0.8);
}

.cta-wrapper {
    width: 100%;
    max-width: 400px;
}

.cta-wrapper button {
    width: 100%;
    padding: 20px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-text {
        align-items: center;
        text-align: center;
    }

    .footer-text p {
        margin-left: 0;
        margin-right: 0;
    }

    .footer-mascot,
    .footer-text {
        min-width: 100%;
        /* Ensure specificty or behavior */
        flex: auto;
    }
}

.footer-form input {
    background: #222;
    border: none;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    width: 100%;
    margin-bottom: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-grid,
    .feature-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-row.reverse {
        direction: ltr;
    }

    .hero-visual {
        height: 300px;
    }

    .navbar {
        padding: 20px 0;
    }

    .nav-links {
        display: none;
    }

    /* Hide for now on mobile */
}

/* Business Model Section */
.business-model-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.business-card {
    background: #fff;
    padding: 32px;
    border-radius: 24px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: #f3f4f6;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.business-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
    display: inline-block;
    padding: 12px;
    background: #F9FAFB;
    border-radius: 16px;
}

@media (max-width: 768px) {
    .business-model-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 16px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    text-align: left;
    color: var(--heading-color);
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-main);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    /* Adjust as needed */
}

.faq-item.active .icon-plus {
    transform: rotate(45deg);
}

.icon-plus {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: var(--accent-blue);
}

/* Animation Utilities */
.fade-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.fade-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for children if needed */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}