/*
 * Filename: /Users/icebrkr/Library/Containers/com.panic.transmit.mas/Data/Library/Caches/Transmit/99C232C3-2B1F-42D2-BFA8-0E254B99E54E/cyberdyne.org/var/www/vhosts/corevitals.com/html/style.css
 * Path: /Users/icebrkr/Library/Containers/com.panic.transmit.mas/Data/Library/Caches/Transmit/99C232C3-2B1F-42D2-BFA8-0E254B99E54E/cyberdyne.org/var/www/vhosts/corevitals.com/html
 * Created Date: Thursday, March 26th 2026, 9:01:57 am
 * Author: Timothy Lorens
 *
 * Copyright (c) 2026 CoreVitals, LLC
 */
:root {
    --primary: rgba(168,4,178,1);
    --primary-hover: rgba(140, 3, 150, 1);
    --ancillary: rgba(83,4,147,1);
    --text-dark: #111827;
    --text-gray: #4b5563;
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --border-radius: 8px;
    --max-width: 1200px;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

/* Utility Classes */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-1px);
}

.btn-outline {
    background-color: transparent;
    color: var(--ancillary);
    border: 2px solid var(--ancillary);
}

.btn-outline:hover {
    background-color: rgba(83,4,147,0.05);
}

h1, h2, h3 {
    line-height: 1.2;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    z-index: 1000;
    padding: 16px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 40px;
    /* Placeholder for your actual logo file */
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-dark);
    gap: 10px;
}

.logo img {
    height: 100%;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    font-size: 0.95rem;
}

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

/* Hero Section */
.hero {
    padding-top: 160px;
    padding-bottom: 80px;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #fdf4ff 100%);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-sub {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
}

.hero-image-container {
    margin-top: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;

    /* ensure clipping context */
    position: relative;
}

.img-placeholder-hero {
    width: 100%;
    height: 500px;
    background-color: #eee;

    /* remove centering */
    display: block;

    /* if using as wrapper */
    position: relative;
    overflow: hidden;
}

/* target the actual image */
.img-placeholder-hero img {
    position: absolute;
    top: 0;
    left: 0;

    /* prevent scaling */
    width: auto;
    height: auto;
    max-width: none;
    max-height: none;
}

/* Social Proof */
.logos-section {
    padding: 40px 0;
    border-bottom: 1px solid #e5e7eb;
    background-color: var(--bg-white);
}

.logos-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.6;
    flex-wrap: wrap;
    gap: 24px;
}

.logo-item {
    height: 30px;
    background: #ddd;
    width: 120px;
    border-radius: 4px;
}

/* Features Grid */
.features {
    padding: 100px 0;
}

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

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

.feature-card {
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #f3f4f6;
    background: var(--bg-white);
    transition: transform 0.2s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-color: rgba(168,4,178,0.2);
}

.icon-box {
    width: 50px;
    height: 50px;
    background-color: rgba(168,4,178,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--ancillary);
}

/* Alternating Details Sections */
.deep-dive {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.deep-dive:nth-child(even) {
    background-color: var(--bg-white);
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.split-layout.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
}

.split-image {
    flex: 1;
}

.split-image img, .img-placeholder {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border: 1px solid rgba(83,4,147,0.1);
}

.img-placeholder {
    height: 350px;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    color: #6b7280;
}

.check-list {
    list-style: none;
    margin-top: 24px;
}

.check-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-list li::before {
    content: "✓";
    color: var(--primary);
    font-weight: bold;
}

/* About Us Section */
.about-section {
    padding: 100px 0;
    background-color: #1f2937;
    color: white;
    text-align: center;
}

.about-section h2, .about-section p {
    color: white;
}

.about-section p {
    opacity: 0.8;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    text-align: left;
}

.about-card {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 8px;
    border-top: 4px solid var(--primary);
}

.about-card h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
}

/* Footer */
footer {
    background-color: var(--bg-white);
    padding: 80px 0 40px 0;
    border-top: 1px solid #e5e7eb;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    font-size: 0.9rem;
    max-width: 300px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ancillary);
}

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

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

.footer-col ul li a {
    text-decoration: none;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #f3f4f6;
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .split-layout, .split-layout.reverse { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; } /* Simplify for demo */
    .about-grid { grid-template-columns: 1fr; }
}
