/* Slaney Advisors Brand Colors */
:root {
    --slaney-teal: #006993;
    --slaney-teal-dark: #005577;
    --slaney-dark: #333333;
    --slaney-gray: #666666;
    --slaney-light: #999999;
    --slaney-bg: #f5f5f5;
    --slaney-white: #ffffff;
    --slaney-border: #e0e0e0;
    --slaney-navy: #1a2744;
}

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

body {
    font-family: 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--slaney-bg);
    color: var(--slaney-gray);
    font-size: 14px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--slaney-teal);
    font-weight: 300;
    line-height: 1.3;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 1.75rem; margin-bottom: 2rem; }
h3 { font-size: 1.25rem; margin-bottom: 1rem; }
h4 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--slaney-dark); }

a {
    color: var(--slaney-teal);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--slaney-teal-dark);
}

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

/* Header */
.header {
    background: var(--slaney-white);
    border-bottom: 1px solid var(--slaney-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

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

.logo-img {
    width: 36px;
    height: 36px;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--slaney-dark);
    letter-spacing: -0.02em;
}

.logo-divider {
    width: 1px;
    height: 20px;
    background: var(--slaney-border);
    margin: 0 12px;
}

.logo-subtitle {
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--slaney-light);
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    font-size: 0.875rem;
    color: var(--slaney-gray);
    transition: color 0.2s;
}

.nav a:hover {
    color: var(--slaney-teal);
}

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--slaney-navy) 0%, #0d1520 100%);
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    color: var(--slaney-white);
    margin-bottom: 16px;
}

.hero-subtitle {
    color: #ffd700;
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.hero-description {
    color: #d1d5db;
    max-width: 600px;
    margin: 0 auto 32px;
    font-size: 1rem;
}

.badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.15);
    color: #ffd700;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.hero-cta {
    margin-top: 24px;
}

.coming-soon-badge {
    display: inline-block;
    background: var(--slaney-teal);
    color: var(--slaney-white);
    padding: 12px 32px;
    border-radius: 2px;
    font-size: 0.875rem;
    font-weight: 500;
}

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

.section-alt {
    background: var(--slaney-white);
}

.section h2 {
    text-align: center;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

/* Cards */
.card {
    background: var(--slaney-white);
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    padding: 32px;
}

.section-alt .card {
    background: var(--slaney-bg);
}

.card h3 {
    color: var(--slaney-teal);
}

.card ul {
    margin-top: 16px;
    padding-left: 20px;
}

.card li {
    margin-bottom: 8px;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.step {
    text-align: center;
    padding: 24px 16px;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--slaney-teal);
    color: var(--slaney-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 auto 16px;
}

.step h4 {
    color: var(--slaney-dark);
    margin-bottom: 8px;
}

.step p {
    font-size: 0.875rem;
    color: var(--slaney-gray);
}

/* Technology Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.tech-card {
    background: var(--slaney-white);
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    padding: 32px;
}

.tech-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 105, 147, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--slaney-teal);
}

.tech-card h4 {
    color: var(--slaney-dark);
    font-weight: 500;
}

.tech-card p {
    margin-top: 8px;
    color: var(--slaney-gray);
}

/* About */
.about-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    margin-bottom: 16px;
    font-size: 1rem;
}

.competition-badge {
    margin-top: 32px;
}

.competition-badge span {
    display: inline-block;
    background: var(--slaney-navy);
    color: #ffd700;
    padding: 12px 24px;
    border-radius: 2px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--slaney-navy);
    padding: 32px 0;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-logo .logo-img {
    width: 28px;
    height: 28px;
}

.footer-logo .logo-text {
    color: var(--slaney-white);
    font-size: 1rem;
}

.footer p {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        height: auto;
        padding: 16px 0;
        gap: 16px;
    }

    .nav {
        gap: 24px;
    }

    .hero {
        padding: 48px 0;
    }

    h1 {
        font-size: 2rem;
    }

    .two-column {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}
