/* ================================
   RESET & BASE STYLES
   ================================ */

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

:root {
    /* Color Palette */
    --navy-dark: #0a1628;
    --accent-blue: #4A7CFF;
    --accent-blue-light: #6B94FF;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-light: #ffffff;
    --text-muted: #7a7a7a;
    --border-light: #e5e5e5;
    --bg-white: #ffffff;
    --bg-off-white: #fafafa;
    --bg-light-gray: #f0f0f0;
    
    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ================================
   HEADER & NAVIGATION
   ================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid var(--border-light);
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.site-header.scrolled .logo-text {
    color: #1a1a1a;
}

.logo a {
    text-decoration: none;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 400;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.site-header.scrolled .main-nav a {
    color: #1a1a1a;
}

.main-nav a:hover {
    opacity: 0.7;
}

.mobile-menu-toggle {
    display: none;
}

/* ================================
   HERO SECTION - BRIGHT GRADIENTS
   ================================ */

.hero-section {
    position: relative;
    height: 90vh;
    min-height: 650px;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Multiple bright gradient layers */
.hero-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(74, 144, 255, 0.6) 0%, rgba(74, 144, 255, 0.3) 30%, transparent 70%);
    animation: float1 20s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 180, 180, 0.5) 0%, rgba(0, 180, 180, 0.25) 30%, transparent 70%);
    animation: float2 25s ease-in-out infinite;
}

/* Additional gradient overlays */
.hero-content::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(100, 200, 100, 0.4) 0%, rgba(100, 200, 100, 0.2) 30%, transparent 70%);
    animation: float3 30s ease-in-out infinite;
    z-index: 0;
}

.hero-content::after {
    content: '';
    position: absolute;
    bottom: 5%;
    right: -10%;
    width: 750px;
    height: 750px;
    background: radial-gradient(circle, rgba(120, 160, 255, 0.45) 0%, rgba(120, 160, 255, 0.2) 30%, transparent 70%);
    animation: float4 28s ease-in-out infinite;
    z-index: 0;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(60px, -80px) scale(1.15); }
    66% { transform: translate(-40px, 60px) scale(0.95); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-70px, -60px) scale(1.1); }
    66% { transform: translate(50px, 70px) scale(0.9); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(80px, 50px) scale(1.2); }
}

@keyframes float4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-60px, -70px) scale(1.15); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
    padding: 0 20px;
    max-width: 900px;
}

.hero-title {
    font-size: 62px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 19px;
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

/* ================================
   SECTION CONTAINERS
   ================================ */

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 50px;
    position: relative;
    z-index: 2;
}

section {
    position: relative;
    padding: 100px 0;
}

.section-title {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 16px;
    text-align: center;
    color: var(--accent-blue);
    letter-spacing: 0px;
}

/* ================================
   STATEMENT SECTION
   ================================ */

.statement-section {
    background: var(--bg-white);
    padding: 120px 0;
}

.statement-subtitle {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 50px;
}

.statement-content {
    max-width: 850px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-primary);
}

.statement-content p {
    margin-bottom: 24px;
}

/* ================================
   FILINGS SECTION
   ================================ */

.filings-section {
    background: var(--bg-light-gray);
    padding: 120px 0;
}

.filing-entry {
    background: var(--bg-white);
    padding: 50px;
    margin-bottom: 60px;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}

.filing-date {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.filing-title {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 28px;
    color: var(--accent-blue);
    line-height: 1.4;
}

.filing-preview {
    margin: 30px 0;
}

.document-thumbnail {
    background: var(--bg-light-gray);
    border: 1px solid var(--border-light);
    padding: 100px 30px;
    text-align: center;
}

.thumbnail-placeholder {
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.filing-link,
.filing-link-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--navy-dark);
    color: var(--text-light);
    text-decoration: none;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: background 0.3s ease;
}

.filing-link:hover {
    background: #162844;
}

.filing-link-secondary {
    background: transparent;
    color: var(--navy-dark);
    border: 2px solid var(--navy-dark);
    padding: 12px 30px;
}

.filing-link-secondary:hover {
    background: var(--navy-dark);
    color: var(--text-light);
}

.filing-statement {
    margin-top: 32px;
    padding: 32px;
    background: var(--bg-off-white);
    border-left: 3px solid var(--accent-blue);
}

.filing-statement h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    font-style: italic;
    color: var(--text-primary);
}

.filing-statement p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
}

.filing-divider {
    border: none;
    border-top: 1px solid var(--border-light);
    margin: 50px 0 0 0;
}

/* ================================
   COMMENTARY SECTION
   ================================ */

.commentary-section {
    background: var(--bg-white);
    padding: 120px 0;
}

.commentary-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 60px;
}

.commentary-item {
    padding: 40px;
    border-left: 2px solid var(--accent-blue);
    background: var(--bg-off-white);
}

.commentary-item blockquote {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.commentary-item cite {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    font-style: normal;
    margin-bottom: 14px;
}

.commentary-link {
    font-size: 13px;
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.commentary-link:hover {
    opacity: 0.7;
}

/* ================================
   TIMELINE SECTION
   ================================ */

.timeline-section {
    background: var(--bg-light-gray);
    padding: 120px 0;
}

.timeline-intro {
    text-align: center;
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 60px;
}

.timeline {
    max-width: 850px;
    margin: 0 auto;
}

.timeline-event {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--border-light);
}

.timeline-event:last-child {
    border-bottom: none;
}

.timeline-date {
    flex-shrink: 0;
    width: 140px;
    text-align: center;
    background: var(--bg-white);
    padding: 24px 16px;
    border: 1px solid var(--accent-blue);
}

.date-month {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.date-day {
    display: block;
    font-size: 38px;
    font-weight: 300;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.date-year {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
}

.timeline-content {
    flex: 1;
    padding-top: 12px;
}

.timeline-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.timeline-content a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
}

.timeline-content a:hover {
    text-decoration: underline;
}

.timeline-event-featured {
    background: var(--bg-off-white);
    padding: 24px;
    margin: 0 -24px;
}

/* ================================
   RESOURCES SECTION
   ================================ */

.resources-section {
    background: var(--bg-white);
    padding: 120px 0;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.resource-item {
    background: var(--bg-off-white);
}

.resource-thumbnail {
    background: var(--bg-light-gray);
    padding: 100px 30px;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.resource-title {
    font-size: 20px;
    font-weight: 400;
    margin: 30px 30px 20px 30px;
    color: var(--text-primary);
}

.resource-link {
    display: inline-block;
    margin: 0 30px 30px 30px;
    color: var(--accent-blue);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.resource-link:hover {
    text-decoration: underline;
}

/* ================================
   CONTACT SECTION
   ================================ */

.contact-section {
    background: var(--bg-light-gray);
    padding: 120px 0;
}

.contact-intro {
    text-align: center;
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.contact-button-wrapper {
    text-align: center;
}

.contact-button {
    display: inline-block;
    padding: 16px 40px;
    background: var(--accent-blue);
    color: var(--text-light);
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

.contact-button:hover {
    background: var(--accent-blue-light);
}

/* ================================
   FOOTER
   ================================ */

.site-footer {
    background: var(--navy-dark);
    padding: 50px 0;
    color: var(--text-light);
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo .logo-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-light);
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 13px;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.7;
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

@media screen and (max-width: 1024px) {
    .header-container,
    .footer-container,
    .container {
        padding: 0 40px;
    }
}

@media screen and (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }
    
    .mobile-menu-toggle span {
        width: 24px;
        height: 2px;
        background: var(--text-light);
    }
    
    .site-header.scrolled .mobile-menu-toggle span {
        background: var(--text-primary);
    }
    
    .hero-title {
        font-size: 40px;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    section {
        padding: 70px 0;
    }
    
    .statement-section,
    .filings-section,
    .commentary-section,
    .timeline-section,
    .resources-section,
    .contact-section {
        padding: 80px 0;
    }
    
    .filing-entry {
        padding: 30px 25px;
    }
    
    .timeline-event {
        flex-direction: column;
        gap: 20px;
    }
    
    .timeline-date {
        width: 100%;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .header-container,
    .footer-container,
    .container {
        padding: 0 20px;
    }
}

/* ================================
   WAVE DIVIDERS
   ================================ */

.wave-divider {
    width: 100%;
    height: 150px;
    display: block;
    margin: -2px 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 768px) {
    .wave-divider {
        height: 100px;
    }
}

@media screen and (max-width: 480px) {
    .wave-divider {
        height: 70px;
    }
}
