/* SightComp - Global Styles */

:root {
    --cream: #f6f2ea;
    --black: #000000;
    --purple: #544fff;
    --white: #ffffff;
    --text-dark: #010101;
    --text-muted: rgba(0, 0, 0, 0.6);
}

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

body {
    font-family: 'Archivo', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
}

a {
    color: var(--purple);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

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

/* Navigation */
.site-header {
    background: var(--cream);
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-logo img {
    height: 40px;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
}

.site-title:hover {
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--black);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--purple);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--black);
}

/* Hero Section */
.hero {
    background: var(--cream);
    padding: 5vw 60px 0;
}

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

.hero-text h1 {
    font-size: 50px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-text p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 10px;
    border: 4px solid var(--black);
    background: transparent;
    color: var(--black);
    box-shadow: 6px 6px 0 var(--black);
    transition: all 0.2s;
    cursor: pointer;
}

.btn:hover {
    transform: translate(2px, 2px);
    box-shadow: 4px 4px 0 var(--black);
    text-decoration: none;
}

.btn-white {
    background: var(--white);
}

.btn-purple {
    background: var(--purple);
    color: var(--white);
    border-color: var(--black);
}

/* Logos Section */
.logos-section {
    background: var(--black);
    padding: 40px 60px;
}

.logos-content {
    max-width: 1200px;
    margin: 0 auto;
}

.logos-label {
    color: var(--white);
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 30px;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    align-items: center;
}

.logos-grid img {
    max-height: 50px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

/* Card Sections */
.section {
    padding: 80px 60px;
}

.section-cream {
    background: var(--cream);
}

.section-black {
    background: var(--black);
    color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--purple);
    margin-bottom: 8px;
}

.section-title {
    font-size: 50px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
}

/* Feature Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    padding: 24px;
    border: 2px solid var(--black);
    transition: all 0.3s;
}

.card:hover {
    border-width: 0;
    box-shadow: 0 40px 60px -20px rgba(84, 79, 255, 0.42);
}

.card-white {
    background: var(--white);
}

.card-purple {
    background: var(--purple);
    color: var(--white);
}

.card-black {
    background: var(--black);
    color: var(--white);
}

.card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
}

.card h3 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
}

.card p {
    font-size: 15px;
    line-height: 1.5;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.benefits-image img {
    width: 100%;
}

.benefits-text ul {
    list-style: none;
    margin-top: 20px;
}

.benefits-text li {
    padding: 12px 0;
    padding-left: 24px;
    position: relative;
    font-size: 18px;
    font-weight: 500;
}

.benefits-text li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    width: 8px;
    height: 8px;
    background: var(--purple);
    border-radius: 50%;
}

/* Features Section */
.features-layout {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    max-width: 1280px;
    margin: 0 auto;
    align-items: start;
}

.feature-item {
    text-align: center;
    margin-bottom: 40px;
}

.feature-item img {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
}

.feature-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
}

.features-center {
    text-align: center;
}

.features-center img {
    max-width: 100%;
}

/* CTA Section */
.cta-section {
    background: var(--black);
    padding: 80px 60px 240px;
}

.cta-box {
    background: var(--purple);
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 60px;
    border-radius: 10px;
    border: 4px solid var(--black);
    box-shadow: 6px 6px 0 var(--black);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-text h2 {
    font-size: 50px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.cta-text p {
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
}

/* Footer */
.site-footer {
    background: var(--cream);
    padding: 40px 60px;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.site-footer p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Ghost Card Styles */
.kg-width-wide {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.kg-width-full {
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.kg-image-card img,
.kg-gallery-image img {
    border-radius: 8px;
}

/* Post Content */
.post-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 24px;
}

.post-content h1,
.post-content h2,
.post-content h3 {
    margin-top: 40px;
    margin-bottom: 16px;
}

.post-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.post-content ul,
.post-content ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.post-content li {
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

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

    .logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-layout {
        grid-template-columns: 1fr;
    }

    .features-center {
        order: -1;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 16px 24px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .hero {
        padding: 40px 24px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .section {
        padding: 60px 24px;
    }

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

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

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

    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .cta-text h2 {
        font-size: 28px;
    }

    .card h3 {
        font-size: 22px;
    }
}
