/* modern professional design for maverick investment technologies */
:root {
    --primary-blue: #1e40af;
    --secondary-blue: #3b82f6;
    --accent-blue: #60a5fa;
    --light-blue: #eff6ff;
    --dark-gray: #1f2937;
    --medium-gray: #6b7280;
    --light-gray: #f8fafc;
    --white: #ffffff;
    --text-primary: #111827;
    --text-secondary: #6b7280;
    --border-color: #e5e7eb;
    --success-green: #10b981;
    --warning-orange: #f59e0b;
    --shadow-light: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-large: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 2px 8px 0 rgba(0, 0, 0, 0.15);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--white);
    font-size: 16px;
    font-weight: 400;
}

/* typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
}

/* header */
.site_header {
    background: #036;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
}

.navbar {
    padding: 1rem 0;
}

.nav_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav_brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand_icon {
    width: 28px;
    height: 28px;
    filter: brightness(0) saturate(100%) invert(100%);
}

.brand_text {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
}

/* hero section */
.hero_section {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
    padding: 3rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.hero_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.hero_content {
    max-width: 520px;
}

.hero_stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat_item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat_number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
}

.stat_label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat_divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

.hero_title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.title_emphasis {
    color: var(--primary-blue);
    font-weight: 700;
}

.hero_subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.hero_location {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
}

.location_wrapper {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.location_icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(225deg) brightness(102%) contrast(97%);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.location_text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.company_name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.125rem;
}

.address_text {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* hero visual */
.hero_visual {
    position: relative;
    height: 450px;
}

.visual_grid {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 100px;
    grid-template-rows: 1fr 100px;
    gap: 1rem;
}

.grid_item {
    overflow: hidden;
}

.main_image {
    grid-row: 1 / -1;
    grid-column: 1 / 2;
    position: relative;
}

.hero_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.accent_shape {
    grid-row: 1;
    grid-column: 2;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
}

.data_viz {
    grid-row: 2;
    grid-column: 2;
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
}

.data_line {
    height: 4px;
    background: var(--accent-blue);
}

.data_line:nth-child(1) { width: 70%; }
.data_line:nth-child(2) { width: 90%; }
.data_line:nth-child(3) { width: 50%; }

/* about section */
/* company description */
.company_description {
    padding: 2rem 0;
    background: var(--light-gray);
    border-bottom: 1px solid var(--border-color);
}

.description_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.description_container p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

/* content section */
.content_section {
    padding: 1rem 0;
    background: var(--white);
}

.content_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    line-height: 1.4;
}

.content_layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.slideshow_area {
    position: sticky;
    top: 2rem;
}

.slideshow_wrapper {
    position: relative;
    width: 100%;
    background: var(--white);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.info_content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.content_block {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.content_icon {
    flex-shrink: 0;
}

.icon_circle {
    width: 60px;
    height: 60px;
    background: var(--light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 1.25rem;
    border: 1px solid var(--border-color);
}

.icon_circle.globe {
    background: #c0f5ff;
    color: var(--white);
}

.icon_circle.specialty {
    background: #222;
    color: var(--white);
}

/* font awesome icon colors */
.globe_icon {
    color: #119700 !important; /* green color for globe */
}

.lightning_icon {
    color: #fbbf24 !important; /* yellow color for lightning bolt */
}

.content_text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.content_text p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.slide {
    display: none !important;
    position: relative;
    width: 100%;
    height: 325px;
}

.slide.active {
    display: block !important;
}

.slide_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide_overlay {
    position: absolute;
    bottom: 5px;
    left: 5px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.slide_nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 1rem;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
}

.slide_nav:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slide_nav.prev {
    left: 1rem;
}

.slide_nav.next {
    right: 1rem;
}

.slide_dots {
    text-align: center;
    padding: 1.5rem 0;
    background: var(--light-gray);
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: var(--medium-gray);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.dot.active, .dot:hover {
    background-color: var(--primary-blue);
}



/* contact section */
.contact_section {
    padding: 2rem 0;
    background: linear-gradient(135deg, var(--dark-gray) 0%, #374151 100%);
}

.contact_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact_layout {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact_intro {
    color: var(--white);
}

.contact_intro .section_title {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact_subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--medium-gray);
}

.contact_card,
.address_card {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 1rem;
    flex: 1;
    min-width: 280px;
    max-width: 400px;
}

.card_header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.contact_icon {
    width: 48px;
    height: 48px;
    background: var(--light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lighthouse_icon {
    width: 32px; height: 32px;
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(225deg) brightness(102%) contrast(97%);
}

.contact_title h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.contact_title p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.card_content {
    text-align: center;
}

.contact_email {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact_email:hover {
    color: var(--secondary-blue);
}

.company_address {
    text-align: center;
}

.company_address p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0.25rem 0;
    line-height: 1.4;
}

.contact_note {
    background: var(--light-gray);
    padding: 1rem;
    border-left: 4px solid var(--success-green);
}

.contact_note p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* footer */
.site_footer {
    background: var(--text-primary);
    color: var(--white);
    padding: 2rem 0;
}

.footer_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.copyright_text {
    color: var(--medium-gray);
    font-size: 1.125rem;
}

/* accessibility */
.skip_link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-blue);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    font-weight: 600;
    z-index: 1000;
    transition: top 0.3s ease;
}

.skip_link:focus {
    top: 6px;
}

/* Focus styles for better accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --border-color: #000000;
        --text-secondary: #000000;
        --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
        --shadow-large: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    }
}

/* Print styles */
@media print {
    .hero_visual,
    .accent_shape,
    .data_viz {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: black;
        background: white;
    }
    
    .hero_section,
    .contact_section {
        background: white !important;
        color: black !important;
    }
    
    .contact_email {
        color: black !important;
        text-decoration: underline;
    }
}

/* responsive design */
@media (max-width: 768px) {
    .nav_container {
        padding: 0 1rem;
    }
    
    .brand_text {
        font-size: 1rem;
    }
    
    .hero_container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
        text-align: center;
    }
    
    .hero_stats {
        justify-content: center;
    }
    
    .hero_title {
        font-size: 2.5rem;
    }
    
    .hero_visual {
        height: 300px;
    }
    
    .visual_grid {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
    }
    
    .main_image {
        grid-row: 1;
        grid-column: 1;
    }
    
    .accent_shape,
    .data_viz {
        display: none;
    }
    
    .content_container,
    .contact_container {
        padding: 0 1rem;
    }
    
    .content_layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .slideshow_area {
        position: static;
    }
    
    .slide {
        height: 300px;
    }
    
    .slide_nav {
        padding: 0.5rem;
        font-size: 1.5rem;
    }
    
    .slide_nav.prev {
        left: 0.5rem;
    }
    
    .slide_nav.next {
        right: 0.5rem;
    }
    
    .contact_layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .contact_intro .section_title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero_title {
        font-size: 2rem;
    }
    
    .hero_subtitle {
        font-size: 1.125rem;
    }
    
    .slide {
        height: 250px;
    }
    
    .contact_card {
        padding: 1.5rem;
    }
    
    .contact_email {
        font-size: 1.25rem;
    }
} 