/* Seeker Landing Page Styles */

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

body {
    /*    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;*/
    /*  Don't set body font here. Set it in the main.css  */
    line-height: 1.6;
    color: #374151;
    background-color: #F8FAFF;
}

/* Navigation Bar Styles */
.landing-navbar {
    /* background: linear-gradient(135deg, #091e55 100%, #042765 100%); */
    background: linear-gradient(135deg, #081b4e 100%, #03245e 100%); 
    border-bottom: 1px solid #071742;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.navbar-container {
    /*    max-width: 1200px;*/
    width: 90%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 48px;
}

.navbar-logo .logo-img {
    height: 32px;
    width: auto;
    display: flex;
    align-items: center;
}

.navbar-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #95eafd;
}

.navbar-right {
    display: flex;
    gap: 16px;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid #E5E7EB;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 0;
}

.mobile-menu-buttons {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #091e55 100%, #042765 100%);
    min-height: 92vh;
    display: flex;
    padding: 2vh 0 0 0;
    align-items: center;
    /* padding: 96px 0 40px 0;
    align-items: flex-start; */
}

.hero-container {
    /*    max-width: 1200px;*/
    width: 90%;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    height: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-subtitle {
    font-size: 1.3em;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.05em;
    line-height: 0.2;
}

.hero-title {
    font-family: 'Titillium Web', sans-serif;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin: 0;
}

.hero-description {
    font-size: 18px;
    color: #d4d4d4;
    line-height: 1.5;
    max-width: 480px;
}

.hero-cta {
    display: flex;
    gap: 24px;
    align-items: center;
}

.hero-cta-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}

.hero-cta-link:hover {
    text-decoration: underline;
}

.hero-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-graphic img {
    max-height: 46vh;
}

.node-graph {
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* Company Cards Section */
.company-cards-section {
    grid-column: 1 / -1;
    margin-top: 40px;
    text-align: center;
    width: 100%;
}

.company-cards-subheadline {
    font-size: 1em;
    font-weight: 300; 
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.company-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.company-card {
    background: white;
    padding: 20px 16px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-height: 120px;
    justify-content: center;
}

.company-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -3px rgba(0, 0, 0, 0.15);
}

.company-logo {
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

.company-link {
    color: #1740cf;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s ease;
}

.company-link:hover {
    color: #0d2a9c;
    text-decoration: underline;
}

/* Section Styles */
.landing-section {
    padding: 80px 0;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 20px;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Section One - What is a Node */
.section-one {
    background: white;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: left; /* Do we want this to be `center` instead? */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: none;
    border-radius: none; /* 16px; */
    display: flex;
    color: #1740cf;
    /* Removing the centering, but do we prefer center?  */
    /*    margin: 0 auto 24px;*/
    align-items: left; /* center; */
    justify-content: left; /* center; */
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
}

.feature-card p {
    font-size: 16px;
    color: #6B7280;
    line-height: 1.6;
}

/* Section Two - Process Cards */
.section-two {
    background: #F8FAFF;
}

.process-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.process-card {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.process-icon {
    width: 120px;
    height: 120px;
    /*  Margin = (0.5 * height) + process-card top padding  */
    margin: -88px auto 24px;
    background: none;
    /*    border-radius: 20px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    z-index: 1;
}

.process-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
}

.process-card p {
    font-size: 16px;
    color: #6B7280;
    line-height: 1.6;
}

/* Section Three - Final CTA */
.section-three {
    background: white;
}

.section-three-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: center;
}

.section-three-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-three-content h2 {
    font-size: 48px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
    line-height: 1.2;
}

.section-three-content p {
    font-size: 20px;
    color: #6B7280;
    line-height: 1.6;
}

/* Footer Styles */
.landing-footer {
/*    background: #111827;*/
    background: linear-gradient(135deg, #091e55 100%, #042765 100%);
    color: white;
    padding: 64px 0 32px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    height: 32px;
    width: auto;
    margin-bottom: 16px;
}

.footer-description {
    font-size: 16px;
    color: #9CA3AF;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-link {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: white;
}

.footer-bottom {
    padding-top: 32px;
    text-align: center;
}

.footer-copyright {
    color: #9CA3AF;
    font-size: 14px;
}

.footer-social-icon {
    height: 1.2em;
    margin: 15px 15px 0 0;
}

.footer-cta-section {
    border-bottom: 1px solid #374151;
    padding: 0 0 3% 0;
    margin: 0 0 3% 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .company-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        max-width: 600px;
    }

    .section-three-content {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar-right {
        display: none;
    }
    .navbar-links {
        display: none;
    }

    .mobile-menu-toggle {
        color: rgba(255, 255, 255, 0.85);
        display: block;
    }

    .hero-section {
        min-height: 91vh;
        padding: 8vh 0 0 0; /*  60px 0 40px 0;  */
        align-items: flex-start;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 0 16px;
    }

    .hero-content {
        order: 1;
        max-width: 100%;
        width: 100%;
    }

    .hero-subtitle {
        font-size: 1.1em;
        line-height: 1.2;
    }

    .hero-title {
        font-size: 36px;
        line-height: 1.1;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-description {
        font-size: 16px;
        max-width: 100%;
        padding: 0 10px;
    }

    .hero-graphic {
        order: 2;
        width: 100%;
        max-width: 100%;
    }

    .hero-graphic img {
        max-width: 300px; 
        height: auto;
        object-fit: contain;
    }

    .company-cards-section {
        order: 3;
        margin-top: 40px;
        width: 100%;
        padding: 0 10px;
    }

    .company-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 100%;
        width: 100%;
    }

    .company-cards-subheadline {
        font-size: 18px;
        margin-bottom: 20px;
        padding: 0 10px;
    }

    .company-card {
        padding: 12px 8px;
        min-height: 90px;
    }

    .company-logo {
        height: 30px;
        max-width: 100px;
    }

    .company-link {
        font-size: 12px;
        text-align: center;
    }

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

    .section-three-content h2 {
        font-size: 36px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        width: 96%;
    }

    .hero-section {
        min-height: 92vh;
        padding: 4vh 0 0 0; /*  48px 0;  */
        align-items: flex-start;
    }

    .landing-section {
        padding: 48px 0;
    }

    .hero-container {
        padding: 0 12px;
        padding-top: 5%;
        padding-bottom: 5%;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 14px;
        padding: 0 5px;
    }

    .hero-graphic img {
        /* max-width: 250px; */
        width: 90%;
    }

    .company-cards {
        grid-template-columns: 1fr;
        gap: 8px;
        max-width: 280px;
        margin: 0 auto;
    }

    .company-cards-subheadline {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .company-card {
        padding: 10px 6px;
        min-height: 80px;
    }

    .company-logo {
        height: 25px;
        max-width: 80px;
    }

    .company-link {
        font-size: 11px;
    }

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

    .section-three-content h2 {
        font-size: 28px;
    }

    .feature-cards,
    .process-cards {
        grid-template-columns: 1fr;
    }
}
